id int32 0 167k | repo stringlengths 5 54 | path stringlengths 4 155 | func_name stringlengths 1 118 | original_string stringlengths 52 85.5k | language stringclasses 1
value | code stringlengths 52 85.5k | code_tokens list | docstring stringlengths 6 2.61k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 85 252 |
|---|---|---|---|---|---|---|---|---|---|---|---|
146,600 | nuagenetworks/vspk-go | vspk/link.go | CSNATPools | func (o *Link) CSNATPools(info *bambou.FetchingInfo) (CSNATPoolsList, *bambou.Error) {
var list CSNATPoolsList
err := bambou.CurrentSession().FetchChildren(o, CSNATPoolIdentity, &list, info)
return list, err
} | go | func (o *Link) CSNATPools(info *bambou.FetchingInfo) (CSNATPoolsList, *bambou.Error) {
var list CSNATPoolsList
err := bambou.CurrentSession().FetchChildren(o, CSNATPoolIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Link",
")",
"CSNATPools",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"CSNATPoolsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"CSNATPoolsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession"... | // CSNATPools retrieves the list of child CSNATPools of the Link | [
"CSNATPools",
"retrieves",
"the",
"list",
"of",
"child",
"CSNATPools",
"of",
"the",
"Link"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/link.go#L191-L196 |
146,601 | nuagenetworks/vspk-go | vspk/link.go | CreateCSNATPool | func (o *Link) CreateCSNATPool(child *CSNATPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Link) CreateCSNATPool(child *CSNATPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Link",
")",
"CreateCSNATPool",
"(",
"child",
"*",
"CSNATPool",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateCSNATPool creates a new child CSNATPool under the Link | [
"CreateCSNATPool",
"creates",
"a",
"new",
"child",
"CSNATPool",
"under",
"the",
"Link"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/link.go#L199-L202 |
146,602 | nuagenetworks/vspk-go | vspk/link.go | PSNATPools | func (o *Link) PSNATPools(info *bambou.FetchingInfo) (PSNATPoolsList, *bambou.Error) {
var list PSNATPoolsList
err := bambou.CurrentSession().FetchChildren(o, PSNATPoolIdentity, &list, info)
return list, err
} | go | func (o *Link) PSNATPools(info *bambou.FetchingInfo) (PSNATPoolsList, *bambou.Error) {
var list PSNATPoolsList
err := bambou.CurrentSession().FetchChildren(o, PSNATPoolIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Link",
")",
"PSNATPools",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"PSNATPoolsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"PSNATPoolsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession"... | // PSNATPools retrieves the list of child PSNATPools of the Link | [
"PSNATPools",
"retrieves",
"the",
"list",
"of",
"child",
"PSNATPools",
"of",
"the",
"Link"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/link.go#L205-L210 |
146,603 | nuagenetworks/vspk-go | vspk/link.go | CreatePSNATPool | func (o *Link) CreatePSNATPool(child *PSNATPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Link) CreatePSNATPool(child *PSNATPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Link",
")",
"CreatePSNATPool",
"(",
"child",
"*",
"PSNATPool",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreatePSNATPool creates a new child PSNATPool under the Link | [
"CreatePSNATPool",
"creates",
"a",
"new",
"child",
"PSNATPool",
"under",
"the",
"Link"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/link.go#L213-L216 |
146,604 | nuagenetworks/vspk-go | vspk/link.go | OverlayAddressPools | func (o *Link) OverlayAddressPools(info *bambou.FetchingInfo) (OverlayAddressPoolsList, *bambou.Error) {
var list OverlayAddressPoolsList
err := bambou.CurrentSession().FetchChildren(o, OverlayAddressPoolIdentity, &list, info)
return list, err
} | go | func (o *Link) OverlayAddressPools(info *bambou.FetchingInfo) (OverlayAddressPoolsList, *bambou.Error) {
var list OverlayAddressPoolsList
err := bambou.CurrentSession().FetchChildren(o, OverlayAddressPoolIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Link",
")",
"OverlayAddressPools",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"OverlayAddressPoolsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"OverlayAddressPoolsList",
"\n",
"err",
":=",
"bambou"... | // OverlayAddressPools retrieves the list of child OverlayAddressPools of the Link | [
"OverlayAddressPools",
"retrieves",
"the",
"list",
"of",
"child",
"OverlayAddressPools",
"of",
"the",
"Link"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/link.go#L219-L224 |
146,605 | nuagenetworks/vspk-go | vspk/link.go | CreateOverlayAddressPool | func (o *Link) CreateOverlayAddressPool(child *OverlayAddressPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Link) CreateOverlayAddressPool(child *OverlayAddressPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Link",
")",
"CreateOverlayAddressPool",
"(",
"child",
"*",
"OverlayAddressPool",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}... | // CreateOverlayAddressPool creates a new child OverlayAddressPool under the Link | [
"CreateOverlayAddressPool",
"creates",
"a",
"new",
"child",
"OverlayAddressPool",
"under",
"the",
"Link"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/link.go#L227-L230 |
146,606 | nuagenetworks/vspk-go | vspk/me.go | L2Domains | func (o *Me) L2Domains(info *bambou.FetchingInfo) (L2DomainsList, *bambou.Error) {
var list L2DomainsList
err := bambou.CurrentSession().FetchChildren(o, L2DomainIdentity, &list, info)
return list, err
} | go | func (o *Me) L2Domains(info *bambou.FetchingInfo) (L2DomainsList, *bambou.Error) {
var list L2DomainsList
err := bambou.CurrentSession().FetchChildren(o, L2DomainIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"L2Domains",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"L2DomainsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"L2DomainsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"... | // L2Domains retrieves the list of child L2Domains of the Me | [
"L2Domains",
"retrieves",
"the",
"list",
"of",
"child",
"L2Domains",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L129-L134 |
146,607 | nuagenetworks/vspk-go | vspk/me.go | L4Services | func (o *Me) L4Services(info *bambou.FetchingInfo) (L4ServicesList, *bambou.Error) {
var list L4ServicesList
err := bambou.CurrentSession().FetchChildren(o, L4ServiceIdentity, &list, info)
return list, err
} | go | func (o *Me) L4Services(info *bambou.FetchingInfo) (L4ServicesList, *bambou.Error) {
var list L4ServicesList
err := bambou.CurrentSession().FetchChildren(o, L4ServiceIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"L4Services",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"L4ServicesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"L4ServicesList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
... | // L4Services retrieves the list of child L4Services of the Me | [
"L4Services",
"retrieves",
"the",
"list",
"of",
"child",
"L4Services",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L137-L142 |
146,608 | nuagenetworks/vspk-go | vspk/me.go | CreateL4Service | func (o *Me) CreateL4Service(child *L4Service) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateL4Service(child *L4Service) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateL4Service",
"(",
"child",
"*",
"L4Service",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateL4Service creates a new child L4Service under the Me | [
"CreateL4Service",
"creates",
"a",
"new",
"child",
"L4Service",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L145-L148 |
146,609 | nuagenetworks/vspk-go | vspk/me.go | SaaSApplicationTypes | func (o *Me) SaaSApplicationTypes(info *bambou.FetchingInfo) (SaaSApplicationTypesList, *bambou.Error) {
var list SaaSApplicationTypesList
err := bambou.CurrentSession().FetchChildren(o, SaaSApplicationTypeIdentity, &list, info)
return list, err
} | go | func (o *Me) SaaSApplicationTypes(info *bambou.FetchingInfo) (SaaSApplicationTypesList, *bambou.Error) {
var list SaaSApplicationTypesList
err := bambou.CurrentSession().FetchChildren(o, SaaSApplicationTypeIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"SaaSApplicationTypes",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"SaaSApplicationTypesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"SaaSApplicationTypesList",
"\n",
"err",
":=",
"bambou... | // SaaSApplicationTypes retrieves the list of child SaaSApplicationTypes of the Me | [
"SaaSApplicationTypes",
"retrieves",
"the",
"list",
"of",
"child",
"SaaSApplicationTypes",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L159-L164 |
146,610 | nuagenetworks/vspk-go | vspk/me.go | VCenterEAMConfigs | func (o *Me) VCenterEAMConfigs(info *bambou.FetchingInfo) (VCenterEAMConfigsList, *bambou.Error) {
var list VCenterEAMConfigsList
err := bambou.CurrentSession().FetchChildren(o, VCenterEAMConfigIdentity, &list, info)
return list, err
} | go | func (o *Me) VCenterEAMConfigs(info *bambou.FetchingInfo) (VCenterEAMConfigsList, *bambou.Error) {
var list VCenterEAMConfigsList
err := bambou.CurrentSession().FetchChildren(o, VCenterEAMConfigIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"VCenterEAMConfigs",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VCenterEAMConfigsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VCenterEAMConfigsList",
"\n",
"err",
":=",
"bambou",
".",... | // VCenterEAMConfigs retrieves the list of child VCenterEAMConfigs of the Me | [
"VCenterEAMConfigs",
"retrieves",
"the",
"list",
"of",
"child",
"VCenterEAMConfigs",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L167-L172 |
146,611 | nuagenetworks/vspk-go | vspk/me.go | GatewayTemplates | func (o *Me) GatewayTemplates(info *bambou.FetchingInfo) (GatewayTemplatesList, *bambou.Error) {
var list GatewayTemplatesList
err := bambou.CurrentSession().FetchChildren(o, GatewayTemplateIdentity, &list, info)
return list, err
} | go | func (o *Me) GatewayTemplates(info *bambou.FetchingInfo) (GatewayTemplatesList, *bambou.Error) {
var list GatewayTemplatesList
err := bambou.CurrentSession().FetchChildren(o, GatewayTemplateIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"GatewayTemplates",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"GatewayTemplatesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"GatewayTemplatesList",
"\n",
"err",
":=",
"bambou",
".",
... | // GatewayTemplates retrieves the list of child GatewayTemplates of the Me | [
"GatewayTemplates",
"retrieves",
"the",
"list",
"of",
"child",
"GatewayTemplates",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L203-L208 |
146,612 | nuagenetworks/vspk-go | vspk/me.go | CreateGatewayTemplate | func (o *Me) CreateGatewayTemplate(child *GatewayTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateGatewayTemplate(child *GatewayTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateGatewayTemplate",
"(",
"child",
"*",
"GatewayTemplate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateGatewayTemplate creates a new child GatewayTemplate under the Me | [
"CreateGatewayTemplate",
"creates",
"a",
"new",
"child",
"GatewayTemplate",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L211-L214 |
146,613 | nuagenetworks/vspk-go | vspk/me.go | PATMappers | func (o *Me) PATMappers(info *bambou.FetchingInfo) (PATMappersList, *bambou.Error) {
var list PATMappersList
err := bambou.CurrentSession().FetchChildren(o, PATMapperIdentity, &list, info)
return list, err
} | go | func (o *Me) PATMappers(info *bambou.FetchingInfo) (PATMappersList, *bambou.Error) {
var list PATMappersList
err := bambou.CurrentSession().FetchChildren(o, PATMapperIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"PATMappers",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"PATMappersList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"PATMappersList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
... | // PATMappers retrieves the list of child PATMappers of the Me | [
"PATMappers",
"retrieves",
"the",
"list",
"of",
"child",
"PATMappers",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L217-L222 |
146,614 | nuagenetworks/vspk-go | vspk/me.go | CreatePATMapper | func (o *Me) CreatePATMapper(child *PATMapper) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreatePATMapper(child *PATMapper) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreatePATMapper",
"(",
"child",
"*",
"PATMapper",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreatePATMapper creates a new child PATMapper under the Me | [
"CreatePATMapper",
"creates",
"a",
"new",
"child",
"PATMapper",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L225-L228 |
146,615 | nuagenetworks/vspk-go | vspk/me.go | CreatePATNATPool | func (o *Me) CreatePATNATPool(child *PATNATPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreatePATNATPool(child *PATNATPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreatePATNATPool",
"(",
"child",
"*",
"PATNATPool",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreatePATNATPool creates a new child PATNATPool under the Me | [
"CreatePATNATPool",
"creates",
"a",
"new",
"child",
"PATNATPool",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L239-L242 |
146,616 | nuagenetworks/vspk-go | vspk/me.go | VCenters | func (o *Me) VCenters(info *bambou.FetchingInfo) (VCentersList, *bambou.Error) {
var list VCentersList
err := bambou.CurrentSession().FetchChildren(o, VCenterIdentity, &list, info)
return list, err
} | go | func (o *Me) VCenters(info *bambou.FetchingInfo) (VCentersList, *bambou.Error) {
var list VCentersList
err := bambou.CurrentSession().FetchChildren(o, VCenterIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"VCenters",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VCentersList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VCentersList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"(",... | // VCenters retrieves the list of child VCenters of the Me | [
"VCenters",
"retrieves",
"the",
"list",
"of",
"child",
"VCenters",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L253-L258 |
146,617 | nuagenetworks/vspk-go | vspk/me.go | CreateVCenter | func (o *Me) CreateVCenter(child *VCenter) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateVCenter(child *VCenter) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateVCenter",
"(",
"child",
"*",
"VCenter",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVCenter creates a new child VCenter under the Me | [
"CreateVCenter",
"creates",
"a",
"new",
"child",
"VCenter",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L261-L264 |
146,618 | nuagenetworks/vspk-go | vspk/me.go | PerformanceMonitors | func (o *Me) PerformanceMonitors(info *bambou.FetchingInfo) (PerformanceMonitorsList, *bambou.Error) {
var list PerformanceMonitorsList
err := bambou.CurrentSession().FetchChildren(o, PerformanceMonitorIdentity, &list, info)
return list, err
} | go | func (o *Me) PerformanceMonitors(info *bambou.FetchingInfo) (PerformanceMonitorsList, *bambou.Error) {
var list PerformanceMonitorsList
err := bambou.CurrentSession().FetchChildren(o, PerformanceMonitorIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"PerformanceMonitors",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"PerformanceMonitorsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"PerformanceMonitorsList",
"\n",
"err",
":=",
"bambou",
... | // PerformanceMonitors retrieves the list of child PerformanceMonitors of the Me | [
"PerformanceMonitors",
"retrieves",
"the",
"list",
"of",
"child",
"PerformanceMonitors",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L297-L302 |
146,619 | nuagenetworks/vspk-go | vspk/me.go | CreatePerformanceMonitor | func (o *Me) CreatePerformanceMonitor(child *PerformanceMonitor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreatePerformanceMonitor(child *PerformanceMonitor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreatePerformanceMonitor",
"(",
"child",
"*",
"PerformanceMonitor",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
... | // CreatePerformanceMonitor creates a new child PerformanceMonitor under the Me | [
"CreatePerformanceMonitor",
"creates",
"a",
"new",
"child",
"PerformanceMonitor",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L305-L308 |
146,620 | nuagenetworks/vspk-go | vspk/me.go | CreateCertificate | func (o *Me) CreateCertificate(child *Certificate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateCertificate(child *Certificate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateCertificate",
"(",
"child",
"*",
"Certificate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateCertificate creates a new child Certificate under the Me | [
"CreateCertificate",
"creates",
"a",
"new",
"child",
"Certificate",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L311-L314 |
146,621 | nuagenetworks/vspk-go | vspk/me.go | NetworkLayouts | func (o *Me) NetworkLayouts(info *bambou.FetchingInfo) (NetworkLayoutsList, *bambou.Error) {
var list NetworkLayoutsList
err := bambou.CurrentSession().FetchChildren(o, NetworkLayoutIdentity, &list, info)
return list, err
} | go | func (o *Me) NetworkLayouts(info *bambou.FetchingInfo) (NetworkLayoutsList, *bambou.Error) {
var list NetworkLayoutsList
err := bambou.CurrentSession().FetchChildren(o, NetworkLayoutIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"NetworkLayouts",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"NetworkLayoutsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"NetworkLayoutsList",
"\n",
"err",
":=",
"bambou",
".",
"Curre... | // NetworkLayouts retrieves the list of child NetworkLayouts of the Me | [
"NetworkLayouts",
"retrieves",
"the",
"list",
"of",
"child",
"NetworkLayouts",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L339-L344 |
146,622 | nuagenetworks/vspk-go | vspk/me.go | KeyServerMembers | func (o *Me) KeyServerMembers(info *bambou.FetchingInfo) (KeyServerMembersList, *bambou.Error) {
var list KeyServerMembersList
err := bambou.CurrentSession().FetchChildren(o, KeyServerMemberIdentity, &list, info)
return list, err
} | go | func (o *Me) KeyServerMembers(info *bambou.FetchingInfo) (KeyServerMembersList, *bambou.Error) {
var list KeyServerMembersList
err := bambou.CurrentSession().FetchChildren(o, KeyServerMemberIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"KeyServerMembers",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"KeyServerMembersList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"KeyServerMembersList",
"\n",
"err",
":=",
"bambou",
".",
... | // KeyServerMembers retrieves the list of child KeyServerMembers of the Me | [
"KeyServerMembers",
"retrieves",
"the",
"list",
"of",
"child",
"KeyServerMembers",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L355-L360 |
146,623 | nuagenetworks/vspk-go | vspk/me.go | CreateKeyServerMember | func (o *Me) CreateKeyServerMember(child *KeyServerMember) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateKeyServerMember(child *KeyServerMember) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateKeyServerMember",
"(",
"child",
"*",
"KeyServerMember",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateKeyServerMember creates a new child KeyServerMember under the Me | [
"CreateKeyServerMember",
"creates",
"a",
"new",
"child",
"KeyServerMember",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L363-L366 |
146,624 | nuagenetworks/vspk-go | vspk/me.go | ZFBAutoAssignments | func (o *Me) ZFBAutoAssignments(info *bambou.FetchingInfo) (ZFBAutoAssignmentsList, *bambou.Error) {
var list ZFBAutoAssignmentsList
err := bambou.CurrentSession().FetchChildren(o, ZFBAutoAssignmentIdentity, &list, info)
return list, err
} | go | func (o *Me) ZFBAutoAssignments(info *bambou.FetchingInfo) (ZFBAutoAssignmentsList, *bambou.Error) {
var list ZFBAutoAssignmentsList
err := bambou.CurrentSession().FetchChildren(o, ZFBAutoAssignmentIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"ZFBAutoAssignments",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"ZFBAutoAssignmentsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"ZFBAutoAssignmentsList",
"\n",
"err",
":=",
"bambou",
"... | // ZFBAutoAssignments retrieves the list of child ZFBAutoAssignments of the Me | [
"ZFBAutoAssignments",
"retrieves",
"the",
"list",
"of",
"child",
"ZFBAutoAssignments",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L369-L374 |
146,625 | nuagenetworks/vspk-go | vspk/me.go | CreateZFBAutoAssignment | func (o *Me) CreateZFBAutoAssignment(child *ZFBAutoAssignment) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateZFBAutoAssignment(child *ZFBAutoAssignment) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateZFBAutoAssignment",
"(",
"child",
"*",
"ZFBAutoAssignment",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateZFBAutoAssignment creates a new child ZFBAutoAssignment under the Me | [
"CreateZFBAutoAssignment",
"creates",
"a",
"new",
"child",
"ZFBAutoAssignment",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L377-L380 |
146,626 | nuagenetworks/vspk-go | vspk/me.go | EgressAdvFwdEntryTemplates | func (o *Me) EgressAdvFwdEntryTemplates(info *bambou.FetchingInfo) (EgressAdvFwdEntryTemplatesList, *bambou.Error) {
var list EgressAdvFwdEntryTemplatesList
err := bambou.CurrentSession().FetchChildren(o, EgressAdvFwdEntryTemplateIdentity, &list, info)
return list, err
} | go | func (o *Me) EgressAdvFwdEntryTemplates(info *bambou.FetchingInfo) (EgressAdvFwdEntryTemplatesList, *bambou.Error) {
var list EgressAdvFwdEntryTemplatesList
err := bambou.CurrentSession().FetchChildren(o, EgressAdvFwdEntryTemplateIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"EgressAdvFwdEntryTemplates",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"EgressAdvFwdEntryTemplatesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"EgressAdvFwdEntryTemplatesList",
"\n",
"err",... | // EgressAdvFwdEntryTemplates retrieves the list of child EgressAdvFwdEntryTemplates of the Me | [
"EgressAdvFwdEntryTemplates",
"retrieves",
"the",
"list",
"of",
"child",
"EgressAdvFwdEntryTemplates",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L429-L434 |
146,627 | nuagenetworks/vspk-go | vspk/me.go | CreateDomainFIPAclTemplate | func (o *Me) CreateDomainFIPAclTemplate(child *DomainFIPAclTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateDomainFIPAclTemplate(child *DomainFIPAclTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateDomainFIPAclTemplate",
"(",
"child",
"*",
"DomainFIPAclTemplate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
... | // CreateDomainFIPAclTemplate creates a new child DomainFIPAclTemplate under the Me | [
"CreateDomainFIPAclTemplate",
"creates",
"a",
"new",
"child",
"DomainFIPAclTemplate",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L445-L448 |
146,628 | nuagenetworks/vspk-go | vspk/me.go | EgressQOSPolicies | func (o *Me) EgressQOSPolicies(info *bambou.FetchingInfo) (EgressQOSPoliciesList, *bambou.Error) {
var list EgressQOSPoliciesList
err := bambou.CurrentSession().FetchChildren(o, EgressQOSPolicyIdentity, &list, info)
return list, err
} | go | func (o *Me) EgressQOSPolicies(info *bambou.FetchingInfo) (EgressQOSPoliciesList, *bambou.Error) {
var list EgressQOSPoliciesList
err := bambou.CurrentSession().FetchChildren(o, EgressQOSPolicyIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"EgressQOSPolicies",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"EgressQOSPoliciesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"EgressQOSPoliciesList",
"\n",
"err",
":=",
"bambou",
".",... | // EgressQOSPolicies retrieves the list of child EgressQOSPolicies of the Me | [
"EgressQOSPolicies",
"retrieves",
"the",
"list",
"of",
"child",
"EgressQOSPolicies",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L451-L456 |
146,629 | nuagenetworks/vspk-go | vspk/me.go | CreateSharedNetworkResource | func (o *Me) CreateSharedNetworkResource(child *SharedNetworkResource) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateSharedNetworkResource(child *SharedNetworkResource) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateSharedNetworkResource",
"(",
"child",
"*",
"SharedNetworkResource",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
... | // CreateSharedNetworkResource creates a new child SharedNetworkResource under the Me | [
"CreateSharedNetworkResource",
"creates",
"a",
"new",
"child",
"SharedNetworkResource",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L473-L476 |
146,630 | nuagenetworks/vspk-go | vspk/me.go | Licenses | func (o *Me) Licenses(info *bambou.FetchingInfo) (LicensesList, *bambou.Error) {
var list LicensesList
err := bambou.CurrentSession().FetchChildren(o, LicenseIdentity, &list, info)
return list, err
} | go | func (o *Me) Licenses(info *bambou.FetchingInfo) (LicensesList, *bambou.Error) {
var list LicensesList
err := bambou.CurrentSession().FetchChildren(o, LicenseIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"Licenses",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"LicensesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"LicensesList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"(",... | // Licenses retrieves the list of child Licenses of the Me | [
"Licenses",
"retrieves",
"the",
"list",
"of",
"child",
"Licenses",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L479-L484 |
146,631 | nuagenetworks/vspk-go | vspk/me.go | CreateLicense | func (o *Me) CreateLicense(child *License) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateLicense(child *License) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateLicense",
"(",
"child",
"*",
"License",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateLicense creates a new child License under the Me | [
"CreateLicense",
"creates",
"a",
"new",
"child",
"License",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L487-L490 |
146,632 | nuagenetworks/vspk-go | vspk/me.go | LicenseStatus | func (o *Me) LicenseStatus(info *bambou.FetchingInfo) (LicenseStatusList, *bambou.Error) {
var list LicenseStatusList
err := bambou.CurrentSession().FetchChildren(o, LicenseStatusIdentity, &list, info)
return list, err
} | go | func (o *Me) LicenseStatus(info *bambou.FetchingInfo) (LicenseStatusList, *bambou.Error) {
var list LicenseStatusList
err := bambou.CurrentSession().FetchChildren(o, LicenseStatusIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"LicenseStatus",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"LicenseStatusList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"LicenseStatusList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentS... | // LicenseStatus retrieves the list of child LicenseStatus of the Me | [
"LicenseStatus",
"retrieves",
"the",
"list",
"of",
"child",
"LicenseStatus",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L493-L498 |
146,633 | nuagenetworks/vspk-go | vspk/me.go | MirrorDestinations | func (o *Me) MirrorDestinations(info *bambou.FetchingInfo) (MirrorDestinationsList, *bambou.Error) {
var list MirrorDestinationsList
err := bambou.CurrentSession().FetchChildren(o, MirrorDestinationIdentity, &list, info)
return list, err
} | go | func (o *Me) MirrorDestinations(info *bambou.FetchingInfo) (MirrorDestinationsList, *bambou.Error) {
var list MirrorDestinationsList
err := bambou.CurrentSession().FetchChildren(o, MirrorDestinationIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"MirrorDestinations",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"MirrorDestinationsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"MirrorDestinationsList",
"\n",
"err",
":=",
"bambou",
"... | // MirrorDestinations retrieves the list of child MirrorDestinations of the Me | [
"MirrorDestinations",
"retrieves",
"the",
"list",
"of",
"child",
"MirrorDestinations",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L501-L506 |
146,634 | nuagenetworks/vspk-go | vspk/me.go | CreateMirrorDestination | func (o *Me) CreateMirrorDestination(child *MirrorDestination) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateMirrorDestination(child *MirrorDestination) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateMirrorDestination",
"(",
"child",
"*",
"MirrorDestination",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateMirrorDestination creates a new child MirrorDestination under the Me | [
"CreateMirrorDestination",
"creates",
"a",
"new",
"child",
"MirrorDestination",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L509-L512 |
146,635 | nuagenetworks/vspk-go | vspk/me.go | SiteInfos | func (o *Me) SiteInfos(info *bambou.FetchingInfo) (SiteInfosList, *bambou.Error) {
var list SiteInfosList
err := bambou.CurrentSession().FetchChildren(o, SiteInfoIdentity, &list, info)
return list, err
} | go | func (o *Me) SiteInfos(info *bambou.FetchingInfo) (SiteInfosList, *bambou.Error) {
var list SiteInfosList
err := bambou.CurrentSession().FetchChildren(o, SiteInfoIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"SiteInfos",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"SiteInfosList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"SiteInfosList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"... | // SiteInfos retrieves the list of child SiteInfos of the Me | [
"SiteInfos",
"retrieves",
"the",
"list",
"of",
"child",
"SiteInfos",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L531-L536 |
146,636 | nuagenetworks/vspk-go | vspk/me.go | CreateSiteInfo | func (o *Me) CreateSiteInfo(child *SiteInfo) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateSiteInfo(child *SiteInfo) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateSiteInfo",
"(",
"child",
"*",
"SiteInfo",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateSiteInfo creates a new child SiteInfo under the Me | [
"CreateSiteInfo",
"creates",
"a",
"new",
"child",
"SiteInfo",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L539-L542 |
146,637 | nuagenetworks/vspk-go | vspk/me.go | AllGateways | func (o *Me) AllGateways(info *bambou.FetchingInfo) (AllGatewaysList, *bambou.Error) {
var list AllGatewaysList
err := bambou.CurrentSession().FetchChildren(o, AllGatewayIdentity, &list, info)
return list, err
} | go | func (o *Me) AllGateways(info *bambou.FetchingInfo) (AllGatewaysList, *bambou.Error) {
var list AllGatewaysList
err := bambou.CurrentSession().FetchChildren(o, AllGatewayIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"AllGateways",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"AllGatewaysList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"AllGatewaysList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession... | // AllGateways retrieves the list of child AllGateways of the Me | [
"AllGateways",
"retrieves",
"the",
"list",
"of",
"child",
"AllGateways",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L545-L550 |
146,638 | nuagenetworks/vspk-go | vspk/me.go | AllRedundancyGroups | func (o *Me) AllRedundancyGroups(info *bambou.FetchingInfo) (AllRedundancyGroupsList, *bambou.Error) {
var list AllRedundancyGroupsList
err := bambou.CurrentSession().FetchChildren(o, AllRedundancyGroupIdentity, &list, info)
return list, err
} | go | func (o *Me) AllRedundancyGroups(info *bambou.FetchingInfo) (AllRedundancyGroupsList, *bambou.Error) {
var list AllRedundancyGroupsList
err := bambou.CurrentSession().FetchChildren(o, AllRedundancyGroupIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"AllRedundancyGroups",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"AllRedundancyGroupsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"AllRedundancyGroupsList",
"\n",
"err",
":=",
"bambou",
... | // AllRedundancyGroups retrieves the list of child AllRedundancyGroups of the Me | [
"AllRedundancyGroups",
"retrieves",
"the",
"list",
"of",
"child",
"AllRedundancyGroups",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L553-L558 |
146,639 | nuagenetworks/vspk-go | vspk/me.go | CreateAllRedundancyGroup | func (o *Me) CreateAllRedundancyGroup(child *AllRedundancyGroup) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateAllRedundancyGroup(child *AllRedundancyGroup) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateAllRedundancyGroup",
"(",
"child",
"*",
"AllRedundancyGroup",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
... | // CreateAllRedundancyGroup creates a new child AllRedundancyGroup under the Me | [
"CreateAllRedundancyGroup",
"creates",
"a",
"new",
"child",
"AllRedundancyGroup",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L561-L564 |
146,640 | nuagenetworks/vspk-go | vspk/me.go | VMs | func (o *Me) VMs(info *bambou.FetchingInfo) (VMsList, *bambou.Error) {
var list VMsList
err := bambou.CurrentSession().FetchChildren(o, VMIdentity, &list, info)
return list, err
} | go | func (o *Me) VMs(info *bambou.FetchingInfo) (VMsList, *bambou.Error) {
var list VMsList
err := bambou.CurrentSession().FetchChildren(o, VMIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"VMs",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VMsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VMsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
... | // VMs retrieves the list of child VMs of the Me | [
"VMs",
"retrieves",
"the",
"list",
"of",
"child",
"VMs",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L589-L594 |
146,641 | nuagenetworks/vspk-go | vspk/me.go | CreateVM | func (o *Me) CreateVM(child *VM) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateVM(child *VM) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateVM",
"(",
"child",
"*",
"VM",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVM creates a new child VM under the Me | [
"CreateVM",
"creates",
"a",
"new",
"child",
"VM",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L597-L600 |
146,642 | nuagenetworks/vspk-go | vspk/me.go | VMInterfaces | func (o *Me) VMInterfaces(info *bambou.FetchingInfo) (VMInterfacesList, *bambou.Error) {
var list VMInterfacesList
err := bambou.CurrentSession().FetchChildren(o, VMInterfaceIdentity, &list, info)
return list, err
} | go | func (o *Me) VMInterfaces(info *bambou.FetchingInfo) (VMInterfacesList, *bambou.Error) {
var list VMInterfacesList
err := bambou.CurrentSession().FetchChildren(o, VMInterfaceIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"VMInterfaces",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VMInterfacesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VMInterfacesList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSess... | // VMInterfaces retrieves the list of child VMInterfaces of the Me | [
"VMInterfaces",
"retrieves",
"the",
"list",
"of",
"child",
"VMInterfaces",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L603-L608 |
146,643 | nuagenetworks/vspk-go | vspk/me.go | CloudMgmtSystems | func (o *Me) CloudMgmtSystems(info *bambou.FetchingInfo) (CloudMgmtSystemsList, *bambou.Error) {
var list CloudMgmtSystemsList
err := bambou.CurrentSession().FetchChildren(o, CloudMgmtSystemIdentity, &list, info)
return list, err
} | go | func (o *Me) CloudMgmtSystems(info *bambou.FetchingInfo) (CloudMgmtSystemsList, *bambou.Error) {
var list CloudMgmtSystemsList
err := bambou.CurrentSession().FetchChildren(o, CloudMgmtSystemIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CloudMgmtSystems",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"CloudMgmtSystemsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"CloudMgmtSystemsList",
"\n",
"err",
":=",
"bambou",
".",
... | // CloudMgmtSystems retrieves the list of child CloudMgmtSystems of the Me | [
"CloudMgmtSystems",
"retrieves",
"the",
"list",
"of",
"child",
"CloudMgmtSystems",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L611-L616 |
146,644 | nuagenetworks/vspk-go | vspk/me.go | CreateCloudMgmtSystem | func (o *Me) CreateCloudMgmtSystem(child *CloudMgmtSystem) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateCloudMgmtSystem(child *CloudMgmtSystem) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateCloudMgmtSystem",
"(",
"child",
"*",
"CloudMgmtSystem",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateCloudMgmtSystem creates a new child CloudMgmtSystem under the Me | [
"CreateCloudMgmtSystem",
"creates",
"a",
"new",
"child",
"CloudMgmtSystem",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L619-L622 |
146,645 | nuagenetworks/vspk-go | vspk/me.go | Underlays | func (o *Me) Underlays(info *bambou.FetchingInfo) (UnderlaysList, *bambou.Error) {
var list UnderlaysList
err := bambou.CurrentSession().FetchChildren(o, UnderlayIdentity, &list, info)
return list, err
} | go | func (o *Me) Underlays(info *bambou.FetchingInfo) (UnderlaysList, *bambou.Error) {
var list UnderlaysList
err := bambou.CurrentSession().FetchChildren(o, UnderlayIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"Underlays",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"UnderlaysList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"UnderlaysList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"... | // Underlays retrieves the list of child Underlays of the Me | [
"Underlays",
"retrieves",
"the",
"list",
"of",
"child",
"Underlays",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L625-L630 |
146,646 | nuagenetworks/vspk-go | vspk/me.go | CreateUnderlay | func (o *Me) CreateUnderlay(child *Underlay) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateUnderlay(child *Underlay) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateUnderlay",
"(",
"child",
"*",
"Underlay",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateUnderlay creates a new child Underlay under the Me | [
"CreateUnderlay",
"creates",
"a",
"new",
"child",
"Underlay",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L633-L636 |
146,647 | nuagenetworks/vspk-go | vspk/me.go | VNFCatalogs | func (o *Me) VNFCatalogs(info *bambou.FetchingInfo) (VNFCatalogsList, *bambou.Error) {
var list VNFCatalogsList
err := bambou.CurrentSession().FetchChildren(o, VNFCatalogIdentity, &list, info)
return list, err
} | go | func (o *Me) VNFCatalogs(info *bambou.FetchingInfo) (VNFCatalogsList, *bambou.Error) {
var list VNFCatalogsList
err := bambou.CurrentSession().FetchChildren(o, VNFCatalogIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"VNFCatalogs",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VNFCatalogsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VNFCatalogsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession... | // VNFCatalogs retrieves the list of child VNFCatalogs of the Me | [
"VNFCatalogs",
"retrieves",
"the",
"list",
"of",
"child",
"VNFCatalogs",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L639-L644 |
146,648 | nuagenetworks/vspk-go | vspk/me.go | VNFMetadatas | func (o *Me) VNFMetadatas(info *bambou.FetchingInfo) (VNFMetadatasList, *bambou.Error) {
var list VNFMetadatasList
err := bambou.CurrentSession().FetchChildren(o, VNFMetadataIdentity, &list, info)
return list, err
} | go | func (o *Me) VNFMetadatas(info *bambou.FetchingInfo) (VNFMetadatasList, *bambou.Error) {
var list VNFMetadatasList
err := bambou.CurrentSession().FetchChildren(o, VNFMetadataIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"VNFMetadatas",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VNFMetadatasList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VNFMetadatasList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSess... | // VNFMetadatas retrieves the list of child VNFMetadatas of the Me | [
"VNFMetadatas",
"retrieves",
"the",
"list",
"of",
"child",
"VNFMetadatas",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L647-L652 |
146,649 | nuagenetworks/vspk-go | vspk/me.go | CreateVNFMetadata | func (o *Me) CreateVNFMetadata(child *VNFMetadata) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateVNFMetadata(child *VNFMetadata) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateVNFMetadata",
"(",
"child",
"*",
"VNFMetadata",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVNFMetadata creates a new child VNFMetadata under the Me | [
"CreateVNFMetadata",
"creates",
"a",
"new",
"child",
"VNFMetadata",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L655-L658 |
146,650 | nuagenetworks/vspk-go | vspk/me.go | InfrastructureAccessProfiles | func (o *Me) InfrastructureAccessProfiles(info *bambou.FetchingInfo) (InfrastructureAccessProfilesList, *bambou.Error) {
var list InfrastructureAccessProfilesList
err := bambou.CurrentSession().FetchChildren(o, InfrastructureAccessProfileIdentity, &list, info)
return list, err
} | go | func (o *Me) InfrastructureAccessProfiles(info *bambou.FetchingInfo) (InfrastructureAccessProfilesList, *bambou.Error) {
var list InfrastructureAccessProfilesList
err := bambou.CurrentSession().FetchChildren(o, InfrastructureAccessProfileIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"InfrastructureAccessProfiles",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"InfrastructureAccessProfilesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"InfrastructureAccessProfilesList",
"\n",
... | // InfrastructureAccessProfiles retrieves the list of child InfrastructureAccessProfiles of the Me | [
"InfrastructureAccessProfiles",
"retrieves",
"the",
"list",
"of",
"child",
"InfrastructureAccessProfiles",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L661-L666 |
146,651 | nuagenetworks/vspk-go | vspk/me.go | CreateInfrastructureAccessProfile | func (o *Me) CreateInfrastructureAccessProfile(child *InfrastructureAccessProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateInfrastructureAccessProfile(child *InfrastructureAccessProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateInfrastructureAccessProfile",
"(",
"child",
"*",
"InfrastructureAccessProfile",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
"... | // CreateInfrastructureAccessProfile creates a new child InfrastructureAccessProfile under the Me | [
"CreateInfrastructureAccessProfile",
"creates",
"a",
"new",
"child",
"InfrastructureAccessProfile",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L669-L672 |
146,652 | nuagenetworks/vspk-go | vspk/me.go | InfrastructureEVDFProfiles | func (o *Me) InfrastructureEVDFProfiles(info *bambou.FetchingInfo) (InfrastructureEVDFProfilesList, *bambou.Error) {
var list InfrastructureEVDFProfilesList
err := bambou.CurrentSession().FetchChildren(o, InfrastructureEVDFProfileIdentity, &list, info)
return list, err
} | go | func (o *Me) InfrastructureEVDFProfiles(info *bambou.FetchingInfo) (InfrastructureEVDFProfilesList, *bambou.Error) {
var list InfrastructureEVDFProfilesList
err := bambou.CurrentSession().FetchChildren(o, InfrastructureEVDFProfileIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"InfrastructureEVDFProfiles",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"InfrastructureEVDFProfilesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"InfrastructureEVDFProfilesList",
"\n",
"err",... | // InfrastructureEVDFProfiles retrieves the list of child InfrastructureEVDFProfiles of the Me | [
"InfrastructureEVDFProfiles",
"retrieves",
"the",
"list",
"of",
"child",
"InfrastructureEVDFProfiles",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L675-L680 |
146,653 | nuagenetworks/vspk-go | vspk/me.go | CreateInfrastructureEVDFProfile | func (o *Me) CreateInfrastructureEVDFProfile(child *InfrastructureEVDFProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateInfrastructureEVDFProfile(child *InfrastructureEVDFProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateInfrastructureEVDFProfile",
"(",
"child",
"*",
"InfrastructureEVDFProfile",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
... | // CreateInfrastructureEVDFProfile creates a new child InfrastructureEVDFProfile under the Me | [
"CreateInfrastructureEVDFProfile",
"creates",
"a",
"new",
"child",
"InfrastructureEVDFProfile",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L683-L686 |
146,654 | nuagenetworks/vspk-go | vspk/me.go | InfrastructureGatewayProfiles | func (o *Me) InfrastructureGatewayProfiles(info *bambou.FetchingInfo) (InfrastructureGatewayProfilesList, *bambou.Error) {
var list InfrastructureGatewayProfilesList
err := bambou.CurrentSession().FetchChildren(o, InfrastructureGatewayProfileIdentity, &list, info)
return list, err
} | go | func (o *Me) InfrastructureGatewayProfiles(info *bambou.FetchingInfo) (InfrastructureGatewayProfilesList, *bambou.Error) {
var list InfrastructureGatewayProfilesList
err := bambou.CurrentSession().FetchChildren(o, InfrastructureGatewayProfileIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"InfrastructureGatewayProfiles",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"InfrastructureGatewayProfilesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"InfrastructureGatewayProfilesList",
"\n",... | // InfrastructureGatewayProfiles retrieves the list of child InfrastructureGatewayProfiles of the Me | [
"InfrastructureGatewayProfiles",
"retrieves",
"the",
"list",
"of",
"child",
"InfrastructureGatewayProfiles",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L689-L694 |
146,655 | nuagenetworks/vspk-go | vspk/me.go | CreateInfrastructureGatewayProfile | func (o *Me) CreateInfrastructureGatewayProfile(child *InfrastructureGatewayProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateInfrastructureGatewayProfile(child *InfrastructureGatewayProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateInfrastructureGatewayProfile",
"(",
"child",
"*",
"InfrastructureGatewayProfile",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
... | // CreateInfrastructureGatewayProfile creates a new child InfrastructureGatewayProfile under the Me | [
"CreateInfrastructureGatewayProfile",
"creates",
"a",
"new",
"child",
"InfrastructureGatewayProfile",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L697-L700 |
146,656 | nuagenetworks/vspk-go | vspk/me.go | InfrastructureVscProfiles | func (o *Me) InfrastructureVscProfiles(info *bambou.FetchingInfo) (InfrastructureVscProfilesList, *bambou.Error) {
var list InfrastructureVscProfilesList
err := bambou.CurrentSession().FetchChildren(o, InfrastructureVscProfileIdentity, &list, info)
return list, err
} | go | func (o *Me) InfrastructureVscProfiles(info *bambou.FetchingInfo) (InfrastructureVscProfilesList, *bambou.Error) {
var list InfrastructureVscProfilesList
err := bambou.CurrentSession().FetchChildren(o, InfrastructureVscProfileIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"InfrastructureVscProfiles",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"InfrastructureVscProfilesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"InfrastructureVscProfilesList",
"\n",
"err",
... | // InfrastructureVscProfiles retrieves the list of child InfrastructureVscProfiles of the Me | [
"InfrastructureVscProfiles",
"retrieves",
"the",
"list",
"of",
"child",
"InfrastructureVscProfiles",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L703-L708 |
146,657 | nuagenetworks/vspk-go | vspk/me.go | CreateInfrastructureVscProfile | func (o *Me) CreateInfrastructureVscProfile(child *InfrastructureVscProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateInfrastructureVscProfile(child *InfrastructureVscProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateInfrastructureVscProfile",
"(",
"child",
"*",
"InfrastructureVscProfile",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
... | // CreateInfrastructureVscProfile creates a new child InfrastructureVscProfile under the Me | [
"CreateInfrastructureVscProfile",
"creates",
"a",
"new",
"child",
"InfrastructureVscProfile",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L711-L714 |
146,658 | nuagenetworks/vspk-go | vspk/me.go | VNFThresholdPolicies | func (o *Me) VNFThresholdPolicies(info *bambou.FetchingInfo) (VNFThresholdPoliciesList, *bambou.Error) {
var list VNFThresholdPoliciesList
err := bambou.CurrentSession().FetchChildren(o, VNFThresholdPolicyIdentity, &list, info)
return list, err
} | go | func (o *Me) VNFThresholdPolicies(info *bambou.FetchingInfo) (VNFThresholdPoliciesList, *bambou.Error) {
var list VNFThresholdPoliciesList
err := bambou.CurrentSession().FetchChildren(o, VNFThresholdPolicyIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"VNFThresholdPolicies",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VNFThresholdPoliciesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VNFThresholdPoliciesList",
"\n",
"err",
":=",
"bambou... | // VNFThresholdPolicies retrieves the list of child VNFThresholdPolicies of the Me | [
"VNFThresholdPolicies",
"retrieves",
"the",
"list",
"of",
"child",
"VNFThresholdPolicies",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L717-L722 |
146,659 | nuagenetworks/vspk-go | vspk/me.go | CreateIngressQOSPolicy | func (o *Me) CreateIngressQOSPolicy(child *IngressQOSPolicy) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateIngressQOSPolicy(child *IngressQOSPolicy) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateIngressQOSPolicy",
"(",
"child",
"*",
"IngressQOSPolicy",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateIngressQOSPolicy creates a new child IngressQOSPolicy under the Me | [
"CreateIngressQOSPolicy",
"creates",
"a",
"new",
"child",
"IngressQOSPolicy",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L763-L766 |
146,660 | nuagenetworks/vspk-go | vspk/me.go | Enterprises | func (o *Me) Enterprises(info *bambou.FetchingInfo) (EnterprisesList, *bambou.Error) {
var list EnterprisesList
err := bambou.CurrentSession().FetchChildren(o, EnterpriseIdentity, &list, info)
return list, err
} | go | func (o *Me) Enterprises(info *bambou.FetchingInfo) (EnterprisesList, *bambou.Error) {
var list EnterprisesList
err := bambou.CurrentSession().FetchChildren(o, EnterpriseIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"Enterprises",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"EnterprisesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"EnterprisesList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession... | // Enterprises retrieves the list of child Enterprises of the Me | [
"Enterprises",
"retrieves",
"the",
"list",
"of",
"child",
"Enterprises",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L769-L774 |
146,661 | nuagenetworks/vspk-go | vspk/me.go | CreateEnterprise | func (o *Me) CreateEnterprise(child *Enterprise) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateEnterprise(child *Enterprise) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateEnterprise",
"(",
"child",
"*",
"Enterprise",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateEnterprise creates a new child Enterprise under the Me | [
"CreateEnterprise",
"creates",
"a",
"new",
"child",
"Enterprise",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L777-L780 |
146,662 | nuagenetworks/vspk-go | vspk/me.go | EnterpriseProfiles | func (o *Me) EnterpriseProfiles(info *bambou.FetchingInfo) (EnterpriseProfilesList, *bambou.Error) {
var list EnterpriseProfilesList
err := bambou.CurrentSession().FetchChildren(o, EnterpriseProfileIdentity, &list, info)
return list, err
} | go | func (o *Me) EnterpriseProfiles(info *bambou.FetchingInfo) (EnterpriseProfilesList, *bambou.Error) {
var list EnterpriseProfilesList
err := bambou.CurrentSession().FetchChildren(o, EnterpriseProfileIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"EnterpriseProfiles",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"EnterpriseProfilesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"EnterpriseProfilesList",
"\n",
"err",
":=",
"bambou",
"... | // EnterpriseProfiles retrieves the list of child EnterpriseProfiles of the Me | [
"EnterpriseProfiles",
"retrieves",
"the",
"list",
"of",
"child",
"EnterpriseProfiles",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L783-L788 |
146,663 | nuagenetworks/vspk-go | vspk/me.go | CreateEnterpriseProfile | func (o *Me) CreateEnterpriseProfile(child *EnterpriseProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateEnterpriseProfile(child *EnterpriseProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateEnterpriseProfile",
"(",
"child",
"*",
"EnterpriseProfile",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateEnterpriseProfile creates a new child EnterpriseProfile under the Me | [
"CreateEnterpriseProfile",
"creates",
"a",
"new",
"child",
"EnterpriseProfile",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L791-L794 |
146,664 | nuagenetworks/vspk-go | vspk/me.go | PolicyObjectGroups | func (o *Me) PolicyObjectGroups(info *bambou.FetchingInfo) (PolicyObjectGroupsList, *bambou.Error) {
var list PolicyObjectGroupsList
err := bambou.CurrentSession().FetchChildren(o, PolicyObjectGroupIdentity, &list, info)
return list, err
} | go | func (o *Me) PolicyObjectGroups(info *bambou.FetchingInfo) (PolicyObjectGroupsList, *bambou.Error) {
var list PolicyObjectGroupsList
err := bambou.CurrentSession().FetchChildren(o, PolicyObjectGroupIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"PolicyObjectGroups",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"PolicyObjectGroupsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"PolicyObjectGroupsList",
"\n",
"err",
":=",
"bambou",
"... | // PolicyObjectGroups retrieves the list of child PolicyObjectGroups of the Me | [
"PolicyObjectGroups",
"retrieves",
"the",
"list",
"of",
"child",
"PolicyObjectGroups",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L819-L824 |
146,665 | nuagenetworks/vspk-go | vspk/me.go | Containers | func (o *Me) Containers(info *bambou.FetchingInfo) (ContainersList, *bambou.Error) {
var list ContainersList
err := bambou.CurrentSession().FetchChildren(o, ContainerIdentity, &list, info)
return list, err
} | go | func (o *Me) Containers(info *bambou.FetchingInfo) (ContainersList, *bambou.Error) {
var list ContainersList
err := bambou.CurrentSession().FetchChildren(o, ContainerIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"Containers",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"ContainersList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"ContainersList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
... | // Containers retrieves the list of child Containers of the Me | [
"Containers",
"retrieves",
"the",
"list",
"of",
"child",
"Containers",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L857-L862 |
146,666 | nuagenetworks/vspk-go | vspk/me.go | CreateContainer | func (o *Me) CreateContainer(child *Container) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateContainer(child *Container) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateContainer",
"(",
"child",
"*",
"Container",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateContainer creates a new child Container under the Me | [
"CreateContainer",
"creates",
"a",
"new",
"child",
"Container",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L865-L868 |
146,667 | nuagenetworks/vspk-go | vspk/me.go | QosPolicers | func (o *Me) QosPolicers(info *bambou.FetchingInfo) (QosPolicersList, *bambou.Error) {
var list QosPolicersList
err := bambou.CurrentSession().FetchChildren(o, QosPolicerIdentity, &list, info)
return list, err
} | go | func (o *Me) QosPolicers(info *bambou.FetchingInfo) (QosPolicersList, *bambou.Error) {
var list QosPolicersList
err := bambou.CurrentSession().FetchChildren(o, QosPolicerIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"QosPolicers",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"QosPolicersList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"QosPolicersList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession... | // QosPolicers retrieves the list of child QosPolicers of the Me | [
"QosPolicers",
"retrieves",
"the",
"list",
"of",
"child",
"QosPolicers",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L879-L884 |
146,668 | nuagenetworks/vspk-go | vspk/me.go | CreateQosPolicer | func (o *Me) CreateQosPolicer(child *QosPolicer) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateQosPolicer(child *QosPolicer) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateQosPolicer",
"(",
"child",
"*",
"QosPolicer",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateQosPolicer creates a new child QosPolicer under the Me | [
"CreateQosPolicer",
"creates",
"a",
"new",
"child",
"QosPolicer",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L887-L890 |
146,669 | nuagenetworks/vspk-go | vspk/me.go | Applicationperformancemanagements | func (o *Me) Applicationperformancemanagements(info *bambou.FetchingInfo) (ApplicationperformancemanagementsList, *bambou.Error) {
var list ApplicationperformancemanagementsList
err := bambou.CurrentSession().FetchChildren(o, ApplicationperformancemanagementIdentity, &list, info)
return list, err
} | go | func (o *Me) Applicationperformancemanagements(info *bambou.FetchingInfo) (ApplicationperformancemanagementsList, *bambou.Error) {
var list ApplicationperformancemanagementsList
err := bambou.CurrentSession().FetchChildren(o, ApplicationperformancemanagementIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"Applicationperformancemanagements",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"ApplicationperformancemanagementsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"ApplicationperformancemanagementsLi... | // Applicationperformancemanagements retrieves the list of child Applicationperformancemanagements of the Me | [
"Applicationperformancemanagements",
"retrieves",
"the",
"list",
"of",
"child",
"Applicationperformancemanagements",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L939-L944 |
146,670 | nuagenetworks/vspk-go | vspk/me.go | VCenterVRSConfigs | func (o *Me) VCenterVRSConfigs(info *bambou.FetchingInfo) (VCenterVRSConfigsList, *bambou.Error) {
var list VCenterVRSConfigsList
err := bambou.CurrentSession().FetchChildren(o, VCenterVRSConfigIdentity, &list, info)
return list, err
} | go | func (o *Me) VCenterVRSConfigs(info *bambou.FetchingInfo) (VCenterVRSConfigsList, *bambou.Error) {
var list VCenterVRSConfigsList
err := bambou.CurrentSession().FetchChildren(o, VCenterVRSConfigIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"VCenterVRSConfigs",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VCenterVRSConfigsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VCenterVRSConfigsList",
"\n",
"err",
":=",
"bambou",
".",... | // VCenterVRSConfigs retrieves the list of child VCenterVRSConfigs of the Me | [
"VCenterVRSConfigs",
"retrieves",
"the",
"list",
"of",
"child",
"VCenterVRSConfigs",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L955-L960 |
146,671 | nuagenetworks/vspk-go | vspk/me.go | UserContexts | func (o *Me) UserContexts(info *bambou.FetchingInfo) (UserContextsList, *bambou.Error) {
var list UserContextsList
err := bambou.CurrentSession().FetchChildren(o, UserContextIdentity, &list, info)
return list, err
} | go | func (o *Me) UserContexts(info *bambou.FetchingInfo) (UserContextsList, *bambou.Error) {
var list UserContextsList
err := bambou.CurrentSession().FetchChildren(o, UserContextIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"UserContexts",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"UserContextsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"UserContextsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSess... | // UserContexts retrieves the list of child UserContexts of the Me | [
"UserContexts",
"retrieves",
"the",
"list",
"of",
"child",
"UserContexts",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L991-L996 |
146,672 | nuagenetworks/vspk-go | vspk/me.go | CreateNSGateway | func (o *Me) CreateNSGateway(child *NSGateway) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateNSGateway(child *NSGateway) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateNSGateway",
"(",
"child",
"*",
"NSGateway",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateNSGateway creates a new child NSGateway under the Me | [
"CreateNSGateway",
"creates",
"a",
"new",
"child",
"NSGateway",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1007-L1010 |
146,673 | nuagenetworks/vspk-go | vspk/me.go | CreateNSGatewayTemplate | func (o *Me) CreateNSGatewayTemplate(child *NSGatewayTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateNSGatewayTemplate(child *NSGatewayTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateNSGatewayTemplate",
"(",
"child",
"*",
"NSGatewayTemplate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateNSGatewayTemplate creates a new child NSGatewayTemplate under the Me | [
"CreateNSGatewayTemplate",
"creates",
"a",
"new",
"child",
"NSGatewayTemplate",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1021-L1024 |
146,674 | nuagenetworks/vspk-go | vspk/me.go | NSGPatchProfiles | func (o *Me) NSGPatchProfiles(info *bambou.FetchingInfo) (NSGPatchProfilesList, *bambou.Error) {
var list NSGPatchProfilesList
err := bambou.CurrentSession().FetchChildren(o, NSGPatchProfileIdentity, &list, info)
return list, err
} | go | func (o *Me) NSGPatchProfiles(info *bambou.FetchingInfo) (NSGPatchProfilesList, *bambou.Error) {
var list NSGPatchProfilesList
err := bambou.CurrentSession().FetchChildren(o, NSGPatchProfileIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"NSGPatchProfiles",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"NSGPatchProfilesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"NSGPatchProfilesList",
"\n",
"err",
":=",
"bambou",
".",
... | // NSGPatchProfiles retrieves the list of child NSGPatchProfiles of the Me | [
"NSGPatchProfiles",
"retrieves",
"the",
"list",
"of",
"child",
"NSGPatchProfiles",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1049-L1054 |
146,675 | nuagenetworks/vspk-go | vspk/me.go | CreateNSGPatchProfile | func (o *Me) CreateNSGPatchProfile(child *NSGPatchProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateNSGPatchProfile(child *NSGPatchProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateNSGPatchProfile",
"(",
"child",
"*",
"NSGPatchProfile",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateNSGPatchProfile creates a new child NSGPatchProfile under the Me | [
"CreateNSGPatchProfile",
"creates",
"a",
"new",
"child",
"NSGPatchProfile",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1057-L1060 |
146,676 | nuagenetworks/vspk-go | vspk/me.go | NSRedundantGatewayGroups | func (o *Me) NSRedundantGatewayGroups(info *bambou.FetchingInfo) (NSRedundantGatewayGroupsList, *bambou.Error) {
var list NSRedundantGatewayGroupsList
err := bambou.CurrentSession().FetchChildren(o, NSRedundantGatewayGroupIdentity, &list, info)
return list, err
} | go | func (o *Me) NSRedundantGatewayGroups(info *bambou.FetchingInfo) (NSRedundantGatewayGroupsList, *bambou.Error) {
var list NSRedundantGatewayGroupsList
err := bambou.CurrentSession().FetchChildren(o, NSRedundantGatewayGroupIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"NSRedundantGatewayGroups",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"NSRedundantGatewayGroupsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"NSRedundantGatewayGroupsList",
"\n",
"err",
":=... | // NSRedundantGatewayGroups retrieves the list of child NSRedundantGatewayGroups of the Me | [
"NSRedundantGatewayGroups",
"retrieves",
"the",
"list",
"of",
"child",
"NSRedundantGatewayGroups",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1063-L1068 |
146,677 | nuagenetworks/vspk-go | vspk/me.go | CreateNSRedundantGatewayGroup | func (o *Me) CreateNSRedundantGatewayGroup(child *NSRedundantGatewayGroup) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateNSRedundantGatewayGroup(child *NSRedundantGatewayGroup) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateNSRedundantGatewayGroup",
"(",
"child",
"*",
"NSRedundantGatewayGroup",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\... | // CreateNSRedundantGatewayGroup creates a new child NSRedundantGatewayGroup under the Me | [
"CreateNSRedundantGatewayGroup",
"creates",
"a",
"new",
"child",
"NSRedundantGatewayGroup",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1071-L1074 |
146,678 | nuagenetworks/vspk-go | vspk/me.go | NSGUpgradeProfiles | func (o *Me) NSGUpgradeProfiles(info *bambou.FetchingInfo) (NSGUpgradeProfilesList, *bambou.Error) {
var list NSGUpgradeProfilesList
err := bambou.CurrentSession().FetchChildren(o, NSGUpgradeProfileIdentity, &list, info)
return list, err
} | go | func (o *Me) NSGUpgradeProfiles(info *bambou.FetchingInfo) (NSGUpgradeProfilesList, *bambou.Error) {
var list NSGUpgradeProfilesList
err := bambou.CurrentSession().FetchChildren(o, NSGUpgradeProfileIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"NSGUpgradeProfiles",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"NSGUpgradeProfilesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"NSGUpgradeProfilesList",
"\n",
"err",
":=",
"bambou",
"... | // NSGUpgradeProfiles retrieves the list of child NSGUpgradeProfiles of the Me | [
"NSGUpgradeProfiles",
"retrieves",
"the",
"list",
"of",
"child",
"NSGUpgradeProfiles",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1077-L1082 |
146,679 | nuagenetworks/vspk-go | vspk/me.go | CreateNSGUpgradeProfile | func (o *Me) CreateNSGUpgradeProfile(child *NSGUpgradeProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateNSGUpgradeProfile(child *NSGUpgradeProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateNSGUpgradeProfile",
"(",
"child",
"*",
"NSGUpgradeProfile",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateNSGUpgradeProfile creates a new child NSGUpgradeProfile under the Me | [
"CreateNSGUpgradeProfile",
"creates",
"a",
"new",
"child",
"NSGUpgradeProfile",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1085-L1088 |
146,680 | nuagenetworks/vspk-go | vspk/me.go | VSPs | func (o *Me) VSPs(info *bambou.FetchingInfo) (VSPsList, *bambou.Error) {
var list VSPsList
err := bambou.CurrentSession().FetchChildren(o, VSPIdentity, &list, info)
return list, err
} | go | func (o *Me) VSPs(info *bambou.FetchingInfo) (VSPsList, *bambou.Error) {
var list VSPsList
err := bambou.CurrentSession().FetchChildren(o, VSPIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"VSPs",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VSPsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VSPsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"(",
")",
".... | // VSPs retrieves the list of child VSPs of the Me | [
"VSPs",
"retrieves",
"the",
"list",
"of",
"child",
"VSPs",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1091-L1096 |
146,681 | nuagenetworks/vspk-go | vspk/me.go | StaticRoutes | func (o *Me) StaticRoutes(info *bambou.FetchingInfo) (StaticRoutesList, *bambou.Error) {
var list StaticRoutesList
err := bambou.CurrentSession().FetchChildren(o, StaticRouteIdentity, &list, info)
return list, err
} | go | func (o *Me) StaticRoutes(info *bambou.FetchingInfo) (StaticRoutesList, *bambou.Error) {
var list StaticRoutesList
err := bambou.CurrentSession().FetchChildren(o, StaticRouteIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"StaticRoutes",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"StaticRoutesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"StaticRoutesList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSess... | // StaticRoutes retrieves the list of child StaticRoutes of the Me | [
"StaticRoutes",
"retrieves",
"the",
"list",
"of",
"child",
"StaticRoutes",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1099-L1104 |
146,682 | nuagenetworks/vspk-go | vspk/me.go | StatsCollectorInfos | func (o *Me) StatsCollectorInfos(info *bambou.FetchingInfo) (StatsCollectorInfosList, *bambou.Error) {
var list StatsCollectorInfosList
err := bambou.CurrentSession().FetchChildren(o, StatsCollectorInfoIdentity, &list, info)
return list, err
} | go | func (o *Me) StatsCollectorInfos(info *bambou.FetchingInfo) (StatsCollectorInfosList, *bambou.Error) {
var list StatsCollectorInfosList
err := bambou.CurrentSession().FetchChildren(o, StatsCollectorInfoIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"StatsCollectorInfos",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"StatsCollectorInfosList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"StatsCollectorInfosList",
"\n",
"err",
":=",
"bambou",
... | // StatsCollectorInfos retrieves the list of child StatsCollectorInfos of the Me | [
"StatsCollectorInfos",
"retrieves",
"the",
"list",
"of",
"child",
"StatsCollectorInfos",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1107-L1112 |
146,683 | nuagenetworks/vspk-go | vspk/me.go | DUCGroups | func (o *Me) DUCGroups(info *bambou.FetchingInfo) (DUCGroupsList, *bambou.Error) {
var list DUCGroupsList
err := bambou.CurrentSession().FetchChildren(o, DUCGroupIdentity, &list, info)
return list, err
} | go | func (o *Me) DUCGroups(info *bambou.FetchingInfo) (DUCGroupsList, *bambou.Error) {
var list DUCGroupsList
err := bambou.CurrentSession().FetchChildren(o, DUCGroupIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"DUCGroups",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"DUCGroupsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"DUCGroupsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"... | // DUCGroups retrieves the list of child DUCGroups of the Me | [
"DUCGroups",
"retrieves",
"the",
"list",
"of",
"child",
"DUCGroups",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1123-L1128 |
146,684 | nuagenetworks/vspk-go | vspk/me.go | CreateDUCGroup | func (o *Me) CreateDUCGroup(child *DUCGroup) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateDUCGroup(child *DUCGroup) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateDUCGroup",
"(",
"child",
"*",
"DUCGroup",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateDUCGroup creates a new child DUCGroup under the Me | [
"CreateDUCGroup",
"creates",
"a",
"new",
"child",
"DUCGroup",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1131-L1134 |
146,685 | nuagenetworks/vspk-go | vspk/me.go | CreateMultiCastChannelMap | func (o *Me) CreateMultiCastChannelMap(child *MultiCastChannelMap) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Me) CreateMultiCastChannelMap(child *MultiCastChannelMap) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"CreateMultiCastChannelMap",
"(",
"child",
"*",
"MultiCastChannelMap",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}... | // CreateMultiCastChannelMap creates a new child MultiCastChannelMap under the Me | [
"CreateMultiCastChannelMap",
"creates",
"a",
"new",
"child",
"MultiCastChannelMap",
"under",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1145-L1148 |
146,686 | nuagenetworks/vspk-go | vspk/me.go | AutoDiscoveredGateways | func (o *Me) AutoDiscoveredGateways(info *bambou.FetchingInfo) (AutoDiscoveredGatewaysList, *bambou.Error) {
var list AutoDiscoveredGatewaysList
err := bambou.CurrentSession().FetchChildren(o, AutoDiscoveredGatewayIdentity, &list, info)
return list, err
} | go | func (o *Me) AutoDiscoveredGateways(info *bambou.FetchingInfo) (AutoDiscoveredGatewaysList, *bambou.Error) {
var list AutoDiscoveredGatewaysList
err := bambou.CurrentSession().FetchChildren(o, AutoDiscoveredGatewayIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"AutoDiscoveredGateways",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"AutoDiscoveredGatewaysList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"AutoDiscoveredGatewaysList",
"\n",
"err",
":=",
"... | // AutoDiscoveredGateways retrieves the list of child AutoDiscoveredGateways of the Me | [
"AutoDiscoveredGateways",
"retrieves",
"the",
"list",
"of",
"child",
"AutoDiscoveredGateways",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1151-L1156 |
146,687 | nuagenetworks/vspk-go | vspk/me.go | SystemConfigs | func (o *Me) SystemConfigs(info *bambou.FetchingInfo) (SystemConfigsList, *bambou.Error) {
var list SystemConfigsList
err := bambou.CurrentSession().FetchChildren(o, SystemConfigIdentity, &list, info)
return list, err
} | go | func (o *Me) SystemConfigs(info *bambou.FetchingInfo) (SystemConfigsList, *bambou.Error) {
var list SystemConfigsList
err := bambou.CurrentSession().FetchChildren(o, SystemConfigIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Me",
")",
"SystemConfigs",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"SystemConfigsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"SystemConfigsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentS... | // SystemConfigs retrieves the list of child SystemConfigs of the Me | [
"SystemConfigs",
"retrieves",
"the",
"list",
"of",
"child",
"SystemConfigs",
"of",
"the",
"Me"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/me.go#L1167-L1172 |
146,688 | nuagenetworks/vspk-go | vspk/enterprisenetwork.go | NetworkMacroGroups | func (o *EnterpriseNetwork) NetworkMacroGroups(info *bambou.FetchingInfo) (NetworkMacroGroupsList, *bambou.Error) {
var list NetworkMacroGroupsList
err := bambou.CurrentSession().FetchChildren(o, NetworkMacroGroupIdentity, &list, info)
return list, err
} | go | func (o *EnterpriseNetwork) NetworkMacroGroups(info *bambou.FetchingInfo) (NetworkMacroGroupsList, *bambou.Error) {
var list NetworkMacroGroupsList
err := bambou.CurrentSession().FetchChildren(o, NetworkMacroGroupIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"EnterpriseNetwork",
")",
"NetworkMacroGroups",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"NetworkMacroGroupsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"NetworkMacroGroupsList",
"\n",
"err",
":=",
... | // NetworkMacroGroups retrieves the list of child NetworkMacroGroups of the EnterpriseNetwork | [
"NetworkMacroGroups",
"retrieves",
"the",
"list",
"of",
"child",
"NetworkMacroGroups",
"of",
"the",
"EnterpriseNetwork"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/enterprisenetwork.go#L131-L136 |
146,689 | nuagenetworks/vspk-go | vspk/enterprisenetwork.go | AssignNetworkMacroGroups | func (o *EnterpriseNetwork) AssignNetworkMacroGroups(children NetworkMacroGroupsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, NetworkMacroGroupIdentity)
} | go | func (o *EnterpriseNetwork) AssignNetworkMacroGroups(children NetworkMacroGroupsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, NetworkMacroGroupIdentity)
} | [
"func",
"(",
"o",
"*",
"EnterpriseNetwork",
")",
"AssignNetworkMacroGroups",
"(",
"children",
"NetworkMacroGroupsList",
")",
"*",
"bambou",
".",
"Error",
"{",
"list",
":=",
"[",
"]",
"bambou",
".",
"Identifiable",
"{",
"}",
"\n",
"for",
"_",
",",
"c",
":="... | // AssignNetworkMacroGroups assigns the list of NetworkMacroGroups to the EnterpriseNetwork | [
"AssignNetworkMacroGroups",
"assigns",
"the",
"list",
"of",
"NetworkMacroGroups",
"to",
"the",
"EnterpriseNetwork"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/enterprisenetwork.go#L139-L147 |
146,690 | nuagenetworks/vspk-go | vspk/webdomainname.go | AssignWebCategories | func (o *WebDomainName) AssignWebCategories(children WebCategoriesList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, WebCategoryIdentity)
} | go | func (o *WebDomainName) AssignWebCategories(children WebCategoriesList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, WebCategoryIdentity)
} | [
"func",
"(",
"o",
"*",
"WebDomainName",
")",
"AssignWebCategories",
"(",
"children",
"WebCategoriesList",
")",
"*",
"bambou",
".",
"Error",
"{",
"list",
":=",
"[",
"]",
"bambou",
".",
"Identifiable",
"{",
"}",
"\n",
"for",
"_",
",",
"c",
":=",
"range",
... | // AssignWebCategories assigns the list of WebCategories to the WebDomainName | [
"AssignWebCategories",
"assigns",
"the",
"list",
"of",
"WebCategories",
"to",
"the",
"WebDomainName"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/webdomainname.go#L119-L127 |
146,691 | nuagenetworks/vspk-go | vspk/l2domaintemplate.go | PGExpressionTemplates | func (o *L2DomainTemplate) PGExpressionTemplates(info *bambou.FetchingInfo) (PGExpressionTemplatesList, *bambou.Error) {
var list PGExpressionTemplatesList
err := bambou.CurrentSession().FetchChildren(o, PGExpressionTemplateIdentity, &list, info)
return list, err
} | go | func (o *L2DomainTemplate) PGExpressionTemplates(info *bambou.FetchingInfo) (PGExpressionTemplatesList, *bambou.Error) {
var list PGExpressionTemplatesList
err := bambou.CurrentSession().FetchChildren(o, PGExpressionTemplateIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"L2DomainTemplate",
")",
"PGExpressionTemplates",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"PGExpressionTemplatesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"PGExpressionTemplatesList",
"\n",
"err",
... | // PGExpressionTemplates retrieves the list of child PGExpressionTemplates of the L2DomainTemplate | [
"PGExpressionTemplates",
"retrieves",
"the",
"list",
"of",
"child",
"PGExpressionTemplates",
"of",
"the",
"L2DomainTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/l2domaintemplate.go#L195-L200 |
146,692 | nuagenetworks/vspk-go | vspk/l2domaintemplate.go | CreateEgressAdvFwdTemplate | func (o *L2DomainTemplate) CreateEgressAdvFwdTemplate(child *EgressAdvFwdTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *L2DomainTemplate) CreateEgressAdvFwdTemplate(child *EgressAdvFwdTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"L2DomainTemplate",
")",
"CreateEgressAdvFwdTemplate",
"(",
"child",
"*",
"EgressAdvFwdTemplate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
"... | // CreateEgressAdvFwdTemplate creates a new child EgressAdvFwdTemplate under the L2DomainTemplate | [
"CreateEgressAdvFwdTemplate",
"creates",
"a",
"new",
"child",
"EgressAdvFwdTemplate",
"under",
"the",
"L2DomainTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/l2domaintemplate.go#L231-L234 |
146,693 | nuagenetworks/vspk-go | vspk/l2domaintemplate.go | VirtualFirewallPolicies | func (o *L2DomainTemplate) VirtualFirewallPolicies(info *bambou.FetchingInfo) (VirtualFirewallPoliciesList, *bambou.Error) {
var list VirtualFirewallPoliciesList
err := bambou.CurrentSession().FetchChildren(o, VirtualFirewallPolicyIdentity, &list, info)
return list, err
} | go | func (o *L2DomainTemplate) VirtualFirewallPolicies(info *bambou.FetchingInfo) (VirtualFirewallPoliciesList, *bambou.Error) {
var list VirtualFirewallPoliciesList
err := bambou.CurrentSession().FetchChildren(o, VirtualFirewallPolicyIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"L2DomainTemplate",
")",
"VirtualFirewallPolicies",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VirtualFirewallPoliciesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VirtualFirewallPoliciesList",
"\n",
"... | // VirtualFirewallPolicies retrieves the list of child VirtualFirewallPolicies of the L2DomainTemplate | [
"VirtualFirewallPolicies",
"retrieves",
"the",
"list",
"of",
"child",
"VirtualFirewallPolicies",
"of",
"the",
"L2DomainTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/l2domaintemplate.go#L237-L242 |
146,694 | nuagenetworks/vspk-go | vspk/l2domaintemplate.go | IngressACLTemplates | func (o *L2DomainTemplate) IngressACLTemplates(info *bambou.FetchingInfo) (IngressACLTemplatesList, *bambou.Error) {
var list IngressACLTemplatesList
err := bambou.CurrentSession().FetchChildren(o, IngressACLTemplateIdentity, &list, info)
return list, err
} | go | func (o *L2DomainTemplate) IngressACLTemplates(info *bambou.FetchingInfo) (IngressACLTemplatesList, *bambou.Error) {
var list IngressACLTemplatesList
err := bambou.CurrentSession().FetchChildren(o, IngressACLTemplateIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"L2DomainTemplate",
")",
"IngressACLTemplates",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"IngressACLTemplatesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"IngressACLTemplatesList",
"\n",
"err",
":="... | // IngressACLTemplates retrieves the list of child IngressACLTemplates of the L2DomainTemplate | [
"IngressACLTemplates",
"retrieves",
"the",
"list",
"of",
"child",
"IngressACLTemplates",
"of",
"the",
"L2DomainTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/l2domaintemplate.go#L265-L270 |
146,695 | nuagenetworks/vspk-go | vspk/l2domaintemplate.go | CreateIngressAdvFwdTemplate | func (o *L2DomainTemplate) CreateIngressAdvFwdTemplate(child *IngressAdvFwdTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *L2DomainTemplate) CreateIngressAdvFwdTemplate(child *IngressAdvFwdTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"L2DomainTemplate",
")",
"CreateIngressAdvFwdTemplate",
"(",
"child",
"*",
"IngressAdvFwdTemplate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
... | // CreateIngressAdvFwdTemplate creates a new child IngressAdvFwdTemplate under the L2DomainTemplate | [
"CreateIngressAdvFwdTemplate",
"creates",
"a",
"new",
"child",
"IngressAdvFwdTemplate",
"under",
"the",
"L2DomainTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/l2domaintemplate.go#L287-L290 |
146,696 | nuagenetworks/vspk-go | vspk/l2domaintemplate.go | OverlayMirrorDestinationTemplates | func (o *L2DomainTemplate) OverlayMirrorDestinationTemplates(info *bambou.FetchingInfo) (OverlayMirrorDestinationTemplatesList, *bambou.Error) {
var list OverlayMirrorDestinationTemplatesList
err := bambou.CurrentSession().FetchChildren(o, OverlayMirrorDestinationTemplateIdentity, &list, info)
return list, err
} | go | func (o *L2DomainTemplate) OverlayMirrorDestinationTemplates(info *bambou.FetchingInfo) (OverlayMirrorDestinationTemplatesList, *bambou.Error) {
var list OverlayMirrorDestinationTemplatesList
err := bambou.CurrentSession().FetchChildren(o, OverlayMirrorDestinationTemplateIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"L2DomainTemplate",
")",
"OverlayMirrorDestinationTemplates",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"OverlayMirrorDestinationTemplatesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"OverlayMirrorDestinat... | // OverlayMirrorDestinationTemplates retrieves the list of child OverlayMirrorDestinationTemplates of the L2DomainTemplate | [
"OverlayMirrorDestinationTemplates",
"retrieves",
"the",
"list",
"of",
"child",
"OverlayMirrorDestinationTemplates",
"of",
"the",
"L2DomainTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/l2domaintemplate.go#L343-L348 |
146,697 | nuagenetworks/vspk-go | vspk/l2domaintemplate.go | CreateOverlayMirrorDestinationTemplate | func (o *L2DomainTemplate) CreateOverlayMirrorDestinationTemplate(child *OverlayMirrorDestinationTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *L2DomainTemplate) CreateOverlayMirrorDestinationTemplate(child *OverlayMirrorDestinationTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"L2DomainTemplate",
")",
"CreateOverlayMirrorDestinationTemplate",
"(",
"child",
"*",
"OverlayMirrorDestinationTemplate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o... | // CreateOverlayMirrorDestinationTemplate creates a new child OverlayMirrorDestinationTemplate under the L2DomainTemplate | [
"CreateOverlayMirrorDestinationTemplate",
"creates",
"a",
"new",
"child",
"OverlayMirrorDestinationTemplate",
"under",
"the",
"L2DomainTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/l2domaintemplate.go#L351-L354 |
146,698 | nuagenetworks/vspk-go | vspk/vcentercluster.go | VCenterHypervisors | func (o *VCenterCluster) VCenterHypervisors(info *bambou.FetchingInfo) (VCenterHypervisorsList, *bambou.Error) {
var list VCenterHypervisorsList
err := bambou.CurrentSession().FetchChildren(o, VCenterHypervisorIdentity, &list, info)
return list, err
} | go | func (o *VCenterCluster) VCenterHypervisors(info *bambou.FetchingInfo) (VCenterHypervisorsList, *bambou.Error) {
var list VCenterHypervisorsList
err := bambou.CurrentSession().FetchChildren(o, VCenterHypervisorIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VCenterCluster",
")",
"VCenterHypervisors",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VCenterHypervisorsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VCenterHypervisorsList",
"\n",
"err",
":=",
"... | // VCenterHypervisors retrieves the list of child VCenterHypervisors of the VCenterCluster | [
"VCenterHypervisors",
"retrieves",
"the",
"list",
"of",
"child",
"VCenterHypervisors",
"of",
"the",
"VCenterCluster"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vcentercluster.go#L237-L242 |
146,699 | nuagenetworks/vspk-go | vspk/vcentercluster.go | CreateVCenterHypervisor | func (o *VCenterCluster) CreateVCenterHypervisor(child *VCenterHypervisor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VCenterCluster) CreateVCenterHypervisor(child *VCenterHypervisor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VCenterCluster",
")",
"CreateVCenterHypervisor",
"(",
"child",
"*",
"VCenterHypervisor",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\... | // CreateVCenterHypervisor creates a new child VCenterHypervisor under the VCenterCluster | [
"CreateVCenterHypervisor",
"creates",
"a",
"new",
"child",
"VCenterHypervisor",
"under",
"the",
"VCenterCluster"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vcentercluster.go#L245-L248 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.