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,800 | tkuchiki/parsetime | parsetime.go | NewParseTime | func NewParseTime(location ...interface{}) (ParseTime, error) {
var loc *time.Location
var err error
switch len(location) {
case 0:
zone, offset := time.Now().In(time.Local).Zone()
loc = time.FixedZone(zone, offset)
case 1:
switch val := location[0].(type) {
case *time.Location:
loc = val
case string... | go | func NewParseTime(location ...interface{}) (ParseTime, error) {
var loc *time.Location
var err error
switch len(location) {
case 0:
zone, offset := time.Now().In(time.Local).Zone()
loc = time.FixedZone(zone, offset)
case 1:
switch val := location[0].(type) {
case *time.Location:
loc = val
case string... | [
"func",
"NewParseTime",
"(",
"location",
"...",
"interface",
"{",
"}",
")",
"(",
"ParseTime",
",",
"error",
")",
"{",
"var",
"loc",
"*",
"time",
".",
"Location",
"\n",
"var",
"err",
"error",
"\n\n",
"switch",
"len",
"(",
"location",
")",
"{",
"case",
... | // NewParseTime returns a new parser | [
"NewParseTime",
"returns",
"a",
"new",
"parser"
] | bece749572a82d4846c5a18f56a9d1d28dade3e8 | https://github.com/tkuchiki/parsetime/blob/bece749572a82d4846c5a18f56a9d1d28dade3e8/parsetime.go#L43-L82 |
146,801 | tkuchiki/parsetime | parsetime.go | parseRFC8xx1123 | func parseRFC8xx1123(value string, loc *time.Location) (time.Time, int, error) {
var t time.Time
var priority int
var err error
group := reRFC8xx1123.FindStringSubmatch(value)
if len(group) == 0 {
return t, priority, errInvalidDateTime
}
priority = stringLen(value) - stringLen(group[0])
var year, month, d... | go | func parseRFC8xx1123(value string, loc *time.Location) (time.Time, int, error) {
var t time.Time
var priority int
var err error
group := reRFC8xx1123.FindStringSubmatch(value)
if len(group) == 0 {
return t, priority, errInvalidDateTime
}
priority = stringLen(value) - stringLen(group[0])
var year, month, d... | [
"func",
"parseRFC8xx1123",
"(",
"value",
"string",
",",
"loc",
"*",
"time",
".",
"Location",
")",
"(",
"time",
".",
"Time",
",",
"int",
",",
"error",
")",
"{",
"var",
"t",
"time",
".",
"Time",
"\n",
"var",
"priority",
"int",
"\n",
"var",
"err",
"er... | // RFC822, RFC850, RFC1123 | [
"RFC822",
"RFC850",
"RFC1123"
] | bece749572a82d4846c5a18f56a9d1d28dade3e8 | https://github.com/tkuchiki/parsetime/blob/bece749572a82d4846c5a18f56a9d1d28dade3e8/parsetime.go#L293-L357 |
146,802 | nuagenetworks/vspk-go | vspk/policystatement.go | PolicyEntries | func (o *PolicyStatement) PolicyEntries(info *bambou.FetchingInfo) (PolicyEntriesList, *bambou.Error) {
var list PolicyEntriesList
err := bambou.CurrentSession().FetchChildren(o, PolicyEntryIdentity, &list, info)
return list, err
} | go | func (o *PolicyStatement) PolicyEntries(info *bambou.FetchingInfo) (PolicyEntriesList, *bambou.Error) {
var list PolicyEntriesList
err := bambou.CurrentSession().FetchChildren(o, PolicyEntryIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"PolicyStatement",
")",
"PolicyEntries",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"PolicyEntriesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"PolicyEntriesList",
"\n",
"err",
":=",
"bambou",
"."... | // PolicyEntries retrieves the list of child PolicyEntries of the PolicyStatement | [
"PolicyEntries",
"retrieves",
"the",
"list",
"of",
"child",
"PolicyEntries",
"of",
"the",
"PolicyStatement"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/policystatement.go#L140-L145 |
146,803 | nuagenetworks/vspk-go | vspk/policystatement.go | CreatePolicyEntry | func (o *PolicyStatement) CreatePolicyEntry(child *PolicyEntry) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *PolicyStatement) CreatePolicyEntry(child *PolicyEntry) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"PolicyStatement",
")",
"CreatePolicyEntry",
"(",
"child",
"*",
"PolicyEntry",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreatePolicyEntry creates a new child PolicyEntry under the PolicyStatement | [
"CreatePolicyEntry",
"creates",
"a",
"new",
"child",
"PolicyEntry",
"under",
"the",
"PolicyStatement"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/policystatement.go#L148-L151 |
146,804 | nuagenetworks/vspk-go | vspk/enterprisesecurity.go | EnterpriseSecuredDatas | func (o *EnterpriseSecurity) EnterpriseSecuredDatas(info *bambou.FetchingInfo) (EnterpriseSecuredDatasList, *bambou.Error) {
var list EnterpriseSecuredDatasList
err := bambou.CurrentSession().FetchChildren(o, EnterpriseSecuredDataIdentity, &list, info)
return list, err
} | go | func (o *EnterpriseSecurity) EnterpriseSecuredDatas(info *bambou.FetchingInfo) (EnterpriseSecuredDatasList, *bambou.Error) {
var list EnterpriseSecuredDatasList
err := bambou.CurrentSession().FetchChildren(o, EnterpriseSecuredDataIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"EnterpriseSecurity",
")",
"EnterpriseSecuredDatas",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"EnterpriseSecuredDatasList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"EnterpriseSecuredDatasList",
"\n",
"e... | // EnterpriseSecuredDatas retrieves the list of child EnterpriseSecuredDatas of the EnterpriseSecurity | [
"EnterpriseSecuredDatas",
"retrieves",
"the",
"list",
"of",
"child",
"EnterpriseSecuredDatas",
"of",
"the",
"EnterpriseSecurity"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/enterprisesecurity.go#L141-L146 |
146,805 | nuagenetworks/vspk-go | vspk/enterprisesecurity.go | CreateEnterpriseSecuredData | func (o *EnterpriseSecurity) CreateEnterpriseSecuredData(child *EnterpriseSecuredData) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *EnterpriseSecurity) CreateEnterpriseSecuredData(child *EnterpriseSecuredData) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"EnterpriseSecurity",
")",
"CreateEnterpriseSecuredData",
"(",
"child",
"*",
"EnterpriseSecuredData",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",... | // CreateEnterpriseSecuredData creates a new child EnterpriseSecuredData under the EnterpriseSecurity | [
"CreateEnterpriseSecuredData",
"creates",
"a",
"new",
"child",
"EnterpriseSecuredData",
"under",
"the",
"EnterpriseSecurity"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/enterprisesecurity.go#L149-L152 |
146,806 | nuagenetworks/vspk-go | vspk/vnfdescriptor.go | VNFInterfaceDescriptors | func (o *VNFDescriptor) VNFInterfaceDescriptors(info *bambou.FetchingInfo) (VNFInterfaceDescriptorsList, *bambou.Error) {
var list VNFInterfaceDescriptorsList
err := bambou.CurrentSession().FetchChildren(o, VNFInterfaceDescriptorIdentity, &list, info)
return list, err
} | go | func (o *VNFDescriptor) VNFInterfaceDescriptors(info *bambou.FetchingInfo) (VNFInterfaceDescriptorsList, *bambou.Error) {
var list VNFInterfaceDescriptorsList
err := bambou.CurrentSession().FetchChildren(o, VNFInterfaceDescriptorIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VNFDescriptor",
")",
"VNFInterfaceDescriptors",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VNFInterfaceDescriptorsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VNFInterfaceDescriptorsList",
"\n",
"err... | // VNFInterfaceDescriptors retrieves the list of child VNFInterfaceDescriptors of the VNFDescriptor | [
"VNFInterfaceDescriptors",
"retrieves",
"the",
"list",
"of",
"child",
"VNFInterfaceDescriptors",
"of",
"the",
"VNFDescriptor"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vnfdescriptor.go#L150-L155 |
146,807 | nuagenetworks/vspk-go | vspk/vnfdescriptor.go | CreateVNFInterfaceDescriptor | func (o *VNFDescriptor) CreateVNFInterfaceDescriptor(child *VNFInterfaceDescriptor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VNFDescriptor) CreateVNFInterfaceDescriptor(child *VNFInterfaceDescriptor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VNFDescriptor",
")",
"CreateVNFInterfaceDescriptor",
"(",
"child",
"*",
"VNFInterfaceDescriptor",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
... | // CreateVNFInterfaceDescriptor creates a new child VNFInterfaceDescriptor under the VNFDescriptor | [
"CreateVNFInterfaceDescriptor",
"creates",
"a",
"new",
"child",
"VNFInterfaceDescriptor",
"under",
"the",
"VNFDescriptor"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vnfdescriptor.go#L158-L161 |
146,808 | nuagenetworks/vspk-go | vspk/ingressadvfwdtemplate.go | IngressAdvFwdEntryTemplates | func (o *IngressAdvFwdTemplate) IngressAdvFwdEntryTemplates(info *bambou.FetchingInfo) (IngressAdvFwdEntryTemplatesList, *bambou.Error) {
var list IngressAdvFwdEntryTemplatesList
err := bambou.CurrentSession().FetchChildren(o, IngressAdvFwdEntryTemplateIdentity, &list, info)
return list, err
} | go | func (o *IngressAdvFwdTemplate) IngressAdvFwdEntryTemplates(info *bambou.FetchingInfo) (IngressAdvFwdEntryTemplatesList, *bambou.Error) {
var list IngressAdvFwdEntryTemplatesList
err := bambou.CurrentSession().FetchChildren(o, IngressAdvFwdEntryTemplateIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"IngressAdvFwdTemplate",
")",
"IngressAdvFwdEntryTemplates",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"IngressAdvFwdEntryTemplatesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"IngressAdvFwdEntryTemplatesL... | // IngressAdvFwdEntryTemplates retrieves the list of child IngressAdvFwdEntryTemplates of the IngressAdvFwdTemplate | [
"IngressAdvFwdEntryTemplates",
"retrieves",
"the",
"list",
"of",
"child",
"IngressAdvFwdEntryTemplates",
"of",
"the",
"IngressAdvFwdTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/ingressadvfwdtemplate.go#L148-L153 |
146,809 | nuagenetworks/vspk-go | vspk/ingressadvfwdtemplate.go | CreateIngressAdvFwdEntryTemplate | func (o *IngressAdvFwdTemplate) CreateIngressAdvFwdEntryTemplate(child *IngressAdvFwdEntryTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *IngressAdvFwdTemplate) CreateIngressAdvFwdEntryTemplate(child *IngressAdvFwdEntryTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"IngressAdvFwdTemplate",
")",
"CreateIngressAdvFwdEntryTemplate",
"(",
"child",
"*",
"IngressAdvFwdEntryTemplate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",... | // CreateIngressAdvFwdEntryTemplate creates a new child IngressAdvFwdEntryTemplate under the IngressAdvFwdTemplate | [
"CreateIngressAdvFwdEntryTemplate",
"creates",
"a",
"new",
"child",
"IngressAdvFwdEntryTemplate",
"under",
"the",
"IngressAdvFwdTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/ingressadvfwdtemplate.go#L156-L159 |
146,810 | nuagenetworks/vspk-go | vspk/wirelessport.go | SSIDConnections | func (o *WirelessPort) SSIDConnections(info *bambou.FetchingInfo) (SSIDConnectionsList, *bambou.Error) {
var list SSIDConnectionsList
err := bambou.CurrentSession().FetchChildren(o, SSIDConnectionIdentity, &list, info)
return list, err
} | go | func (o *WirelessPort) SSIDConnections(info *bambou.FetchingInfo) (SSIDConnectionsList, *bambou.Error) {
var list SSIDConnectionsList
err := bambou.CurrentSession().FetchChildren(o, SSIDConnectionIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"WirelessPort",
")",
"SSIDConnections",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"SSIDConnectionsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"SSIDConnectionsList",
"\n",
"err",
":=",
"bambou",
... | // SSIDConnections retrieves the list of child SSIDConnections of the WirelessPort | [
"SSIDConnections",
"retrieves",
"the",
"list",
"of",
"child",
"SSIDConnections",
"of",
"the",
"WirelessPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/wirelessport.go#L166-L171 |
146,811 | nuagenetworks/vspk-go | vspk/wirelessport.go | CreateSSIDConnection | func (o *WirelessPort) CreateSSIDConnection(child *SSIDConnection) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *WirelessPort) CreateSSIDConnection(child *SSIDConnection) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"WirelessPort",
")",
"CreateSSIDConnection",
"(",
"child",
"*",
"SSIDConnection",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}... | // CreateSSIDConnection creates a new child SSIDConnection under the WirelessPort | [
"CreateSSIDConnection",
"creates",
"a",
"new",
"child",
"SSIDConnection",
"under",
"the",
"WirelessPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/wirelessport.go#L174-L177 |
146,812 | nuagenetworks/vspk-go | vspk/infrastructuregatewayprofile.go | GlobalMetadatas | func (o *InfrastructureGatewayProfile) GlobalMetadatas(info *bambou.FetchingInfo) (GlobalMetadatasList, *bambou.Error) {
var list GlobalMetadatasList
err := bambou.CurrentSession().FetchChildren(o, GlobalMetadataIdentity, &list, info)
return list, err
} | go | func (o *InfrastructureGatewayProfile) GlobalMetadatas(info *bambou.FetchingInfo) (GlobalMetadatasList, *bambou.Error) {
var list GlobalMetadatasList
err := bambou.CurrentSession().FetchChildren(o, GlobalMetadataIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"InfrastructureGatewayProfile",
")",
"GlobalMetadatas",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"GlobalMetadatasList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"GlobalMetadatasList",
"\n",
"err",
":="... | // GlobalMetadatas retrieves the list of child GlobalMetadatas of the InfrastructureGatewayProfile | [
"GlobalMetadatas",
"retrieves",
"the",
"list",
"of",
"child",
"GlobalMetadatas",
"of",
"the",
"InfrastructureGatewayProfile"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/infrastructuregatewayprofile.go#L167-L172 |
146,813 | nuagenetworks/vspk-go | vspk/nsggroup.go | AssignNSGateways | func (o *NSGGroup) AssignNSGateways(children NSGatewaysList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, NSGatewayIdentity)
} | go | func (o *NSGGroup) AssignNSGateways(children NSGatewaysList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, NSGatewayIdentity)
} | [
"func",
"(",
"o",
"*",
"NSGGroup",
")",
"AssignNSGateways",
"(",
"children",
"NSGatewaysList",
")",
"*",
"bambou",
".",
"Error",
"{",
"list",
":=",
"[",
"]",
"bambou",
".",
"Identifiable",
"{",
"}",
"\n",
"for",
"_",
",",
"c",
":=",
"range",
"children"... | // AssignNSGateways assigns the list of NSGateways to the NSGGroup | [
"AssignNSGateways",
"assigns",
"the",
"list",
"of",
"NSGateways",
"to",
"the",
"NSGGroup"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/nsggroup.go#L148-L156 |
146,814 | nuagenetworks/vspk-go | vspk/nsggroup.go | DUCGroupBindings | func (o *NSGGroup) DUCGroupBindings(info *bambou.FetchingInfo) (DUCGroupBindingsList, *bambou.Error) {
var list DUCGroupBindingsList
err := bambou.CurrentSession().FetchChildren(o, DUCGroupBindingIdentity, &list, info)
return list, err
} | go | func (o *NSGGroup) DUCGroupBindings(info *bambou.FetchingInfo) (DUCGroupBindingsList, *bambou.Error) {
var list DUCGroupBindingsList
err := bambou.CurrentSession().FetchChildren(o, DUCGroupBindingIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"NSGGroup",
")",
"DUCGroupBindings",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"DUCGroupBindingsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"DUCGroupBindingsList",
"\n",
"err",
":=",
"bambou",
"... | // DUCGroupBindings retrieves the list of child DUCGroupBindings of the NSGGroup | [
"DUCGroupBindings",
"retrieves",
"the",
"list",
"of",
"child",
"DUCGroupBindings",
"of",
"the",
"NSGGroup"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/nsggroup.go#L159-L164 |
146,815 | nuagenetworks/vspk-go | vspk/nsggroup.go | CreateDUCGroupBinding | func (o *NSGGroup) CreateDUCGroupBinding(child *DUCGroupBinding) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *NSGGroup) CreateDUCGroupBinding(child *DUCGroupBinding) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"NSGGroup",
")",
"CreateDUCGroupBinding",
"(",
"child",
"*",
"DUCGroupBinding",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
... | // CreateDUCGroupBinding creates a new child DUCGroupBinding under the NSGGroup | [
"CreateDUCGroupBinding",
"creates",
"a",
"new",
"child",
"DUCGroupBinding",
"under",
"the",
"NSGGroup"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/nsggroup.go#L167-L170 |
146,816 | nuagenetworks/vspk-go | vspk/patnatpool.go | NATMapEntries | func (o *PATNATPool) NATMapEntries(info *bambou.FetchingInfo) (NATMapEntriesList, *bambou.Error) {
var list NATMapEntriesList
err := bambou.CurrentSession().FetchChildren(o, NATMapEntryIdentity, &list, info)
return list, err
} | go | func (o *PATNATPool) NATMapEntries(info *bambou.FetchingInfo) (NATMapEntriesList, *bambou.Error) {
var list NATMapEntriesList
err := bambou.CurrentSession().FetchChildren(o, NATMapEntryIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"PATNATPool",
")",
"NATMapEntries",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"NATMapEntriesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"NATMapEntriesList",
"\n",
"err",
":=",
"bambou",
".",
"... | // NATMapEntries retrieves the list of child NATMapEntries of the PATNATPool | [
"NATMapEntries",
"retrieves",
"the",
"list",
"of",
"child",
"NATMapEntries",
"of",
"the",
"PATNATPool"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/patnatpool.go#L125-L130 |
146,817 | nuagenetworks/vspk-go | vspk/patnatpool.go | CreateNATMapEntry | func (o *PATNATPool) CreateNATMapEntry(child *NATMapEntry) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *PATNATPool) CreateNATMapEntry(child *NATMapEntry) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"PATNATPool",
")",
"CreateNATMapEntry",
"(",
"child",
"*",
"NATMapEntry",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateNATMapEntry creates a new child NATMapEntry under the PATNATPool | [
"CreateNATMapEntry",
"creates",
"a",
"new",
"child",
"NATMapEntry",
"under",
"the",
"PATNATPool"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/patnatpool.go#L133-L136 |
146,818 | nuagenetworks/vspk-go | vspk/patnatpool.go | AddressMaps | func (o *PATNATPool) AddressMaps(info *bambou.FetchingInfo) (AddressMapsList, *bambou.Error) {
var list AddressMapsList
err := bambou.CurrentSession().FetchChildren(o, AddressMapIdentity, &list, info)
return list, err
} | go | func (o *PATNATPool) AddressMaps(info *bambou.FetchingInfo) (AddressMapsList, *bambou.Error) {
var list AddressMapsList
err := bambou.CurrentSession().FetchChildren(o, AddressMapIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"PATNATPool",
")",
"AddressMaps",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"AddressMapsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"AddressMapsList",
"\n",
"err",
":=",
"bambou",
".",
"Curren... | // AddressMaps retrieves the list of child AddressMaps of the PATNATPool | [
"AddressMaps",
"retrieves",
"the",
"list",
"of",
"child",
"AddressMaps",
"of",
"the",
"PATNATPool"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/patnatpool.go#L139-L144 |
146,819 | nuagenetworks/vspk-go | vspk/patnatpool.go | CreateAddressMap | func (o *PATNATPool) CreateAddressMap(child *AddressMap) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *PATNATPool) CreateAddressMap(child *AddressMap) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"PATNATPool",
")",
"CreateAddressMap",
"(",
"child",
"*",
"AddressMap",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateAddressMap creates a new child AddressMap under the PATNATPool | [
"CreateAddressMap",
"creates",
"a",
"new",
"child",
"AddressMap",
"under",
"the",
"PATNATPool"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/patnatpool.go#L147-L150 |
146,820 | nuagenetworks/vspk-go | vspk/patnatpool.go | BulkStatistics | func (o *PATNATPool) BulkStatistics(info *bambou.FetchingInfo) (BulkStatisticsList, *bambou.Error) {
var list BulkStatisticsList
err := bambou.CurrentSession().FetchChildren(o, BulkStatisticsIdentity, &list, info)
return list, err
} | go | func (o *PATNATPool) BulkStatistics(info *bambou.FetchingInfo) (BulkStatisticsList, *bambou.Error) {
var list BulkStatisticsList
err := bambou.CurrentSession().FetchChildren(o, BulkStatisticsIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"PATNATPool",
")",
"BulkStatistics",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"BulkStatisticsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"BulkStatisticsList",
"\n",
"err",
":=",
"bambou",
".",
... | // BulkStatistics retrieves the list of child BulkStatistics of the PATNATPool | [
"BulkStatistics",
"retrieves",
"the",
"list",
"of",
"child",
"BulkStatistics",
"of",
"the",
"PATNATPool"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/patnatpool.go#L217-L222 |
146,821 | nuagenetworks/vspk-go | vspk/overlaymanagementprofile.go | OverlayManagementSubnetProfiles | func (o *OverlayManagementProfile) OverlayManagementSubnetProfiles(info *bambou.FetchingInfo) (OverlayManagementSubnetProfilesList, *bambou.Error) {
var list OverlayManagementSubnetProfilesList
err := bambou.CurrentSession().FetchChildren(o, OverlayManagementSubnetProfileIdentity, &list, info)
return list, err
} | go | func (o *OverlayManagementProfile) OverlayManagementSubnetProfiles(info *bambou.FetchingInfo) (OverlayManagementSubnetProfilesList, *bambou.Error) {
var list OverlayManagementSubnetProfilesList
err := bambou.CurrentSession().FetchChildren(o, OverlayManagementSubnetProfileIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"OverlayManagementProfile",
")",
"OverlayManagementSubnetProfiles",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"OverlayManagementSubnetProfilesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"OverlayManagement... | // OverlayManagementSubnetProfiles retrieves the list of child OverlayManagementSubnetProfiles of the OverlayManagementProfile | [
"OverlayManagementSubnetProfiles",
"retrieves",
"the",
"list",
"of",
"child",
"OverlayManagementSubnetProfiles",
"of",
"the",
"OverlayManagementProfile"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/overlaymanagementprofile.go#L109-L114 |
146,822 | nuagenetworks/vspk-go | vspk/overlaymanagementprofile.go | CreateOverlayManagementSubnetProfile | func (o *OverlayManagementProfile) CreateOverlayManagementSubnetProfile(child *OverlayManagementSubnetProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *OverlayManagementProfile) CreateOverlayManagementSubnetProfile(child *OverlayManagementSubnetProfile) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"OverlayManagementProfile",
")",
"CreateOverlayManagementSubnetProfile",
"(",
"child",
"*",
"OverlayManagementSubnetProfile",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
... | // CreateOverlayManagementSubnetProfile creates a new child OverlayManagementSubnetProfile under the OverlayManagementProfile | [
"CreateOverlayManagementSubnetProfile",
"creates",
"a",
"new",
"child",
"OverlayManagementSubnetProfile",
"under",
"the",
"OverlayManagementProfile"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/overlaymanagementprofile.go#L117-L120 |
146,823 | nuagenetworks/vspk-go | vspk/vcenterhypervisor.go | CreateVRSAddressRange | func (o *VCenterHypervisor) CreateVRSAddressRange(child *VRSAddressRange) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VCenterHypervisor) CreateVRSAddressRange(child *VRSAddressRange) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VCenterHypervisor",
")",
"CreateVRSAddressRange",
"(",
"child",
"*",
"VRSAddressRange",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n... | // CreateVRSAddressRange creates a new child VRSAddressRange under the VCenterHypervisor | [
"CreateVRSAddressRange",
"creates",
"a",
"new",
"child",
"VRSAddressRange",
"under",
"the",
"VCenterHypervisor"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vcenterhypervisor.go#L312-L315 |
146,824 | nuagenetworks/vspk-go | vspk/vcenterhypervisor.go | VRSMetrics | func (o *VCenterHypervisor) VRSMetrics(info *bambou.FetchingInfo) (VRSMetricsList, *bambou.Error) {
var list VRSMetricsList
err := bambou.CurrentSession().FetchChildren(o, VRSMetricsIdentity, &list, info)
return list, err
} | go | func (o *VCenterHypervisor) VRSMetrics(info *bambou.FetchingInfo) (VRSMetricsList, *bambou.Error) {
var list VRSMetricsList
err := bambou.CurrentSession().FetchChildren(o, VRSMetricsIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VCenterHypervisor",
")",
"VRSMetrics",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VRSMetricsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VRSMetricsList",
"\n",
"err",
":=",
"bambou",
".",
"Cu... | // VRSMetrics retrieves the list of child VRSMetrics of the VCenterHypervisor | [
"VRSMetrics",
"retrieves",
"the",
"list",
"of",
"child",
"VRSMetrics",
"of",
"the",
"VCenterHypervisor"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vcenterhypervisor.go#L318-L323 |
146,825 | nuagenetworks/vspk-go | vspk/redirectiontarget.go | VirtualIPs | func (o *RedirectionTarget) VirtualIPs(info *bambou.FetchingInfo) (VirtualIPsList, *bambou.Error) {
var list VirtualIPsList
err := bambou.CurrentSession().FetchChildren(o, VirtualIPIdentity, &list, info)
return list, err
} | go | func (o *RedirectionTarget) VirtualIPs(info *bambou.FetchingInfo) (VirtualIPsList, *bambou.Error) {
var list VirtualIPsList
err := bambou.CurrentSession().FetchChildren(o, VirtualIPIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"RedirectionTarget",
")",
"VirtualIPs",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VirtualIPsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VirtualIPsList",
"\n",
"err",
":=",
"bambou",
".",
"Cu... | // VirtualIPs retrieves the list of child VirtualIPs of the RedirectionTarget | [
"VirtualIPs",
"retrieves",
"the",
"list",
"of",
"child",
"VirtualIPs",
"of",
"the",
"RedirectionTarget"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/redirectiontarget.go#L135-L140 |
146,826 | nuagenetworks/vspk-go | vspk/redirectiontarget.go | VPorts | func (o *RedirectionTarget) VPorts(info *bambou.FetchingInfo) (VPortsList, *bambou.Error) {
var list VPortsList
err := bambou.CurrentSession().FetchChildren(o, VPortIdentity, &list, info)
return list, err
} | go | func (o *RedirectionTarget) VPorts(info *bambou.FetchingInfo) (VPortsList, *bambou.Error) {
var list VPortsList
err := bambou.CurrentSession().FetchChildren(o, VPortIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"RedirectionTarget",
")",
"VPorts",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VPortsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VPortsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession... | // VPorts retrieves the list of child VPorts of the RedirectionTarget | [
"VPorts",
"retrieves",
"the",
"list",
"of",
"child",
"VPorts",
"of",
"the",
"RedirectionTarget"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/redirectiontarget.go#L163-L168 |
146,827 | nuagenetworks/vspk-go | vspk/redirectiontarget.go | AssignVPorts | func (o *RedirectionTarget) AssignVPorts(children VPortsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, VPortIdentity)
} | go | func (o *RedirectionTarget) AssignVPorts(children VPortsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, VPortIdentity)
} | [
"func",
"(",
"o",
"*",
"RedirectionTarget",
")",
"AssignVPorts",
"(",
"children",
"VPortsList",
")",
"*",
"bambou",
".",
"Error",
"{",
"list",
":=",
"[",
"]",
"bambou",
".",
"Identifiable",
"{",
"}",
"\n",
"for",
"_",
",",
"c",
":=",
"range",
"children... | // AssignVPorts assigns the list of VPorts to the RedirectionTarget | [
"AssignVPorts",
"assigns",
"the",
"list",
"of",
"VPorts",
"to",
"the",
"RedirectionTarget"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/redirectiontarget.go#L171-L179 |
146,828 | nuagenetworks/vspk-go | vspk/domain.go | EgressACLEntryTemplates | func (o *Domain) EgressACLEntryTemplates(info *bambou.FetchingInfo) (EgressACLEntryTemplatesList, *bambou.Error) {
var list EgressACLEntryTemplatesList
err := bambou.CurrentSession().FetchChildren(o, EgressACLEntryTemplateIdentity, &list, info)
return list, err
} | go | func (o *Domain) EgressACLEntryTemplates(info *bambou.FetchingInfo) (EgressACLEntryTemplatesList, *bambou.Error) {
var list EgressACLEntryTemplatesList
err := bambou.CurrentSession().FetchChildren(o, EgressACLEntryTemplateIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"EgressACLEntryTemplates",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"EgressACLEntryTemplatesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"EgressACLEntryTemplatesList",
"\n",
"err",
":... | // EgressACLEntryTemplates retrieves the list of child EgressACLEntryTemplates of the Domain | [
"EgressACLEntryTemplates",
"retrieves",
"the",
"list",
"of",
"child",
"EgressACLEntryTemplates",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L264-L269 |
146,829 | nuagenetworks/vspk-go | vspk/domain.go | Links | func (o *Domain) Links(info *bambou.FetchingInfo) (LinksList, *bambou.Error) {
var list LinksList
err := bambou.CurrentSession().FetchChildren(o, LinkIdentity, &list, info)
return list, err
} | go | func (o *Domain) Links(info *bambou.FetchingInfo) (LinksList, *bambou.Error) {
var list LinksList
err := bambou.CurrentSession().FetchChildren(o, LinkIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"Links",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"LinksList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"LinksList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"(",
")... | // Links retrieves the list of child Links of the Domain | [
"Links",
"retrieves",
"the",
"list",
"of",
"child",
"Links",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L328-L333 |
146,830 | nuagenetworks/vspk-go | vspk/domain.go | CreateLink | func (o *Domain) CreateLink(child *Link) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateLink(child *Link) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateLink",
"(",
"child",
"*",
"Link",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateLink creates a new child Link under the Domain | [
"CreateLink",
"creates",
"a",
"new",
"child",
"Link",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L336-L339 |
146,831 | nuagenetworks/vspk-go | vspk/domain.go | FloatingIps | func (o *Domain) FloatingIps(info *bambou.FetchingInfo) (FloatingIpsList, *bambou.Error) {
var list FloatingIpsList
err := bambou.CurrentSession().FetchChildren(o, FloatingIpIdentity, &list, info)
return list, err
} | go | func (o *Domain) FloatingIps(info *bambou.FetchingInfo) (FloatingIpsList, *bambou.Error) {
var list FloatingIpsList
err := bambou.CurrentSession().FetchChildren(o, FloatingIpIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"FloatingIps",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"FloatingIpsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"FloatingIpsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSes... | // FloatingIps retrieves the list of child FloatingIps of the Domain | [
"FloatingIps",
"retrieves",
"the",
"list",
"of",
"child",
"FloatingIps",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L380-L385 |
146,832 | nuagenetworks/vspk-go | vspk/domain.go | CreateFloatingIp | func (o *Domain) CreateFloatingIp(child *FloatingIp) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateFloatingIp(child *FloatingIp) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateFloatingIp",
"(",
"child",
"*",
"FloatingIp",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateFloatingIp creates a new child FloatingIp under the Domain | [
"CreateFloatingIp",
"creates",
"a",
"new",
"child",
"FloatingIp",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L388-L391 |
146,833 | nuagenetworks/vspk-go | vspk/domain.go | VNFDomainMappings | func (o *Domain) VNFDomainMappings(info *bambou.FetchingInfo) (VNFDomainMappingsList, *bambou.Error) {
var list VNFDomainMappingsList
err := bambou.CurrentSession().FetchChildren(o, VNFDomainMappingIdentity, &list, info)
return list, err
} | go | func (o *Domain) VNFDomainMappings(info *bambou.FetchingInfo) (VNFDomainMappingsList, *bambou.Error) {
var list VNFDomainMappingsList
err := bambou.CurrentSession().FetchChildren(o, VNFDomainMappingIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"VNFDomainMappings",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VNFDomainMappingsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VNFDomainMappingsList",
"\n",
"err",
":=",
"bambou",
... | // VNFDomainMappings retrieves the list of child VNFDomainMappings of the Domain | [
"VNFDomainMappings",
"retrieves",
"the",
"list",
"of",
"child",
"VNFDomainMappings",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L424-L429 |
146,834 | nuagenetworks/vspk-go | vspk/domain.go | CreateVNFDomainMapping | func (o *Domain) CreateVNFDomainMapping(child *VNFDomainMapping) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateVNFDomainMapping(child *VNFDomainMapping) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateVNFDomainMapping",
"(",
"child",
"*",
"VNFDomainMapping",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
... | // CreateVNFDomainMapping creates a new child VNFDomainMapping under the Domain | [
"CreateVNFDomainMapping",
"creates",
"a",
"new",
"child",
"VNFDomainMapping",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L432-L435 |
146,835 | nuagenetworks/vspk-go | vspk/domain.go | Domains | func (o *Domain) Domains(info *bambou.FetchingInfo) (DomainsList, *bambou.Error) {
var list DomainsList
err := bambou.CurrentSession().FetchChildren(o, DomainIdentity, &list, info)
return list, err
} | go | func (o *Domain) Domains(info *bambou.FetchingInfo) (DomainsList, *bambou.Error) {
var list DomainsList
err := bambou.CurrentSession().FetchChildren(o, DomainIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"Domains",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"DomainsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"DomainsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"("... | // Domains retrieves the list of child Domains of the Domain | [
"Domains",
"retrieves",
"the",
"list",
"of",
"child",
"Domains",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L494-L499 |
146,836 | nuagenetworks/vspk-go | vspk/domain.go | AssignDomains | func (o *Domain) AssignDomains(children DomainsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, DomainIdentity)
} | go | func (o *Domain) AssignDomains(children DomainsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, DomainIdentity)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"AssignDomains",
"(",
"children",
"DomainsList",
")",
"*",
"bambou",
".",
"Error",
"{",
"list",
":=",
"[",
"]",
"bambou",
".",
"Identifiable",
"{",
"}",
"\n",
"for",
"_",
",",
"c",
":=",
"range",
"children",
"{",... | // AssignDomains assigns the list of Domains to the Domain | [
"AssignDomains",
"assigns",
"the",
"list",
"of",
"Domains",
"to",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L502-L510 |
146,837 | nuagenetworks/vspk-go | vspk/domain.go | DomainTemplates | func (o *Domain) DomainTemplates(info *bambou.FetchingInfo) (DomainTemplatesList, *bambou.Error) {
var list DomainTemplatesList
err := bambou.CurrentSession().FetchChildren(o, DomainTemplateIdentity, &list, info)
return list, err
} | go | func (o *Domain) DomainTemplates(info *bambou.FetchingInfo) (DomainTemplatesList, *bambou.Error) {
var list DomainTemplatesList
err := bambou.CurrentSession().FetchChildren(o, DomainTemplateIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"DomainTemplates",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"DomainTemplatesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"DomainTemplatesList",
"\n",
"err",
":=",
"bambou",
".",
... | // DomainTemplates retrieves the list of child DomainTemplates of the Domain | [
"DomainTemplates",
"retrieves",
"the",
"list",
"of",
"child",
"DomainTemplates",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L513-L518 |
146,838 | nuagenetworks/vspk-go | vspk/domain.go | Zones | func (o *Domain) Zones(info *bambou.FetchingInfo) (ZonesList, *bambou.Error) {
var list ZonesList
err := bambou.CurrentSession().FetchChildren(o, ZoneIdentity, &list, info)
return list, err
} | go | func (o *Domain) Zones(info *bambou.FetchingInfo) (ZonesList, *bambou.Error) {
var list ZonesList
err := bambou.CurrentSession().FetchChildren(o, ZoneIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"Zones",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"ZonesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"ZonesList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"(",
")... | // Zones retrieves the list of child Zones of the Domain | [
"Zones",
"retrieves",
"the",
"list",
"of",
"child",
"Zones",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L521-L526 |
146,839 | nuagenetworks/vspk-go | vspk/domain.go | CreateZone | func (o *Domain) CreateZone(child *Zone) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateZone(child *Zone) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateZone",
"(",
"child",
"*",
"Zone",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateZone creates a new child Zone under the Domain | [
"CreateZone",
"creates",
"a",
"new",
"child",
"Zone",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L529-L532 |
146,840 | nuagenetworks/vspk-go | vspk/domain.go | ContainerInterfaces | func (o *Domain) ContainerInterfaces(info *bambou.FetchingInfo) (ContainerInterfacesList, *bambou.Error) {
var list ContainerInterfacesList
err := bambou.CurrentSession().FetchChildren(o, ContainerInterfaceIdentity, &list, info)
return list, err
} | go | func (o *Domain) ContainerInterfaces(info *bambou.FetchingInfo) (ContainerInterfacesList, *bambou.Error) {
var list ContainerInterfacesList
err := bambou.CurrentSession().FetchChildren(o, ContainerInterfaceIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"ContainerInterfaces",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"ContainerInterfacesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"ContainerInterfacesList",
"\n",
"err",
":=",
"bambo... | // ContainerInterfaces retrieves the list of child ContainerInterfaces of the Domain | [
"ContainerInterfaces",
"retrieves",
"the",
"list",
"of",
"child",
"ContainerInterfaces",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L543-L548 |
146,841 | nuagenetworks/vspk-go | vspk/domain.go | ForwardingPathLists | func (o *Domain) ForwardingPathLists(info *bambou.FetchingInfo) (ForwardingPathListsList, *bambou.Error) {
var list ForwardingPathListsList
err := bambou.CurrentSession().FetchChildren(o, ForwardingPathListIdentity, &list, info)
return list, err
} | go | func (o *Domain) ForwardingPathLists(info *bambou.FetchingInfo) (ForwardingPathListsList, *bambou.Error) {
var list ForwardingPathListsList
err := bambou.CurrentSession().FetchChildren(o, ForwardingPathListIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"ForwardingPathLists",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"ForwardingPathListsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"ForwardingPathListsList",
"\n",
"err",
":=",
"bambo... | // ForwardingPathLists retrieves the list of child ForwardingPathLists of the Domain | [
"ForwardingPathLists",
"retrieves",
"the",
"list",
"of",
"child",
"ForwardingPathLists",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L551-L556 |
146,842 | nuagenetworks/vspk-go | vspk/domain.go | CreateForwardingPathList | func (o *Domain) CreateForwardingPathList(child *ForwardingPathList) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateForwardingPathList(child *ForwardingPathList) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateForwardingPathList",
"(",
"child",
"*",
"ForwardingPathList",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
... | // CreateForwardingPathList creates a new child ForwardingPathList under the Domain | [
"CreateForwardingPathList",
"creates",
"a",
"new",
"child",
"ForwardingPathList",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L559-L562 |
146,843 | nuagenetworks/vspk-go | vspk/domain.go | SPATSourcesPools | func (o *Domain) SPATSourcesPools(info *bambou.FetchingInfo) (SPATSourcesPoolsList, *bambou.Error) {
var list SPATSourcesPoolsList
err := bambou.CurrentSession().FetchChildren(o, SPATSourcesPoolIdentity, &list, info)
return list, err
} | go | func (o *Domain) SPATSourcesPools(info *bambou.FetchingInfo) (SPATSourcesPoolsList, *bambou.Error) {
var list SPATSourcesPoolsList
err := bambou.CurrentSession().FetchChildren(o, SPATSourcesPoolIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"SPATSourcesPools",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"SPATSourcesPoolsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"SPATSourcesPoolsList",
"\n",
"err",
":=",
"bambou",
"."... | // SPATSourcesPools retrieves the list of child SPATSourcesPools of the Domain | [
"SPATSourcesPools",
"retrieves",
"the",
"list",
"of",
"child",
"SPATSourcesPools",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L601-L606 |
146,844 | nuagenetworks/vspk-go | vspk/domain.go | CreateSPATSourcesPool | func (o *Domain) CreateSPATSourcesPool(child *SPATSourcesPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateSPATSourcesPool(child *SPATSourcesPool) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateSPATSourcesPool",
"(",
"child",
"*",
"SPATSourcesPool",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateSPATSourcesPool creates a new child SPATSourcesPool under the Domain | [
"CreateSPATSourcesPool",
"creates",
"a",
"new",
"child",
"SPATSourcesPool",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L609-L612 |
146,845 | nuagenetworks/vspk-go | vspk/domain.go | UplinkRDs | func (o *Domain) UplinkRDs(info *bambou.FetchingInfo) (UplinkRDsList, *bambou.Error) {
var list UplinkRDsList
err := bambou.CurrentSession().FetchChildren(o, UplinkRDIdentity, &list, info)
return list, err
} | go | func (o *Domain) UplinkRDs(info *bambou.FetchingInfo) (UplinkRDsList, *bambou.Error) {
var list UplinkRDsList
err := bambou.CurrentSession().FetchChildren(o, UplinkRDIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"UplinkRDs",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"UplinkRDsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"UplinkRDsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",... | // UplinkRDs retrieves the list of child UplinkRDs of the Domain | [
"UplinkRDs",
"retrieves",
"the",
"list",
"of",
"child",
"UplinkRDs",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L615-L620 |
146,846 | nuagenetworks/vspk-go | vspk/domain.go | VPNConnections | func (o *Domain) VPNConnections(info *bambou.FetchingInfo) (VPNConnectionsList, *bambou.Error) {
var list VPNConnectionsList
err := bambou.CurrentSession().FetchChildren(o, VPNConnectionIdentity, &list, info)
return list, err
} | go | func (o *Domain) VPNConnections(info *bambou.FetchingInfo) (VPNConnectionsList, *bambou.Error) {
var list VPNConnectionsList
err := bambou.CurrentSession().FetchChildren(o, VPNConnectionIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"VPNConnections",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VPNConnectionsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VPNConnectionsList",
"\n",
"err",
":=",
"bambou",
".",
"C... | // VPNConnections retrieves the list of child VPNConnections of the Domain | [
"VPNConnections",
"retrieves",
"the",
"list",
"of",
"child",
"VPNConnections",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L623-L628 |
146,847 | nuagenetworks/vspk-go | vspk/domain.go | CreateVPNConnection | func (o *Domain) CreateVPNConnection(child *VPNConnection) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateVPNConnection(child *VPNConnection) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateVPNConnection",
"(",
"child",
"*",
"VPNConnection",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVPNConnection creates a new child VPNConnection under the Domain | [
"CreateVPNConnection",
"creates",
"a",
"new",
"child",
"VPNConnection",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L631-L634 |
146,848 | nuagenetworks/vspk-go | vspk/domain.go | NSGatewaySummaries | func (o *Domain) NSGatewaySummaries(info *bambou.FetchingInfo) (NSGatewaySummariesList, *bambou.Error) {
var list NSGatewaySummariesList
err := bambou.CurrentSession().FetchChildren(o, NSGatewaySummaryIdentity, &list, info)
return list, err
} | go | func (o *Domain) NSGatewaySummaries(info *bambou.FetchingInfo) (NSGatewaySummariesList, *bambou.Error) {
var list NSGatewaySummariesList
err := bambou.CurrentSession().FetchChildren(o, NSGatewaySummaryIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"NSGatewaySummaries",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"NSGatewaySummariesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"NSGatewaySummariesList",
"\n",
"err",
":=",
"bambou",... | // NSGatewaySummaries retrieves the list of child NSGatewaySummaries of the Domain | [
"NSGatewaySummaries",
"retrieves",
"the",
"list",
"of",
"child",
"NSGatewaySummaries",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L683-L688 |
146,849 | nuagenetworks/vspk-go | vspk/domain.go | NSGRoutingPolicyBindings | func (o *Domain) NSGRoutingPolicyBindings(info *bambou.FetchingInfo) (NSGRoutingPolicyBindingsList, *bambou.Error) {
var list NSGRoutingPolicyBindingsList
err := bambou.CurrentSession().FetchChildren(o, NSGRoutingPolicyBindingIdentity, &list, info)
return list, err
} | go | func (o *Domain) NSGRoutingPolicyBindings(info *bambou.FetchingInfo) (NSGRoutingPolicyBindingsList, *bambou.Error) {
var list NSGRoutingPolicyBindingsList
err := bambou.CurrentSession().FetchChildren(o, NSGRoutingPolicyBindingIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"NSGRoutingPolicyBindings",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"NSGRoutingPolicyBindingsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"NSGRoutingPolicyBindingsList",
"\n",
"err",
... | // NSGRoutingPolicyBindings retrieves the list of child NSGRoutingPolicyBindings of the Domain | [
"NSGRoutingPolicyBindings",
"retrieves",
"the",
"list",
"of",
"child",
"NSGRoutingPolicyBindings",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L691-L696 |
146,850 | nuagenetworks/vspk-go | vspk/domain.go | CreateNSGRoutingPolicyBinding | func (o *Domain) CreateNSGRoutingPolicyBinding(child *NSGRoutingPolicyBinding) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateNSGRoutingPolicyBinding(child *NSGRoutingPolicyBinding) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateNSGRoutingPolicyBinding",
"(",
"child",
"*",
"NSGRoutingPolicyBinding",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
... | // CreateNSGRoutingPolicyBinding creates a new child NSGRoutingPolicyBinding under the Domain | [
"CreateNSGRoutingPolicyBinding",
"creates",
"a",
"new",
"child",
"NSGRoutingPolicyBinding",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L699-L702 |
146,851 | nuagenetworks/vspk-go | vspk/domain.go | OSPFInstances | func (o *Domain) OSPFInstances(info *bambou.FetchingInfo) (OSPFInstancesList, *bambou.Error) {
var list OSPFInstancesList
err := bambou.CurrentSession().FetchChildren(o, OSPFInstanceIdentity, &list, info)
return list, err
} | go | func (o *Domain) OSPFInstances(info *bambou.FetchingInfo) (OSPFInstancesList, *bambou.Error) {
var list OSPFInstancesList
err := bambou.CurrentSession().FetchChildren(o, OSPFInstanceIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"OSPFInstances",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"OSPFInstancesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"OSPFInstancesList",
"\n",
"err",
":=",
"bambou",
".",
"Curr... | // OSPFInstances retrieves the list of child OSPFInstances of the Domain | [
"OSPFInstances",
"retrieves",
"the",
"list",
"of",
"child",
"OSPFInstances",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L705-L710 |
146,852 | nuagenetworks/vspk-go | vspk/domain.go | CreateOSPFInstance | func (o *Domain) CreateOSPFInstance(child *OSPFInstance) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateOSPFInstance(child *OSPFInstance) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateOSPFInstance",
"(",
"child",
"*",
"OSPFInstance",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateOSPFInstance creates a new child OSPFInstance under the Domain | [
"CreateOSPFInstance",
"creates",
"a",
"new",
"child",
"OSPFInstance",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L713-L716 |
146,853 | nuagenetworks/vspk-go | vspk/domain.go | Statistics | func (o *Domain) Statistics(info *bambou.FetchingInfo) (StatisticsList, *bambou.Error) {
var list StatisticsList
err := bambou.CurrentSession().FetchChildren(o, StatisticsIdentity, &list, info)
return list, err
} | go | func (o *Domain) Statistics(info *bambou.FetchingInfo) (StatisticsList, *bambou.Error) {
var list StatisticsList
err := bambou.CurrentSession().FetchChildren(o, StatisticsIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"Statistics",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"StatisticsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"StatisticsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSessio... | // Statistics retrieves the list of child Statistics of the Domain | [
"Statistics",
"retrieves",
"the",
"list",
"of",
"child",
"Statistics",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L733-L738 |
146,854 | nuagenetworks/vspk-go | vspk/domain.go | StatisticsPolicies | func (o *Domain) StatisticsPolicies(info *bambou.FetchingInfo) (StatisticsPoliciesList, *bambou.Error) {
var list StatisticsPoliciesList
err := bambou.CurrentSession().FetchChildren(o, StatisticsPolicyIdentity, &list, info)
return list, err
} | go | func (o *Domain) StatisticsPolicies(info *bambou.FetchingInfo) (StatisticsPoliciesList, *bambou.Error) {
var list StatisticsPoliciesList
err := bambou.CurrentSession().FetchChildren(o, StatisticsPolicyIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"StatisticsPolicies",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"StatisticsPoliciesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"StatisticsPoliciesList",
"\n",
"err",
":=",
"bambou",... | // StatisticsPolicies retrieves the list of child StatisticsPolicies of the Domain | [
"StatisticsPolicies",
"retrieves",
"the",
"list",
"of",
"child",
"StatisticsPolicies",
"of",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L741-L746 |
146,855 | nuagenetworks/vspk-go | vspk/domain.go | CreateStatisticsPolicy | func (o *Domain) CreateStatisticsPolicy(child *StatisticsPolicy) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Domain) CreateStatisticsPolicy(child *StatisticsPolicy) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Domain",
")",
"CreateStatisticsPolicy",
"(",
"child",
"*",
"StatisticsPolicy",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
... | // CreateStatisticsPolicy creates a new child StatisticsPolicy under the Domain | [
"CreateStatisticsPolicy",
"creates",
"a",
"new",
"child",
"StatisticsPolicy",
"under",
"the",
"Domain"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/domain.go#L749-L752 |
146,856 | nuagenetworks/vspk-go | vspk/cosremarkingpolicytable.go | COSRemarkingPolicies | func (o *COSRemarkingPolicyTable) COSRemarkingPolicies(info *bambou.FetchingInfo) (COSRemarkingPoliciesList, *bambou.Error) {
var list COSRemarkingPoliciesList
err := bambou.CurrentSession().FetchChildren(o, COSRemarkingPolicyIdentity, &list, info)
return list, err
} | go | func (o *COSRemarkingPolicyTable) COSRemarkingPolicies(info *bambou.FetchingInfo) (COSRemarkingPoliciesList, *bambou.Error) {
var list COSRemarkingPoliciesList
err := bambou.CurrentSession().FetchChildren(o, COSRemarkingPolicyIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"COSRemarkingPolicyTable",
")",
"COSRemarkingPolicies",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"COSRemarkingPoliciesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"COSRemarkingPoliciesList",
"\n",
"er... | // COSRemarkingPolicies retrieves the list of child COSRemarkingPolicies of the COSRemarkingPolicyTable | [
"COSRemarkingPolicies",
"retrieves",
"the",
"list",
"of",
"child",
"COSRemarkingPolicies",
"of",
"the",
"COSRemarkingPolicyTable"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/cosremarkingpolicytable.go#L140-L145 |
146,857 | nuagenetworks/vspk-go | vspk/cosremarkingpolicytable.go | CreateCOSRemarkingPolicy | func (o *COSRemarkingPolicyTable) CreateCOSRemarkingPolicy(child *COSRemarkingPolicy) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *COSRemarkingPolicyTable) CreateCOSRemarkingPolicy(child *COSRemarkingPolicy) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"COSRemarkingPolicyTable",
")",
"CreateCOSRemarkingPolicy",
"(",
"child",
"*",
"COSRemarkingPolicy",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
... | // CreateCOSRemarkingPolicy creates a new child COSRemarkingPolicy under the COSRemarkingPolicyTable | [
"CreateCOSRemarkingPolicy",
"creates",
"a",
"new",
"child",
"COSRemarkingPolicy",
"under",
"the",
"COSRemarkingPolicyTable"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/cosremarkingpolicytable.go#L148-L151 |
146,858 | nuagenetworks/vspk-go | vspk/performancemonitor.go | Tiers | func (o *PerformanceMonitor) Tiers(info *bambou.FetchingInfo) (TiersList, *bambou.Error) {
var list TiersList
err := bambou.CurrentSession().FetchChildren(o, TierIdentity, &list, info)
return list, err
} | go | func (o *PerformanceMonitor) Tiers(info *bambou.FetchingInfo) (TiersList, *bambou.Error) {
var list TiersList
err := bambou.CurrentSession().FetchChildren(o, TierIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"PerformanceMonitor",
")",
"Tiers",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"TiersList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"TiersList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",... | // Tiers retrieves the list of child Tiers of the PerformanceMonitor | [
"Tiers",
"retrieves",
"the",
"list",
"of",
"child",
"Tiers",
"of",
"the",
"PerformanceMonitor"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/performancemonitor.go#L127-L132 |
146,859 | nuagenetworks/vspk-go | vspk/egressacltemplate.go | CreateEgressACLEntryTemplate | func (o *EgressACLTemplate) CreateEgressACLEntryTemplate(child *EgressACLEntryTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *EgressACLTemplate) CreateEgressACLEntryTemplate(child *EgressACLEntryTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"EgressACLTemplate",
")",
"CreateEgressACLEntryTemplate",
"(",
"child",
"*",
"EgressACLEntryTemplate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child"... | // CreateEgressACLEntryTemplate creates a new child EgressACLEntryTemplate under the EgressACLTemplate | [
"CreateEgressACLEntryTemplate",
"creates",
"a",
"new",
"child",
"EgressACLEntryTemplate",
"under",
"the",
"EgressACLTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/egressacltemplate.go#L144-L147 |
146,860 | nuagenetworks/vspk-go | vspk/vnfcatalog.go | VNFDescriptors | func (o *VNFCatalog) VNFDescriptors(info *bambou.FetchingInfo) (VNFDescriptorsList, *bambou.Error) {
var list VNFDescriptorsList
err := bambou.CurrentSession().FetchChildren(o, VNFDescriptorIdentity, &list, info)
return list, err
} | go | func (o *VNFCatalog) VNFDescriptors(info *bambou.FetchingInfo) (VNFDescriptorsList, *bambou.Error) {
var list VNFDescriptorsList
err := bambou.CurrentSession().FetchChildren(o, VNFDescriptorIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VNFCatalog",
")",
"VNFDescriptors",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VNFDescriptorsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VNFDescriptorsList",
"\n",
"err",
":=",
"bambou",
".",
... | // VNFDescriptors retrieves the list of child VNFDescriptors of the VNFCatalog | [
"VNFDescriptors",
"retrieves",
"the",
"list",
"of",
"child",
"VNFDescriptors",
"of",
"the",
"VNFCatalog"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vnfcatalog.go#L140-L145 |
146,861 | nuagenetworks/vspk-go | vspk/vnfcatalog.go | CreateVNFDescriptor | func (o *VNFCatalog) CreateVNFDescriptor(child *VNFDescriptor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VNFCatalog) CreateVNFDescriptor(child *VNFDescriptor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VNFCatalog",
")",
"CreateVNFDescriptor",
"(",
"child",
"*",
"VNFDescriptor",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVNFDescriptor creates a new child VNFDescriptor under the VNFCatalog | [
"CreateVNFDescriptor",
"creates",
"a",
"new",
"child",
"VNFDescriptor",
"under",
"the",
"VNFCatalog"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vnfcatalog.go#L148-L151 |
146,862 | nuagenetworks/vspk-go | vspk/nsgatewaytemplate.go | NSPortTemplates | func (o *NSGatewayTemplate) NSPortTemplates(info *bambou.FetchingInfo) (NSPortTemplatesList, *bambou.Error) {
var list NSPortTemplatesList
err := bambou.CurrentSession().FetchChildren(o, NSPortTemplateIdentity, &list, info)
return list, err
} | go | func (o *NSGatewayTemplate) NSPortTemplates(info *bambou.FetchingInfo) (NSPortTemplatesList, *bambou.Error) {
var list NSPortTemplatesList
err := bambou.CurrentSession().FetchChildren(o, NSPortTemplateIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"NSGatewayTemplate",
")",
"NSPortTemplates",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"NSPortTemplatesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"NSPortTemplatesList",
"\n",
"err",
":=",
"bambou... | // NSPortTemplates retrieves the list of child NSPortTemplates of the NSGatewayTemplate | [
"NSPortTemplates",
"retrieves",
"the",
"list",
"of",
"child",
"NSPortTemplates",
"of",
"the",
"NSGatewayTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/nsgatewaytemplate.go#L149-L154 |
146,863 | nuagenetworks/vspk-go | vspk/nsgatewaytemplate.go | CreateNSPortTemplate | func (o *NSGatewayTemplate) CreateNSPortTemplate(child *NSPortTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *NSGatewayTemplate) CreateNSPortTemplate(child *NSPortTemplate) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"NSGatewayTemplate",
")",
"CreateNSPortTemplate",
"(",
"child",
"*",
"NSPortTemplate",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",... | // CreateNSPortTemplate creates a new child NSPortTemplate under the NSGatewayTemplate | [
"CreateNSPortTemplate",
"creates",
"a",
"new",
"child",
"NSPortTemplate",
"under",
"the",
"NSGatewayTemplate"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/nsgatewaytemplate.go#L157-L160 |
146,864 | nuagenetworks/vspk-go | vspk/l4servicegroup.go | AssignL4Services | func (o *L4ServiceGroup) AssignL4Services(children L4ServicesList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, L4ServiceIdentity)
} | go | func (o *L4ServiceGroup) AssignL4Services(children L4ServicesList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, L4ServiceIdentity)
} | [
"func",
"(",
"o",
"*",
"L4ServiceGroup",
")",
"AssignL4Services",
"(",
"children",
"L4ServicesList",
")",
"*",
"bambou",
".",
"Error",
"{",
"list",
":=",
"[",
"]",
"bambou",
".",
"Identifiable",
"{",
"}",
"\n",
"for",
"_",
",",
"c",
":=",
"range",
"chi... | // AssignL4Services assigns the list of L4Services to the L4ServiceGroup | [
"AssignL4Services",
"assigns",
"the",
"list",
"of",
"L4Services",
"to",
"the",
"L4ServiceGroup"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/l4servicegroup.go#L120-L128 |
146,865 | nuagenetworks/vspk-go | vspk/subnet.go | DefaultGateways | func (o *Subnet) DefaultGateways(info *bambou.FetchingInfo) (DefaultGatewaysList, *bambou.Error) {
var list DefaultGatewaysList
err := bambou.CurrentSession().FetchChildren(o, DefaultGatewayIdentity, &list, info)
return list, err
} | go | func (o *Subnet) DefaultGateways(info *bambou.FetchingInfo) (DefaultGatewaysList, *bambou.Error) {
var list DefaultGatewaysList
err := bambou.CurrentSession().FetchChildren(o, DefaultGatewayIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Subnet",
")",
"DefaultGateways",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"DefaultGatewaysList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"DefaultGatewaysList",
"\n",
"err",
":=",
"bambou",
".",
... | // DefaultGateways retrieves the list of child DefaultGateways of the Subnet | [
"DefaultGateways",
"retrieves",
"the",
"list",
"of",
"child",
"DefaultGateways",
"of",
"the",
"Subnet"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/subnet.go#L202-L207 |
146,866 | nuagenetworks/vspk-go | vspk/subnet.go | CreateVMResync | func (o *Subnet) CreateVMResync(child *VMResync) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Subnet) CreateVMResync(child *VMResync) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Subnet",
")",
"CreateVMResync",
"(",
"child",
"*",
"VMResync",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVMResync creates a new child VMResync under the Subnet | [
"CreateVMResync",
"creates",
"a",
"new",
"child",
"VMResync",
"under",
"the",
"Subnet"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/subnet.go#L232-L235 |
146,867 | nuagenetworks/vspk-go | vspk/subnet.go | AssignIKEGatewayConnections | func (o *Subnet) AssignIKEGatewayConnections(children IKEGatewayConnectionsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, IKEGatewayConnectionIdentity)
} | go | func (o *Subnet) AssignIKEGatewayConnections(children IKEGatewayConnectionsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, IKEGatewayConnectionIdentity)
} | [
"func",
"(",
"o",
"*",
"Subnet",
")",
"AssignIKEGatewayConnections",
"(",
"children",
"IKEGatewayConnectionsList",
")",
"*",
"bambou",
".",
"Error",
"{",
"list",
":=",
"[",
"]",
"bambou",
".",
"Identifiable",
"{",
"}",
"\n",
"for",
"_",
",",
"c",
":=",
"... | // AssignIKEGatewayConnections assigns the list of IKEGatewayConnections to the Subnet | [
"AssignIKEGatewayConnections",
"assigns",
"the",
"list",
"of",
"IKEGatewayConnections",
"to",
"the",
"Subnet"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/subnet.go#L296-L304 |
146,868 | nuagenetworks/vspk-go | vspk/subnet.go | CreateVPort | func (o *Subnet) CreateVPort(child *VPort) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Subnet) CreateVPort(child *VPort) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Subnet",
")",
"CreateVPort",
"(",
"child",
"*",
"VPort",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVPort creates a new child VPort under the Subnet | [
"CreateVPort",
"creates",
"a",
"new",
"child",
"VPort",
"under",
"the",
"Subnet"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/subnet.go#L403-L406 |
146,869 | nuagenetworks/vspk-go | vspk/subnet.go | IPReservations | func (o *Subnet) IPReservations(info *bambou.FetchingInfo) (IPReservationsList, *bambou.Error) {
var list IPReservationsList
err := bambou.CurrentSession().FetchChildren(o, IPReservationIdentity, &list, info)
return list, err
} | go | func (o *Subnet) IPReservations(info *bambou.FetchingInfo) (IPReservationsList, *bambou.Error) {
var list IPReservationsList
err := bambou.CurrentSession().FetchChildren(o, IPReservationIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Subnet",
")",
"IPReservations",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"IPReservationsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"IPReservationsList",
"\n",
"err",
":=",
"bambou",
".",
"C... | // IPReservations retrieves the list of child IPReservations of the Subnet | [
"IPReservations",
"retrieves",
"the",
"list",
"of",
"child",
"IPReservations",
"of",
"the",
"Subnet"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/subnet.go#L409-L414 |
146,870 | nuagenetworks/vspk-go | vspk/subnet.go | CreateIPReservation | func (o *Subnet) CreateIPReservation(child *IPReservation) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Subnet) CreateIPReservation(child *IPReservation) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Subnet",
")",
"CreateIPReservation",
"(",
"child",
"*",
"IPReservation",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateIPReservation creates a new child IPReservation under the Subnet | [
"CreateIPReservation",
"creates",
"a",
"new",
"child",
"IPReservation",
"under",
"the",
"Subnet"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/subnet.go#L417-L420 |
146,871 | nuagenetworks/vspk-go | vspk/subnet.go | ProxyARPFilters | func (o *Subnet) ProxyARPFilters(info *bambou.FetchingInfo) (ProxyARPFiltersList, *bambou.Error) {
var list ProxyARPFiltersList
err := bambou.CurrentSession().FetchChildren(o, ProxyARPFilterIdentity, &list, info)
return list, err
} | go | func (o *Subnet) ProxyARPFilters(info *bambou.FetchingInfo) (ProxyARPFiltersList, *bambou.Error) {
var list ProxyARPFiltersList
err := bambou.CurrentSession().FetchChildren(o, ProxyARPFilterIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"Subnet",
")",
"ProxyARPFilters",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"ProxyARPFiltersList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"ProxyARPFiltersList",
"\n",
"err",
":=",
"bambou",
".",
... | // ProxyARPFilters retrieves the list of child ProxyARPFilters of the Subnet | [
"ProxyARPFilters",
"retrieves",
"the",
"list",
"of",
"child",
"ProxyARPFilters",
"of",
"the",
"Subnet"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/subnet.go#L423-L428 |
146,872 | nuagenetworks/vspk-go | vspk/subnet.go | CreateProxyARPFilter | func (o *Subnet) CreateProxyARPFilter(child *ProxyARPFilter) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *Subnet) CreateProxyARPFilter(child *ProxyARPFilter) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"Subnet",
")",
"CreateProxyARPFilter",
"(",
"child",
"*",
"ProxyARPFilter",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateProxyARPFilter creates a new child ProxyARPFilter under the Subnet | [
"CreateProxyARPFilter",
"creates",
"a",
"new",
"child",
"ProxyARPFilter",
"under",
"the",
"Subnet"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/subnet.go#L431-L434 |
146,873 | nuagenetworks/vspk-go | vspk/infrastructureaccessprofile.go | Connectionendpoints | func (o *InfrastructureAccessProfile) Connectionendpoints(info *bambou.FetchingInfo) (ConnectionendpointsList, *bambou.Error) {
var list ConnectionendpointsList
err := bambou.CurrentSession().FetchChildren(o, ConnectionendpointIdentity, &list, info)
return list, err
} | go | func (o *InfrastructureAccessProfile) Connectionendpoints(info *bambou.FetchingInfo) (ConnectionendpointsList, *bambou.Error) {
var list ConnectionendpointsList
err := bambou.CurrentSession().FetchChildren(o, ConnectionendpointIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"InfrastructureAccessProfile",
")",
"Connectionendpoints",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"ConnectionendpointsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"ConnectionendpointsList",
"\n",
"e... | // Connectionendpoints retrieves the list of child Connectionendpoints of the InfrastructureAccessProfile | [
"Connectionendpoints",
"retrieves",
"the",
"list",
"of",
"child",
"Connectionendpoints",
"of",
"the",
"InfrastructureAccessProfile"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/infrastructureaccessprofile.go#L149-L154 |
146,874 | nuagenetworks/vspk-go | vspk/infrastructureaccessprofile.go | CreateConnectionendpoint | func (o *InfrastructureAccessProfile) CreateConnectionendpoint(child *Connectionendpoint) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *InfrastructureAccessProfile) CreateConnectionendpoint(child *Connectionendpoint) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"InfrastructureAccessProfile",
")",
"CreateConnectionendpoint",
"(",
"child",
"*",
"Connectionendpoint",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"chil... | // CreateConnectionendpoint creates a new child Connectionendpoint under the InfrastructureAccessProfile | [
"CreateConnectionendpoint",
"creates",
"a",
"new",
"child",
"Connectionendpoint",
"under",
"the",
"InfrastructureAccessProfile"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/infrastructureaccessprofile.go#L157-L160 |
146,875 | nuagenetworks/vspk-go | vspk/infrastructureaccessprofile.go | SSHKeys | func (o *InfrastructureAccessProfile) SSHKeys(info *bambou.FetchingInfo) (SSHKeysList, *bambou.Error) {
var list SSHKeysList
err := bambou.CurrentSession().FetchChildren(o, SSHKeyIdentity, &list, info)
return list, err
} | go | func (o *InfrastructureAccessProfile) SSHKeys(info *bambou.FetchingInfo) (SSHKeysList, *bambou.Error) {
var list SSHKeysList
err := bambou.CurrentSession().FetchChildren(o, SSHKeyIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"InfrastructureAccessProfile",
")",
"SSHKeys",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"SSHKeysList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"SSHKeysList",
"\n",
"err",
":=",
"bambou",
".",
"C... | // SSHKeys retrieves the list of child SSHKeys of the InfrastructureAccessProfile | [
"SSHKeys",
"retrieves",
"the",
"list",
"of",
"child",
"SSHKeys",
"of",
"the",
"InfrastructureAccessProfile"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/infrastructureaccessprofile.go#L171-L176 |
146,876 | nuagenetworks/vspk-go | vspk/infrastructureaccessprofile.go | CreateSSHKey | func (o *InfrastructureAccessProfile) CreateSSHKey(child *SSHKey) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *InfrastructureAccessProfile) CreateSSHKey(child *SSHKey) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"InfrastructureAccessProfile",
")",
"CreateSSHKey",
"(",
"child",
"*",
"SSHKey",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"... | // CreateSSHKey creates a new child SSHKey under the InfrastructureAccessProfile | [
"CreateSSHKey",
"creates",
"a",
"new",
"child",
"SSHKey",
"under",
"the",
"InfrastructureAccessProfile"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/infrastructureaccessprofile.go#L179-L182 |
146,877 | nuagenetworks/vspk-go | vspk/dscpforwardingclasstable.go | DSCPForwardingClassMappings | func (o *DSCPForwardingClassTable) DSCPForwardingClassMappings(info *bambou.FetchingInfo) (DSCPForwardingClassMappingsList, *bambou.Error) {
var list DSCPForwardingClassMappingsList
err := bambou.CurrentSession().FetchChildren(o, DSCPForwardingClassMappingIdentity, &list, info)
return list, err
} | go | func (o *DSCPForwardingClassTable) DSCPForwardingClassMappings(info *bambou.FetchingInfo) (DSCPForwardingClassMappingsList, *bambou.Error) {
var list DSCPForwardingClassMappingsList
err := bambou.CurrentSession().FetchChildren(o, DSCPForwardingClassMappingIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"DSCPForwardingClassTable",
")",
"DSCPForwardingClassMappings",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"DSCPForwardingClassMappingsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"DSCPForwardingClassMappin... | // DSCPForwardingClassMappings retrieves the list of child DSCPForwardingClassMappings of the DSCPForwardingClassTable | [
"DSCPForwardingClassMappings",
"retrieves",
"the",
"list",
"of",
"child",
"DSCPForwardingClassMappings",
"of",
"the",
"DSCPForwardingClassTable"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/dscpforwardingclasstable.go#L140-L145 |
146,878 | nuagenetworks/vspk-go | vspk/dscpforwardingclasstable.go | CreateDSCPForwardingClassMapping | func (o *DSCPForwardingClassTable) CreateDSCPForwardingClassMapping(child *DSCPForwardingClassMapping) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *DSCPForwardingClassTable) CreateDSCPForwardingClassMapping(child *DSCPForwardingClassMapping) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"DSCPForwardingClassTable",
")",
"CreateDSCPForwardingClassMapping",
"(",
"child",
"*",
"DSCPForwardingClassMapping",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
... | // CreateDSCPForwardingClassMapping creates a new child DSCPForwardingClassMapping under the DSCPForwardingClassTable | [
"CreateDSCPForwardingClassMapping",
"creates",
"a",
"new",
"child",
"DSCPForwardingClassMapping",
"under",
"the",
"DSCPForwardingClassTable"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/dscpforwardingclasstable.go#L148-L151 |
146,879 | nuagenetworks/vspk-go | vspk/virtualfirewallpolicy.go | CreateVirtualFirewallRule | func (o *VirtualFirewallPolicy) CreateVirtualFirewallRule(child *VirtualFirewallRule) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VirtualFirewallPolicy) CreateVirtualFirewallRule(child *VirtualFirewallRule) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VirtualFirewallPolicy",
")",
"CreateVirtualFirewallRule",
"(",
"child",
"*",
"VirtualFirewallRule",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
... | // CreateVirtualFirewallRule creates a new child VirtualFirewallRule under the VirtualFirewallPolicy | [
"CreateVirtualFirewallRule",
"creates",
"a",
"new",
"child",
"VirtualFirewallRule",
"under",
"the",
"VirtualFirewallPolicy"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/virtualfirewallpolicy.go#L153-L156 |
146,880 | nuagenetworks/vspk-go | vspk/vport.go | CreateTCA | func (o *VPort) CreateTCA(child *TCA) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VPort) CreateTCA(child *TCA) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"CreateTCA",
"(",
"child",
"*",
"TCA",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateTCA creates a new child TCA under the VPort | [
"CreateTCA",
"creates",
"a",
"new",
"child",
"TCA",
"under",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L169-L172 |
146,881 | nuagenetworks/vspk-go | vspk/vport.go | RedirectionTargets | func (o *VPort) RedirectionTargets(info *bambou.FetchingInfo) (RedirectionTargetsList, *bambou.Error) {
var list RedirectionTargetsList
err := bambou.CurrentSession().FetchChildren(o, RedirectionTargetIdentity, &list, info)
return list, err
} | go | func (o *VPort) RedirectionTargets(info *bambou.FetchingInfo) (RedirectionTargetsList, *bambou.Error) {
var list RedirectionTargetsList
err := bambou.CurrentSession().FetchChildren(o, RedirectionTargetIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"RedirectionTargets",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"RedirectionTargetsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"RedirectionTargetsList",
"\n",
"err",
":=",
"bambou",
... | // RedirectionTargets retrieves the list of child RedirectionTargets of the VPort | [
"RedirectionTargets",
"retrieves",
"the",
"list",
"of",
"child",
"RedirectionTargets",
"of",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L175-L180 |
146,882 | nuagenetworks/vspk-go | vspk/vport.go | AssignRedirectionTargets | func (o *VPort) AssignRedirectionTargets(children RedirectionTargetsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, RedirectionTargetIdentity)
} | go | func (o *VPort) AssignRedirectionTargets(children RedirectionTargetsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, RedirectionTargetIdentity)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"AssignRedirectionTargets",
"(",
"children",
"RedirectionTargetsList",
")",
"*",
"bambou",
".",
"Error",
"{",
"list",
":=",
"[",
"]",
"bambou",
".",
"Identifiable",
"{",
"}",
"\n",
"for",
"_",
",",
"c",
":=",
"range",... | // AssignRedirectionTargets assigns the list of RedirectionTargets to the VPort | [
"AssignRedirectionTargets",
"assigns",
"the",
"list",
"of",
"RedirectionTargets",
"to",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L183-L191 |
146,883 | nuagenetworks/vspk-go | vspk/vport.go | DeploymentFailures | func (o *VPort) DeploymentFailures(info *bambou.FetchingInfo) (DeploymentFailuresList, *bambou.Error) {
var list DeploymentFailuresList
err := bambou.CurrentSession().FetchChildren(o, DeploymentFailureIdentity, &list, info)
return list, err
} | go | func (o *VPort) DeploymentFailures(info *bambou.FetchingInfo) (DeploymentFailuresList, *bambou.Error) {
var list DeploymentFailuresList
err := bambou.CurrentSession().FetchChildren(o, DeploymentFailureIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"DeploymentFailures",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"DeploymentFailuresList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"DeploymentFailuresList",
"\n",
"err",
":=",
"bambou",
... | // DeploymentFailures retrieves the list of child DeploymentFailures of the VPort | [
"DeploymentFailures",
"retrieves",
"the",
"list",
"of",
"child",
"DeploymentFailures",
"of",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L194-L199 |
146,884 | nuagenetworks/vspk-go | vspk/vport.go | CreateDeploymentFailure | func (o *VPort) CreateDeploymentFailure(child *DeploymentFailure) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VPort) CreateDeploymentFailure(child *DeploymentFailure) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"CreateDeploymentFailure",
"(",
"child",
"*",
"DeploymentFailure",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"... | // CreateDeploymentFailure creates a new child DeploymentFailure under the VPort | [
"CreateDeploymentFailure",
"creates",
"a",
"new",
"child",
"DeploymentFailure",
"under",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L202-L205 |
146,885 | nuagenetworks/vspk-go | vspk/vport.go | AggregateMetadatas | func (o *VPort) AggregateMetadatas(info *bambou.FetchingInfo) (AggregateMetadatasList, *bambou.Error) {
var list AggregateMetadatasList
err := bambou.CurrentSession().FetchChildren(o, AggregateMetadataIdentity, &list, info)
return list, err
} | go | func (o *VPort) AggregateMetadatas(info *bambou.FetchingInfo) (AggregateMetadatasList, *bambou.Error) {
var list AggregateMetadatasList
err := bambou.CurrentSession().FetchChildren(o, AggregateMetadataIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"AggregateMetadatas",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"AggregateMetadatasList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"AggregateMetadatasList",
"\n",
"err",
":=",
"bambou",
... | // AggregateMetadatas retrieves the list of child AggregateMetadatas of the VPort | [
"AggregateMetadatas",
"retrieves",
"the",
"list",
"of",
"child",
"AggregateMetadatas",
"of",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L222-L227 |
146,886 | nuagenetworks/vspk-go | vspk/vport.go | BGPNeighbors | func (o *VPort) BGPNeighbors(info *bambou.FetchingInfo) (BGPNeighborsList, *bambou.Error) {
var list BGPNeighborsList
err := bambou.CurrentSession().FetchChildren(o, BGPNeighborIdentity, &list, info)
return list, err
} | go | func (o *VPort) BGPNeighbors(info *bambou.FetchingInfo) (BGPNeighborsList, *bambou.Error) {
var list BGPNeighborsList
err := bambou.CurrentSession().FetchChildren(o, BGPNeighborIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"BGPNeighbors",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"BGPNeighborsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"BGPNeighborsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentS... | // BGPNeighbors retrieves the list of child BGPNeighbors of the VPort | [
"BGPNeighbors",
"retrieves",
"the",
"list",
"of",
"child",
"BGPNeighbors",
"of",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L230-L235 |
146,887 | nuagenetworks/vspk-go | vspk/vport.go | CreateBGPNeighbor | func (o *VPort) CreateBGPNeighbor(child *BGPNeighbor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VPort) CreateBGPNeighbor(child *BGPNeighbor) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"CreateBGPNeighbor",
"(",
"child",
"*",
"BGPNeighbor",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateBGPNeighbor creates a new child BGPNeighbor under the VPort | [
"CreateBGPNeighbor",
"creates",
"a",
"new",
"child",
"BGPNeighbor",
"under",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L238-L241 |
146,888 | nuagenetworks/vspk-go | vspk/vport.go | CreateVirtualIP | func (o *VPort) CreateVirtualIP(child *VirtualIP) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VPort) CreateVirtualIP(child *VirtualIP) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"CreateVirtualIP",
"(",
"child",
"*",
"VirtualIP",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVirtualIP creates a new child VirtualIP under the VPort | [
"CreateVirtualIP",
"creates",
"a",
"new",
"child",
"VirtualIP",
"under",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L274-L277 |
146,889 | nuagenetworks/vspk-go | vspk/vport.go | VNFInterfaces | func (o *VPort) VNFInterfaces(info *bambou.FetchingInfo) (VNFInterfacesList, *bambou.Error) {
var list VNFInterfacesList
err := bambou.CurrentSession().FetchChildren(o, VNFInterfaceIdentity, &list, info)
return list, err
} | go | func (o *VPort) VNFInterfaces(info *bambou.FetchingInfo) (VNFInterfacesList, *bambou.Error) {
var list VNFInterfacesList
err := bambou.CurrentSession().FetchChildren(o, VNFInterfaceIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"VNFInterfaces",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VNFInterfacesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VNFInterfacesList",
"\n",
"err",
":=",
"bambou",
".",
"Curre... | // VNFInterfaces retrieves the list of child VNFInterfaces of the VPort | [
"VNFInterfaces",
"retrieves",
"the",
"list",
"of",
"child",
"VNFInterfaces",
"of",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L324-L329 |
146,890 | nuagenetworks/vspk-go | vspk/vport.go | AssignPolicyGroups | func (o *VPort) AssignPolicyGroups(children PolicyGroupsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, PolicyGroupIdentity)
} | go | func (o *VPort) AssignPolicyGroups(children PolicyGroupsList) *bambou.Error {
list := []bambou.Identifiable{}
for _, c := range children {
list = append(list, c)
}
return bambou.CurrentSession().AssignChildren(o, list, PolicyGroupIdentity)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"AssignPolicyGroups",
"(",
"children",
"PolicyGroupsList",
")",
"*",
"bambou",
".",
"Error",
"{",
"list",
":=",
"[",
"]",
"bambou",
".",
"Identifiable",
"{",
"}",
"\n",
"for",
"_",
",",
"c",
":=",
"range",
"children... | // AssignPolicyGroups assigns the list of PolicyGroups to the VPort | [
"AssignPolicyGroups",
"assigns",
"the",
"list",
"of",
"PolicyGroups",
"to",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L370-L378 |
146,891 | nuagenetworks/vspk-go | vspk/vport.go | PortMappings | func (o *VPort) PortMappings(info *bambou.FetchingInfo) (PortMappingsList, *bambou.Error) {
var list PortMappingsList
err := bambou.CurrentSession().FetchChildren(o, PortMappingIdentity, &list, info)
return list, err
} | go | func (o *VPort) PortMappings(info *bambou.FetchingInfo) (PortMappingsList, *bambou.Error) {
var list PortMappingsList
err := bambou.CurrentSession().FetchChildren(o, PortMappingIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"PortMappings",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"PortMappingsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"PortMappingsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentS... | // PortMappings retrieves the list of child PortMappings of the VPort | [
"PortMappings",
"retrieves",
"the",
"list",
"of",
"child",
"PortMappings",
"of",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L397-L402 |
146,892 | nuagenetworks/vspk-go | vspk/vport.go | CreateQOS | func (o *VPort) CreateQOS(child *QOS) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VPort) CreateQOS(child *QOS) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"CreateQOS",
"(",
"child",
"*",
"QOS",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateQOS creates a new child QOS under the VPort | [
"CreateQOS",
"creates",
"a",
"new",
"child",
"QOS",
"under",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L413-L416 |
146,893 | nuagenetworks/vspk-go | vspk/vport.go | HostInterfaces | func (o *VPort) HostInterfaces(info *bambou.FetchingInfo) (HostInterfacesList, *bambou.Error) {
var list HostInterfacesList
err := bambou.CurrentSession().FetchChildren(o, HostInterfaceIdentity, &list, info)
return list, err
} | go | func (o *VPort) HostInterfaces(info *bambou.FetchingInfo) (HostInterfacesList, *bambou.Error) {
var list HostInterfacesList
err := bambou.CurrentSession().FetchChildren(o, HostInterfaceIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"HostInterfaces",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"HostInterfacesList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"HostInterfacesList",
"\n",
"err",
":=",
"bambou",
".",
"Cu... | // HostInterfaces retrieves the list of child HostInterfaces of the VPort | [
"HostInterfaces",
"retrieves",
"the",
"list",
"of",
"child",
"HostInterfaces",
"of",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L419-L424 |
146,894 | nuagenetworks/vspk-go | vspk/vport.go | CreateHostInterface | func (o *VPort) CreateHostInterface(child *HostInterface) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VPort) CreateHostInterface(child *HostInterface) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"CreateHostInterface",
"(",
"child",
"*",
"HostInterface",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateHostInterface creates a new child HostInterface under the VPort | [
"CreateHostInterface",
"creates",
"a",
"new",
"child",
"HostInterface",
"under",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L427-L430 |
146,895 | nuagenetworks/vspk-go | vspk/vport.go | CreateVPortMirror | func (o *VPort) CreateVPortMirror(child *VPortMirror) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VPort) CreateVPortMirror(child *VPortMirror) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"CreateVPortMirror",
"(",
"child",
"*",
"VPortMirror",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVPortMirror creates a new child VPortMirror under the VPort | [
"CreateVPortMirror",
"creates",
"a",
"new",
"child",
"VPortMirror",
"under",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L441-L444 |
146,896 | nuagenetworks/vspk-go | vspk/vport.go | CreateBridgeInterface | func (o *VPort) CreateBridgeInterface(child *BridgeInterface) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VPort) CreateBridgeInterface(child *BridgeInterface) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"CreateBridgeInterface",
"(",
"child",
"*",
"BridgeInterface",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateBridgeInterface creates a new child BridgeInterface under the VPort | [
"CreateBridgeInterface",
"creates",
"a",
"new",
"child",
"BridgeInterface",
"under",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L455-L458 |
146,897 | nuagenetworks/vspk-go | vspk/vport.go | Trunks | func (o *VPort) Trunks(info *bambou.FetchingInfo) (TrunksList, *bambou.Error) {
var list TrunksList
err := bambou.CurrentSession().FetchChildren(o, TrunkIdentity, &list, info)
return list, err
} | go | func (o *VPort) Trunks(info *bambou.FetchingInfo) (TrunksList, *bambou.Error) {
var list TrunksList
err := bambou.CurrentSession().FetchChildren(o, TrunkIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VPort",
")",
"Trunks",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"TrunksList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"TrunksList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"(",
... | // Trunks retrieves the list of child Trunks of the VPort | [
"Trunks",
"retrieves",
"the",
"list",
"of",
"child",
"Trunks",
"of",
"the",
"VPort"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vport.go#L469-L474 |
146,898 | nuagenetworks/vspk-go | vspk/vm.go | VMResyncs | func (o *VM) VMResyncs(info *bambou.FetchingInfo) (VMResyncsList, *bambou.Error) {
var list VMResyncsList
err := bambou.CurrentSession().FetchChildren(o, VMResyncIdentity, &list, info)
return list, err
} | go | func (o *VM) VMResyncs(info *bambou.FetchingInfo) (VMResyncsList, *bambou.Error) {
var list VMResyncsList
err := bambou.CurrentSession().FetchChildren(o, VMResyncIdentity, &list, info)
return list, err
} | [
"func",
"(",
"o",
"*",
"VM",
")",
"VMResyncs",
"(",
"info",
"*",
"bambou",
".",
"FetchingInfo",
")",
"(",
"VMResyncsList",
",",
"*",
"bambou",
".",
"Error",
")",
"{",
"var",
"list",
"VMResyncsList",
"\n",
"err",
":=",
"bambou",
".",
"CurrentSession",
"... | // VMResyncs retrieves the list of child VMResyncs of the VM | [
"VMResyncs",
"retrieves",
"the",
"list",
"of",
"child",
"VMResyncs",
"of",
"the",
"VM"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vm.go#L131-L136 |
146,899 | nuagenetworks/vspk-go | vspk/vm.go | CreateVMInterface | func (o *VM) CreateVMInterface(child *VMInterface) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | go | func (o *VM) CreateVMInterface(child *VMInterface) *bambou.Error {
return bambou.CurrentSession().CreateChild(o, child)
} | [
"func",
"(",
"o",
"*",
"VM",
")",
"CreateVMInterface",
"(",
"child",
"*",
"VMInterface",
")",
"*",
"bambou",
".",
"Error",
"{",
"return",
"bambou",
".",
"CurrentSession",
"(",
")",
".",
"CreateChild",
"(",
"o",
",",
"child",
")",
"\n",
"}"
] | // CreateVMInterface creates a new child VMInterface under the VM | [
"CreateVMInterface",
"creates",
"a",
"new",
"child",
"VMInterface",
"under",
"the",
"VM"
] | c241b25534a9c311aaf7b2e180ad664a4085f935 | https://github.com/nuagenetworks/vspk-go/blob/c241b25534a9c311aaf7b2e180ad664a4085f935/vspk/vm.go#L189-L192 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.