client

package
v1.54.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 19, 2022 License: MPL-2.0 Imports: 26 Imported by: 9

Documentation ¶

Index ¶

Constants ¶

View Source
const DefaultBackoffDelayFactor float64 = 3
View Source
const DefaultBackoffMaxDelay int = 60
View Source
const DefaultBackoffMinDelay int = 4
View Source
const DefaultMOURL = "/api/node/mo"
View Source
const DefaultReqTimeoutVal int = 100

Default timeout for NGINX in ACI is 90 Seconds. Allow the client to set a shorter or longer time depending on their environment

Variables ¶

This section is empty.

Functions ¶

func CheckErrorCustom ¶

func CheckErrorCustom(cont *container.Container) error

func CheckForErrors ¶

func CheckForErrors(cont *container.Container, method string, skipLoggingPayload bool) error

CheckForErrors parses the response and checks of there is an error attribute in the response

func StrtoInt ¶

func StrtoInt(s string, startIndex int, bitSize int) (int64, error)

Types ¶

type Auth ¶

type Auth struct {
	Token  string
	Expiry time.Time
	// contains filtered or unexported fields
}

func (*Auth) CaclulateOffset ¶

func (t *Auth) CaclulateOffset()

func (*Auth) CalculateExpiry ¶

func (t *Auth) CalculateExpiry(willExpire int64)

func (*Auth) IsValid ¶

func (au *Auth) IsValid() bool

type Client ¶

type Client struct {
	BaseURL *url.URL
	MOURL   string

	AuthToken *Auth

	ValidateRelationDn bool

	*ServiceManager
	// contains filtered or unexported fields
}

Client is the main entry point

func GetClient ¶

func GetClient(clientUrl, username string, options ...Option) *Client

GetClient returns a singleton

func NewClient ¶ added in v0.4.10

func NewClient(clientUrl, username string, options ...Option) *Client

NewClient returns a new Instance of the client - allowing for simultaneous connections to the same APIC

func (*Client) Authenticate ¶

func (c *Client) Authenticate() error

Authenticate is used to

func (*Client) Do ¶

func (*Client) DoRaw ¶ added in v0.4.1

func (c *Client) DoRaw(req *http.Request) (*http.Response, error)

func (*Client) InjectAuthenticationHeader ¶

func (client *Client) InjectAuthenticationHeader(req *http.Request, path string) (*http.Request, error)

func (*Client) MakeRestRequest ¶

func (c *Client) MakeRestRequest(method string, rpath string, body *container.Container, authenticated bool) (*http.Request, error)

func (*Client) MakeRestRequestRaw ¶ added in v1.3.26

func (c *Client) MakeRestRequestRaw(method string, rpath string, payload []byte, authenticated bool) (*http.Request, error)

Takes raw payload and does the http request

Used for login request
passwords with special chars have issues when using container
for encoding/decoding

type Option ¶

type Option func(*Client)

func AdminCert ¶

func AdminCert(adminCert string) Option

func AppUserName ¶ added in v1.3.11

func AppUserName(appUserName string) Option

func BackoffDelayFactor ¶ added in v1.21.0

func BackoffDelayFactor(backoffDelayFactor float64) Option

func BackoffMaxDelay ¶ added in v1.21.0

func BackoffMaxDelay(backoffMaxDelay int) Option

func BackoffMinDelay ¶ added in v1.21.0

func BackoffMinDelay(backoffMinDelay int) Option

func HttpClient ¶ added in v1.3.25

func HttpClient(httpcl *http.Client) Option

HttpClient option: allows for caller to set 'httpClient' with 'Transport'. When this option is set 'client.proxyUrl' option is ignored.

func Insecure ¶

func Insecure(insecure bool) Option

func MaxRetries ¶ added in v1.21.0

func MaxRetries(maxRetries int) Option

func MoURL ¶

func MoURL(moURL string) Option

func Password ¶

func Password(password string) Option

func PreserveBaseUrlRef ¶ added in v1.3.23

func PreserveBaseUrlRef(preserveBaseUrlRef bool) Option

func PrivateKey ¶

func PrivateKey(privatekey string) Option

func ProxyCreds ¶ added in v1.3.29

func ProxyCreds(pcreds string) Option

func ProxyUrl ¶

func ProxyUrl(pUrl string) Option

func ReqTimeout ¶ added in v0.5.11

func ReqTimeout(timeout uint32) Option

func SkipLoggingPayload ¶ added in v0.4.5

func SkipLoggingPayload(skipLoggingPayload bool) Option

func ValidateRelationDn ¶ added in v1.12.32

func ValidateRelationDn(validateRelationDn bool) Option

type ServiceManager ¶

type ServiceManager struct {
	MOURL string
	// contains filtered or unexported fields
}

func NewServiceManager ¶

func NewServiceManager(moURL string, client *Client) *ServiceManager

func (*ServiceManager) CreateAAAAuthentication ¶ added in v1.12.16

func (sm *ServiceManager) CreateAAAAuthentication(description string, nameAlias string, aaaAuthRealmAttr models.AAAAuthenticationAttributes) (*models.AAAAuthentication, error)

func (*ServiceManager) CreateAESEncryptionPassphraseandKeysforConfigExportImport ¶ added in v1.12.13

func (sm *ServiceManager) CreateAESEncryptionPassphraseandKeysforConfigExportImport(description string, nameAlias string, pkiExportEncryptionKeyAttr models.AESEncryptionPassphraseandKeysforConfigExportImportAttributes) (*models.AESEncryptionPassphraseandKeysforConfigExportImport, error)

func (*ServiceManager) CreateASNumber ¶ added in v1.31.0

func (sm *ServiceManager) CreateASNumber(order string, set_as_path_criteria string, action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetASPathASNAttr models.ASNumberAttributes) (*models.ASNumber, error)

func (*ServiceManager) CreateAaaDomainRef ¶ added in v1.24.0

func (sm *ServiceManager) CreateAaaDomainRef(name string, parentDn string, nameAlias string, aaaDomainRefAttr models.AaaDomainRefAttributes) (*models.AaaDomainRef, error)

func (*ServiceManager) CreateAccessAccessGroup ¶ added in v0.4.9

func (sm *ServiceManager) CreateAccessAccessGroup(access_port_selector_type string, access_port_selector string, leaf_interface_profile string, infraRsAccBaseGrpattr models.AccessAccessGroupAttributes) (*models.AccessAccessGroup, error)

func (*ServiceManager) CreateAccessGeneric ¶ added in v0.4.4

func (sm *ServiceManager) CreateAccessGeneric(name string, attachable_access_entity_profile string, description string, infraGenericattr models.AccessGenericAttributes) (*models.AccessGeneric, error)

func (*ServiceManager) CreateAccessPortBlock ¶

func (sm *ServiceManager) CreateAccessPortBlock(name string, access_port_selector_type string, access_port_selector string, leaf_interface_profile string, description string, infraPortBlkattr models.AccessPortBlockAttributes) (*models.AccessPortBlock, error)

func (*ServiceManager) CreateAccessPortSelector ¶

func (sm *ServiceManager) CreateAccessPortSelector(access_port_selector_type string, name string, leaf_interface_profile string, description string, infraHPortSattr models.AccessPortSelectorAttributes) (*models.AccessPortSelector, error)

func (*ServiceManager) CreateAccessSubPortBlock ¶

func (sm *ServiceManager) CreateAccessSubPortBlock(name string, access_port_selector_type string, access_port_selector string, leaf_interface_profile string, description string, infraSubPortBlkattr models.AccessSubPortBlockAttributes) (*models.AccessSubPortBlock, error)

func (*ServiceManager) CreateAccessSwitchPolicyGroup ¶ added in v1.12.2

func (sm *ServiceManager) CreateAccessSwitchPolicyGroup(name string, description string, nameAlias string, infraAccNodePGrpAttr models.AccessSwitchPolicyGroupAttributes) (*models.AccessSwitchPolicyGroup, error)

func (*ServiceManager) CreateActionRuleProfile ¶

func (sm *ServiceManager) CreateActionRuleProfile(name string, tenant string, description string, nameAlias string, rtctrlAttrPAttr models.ActionRuleProfileAttributes) (*models.ActionRuleProfile, error)

func (*ServiceManager) CreateAnnotation ¶ added in v1.19.0

func (sm *ServiceManager) CreateAnnotation(key string, parentDn string, tagAnnotationAttr models.AnnotationAttributes) (*models.Annotation, error)

func (*ServiceManager) CreateAny ¶

func (sm *ServiceManager) CreateAny(vrf string, tenant string, description string, vzAnyattr models.AnyAttributes) (*models.Any, error)

func (*ServiceManager) CreateAnycastEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) CreateAnycastEndpoint(mac string, parent_dn string, description string, nameAlias string, fvEpAnycastAttr models.AnycastEndpointAttributes) (*models.AnycastEndpoint, error)

func (*ServiceManager) CreateApplicationEPG ¶

func (sm *ServiceManager) CreateApplicationEPG(name string, application_profile string, tenant string, description string, fvAEPgattr models.ApplicationEPGAttributes) (*models.ApplicationEPG, error)

func (*ServiceManager) CreateApplicationEPGLagPolicy ¶ added in v1.35.0

func (sm *ServiceManager) CreateApplicationEPGLagPolicy(domain_dn string, application_epg string, application_profile string, tenant string, fvAEPgLagPolAttAttr models.ApplicationEPGLagPolicyAttributes) (*models.ApplicationEPGLagPolicy, error)

func (*ServiceManager) CreateApplicationProfile ¶

func (sm *ServiceManager) CreateApplicationProfile(name string, tenant string, description string, fvApattr models.ApplicationProfileAttributes) (*models.ApplicationProfile, error)

func (*ServiceManager) CreateAttachableAccessEntityProfile ¶

func (sm *ServiceManager) CreateAttachableAccessEntityProfile(name string, description string, infraAttEntityPattr models.AttachableAccessEntityProfileAttributes) (*models.AttachableAccessEntityProfile, error)

func (*ServiceManager) CreateAuthenticationMethodfortheDomain ¶ added in v1.12.21

func (sm *ServiceManager) CreateAuthenticationMethodfortheDomain(login_domain string, description string, nameAlias string, aaaDomainAuthAttr models.AuthenticationMethodfortheDomainAttributes) (*models.AuthenticationMethodfortheDomain, error)

func (*ServiceManager) CreateAutonomousSystemProfile ¶

func (sm *ServiceManager) CreateAutonomousSystemProfile(description string, cloudBgpAsPattr models.AutonomousSystemProfileAttributes) (*models.AutonomousSystemProfile, error)

func (*ServiceManager) CreateBDDHCPLabel ¶ added in v1.3.27

func (sm *ServiceManager) CreateBDDHCPLabel(name string, bridge_domain string, tenant string, description string, dhcpLblattr models.BDDHCPLabelAttributes) (*models.BDDHCPLabel, error)

func (*ServiceManager) CreateBFDInterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) CreateBFDInterfacePolicy(name string, tenant string, description string, bfdIfPolattr models.BFDInterfacePolicyAttributes) (*models.BFDInterfacePolicy, error)

func (*ServiceManager) CreateBFDInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateBFDInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, bfdIfPattr models.BFDInterfaceProfileAttributes) (*models.BFDInterfaceProfile, error)

func (*ServiceManager) CreateBGPAddressFamilyContextPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateBGPAddressFamilyContextPolicy(name string, tenant string, description string, bgpCtxAfPolattr models.BGPAddressFamilyContextPolicyAttributes) (*models.BGPAddressFamilyContextPolicy, error)

func (*ServiceManager) CreateBGPAddressFamilyContextPolicyRelationship ¶ added in v1.25.0

func (sm *ServiceManager) CreateBGPAddressFamilyContextPolicyRelationship(af string, tnBgpCtxAfPolName string, vrf string, tenant string, fvRsCtxToBgpCtxAfPolAttr models.BGPAddressFamilyContextPolicyRelationshipAttributes) (*models.BGPAddressFamilyContextPolicyRelationship, error)

func (*ServiceManager) CreateBGPPeerPrefixPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateBGPPeerPrefixPolicy(name string, tenant string, description string, bgpPeerPfxPolattr models.BGPPeerPrefixPolicyAttributes) (*models.BGPPeerPrefixPolicy, error)

func (*ServiceManager) CreateBGPTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateBGPTimersPolicy(name string, tenant string, description string, bgpCtxPolattr models.BGPTimersPolicyAttributes) (*models.BGPTimersPolicy, error)

func (*ServiceManager) CreateBgpAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string, description string, bgpAsPattr models.BgpAutonomousSystemProfileAttributes) (*models.BgpAutonomousSystemProfile, error)

func (*ServiceManager) CreateBgpBestPathPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateBgpBestPathPolicy(name string, tenant string, description string, bgpBestPathCtrlPolattr models.BgpBestPathPolicyAttributes) (*models.BgpBestPathPolicy, error)

func (*ServiceManager) CreateBgpPeerConnectivityProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateBgpPeerConnectivityProfile(addr string, logical_node_profile string, l3_outside string, tenant string, description string, bgpPeerPattr models.BgpPeerConnectivityProfileAttributes) (*models.BgpPeerConnectivityProfile, error)

func (*ServiceManager) CreateBgpRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) CreateBgpRouteSummarization(name string, tenant string, description string, bgpRtSummPolattr models.BgpRouteSummarizationAttributes) (*models.BgpRouteSummarization, error)

func (*ServiceManager) CreateBlockUserLoginsPolicy ¶ added in v1.12.31

func (sm *ServiceManager) CreateBlockUserLoginsPolicy(description string, nameAlias string, aaaBlockLoginProfileAttr models.BlockUserLoginsPolicyAttributes) (*models.BlockUserLoginsPolicy, error)

func (*ServiceManager) CreateBridgeDomain ¶

func (sm *ServiceManager) CreateBridgeDomain(name string, tenant string, description string, fvBDattr models.BridgeDomainAttributes) (*models.BridgeDomain, error)

func (*ServiceManager) CreateCDPInterfacePolicy ¶

func (sm *ServiceManager) CreateCDPInterfacePolicy(name string, description string, cdpIfPolattr models.CDPInterfacePolicyAttributes) (*models.CDPInterfacePolicy, error)

func (*ServiceManager) CreateCOOPGroupPolicy ¶ added in v1.12.10

func (sm *ServiceManager) CreateCOOPGroupPolicy(name string, description string, nameAlias string, coopPolAttr models.COOPGroupPolicyAttributes) (*models.COOPGroupPolicy, error)

func (*ServiceManager) CreateCloudAWSProvider ¶

func (sm *ServiceManager) CreateCloudAWSProvider(tenant string, description string, cloudAwsProviderattr models.CloudAWSProviderAttributes) (*models.CloudAWSProvider, error)

func (*ServiceManager) CreateCloudAccount ¶ added in v1.50.0

func (sm *ServiceManager) CreateCloudAccount(vendor string, account_id string, tenant string, nameAlias string, cloudAccountAttr models.CloudAccountAttributes) (*models.CloudAccount, error)

func (*ServiceManager) CreateCloudActiveDirectory ¶ added in v1.50.0

func (sm *ServiceManager) CreateCloudActiveDirectory(active_directory_id string, tenant string, nameAlias string, cloudADAttr models.CloudActiveDirectoryAttributes) (*models.CloudActiveDirectory, error)

func (*ServiceManager) CreateCloudApplicationcontainer ¶

func (sm *ServiceManager) CreateCloudApplicationcontainer(name string, tenant string, description string, cloudAppattr models.CloudApplicationcontainerAttributes) (*models.CloudApplicationcontainer, error)

func (*ServiceManager) CreateCloudAvailabilityZone ¶

func (sm *ServiceManager) CreateCloudAvailabilityZone(name string, cloud_providers_region string, cloud_provider_profile_vendor string, description string, cloudZoneattr models.CloudAvailabilityZoneAttributes) (*models.CloudAvailabilityZone, error)

func (*ServiceManager) CreateCloudCIDRPool ¶

func (sm *ServiceManager) CreateCloudCIDRPool(addr string, cloud_context_profile string, tenant string, description string, cloudCidrattr models.CloudCIDRPoolAttributes) (*models.CloudCIDRPool, error)

func (*ServiceManager) CreateCloudContextProfile ¶

func (sm *ServiceManager) CreateCloudContextProfile(name string, tenant string, description string, cloudCtxProfileattr models.CloudContextProfileAttributes, primaryCidr string, region, vendor string, vrf string) (*models.CloudContextProfile, error)

func (*ServiceManager) CreateCloudCredentials ¶ added in v1.50.0

func (sm *ServiceManager) CreateCloudCredentials(name string, tenant string, nameAlias string, cloudCredentialsAttr models.CloudCredentialsAttributes) (*models.CloudCredentials, error)

func (*ServiceManager) CreateCloudDomainProfile ¶

func (sm *ServiceManager) CreateCloudDomainProfile(description string, cloudDomPattr models.CloudDomainProfileAttributes) (*models.CloudDomainProfile, error)

func (*ServiceManager) CreateCloudEPg ¶

func (sm *ServiceManager) CreateCloudEPg(name string, cloud_application_container string, tenant string, description string, cloudEPgattr models.CloudEPgAttributes) (*models.CloudEPg, error)

func (*ServiceManager) CreateCloudEndpointSelector ¶

func (sm *ServiceManager) CreateCloudEndpointSelector(name string, cloud_epg string, cloud_application_container string, tenant string, description string, cloudEPSelectorattr models.CloudEndpointSelectorAttributes) (*models.CloudEndpointSelector, error)

func (*ServiceManager) CreateCloudEndpointSelectorforExternalEPgs ¶

func (sm *ServiceManager) CreateCloudEndpointSelectorforExternalEPgs(name string, cloud_external_epg string, cloud_application_container string, tenant string, description string, cloudExtEPSelectorattr models.CloudEndpointSelectorforExternalEPgsAttributes) (*models.CloudEndpointSelectorforExternalEPgs, error)

func (*ServiceManager) CreateCloudExternalEPg ¶

func (sm *ServiceManager) CreateCloudExternalEPg(name string, cloud_application_container string, tenant string, description string, cloudExtEPgattr models.CloudExternalEPgAttributes) (*models.CloudExternalEPg, error)

func (*ServiceManager) CreateCloudProviderProfile ¶

func (sm *ServiceManager) CreateCloudProviderProfile(vendor string, description string, cloudProvPattr models.CloudProviderProfileAttributes) (*models.CloudProviderProfile, error)

func (*ServiceManager) CreateCloudProvidersRegion ¶

func (sm *ServiceManager) CreateCloudProvidersRegion(name string, cloud_provider_profile_vendor string, description string, cloudRegionattr models.CloudProvidersRegionAttributes) (*models.CloudProvidersRegion, error)

func (*ServiceManager) CreateCloudSubnet ¶

func (sm *ServiceManager) CreateCloudSubnet(ip string, cloud_cidr_pool_dn string, description string, cloudSubnetattr models.CloudSubnetAttributes, zoneDn string) (*models.CloudSubnet, error)

func (*ServiceManager) CreateCloudTemplateforExternalNetwork ¶ added in v1.53.0

func (sm *ServiceManager) CreateCloudTemplateforExternalNetwork(name string, infra_network_template string, tenant string, nameAlias string, cloudtemplateExtNetworkAttr models.CloudTemplateforExternalNetworkAttributes) (*models.CloudTemplateforExternalNetwork, error)

func (*ServiceManager) CreateCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) CreateCloudVpnGateway(name string, cloudContextProfile string, tenant string, description string, cloudRouterPattr models.CloudVpnGatewayAttributes) (*models.CloudVpnGateway, error)

func (*ServiceManager) CreateConcreteDevice ¶ added in v1.38.0

func (sm *ServiceManager) CreateConcreteDevice(name string, parent_dn string, nameAlias string, vnsCDevAttr models.ConcreteDeviceAttributes) (*models.ConcreteDevice, error)

func (*ServiceManager) CreateConcreteInterface ¶ added in v1.39.0

func (sm *ServiceManager) CreateConcreteInterface(name string, parent_dn string, nameAlias string, vnsCIfAttr models.ConcreteInterfaceAttributes) (*models.ConcreteInterface, error)

func (*ServiceManager) CreateConfigurationExportPolicy ¶

func (sm *ServiceManager) CreateConfigurationExportPolicy(name string, description string, configExportPattr models.ConfigurationExportPolicyAttributes) (*models.ConfigurationExportPolicy, error)

func (*ServiceManager) CreateConfigurationImportPolicy ¶

func (sm *ServiceManager) CreateConfigurationImportPolicy(name string, description string, configImportPattr models.ConfigurationImportPolicyAttributes) (*models.ConfigurationImportPolicy, error)

func (*ServiceManager) CreateConnection ¶ added in v1.3.27

func (sm *ServiceManager) CreateConnection(name string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsConnectionattr models.ConnectionAttributes) (*models.Connection, error)

func (*ServiceManager) CreateConsoleAuthenticationMethod ¶ added in v1.12.14

func (sm *ServiceManager) CreateConsoleAuthenticationMethod(description string, nameAlias string, aaaConsoleAuthAttr models.ConsoleAuthenticationMethodAttributes) (*models.ConsoleAuthenticationMethod, error)

func (*ServiceManager) CreateConsumerTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) CreateConsumerTerminalNode(name string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsTermNodeConattr models.ConsumerTerminalNodeAttributes) (*models.ConsumerTerminalNode, error)

func (*ServiceManager) CreateContract ¶

func (sm *ServiceManager) CreateContract(name string, tenant string, description string, vzBrCPattr models.ContractAttributes) (*models.Contract, error)

func (*ServiceManager) CreateContractConsumer ¶ added in v0.4.1

func (sm *ServiceManager) CreateContractConsumer(tnVzBrCPName string, application_epg string, application_profile string, tenant string, fvRsConsattr models.ContractConsumerAttributes) (*models.ContractConsumer, error)

func (*ServiceManager) CreateContractInterfaceRelationship ¶ added in v1.26.0

func (sm *ServiceManager) CreateContractInterfaceRelationship(tnVzCPIfName string, application_epg string, application_profile string, tenant string, fvRsConsIfAttr models.ContractInterfaceRelationshipAttributes) (*models.ContractInterfaceRelationship, error)

func (*ServiceManager) CreateContractProvider ¶ added in v0.4.1

func (sm *ServiceManager) CreateContractProvider(tnVzBrCPName string, application_epg string, application_profile string, tenant string, fvRsProvattr models.ContractProviderAttributes) (*models.ContractProvider, error)

func (*ServiceManager) CreateContractSubject ¶

func (sm *ServiceManager) CreateContractSubject(name string, contract string, tenant string, description string, vzSubjattr models.ContractSubjectAttributes) (*models.ContractSubject, error)

func (*ServiceManager) CreateCtrlrFwP ¶ added in v0.4.1

func (sm *ServiceManager) CreateCtrlrFwP(description string, firmwareCtrlrFwPAttr models.CtrlrFwPAttributes) (*models.CtrlrFwP, error)

func (*ServiceManager) CreateCtrlrMaintP ¶ added in v0.4.1

func (sm *ServiceManager) CreateCtrlrMaintP(description string, maintCtrlrMaintPAttr models.CtrlrMaintPAttributes) (*models.CtrlrMaintP, error)

func (*ServiceManager) CreateDHCPOption ¶ added in v1.3.27

func (sm *ServiceManager) CreateDHCPOption(name string, dhcp_option_policy string, tenant string, dhcpOptionattr models.DHCPOptionAttributes) (*models.DHCPOption, error)

func (*ServiceManager) CreateDHCPOptionPolicy ¶ added in v1.3.27

func (sm *ServiceManager) CreateDHCPOptionPolicy(name string, tenant string, description string, dhcpOptionPolattr models.DHCPOptionPolicyAttributes) (*models.DHCPOptionPolicy, error)

func (*ServiceManager) CreateDHCPRelayPolicy ¶ added in v1.3.27

func (sm *ServiceManager) CreateDHCPRelayPolicy(name string, tenant string, description string, dhcpRelayPattr models.DHCPRelayPolicyAttributes) (*models.DHCPRelayPolicy, error)

func (*ServiceManager) CreateDefaultAuthenticationMethodforallLogins ¶ added in v1.12.22

func (sm *ServiceManager) CreateDefaultAuthenticationMethodforallLogins(description string, nameAlias string, aaaDefaultAuthAttr models.DefaultAuthenticationMethodforallLoginsAttributes) (*models.DefaultAuthenticationMethodforallLogins, error)

func (*ServiceManager) CreateDefaultRadiusAuthenticationSettings ¶ added in v1.12.16

func (sm *ServiceManager) CreateDefaultRadiusAuthenticationSettings(description string, nameAlias string, aaaPingEpAttr models.DefaultRadiusAuthenticationSettingsAttributes) (*models.DefaultRadiusAuthenticationSettings, error)

func (*ServiceManager) CreateDestinationofredirectedtraffic ¶ added in v0.4.5

func (sm *ServiceManager) CreateDestinationofredirectedtraffic(ip string, service_redirect_policy string, tenant string, description string, vnsRedirectDestattr models.DestinationofredirectedtrafficAttributes) (*models.Destinationofredirectedtraffic, error)

func (*ServiceManager) CreateDownload ¶ added in v0.4.1

func (sm *ServiceManager) CreateDownload(name string, description string, firmwareDownloadAttr models.DownloadAttributes) (*models.Download, error)

func (*ServiceManager) CreateDuoProviderGroup ¶ added in v1.12.16

func (sm *ServiceManager) CreateDuoProviderGroup(name string, description string, nameAlias string, aaaDuoProviderGroupAttr models.DuoProviderGroupAttributes) (*models.DuoProviderGroup, error)

func (*ServiceManager) CreateEPGsUsingFunction ¶ added in v0.4.1

func (sm *ServiceManager) CreateEPGsUsingFunction(tDn string, access_generic string, attachable_access_entity_profile string, description string, infraRsFuncToEpgattr models.EPGsUsingFunctionAttributes) (*models.EPGsUsingFunction, error)

func (*ServiceManager) CreateEPLoopProtectionPolicy ¶ added in v1.12.10

func (sm *ServiceManager) CreateEPLoopProtectionPolicy(name string, description string, nameAlias string, epLoopProtectPAttr models.EPLoopProtectionPolicyAttributes) (*models.EPLoopProtectionPolicy, error)

func (*ServiceManager) CreateEPgDef ¶ added in v1.41.0

func (sm *ServiceManager) CreateEPgDef(name string, parent_dn string, description string, nameAlias string, vnsEPgDefAttr models.EPgDefAttributes) (*models.EPgDef, error)

func (*ServiceManager) CreateEndPointRetentionPolicy ¶

func (sm *ServiceManager) CreateEndPointRetentionPolicy(name string, tenant string, description string, fvEpRetPolattr models.EndPointRetentionPolicyAttributes) (*models.EndPointRetentionPolicy, error)

func (*ServiceManager) CreateEndpointControlPolicy ¶ added in v1.12.9

func (sm *ServiceManager) CreateEndpointControlPolicy(name string, description string, nameAlias string, epControlPAttr models.EndpointControlPolicyAttributes) (*models.EndpointControlPolicy, error)

func (*ServiceManager) CreateEndpointSecurityGroup ¶ added in v1.3.29

func (sm *ServiceManager) CreateEndpointSecurityGroup(name string, application_profile string, tenant string, description string, nameAlias string, fvESgAttr models.EndpointSecurityGroupAttributes) (*models.EndpointSecurityGroup, error)

func (*ServiceManager) CreateEndpointSecurityGroupEPgSelector ¶ added in v1.3.29

func (sm *ServiceManager) CreateEndpointSecurityGroupEPgSelector(matchEpgDn string, endpoint_security_group string, application_profile string, tenant string, description string, nameAlias string, fvEPgSelectorAttr models.EndpointSecurityGroupEPgSelectorAttributes) (*models.EndpointSecurityGroupEPgSelector, error)

func (*ServiceManager) CreateEndpointSecurityGroupSelector ¶ added in v1.3.29

func (sm *ServiceManager) CreateEndpointSecurityGroupSelector(matchExpression string, endpoint_security_group string, application_profile string, tenant string, description string, nameAlias string, fvEPSelectorAttr models.EndpointSecurityGroupSelectorAttributes) (*models.EndpointSecurityGroupSelector, error)

func (*ServiceManager) CreateEndpointSecurityGroupTagSelector ¶ added in v1.3.29

func (sm *ServiceManager) CreateEndpointSecurityGroupTagSelector(matchValue string, matchKey string, endpoint_security_group string, application_profile string, tenant string, description string, nameAlias string, fvTagSelectorAttr models.EndpointSecurityGroupTagSelectorAttributes) (*models.EndpointSecurityGroupTagSelector, error)

func (*ServiceManager) CreateEpReachability ¶ added in v1.43.0

func (sm *ServiceManager) CreateEpReachability(parent_dn string, fvEpReachabilityAttr models.EpReachabilityAttributes) (*models.EpReachability, error)

func (*ServiceManager) CreateErrorDisabledRecoveryEvent ¶ added in v1.12.14

func (sm *ServiceManager) CreateErrorDisabledRecoveryEvent(event string, error_disabled_recovery_policy string, description string, nameAlias string, edrEventPAttr models.ErrorDisabledRecoveryEventAttributes) (*models.ErrorDisabledRecoveryEvent, error)

func (*ServiceManager) CreateErrorDisabledRecoveryPolicy ¶ added in v1.12.14

func (sm *ServiceManager) CreateErrorDisabledRecoveryPolicy(name string, description string, nameAlias string, edrErrDisRecoverPolAttr models.ErrorDisabledRecoveryPolicyAttributes) (*models.ErrorDisabledRecoveryPolicy, error)

func (*ServiceManager) CreateExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateExternalNetworkInstanceProfile(name string, l3_outside string, tenant string, description string, l3extInstPattr models.ExternalNetworkInstanceProfileAttributes) (*models.ExternalNetworkInstanceProfile, error)

func (*ServiceManager) CreateFCDomain ¶

func (sm *ServiceManager) CreateFCDomain(name string, fcDomPattr models.FCDomainAttributes) (*models.FCDomain, error)

func (*ServiceManager) CreateFEXProfile ¶ added in v0.4.9

func (sm *ServiceManager) CreateFEXProfile(name string, description string, infraFexPattr models.FEXProfileAttributes) (*models.FEXProfile, error)

func (*ServiceManager) CreateFVDomain ¶ added in v0.4.1

func (sm *ServiceManager) CreateFVDomain(tDn string, application_epg string, application_profile string, tenant string, description string, fvRsDomAttattr models.FVDomainAttributes) (*models.FVDomain, error)

func (*ServiceManager) CreateFabricNode ¶ added in v0.4.1

func (sm *ServiceManager) CreateFabricNode(tDn string, logical_node_profile string, l3_outside string, tenant string, l3extRsNodeL3OutAttattr models.FabricNodeAttributes) (*models.FabricNode, error)

func (*ServiceManager) CreateFabricNodeControl ¶ added in v1.12.9

func (sm *ServiceManager) CreateFabricNodeControl(name string, description string, nameAlias string, fabricNodeControlAttr models.FabricNodeControlAttributes) (*models.FabricNodeControl, error)

func (*ServiceManager) CreateFabricNodeMember ¶

func (sm *ServiceManager) CreateFabricNodeMember(serial string, description string, fabricNodeIdentPattr models.FabricNodeMemberAttributes) (*models.FabricNodeMember, error)

func (*ServiceManager) CreateFabricPathEndpoint ¶ added in v0.5.11

func (sm *ServiceManager) CreateFabricPathEndpoint(name string, fabric_path_end_point_container_nodeId string, fabric_pod_id string, description string, fabricPathEpattr models.FabricPathEndpointAttributes) (*models.FabricPathEndpoint, error)

func (*ServiceManager) CreateFabricWideSettingsPolicy ¶ added in v1.12.15

func (sm *ServiceManager) CreateFabricWideSettingsPolicy(description string, nameAlias string, infraSetPolAttr models.FabricWideSettingsPolicyAttributes) (*models.FabricWideSettingsPolicy, error)

func (*ServiceManager) CreateFexBundleGroup ¶ added in v0.4.9

func (sm *ServiceManager) CreateFexBundleGroup(name string, fex_profile string, description string, infraFexBndlGrpattr models.FexBundleGroupAttributes) (*models.FexBundleGroup, error)

func (*ServiceManager) CreateFilter ¶

func (sm *ServiceManager) CreateFilter(name string, tenant string, description string, vzFilterattr models.FilterAttributes) (*models.Filter, error)

func (*ServiceManager) CreateFilterEntry ¶

func (sm *ServiceManager) CreateFilterEntry(name string, filter string, tenant string, description string, vzEntryattr models.FilterEntryAttributes) (*models.FilterEntry, error)

func (*ServiceManager) CreateFilterRelationship ¶ added in v1.36.0

func (sm *ServiceManager) CreateFilterRelationship(tnVzFilterName string, parentDn string, vzRsFiltAttAttr models.FilterRelationshipAttributes) (*models.FilterRelationship, error)

func (*ServiceManager) CreateFirmware ¶ added in v0.4.1

func (sm *ServiceManager) CreateFirmware(name string, description string, firmwareFirmwareAttr models.FirmwareAttributes) (*models.Firmware, error)

func (*ServiceManager) CreateFirmwareDownloadTask ¶

func (sm *ServiceManager) CreateFirmwareDownloadTask(name string, description string, firmwareOSourceattr models.FirmwareDownloadTaskAttributes) (*models.FirmwareDownloadTask, error)

func (*ServiceManager) CreateFirmwareGroup ¶

func (sm *ServiceManager) CreateFirmwareGroup(name string, description string, firmwareFwGrpattr models.FirmwareGroupAttributes) (*models.FirmwareGroup, error)

func (*ServiceManager) CreateFirmwarePolicy ¶

func (sm *ServiceManager) CreateFirmwarePolicy(name string, description string, firmwareFwPattr models.FirmwarePolicyAttributes) (*models.FirmwarePolicy, error)

func (*ServiceManager) CreateFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) CreateFunctionConnector(name string, function_node string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsFuncConnattr models.FunctionConnectorAttributes) (*models.FunctionConnector, error)

func (*ServiceManager) CreateFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) CreateFunctionNode(name string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsNodeattr models.FunctionNodeAttributes) (*models.FunctionNode, error)

func (*ServiceManager) CreateHSRPGroupPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateHSRPGroupPolicy(name string, tenant string, description string, hsrpGroupPolattr models.HSRPGroupPolicyAttributes) (*models.HSRPGroupPolicy, error)

func (*ServiceManager) CreateHSRPGroupProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateHSRPGroupProfile(name string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, hsrpGroupPattr models.HSRPGroupProfileAttributes) (*models.HSRPGroupProfile, error)

func (*ServiceManager) CreateHSRPInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateHSRPInterfacePolicy(name string, tenant string, description string, hsrpIfPolattr models.HSRPInterfacePolicyAttributes) (*models.HSRPInterfacePolicy, error)

func (*ServiceManager) CreateIPAgingPolicy ¶ added in v1.12.9

func (sm *ServiceManager) CreateIPAgingPolicy(name string, description string, nameAlias string, epIpAgingPAttr models.IPAgingPolicyAttributes) (*models.IPAgingPolicy, error)

func (*ServiceManager) CreateIPSLAMonitoringPolicy ¶ added in v1.41.0

func (sm *ServiceManager) CreateIPSLAMonitoringPolicy(name string, tenant string, description string, nameAlias string, fvIPSLAMonitoringPolAttr models.IPSLAMonitoringPolicyAttributes) (*models.IPSLAMonitoringPolicy, error)

func (*ServiceManager) CreateISISDomainPolicy ¶ added in v1.12.15

func (sm *ServiceManager) CreateISISDomainPolicy(name string, description string, nameAlias string, isisDomPolAttr models.ISISDomainPolicyAttributes) (*models.ISISDomainPolicy, error)

func (*ServiceManager) CreateISISLevel ¶ added in v1.12.15

func (sm *ServiceManager) CreateISISLevel(isis_level_type string, isis_domain_policy string, description string, nameAlias string, isisLvlCompAttr models.ISISLevelAttributes) (*models.ISISLevel, error)

func (*ServiceManager) CreateImportedContract ¶ added in v0.4.1

func (sm *ServiceManager) CreateImportedContract(name string, tenant string, description string, vzCPIfattr models.ImportedContractAttributes) (*models.ImportedContract, error)

func (*ServiceManager) CreateInBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) CreateInBManagedNodesZone(managed_node_connectivity_group string, description string, nameAlias string, mgmtInBZoneAttr models.InBManagedNodesZoneAttributes) (*models.InBManagedNodesZone, error)

func (*ServiceManager) CreateInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateInBandManagementEPg(name string, management_profile string, tenant string, description string, mgmtInBattr models.InBandManagementEPgAttributes) (*models.InBandManagementEPg, error)

func (*ServiceManager) CreateInTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) CreateInTermSubject(contract_subject string, contract string, tenant string, description string, nameAlias string, vzInTermAttr models.InTermSubjectAttributes) (*models.InTermSubject, error)

func (*ServiceManager) CreateInbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) CreateInbandStaticNode(tDn string, in_band_management_epg string, management_profile string, tenant string, description string, mgmtRsInBStNodeattr models.InbandStaticNodeAttributes) (*models.InbandStaticNode, error)

func (*ServiceManager) CreateInfraRsDomP ¶ added in v1.25.1

func (sm *ServiceManager) CreateInfraRsDomP(tDn string, attachable_access_entity_profile string, infraRsDomPAttr models.InfraRsDomPAttributes) (*models.InfraRsDomP, error)

func (*ServiceManager) CreateInterVRFLeakedRoutesContainer ¶ added in v1.45.0

func (sm *ServiceManager) CreateInterVRFLeakedRoutesContainer(vrf string, tenant string, description string, nameAlias string, leakRoutesAttr models.InterVRFLeakedRoutesContainerAttributes) (*models.InterVRFLeakedRoutesContainer, error)

func (*ServiceManager) CreateInterfaceFCPolicy ¶

func (sm *ServiceManager) CreateInterfaceFCPolicy(name string, description string, fcIfPolattr models.InterfaceFCPolicyAttributes) (*models.InterfaceFCPolicy, error)

func (*ServiceManager) CreateInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) CreateInterfaceProfile(tDn string, spine_profile string, description string, infraRsSpAccPortPattr models.InterfaceProfileAttributes) (*models.InterfaceProfile, error)

func (*ServiceManager) CreateKeypairforSAMLEncryption ¶ added in v1.12.16

func (sm *ServiceManager) CreateKeypairforSAMLEncryption(name string, description string, nameAlias string, aaaSamlEncCertAttr models.KeypairforSAMLEncryptionAttributes) (*models.KeypairforSAMLEncryption, error)

func (*ServiceManager) CreateL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) CreateL2Domain(name string, l2extDomPattr models.L2DomainAttributes) (*models.L2Domain, error)

func (*ServiceManager) CreateL2InterfacePolicy ¶

func (sm *ServiceManager) CreateL2InterfacePolicy(name string, description string, l2IfPolattr models.L2InterfacePolicyAttributes) (*models.L2InterfacePolicy, error)

func (*ServiceManager) CreateL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) CreateL2Outside(name string, tenant string, description string, l2extOutattr models.L2OutsideAttributes) (*models.L2Outside, error)

func (*ServiceManager) CreateL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) CreateL2outExternalEpg(name string, l2_outside string, tenant string, description string, l2extInstPattr models.L2outExternalEpgAttributes) (*models.L2outExternalEpg, error)

func (*ServiceManager) CreateL3DomainProfile ¶

func (sm *ServiceManager) CreateL3DomainProfile(name string, description string, l3extDomPattr models.L3DomainProfileAttributes) (*models.L3DomainProfile, error)

func (*ServiceManager) CreateL3ExtSubnet ¶

func (sm *ServiceManager) CreateL3ExtSubnet(ip string, external_network_instance_profile string, l3_outside string, tenant string, description string, l3extSubnetattr models.L3ExtSubnetAttributes) (*models.L3ExtSubnet, error)

func (*ServiceManager) CreateL3InterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) CreateL3InterfacePolicy(name string, description string, l3IfPolattr models.L3InterfacePolicyAttributes) (*models.L3InterfacePolicy, error)

func (*ServiceManager) CreateL3Outside ¶

func (sm *ServiceManager) CreateL3Outside(name string, tenant string, description string, l3extOutattr models.L3OutsideAttributes) (*models.L3Outside, error)

func (*ServiceManager) CreateL3outBGPProtocolProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outBGPProtocolProfile(logical_node_profile string, l3_outside string, tenant string, nameAlias string, bgpProtPattr models.L3outBGPProtocolProfileAttributes) (*models.L3outBGPProtocolProfile, error)

func (*ServiceManager) CreateL3outBgpExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outBgpExternalPolicy(l3_outside string, tenant string, description string, bgpExtPattr models.L3outBgpExternalPolicyAttributes) (*models.L3outBgpExternalPolicy, error)

func (*ServiceManager) CreateL3outHSRPInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outHSRPInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, hsrpIfPattr models.L3outHSRPInterfaceProfileAttributes) (*models.L3outHSRPInterfaceProfile, error)

func (*ServiceManager) CreateL3outHSRPSecondaryVIP ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outHSRPSecondaryVIP(ip string, hsrp_group_profile string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, hsrpSecVipattr models.L3outHSRPSecondaryVIPAttributes) (*models.L3outHSRPSecondaryVIP, error)

func (*ServiceManager) CreateL3outOspfExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outOspfExternalPolicy(l3_outside string, tenant string, description string, ospfExtPattr models.L3outOspfExternalPolicyAttributes) (*models.L3outOspfExternalPolicy, error)

func (*ServiceManager) CreateL3outPathAttachment ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outPathAttachment(tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extRsPathL3OutAttattr models.L3outPathAttachmentAttributes) (*models.L3outPathAttachment, error)

func (*ServiceManager) CreateL3outPathAttachmentSecondaryIp ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outPathAttachmentSecondaryIp(addr string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extIpattr models.L3outPathAttachmentSecondaryIpAttributes) (*models.L3outPathAttachmentSecondaryIp, error)

func (*ServiceManager) CreateL3outRouteTagPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outRouteTagPolicy(name string, tenant string, description string, l3extRouteTagPolattr models.L3outRouteTagPolicyAttributes) (*models.L3outRouteTagPolicy, error)

func (*ServiceManager) CreateL3outStaticRoute ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outStaticRoute(ip string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string, description string, ipRoutePattr models.L3outStaticRouteAttributes) (*models.L3outStaticRoute, error)

func (*ServiceManager) CreateL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outStaticRouteNextHop(nhAddr string, static_route_ip string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string, description string, ipNexthopPattr models.L3outStaticRouteNextHopAttributes) (*models.L3outStaticRouteNextHop, error)

func (*ServiceManager) CreateL3outVPCMember ¶ added in v1.3.29

func (sm *ServiceManager) CreateL3outVPCMember(side string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extMemberattr models.L3outVPCMemberAttributes) (*models.L3outVPCMember, error)

func (*ServiceManager) CreateL4L7RedirectHealthGroup ¶ added in v1.40.0

func (sm *ServiceManager) CreateL4L7RedirectHealthGroup(name string, tenant string, description string, nameAlias string, vnsRedirectHealthGroupAttr models.L4L7RedirectHealthGroupAttributes) (*models.L4L7RedirectHealthGroup, error)

func (*ServiceManager) CreateL4L7ServiceGraphTemplate ¶ added in v1.3.27

func (sm *ServiceManager) CreateL4L7ServiceGraphTemplate(name string, tenant string, description string, vnsAbsGraphattr models.L4L7ServiceGraphTemplateAttributes) (*models.L4L7ServiceGraphTemplate, error)

func (*ServiceManager) CreateL4ToL7Devices ¶ added in v1.37.0

func (sm *ServiceManager) CreateL4ToL7Devices(name string, tenant string, nameAlias string, vnsLDevVipAttr models.L4ToL7DevicesAttributes) (*models.L4ToL7Devices, error)

func (*ServiceManager) CreateLACPMemberPolicy ¶ added in v1.48.0

func (sm *ServiceManager) CreateLACPMemberPolicy(name string, description string, lacpIfPolAttr models.LACPMemberPolicyAttributes) (*models.LACPMemberPolicy, error)

func (*ServiceManager) CreateLACPPolicy ¶

func (sm *ServiceManager) CreateLACPPolicy(name string, description string, lacpLagPolattr models.LACPPolicyAttributes) (*models.LACPPolicy, error)

func (*ServiceManager) CreateLDAPGroupMap ¶ added in v1.12.26

func (sm *ServiceManager) CreateLDAPGroupMap(name string, description string, nameAlias string, aaaLdapGroupMapAttr models.LDAPGroupMapAttributes) (*models.LDAPGroupMap, error)

func (*ServiceManager) CreateLDAPGroupMapRule ¶ added in v1.12.17

func (sm *ServiceManager) CreateLDAPGroupMapRule(name string, description string, nameAlias string, aaaLdapGroupMapRuleAttr models.LDAPGroupMapRuleAttributes) (*models.LDAPGroupMapRule, error)

func (*ServiceManager) CreateLDAPGroupMapruleref ¶ added in v1.12.19

func (sm *ServiceManager) CreateLDAPGroupMapruleref(name string, ldap_group_map string, description string, nameAlias string, aaaLdapGroupMapRuleRefAttr models.LDAPGroupMaprulerefAttributes) (*models.LDAPGroupMapruleref, error)

func (*ServiceManager) CreateLDAPProvider ¶ added in v1.12.16

func (sm *ServiceManager) CreateLDAPProvider(name string, description string, nameAlias string, aaaLdapProviderAttr models.LDAPProviderAttributes) (*models.LDAPProvider, error)

func (*ServiceManager) CreateLLDPInterfacePolicy ¶

func (sm *ServiceManager) CreateLLDPInterfacePolicy(name string, description string, lldpIfPolattr models.LLDPInterfacePolicyAttributes) (*models.LLDPInterfacePolicy, error)

func (*ServiceManager) CreateLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateLeafAccessPortPolicyGroup(name string, description string, infraAccPortGrpattr models.LeafAccessPortPolicyGroupAttributes) (*models.LeafAccessPortPolicyGroup, error)

func (*ServiceManager) CreateLeafBreakoutPortGroup ¶ added in v1.3.27

func (sm *ServiceManager) CreateLeafBreakoutPortGroup(name string, description string, infraBrkoutPortGrpattr models.LeafBreakoutPortGroupAttributes) (*models.LeafBreakoutPortGroup, error)

func (*ServiceManager) CreateLeafInterfaceProfile ¶

func (sm *ServiceManager) CreateLeafInterfaceProfile(name string, description string, infraAccPortPattr models.LeafInterfaceProfileAttributes) (*models.LeafInterfaceProfile, error)

func (*ServiceManager) CreateLeafProfile ¶

func (sm *ServiceManager) CreateLeafProfile(name string, description string, infraNodePattr models.LeafProfileAttributes) (*models.LeafProfile, error)

func (*ServiceManager) CreateLeakInternalPrefix ¶ added in v1.54.0

func (sm *ServiceManager) CreateLeakInternalPrefix(ip string, vrf string, tenant string, description string, nameAlias string, leakInternalPrefixAttr models.LeakInternalPrefixAttributes) (*models.LeakInternalPrefix, error)

func (*ServiceManager) CreateLeakInternalSubnet ¶ added in v1.44.0

func (sm *ServiceManager) CreateLeakInternalSubnet(ip string, vrf string, tenant string, description string, nameAlias string, leakInternalSubnetAttr models.LeakInternalSubnetAttributes) (*models.LeakInternalSubnet, error)

func (*ServiceManager) CreateLinkLevelPolicy ¶ added in v1.0.8

func (sm *ServiceManager) CreateLinkLevelPolicy(name string, description string, fabricHIfPolattr models.LinkLevelPolicyAttributes) (*models.LinkLevelPolicy, error)

func (*ServiceManager) CreateLocalAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateLocalAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string, description string, bgpLocalAsnPattr models.LocalAutonomousSystemProfileAttributes) (*models.LocalAutonomousSystemProfile, error)

func (*ServiceManager) CreateLocalUser ¶

func (sm *ServiceManager) CreateLocalUser(name string, description string, aaaUserattr models.LocalUserAttributes) (*models.LocalUser, error)

func (*ServiceManager) CreateLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateLogicalDeviceContext(nodeNameOrLbl string, graphNameOrLbl string, ctrctNameOrLbl string, tenant string, description string, vnsLDevCtxattr models.LogicalDeviceContextAttributes) (*models.LogicalDeviceContext, error)

func (*ServiceManager) CreateLogicalInterface ¶ added in v1.37.0

func (sm *ServiceManager) CreateLogicalInterface(name string, parent_dn string, nameAlias string, vnsLIfAttr models.LogicalInterfaceAttributes) (*models.LogicalInterface, error)

func (*ServiceManager) CreateLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateLogicalInterfaceContext(connNameOrLbl string, logicalDeviceContextNodeNameOrLbl string, logicalDeviceContextGraphNameOrLbl string, logical_device_context_ctrctNameOrLbl string, tenant string, description string, vnsLIfCtxattr models.LogicalInterfaceContextAttributes) (*models.LogicalInterfaceContext, error)

func (*ServiceManager) CreateLogicalInterfaceProfile ¶

func (sm *ServiceManager) CreateLogicalInterfaceProfile(name string, logical_node_profile string, l3_outside string, tenant string, description string, l3extLIfPattr models.LogicalInterfaceProfileAttributes) (*models.LogicalInterfaceProfile, error)

func (*ServiceManager) CreateLogicalNodeProfile ¶

func (sm *ServiceManager) CreateLogicalNodeProfile(name string, l3_outside string, tenant string, description string, l3extLNodePattr models.LogicalNodeProfileAttributes) (*models.LogicalNodeProfile, error)

func (*ServiceManager) CreateLoginDomain ¶ added in v1.12.21

func (sm *ServiceManager) CreateLoginDomain(name string, description string, nameAlias string, aaaLoginDomainAttr models.LoginDomainAttributes) (*models.LoginDomain, error)

func (*ServiceManager) CreateLoopBackInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateLoopBackInterfaceProfile(addr string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string, description string, l3extLoopBackIfPattr models.LoopBackInterfaceProfileAttributes) (*models.LoopBackInterfaceProfile, error)

func (*ServiceManager) CreateMaintGrp ¶ added in v0.4.1

func (sm *ServiceManager) CreateMaintGrp(name string, description string, maintMaintGrpAttr models.MaintGrpAttributes) (*models.MaintGrp, error)

START: Variable/Struct/Fuction Naming per ACI SDK Model Definitions

func (*ServiceManager) CreateMaintP ¶ added in v0.4.1

func (sm *ServiceManager) CreateMaintP(name string, description string, maintMaintPAttr models.MaintPAttributes) (*models.MaintP, error)

START: Variable/Struct/Fuction Naming per ACI SDK Model Definitions

func (*ServiceManager) CreateMaintenancePolicy ¶

func (sm *ServiceManager) CreateMaintenancePolicy(name string, description string, maintMaintPattr models.MaintenancePolicyAttributes) (*models.MaintenancePolicy, error)

func (*ServiceManager) CreateManagedNodeConnectivityGroup ¶ added in v1.12.2

func (sm *ServiceManager) CreateManagedNodeConnectivityGroup(name string, description string, mgmtGrpattr models.ManagedNodeConnectivityGroupAttributes) (*models.ManagedNodeConnectivityGroup, error)

func (*ServiceManager) CreateMatchCommunityFactor ¶ added in v1.30.0

func (sm *ServiceManager) CreateMatchCommunityFactor(community string, match_community_term string, match_rule string, tenant string, description string, nameAlias string, rtctrlMatchCommFactorAttr models.MatchCommunityFactorAttributes) (*models.MatchCommunityFactor, error)

func (*ServiceManager) CreateMatchCommunityTerm ¶ added in v1.30.0

func (sm *ServiceManager) CreateMatchCommunityTerm(name string, match_rule string, tenant string, description string, nameAlias string, rtctrlMatchCommTermAttr models.MatchCommunityTermAttributes) (*models.MatchCommunityTerm, error)

func (*ServiceManager) CreateMatchRouteDestinationRule ¶ added in v1.3.29

func (sm *ServiceManager) CreateMatchRouteDestinationRule(ip string, match_rule string, tenant string, description string, nameAlias string, rtctrlMatchRtDestAttr models.MatchRouteDestinationRuleAttributes) (*models.MatchRouteDestinationRule, error)

func (*ServiceManager) CreateMatchRule ¶ added in v1.3.29

func (sm *ServiceManager) CreateMatchRule(name string, tenant string, description string, nameAlias string, rtctrlSubjPAttr models.MatchRuleAttributes) (*models.MatchRule, error)

func (*ServiceManager) CreateMatchRuleBasedonCommunityRegularExpression ¶ added in v1.27.0

func (sm *ServiceManager) CreateMatchRuleBasedonCommunityRegularExpression(commType string, match_rule string, tenant string, description string, nameAlias string, rtctrlMatchCommRegexTermAttr models.MatchRuleBasedonCommunityRegularExpressionAttributes) (*models.MatchRuleBasedonCommunityRegularExpression, error)

func (*ServiceManager) CreateMgmtconnectivitypreference ¶ added in v1.12.9

func (sm *ServiceManager) CreateMgmtconnectivitypreference(description string, nameAlias string, mgmtConnectivityPrefsAttr models.MgmtconnectivitypreferenceAttributes) (*models.Mgmtconnectivitypreference, error)

func (*ServiceManager) CreateMiscablingProtocolInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) CreateMiscablingProtocolInstancePolicy(name string, description string, nameAlias string, mcpInstPolAttr models.MiscablingProtocolInstancePolicyAttributes) (*models.MiscablingProtocolInstancePolicy, error)

func (*ServiceManager) CreateMiscablingProtocolInterfacePolicy ¶

func (sm *ServiceManager) CreateMiscablingProtocolInterfacePolicy(name string, description string, mcpIfPolattr models.MiscablingProtocolInterfacePolicyAttributes) (*models.MiscablingProtocolInterfacePolicy, error)

func (*ServiceManager) CreateMonitoringPolicy ¶

func (sm *ServiceManager) CreateMonitoringPolicy(name string, tenant string, description string, monEPGPolattr models.MonitoringPolicyAttributes) (*models.MonitoringPolicy, error)

func (*ServiceManager) CreateMulticastAddressBlock ¶ added in v1.46.0

func (sm *ServiceManager) CreateMulticastAddressBlock(to string, from string, multicast_address_pool string, description string, fvnsMcastAddrBlkAttr models.MulticastAddressBlockAttributes) (*models.MulticastAddressBlock, error)

func (*ServiceManager) CreateMulticastAddressPool ¶ added in v1.46.0

func (sm *ServiceManager) CreateMulticastAddressPool(name string, description string, fvnsMcastAddrInstPAttr models.MulticastAddressPoolAttributes) (*models.MulticastAddressPool, error)

func (*ServiceManager) CreateNexthopEpPReachability ¶ added in v1.43.0

func (sm *ServiceManager) CreateNexthopEpPReachability(nhAddr string, parent_dn string, description string, nameAlias string, ipNexthopEpPAttr models.NexthopEpPReachabilityAttributes) (*models.NexthopEpPReachability, error)

func (*ServiceManager) CreateNexthopUnchangedAction ¶ added in v1.31.0

func (sm *ServiceManager) CreateNexthopUnchangedAction(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetNhUnchangedAttr models.NexthopUnchangedActionAttributes) (*models.NexthopUnchangedAction, error)

func (*ServiceManager) CreateNlbEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) CreateNlbEndpoint(parent_dn string, description string, nameAlias string, fvEpNlbAttr models.NlbEndpointAttributes) (*models.NlbEndpoint, error)

func (*ServiceManager) CreateNodeBlk ¶ added in v0.4.1

func (sm *ServiceManager) CreateNodeBlk(parentMOType string, parentMOName string, name string, description string, fabricNodeBlkAttr models.NodeBlkAttributes) (*models.NodeBlk, error)

func (*ServiceManager) CreateNodeBlock ¶ added in v0.4.1

func (sm *ServiceManager) CreateNodeBlock(name string, switch_association_type string, switch_association string, leaf_profile string, description string, infraNodeBlkattr models.NodeBlockAttributes) (*models.NodeBlock, error)

func (*ServiceManager) CreateNodeBlockFW ¶

func (sm *ServiceManager) CreateNodeBlockFW(name string, firmware_group string, description string, fabricNodeBlkattr models.NodeBlockAttributesFW) (*models.NodeBlockFW, error)

func (*ServiceManager) CreateNodeBlockMG ¶

func (sm *ServiceManager) CreateNodeBlockMG(name string, pod_maintenance_group string, description string, fabricNodeBlkattr models.NodeBlockAttributesMG) (*models.NodeBlockMG, error)

func (*ServiceManager) CreateNodePolicyEndPoint ¶

func (sm *ServiceManager) CreateNodePolicyEndPoint(node_policy_end_point_id string, vpc_explicit_protection_group string, description string, fabricNodePEpattr models.NodePolicyEndPointAttributes) (*models.NodePolicyEndPoint, error)

func (*ServiceManager) CreateOOBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) CreateOOBManagedNodesZone(managed_node_connectivity_group string, description string, nameAlias string, mgmtOoBZoneAttr models.OOBManagedNodesZoneAttributes) (*models.OOBManagedNodesZone, error)

func (*ServiceManager) CreateOSPFInterfacePolicy ¶

func (sm *ServiceManager) CreateOSPFInterfacePolicy(name string, tenant string, description string, ospfIfPolattr models.OSPFInterfacePolicyAttributes) (*models.OSPFInterfacePolicy, error)

func (*ServiceManager) CreateOSPFInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateOSPFInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, ospfIfPattr models.OSPFInterfaceProfileAttributes) (*models.OSPFInterfaceProfile, error)

func (*ServiceManager) CreateOSPFTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateOSPFTimersPolicy(name string, tenant string, description string, ospfCtxPolattr models.OSPFTimersPolicyAttributes) (*models.OSPFTimersPolicy, error)

func (*ServiceManager) CreateOSource ¶ added in v0.4.1

func (sm *ServiceManager) CreateOSource(name string, description string, firmwareOSourceAttr models.OSourceAttributes) (*models.OSource, error)

START: Variable/Struct/Fuction Naming per ACI SDK Model Definitions

func (*ServiceManager) CreateOspfRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) CreateOspfRouteSummarization(name string, tenant string, description string, ospfRtSummPolattr models.OspfRouteSummarizationAttributes) (*models.OspfRouteSummarization, error)

func (*ServiceManager) CreateOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateOutOfBandManagementEPg(name string, management_profile string, tenant string, description string, mgmtOoBattr models.OutOfBandManagementEPgAttributes) (*models.OutOfBandManagementEPg, error)

func (*ServiceManager) CreateOutTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) CreateOutTermSubject(contract_subject string, contract string, tenant string, description string, nameAlias string, vzOutTermAttr models.OutTermSubjectAttributes) (*models.OutTermSubject, error)

func (*ServiceManager) CreateOutofServiceFabricPath ¶ added in v1.19.0

func (sm *ServiceManager) CreateOutofServiceFabricPath(tDn string, fabricRsOosPathAttr models.OutofServiceFabricPathAttributes) (*models.OutofServiceFabricPath, error)

func (*ServiceManager) CreateOutofbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) CreateOutofbandStaticNode(tDn string, out_of_band_management_epg string, management_profile string, tenant string, description string, mgmtRsOoBStNodeattr models.OutofbandStaticNodeAttributes) (*models.OutofbandStaticNode, error)

func (*ServiceManager) CreateOverridePCVPCPolicyGroup ¶ added in v1.48.0

func (sm *ServiceManager) CreateOverridePCVPCPolicyGroup(name string, leaf_access_bundle_policy_group string, description string, infraAccBndlSubgrpAttr models.OverridePCVPCPolicyGroupAttributes) (*models.OverridePCVPCPolicyGroup, error)

func (*ServiceManager) CreatePCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreatePCVPCInterfacePolicyGroup(name string, description string, infraAccBndlGrpattr models.PCVPCInterfacePolicyGroupAttributes) (*models.PCVPCInterfacePolicyGroup, error)

func (*ServiceManager) CreatePODMaintenanceGroup ¶

func (sm *ServiceManager) CreatePODMaintenanceGroup(name string, description string, maintMaintGrpattr models.PODMaintenanceGroupAttributes) (*models.PODMaintenanceGroup, error)

func (*ServiceManager) CreatePasswordChangeExpirationPolicy ¶ added in v1.12.31

func (sm *ServiceManager) CreatePasswordChangeExpirationPolicy(description string, nameAlias string, aaaPwdProfileAttr models.PasswordChangeExpirationPolicyAttributes) (*models.PasswordChangeExpirationPolicy, error)

func (*ServiceManager) CreatePhysicalDomain ¶

func (sm *ServiceManager) CreatePhysicalDomain(name string, description string, physDomPattr models.PhysicalDomainAttributes) (*models.PhysicalDomain, error)

func (*ServiceManager) CreatePortSecurityPolicy ¶

func (sm *ServiceManager) CreatePortSecurityPolicy(name string, description string, l2PortSecurityPolattr models.PortSecurityPolicyAttributes) (*models.PortSecurityPolicy, error)

func (*ServiceManager) CreatePortTracking ¶ added in v1.12.10

func (sm *ServiceManager) CreatePortTracking(name string, description string, nameAlias string, infraPortTrackPolAttr models.PortTrackingAttributes) (*models.PortTracking, error)

func (*ServiceManager) CreateProviderGroupMember ¶ added in v1.12.30

func (sm *ServiceManager) CreateProviderGroupMember(name string, duo_provider_group string, description string, nameAlias string, aaaProviderRefAttr models.ProviderGroupMemberAttributes) (*models.ProviderGroupMember, error)

func (*ServiceManager) CreateProviderTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) CreateProviderTerminalNode(name string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsTermNodeProvattr models.ProviderTerminalNodeAttributes) (*models.ProviderTerminalNode, error)

func (*ServiceManager) CreatePublicKeyManagement ¶ added in v1.12.31

func (sm *ServiceManager) CreatePublicKeyManagement(description string, nameAlias string, pkiEpAttr models.PublicKeyManagementAttributes) (*models.PublicKeyManagement, error)

func (*ServiceManager) CreateQOSInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) CreateQOSInstancePolicy(name string, description string, nameAlias string, qosInstPolAttr models.QOSInstancePolicyAttributes) (*models.QOSInstancePolicy, error)

func (*ServiceManager) CreateRADIUSProvider ¶ added in v1.12.33

func (sm *ServiceManager) CreateRADIUSProvider(name string, description string, nameAlias string, aaaRadiusProviderAttr models.RADIUSProviderAttributes) (*models.RADIUSProvider, error)

func (*ServiceManager) CreateRADIUSProviderGroup ¶ added in v1.12.17

func (sm *ServiceManager) CreateRADIUSProviderGroup(name string, description string, nameAlias string, aaaRadiusProviderGroupAttr models.RADIUSProviderGroupAttributes) (*models.RADIUSProviderGroup, error)

func (*ServiceManager) CreateRSAProvider ¶ added in v1.12.20

func (sm *ServiceManager) CreateRSAProvider(name string, description string, nameAlias string, aaaRsaProviderAttr models.RSAProviderAttributes) (*models.RSAProvider, error)

func (*ServiceManager) CreateRanges ¶

func (sm *ServiceManager) CreateRanges(to string, _from string, vlan_pool_allocMode string, vlan_pool string, description string, fvnsEncapBlkattr models.RangesAttributes) (*models.Ranges, error)

func (*ServiceManager) CreateRecurringWindow ¶ added in v1.12.4

func (sm *ServiceManager) CreateRecurringWindow(name string, scheduler string, nameAlias string, trigRecurrWindowPAttr models.RecurringWindowAttributes) (*models.RecurringWindow, error)

func (*ServiceManager) CreateRedistributeMultipathAction ¶ added in v1.31.0

func (sm *ServiceManager) CreateRedistributeMultipathAction(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetRedistMultipathAttr models.RedistributeMultipathActionAttributes) (*models.RedistributeMultipathAction, error)

func (*ServiceManager) CreateRelationaaaRsProvToEpp ¶ added in v1.12.16

func (sm *ServiceManager) CreateRelationaaaRsProvToEpp(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationaaaRsSecProvToEpg ¶ added in v1.12.16

func (sm *ServiceManager) CreateRelationaaaRsSecProvToEpg(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationaaaRsToUserEp ¶ added in v1.12.31

func (sm *ServiceManager) CreateRelationaaaRsToUserEp(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationbfdRsIfPolFromInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationbfdRsIfPolFromInterfaceProfile(parentDn, tnBfdIfPolName string) error

func (*ServiceManager) CreateRelationbgpRsBestPathCtrlPol ¶ added in v1.29.0

func (sm *ServiceManager) CreateRelationbgpRsBestPathCtrlPol(parentDn, annotation, tnBgpBestPathCtrlPolName string) error

func (*ServiceManager) CreateRelationbgpRsBgpNodeCtxPolFromL3outBGPProtocolProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationbgpRsBgpNodeCtxPolFromL3outBGPProtocolProfile(parentDn, tnBgpCtxPolName string) error

func (*ServiceManager) CreateRelationbgpRsPeerPfxPolFromBgpPeerConnectivityProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationbgpRsPeerPfxPolFromBgpPeerConnectivityProfile(parentDn, tnBgpPeerPfxPolName string) error

func (*ServiceManager) CreateRelationbgpRsPeerToProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationbgpRsPeerToProfile(parentDn, annotation, direction string, tDn string) error

func (*ServiceManager) CreateRelationcloudRsAD ¶ added in v1.50.0

func (sm *ServiceManager) CreateRelationcloudRsAD(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationcloudRsAccountToAccessPolicy ¶ added in v1.50.0

func (sm *ServiceManager) CreateRelationcloudRsAccountToAccessPolicy(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationcloudRsCloudEPgCtxFromCloudEPg ¶

func (sm *ServiceManager) CreateRelationcloudRsCloudEPgCtxFromCloudEPg(parentDn, tnFvCtxName string) error

func (*ServiceManager) CreateRelationcloudRsCloudEPgCtxFromCloudExternalEPg ¶

func (sm *ServiceManager) CreateRelationcloudRsCloudEPgCtxFromCloudExternalEPg(parentDn, tnFvCtxName string) error

func (*ServiceManager) CreateRelationcloudRsCredentials ¶ added in v1.50.0

func (sm *ServiceManager) CreateRelationcloudRsCredentials(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationcloudRsCtxProfileToRegionFromCloudContextProfile ¶

func (sm *ServiceManager) CreateRelationcloudRsCtxProfileToRegionFromCloudContextProfile(parentDn, tnCloudRegionName string) error

func (*ServiceManager) CreateRelationcloudRsCtxProfileTocloudRsCtxProfileToGatewayRouterP ¶ added in v1.3.12

func (sm *ServiceManager) CreateRelationcloudRsCtxProfileTocloudRsCtxProfileToGatewayRouterP(parentDn, tDN string) error

func (*ServiceManager) CreateRelationcloudRsCtxToFlowLogFromCloudContextProfile ¶

func (sm *ServiceManager) CreateRelationcloudRsCtxToFlowLogFromCloudContextProfile(parentDn, tnCloudAwsFlowLogPolName string) error

func (*ServiceManager) CreateRelationcloudRsSubnetToFlowLogFromCloudSubnet ¶

func (sm *ServiceManager) CreateRelationcloudRsSubnetToFlowLogFromCloudSubnet(parentDn, tnCloudAwsFlowLogPolName string) error

func (*ServiceManager) CreateRelationcloudRsToCtxFromCloudContextProfile ¶

func (sm *ServiceManager) CreateRelationcloudRsToCtxFromCloudContextProfile(parentDn, tnFvCtxName string) error

func (*ServiceManager) CreateRelationcloudRsToDirectConnPolFromCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationcloudRsToDirectConnPolFromCloudVpnGateway(parentDn, tnCloudDirectConnPolName string) error

func (*ServiceManager) CreateRelationcloudRsToHostRouterPolFromCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationcloudRsToHostRouterPolFromCloudVpnGateway(parentDn, tnCloudHostRouterPolName string) error

func (*ServiceManager) CreateRelationcloudRsToVpnGwPolFromCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationcloudRsToVpnGwPolFromCloudVpnGateway(parentDn, tnCloudVpnGwPolName string) error

func (*ServiceManager) CreateRelationcloudRsZoneAttachFromCloudSubnet ¶

func (sm *ServiceManager) CreateRelationcloudRsZoneAttachFromCloudSubnet(parentDn, tnCloudZoneName string) error

func (*ServiceManager) CreateRelationconfigRsExportDestinationFromConfigurationExportPolicy ¶

func (sm *ServiceManager) CreateRelationconfigRsExportDestinationFromConfigurationExportPolicy(parentDn, tnFileRemotePathName string) error

func (*ServiceManager) CreateRelationconfigRsExportSchedulerFromConfigurationExportPolicy ¶

func (sm *ServiceManager) CreateRelationconfigRsExportSchedulerFromConfigurationExportPolicy(parentDn, tnTrigSchedPName string) error

func (*ServiceManager) CreateRelationconfigRsImportSourceFromConfigurationImportPolicy ¶

func (sm *ServiceManager) CreateRelationconfigRsImportSourceFromConfigurationImportPolicy(parentDn, tnFileRemotePathName string) error

func (*ServiceManager) CreateRelationconfigRsRemotePathFromConfigurationExportPolicy ¶

func (sm *ServiceManager) CreateRelationconfigRsRemotePathFromConfigurationExportPolicy(parentDn, tnFileRemotePathName string) error

func (*ServiceManager) CreateRelationconfigRsRemotePathFromConfigurationImportPolicy ¶

func (sm *ServiceManager) CreateRelationconfigRsRemotePathFromConfigurationImportPolicy(parentDn, tnFileRemotePathName string) error

func (*ServiceManager) CreateRelationdhcpRsDhcpOptionPolFromBDDHCPLabel ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationdhcpRsDhcpOptionPolFromBDDHCPLabel(parentDn, tnDhcpOptionPolName string) error

func (*ServiceManager) CreateRelationdhcpRsProvFromDHCPRelayPolicy ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationdhcpRsProvFromDHCPRelayPolicy(parentDn, tDn, addr string) error

func (*ServiceManager) CreateRelationextnwRsOutFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationextnwRsOutFromL2Domain(parentDn, tDn string) error

func (*ServiceManager) CreateRelationextnwRsOutFromL3DomainProfile ¶

func (sm *ServiceManager) CreateRelationextnwRsOutFromL3DomainProfile(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfabricRsToPeerNodeCfgFromNodePolicyEndPoint ¶

func (sm *ServiceManager) CreateRelationfabricRsToPeerNodeCfgFromNodePolicyEndPoint(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfabricRsVpcInstPolFromVPCExplicitProtectionGroup ¶

func (sm *ServiceManager) CreateRelationfabricRsVpcInstPolFromVPCExplicitProtectionGroup(parentDn, tnVpcInstPolName string) error

func (*ServiceManager) CreateRelationfcRsVsanAttrDefFromFCDomain ¶

func (sm *ServiceManager) CreateRelationfcRsVsanAttrDefFromFCDomain(parentDn, tnFcVsanAttrPName string) error

func (*ServiceManager) CreateRelationfcRsVsanAttrFromFCDomain ¶

func (sm *ServiceManager) CreateRelationfcRsVsanAttrFromFCDomain(parentDn, tnFcVsanAttrPName string) error

func (*ServiceManager) CreateRelationfcRsVsanNsDefFromFCDomain ¶

func (sm *ServiceManager) CreateRelationfcRsVsanNsDefFromFCDomain(parentDn, tnFvnsAVsanInstPName string) error

func (*ServiceManager) CreateRelationfcRsVsanNsFromFCDomain ¶

func (sm *ServiceManager) CreateRelationfcRsVsanNsFromFCDomain(parentDn, tnFvnsVsanInstPName string) error

func (*ServiceManager) CreateRelationfileRsARemoteHostToEpg ¶ added in v1.12.5

func (sm *ServiceManager) CreateRelationfileRsARemoteHostToEpg(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationfileRsARemoteHostToEpp ¶ added in v1.12.5

func (sm *ServiceManager) CreateRelationfileRsARemoteHostToEpp(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationfirmwareRsFwgrppFromFirmwareGroup ¶

func (sm *ServiceManager) CreateRelationfirmwareRsFwgrppFromFirmwareGroup(parentDn, tnFirmwareFwPName string) error

func (*ServiceManager) CreateRelationfvRsABDPolMonPolFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsABDPolMonPolFromBridgeDomain(parentDn, tnMonEPGPolName string) error

func (*ServiceManager) CreateRelationfvRsAEPgMonPolFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsAEPgMonPolFromApplicationEPG(parentDn, tnMonEPGPolName string) error

func (*ServiceManager) CreateRelationfvRsApMonPolFromApplicationProfile ¶

func (sm *ServiceManager) CreateRelationfvRsApMonPolFromApplicationProfile(parentDn, tnMonEPGPolName string) error

func (*ServiceManager) CreateRelationfvRsBDSubnetToOutFromSubnet ¶

func (sm *ServiceManager) CreateRelationfvRsBDSubnetToOutFromSubnet(parentDn, tnL3extOutName string) error

func (*ServiceManager) CreateRelationfvRsBDSubnetToProfileFromSubnet ¶

func (sm *ServiceManager) CreateRelationfvRsBDSubnetToProfileFromSubnet(parentDn, tnRtctrlProfileName string) error

func (*ServiceManager) CreateRelationfvRsBDToFhsFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsBDToFhsFromBridgeDomain(parentDn, tnFhsBDPolName string) error

func (*ServiceManager) CreateRelationfvRsBDToNdPFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsBDToNdPFromBridgeDomain(parentDn, tnNdIfPolName string) error

func (*ServiceManager) CreateRelationfvRsBDToNetflowMonitorPolFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsBDToNetflowMonitorPolFromBridgeDomain(parentDn, tnNetflowMonitorPolName, fltType string) error

func (*ServiceManager) CreateRelationfvRsBDToOutFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsBDToOutFromBridgeDomain(parentDn, tnL3extOutName string) error

func (*ServiceManager) CreateRelationfvRsBDToProfileFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsBDToProfileFromBridgeDomain(parentDn, tnRtctrlProfileName string) error

func (*ServiceManager) CreateRelationfvRsBDToRelayPFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsBDToRelayPFromBridgeDomain(parentDn, tnDhcpRelayPName string) error

func (*ServiceManager) CreateRelationfvRsBdFloodToFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsBdFloodToFromBridgeDomain(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsBdFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsBdFromApplicationEPG(parentDn, tnFvBDName string) error

func (*ServiceManager) CreateRelationfvRsBdToEpRetFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsBdToEpRetFromBridgeDomain(parentDn, tnFvEpRetPolName string) error

func (*ServiceManager) CreateRelationfvRsBgpCtxPolFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsBgpCtxPolFromVRF(parentDn, tnBgpCtxPolName string) error

func (*ServiceManager) CreateRelationfvRsCons ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationfvRsCons(parentDn, annotation, prio string, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsConsFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsConsFromApplicationEPG(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsConsFromCloudEPg ¶

func (sm *ServiceManager) CreateRelationfvRsConsFromCloudEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsConsFromCloudExternalEPg ¶

func (sm *ServiceManager) CreateRelationfvRsConsFromCloudExternalEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsConsFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationfvRsConsFromExternalNetworkInstanceProfile(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsConsFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsConsFromInBandManagementEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsConsFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsConsFromL2outExternalEpg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsConsIf ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationfvRsConsIf(parentDn, annotation, prio string, tnVzCPIfName string) error

func (*ServiceManager) CreateRelationfvRsConsIfFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsConsIfFromApplicationEPG(parentDn, tnVzCPIfName string) error

func (*ServiceManager) CreateRelationfvRsConsIfFromCloudEPg ¶

func (sm *ServiceManager) CreateRelationfvRsConsIfFromCloudEPg(parentDn, tnVzCPIfName string) error

func (*ServiceManager) CreateRelationfvRsConsIfFromCloudExternalEPg ¶

func (sm *ServiceManager) CreateRelationfvRsConsIfFromCloudExternalEPg(parentDn, tnVzCPIfName string) error

func (*ServiceManager) CreateRelationfvRsConsIfFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationfvRsConsIfFromExternalNetworkInstanceProfile(parentDn, tnVzCPIfName string) error

func (*ServiceManager) CreateRelationfvRsConsIfFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsConsIfFromInBandManagementEPg(parentDn, tnVzCPIfName string) error

func (*ServiceManager) CreateRelationfvRsConsIfFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsConsIfFromL2outExternalEpg(parentDn, tnVzCPIfName string) error

func (*ServiceManager) CreateRelationfvRsCtxFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsCtxFromBridgeDomain(parentDn, tnFvCtxName string) error

func (*ServiceManager) CreateRelationfvRsCtxMcastToFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsCtxMcastToFromVRF(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsCtxMonPolFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsCtxMonPolFromVRF(parentDn, tnMonEPGPolName string) error

func (*ServiceManager) CreateRelationfvRsCtxToBgpCtxAfPolFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsCtxToBgpCtxAfPolFromVRF(parentDn, tnBgpCtxAfPolName, af string) error

func (*ServiceManager) CreateRelationfvRsCtxToEigrpCtxAfPolFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsCtxToEigrpCtxAfPolFromVRF(parentDn, tnEigrpCtxAfPolName, af string) error

func (*ServiceManager) CreateRelationfvRsCtxToEpRetFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsCtxToEpRetFromVRF(parentDn, tnFvEpRetPolName string) error

func (*ServiceManager) CreateRelationfvRsCtxToExtRouteTagPolFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsCtxToExtRouteTagPolFromVRF(parentDn, tnL3extRouteTagPolName string) error

func (*ServiceManager) CreateRelationfvRsCtxToOspfCtxPolFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsCtxToOspfCtxPolFromVRF(parentDn, tnOspfCtxPolName, af string) error

func (*ServiceManager) CreateRelationfvRsCustQosPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationfvRsCustQosPol(parentDn, annotation, tnQosCustomPolName string) error

func (*ServiceManager) CreateRelationfvRsCustQosPolFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsCustQosPolFromApplicationEPG(parentDn, tnQosCustomPolName string) error

func (*ServiceManager) CreateRelationfvRsCustQosPolFromCloudEPg ¶

func (sm *ServiceManager) CreateRelationfvRsCustQosPolFromCloudEPg(parentDn, tnQosCustomPolName string) error

func (*ServiceManager) CreateRelationfvRsCustQosPolFromCloudExternalEPg ¶

func (sm *ServiceManager) CreateRelationfvRsCustQosPolFromCloudExternalEPg(parentDn, tnQosCustomPolName string) error

func (*ServiceManager) CreateRelationfvRsCustQosPolFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationfvRsCustQosPolFromExternalNetworkInstanceProfile(parentDn, tnQosCustomPolName string) error

func (*ServiceManager) CreateRelationfvRsCustQosPolFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsCustQosPolFromInBandManagementEPg(parentDn, tnQosCustomPolName string) error

func (*ServiceManager) CreateRelationfvRsCustQosPolFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsCustQosPolFromL2outExternalEpg(parentDn, tnQosCustomPolName string) error

func (*ServiceManager) CreateRelationfvRsDomAttFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsDomAttFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsDppPolFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsDppPolFromApplicationEPG(parentDn, tnQosDppPolName string) error

func (*ServiceManager) CreateRelationfvRsFcPathAttFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsFcPathAttFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsGraphDefFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsGraphDefFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsIgmpsnFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsIgmpsnFromBridgeDomain(parentDn, tnIgmpSnoopPolName string) error

func (*ServiceManager) CreateRelationfvRsIntraEpg ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationfvRsIntraEpg(parentDn, annotation, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsIntraEpgFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsIntraEpgFromApplicationEPG(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsIntraEpgFromCloudEPg ¶

func (sm *ServiceManager) CreateRelationfvRsIntraEpgFromCloudEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsIntraEpgFromCloudExternalEPg ¶

func (sm *ServiceManager) CreateRelationfvRsIntraEpgFromCloudExternalEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsIntraEpgFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationfvRsIntraEpgFromExternalNetworkInstanceProfile(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsIntraEpgFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsIntraEpgFromInBandManagementEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsIntraEpgFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsIntraEpgFromL2outExternalEpg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsMatchEPg ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationfvRsMatchEPg(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationfvRsMldsnFromBridgeDomain ¶

func (sm *ServiceManager) CreateRelationfvRsMldsnFromBridgeDomain(parentDn, tnMldSnoopPolName string) error

func (*ServiceManager) CreateRelationfvRsNdPfxPolFromSubnet ¶

func (sm *ServiceManager) CreateRelationfvRsNdPfxPolFromSubnet(parentDn, tnNdPfxPolName string) error

func (*ServiceManager) CreateRelationfvRsNodeAttFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsNodeAttFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsOspfCtxPolFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsOspfCtxPolFromVRF(parentDn, tnOspfCtxPolName string) error

func (*ServiceManager) CreateRelationfvRsPathAttFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsPathAttFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsProtBy ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationfvRsProtBy(parentDn, annotation, tnVzTabooName string) error

func (*ServiceManager) CreateRelationfvRsProtByFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsProtByFromApplicationEPG(parentDn, tnVzTabooName string) error

func (*ServiceManager) CreateRelationfvRsProtByFromCloudEPg ¶

func (sm *ServiceManager) CreateRelationfvRsProtByFromCloudEPg(parentDn, tnVzTabooName string) error

func (*ServiceManager) CreateRelationfvRsProtByFromCloudExternalEPg ¶

func (sm *ServiceManager) CreateRelationfvRsProtByFromCloudExternalEPg(parentDn, tnVzTabooName string) error

func (*ServiceManager) CreateRelationfvRsProtByFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationfvRsProtByFromExternalNetworkInstanceProfile(parentDn, tnVzTabooName string) error

func (*ServiceManager) CreateRelationfvRsProtByFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsProtByFromInBandManagementEPg(parentDn, tnVzTabooName string) error

func (*ServiceManager) CreateRelationfvRsProtByFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsProtByFromL2outExternalEpg(parentDn, tnVzTabooName string) error

func (*ServiceManager) CreateRelationfvRsProv ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationfvRsProv(parentDn, annotation, matchT string, prio string, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsProvDefFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsProvDefFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsProvFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsProvFromApplicationEPG(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsProvFromCloudEPg ¶

func (sm *ServiceManager) CreateRelationfvRsProvFromCloudEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsProvFromCloudExternalEPg ¶

func (sm *ServiceManager) CreateRelationfvRsProvFromCloudExternalEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsProvFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationfvRsProvFromExternalNetworkInstanceProfile(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsProvFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsProvFromInBandManagementEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsProvFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsProvFromL2outExternalEpg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationfvRsScope ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationfvRsScope(parentDn, annotation, tnFvCtxName string) error

func (*ServiceManager) CreateRelationfvRsSecInherited ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationfvRsSecInherited(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationfvRsSecInheritedFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsSecInheritedFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsSecInheritedFromCloudEPg ¶

func (sm *ServiceManager) CreateRelationfvRsSecInheritedFromCloudEPg(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsSecInheritedFromCloudExternalEPg ¶

func (sm *ServiceManager) CreateRelationfvRsSecInheritedFromCloudExternalEPg(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsSecInheritedFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationfvRsSecInheritedFromExternalNetworkInstanceProfile(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsSecInheritedFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsSecInheritedFromInBandManagementEPg(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsSecInheritedFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationfvRsSecInheritedFromL2outExternalEpg(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsTenantMonPolFromTenant ¶

func (sm *ServiceManager) CreateRelationfvRsTenantMonPolFromTenant(parentDn, tnMonEPGPolName string) error

func (*ServiceManager) CreateRelationfvRsTnDenyRuleFromTenant ¶

func (sm *ServiceManager) CreateRelationfvRsTnDenyRuleFromTenant(parentDn, tDn string) error

func (*ServiceManager) CreateRelationfvRsTrustCtrlFromApplicationEPG ¶

func (sm *ServiceManager) CreateRelationfvRsTrustCtrlFromApplicationEPG(parentDn, tnFhsTrustCtrlPolName string) error

func (*ServiceManager) CreateRelationfvRsVmmVSwitchEnhancedLagPol ¶ added in v1.35.0

func (sm *ServiceManager) CreateRelationfvRsVmmVSwitchEnhancedLagPol(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationfvRsVrfValidationPolFromVRF ¶

func (sm *ServiceManager) CreateRelationfvRsVrfValidationPolFromVRF(parentDn, tnL3extVrfValidationPolName string) error

func (*ServiceManager) CreateRelationhsrpRsGroupPolFromHSRPGroupProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationhsrpRsGroupPolFromHSRPGroupProfile(parentDn, tnHsrpGroupPolName string) error

func (*ServiceManager) CreateRelationhsrpRsIfPolFromL3outHSRPInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationhsrpRsIfPolFromL3outHSRPInterfaceProfile(parentDn, tnHsrpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsAccBaseGrpFromAccessPortSelector ¶

func (sm *ServiceManager) CreateRelationinfraRsAccBaseGrpFromAccessPortSelector(parentDn, tnInfraAccBaseGrpName string) error

func (*ServiceManager) CreateRelationinfraRsAccBndlGrpToAggrIfFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsAccBndlGrpToAggrIfFromPCVPCInterfacePolicyGroup(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsAccBndlSubgrpFromAccessPortBlock ¶

func (sm *ServiceManager) CreateRelationinfraRsAccBndlSubgrpFromAccessPortBlock(parentDn, tnInfraAccBndlSubgrpName string) error

func (*ServiceManager) CreateRelationinfraRsAccCardPFromLeafProfile ¶

func (sm *ServiceManager) CreateRelationinfraRsAccCardPFromLeafProfile(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsAccNodePGrpFromSwitchAssociation ¶

func (sm *ServiceManager) CreateRelationinfraRsAccNodePGrpFromSwitchAssociation(parentDn, tnInfraAccNodePGrpName string) error

func (*ServiceManager) CreateRelationinfraRsAccPortPFromLeafProfile ¶

func (sm *ServiceManager) CreateRelationinfraRsAccPortPFromLeafProfile(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsAttEntPFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsAttEntPFromLeafAccessPortPolicyGroup(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsAttEntPFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsAttEntPFromPCVPCInterfacePolicyGroup(parentDn, tnInfraAttEntityPName string) error

func (*ServiceManager) CreateRelationinfraRsAttEntPFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) CreateRelationinfraRsAttEntPFromSpineAccessPortPolicyGroup(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsBfdIpv4InstPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsBfdIpv4InstPol(parentDn, annotation, tnBfdIpv4InstPolName string) error

func (*ServiceManager) CreateRelationinfraRsBfdIpv6InstPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsBfdIpv6InstPol(parentDn, annotation, tnBfdIpv6InstPolName string) error

func (*ServiceManager) CreateRelationinfraRsBfdMhIpv4InstPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsBfdMhIpv4InstPol(parentDn, annotation, tnBfdMhIpv4InstPolName string) error

func (*ServiceManager) CreateRelationinfraRsBfdMhIpv6InstPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsBfdMhIpv6InstPol(parentDn, annotation, tnBfdMhIpv6InstPolName string) error

func (*ServiceManager) CreateRelationinfraRsCdpIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsCdpIfPolFromLeafAccessPortPolicyGroup(parentDn, tnCdpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsCdpIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsCdpIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnCdpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsCdpIfPolFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) CreateRelationinfraRsCdpIfPolFromSpineAccessPortPolicyGroup(parentDn, tnCdpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsCoppIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsCoppIfPolFromLeafAccessPortPolicyGroup(parentDn, tnCoppIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsCoppIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsCoppIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnCoppIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsCoppIfPolFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) CreateRelationinfraRsCoppIfPolFromSpineAccessPortPolicyGroup(parentDn, tnCoppIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsDomPFromAttachableAccessEntityProfile ¶

func (sm *ServiceManager) CreateRelationinfraRsDomPFromAttachableAccessEntityProfile(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromFCDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromFCDomain(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromL2Domain(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromL3DomainProfile ¶

func (sm *ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromL3DomainProfile(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromPhysicalDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromPhysicalDomain(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsDomVxlanNsDefFromVMMDomain(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsDwdmIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsDwdmIfPolFromLeafAccessPortPolicyGroup(parentDn, tnDwdmIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsEquipmentFlashConfigPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsEquipmentFlashConfigPol(parentDn, annotation, tnEquipmentFlashConfigPolName string) error

func (*ServiceManager) CreateRelationinfraRsFcFabricPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsFcFabricPol(parentDn, annotation, tnFcFabricPolName string) error

func (*ServiceManager) CreateRelationinfraRsFcIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsFcIfPolFromLeafAccessPortPolicyGroup(parentDn, tnFcIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsFcIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsFcIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnFcIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsFcInstPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsFcInstPol(parentDn, annotation, tnFcInstPolName string) error

func (*ServiceManager) CreateRelationinfraRsFexBndlGrpToAggrIfFromFexBundleGroup ¶ added in v0.4.9

func (sm *ServiceManager) CreateRelationinfraRsFexBndlGrpToAggrIfFromFexBundleGroup(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsFuncToEpgFromAccessGeneric ¶ added in v0.4.4

func (sm *ServiceManager) CreateRelationinfraRsFuncToEpgFromAccessGeneric(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsFuncToEpgFromVlanEncapsulationforVxlanTraffic ¶

func (sm *ServiceManager) CreateRelationinfraRsFuncToEpgFromVlanEncapsulationforVxlanTraffic(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsHIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsHIfPolFromLeafAccessPortPolicyGroup(parentDn, tnFabricHIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsHIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsHIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnFabricHIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsHIfPolFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) CreateRelationinfraRsHIfPolFromSpineAccessPortPolicyGroup(parentDn, tnFabricHIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsIaclLeafProfile ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsIaclLeafProfile(parentDn, annotation, tnIaclLeafProfileName string) error

func (*ServiceManager) CreateRelationinfraRsIaclSpineProfile ¶ added in v1.12.3

func (sm *ServiceManager) CreateRelationinfraRsIaclSpineProfile(parentDn, annotation, tnIaclSpineProfileName string) error

func (*ServiceManager) CreateRelationinfraRsL2IfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsL2IfPolFromLeafAccessPortPolicyGroup(parentDn, tnL2IfPolName string) error

func (*ServiceManager) CreateRelationinfraRsL2IfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsL2IfPolFromPCVPCInterfacePolicyGroup(parentDn, tnL2IfPolName string) error

func (*ServiceManager) CreateRelationinfraRsL2InstPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsL2InstPolFromLeafAccessPortPolicyGroup(parentDn, tnL2InstPolName string) error

func (*ServiceManager) CreateRelationinfraRsL2InstPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsL2InstPolFromPCVPCInterfacePolicyGroup(parentDn, tnL2InstPolName string) error

func (*ServiceManager) CreateRelationinfraRsL2NodeAuthPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsL2NodeAuthPol(parentDn, annotation, tnL2NodeAuthPolName string) error

func (*ServiceManager) CreateRelationinfraRsL2PortAuthPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsL2PortAuthPolFromLeafAccessPortPolicyGroup(parentDn, tnL2PortAuthPolName string) error

func (*ServiceManager) CreateRelationinfraRsL2PortAuthPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsL2PortAuthPolFromPCVPCInterfacePolicyGroup(parentDn, tnL2PortAuthPolName string) error

func (*ServiceManager) CreateRelationinfraRsL2PortSecurityPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsL2PortSecurityPolFromLeafAccessPortPolicyGroup(parentDn, tnL2PortSecurityPolName string) error

func (*ServiceManager) CreateRelationinfraRsL2PortSecurityPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsL2PortSecurityPolFromPCVPCInterfacePolicyGroup(parentDn, tnL2PortSecurityPolName string) error

func (*ServiceManager) CreateRelationinfraRsLacpIfPol ¶ added in v1.48.0

func (sm *ServiceManager) CreateRelationinfraRsLacpIfPol(parentDn, annotation, tnLacpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsLacpInterfacePol ¶ added in v1.48.0

func (sm *ServiceManager) CreateRelationinfraRsLacpInterfacePol(parentDn, annotation, tnLacpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsLacpPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsLacpPolFromPCVPCInterfacePolicyGroup(parentDn, tnLacpLagPolName string) error

func (*ServiceManager) CreateRelationinfraRsLeafCoppProfile ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsLeafCoppProfile(parentDn, annotation, tnCoppLeafProfileName string) error

func (*ServiceManager) CreateRelationinfraRsLeafPGrpToCdpIfPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsLeafPGrpToCdpIfPol(parentDn, annotation, tnCdpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsLeafPGrpToLldpIfPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsLeafPGrpToLldpIfPol(parentDn, annotation, tnLldpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsLldpIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsLldpIfPolFromLeafAccessPortPolicyGroup(parentDn, tnLldpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsLldpIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsLldpIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnLldpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsMacsecIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsMacsecIfPolFromLeafAccessPortPolicyGroup(parentDn, tnMacsecIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsMacsecIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsMacsecIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnMacsecIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsMacsecIfPolFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) CreateRelationinfraRsMacsecIfPolFromSpineAccessPortPolicyGroup(parentDn, tnMacsecIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsMcpIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsMcpIfPolFromLeafAccessPortPolicyGroup(parentDn, tnMcpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsMcpIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsMcpIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnMcpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsMonBrkoutInfraPolFromLeafBreakoutPortGroup ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationinfraRsMonBrkoutInfraPolFromLeafBreakoutPortGroup(parentDn, tnMonInfraPolName string) error

func (*ServiceManager) CreateRelationinfraRsMonFexInfraPolFromFexBundleGroup ¶ added in v0.4.9

func (sm *ServiceManager) CreateRelationinfraRsMonFexInfraPolFromFexBundleGroup(parentDn, tnMonInfraPolName string) error

func (*ServiceManager) CreateRelationinfraRsMonIfInfraPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsMonIfInfraPolFromLeafAccessPortPolicyGroup(parentDn, tnMonInfraPolName string) error

func (*ServiceManager) CreateRelationinfraRsMonIfInfraPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsMonIfInfraPolFromPCVPCInterfacePolicyGroup(parentDn, tnMonInfraPolName string) error

func (*ServiceManager) CreateRelationinfraRsMonNodeInfraPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsMonNodeInfraPol(parentDn, annotation, tnMonInfraPolName string) error

func (*ServiceManager) CreateRelationinfraRsMstInstPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsMstInstPol(parentDn, annotation, tnStpInstPolName string) error

func (*ServiceManager) CreateRelationinfraRsNetflowMonitorPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsNetflowMonitorPolFromLeafAccessPortPolicyGroup(parentDn, tnNetflowMonitorPolName, fltType string) error

func (*ServiceManager) CreateRelationinfraRsNetflowMonitorPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsNetflowMonitorPolFromPCVPCInterfacePolicyGroup(parentDn, tnNetflowMonitorPolName, fltType string) error

func (*ServiceManager) CreateRelationinfraRsNetflowNodePol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsNetflowNodePol(parentDn, annotation, tnNetflowNodePolName string) error

func (*ServiceManager) CreateRelationinfraRsPoeIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsPoeIfPolFromLeafAccessPortPolicyGroup(parentDn, tnPoeIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsPoeInstPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsPoeInstPol(parentDn, annotation, tnPoeInstPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosDppIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosDppIfPolFromLeafAccessPortPolicyGroup(parentDn, tnQosDppPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosDppIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosDppIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnQosDppPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosEgressDppIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosEgressDppIfPolFromLeafAccessPortPolicyGroup(parentDn, tnQosDppPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosEgressDppIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosEgressDppIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnQosDppPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosIngressDppIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosIngressDppIfPolFromLeafAccessPortPolicyGroup(parentDn, tnQosDppPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosIngressDppIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosIngressDppIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnQosDppPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosPfcIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosPfcIfPolFromLeafAccessPortPolicyGroup(parentDn, tnQosPfcIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosPfcIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosPfcIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnQosPfcIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosSdIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosSdIfPolFromLeafAccessPortPolicyGroup(parentDn, tnQosSdIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsQosSdIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsQosSdIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnQosSdIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsSpAccGrp ¶ added in v1.21.1

func (sm *ServiceManager) CreateRelationinfraRsSpAccGrp(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationinfraRsSpAccPortPFromSpineProfile ¶ added in v0.4.18

func (sm *ServiceManager) CreateRelationinfraRsSpAccPortPFromSpineProfile(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsSpanVDestGrpFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsSpanVDestGrpFromLeafAccessPortPolicyGroup(parentDn, tnSpanVDestGrpName string) error

func (*ServiceManager) CreateRelationinfraRsSpanVDestGrpFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsSpanVDestGrpFromPCVPCInterfacePolicyGroup(parentDn, tnSpanVDestGrpName string) error

func (*ServiceManager) CreateRelationinfraRsSpanVSrcGrpFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsSpanVSrcGrpFromLeafAccessPortPolicyGroup(parentDn, tnSpanVSrcGrpName string) error

func (*ServiceManager) CreateRelationinfraRsSpanVSrcGrpFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsSpanVSrcGrpFromPCVPCInterfacePolicyGroup(parentDn, tnSpanVSrcGrpName string) error

func (*ServiceManager) CreateRelationinfraRsSpineAccNodePGrpFromSwitchAssociation ¶ added in v0.4.18

func (sm *ServiceManager) CreateRelationinfraRsSpineAccNodePGrpFromSwitchAssociation(parentDn, tDn string) error

func (*ServiceManager) CreateRelationinfraRsSpineBfdIpv4InstPol ¶ added in v1.12.3

func (sm *ServiceManager) CreateRelationinfraRsSpineBfdIpv4InstPol(parentDn, annotation, tnBfdIpv4InstPolName string) error

func (*ServiceManager) CreateRelationinfraRsSpineBfdIpv6InstPol ¶ added in v1.12.3

func (sm *ServiceManager) CreateRelationinfraRsSpineBfdIpv6InstPol(parentDn, annotation, tnBfdIpv6InstPolName string) error

func (*ServiceManager) CreateRelationinfraRsSpineCoppProfile ¶ added in v1.12.3

func (sm *ServiceManager) CreateRelationinfraRsSpineCoppProfile(parentDn, annotation, tnCoppSpineProfileName string) error

func (*ServiceManager) CreateRelationinfraRsSpinePGrpToCdpIfPol ¶ added in v1.12.3

func (sm *ServiceManager) CreateRelationinfraRsSpinePGrpToCdpIfPol(parentDn, annotation, tnCdpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsSpinePGrpToLldpIfPol ¶ added in v1.12.3

func (sm *ServiceManager) CreateRelationinfraRsSpinePGrpToLldpIfPol(parentDn, annotation, tnLldpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsStormctrlIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsStormctrlIfPolFromLeafAccessPortPolicyGroup(parentDn, tnStormctrlIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsStormctrlIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsStormctrlIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnStormctrlIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsStpIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsStpIfPolFromLeafAccessPortPolicyGroup(parentDn, tnStpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsStpIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) CreateRelationinfraRsStpIfPolFromPCVPCInterfacePolicyGroup(parentDn, tnStpIfPolName string) error

func (*ServiceManager) CreateRelationinfraRsTopoctrlFastLinkFailoverInstPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsTopoctrlFastLinkFailoverInstPol(parentDn, annotation, tnTopoctrlFastLinkFailoverInstPolName string) error

func (*ServiceManager) CreateRelationinfraRsTopoctrlFwdScaleProfPol ¶ added in v1.12.2

func (sm *ServiceManager) CreateRelationinfraRsTopoctrlFwdScaleProfPol(parentDn, annotation, tnTopoctrlFwdScaleProfilePolName string) error

func (*ServiceManager) CreateRelationinfraRsVipAddrNsFromFCDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsVipAddrNsFromFCDomain(parentDn, tnFvnsAddrInstName string) error

func (*ServiceManager) CreateRelationinfraRsVipAddrNsFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationinfraRsVipAddrNsFromL2Domain(parentDn, tnFvnsAddrInstName string) error

func (*ServiceManager) CreateRelationinfraRsVipAddrNsFromL3DomainProfile ¶

func (sm *ServiceManager) CreateRelationinfraRsVipAddrNsFromL3DomainProfile(parentDn, tnFvnsAddrInstName string) error

func (*ServiceManager) CreateRelationinfraRsVipAddrNsFromPhysicalDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsVipAddrNsFromPhysicalDomain(parentDn, tnFvnsAddrInstName string) error

func (*ServiceManager) CreateRelationinfraRsVipAddrNsFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsVipAddrNsFromVMMDomain(parentDn, tnFvnsAddrInstName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsDefFromFCDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsVlanNsDefFromFCDomain(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsDefFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationinfraRsVlanNsDefFromL2Domain(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsDefFromL3DomainProfile ¶

func (sm *ServiceManager) CreateRelationinfraRsVlanNsDefFromL3DomainProfile(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsDefFromPhysicalDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsVlanNsDefFromPhysicalDomain(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsDefFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsVlanNsDefFromVMMDomain(parentDn, tnFvnsAInstPName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsFromFCDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsVlanNsFromFCDomain(parentDn, tnFvnsVlanInstPName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationinfraRsVlanNsFromL2Domain(parentDn, tnFvnsVlanInstPName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsFromL3DomainProfile ¶

func (sm *ServiceManager) CreateRelationinfraRsVlanNsFromL3DomainProfile(parentDn, tnFvnsVlanInstPName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsFromPhysicalDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsVlanNsFromPhysicalDomain(parentDn, tnFvnsVlanInstPName string) error

func (*ServiceManager) CreateRelationinfraRsVlanNsFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationinfraRsVlanNsFromVMMDomain(parentDn, tnFvnsVlanInstPName string) error

func (*ServiceManager) CreateRelationipRsNHTrackMemberFromL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationipRsNHTrackMemberFromL3outStaticRouteNextHop(parentDn, tDn string) error

func (*ServiceManager) CreateRelationipRsNexthopRouteTrackFromL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationipRsNexthopRouteTrackFromL3outStaticRouteNextHop(parentDn, tDn string) error

func (*ServiceManager) CreateRelationipRsRouteTrackFromL3outStaticRoute ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationipRsRouteTrackFromL3outStaticRoute(parentDn, tDn string) error

func (*ServiceManager) CreateRelationl2extRsEBdFromL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationl2extRsEBdFromL2Outside(parentDn, tnFvBDName string) error

func (*ServiceManager) CreateRelationl2extRsL2DomAttFromL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationl2extRsL2DomAttFromL2Outside(parentDn, tDn string) error

func (*ServiceManager) CreateRelationl2extRsL2InstPToDomPFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationl2extRsL2InstPToDomPFromL2outExternalEpg(parentDn, tnL2extDomPName string) error

func (*ServiceManager) CreateRelationl3extRsArpIfPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsArpIfPolFromLogicalInterfaceProfile(parentDn, tnArpIfPolName string) error

func (*ServiceManager) CreateRelationl3extRsDampeningPolFromL3Outside ¶

func (sm *ServiceManager) CreateRelationl3extRsDampeningPolFromL3Outside(parentDn, tnRtctrlProfileName, af string) error

func (*ServiceManager) CreateRelationl3extRsDynPathAttFromLogicalInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationl3extRsDynPathAttFromLogicalInterfaceProfile(parentDn, tDn, addr, forgedTransmit, macChange, promMode string) error

func (*ServiceManager) CreateRelationl3extRsEctxFromL3Outside ¶

func (sm *ServiceManager) CreateRelationl3extRsEctxFromL3Outside(parentDn, tnFvCtxName string) error

func (*ServiceManager) CreateRelationl3extRsEgressQosDppPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsEgressQosDppPolFromLogicalInterfaceProfile(parentDn, tnQosDppPolName string) error

func (*ServiceManager) CreateRelationl3extRsIngressQosDppPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsIngressQosDppPolFromLogicalInterfaceProfile(parentDn, tnQosDppPolName string) error

func (*ServiceManager) CreateRelationl3extRsInstPToNatMappingEPgFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsInstPToNatMappingEPgFromExternalNetworkInstanceProfile(parentDn, tnFvAEPgName string) error

func (*ServiceManager) CreateRelationl3extRsInstPToProfileFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsInstPToProfileFromExternalNetworkInstanceProfile(parentDn, tnRtctrlProfileName, direction string) error

func (*ServiceManager) CreateRelationl3extRsInterleakPolFromL3Outside ¶

func (sm *ServiceManager) CreateRelationl3extRsInterleakPolFromL3Outside(parentDn, tnRtctrlProfileName string) error

func (*ServiceManager) CreateRelationl3extRsL3DomAttFromL3Outside ¶

func (sm *ServiceManager) CreateRelationl3extRsL3DomAttFromL3Outside(parentDn, tnExtnwDomPName string) error

func (*ServiceManager) CreateRelationl3extRsL3InstPToDomPFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsL3InstPToDomPFromExternalNetworkInstanceProfile(parentDn, tnExtnwDomPName string) error

func (*ServiceManager) CreateRelationl3extRsLIfPCustQosPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsLIfPCustQosPolFromLogicalInterfaceProfile(parentDn, tnQosCustomPolName string) error

func (*ServiceManager) CreateRelationl3extRsLIfPToNetflowMonitorPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsLIfPToNetflowMonitorPolFromLogicalInterfaceProfile(parentDn, tnNetflowMonitorPolName, fltType string) error

func (*ServiceManager) CreateRelationl3extRsNdIfPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsNdIfPolFromLogicalInterfaceProfile(parentDn, tnNdIfPolName string) error

func (*ServiceManager) CreateRelationl3extRsNodeL3OutAttFromLogicalNodeProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsNodeL3OutAttFromLogicalNodeProfile(parentDn, tDn string) error

func (*ServiceManager) CreateRelationl3extRsOutToBDPublicSubnetHolderFromL3Outside ¶

func (sm *ServiceManager) CreateRelationl3extRsOutToBDPublicSubnetHolderFromL3Outside(parentDn, tDn string) error

func (*ServiceManager) CreateRelationl3extRsPathL3OutAttFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) CreateRelationl3extRsPathL3OutAttFromLogicalInterfaceProfile(parentDn, tDn string) error

func (*ServiceManager) CreateRelationl3extRsSubnetToProfileFromL3ExtSubnet ¶

func (sm *ServiceManager) CreateRelationl3extRsSubnetToProfileFromL3ExtSubnet(parentDn, tnRtctrlProfileName, direction string) error

func (*ServiceManager) CreateRelationl3extRsSubnetToRtSummFromL3ExtSubnet ¶

func (sm *ServiceManager) CreateRelationl3extRsSubnetToRtSummFromL3ExtSubnet(parentDn, tnRtsumARtSummPolName string) error

func (*ServiceManager) CreateRelationmaintRsMgrppFromMaintGrp ¶ added in v0.4.1

func (sm *ServiceManager) CreateRelationmaintRsMgrppFromMaintGrp(parentDn, tnMaintMaintPName string) error

func (*ServiceManager) CreateRelationmaintRsMgrppFromPODMaintenanceGroup ¶

func (sm *ServiceManager) CreateRelationmaintRsMgrppFromPODMaintenanceGroup(parentDn, tnMaintMaintPName string) error

func (*ServiceManager) CreateRelationmaintRsPolNotifFromMaintenancePolicy ¶

func (sm *ServiceManager) CreateRelationmaintRsPolNotifFromMaintenancePolicy(parentDn, tnMaintUserNotifName string) error

func (*ServiceManager) CreateRelationmaintRsPolSchedulerFromMaintP ¶ added in v0.4.1

func (sm *ServiceManager) CreateRelationmaintRsPolSchedulerFromMaintP(parentDn, tnTrigSchedPName string) error

func (*ServiceManager) CreateRelationmaintRsPolSchedulerFromMaintenancePolicy ¶

func (sm *ServiceManager) CreateRelationmaintRsPolSchedulerFromMaintenancePolicy(parentDn, tnTrigSchedPName string) error

func (*ServiceManager) CreateRelationmgmtRsAddrInst ¶ added in v1.12.7

func (sm *ServiceManager) CreateRelationmgmtRsAddrInst(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationmgmtRsAddrInstFrommgmtInBZone ¶ added in v1.12.7

func (sm *ServiceManager) CreateRelationmgmtRsAddrInstFrommgmtInBZone(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationmgmtRsInB ¶ added in v1.12.7

func (sm *ServiceManager) CreateRelationmgmtRsInB(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationmgmtRsInBStNodeFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationmgmtRsInBStNodeFromInBandManagementEPg(parentDn, tDn string) error

func (*ServiceManager) CreateRelationmgmtRsInbEpg ¶ added in v1.12.7

func (sm *ServiceManager) CreateRelationmgmtRsInbEpg(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationmgmtRsMgmtBDFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationmgmtRsMgmtBDFromInBandManagementEPg(parentDn, tnFvBDName string) error

func (*ServiceManager) CreateRelationmgmtRsOoB ¶ added in v1.12.7

func (sm *ServiceManager) CreateRelationmgmtRsOoB(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationmgmtRsOoBCtxFromOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationmgmtRsOoBCtxFromOutOfBandManagementEPg(parentDn, tnFvCtxName string) error

func (*ServiceManager) CreateRelationmgmtRsOoBProvFromOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationmgmtRsOoBProvFromOutOfBandManagementEPg(parentDn, tnVzOOBBrCPName string) error

func (*ServiceManager) CreateRelationmgmtRsOoBStNodeFromOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationmgmtRsOoBStNodeFromOutOfBandManagementEPg(parentDn, tDn string) error

func (*ServiceManager) CreateRelationmgmtRsOobEpg ¶ added in v1.12.7

func (sm *ServiceManager) CreateRelationmgmtRsOobEpg(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationospfRsIfPolFromInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationospfRsIfPolFromInterfaceProfile(parentDn, tnOspfIfPolName string) error

func (*ServiceManager) CreateRelationrtctrlRsCtxPToSubjP ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationrtctrlRsCtxPToSubjP(parentDn, annotation, tnRtctrlSubjPName string) error

func (*ServiceManager) CreateRelationrtctrlRsScopeToAttrP ¶ added in v1.17.0

func (sm *ServiceManager) CreateRelationrtctrlRsScopeToAttrP(parentDn, annotation, tnRtctrlAttrPName string) error

func (*ServiceManager) CreateRelationspanRsSrcGrpToFilterGrpFromSPANSourceGroup ¶

func (sm *ServiceManager) CreateRelationspanRsSrcGrpToFilterGrpFromSPANSourceGroup(parentDn, tnSpanFilterGrpName string) error

func (*ServiceManager) CreateRelationtacacsRsDestGroup ¶ added in v1.12.34

func (sm *ServiceManager) CreateRelationtacacsRsDestGroup(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationtrigRsTriggerableFromConfigurationExportPolicy ¶

func (sm *ServiceManager) CreateRelationtrigRsTriggerableFromConfigurationExportPolicy(parentDn, tnTrigTriggerableName string) error

func (*ServiceManager) CreateRelationtrigRsTriggerableFromConfigurationImportPolicy ¶

func (sm *ServiceManager) CreateRelationtrigRsTriggerableFromConfigurationImportPolicy(parentDn, tnTrigTriggerableName string) error

func (*ServiceManager) CreateRelationtrigRsTriggerableFromMaintenancePolicy ¶

func (sm *ServiceManager) CreateRelationtrigRsTriggerableFromMaintenancePolicy(parentDn, tnTrigTriggerableName string) error

func (*ServiceManager) CreateRelationvmmRsAcc ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsAcc(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsCtrlrPMonPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsCtrlrPMonPol(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsDefaultCdpIfPolFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationvmmRsDefaultCdpIfPolFromVMMDomain(parentDn, tnCdpIfPolName string) error

func (*ServiceManager) CreateRelationvmmRsDefaultFwPolFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationvmmRsDefaultFwPolFromVMMDomain(parentDn, tnNwsFwPolName string) error

func (*ServiceManager) CreateRelationvmmRsDefaultL2InstPolFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationvmmRsDefaultL2InstPolFromVMMDomain(parentDn, tnL2InstPolName string) error

func (*ServiceManager) CreateRelationvmmRsDefaultLacpLagPolFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationvmmRsDefaultLacpLagPolFromVMMDomain(parentDn, tnLacpLagPolName string) error

func (*ServiceManager) CreateRelationvmmRsDefaultLldpIfPolFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationvmmRsDefaultLldpIfPolFromVMMDomain(parentDn, tnLldpIfPolName string) error

func (*ServiceManager) CreateRelationvmmRsDefaultStpIfPolFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationvmmRsDefaultStpIfPolFromVMMDomain(parentDn, tnStpIfPolName string) error

func (*ServiceManager) CreateRelationvmmRsDomMcastAddrNsFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationvmmRsDomMcastAddrNsFromVMMDomain(parentDn, tnFvnsMcastAddrInstPName string) error

func (*ServiceManager) CreateRelationvmmRsMcastAddrNs ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsMcastAddrNs(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsMgmtEPg ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsMgmtEPg(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsPrefEnhancedLagPolFromVMMDomain ¶

func (sm *ServiceManager) CreateRelationvmmRsPrefEnhancedLagPolFromVMMDomain(parentDn, tnLacpEnhancedLagPolName string) error

func (*ServiceManager) CreateRelationvmmRsToExtDevMgr ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsToExtDevMgr(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVmmCtrlrP ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVmmCtrlrP(parentDn, annotation, epgDeplPref string, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVswitchExporterPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVswitchExporterPol(parentDn, annotation, activeFlowTimeOut string, idleFlowTimeOut string, samplingRate string, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVswitchOverrideCdpIfPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVswitchOverrideCdpIfPol(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVswitchOverrideFwPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVswitchOverrideFwPol(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVswitchOverrideLacpPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVswitchOverrideLacpPol(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVswitchOverrideLldpIfPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVswitchOverrideLldpIfPol(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVswitchOverrideMcpIfPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVswitchOverrideMcpIfPol(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVswitchOverrideMtuPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVswitchOverrideMtuPol(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVswitchOverrideStpPol ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVswitchOverrideStpPol(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVxlanNs ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVxlanNs(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvmmRsVxlanNsDef ¶ added in v1.3.29

func (sm *ServiceManager) CreateRelationvmmRsVxlanNsDef(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvnsRsALDevToDomP ¶ added in v1.37.0

func (sm *ServiceManager) CreateRelationvnsRsALDevToDomP(parentDn, annotation, switchingMode string, tDn string) error

func (*ServiceManager) CreateRelationvnsRsALDevToPhysDomP ¶ added in v1.37.0

func (sm *ServiceManager) CreateRelationvnsRsALDevToPhysDomP(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvnsRsAbsConnectionConnsFromConnection ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsAbsConnectionConnsFromConnection(parentDn, tDn string) error

func (*ServiceManager) CreateRelationvnsRsAbsCopyConnectionFromConnection ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsAbsCopyConnectionFromConnection(parentDn, tDn string) error

func (*ServiceManager) CreateRelationvnsRsCDevToCtrlrP ¶ added in v1.38.0

func (sm *ServiceManager) CreateRelationvnsRsCDevToCtrlrP(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvnsRsCIfAttN ¶ added in v1.37.0

func (sm *ServiceManager) CreateRelationvnsRsCIfAttN(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvnsRsCIfPathAtt ¶ added in v1.39.0

func (sm *ServiceManager) CreateRelationvnsRsCIfPathAtt(parentDn, tDn string) error

func (*ServiceManager) CreateRelationvnsRsConnToAConnFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsConnToAConnFromFunctionConnector(parentDn, tnVnsAConnName string) error

func (*ServiceManager) CreateRelationvnsRsConnToCtxTermFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsConnToCtxTermFromFunctionConnector(parentDn, tnVnsATermName string) error

func (*ServiceManager) CreateRelationvnsRsConnToFltFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsConnToFltFromFunctionConnector(parentDn, tnVzAFilterableName string) error

func (*ServiceManager) CreateRelationvnsRsDefaultScopeToTermFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsDefaultScopeToTermFromFunctionNode(parentDn, tnVnsATermName string) error

func (*ServiceManager) CreateRelationvnsRsEPgDefToConn ¶ added in v1.41.0

func (sm *ServiceManager) CreateRelationvnsRsEPgDefToConn(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvnsRsEPgDefToLIf ¶ added in v1.41.0

func (sm *ServiceManager) CreateRelationvnsRsEPgDefToLIf(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvnsRsEPpInfoAtt ¶ added in v1.41.0

func (sm *ServiceManager) CreateRelationvnsRsEPpInfoAtt(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvnsRsIPSLAMonitoringPolFromServiceRedirectPolicy ¶ added in v0.4.5

func (sm *ServiceManager) CreateRelationvnsRsIPSLAMonitoringPolFromServiceRedirectPolicy(parentDn, tnFvIPSLAMonitoringPolName string) error

func (*ServiceManager) CreateRelationvnsRsLDevCtxToLDevFromLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLDevCtxToLDevFromLogicalDeviceContext(parentDn, tnVnsALDevIfName string) error

func (*ServiceManager) CreateRelationvnsRsLDevCtxToRtrCfgFromLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLDevCtxToRtrCfgFromLogicalDeviceContext(parentDn, tnVnsRtrCfgName string) error

func (*ServiceManager) CreateRelationvnsRsLIfCtxToBDFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLIfCtxToBDFromLogicalInterfaceContext(parentDn, tnFvBDName string) error

func (*ServiceManager) CreateRelationvnsRsLIfCtxToCustQosPolFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLIfCtxToCustQosPolFromLogicalInterfaceContext(parentDn, tnQosCustomPolName string) error

func (*ServiceManager) CreateRelationvnsRsLIfCtxToInstPFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLIfCtxToInstPFromLogicalInterfaceContext(parentDn, tnFvEPgName string) error

func (*ServiceManager) CreateRelationvnsRsLIfCtxToLIfFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLIfCtxToLIfFromLogicalInterfaceContext(parentDn, tnVnsALDevLIfName string) error

func (*ServiceManager) CreateRelationvnsRsLIfCtxToOutDefFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLIfCtxToOutDefFromLogicalInterfaceContext(parentDn, tnL3extOutDefName string) error

func (*ServiceManager) CreateRelationvnsRsLIfCtxToOutFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLIfCtxToOutFromLogicalInterfaceContext(parentDn, tnL3extOutName string) error

func (*ServiceManager) CreateRelationvnsRsLIfCtxToSvcEPgPolFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLIfCtxToSvcEPgPolFromLogicalInterfaceContext(parentDn, tnVnsSvcEPgPolName string) error

func (*ServiceManager) CreateRelationvnsRsLIfCtxToSvcRedirectPolFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsLIfCtxToSvcRedirectPolFromLogicalInterfaceContext(parentDn, tnVnsSvcRedirectPolName string) error

func (*ServiceManager) CreateRelationvnsRsMConnAttFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsMConnAttFromFunctionConnector(parentDn, tnVnsMConnName string) error

func (*ServiceManager) CreateRelationvnsRsNodeToAbsFuncProfFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsNodeToAbsFuncProfFromFunctionNode(parentDn, tnVnsAbsFuncProfName string) error

func (*ServiceManager) CreateRelationvnsRsNodeToCloudLDevFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsNodeToCloudLDevFromFunctionNode(parentDn, tnCloudALDevName string) error

func (*ServiceManager) CreateRelationvnsRsNodeToLDevFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsNodeToLDevFromFunctionNode(parentDn, tnVnsALDevIfName string) error

func (*ServiceManager) CreateRelationvnsRsNodeToMFuncFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) CreateRelationvnsRsNodeToMFuncFromFunctionNode(parentDn, tnVnsMFuncName string) error

func (*ServiceManager) CreateRelationvnsRsRedirectHealthGroupFromDestinationofredirectedtraffic ¶ added in v0.4.5

func (sm *ServiceManager) CreateRelationvnsRsRedirectHealthGroupFromDestinationofredirectedtraffic(parentDn, tnVnsRedirectHealthGroupName string) error

func (*ServiceManager) CreateRelationvnsRsSEPpInfoAtt ¶ added in v1.41.0

func (sm *ServiceManager) CreateRelationvnsRsSEPpInfoAtt(parentDn, annotation, tDn string) error

func (*ServiceManager) CreateRelationvzRsAnyToConsFromAny ¶

func (sm *ServiceManager) CreateRelationvzRsAnyToConsFromAny(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationvzRsAnyToConsIfFromAny ¶

func (sm *ServiceManager) CreateRelationvzRsAnyToConsIfFromAny(parentDn, tnVzCPIfName string) error

func (*ServiceManager) CreateRelationvzRsAnyToProvFromAny ¶

func (sm *ServiceManager) CreateRelationvzRsAnyToProvFromAny(parentDn, tnVzBrCPName string) error

func (*ServiceManager) CreateRelationvzRsFiltGraphAttFromFilter ¶

func (sm *ServiceManager) CreateRelationvzRsFiltGraphAttFromFilter(parentDn, tnVnsInTermName string) error

func (*ServiceManager) CreateRelationvzRsFwdRFltPAttFromFilter ¶

func (sm *ServiceManager) CreateRelationvzRsFwdRFltPAttFromFilter(parentDn, tnVzAFilterableUnitName string) error

func (*ServiceManager) CreateRelationvzRsGraphAttFromContract ¶

func (sm *ServiceManager) CreateRelationvzRsGraphAttFromContract(parentDn, tnVnsAbsGraphName string) error

func (*ServiceManager) CreateRelationvzRsIfFromImportedContract ¶ added in v0.4.1

func (sm *ServiceManager) CreateRelationvzRsIfFromImportedContract(parentDn, tnVzACtrctName string) error

func (*ServiceManager) CreateRelationvzRsInTermGraphAtt ¶ added in v1.34.0

func (sm *ServiceManager) CreateRelationvzRsInTermGraphAtt(parentDn, annotation, tnVnsAbsGraphName string) error

func (*ServiceManager) CreateRelationvzRsOutTermGraphAtt ¶ added in v1.34.0

func (sm *ServiceManager) CreateRelationvzRsOutTermGraphAtt(parentDn, annotation, tnVnsAbsGraphName string) error

func (*ServiceManager) CreateRelationvzRsRevRFltPAttFromFilter ¶

func (sm *ServiceManager) CreateRelationvzRsRevRFltPAttFromFilter(parentDn, tnVzAFilterableUnitName string) error

func (*ServiceManager) CreateRelationvzRsSdwanPolFromContractSubject ¶

func (sm *ServiceManager) CreateRelationvzRsSdwanPolFromContractSubject(parentDn, tnExtdevSDWanSlaPolName string) error

func (*ServiceManager) CreateRelationvzRsSubjFiltAttFromContractSubject ¶

func (sm *ServiceManager) CreateRelationvzRsSubjFiltAttFromContractSubject(parentDn, tnVzFilterName string) error

func (*ServiceManager) CreateRelationvzRsSubjGraphAttFromContractSubject ¶

func (sm *ServiceManager) CreateRelationvzRsSubjGraphAttFromContractSubject(parentDn, tnVnsAbsGraphName string) error

func (*ServiceManager) CreateRemotePathofaFile ¶ added in v1.12.5

func (sm *ServiceManager) CreateRemotePathofaFile(name string, description string, nameAlias string, fileRemotePathAttr models.RemotePathofaFileAttributes) (*models.RemotePathofaFile, error)

func (*ServiceManager) CreateRouteContextScope ¶ added in v1.17.0

func (sm *ServiceManager) CreateRouteContextScope(route_control_context string, route_control_profile string, tenant string, description string, nameAlias string, rtctrlScopeAttr models.RouteContextScopeAttributes) (*models.RouteContextScope, error)

func (*ServiceManager) CreateRouteControlContext ¶ added in v1.3.29

func (sm *ServiceManager) CreateRouteControlContext(name string, route_control_profile string, tenant string, l3_outside string, description string, nameAlias string, rtctrlCtxPAttr models.RouteControlContextAttributes) (*models.RouteControlContext, error)

func (*ServiceManager) CreateRouteControlProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateRouteControlProfile(name string, tenant string, description string, rtctrlProfileattr models.RouteControlProfileAttributes) (*models.RouteControlProfile, error)

func (*ServiceManager) CreateRtctrlSetAddComm ¶ added in v1.31.0

func (sm *ServiceManager) CreateRtctrlSetAddComm(community string, action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetAddCommAttr models.RtctrlSetAddCommAttributes) (*models.RtctrlSetAddComm, error)

func (*ServiceManager) CreateRtctrlSetComm ¶ added in v1.31.0

func (sm *ServiceManager) CreateRtctrlSetComm(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetCommAttr models.RtctrlSetCommAttributes) (*models.RtctrlSetComm, error)

func (*ServiceManager) CreateRtctrlSetDamp ¶ added in v1.31.0

func (sm *ServiceManager) CreateRtctrlSetDamp(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetDampAttr models.RtctrlSetDampAttributes) (*models.RtctrlSetDamp, error)

func (*ServiceManager) CreateRtctrlSetNh ¶ added in v1.31.0

func (sm *ServiceManager) CreateRtctrlSetNh(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetNhAttr models.RtctrlSetNhAttributes) (*models.RtctrlSetNh, error)

func (*ServiceManager) CreateRtctrlSetPref ¶ added in v1.28.0

func (sm *ServiceManager) CreateRtctrlSetPref(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetPrefAttr models.RtctrlSetPrefAttributes) (*models.RtctrlSetPref, error)

func (*ServiceManager) CreateRtctrlSetRtMetric ¶ added in v1.31.0

func (sm *ServiceManager) CreateRtctrlSetRtMetric(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetRtMetricAttr models.RtctrlSetRtMetricAttributes) (*models.RtctrlSetRtMetric, error)

func (*ServiceManager) CreateRtctrlSetRtMetricType ¶ added in v1.31.0

func (sm *ServiceManager) CreateRtctrlSetRtMetricType(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetRtMetricTypeAttr models.RtctrlSetRtMetricTypeAttributes) (*models.RtctrlSetRtMetricType, error)

func (*ServiceManager) CreateRtctrlSetTag ¶ added in v1.31.0

func (sm *ServiceManager) CreateRtctrlSetTag(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetTagAttr models.RtctrlSetTagAttributes) (*models.RtctrlSetTag, error)

func (*ServiceManager) CreateRtctrlSetWeight ¶ added in v1.31.0

func (sm *ServiceManager) CreateRtctrlSetWeight(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetWeightAttr models.RtctrlSetWeightAttributes) (*models.RtctrlSetWeight, error)

func (*ServiceManager) CreateSAMLProvider ¶ added in v1.12.20

func (sm *ServiceManager) CreateSAMLProvider(name string, description string, nameAlias string, aaaSamlProviderAttr models.SAMLProviderAttributes) (*models.SAMLProvider, error)

func (*ServiceManager) CreateSAMLProviderGroup ¶ added in v1.12.25

func (sm *ServiceManager) CreateSAMLProviderGroup(name string, description string, nameAlias string, aaaSamlProviderGroupAttr models.SAMLProviderGroupAttributes) (*models.SAMLProviderGroup, error)

func (*ServiceManager) CreateSNMPCommunity ¶ added in v1.12.6

func (sm *ServiceManager) CreateSNMPCommunity(name string, parent_dn string, description string, nameAlias string, snmpCommunityPAttr models.SNMPCommunityAttributes) (*models.SNMPCommunity, error)

func (*ServiceManager) CreateSNMPContextProfile ¶ added in v1.12.8

func (sm *ServiceManager) CreateSNMPContextProfile(vrf string, tenant string, nameAlias string, snmpCtxPAttr models.SNMPContextProfileAttributes) (*models.SNMPContextProfile, error)

func (*ServiceManager) CreateSPANDestinationGroup ¶

func (sm *ServiceManager) CreateSPANDestinationGroup(name string, tenant string, description string, spanDestGrpattr models.SPANDestinationGroupAttributes) (*models.SPANDestinationGroup, error)

func (*ServiceManager) CreateSPANSourceGroup ¶

func (sm *ServiceManager) CreateSPANSourceGroup(name string, tenant string, description string, spanSrcGrpattr models.SPANSourceGroupAttributes) (*models.SPANSourceGroup, error)

func (*ServiceManager) CreateSPANSourcedestinationGroupMatchLabel ¶

func (sm *ServiceManager) CreateSPANSourcedestinationGroupMatchLabel(name string, span_source_group string, tenant string, description string, spanSpanLblattr models.SPANSourcedestinationGroupMatchLabelAttributes) (*models.SPANSourcedestinationGroupMatchLabel, error)

func (*ServiceManager) CreateSchedP ¶ added in v0.4.1

func (sm *ServiceManager) CreateSchedP(name string, description string, trigSchedPAttr models.SchedPAttributes) (*models.SchedP, error)

START: Variable/Struct/Fuction Naming per ACI SDK Model Definitions

func (*ServiceManager) CreateSecurityDomain ¶ added in v1.3.9

func (sm *ServiceManager) CreateSecurityDomain(name string, description string, aaaDomainattr models.SecurityDomainAttributes) (*models.SecurityDomain, error)

func (*ServiceManager) CreateServiceRedirectPolicy ¶ added in v0.4.5

func (sm *ServiceManager) CreateServiceRedirectPolicy(name string, tenant string, description string, vnsSvcRedirectPolattr models.ServiceRedirectPolicyAttributes) (*models.ServiceRedirectPolicy, error)

func (*ServiceManager) CreateSetASPath ¶ added in v1.31.0

func (sm *ServiceManager) CreateSetASPath(criteria string, action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetASPathAttr models.SetASPathAttributes) (*models.SetASPath, error)

func (*ServiceManager) CreateSpanningTreeInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateSpanningTreeInterfacePolicy(name string, description string, nameAlias string, stpIfPolAttr models.SpanningTreeInterfacePolicyAttributes) (*models.SpanningTreeInterfacePolicy, error)

func (*ServiceManager) CreateSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) CreateSpineAccessPortPolicyGroup(name string, description string, infraSpAccPortGrpattr models.SpineAccessPortPolicyGroupAttributes) (*models.SpineAccessPortPolicyGroup, error)

func (*ServiceManager) CreateSpineAccessPortSelector ¶ added in v1.21.1

func (sm *ServiceManager) CreateSpineAccessPortSelector(spine_access_port_selector_type string, name string, spine_interface_profile string, description string, nameAlias string, infraSHPortSAttr models.SpineAccessPortSelectorAttributes) (*models.SpineAccessPortSelector, error)

func (*ServiceManager) CreateSpineInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) CreateSpineInterfaceProfile(name string, description string, infraSpAccPortPattr models.SpineInterfaceProfileAttributes) (*models.SpineInterfaceProfile, error)

func (*ServiceManager) CreateSpineProfile ¶ added in v0.4.18

func (sm *ServiceManager) CreateSpineProfile(name string, description string, infraSpinePattr models.SpineProfileAttributes) (*models.SpineProfile, error)

func (*ServiceManager) CreateSpineSwitchPolicyGroup ¶ added in v1.12.3

func (sm *ServiceManager) CreateSpineSwitchPolicyGroup(name string, description string, nameAlias string, infraSpineAccNodePGrpAttr models.SpineSwitchPolicyGroupAttributes) (*models.SpineSwitchPolicyGroup, error)

func (*ServiceManager) CreateStaticPath ¶ added in v0.4.1

func (sm *ServiceManager) CreateStaticPath(tDn string, application_epg string, application_profile string, tenant string, description string, fvRsPathAttattr models.StaticPathAttributes) (*models.StaticPath, error)

func (*ServiceManager) CreateSubjectFilter ¶ added in v1.32.0

func (sm *ServiceManager) CreateSubjectFilter(tnVzFilterName string, contract_subject string, contract string, tenant string, vzRsSubjFiltAttAttr models.SubjectFilterAttributes) (*models.SubjectFilter, error)

func (*ServiceManager) CreateSubnet ¶

func (sm *ServiceManager) CreateSubnet(ip string, bridge_domain string, tenant string, description string, fvSubnetattr models.SubnetAttributes) (*models.Subnet, error)

func (*ServiceManager) CreateSwitchAssociation ¶

func (sm *ServiceManager) CreateSwitchAssociation(switch_association_type string, name string, leaf_profile string, description string, infraLeafSattr models.SwitchAssociationAttributes) (*models.SwitchAssociation, error)

func (*ServiceManager) CreateSwitchSpineAssociation ¶ added in v0.4.18

func (sm *ServiceManager) CreateSwitchSpineAssociation(switch_association_type string, name string, spine_profile string, description string, infraSpineSattr models.SwitchSpineAssociationAttributes) (*models.SwitchSpineAssociation, error)

func (*ServiceManager) CreateTACACSDestination ¶ added in v1.12.18

func (sm *ServiceManager) CreateTACACSDestination(port string, host string, tacacs_monitoring_destination_group string, description string, nameAlias string, tacacsTacacsDestAttr models.TACACSDestinationAttributes) (*models.TACACSDestination, error)

func (*ServiceManager) CreateTACACSMonitoringDestinationGroup ¶ added in v1.12.17

func (sm *ServiceManager) CreateTACACSMonitoringDestinationGroup(name string, description string, nameAlias string, tacacsGroupAttr models.TACACSMonitoringDestinationGroupAttributes) (*models.TACACSMonitoringDestinationGroup, error)

func (*ServiceManager) CreateTACACSPlusProviderGroup ¶ added in v1.12.22

func (sm *ServiceManager) CreateTACACSPlusProviderGroup(name string, description string, nameAlias string, aaaTacacsPlusProviderGroupAttr models.TACACSPlusProviderGroupAttributes) (*models.TACACSPlusProviderGroup, error)

func (*ServiceManager) CreateTACACSProvider ¶ added in v1.12.25

func (sm *ServiceManager) CreateTACACSProvider(name string, description string, nameAlias string, aaaTacacsPlusProviderAttr models.TACACSProviderAttributes) (*models.TACACSProvider, error)

func (*ServiceManager) CreateTACACSSource ¶ added in v1.12.34

func (sm *ServiceManager) CreateTACACSSource(name string, monitoring_target_scope string, monitoring_policy string, tenant string, description string, nameAlias string, tacacsSrcAttr models.TACACSSourceAttributes) (*models.TACACSSource, error)

func (*ServiceManager) CreateTabooContract ¶

func (sm *ServiceManager) CreateTabooContract(name string, tenant string, description string, vzTabooattr models.TabooContractAttributes) (*models.TabooContract, error)

func (*ServiceManager) CreateTag ¶ added in v1.19.0

func (sm *ServiceManager) CreateTag(key string, parentDn string, tagTagAttr models.TagAttributes) (*models.Tag, error)

func (*ServiceManager) CreateTenant ¶

func (sm *ServiceManager) CreateTenant(name string, description string, fvTenantattr models.TenantAttributes) (*models.Tenant, error)

func (*ServiceManager) CreateTenantToCloudAccountAssociation ¶ added in v1.50.0

func (sm *ServiceManager) CreateTenantToCloudAccountAssociation(tenant string, nameAlias string, fvRsCloudAccountAttr models.TenantToCloudAccountAssociationAttributes) (*models.TenantToCloudAccountAssociation, error)

func (*ServiceManager) CreateTenantandVRFdestinationforInterVRFLeakedRoutes ¶ added in v1.44.0

func (sm *ServiceManager) CreateTenantandVRFdestinationforInterVRFLeakedRoutes(destinationCtxName string, destinationTenantName string, parentDn string, description string, nameAlias string, leakToAttr models.TenantandVRFdestinationforInterVRFLeakedRoutesAttributes) (*models.TenantandVRFdestinationforInterVRFLeakedRoutes, error)

func (*ServiceManager) CreateTerminalConnector ¶ added in v1.3.27

func (sm *ServiceManager) CreateTerminalConnector(consumer_terminal_node string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsTermConnattr models.TerminalConnectorAttributes) (*models.TerminalConnector, error)

func (*ServiceManager) CreateTriggerScheduler ¶

func (sm *ServiceManager) CreateTriggerScheduler(name string, description string, trigSchedPattr models.TriggerSchedulerAttributes) (*models.TriggerScheduler, error)

func (*ServiceManager) CreateUserDomain ¶ added in v1.12.12

func (sm *ServiceManager) CreateUserDomain(name string, local_user string, description string, nameAlias string, aaaUserDomainAttr models.UserDomainAttributes) (*models.UserDomain, error)

func (*ServiceManager) CreateUserManagement ¶ added in v1.12.31

func (sm *ServiceManager) CreateUserManagement(description string, nameAlias string, aaaUserEpAttr models.UserManagementAttributes) (*models.UserManagement, error)

func (*ServiceManager) CreateUserRole ¶ added in v1.12.14

func (sm *ServiceManager) CreateUserRole(name string, user_domain string, local_user string, description string, nameAlias string, aaaUserRoleAttr models.UserRoleAttributes) (*models.UserRole, error)

func (*ServiceManager) CreateVLANPool ¶

func (sm *ServiceManager) CreateVLANPool(allocMode string, name string, description string, fvnsVlanInstPattr models.VLANPoolAttributes) (*models.VLANPool, error)

func (*ServiceManager) CreateVMMController ¶ added in v1.3.29

func (sm *ServiceManager) CreateVMMController(name string, vmm_domain string, provider_profile_vendor string, description string, nameAlias string, vmmCtrlrPAttr models.VMMControllerAttributes) (*models.VMMController, error)

func (*ServiceManager) CreateVMMCredential ¶ added in v1.3.29

func (sm *ServiceManager) CreateVMMCredential(name string, vmm_domain string, provider_profile_vendor string, description string, nameAlias string, vmmUsrAccPAttr models.VMMCredentialAttributes) (*models.VMMCredential, error)

func (*ServiceManager) CreateVMMDomain ¶

func (sm *ServiceManager) CreateVMMDomain(name string, provider_profile_vendor string, vmmDomPattr models.VMMDomainAttributes) (*models.VMMDomain, error)

func (*ServiceManager) CreateVMMSecurityPolicy ¶ added in v0.4.1

func (sm *ServiceManager) CreateVMMSecurityPolicy(domain_tDn string, application_epg string, application_profile string, tenant string, description string, vmmSecPattr models.VMMSecurityPolicyAttributes) (*models.VMMSecurityPolicy, error)

func (*ServiceManager) CreateVPCDomainPolicy ¶ added in v1.3.29

func (sm *ServiceManager) CreateVPCDomainPolicy(name string, description string, nameAlias string, vpcInstPolAttr models.VPCDomainPolicyAttributes) (*models.VPCDomainPolicy, error)

func (*ServiceManager) CreateVPCExplicitProtectionGroup ¶

func (sm *ServiceManager) CreateVPCExplicitProtectionGroup(name string, switch1 string, switch2 string, vpcDomainPolicy string, fabricExplicitGEpattr models.VPCExplicitProtectionGroupAttributes) (*models.VPCExplicitProtectionGroup, error)

func (*ServiceManager) CreateVRF ¶

func (sm *ServiceManager) CreateVRF(name string, tenant string, description string, fvCtxattr models.VRFAttributes) (*models.VRF, error)

func (*ServiceManager) CreateVSANPool ¶

func (sm *ServiceManager) CreateVSANPool(allocMode string, name string, description string, fvnsVsanInstPattr models.VSANPoolAttributes) (*models.VSANPool, error)

func (*ServiceManager) CreateVSwitchPolicyGroup ¶ added in v1.3.29

func (sm *ServiceManager) CreateVSwitchPolicyGroup(vmm_domain string, provider_profile_vendor string, description string, nameAlias string, vmmVSwitchPolicyContAttr models.VSwitchPolicyGroupAttributes) (*models.VSwitchPolicyGroup, error)

func (*ServiceManager) CreateVXLANPool ¶

func (sm *ServiceManager) CreateVXLANPool(name string, description string, fvnsVxlanInstPattr models.VXLANPoolAttributes) (*models.VXLANPool, error)

func (*ServiceManager) CreateVirtualLogicalInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) CreateVirtualLogicalInterfaceProfile(encap string, nodeDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extVirtualLIfPattr models.VirtualLogicalInterfaceProfileAttributes) (*models.VirtualLogicalInterfaceProfile, error)

func (*ServiceManager) CreateVlanEncapsulationforVxlanTraffic ¶

func (sm *ServiceManager) CreateVlanEncapsulationforVxlanTraffic(attachable_access_entity_profile string, description string, infraProvAccattr models.VlanEncapsulationforVxlanTrafficAttributes) (*models.VlanEncapsulationforVxlanTraffic, error)

func (*ServiceManager) CreateWebTokenData ¶ added in v1.12.31

func (sm *ServiceManager) CreateWebTokenData(description string, nameAlias string, pkiWebTokenDataAttr models.WebTokenDataAttributes) (*models.WebTokenData, error)

func (*ServiceManager) CreateX509Certificate ¶ added in v0.0.11

func (sm *ServiceManager) CreateX509Certificate(name string, local_user string, description string, aaaUserCertattr models.X509CertificateAttributes) (*models.X509Certificate, error)

func (*ServiceManager) Delete ¶

func (sm *ServiceManager) Delete(obj models.Model) error

func (*ServiceManager) DeleteAAAAuthentication ¶ added in v1.12.16

func (sm *ServiceManager) DeleteAAAAuthentication() error

func (*ServiceManager) DeleteAESEncryptionPassphraseandKeysforConfigExportImport ¶ added in v1.12.13

func (sm *ServiceManager) DeleteAESEncryptionPassphraseandKeysforConfigExportImport() error

func (*ServiceManager) DeleteASNumber ¶ added in v1.31.0

func (sm *ServiceManager) DeleteASNumber(order string, set_as_path_criteria string, action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteAaaDomainRef ¶ added in v1.24.0

func (sm *ServiceManager) DeleteAaaDomainRef(name string, parentDn string) error

func (*ServiceManager) DeleteAccessAccessGroup ¶ added in v0.4.9

func (sm *ServiceManager) DeleteAccessAccessGroup(access_port_selector_type string, access_port_selector string, leaf_interface_profile string) error

func (*ServiceManager) DeleteAccessGeneric ¶ added in v0.4.4

func (sm *ServiceManager) DeleteAccessGeneric(name string, attachable_access_entity_profile string) error

func (*ServiceManager) DeleteAccessPortBlock ¶

func (sm *ServiceManager) DeleteAccessPortBlock(name string, access_port_selector_type string, access_port_selector string, leaf_interface_profile string) error

func (*ServiceManager) DeleteAccessPortSelector ¶

func (sm *ServiceManager) DeleteAccessPortSelector(access_port_selector_type string, name string, leaf_interface_profile string) error

func (*ServiceManager) DeleteAccessSubPortBlock ¶

func (sm *ServiceManager) DeleteAccessSubPortBlock(name string, access_port_selector_type string, access_port_selector string, leaf_interface_profile string) error

func (*ServiceManager) DeleteAccessSwitchPolicyGroup ¶ added in v1.12.2

func (sm *ServiceManager) DeleteAccessSwitchPolicyGroup(name string) error

func (*ServiceManager) DeleteActionRuleProfile ¶

func (sm *ServiceManager) DeleteActionRuleProfile(name string, tenant string) error

func (*ServiceManager) DeleteAnnotation ¶ added in v1.19.0

func (sm *ServiceManager) DeleteAnnotation(key string, parentDn string) error

func (*ServiceManager) DeleteAny ¶

func (sm *ServiceManager) DeleteAny(vrf string, tenant string) error

func (*ServiceManager) DeleteAnycastEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) DeleteAnycastEndpoint(mac string, parent_dn string) error

func (*ServiceManager) DeleteApplicationEPG ¶

func (sm *ServiceManager) DeleteApplicationEPG(name string, application_profile string, tenant string) error

func (*ServiceManager) DeleteApplicationEPGLagPolicy ¶ added in v1.35.0

func (sm *ServiceManager) DeleteApplicationEPGLagPolicy(domain_dn string, application_epg string, application_profile string, tenant string) error

func (*ServiceManager) DeleteApplicationProfile ¶

func (sm *ServiceManager) DeleteApplicationProfile(name string, tenant string) error

func (*ServiceManager) DeleteAttachableAccessEntityProfile ¶

func (sm *ServiceManager) DeleteAttachableAccessEntityProfile(name string) error

func (*ServiceManager) DeleteAuthenticationMethodfortheDomain ¶ added in v1.12.21

func (sm *ServiceManager) DeleteAuthenticationMethodfortheDomain(login_domain string) error

func (*ServiceManager) DeleteAutonomousSystemProfile ¶

func (sm *ServiceManager) DeleteAutonomousSystemProfile() error

func (*ServiceManager) DeleteBDDHCPLabel ¶ added in v1.3.27

func (sm *ServiceManager) DeleteBDDHCPLabel(name string, bridge_domain string, tenant string) error

func (*ServiceManager) DeleteBFDInterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) DeleteBFDInterfacePolicy(name string, tenant string) error

func (*ServiceManager) DeleteBFDInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteBFDInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteBGPAddressFamilyContextPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteBGPAddressFamilyContextPolicy(name string, tenant string) error

func (*ServiceManager) DeleteBGPAddressFamilyContextPolicyRelationship ¶ added in v1.25.0

func (sm *ServiceManager) DeleteBGPAddressFamilyContextPolicyRelationship(af string, tnBgpCtxAfPolName string, vrf string, tenant string) error

func (*ServiceManager) DeleteBGPPeerPrefixPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteBGPPeerPrefixPolicy(name string, tenant string) error

func (*ServiceManager) DeleteBGPTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteBGPTimersPolicy(name string, tenant string) error

func (*ServiceManager) DeleteBgpAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteBgpBestPathPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteBgpBestPathPolicy(name string, tenant string) error

func (*ServiceManager) DeleteBgpPeerConnectivityProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteBgpPeerConnectivityProfile(addr string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteBgpRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) DeleteBgpRouteSummarization(name string, tenant string) error

func (*ServiceManager) DeleteBlockUserLoginsPolicy ¶ added in v1.12.31

func (sm *ServiceManager) DeleteBlockUserLoginsPolicy() error

func (*ServiceManager) DeleteBridgeDomain ¶

func (sm *ServiceManager) DeleteBridgeDomain(name string, tenant string) error

func (*ServiceManager) DeleteByDn ¶

func (sm *ServiceManager) DeleteByDn(dn, className string) error

func (*ServiceManager) DeleteCDPInterfacePolicy ¶

func (sm *ServiceManager) DeleteCDPInterfacePolicy(name string) error

func (*ServiceManager) DeleteCOOPGroupPolicy ¶ added in v1.12.10

func (sm *ServiceManager) DeleteCOOPGroupPolicy(name string) error

func (*ServiceManager) DeleteCloudAWSProvider ¶

func (sm *ServiceManager) DeleteCloudAWSProvider(tenant string) error

func (*ServiceManager) DeleteCloudAccount ¶ added in v1.50.0

func (sm *ServiceManager) DeleteCloudAccount(vendor string, account_id string, tenant string) error

func (*ServiceManager) DeleteCloudActiveDirectory ¶ added in v1.50.0

func (sm *ServiceManager) DeleteCloudActiveDirectory(active_directory_id string, tenant string) error

func (*ServiceManager) DeleteCloudApplicationcontainer ¶

func (sm *ServiceManager) DeleteCloudApplicationcontainer(name string, tenant string) error

func (*ServiceManager) DeleteCloudAvailabilityZone ¶

func (sm *ServiceManager) DeleteCloudAvailabilityZone(name string, cloud_providers_region string, cloud_provider_profile_vendor string) error

func (*ServiceManager) DeleteCloudCIDRPool ¶

func (sm *ServiceManager) DeleteCloudCIDRPool(addr string, cloud_context_profile string, tenant string) error

func (*ServiceManager) DeleteCloudContextProfile ¶

func (sm *ServiceManager) DeleteCloudContextProfile(name string, tenant string) error

func (*ServiceManager) DeleteCloudCredentials ¶ added in v1.50.0

func (sm *ServiceManager) DeleteCloudCredentials(name string, tenant string) error

func (*ServiceManager) DeleteCloudDomainProfile ¶

func (sm *ServiceManager) DeleteCloudDomainProfile() error

func (*ServiceManager) DeleteCloudEPg ¶

func (sm *ServiceManager) DeleteCloudEPg(name string, cloud_application_container string, tenant string) error

func (*ServiceManager) DeleteCloudEndpointSelector ¶

func (sm *ServiceManager) DeleteCloudEndpointSelector(name string, cloud_epg string, cloud_application_container string, tenant string) error

func (*ServiceManager) DeleteCloudEndpointSelectorforExternalEPgs ¶

func (sm *ServiceManager) DeleteCloudEndpointSelectorforExternalEPgs(name string, cloud_external_epg string, cloud_application_container string, tenant string) error

func (*ServiceManager) DeleteCloudExternalEPg ¶

func (sm *ServiceManager) DeleteCloudExternalEPg(name string, cloud_application_container string, tenant string) error

func (*ServiceManager) DeleteCloudProviderProfile ¶

func (sm *ServiceManager) DeleteCloudProviderProfile(vendor string) error

func (*ServiceManager) DeleteCloudProvidersRegion ¶

func (sm *ServiceManager) DeleteCloudProvidersRegion(name string, cloud_provider_profile_vendor string) error

func (*ServiceManager) DeleteCloudSubnet ¶

func (sm *ServiceManager) DeleteCloudSubnet(ip string, cloud_cidr_pool_addr string, cloud_context_profile string, tenant string) error

func (*ServiceManager) DeleteCloudTemplateforExternalNetwork ¶ added in v1.53.0

func (sm *ServiceManager) DeleteCloudTemplateforExternalNetwork(name string, infra_network_template string, tenant string) error

func (*ServiceManager) DeleteCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) DeleteCloudVpnGateway(name string, cloudContextProfile string, tenant string) error

func (*ServiceManager) DeleteConcreteDevice ¶ added in v1.38.0

func (sm *ServiceManager) DeleteConcreteDevice(name string, parent_dn string) error

func (*ServiceManager) DeleteConcreteInterface ¶ added in v1.39.0

func (sm *ServiceManager) DeleteConcreteInterface(name string, parent_dn string) error

func (*ServiceManager) DeleteConfigurationExportPolicy ¶

func (sm *ServiceManager) DeleteConfigurationExportPolicy(name string) error

func (*ServiceManager) DeleteConfigurationImportPolicy ¶

func (sm *ServiceManager) DeleteConfigurationImportPolicy(name string) error

func (*ServiceManager) DeleteConnection ¶ added in v1.3.27

func (sm *ServiceManager) DeleteConnection(name string, l4_l7_service_graph_template string, tenant string) error

func (*ServiceManager) DeleteConsoleAuthenticationMethod ¶ added in v1.12.14

func (sm *ServiceManager) DeleteConsoleAuthenticationMethod() error

func (*ServiceManager) DeleteConsumerTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) DeleteConsumerTerminalNode(name string, l4_l7_service_graph_template string, tenant string) error

func (*ServiceManager) DeleteContract ¶

func (sm *ServiceManager) DeleteContract(name string, tenant string) error

func (*ServiceManager) DeleteContractConsumer ¶ added in v0.4.1

func (sm *ServiceManager) DeleteContractConsumer(tnVzBrCPName string, application_epg string, application_profile string, tenant string) error

func (*ServiceManager) DeleteContractInterfaceRelationship ¶ added in v1.26.0

func (sm *ServiceManager) DeleteContractInterfaceRelationship(tnVzCPIfName string, application_epg string, application_profile string, tenant string) error

func (*ServiceManager) DeleteContractProvider ¶ added in v0.4.1

func (sm *ServiceManager) DeleteContractProvider(tnVzBrCPName string, application_epg string, application_profile string, tenant string) error

func (*ServiceManager) DeleteContractSubject ¶

func (sm *ServiceManager) DeleteContractSubject(name string, contract string, tenant string) error

func (*ServiceManager) DeleteCtrlrFwP ¶ added in v0.4.1

func (sm *ServiceManager) DeleteCtrlrFwP() error

func (*ServiceManager) DeleteDHCPOption ¶ added in v1.3.27

func (sm *ServiceManager) DeleteDHCPOption(name string, dhcp_option_policy string, tenant string) error

func (*ServiceManager) DeleteDHCPOptionPolicy ¶ added in v1.3.27

func (sm *ServiceManager) DeleteDHCPOptionPolicy(name string, tenant string) error

func (*ServiceManager) DeleteDHCPRelayPolicy ¶ added in v1.3.27

func (sm *ServiceManager) DeleteDHCPRelayPolicy(name string, tenant string) error

func (*ServiceManager) DeleteDefaultAuthenticationMethodforallLogins ¶ added in v1.12.22

func (sm *ServiceManager) DeleteDefaultAuthenticationMethodforallLogins() error

func (*ServiceManager) DeleteDefaultRadiusAuthenticationSettings ¶ added in v1.12.16

func (sm *ServiceManager) DeleteDefaultRadiusAuthenticationSettings() error

func (*ServiceManager) DeleteDestinationofredirectedtraffic ¶ added in v0.4.5

func (sm *ServiceManager) DeleteDestinationofredirectedtraffic(ip string, service_redirect_policy string, tenant string) error

func (*ServiceManager) DeleteDownload ¶ added in v0.4.1

func (sm *ServiceManager) DeleteDownload(name string) error

func (*ServiceManager) DeleteDuoProviderGroup ¶ added in v1.12.16

func (sm *ServiceManager) DeleteDuoProviderGroup(name string) error

func (*ServiceManager) DeleteEPGsUsingFunction ¶ added in v0.4.1

func (sm *ServiceManager) DeleteEPGsUsingFunction(tDn string, access_generic string, attachable_access_entity_profile string) error

func (*ServiceManager) DeleteEPLoopProtectionPolicy ¶ added in v1.12.10

func (sm *ServiceManager) DeleteEPLoopProtectionPolicy(name string) error

func (*ServiceManager) DeleteEPgDef ¶ added in v1.41.0

func (sm *ServiceManager) DeleteEPgDef(name string, parent_dn string) error

func (*ServiceManager) DeleteEndPointRetentionPolicy ¶

func (sm *ServiceManager) DeleteEndPointRetentionPolicy(name string, tenant string) error

func (*ServiceManager) DeleteEndpointControlPolicy ¶ added in v1.12.9

func (sm *ServiceManager) DeleteEndpointControlPolicy(name string) error

func (*ServiceManager) DeleteEndpointSecurityGroup ¶ added in v1.3.29

func (sm *ServiceManager) DeleteEndpointSecurityGroup(name string, application_profile string, tenant string) error

func (*ServiceManager) DeleteEndpointSecurityGroupEPgSelector ¶ added in v1.3.29

func (sm *ServiceManager) DeleteEndpointSecurityGroupEPgSelector(matchEpgDn string, endpoint_security_group string, application_profile string, tenant string) error

func (*ServiceManager) DeleteEndpointSecurityGroupSelector ¶ added in v1.3.29

func (sm *ServiceManager) DeleteEndpointSecurityGroupSelector(matchExpression string, endpoint_security_group string, application_profile string, tenant string) error

func (*ServiceManager) DeleteEndpointSecurityGroupTagSelector ¶ added in v1.3.29

func (sm *ServiceManager) DeleteEndpointSecurityGroupTagSelector(matchValue string, matchKey string, endpoint_security_group string, application_profile string, tenant string) error

func (*ServiceManager) DeleteEpReachability ¶ added in v1.43.0

func (sm *ServiceManager) DeleteEpReachability(parent_dn string) error

func (*ServiceManager) DeleteErrorDisabledRecoveryEvent ¶ added in v1.12.14

func (sm *ServiceManager) DeleteErrorDisabledRecoveryEvent(event string, error_disabled_recovery_policy string) error

func (*ServiceManager) DeleteErrorDisabledRecoveryPolicy ¶ added in v1.12.14

func (sm *ServiceManager) DeleteErrorDisabledRecoveryPolicy(name string) error

func (*ServiceManager) DeleteExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) DeleteExternalNetworkInstanceProfile(name string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteFCDomain ¶

func (sm *ServiceManager) DeleteFCDomain(name string) error

func (*ServiceManager) DeleteFEXProfile ¶ added in v0.4.9

func (sm *ServiceManager) DeleteFEXProfile(name string) error

func (*ServiceManager) DeleteFVDomain ¶ added in v0.4.1

func (sm *ServiceManager) DeleteFVDomain(tDn string, application_epg string, application_profile string, tenant string) error

func (*ServiceManager) DeleteFabricNode ¶ added in v0.4.1

func (sm *ServiceManager) DeleteFabricNode(tDn string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteFabricNodeControl ¶ added in v1.12.9

func (sm *ServiceManager) DeleteFabricNodeControl(name string) error

func (*ServiceManager) DeleteFabricNodeMember ¶

func (sm *ServiceManager) DeleteFabricNodeMember(serial string) error

func (*ServiceManager) DeleteFabricPathEndpoint ¶ added in v0.5.11

func (sm *ServiceManager) DeleteFabricPathEndpoint(name string, fabric_path_end_point_container_nodeId string, fabric_pod_id string) error

func (*ServiceManager) DeleteFabricWideSettingsPolicy ¶ added in v1.12.15

func (sm *ServiceManager) DeleteFabricWideSettingsPolicy() error

func (*ServiceManager) DeleteFexBundleGroup ¶ added in v0.4.9

func (sm *ServiceManager) DeleteFexBundleGroup(name string, fex_profile string) error

func (*ServiceManager) DeleteFilter ¶

func (sm *ServiceManager) DeleteFilter(name string, tenant string) error

func (*ServiceManager) DeleteFilterEntry ¶

func (sm *ServiceManager) DeleteFilterEntry(name string, filter string, tenant string) error

func (*ServiceManager) DeleteFilterRelationship ¶ added in v1.36.0

func (sm *ServiceManager) DeleteFilterRelationship(tnVzFilterName string, parentDn string) error

func (*ServiceManager) DeleteFirmware ¶ added in v0.4.1

func (sm *ServiceManager) DeleteFirmware(name string) error

func (*ServiceManager) DeleteFirmwareDownloadTask ¶

func (sm *ServiceManager) DeleteFirmwareDownloadTask(name string) error

func (*ServiceManager) DeleteFirmwareGroup ¶

func (sm *ServiceManager) DeleteFirmwareGroup(name string) error

func (*ServiceManager) DeleteFirmwarePolicy ¶

func (sm *ServiceManager) DeleteFirmwarePolicy(name string) error

func (*ServiceManager) DeleteFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) DeleteFunctionConnector(name string, function_node string, l4_l7_service_graph_template string, tenant string) error

func (*ServiceManager) DeleteFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) DeleteFunctionNode(name string, l4_l7_service_graph_template string, tenant string) error

func (*ServiceManager) DeleteHSRPGroupPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteHSRPGroupPolicy(name string, tenant string) error

func (*ServiceManager) DeleteHSRPGroupProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteHSRPGroupProfile(name string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteHSRPInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteHSRPInterfacePolicy(name string, tenant string) error

func (*ServiceManager) DeleteIPAgingPolicy ¶ added in v1.12.9

func (sm *ServiceManager) DeleteIPAgingPolicy(name string) error

func (*ServiceManager) DeleteIPSLAMonitoringPolicy ¶ added in v1.41.0

func (sm *ServiceManager) DeleteIPSLAMonitoringPolicy(name string, tenant string) error

func (*ServiceManager) DeleteISISDomainPolicy ¶ added in v1.12.15

func (sm *ServiceManager) DeleteISISDomainPolicy(name string) error

func (*ServiceManager) DeleteISISLevel ¶ added in v1.12.15

func (sm *ServiceManager) DeleteISISLevel(isis_level_type string, isis_domain_policy string) error

func (*ServiceManager) DeleteImportedContract ¶ added in v0.4.1

func (sm *ServiceManager) DeleteImportedContract(name string, tenant string) error

func (*ServiceManager) DeleteInBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) DeleteInBManagedNodesZone(managed_node_connectivity_group string) error

func (*ServiceManager) DeleteInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteInBandManagementEPg(name string, management_profile string, tenant string) error

func (*ServiceManager) DeleteInTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) DeleteInTermSubject(contract_subject string, contract string, tenant string) error

func (*ServiceManager) DeleteInbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) DeleteInbandStaticNode(tDn string, in_band_management_epg string, management_profile string, tenant string) error

func (*ServiceManager) DeleteInfraRsDomP ¶ added in v1.25.1

func (sm *ServiceManager) DeleteInfraRsDomP(tDn string, attachable_access_entity_profile string) error

func (*ServiceManager) DeleteInterVRFLeakedRoutesContainer ¶ added in v1.45.0

func (sm *ServiceManager) DeleteInterVRFLeakedRoutesContainer(vrf string, tenant string) error

func (*ServiceManager) DeleteInterfaceFCPolicy ¶

func (sm *ServiceManager) DeleteInterfaceFCPolicy(name string) error

func (*ServiceManager) DeleteInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) DeleteInterfaceProfile(tDn string, spine_profile string) error

func (*ServiceManager) DeleteKeypairforSAMLEncryption ¶ added in v1.12.16

func (sm *ServiceManager) DeleteKeypairforSAMLEncryption(name string) error

func (*ServiceManager) DeleteL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) DeleteL2Domain(name string) error

func (*ServiceManager) DeleteL2InterfacePolicy ¶

func (sm *ServiceManager) DeleteL2InterfacePolicy(name string) error

func (*ServiceManager) DeleteL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) DeleteL2Outside(name string, tenant string) error

func (*ServiceManager) DeleteL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteL2outExternalEpg(name string, l2_outside string, tenant string) error

func (*ServiceManager) DeleteL3DomainProfile ¶

func (sm *ServiceManager) DeleteL3DomainProfile(name string) error

func (*ServiceManager) DeleteL3ExtSubnet ¶

func (sm *ServiceManager) DeleteL3ExtSubnet(ip string, external_network_instance_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3InterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) DeleteL3InterfacePolicy(name string) error

func (*ServiceManager) DeleteL3Outside ¶

func (sm *ServiceManager) DeleteL3Outside(name string, tenant string) error

func (*ServiceManager) DeleteL3outBGPProtocolProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outBGPProtocolProfile(logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3outBgpExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outBgpExternalPolicy(l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3outHSRPInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outHSRPInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3outHSRPSecondaryVIP ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outHSRPSecondaryVIP(ip string, hsrp_group_profile string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3outOspfExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outOspfExternalPolicy(l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3outPathAttachment ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outPathAttachment(tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3outPathAttachmentSecondaryIp ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outPathAttachmentSecondaryIp(addr string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3outRouteTagPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outRouteTagPolicy(name string, tenant string) error

func (*ServiceManager) DeleteL3outStaticRoute ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outStaticRoute(ip string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outStaticRouteNextHop(nhAddr string, static_route_ip string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteL3outVPCMember ¶ added in v1.3.29

func (sm *ServiceManager) DeleteL3outVPCMember(side string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteL4L7RedirectHealthGroup ¶ added in v1.40.0

func (sm *ServiceManager) DeleteL4L7RedirectHealthGroup(name string, tenant string) error

func (*ServiceManager) DeleteL4L7ServiceGraphTemplate ¶ added in v1.3.27

func (sm *ServiceManager) DeleteL4L7ServiceGraphTemplate(name string, tenant string) error

func (*ServiceManager) DeleteL4ToL7Devices ¶ added in v1.37.0

func (sm *ServiceManager) DeleteL4ToL7Devices(name string, tenant string) error

func (*ServiceManager) DeleteLACPMemberPolicy ¶ added in v1.48.0

func (sm *ServiceManager) DeleteLACPMemberPolicy(name string) error

func (*ServiceManager) DeleteLACPPolicy ¶

func (sm *ServiceManager) DeleteLACPPolicy(name string) error

func (*ServiceManager) DeleteLDAPGroupMap ¶ added in v1.12.26

func (sm *ServiceManager) DeleteLDAPGroupMap(name string) error

func (*ServiceManager) DeleteLDAPGroupMapRule ¶ added in v1.12.17

func (sm *ServiceManager) DeleteLDAPGroupMapRule(name string) error

func (*ServiceManager) DeleteLDAPGroupMapruleref ¶ added in v1.12.19

func (sm *ServiceManager) DeleteLDAPGroupMapruleref(name string, ldap_group_map string) error

func (*ServiceManager) DeleteLDAPProvider ¶ added in v1.12.16

func (sm *ServiceManager) DeleteLDAPProvider(name string) error

func (*ServiceManager) DeleteLLDPInterfacePolicy ¶

func (sm *ServiceManager) DeleteLLDPInterfacePolicy(name string) error

func (*ServiceManager) DeleteLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) DeleteLeafAccessPortPolicyGroup(name string) error

func (*ServiceManager) DeleteLeafBreakoutPortGroup ¶ added in v1.3.27

func (sm *ServiceManager) DeleteLeafBreakoutPortGroup(name string) error

func (*ServiceManager) DeleteLeafInterfaceProfile ¶

func (sm *ServiceManager) DeleteLeafInterfaceProfile(name string) error

func (*ServiceManager) DeleteLeafProfile ¶

func (sm *ServiceManager) DeleteLeafProfile(name string) error

func (*ServiceManager) DeleteLeakInternalPrefix ¶ added in v1.54.0

func (sm *ServiceManager) DeleteLeakInternalPrefix(ip string, vrf string, tenant string) error

func (*ServiceManager) DeleteLeakInternalSubnet ¶ added in v1.44.0

func (sm *ServiceManager) DeleteLeakInternalSubnet(ip string, vrf string, tenant string) error

func (*ServiceManager) DeleteLinkLevelPolicy ¶ added in v1.0.8

func (sm *ServiceManager) DeleteLinkLevelPolicy(name string) error

func (*ServiceManager) DeleteLocalAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteLocalAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteLocalUser ¶

func (sm *ServiceManager) DeleteLocalUser(name string) error

func (*ServiceManager) DeleteLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteLogicalDeviceContext(nodeNameOrLbl string, graphNameOrLbl string, ctrctNameOrLbl string, tenant string) error

func (*ServiceManager) DeleteLogicalInterface ¶ added in v1.37.0

func (sm *ServiceManager) DeleteLogicalInterface(name string, parent_dn string) error

func (*ServiceManager) DeleteLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteLogicalInterfaceContext(connNameOrLbl string, logicalDeviceContextNodeNameOrLbl string, logicalDeviceContextGraphNameOrLbl string, logical_device_context_ctrctNameOrLbl string, tenant string) error

func (*ServiceManager) DeleteLogicalInterfaceProfile ¶

func (sm *ServiceManager) DeleteLogicalInterfaceProfile(name string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteLogicalNodeProfile ¶

func (sm *ServiceManager) DeleteLogicalNodeProfile(name string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteLoginDomain ¶ added in v1.12.21

func (sm *ServiceManager) DeleteLoginDomain(name string) error

func (*ServiceManager) DeleteLoopBackInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteLoopBackInterfaceProfile(addr string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteMaintGrp ¶ added in v0.4.1

func (sm *ServiceManager) DeleteMaintGrp(name string) error

func (*ServiceManager) DeleteMaintP ¶ added in v0.4.1

func (sm *ServiceManager) DeleteMaintP(name string) error

func (*ServiceManager) DeleteMaintenancePolicy ¶

func (sm *ServiceManager) DeleteMaintenancePolicy(name string) error

func (*ServiceManager) DeleteManagedNodeConnectivityGroup ¶ added in v1.12.2

func (sm *ServiceManager) DeleteManagedNodeConnectivityGroup(name string) error

func (*ServiceManager) DeleteMatchCommunityFactor ¶ added in v1.30.0

func (sm *ServiceManager) DeleteMatchCommunityFactor(community string, match_community_term string, match_rule string, tenant string) error

func (*ServiceManager) DeleteMatchCommunityTerm ¶ added in v1.30.0

func (sm *ServiceManager) DeleteMatchCommunityTerm(name string, match_rule string, tenant string) error

func (*ServiceManager) DeleteMatchRouteDestinationRule ¶ added in v1.3.29

func (sm *ServiceManager) DeleteMatchRouteDestinationRule(ip string, match_rule string, tenant string) error

func (*ServiceManager) DeleteMatchRule ¶ added in v1.3.29

func (sm *ServiceManager) DeleteMatchRule(name string, tenant string) error

func (*ServiceManager) DeleteMatchRuleBasedonCommunityRegularExpression ¶ added in v1.27.0

func (sm *ServiceManager) DeleteMatchRuleBasedonCommunityRegularExpression(commType string, match_rule string, tenant string) error

func (*ServiceManager) DeleteMgmtconnectivitypreference ¶ added in v1.12.9

func (sm *ServiceManager) DeleteMgmtconnectivitypreference() error

func (*ServiceManager) DeleteMiscablingProtocolInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) DeleteMiscablingProtocolInstancePolicy(name string) error

func (*ServiceManager) DeleteMiscablingProtocolInterfacePolicy ¶

func (sm *ServiceManager) DeleteMiscablingProtocolInterfacePolicy(name string) error

func (*ServiceManager) DeleteMonitoringPolicy ¶

func (sm *ServiceManager) DeleteMonitoringPolicy(name string, tenant string) error

func (*ServiceManager) DeleteMulticastAddressBlock ¶ added in v1.46.0

func (sm *ServiceManager) DeleteMulticastAddressBlock(to string, from string, multicast_address_pool string) error

func (*ServiceManager) DeleteMulticastAddressPool ¶ added in v1.46.0

func (sm *ServiceManager) DeleteMulticastAddressPool(name string) error

func (*ServiceManager) DeleteNexthopEpPReachability ¶ added in v1.43.0

func (sm *ServiceManager) DeleteNexthopEpPReachability(nhAddr string, parent_dn string) error

func (*ServiceManager) DeleteNexthopUnchangedAction ¶ added in v1.31.0

func (sm *ServiceManager) DeleteNexthopUnchangedAction(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteNlbEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) DeleteNlbEndpoint(parent_dn string) error

func (*ServiceManager) DeleteNodeBlk ¶ added in v0.4.1

func (sm *ServiceManager) DeleteNodeBlk(parentMOType string, parentMOName string, name string) error

func (*ServiceManager) DeleteNodeBlock ¶ added in v0.4.1

func (sm *ServiceManager) DeleteNodeBlock(name string, switch_association_type string, switch_association string, leaf_profile string) error

func (*ServiceManager) DeleteNodeBlockFW ¶

func (sm *ServiceManager) DeleteNodeBlockFW(name string, firmware_group string) error

func (*ServiceManager) DeleteNodeBlockMG ¶

func (sm *ServiceManager) DeleteNodeBlockMG(name string, pod_maintenance_group string) error

func (*ServiceManager) DeleteNodePolicyEndPoint ¶

func (sm *ServiceManager) DeleteNodePolicyEndPoint(node_policy_end_point_id string, vpc_explicit_protection_group string) error

func (*ServiceManager) DeleteOOBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) DeleteOOBManagedNodesZone(managed_node_connectivity_group string) error

func (*ServiceManager) DeleteOSPFInterfacePolicy ¶

func (sm *ServiceManager) DeleteOSPFInterfacePolicy(name string, tenant string) error

func (*ServiceManager) DeleteOSPFInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteOSPFInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteOSPFTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteOSPFTimersPolicy(name string, tenant string) error

func (*ServiceManager) DeleteOSource ¶ added in v0.4.1

func (sm *ServiceManager) DeleteOSource(name string) error

func (*ServiceManager) DeleteOspfRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) DeleteOspfRouteSummarization(name string, tenant string) error

func (*ServiceManager) DeleteOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteOutOfBandManagementEPg(name string, management_profile string, tenant string) error

func (*ServiceManager) DeleteOutTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) DeleteOutTermSubject(contract_subject string, contract string, tenant string) error

func (*ServiceManager) DeleteOutofServiceFabricPath ¶ added in v1.19.0

func (sm *ServiceManager) DeleteOutofServiceFabricPath(tDn string) error

func (*ServiceManager) DeleteOutofbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) DeleteOutofbandStaticNode(tDn string, out_of_band_management_epg string, management_profile string, tenant string) error

func (*ServiceManager) DeleteOverridePCVPCPolicyGroup ¶ added in v1.48.0

func (sm *ServiceManager) DeleteOverridePCVPCPolicyGroup(name string, leaf_access_bundle_policy_group string) error

func (*ServiceManager) DeletePCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) DeletePCVPCInterfacePolicyGroup(name string) error

func (*ServiceManager) DeletePODMaintenanceGroup ¶

func (sm *ServiceManager) DeletePODMaintenanceGroup(name string) error

func (*ServiceManager) DeletePasswordChangeExpirationPolicy ¶ added in v1.12.31

func (sm *ServiceManager) DeletePasswordChangeExpirationPolicy() error

func (*ServiceManager) DeletePhysicalDomain ¶

func (sm *ServiceManager) DeletePhysicalDomain(name string) error

func (*ServiceManager) DeletePortSecurityPolicy ¶

func (sm *ServiceManager) DeletePortSecurityPolicy(name string) error

func (*ServiceManager) DeletePortTracking ¶ added in v1.12.10

func (sm *ServiceManager) DeletePortTracking(name string) error

func (*ServiceManager) DeleteProviderGroupMember ¶ added in v1.12.30

func (sm *ServiceManager) DeleteProviderGroupMember(name string, duo_provider_group string) error

func (*ServiceManager) DeleteProviderTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) DeleteProviderTerminalNode(name string, l4_l7_service_graph_template string, tenant string) error

func (*ServiceManager) DeletePublicKeyManagement ¶ added in v1.12.31

func (sm *ServiceManager) DeletePublicKeyManagement() error

func (*ServiceManager) DeleteQOSInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) DeleteQOSInstancePolicy(name string) error

func (*ServiceManager) DeleteRADIUSProvider ¶ added in v1.12.33

func (sm *ServiceManager) DeleteRADIUSProvider(name string) error

func (*ServiceManager) DeleteRADIUSProviderGroup ¶ added in v1.12.17

func (sm *ServiceManager) DeleteRADIUSProviderGroup(name string) error

func (*ServiceManager) DeleteRSAProvider ¶ added in v1.12.20

func (sm *ServiceManager) DeleteRSAProvider(name string) error

func (*ServiceManager) DeleteRanges ¶

func (sm *ServiceManager) DeleteRanges(to string, _from string, vlan_pool_allocMode string, vlan_pool string) error

func (*ServiceManager) DeleteRecurringWindow ¶ added in v1.12.4

func (sm *ServiceManager) DeleteRecurringWindow(name string, scheduler string) error

func (*ServiceManager) DeleteRedistributeMultipathAction ¶ added in v1.31.0

func (sm *ServiceManager) DeleteRedistributeMultipathAction(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteRelationaaaRsProvToEpp ¶ added in v1.12.16

func (sm *ServiceManager) DeleteRelationaaaRsProvToEpp(parentDn string) error

func (*ServiceManager) DeleteRelationaaaRsSecProvToEpg ¶ added in v1.12.16

func (sm *ServiceManager) DeleteRelationaaaRsSecProvToEpg(parentDn string) error

func (*ServiceManager) DeleteRelationaaaRsToUserEp ¶ added in v1.12.31

func (sm *ServiceManager) DeleteRelationaaaRsToUserEp(parentDn string) error

func (*ServiceManager) DeleteRelationbgpRsBestPathCtrlPol ¶ added in v1.29.0

func (sm *ServiceManager) DeleteRelationbgpRsBestPathCtrlPol(parentDn string) error

func (*ServiceManager) DeleteRelationbgpRsBgpNodeCtxPol ¶ added in v1.29.0

func (sm *ServiceManager) DeleteRelationbgpRsBgpNodeCtxPol(parentDn string) error

func (*ServiceManager) DeleteRelationbgpRsPeerToProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationbgpRsPeerToProfile(parentDn, tDn, direction string) error

func (*ServiceManager) DeleteRelationcloudRsAD ¶ added in v1.50.0

func (sm *ServiceManager) DeleteRelationcloudRsAD(parentDn string) error

func (*ServiceManager) DeleteRelationcloudRsAccountToAccessPolicy ¶ added in v1.50.0

func (sm *ServiceManager) DeleteRelationcloudRsAccountToAccessPolicy(parentDn string) error

func (*ServiceManager) DeleteRelationcloudRsCredentials ¶ added in v1.50.0

func (sm *ServiceManager) DeleteRelationcloudRsCredentials(parentDn string) error

func (*ServiceManager) DeleteRelationcloudRsCtxProfileToRegionFromCloudContextProfile ¶

func (sm *ServiceManager) DeleteRelationcloudRsCtxProfileToRegionFromCloudContextProfile(parentDn string) error

func (*ServiceManager) DeleteRelationcloudRsCtxProfileTocloudRsCtxProfileToGatewayRouterP ¶ added in v1.3.12

func (sm *ServiceManager) DeleteRelationcloudRsCtxProfileTocloudRsCtxProfileToGatewayRouterP(parentDn, tDN string) error

func (*ServiceManager) DeleteRelationcloudRsCtxToFlowLogFromCloudContextProfile ¶

func (sm *ServiceManager) DeleteRelationcloudRsCtxToFlowLogFromCloudContextProfile(parentDn string) error

func (*ServiceManager) DeleteRelationcloudRsSubnetToFlowLogFromCloudSubnet ¶

func (sm *ServiceManager) DeleteRelationcloudRsSubnetToFlowLogFromCloudSubnet(parentDn string) error

func (*ServiceManager) DeleteRelationcloudRsZoneAttachFromCloudSubnet ¶

func (sm *ServiceManager) DeleteRelationcloudRsZoneAttachFromCloudSubnet(parentDn string) error

func (*ServiceManager) DeleteRelationconfigRsExportDestinationFromConfigurationExportPolicy ¶

func (sm *ServiceManager) DeleteRelationconfigRsExportDestinationFromConfigurationExportPolicy(parentDn string) error

func (*ServiceManager) DeleteRelationconfigRsExportSchedulerFromConfigurationExportPolicy ¶

func (sm *ServiceManager) DeleteRelationconfigRsExportSchedulerFromConfigurationExportPolicy(parentDn string) error

func (*ServiceManager) DeleteRelationconfigRsImportSourceFromConfigurationImportPolicy ¶

func (sm *ServiceManager) DeleteRelationconfigRsImportSourceFromConfigurationImportPolicy(parentDn string) error

func (*ServiceManager) DeleteRelationconfigRsRemotePathFromConfigurationExportPolicy ¶

func (sm *ServiceManager) DeleteRelationconfigRsRemotePathFromConfigurationExportPolicy(parentDn string) error

func (*ServiceManager) DeleteRelationconfigRsRemotePathFromConfigurationImportPolicy ¶

func (sm *ServiceManager) DeleteRelationconfigRsRemotePathFromConfigurationImportPolicy(parentDn string) error

func (*ServiceManager) DeleteRelationdhcpRsProvFromDHCPRelayPolicy ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationdhcpRsProvFromDHCPRelayPolicy(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfcRsVsanAttrFromFCDomain ¶

func (sm *ServiceManager) DeleteRelationfcRsVsanAttrFromFCDomain(parentDn string) error

func (*ServiceManager) DeleteRelationfcRsVsanNsFromFCDomain ¶

func (sm *ServiceManager) DeleteRelationfcRsVsanNsFromFCDomain(parentDn string) error

func (*ServiceManager) DeleteRelationfileRsARemoteHostToEpg ¶ added in v1.12.5

func (sm *ServiceManager) DeleteRelationfileRsARemoteHostToEpg(parentDn string) error

func (*ServiceManager) DeleteRelationfileRsARemoteHostToEpp ¶ added in v1.12.5

func (sm *ServiceManager) DeleteRelationfileRsARemoteHostToEpp(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsABDPolMonPolFromBridgeDomain ¶

func (sm *ServiceManager) DeleteRelationfvRsABDPolMonPolFromBridgeDomain(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsAEPgMonPolFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsAEPgMonPolFromApplicationEPG(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsApMonPolFromApplicationProfile ¶

func (sm *ServiceManager) DeleteRelationfvRsApMonPolFromApplicationProfile(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsBDSubnetToOutFromSubnet ¶

func (sm *ServiceManager) DeleteRelationfvRsBDSubnetToOutFromSubnet(parentDn, tnL3extOutName string) error

func (*ServiceManager) DeleteRelationfvRsBDSubnetToProfileFromSubnet ¶

func (sm *ServiceManager) DeleteRelationfvRsBDSubnetToProfileFromSubnet(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsBDToFhsFromBridgeDomain ¶

func (sm *ServiceManager) DeleteRelationfvRsBDToFhsFromBridgeDomain(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsBDToNetflowMonitorPolFromBridgeDomain ¶

func (sm *ServiceManager) DeleteRelationfvRsBDToNetflowMonitorPolFromBridgeDomain(parentDn, tnNetflowMonitorPolName, fltType string) error

func (*ServiceManager) DeleteRelationfvRsBDToOutFromBridgeDomain ¶

func (sm *ServiceManager) DeleteRelationfvRsBDToOutFromBridgeDomain(parentDn, tnL3extOutName string) error

func (*ServiceManager) DeleteRelationfvRsBDToProfileFromBridgeDomain ¶

func (sm *ServiceManager) DeleteRelationfvRsBDToProfileFromBridgeDomain(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsBDToRelayPFromBridgeDomain ¶

func (sm *ServiceManager) DeleteRelationfvRsBDToRelayPFromBridgeDomain(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsBdFloodToFromBridgeDomain ¶

func (sm *ServiceManager) DeleteRelationfvRsBdFloodToFromBridgeDomain(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsCons ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationfvRsCons(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsConsFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsConsFromApplicationEPG(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsConsFromCloudEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsConsFromCloudEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsConsFromCloudExternalEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsConsFromCloudExternalEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsConsFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) DeleteRelationfvRsConsFromExternalNetworkInstanceProfile(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsConsFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsConsFromInBandManagementEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsConsFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsConsFromL2outExternalEpg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsConsIf ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationfvRsConsIf(parentDn, tnVzCPIfName string) error

func (*ServiceManager) DeleteRelationfvRsConsIfFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsConsIfFromApplicationEPG(parentDn, tnVzCPIfName string) error

func (*ServiceManager) DeleteRelationfvRsConsIfFromCloudEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsConsIfFromCloudEPg(parentDn, tnVzCPIfName string) error

func (*ServiceManager) DeleteRelationfvRsConsIfFromCloudExternalEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsConsIfFromCloudExternalEPg(parentDn, tnVzCPIfName string) error

func (*ServiceManager) DeleteRelationfvRsConsIfFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) DeleteRelationfvRsConsIfFromExternalNetworkInstanceProfile(parentDn, tnVzCPIfName string) error

func (*ServiceManager) DeleteRelationfvRsConsIfFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsConsIfFromInBandManagementEPg(parentDn, tnVzCPIfName string) error

func (*ServiceManager) DeleteRelationfvRsConsIfFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsConsIfFromL2outExternalEpg(parentDn, tnVzCPIfName string) error

func (*ServiceManager) DeleteRelationfvRsCtxMonPolFromVRF ¶

func (sm *ServiceManager) DeleteRelationfvRsCtxMonPolFromVRF(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsCtxToBgpCtxAfPolFromVRF ¶

func (sm *ServiceManager) DeleteRelationfvRsCtxToBgpCtxAfPolFromVRF(parentDn, tnBgpCtxAfPolName, af string) error

func (*ServiceManager) DeleteRelationfvRsCtxToEigrpCtxAfPolFromVRF ¶

func (sm *ServiceManager) DeleteRelationfvRsCtxToEigrpCtxAfPolFromVRF(parentDn, tnEigrpCtxAfPolName, af string) error

func (*ServiceManager) DeleteRelationfvRsCtxToOspfCtxPolFromVRF ¶

func (sm *ServiceManager) DeleteRelationfvRsCtxToOspfCtxPolFromVRF(parentDn, tnOspfCtxPolName, af string) error

func (*ServiceManager) DeleteRelationfvRsCustQosPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationfvRsCustQosPol(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsDomAttFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsDomAttFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsDppPolFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsDppPolFromApplicationEPG(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsFcPathAttFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsFcPathAttFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsIntraEpg ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationfvRsIntraEpg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsIntraEpgFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsIntraEpgFromApplicationEPG(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsIntraEpgFromCloudEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsIntraEpgFromCloudEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsIntraEpgFromCloudExternalEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsIntraEpgFromCloudExternalEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsIntraEpgFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) DeleteRelationfvRsIntraEpgFromExternalNetworkInstanceProfile(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsIntraEpgFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsIntraEpgFromInBandManagementEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsIntraEpgFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsIntraEpgFromL2outExternalEpg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsMatchEPg ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationfvRsMatchEPg(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsNdPfxPolFromSubnet ¶

func (sm *ServiceManager) DeleteRelationfvRsNdPfxPolFromSubnet(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsNodeAttFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsNodeAttFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsPathAttFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsPathAttFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsProtBy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationfvRsProtBy(parentDn, tnVzTabooName string) error

func (*ServiceManager) DeleteRelationfvRsProtByFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsProtByFromApplicationEPG(parentDn, tnVzTabooName string) error

func (*ServiceManager) DeleteRelationfvRsProtByFromCloudEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsProtByFromCloudEPg(parentDn, tnVzTabooName string) error

func (*ServiceManager) DeleteRelationfvRsProtByFromCloudExternalEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsProtByFromCloudExternalEPg(parentDn, tnVzTabooName string) error

func (*ServiceManager) DeleteRelationfvRsProtByFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) DeleteRelationfvRsProtByFromExternalNetworkInstanceProfile(parentDn, tnVzTabooName string) error

func (*ServiceManager) DeleteRelationfvRsProtByFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsProtByFromInBandManagementEPg(parentDn, tnVzTabooName string) error

func (*ServiceManager) DeleteRelationfvRsProtByFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsProtByFromL2outExternalEpg(parentDn, tnVzTabooName string) error

func (*ServiceManager) DeleteRelationfvRsProv ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationfvRsProv(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsProvFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsProvFromApplicationEPG(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsProvFromCloudEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsProvFromCloudEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsProvFromCloudExternalEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsProvFromCloudExternalEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsProvFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) DeleteRelationfvRsProvFromExternalNetworkInstanceProfile(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsProvFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsProvFromInBandManagementEPg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsProvFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsProvFromL2outExternalEpg(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationfvRsScope ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationfvRsScope(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsSecInherited ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationfvRsSecInherited(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsSecInheritedFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsSecInheritedFromApplicationEPG(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsSecInheritedFromCloudEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsSecInheritedFromCloudEPg(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsSecInheritedFromCloudExternalEPg ¶

func (sm *ServiceManager) DeleteRelationfvRsSecInheritedFromCloudExternalEPg(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsSecInheritedFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) DeleteRelationfvRsSecInheritedFromExternalNetworkInstanceProfile(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsSecInheritedFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsSecInheritedFromInBandManagementEPg(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsSecInheritedFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationfvRsSecInheritedFromL2outExternalEpg(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsTnDenyRuleFromTenant ¶

func (sm *ServiceManager) DeleteRelationfvRsTnDenyRuleFromTenant(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationfvRsTrustCtrlFromApplicationEPG ¶

func (sm *ServiceManager) DeleteRelationfvRsTrustCtrlFromApplicationEPG(parentDn string) error

func (*ServiceManager) DeleteRelationfvRsVmmVSwitchEnhancedLagPol ¶ added in v1.35.0

func (sm *ServiceManager) DeleteRelationfvRsVmmVSwitchEnhancedLagPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsAccBaseGrpFromAccessPortSelector ¶

func (sm *ServiceManager) DeleteRelationinfraRsAccBaseGrpFromAccessPortSelector(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsAccBndlSubgrpFromAccessPortBlock ¶

func (sm *ServiceManager) DeleteRelationinfraRsAccBndlSubgrpFromAccessPortBlock(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsAccCardPFromLeafProfile ¶

func (sm *ServiceManager) DeleteRelationinfraRsAccCardPFromLeafProfile(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationinfraRsAccNodePGrpFromSwitchAssociation ¶

func (sm *ServiceManager) DeleteRelationinfraRsAccNodePGrpFromSwitchAssociation(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsAccPortPFromLeafProfile ¶

func (sm *ServiceManager) DeleteRelationinfraRsAccPortPFromLeafProfile(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationinfraRsAttEntPFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsAttEntPFromLeafAccessPortPolicyGroup(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsAttEntPFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsAttEntPFromPCVPCInterfacePolicyGroup(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsAttEntPFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) DeleteRelationinfraRsAttEntPFromSpineAccessPortPolicyGroup(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsBfdIpv4InstPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsBfdIpv4InstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsBfdIpv6InstPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsBfdIpv6InstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsBfdMhIpv4InstPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsBfdMhIpv4InstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsBfdMhIpv6InstPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsBfdMhIpv6InstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsDomPFromAttachableAccessEntityProfile ¶

func (sm *ServiceManager) DeleteRelationinfraRsDomPFromAttachableAccessEntityProfile(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationinfraRsEquipmentFlashConfigPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsEquipmentFlashConfigPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsFcFabricPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsFcFabricPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsFcInstPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsFcInstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsFuncToEpgFromAccessGeneric ¶ added in v0.4.4

func (sm *ServiceManager) DeleteRelationinfraRsFuncToEpgFromAccessGeneric(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationinfraRsFuncToEpgFromVlanEncapsulationforVxlanTraffic ¶

func (sm *ServiceManager) DeleteRelationinfraRsFuncToEpgFromVlanEncapsulationforVxlanTraffic(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationinfraRsIaclLeafProfile ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsIaclLeafProfile(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsIaclSpineProfile ¶ added in v1.12.3

func (sm *ServiceManager) DeleteRelationinfraRsIaclSpineProfile(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsL2InstPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsL2InstPolFromLeafAccessPortPolicyGroup(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsL2InstPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsL2InstPolFromPCVPCInterfacePolicyGroup(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsL2NodeAuthPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsL2NodeAuthPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsLacpIfPol ¶ added in v1.48.0

func (sm *ServiceManager) DeleteRelationinfraRsLacpIfPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsLacpInterfacePol ¶ added in v1.48.0

func (sm *ServiceManager) DeleteRelationinfraRsLacpInterfacePol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsLeafCoppProfile ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsLeafCoppProfile(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsLeafPGrpToCdpIfPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsLeafPGrpToCdpIfPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsLeafPGrpToLldpIfPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsLeafPGrpToLldpIfPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsMonNodeInfraPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsMonNodeInfraPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsMstInstPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsMstInstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsNetflowMonitorPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsNetflowMonitorPolFromLeafAccessPortPolicyGroup(parentDn, tnNetflowMonitorPolName, fltType string) error

func (*ServiceManager) DeleteRelationinfraRsNetflowMonitorPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsNetflowMonitorPolFromPCVPCInterfacePolicyGroup(parentDn, tnNetflowMonitorPolName, fltType string) error

func (*ServiceManager) DeleteRelationinfraRsNetflowNodePol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsNetflowNodePol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsPoeIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsPoeIfPolFromLeafAccessPortPolicyGroup(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsPoeInstPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsPoeInstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsSpAccGrp ¶ added in v1.21.1

func (sm *ServiceManager) DeleteRelationinfraRsSpAccGrp(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsSpAccPortPFromSpineProfile ¶ added in v0.4.18

func (sm *ServiceManager) DeleteRelationinfraRsSpAccPortPFromSpineProfile(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationinfraRsSpanVDestGrpFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsSpanVDestGrpFromLeafAccessPortPolicyGroup(parentDn, tnSpanVDestGrpName string) error

func (*ServiceManager) DeleteRelationinfraRsSpanVDestGrpFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsSpanVDestGrpFromPCVPCInterfacePolicyGroup(parentDn, tnSpanVDestGrpName string) error

func (*ServiceManager) DeleteRelationinfraRsSpanVSrcGrpFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsSpanVSrcGrpFromLeafAccessPortPolicyGroup(parentDn, tnSpanVSrcGrpName string) error

func (*ServiceManager) DeleteRelationinfraRsSpanVSrcGrpFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) DeleteRelationinfraRsSpanVSrcGrpFromPCVPCInterfacePolicyGroup(parentDn, tnSpanVSrcGrpName string) error

func (*ServiceManager) DeleteRelationinfraRsSpineAccNodePGrpFromSwitchAssociation ¶ added in v0.4.18

func (sm *ServiceManager) DeleteRelationinfraRsSpineAccNodePGrpFromSwitchAssociation(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsSpineBfdIpv4InstPol ¶ added in v1.12.3

func (sm *ServiceManager) DeleteRelationinfraRsSpineBfdIpv4InstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsSpineBfdIpv6InstPol ¶ added in v1.12.3

func (sm *ServiceManager) DeleteRelationinfraRsSpineBfdIpv6InstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsSpineCoppProfile ¶ added in v1.12.3

func (sm *ServiceManager) DeleteRelationinfraRsSpineCoppProfile(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsSpinePGrpToCdpIfPol ¶ added in v1.12.3

func (sm *ServiceManager) DeleteRelationinfraRsSpinePGrpToCdpIfPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsSpinePGrpToLldpIfPol ¶ added in v1.12.3

func (sm *ServiceManager) DeleteRelationinfraRsSpinePGrpToLldpIfPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsTopoctrlFastLinkFailoverInstPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsTopoctrlFastLinkFailoverInstPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsTopoctrlFwdScaleProfPol ¶ added in v1.12.2

func (sm *ServiceManager) DeleteRelationinfraRsTopoctrlFwdScaleProfPol(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVipAddrNsFromFCDomain ¶

func (sm *ServiceManager) DeleteRelationinfraRsVipAddrNsFromFCDomain(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVipAddrNsFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationinfraRsVipAddrNsFromL2Domain(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVipAddrNsFromL3DomainProfile ¶

func (sm *ServiceManager) DeleteRelationinfraRsVipAddrNsFromL3DomainProfile(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVipAddrNsFromPhysicalDomain ¶

func (sm *ServiceManager) DeleteRelationinfraRsVipAddrNsFromPhysicalDomain(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVipAddrNsFromVMMDomain ¶

func (sm *ServiceManager) DeleteRelationinfraRsVipAddrNsFromVMMDomain(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVlanNsFromFCDomain ¶

func (sm *ServiceManager) DeleteRelationinfraRsVlanNsFromFCDomain(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVlanNsFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationinfraRsVlanNsFromL2Domain(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVlanNsFromL3DomainProfile ¶

func (sm *ServiceManager) DeleteRelationinfraRsVlanNsFromL3DomainProfile(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVlanNsFromPhysicalDomain ¶

func (sm *ServiceManager) DeleteRelationinfraRsVlanNsFromPhysicalDomain(parentDn string) error

func (*ServiceManager) DeleteRelationinfraRsVlanNsFromVMMDomain ¶

func (sm *ServiceManager) DeleteRelationinfraRsVlanNsFromVMMDomain(parentDn string) error

func (*ServiceManager) DeleteRelationipRsNHTrackMemberFromL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationipRsNHTrackMemberFromL3outStaticRouteNextHop(parentDn string) error

func (*ServiceManager) DeleteRelationipRsNexthopRouteTrackFromL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationipRsNexthopRouteTrackFromL3outStaticRouteNextHop(parentDn string) error

func (*ServiceManager) DeleteRelationipRsRouteTrackFromL3outStaticRoute ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationipRsRouteTrackFromL3outStaticRoute(parentDn string) error

func (*ServiceManager) DeleteRelationl2extRsL2DomAttFromL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationl2extRsL2DomAttFromL2Outside(parentDn string) error

func (*ServiceManager) DeleteRelationl3extRsDampeningPolFromL3Outside ¶

func (sm *ServiceManager) DeleteRelationl3extRsDampeningPolFromL3Outside(parentDn, tnRtctrlProfileName, af string) error

func (*ServiceManager) DeleteRelationl3extRsDynPathAttFromLogicalInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationl3extRsDynPathAttFromLogicalInterfaceProfile(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationl3extRsInstPToNatMappingEPgFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) DeleteRelationl3extRsInstPToNatMappingEPgFromExternalNetworkInstanceProfile(parentDn string) error

func (*ServiceManager) DeleteRelationl3extRsInstPToProfileFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) DeleteRelationl3extRsInstPToProfileFromExternalNetworkInstanceProfile(parentDn, tnRtctrlProfileName, direction string) error

func (*ServiceManager) DeleteRelationl3extRsInterleakPolFromL3Outside ¶

func (sm *ServiceManager) DeleteRelationl3extRsInterleakPolFromL3Outside(parentDn string) error

func (*ServiceManager) DeleteRelationl3extRsL3DomAttFromL3Outside ¶

func (sm *ServiceManager) DeleteRelationl3extRsL3DomAttFromL3Outside(parentDn string) error

func (*ServiceManager) DeleteRelationl3extRsLIfPToNetflowMonitorPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) DeleteRelationl3extRsLIfPToNetflowMonitorPolFromLogicalInterfaceProfile(parentDn, tnNetflowMonitorPolName, fltType string) error

func (*ServiceManager) DeleteRelationl3extRsNodeL3OutAttFromLogicalNodeProfile ¶

func (sm *ServiceManager) DeleteRelationl3extRsNodeL3OutAttFromLogicalNodeProfile(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationl3extRsPathL3OutAttFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) DeleteRelationl3extRsPathL3OutAttFromLogicalInterfaceProfile(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationl3extRsSubnetToProfileFromL3ExtSubnet ¶

func (sm *ServiceManager) DeleteRelationl3extRsSubnetToProfileFromL3ExtSubnet(parentDn, tnRtctrlProfileName, direction string) error

func (*ServiceManager) DeleteRelationl3extRsSubnetToRtSummFromL3ExtSubnet ¶

func (sm *ServiceManager) DeleteRelationl3extRsSubnetToRtSummFromL3ExtSubnet(parentDn string) error

func (*ServiceManager) DeleteRelationmaintRsPolNotifFromMaintenancePolicy ¶

func (sm *ServiceManager) DeleteRelationmaintRsPolNotifFromMaintenancePolicy(parentDn string) error

func (*ServiceManager) DeleteRelationmgmtRsAddrInst ¶ added in v1.12.7

func (sm *ServiceManager) DeleteRelationmgmtRsAddrInst(parentDn string) error

func (*ServiceManager) DeleteRelationmgmtRsAddrInstFrommgmtInBZone ¶ added in v1.12.7

func (sm *ServiceManager) DeleteRelationmgmtRsAddrInstFrommgmtInBZone(parentDn string) error

func (*ServiceManager) DeleteRelationmgmtRsInB ¶ added in v1.12.7

func (sm *ServiceManager) DeleteRelationmgmtRsInB(parentDn string) error

func (*ServiceManager) DeleteRelationmgmtRsInBStNodeFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationmgmtRsInBStNodeFromInBandManagementEPg(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationmgmtRsInbEpg ¶ added in v1.12.7

func (sm *ServiceManager) DeleteRelationmgmtRsInbEpg(parentDn string) error

func (*ServiceManager) DeleteRelationmgmtRsOoB ¶ added in v1.12.7

func (sm *ServiceManager) DeleteRelationmgmtRsOoB(parentDn string) error

func (*ServiceManager) DeleteRelationmgmtRsOoBProvFromOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationmgmtRsOoBProvFromOutOfBandManagementEPg(parentDn, tnVzOOBBrCPName string) error

func (*ServiceManager) DeleteRelationmgmtRsOoBStNodeFromOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationmgmtRsOoBStNodeFromOutOfBandManagementEPg(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationmgmtRsOobEpg ¶ added in v1.12.7

func (sm *ServiceManager) DeleteRelationmgmtRsOobEpg(parentDn string) error

func (*ServiceManager) DeleteRelationrtctrlRsCtxPToSubjP ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationrtctrlRsCtxPToSubjP(parentDn, tnRtctrlSubjPName string) error

func (*ServiceManager) DeleteRelationrtctrlRsScopeToAttrP ¶ added in v1.17.0

func (sm *ServiceManager) DeleteRelationrtctrlRsScopeToAttrP(parentDn string) error

func (*ServiceManager) DeleteRelationspanRsSrcGrpToFilterGrpFromSPANSourceGroup ¶

func (sm *ServiceManager) DeleteRelationspanRsSrcGrpToFilterGrpFromSPANSourceGroup(parentDn string) error

func (*ServiceManager) DeleteRelationtacacsRsDestGroup ¶ added in v1.12.34

func (sm *ServiceManager) DeleteRelationtacacsRsDestGroup(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsAcc ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsAcc(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsCtrlrPMonPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsCtrlrPMonPol(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsDomMcastAddrNsFromVMMDomain ¶

func (sm *ServiceManager) DeleteRelationvmmRsDomMcastAddrNsFromVMMDomain(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsMcastAddrNs ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsMcastAddrNs(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsMgmtEPg ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsMgmtEPg(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsPrefEnhancedLagPolFromVMMDomain ¶

func (sm *ServiceManager) DeleteRelationvmmRsPrefEnhancedLagPolFromVMMDomain(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsToExtDevMgr ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsToExtDevMgr(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationvmmRsVmmCtrlrP ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVmmCtrlrP(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationvmmRsVswitchExporterPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVswitchExporterPol(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationvmmRsVswitchOverrideCdpIfPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVswitchOverrideCdpIfPol(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsVswitchOverrideFwPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVswitchOverrideFwPol(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsVswitchOverrideLacpPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVswitchOverrideLacpPol(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsVswitchOverrideLldpIfPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVswitchOverrideLldpIfPol(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsVswitchOverrideMcpIfPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVswitchOverrideMcpIfPol(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsVswitchOverrideMtuPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVswitchOverrideMtuPol(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsVswitchOverrideStpPol ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVswitchOverrideStpPol(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsVxlanNs ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVxlanNs(parentDn string) error

func (*ServiceManager) DeleteRelationvmmRsVxlanNsDef ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRelationvmmRsVxlanNsDef(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsALDevToDomP ¶ added in v1.37.0

func (sm *ServiceManager) DeleteRelationvnsRsALDevToDomP(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsALDevToPhysDomP ¶ added in v1.37.0

func (sm *ServiceManager) DeleteRelationvnsRsALDevToPhysDomP(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsAbsConnectionConnsFromConnection ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsAbsConnectionConnsFromConnection(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationvnsRsAbsCopyConnectionFromConnection ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsAbsCopyConnectionFromConnection(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationvnsRsCDevToCtrlrP ¶ added in v1.38.0

func (sm *ServiceManager) DeleteRelationvnsRsCDevToCtrlrP(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsCIfAttN ¶ added in v1.37.0

func (sm *ServiceManager) DeleteRelationvnsRsCIfAttN(parentDn, tDn string) error

func (*ServiceManager) DeleteRelationvnsRsCIfPathAtt ¶ added in v1.39.0

func (sm *ServiceManager) DeleteRelationvnsRsCIfPathAtt(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsConnToAConnFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsConnToAConnFromFunctionConnector(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsConnToCtxTermFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsConnToCtxTermFromFunctionConnector(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsConnToFltFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsConnToFltFromFunctionConnector(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsDefaultScopeToTermFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsDefaultScopeToTermFromFunctionNode(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsEPgDefToConn ¶ added in v1.41.0

func (sm *ServiceManager) DeleteRelationvnsRsEPgDefToConn(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsEPgDefToLIf ¶ added in v1.41.0

func (sm *ServiceManager) DeleteRelationvnsRsEPgDefToLIf(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsEPpInfoAtt ¶ added in v1.41.0

func (sm *ServiceManager) DeleteRelationvnsRsEPpInfoAtt(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsIPSLAMonitoringPolFromServiceRedirectPolicy ¶ added in v0.4.5

func (sm *ServiceManager) DeleteRelationvnsRsIPSLAMonitoringPolFromServiceRedirectPolicy(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsLDevCtxToLDevFromLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsLDevCtxToLDevFromLogicalDeviceContext(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsLDevCtxToRtrCfgFromLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsLDevCtxToRtrCfgFromLogicalDeviceContext(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsLIfCtxToBDFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsLIfCtxToBDFromLogicalInterfaceContext(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsLIfCtxToInstPFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsLIfCtxToInstPFromLogicalInterfaceContext(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsLIfCtxToLIfFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsLIfCtxToLIfFromLogicalInterfaceContext(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsLIfCtxToOutFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsLIfCtxToOutFromLogicalInterfaceContext(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsLIfCtxToSvcEPgPolFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsLIfCtxToSvcEPgPolFromLogicalInterfaceContext(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsLIfCtxToSvcRedirectPolFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsLIfCtxToSvcRedirectPolFromLogicalInterfaceContext(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsMConnAttFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsMConnAttFromFunctionConnector(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsNodeToAbsFuncProfFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsNodeToAbsFuncProfFromFunctionNode(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsNodeToCloudLDevFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsNodeToCloudLDevFromFunctionNode(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsNodeToLDevFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsNodeToLDevFromFunctionNode(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsNodeToMFuncFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) DeleteRelationvnsRsNodeToMFuncFromFunctionNode(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsRedirectHealthGroupFromDestinationofredirectedtraffic ¶ added in v0.4.5

func (sm *ServiceManager) DeleteRelationvnsRsRedirectHealthGroupFromDestinationofredirectedtraffic(parentDn string) error

func (*ServiceManager) DeleteRelationvnsRsSEPpInfoAtt ¶ added in v1.41.0

func (sm *ServiceManager) DeleteRelationvnsRsSEPpInfoAtt(parentDn string) error

func (*ServiceManager) DeleteRelationvzRsAnyToConsFromAny ¶

func (sm *ServiceManager) DeleteRelationvzRsAnyToConsFromAny(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationvzRsAnyToConsIfFromAny ¶

func (sm *ServiceManager) DeleteRelationvzRsAnyToConsIfFromAny(parentDn, tnVzCPIfName string) error

func (*ServiceManager) DeleteRelationvzRsAnyToProvFromAny ¶

func (sm *ServiceManager) DeleteRelationvzRsAnyToProvFromAny(parentDn, tnVzBrCPName string) error

func (*ServiceManager) DeleteRelationvzRsGraphAttFromContract ¶

func (sm *ServiceManager) DeleteRelationvzRsGraphAttFromContract(parentDn string) error

func (*ServiceManager) DeleteRelationvzRsIfFromImportedContract ¶ added in v0.4.1

func (sm *ServiceManager) DeleteRelationvzRsIfFromImportedContract(parentDn string) error

func (*ServiceManager) DeleteRelationvzRsInTermGraphAtt ¶ added in v1.34.0

func (sm *ServiceManager) DeleteRelationvzRsInTermGraphAtt(parentDn string) error

func (*ServiceManager) DeleteRelationvzRsOutTermGraphAtt ¶ added in v1.34.0

func (sm *ServiceManager) DeleteRelationvzRsOutTermGraphAtt(parentDn string) error

func (*ServiceManager) DeleteRelationvzRsSdwanPolFromContractSubject ¶

func (sm *ServiceManager) DeleteRelationvzRsSdwanPolFromContractSubject(parentDn string) error

func (*ServiceManager) DeleteRelationvzRsSubjFiltAttFromContractSubject ¶

func (sm *ServiceManager) DeleteRelationvzRsSubjFiltAttFromContractSubject(parentDn, tnVzFilterName string) error

func (*ServiceManager) DeleteRelationvzRsSubjGraphAttFromContractSubject ¶

func (sm *ServiceManager) DeleteRelationvzRsSubjGraphAttFromContractSubject(parentDn string) error

func (*ServiceManager) DeleteRemotePathofaFile ¶ added in v1.12.5

func (sm *ServiceManager) DeleteRemotePathofaFile(name string) error

func (*ServiceManager) DeleteRouteContextScope ¶ added in v1.17.0

func (sm *ServiceManager) DeleteRouteContextScope(route_control_context string, route_control_profile string, tenant string) error

func (*ServiceManager) DeleteRouteControlContext ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRouteControlContext(name string, route_control_profile string, tenant string, l3_outside string) error

func (*ServiceManager) DeleteRouteControlProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteRouteControlProfile(name string, tenant string) error

func (*ServiceManager) DeleteRtctrlSetAddComm ¶ added in v1.31.0

func (sm *ServiceManager) DeleteRtctrlSetAddComm(community string, action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteRtctrlSetComm ¶ added in v1.31.0

func (sm *ServiceManager) DeleteRtctrlSetComm(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteRtctrlSetDamp ¶ added in v1.31.0

func (sm *ServiceManager) DeleteRtctrlSetDamp(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteRtctrlSetNh ¶ added in v1.31.0

func (sm *ServiceManager) DeleteRtctrlSetNh(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteRtctrlSetPref ¶ added in v1.28.0

func (sm *ServiceManager) DeleteRtctrlSetPref(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteRtctrlSetRtMetric ¶ added in v1.31.0

func (sm *ServiceManager) DeleteRtctrlSetRtMetric(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteRtctrlSetRtMetricType ¶ added in v1.31.0

func (sm *ServiceManager) DeleteRtctrlSetRtMetricType(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteRtctrlSetTag ¶ added in v1.31.0

func (sm *ServiceManager) DeleteRtctrlSetTag(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteRtctrlSetWeight ¶ added in v1.31.0

func (sm *ServiceManager) DeleteRtctrlSetWeight(action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteSAMLProvider ¶ added in v1.12.20

func (sm *ServiceManager) DeleteSAMLProvider(name string) error

func (*ServiceManager) DeleteSAMLProviderGroup ¶ added in v1.12.25

func (sm *ServiceManager) DeleteSAMLProviderGroup(name string) error

func (*ServiceManager) DeleteSNMPCommunity ¶ added in v1.12.6

func (sm *ServiceManager) DeleteSNMPCommunity(name string, parent_dn string) error

func (*ServiceManager) DeleteSNMPContextProfile ¶ added in v1.12.8

func (sm *ServiceManager) DeleteSNMPContextProfile(vrf string, tenant string) error

func (*ServiceManager) DeleteSPANDestinationGroup ¶

func (sm *ServiceManager) DeleteSPANDestinationGroup(name string, tenant string) error

func (*ServiceManager) DeleteSPANSourceGroup ¶

func (sm *ServiceManager) DeleteSPANSourceGroup(name string, tenant string) error

func (*ServiceManager) DeleteSPANSourcedestinationGroupMatchLabel ¶

func (sm *ServiceManager) DeleteSPANSourcedestinationGroupMatchLabel(name string, span_source_group string, tenant string) error

func (*ServiceManager) DeleteSchedP ¶ added in v0.4.1

func (sm *ServiceManager) DeleteSchedP(name string) error

func (*ServiceManager) DeleteSecurityDomain ¶ added in v1.3.9

func (sm *ServiceManager) DeleteSecurityDomain(name string) error

func (*ServiceManager) DeleteServiceRedirectPolicy ¶ added in v0.4.5

func (sm *ServiceManager) DeleteServiceRedirectPolicy(name string, tenant string) error

func (*ServiceManager) DeleteSetASPath ¶ added in v1.31.0

func (sm *ServiceManager) DeleteSetASPath(criteria string, action_rule_profile string, tenant string) error

func (*ServiceManager) DeleteSpanningTreeInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteSpanningTreeInterfacePolicy(name string) error

func (*ServiceManager) DeleteSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) DeleteSpineAccessPortPolicyGroup(name string) error

func (*ServiceManager) DeleteSpineAccessPortSelector ¶ added in v1.21.1

func (sm *ServiceManager) DeleteSpineAccessPortSelector(spine_access_port_selector_type string, name string, spine_interface_profile string) error

func (*ServiceManager) DeleteSpineInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) DeleteSpineInterfaceProfile(name string) error

func (*ServiceManager) DeleteSpineProfile ¶ added in v0.4.18

func (sm *ServiceManager) DeleteSpineProfile(name string) error

func (*ServiceManager) DeleteSpineSwitchPolicyGroup ¶ added in v1.12.3

func (sm *ServiceManager) DeleteSpineSwitchPolicyGroup(name string) error

func (*ServiceManager) DeleteStaticPath ¶ added in v0.4.1

func (sm *ServiceManager) DeleteStaticPath(tDn string, application_epg string, application_profile string, tenant string) error

func (*ServiceManager) DeleteSubjectFilter ¶ added in v1.32.0

func (sm *ServiceManager) DeleteSubjectFilter(tnVzFilterName string, contract_subject string, contract string, tenant string) error

func (*ServiceManager) DeleteSubnet ¶

func (sm *ServiceManager) DeleteSubnet(ip string, bridge_domain string, tenant string) error

func (*ServiceManager) DeleteSwitchAssociation ¶

func (sm *ServiceManager) DeleteSwitchAssociation(switch_association_type string, name string, leaf_profile string) error

func (*ServiceManager) DeleteSwitchSpineAssociation ¶ added in v0.4.18

func (sm *ServiceManager) DeleteSwitchSpineAssociation(switch_association_type string, name string, spine_profile string) error

func (*ServiceManager) DeleteTACACSDestination ¶ added in v1.12.18

func (sm *ServiceManager) DeleteTACACSDestination(port string, host string, tacacs_monitoring_destination_group string) error

func (*ServiceManager) DeleteTACACSMonitoringDestinationGroup ¶ added in v1.12.17

func (sm *ServiceManager) DeleteTACACSMonitoringDestinationGroup(name string) error

func (*ServiceManager) DeleteTACACSPlusProviderGroup ¶ added in v1.12.22

func (sm *ServiceManager) DeleteTACACSPlusProviderGroup(name string) error

func (*ServiceManager) DeleteTACACSProvider ¶ added in v1.12.25

func (sm *ServiceManager) DeleteTACACSProvider(name string) error

func (*ServiceManager) DeleteTACACSSource ¶ added in v1.12.34

func (sm *ServiceManager) DeleteTACACSSource(name string, monitoring_target_scope string, monitoring_policy string, tenant string) error

func (*ServiceManager) DeleteTabooContract ¶

func (sm *ServiceManager) DeleteTabooContract(name string, tenant string) error

func (*ServiceManager) DeleteTag ¶ added in v1.19.0

func (sm *ServiceManager) DeleteTag(key string, parentDn string) error

func (*ServiceManager) DeleteTenant ¶

func (sm *ServiceManager) DeleteTenant(name string) error

func (*ServiceManager) DeleteTenantToCloudAccountAssociation ¶ added in v1.50.0

func (sm *ServiceManager) DeleteTenantToCloudAccountAssociation(tenant string) error

func (*ServiceManager) DeleteTenantandVRFdestinationforInterVRFLeakedRoutes ¶ added in v1.44.0

func (sm *ServiceManager) DeleteTenantandVRFdestinationforInterVRFLeakedRoutes(destinationCtxName string, destinationTenantName string, parentDn string) error

func (*ServiceManager) DeleteTerminalConnector ¶ added in v1.3.27

func (sm *ServiceManager) DeleteTerminalConnector(consumer_terminal_node string, l4_l7_service_graph_template string, tenant string) error

func (*ServiceManager) DeleteTriggerScheduler ¶

func (sm *ServiceManager) DeleteTriggerScheduler(name string) error

func (*ServiceManager) DeleteUserDomain ¶ added in v1.12.12

func (sm *ServiceManager) DeleteUserDomain(name string, local_user string) error

func (*ServiceManager) DeleteUserManagement ¶ added in v1.12.31

func (sm *ServiceManager) DeleteUserManagement() error

func (*ServiceManager) DeleteUserRole ¶ added in v1.12.14

func (sm *ServiceManager) DeleteUserRole(name string, user_domain string, local_user string) error

func (*ServiceManager) DeleteVLANPool ¶

func (sm *ServiceManager) DeleteVLANPool(allocMode string, name string) error

func (*ServiceManager) DeleteVMMController ¶ added in v1.3.29

func (sm *ServiceManager) DeleteVMMController(name string, vmm_domain string, provider_profile_vendor string) error

func (*ServiceManager) DeleteVMMCredential ¶ added in v1.3.29

func (sm *ServiceManager) DeleteVMMCredential(name string, vmm_domain string, provider_profile_vendor string) error

func (*ServiceManager) DeleteVMMDomain ¶

func (sm *ServiceManager) DeleteVMMDomain(name string, provider_profile_vendor string) error

func (*ServiceManager) DeleteVMMSecurityPolicy ¶ added in v0.4.1

func (sm *ServiceManager) DeleteVMMSecurityPolicy(domain_tDn string, application_epg string, application_profile string, tenant string) error

func (*ServiceManager) DeleteVPCDomainPolicy ¶ added in v1.3.29

func (sm *ServiceManager) DeleteVPCDomainPolicy(name string) error

func (*ServiceManager) DeleteVPCExplicitProtectionGroup ¶

func (sm *ServiceManager) DeleteVPCExplicitProtectionGroup(name string) error

func (*ServiceManager) DeleteVRF ¶

func (sm *ServiceManager) DeleteVRF(name string, tenant string) error

func (*ServiceManager) DeleteVSANPool ¶

func (sm *ServiceManager) DeleteVSANPool(allocMode string, name string) error

func (*ServiceManager) DeleteVSwitchPolicyGroup ¶ added in v1.3.29

func (sm *ServiceManager) DeleteVSwitchPolicyGroup(vmm_domain string, provider_profile_vendor string) error

func (*ServiceManager) DeleteVXLANPool ¶

func (sm *ServiceManager) DeleteVXLANPool(name string) error

func (*ServiceManager) DeleteVirtualLogicalInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) DeleteVirtualLogicalInterfaceProfile(encap string, nodeDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) error

func (*ServiceManager) DeleteVlanEncapsulationforVxlanTraffic ¶

func (sm *ServiceManager) DeleteVlanEncapsulationforVxlanTraffic(attachable_access_entity_profile string) error

func (*ServiceManager) DeleteWebTokenData ¶ added in v1.12.31

func (sm *ServiceManager) DeleteWebTokenData() error

func (*ServiceManager) DeleteX509Certificate ¶ added in v0.0.11

func (sm *ServiceManager) DeleteX509Certificate(name string, local_user string) error

func (*ServiceManager) Get ¶

func (sm *ServiceManager) Get(dn string) (*container.Container, error)

func (*ServiceManager) GetViaURL ¶

func (sm *ServiceManager) GetViaURL(url string) (*container.Container, error)

func (*ServiceManager) ListAAAAuthentication ¶ added in v1.12.16

func (sm *ServiceManager) ListAAAAuthentication() ([]*models.AAAAuthentication, error)

func (*ServiceManager) ListAESEncryptionPassphraseandKeysforConfigExportImport ¶ added in v1.12.13

func (sm *ServiceManager) ListAESEncryptionPassphraseandKeysforConfigExportImport() ([]*models.AESEncryptionPassphraseandKeysforConfigExportImport, error)

func (*ServiceManager) ListASNumber ¶ added in v1.31.0

func (sm *ServiceManager) ListASNumber(set_as_path_criteria string, action_rule_profile string, tenant string) ([]*models.ASNumber, error)

func (*ServiceManager) ListAaaDomainRef ¶ added in v1.24.0

func (sm *ServiceManager) ListAaaDomainRef(parentDn string) ([]*models.AaaDomainRef, error)

func (*ServiceManager) ListAccessAccessGroup ¶ added in v0.4.9

func (sm *ServiceManager) ListAccessAccessGroup(access_port_selector_type string, access_port_selector string, leaf_interface_profile string) ([]*models.AccessAccessGroup, error)

func (*ServiceManager) ListAccessGeneric ¶ added in v0.4.4

func (sm *ServiceManager) ListAccessGeneric(attachable_access_entity_profile string) ([]*models.AccessGeneric, error)

func (*ServiceManager) ListAccessPortBlock ¶

func (sm *ServiceManager) ListAccessPortBlock(access_port_selector_type string, access_port_selector string, leaf_interface_profile string) ([]*models.AccessPortBlock, error)

func (*ServiceManager) ListAccessPortSelector ¶

func (sm *ServiceManager) ListAccessPortSelector(leaf_interface_profile string) ([]*models.AccessPortSelector, error)

func (*ServiceManager) ListAccessSubPortBlock ¶

func (sm *ServiceManager) ListAccessSubPortBlock(access_port_selector_type string, access_port_selector string, leaf_interface_profile string) ([]*models.AccessSubPortBlock, error)

func (*ServiceManager) ListAccessSwitchPolicyGroup ¶ added in v1.12.2

func (sm *ServiceManager) ListAccessSwitchPolicyGroup() ([]*models.AccessSwitchPolicyGroup, error)

func (*ServiceManager) ListActionRuleProfile ¶

func (sm *ServiceManager) ListActionRuleProfile(tenant string) ([]*models.ActionRuleProfile, error)

func (*ServiceManager) ListAnnotation ¶ added in v1.19.0

func (sm *ServiceManager) ListAnnotation() ([]*models.Annotation, error)

func (*ServiceManager) ListAny ¶

func (sm *ServiceManager) ListAny(vrf string, tenant string) ([]*models.Any, error)

func (*ServiceManager) ListAnycastEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) ListAnycastEndpoint(parent_dn string) ([]*models.AnycastEndpoint, error)

func (*ServiceManager) ListApplicationEPG ¶

func (sm *ServiceManager) ListApplicationEPG(application_profile string, tenant string) ([]*models.ApplicationEPG, error)

func (*ServiceManager) ListApplicationEPGLagPolicy ¶ added in v1.35.0

func (sm *ServiceManager) ListApplicationEPGLagPolicy(domain_dn string, application_epg string, application_profile string, tenant string) ([]*models.ApplicationEPGLagPolicy, error)

func (*ServiceManager) ListApplicationProfile ¶

func (sm *ServiceManager) ListApplicationProfile(tenant string) ([]*models.ApplicationProfile, error)

func (*ServiceManager) ListAttachableAccessEntityProfile ¶

func (sm *ServiceManager) ListAttachableAccessEntityProfile() ([]*models.AttachableAccessEntityProfile, error)

func (*ServiceManager) ListAuthenticationMethodfortheDomain ¶ added in v1.12.21

func (sm *ServiceManager) ListAuthenticationMethodfortheDomain(login_domain string) ([]*models.AuthenticationMethodfortheDomain, error)

func (*ServiceManager) ListAutonomousSystemProfile ¶

func (sm *ServiceManager) ListAutonomousSystemProfile() ([]*models.AutonomousSystemProfile, error)

func (*ServiceManager) ListBDDHCPLabel ¶ added in v1.3.27

func (sm *ServiceManager) ListBDDHCPLabel(bridge_domain string, tenant string) ([]*models.BDDHCPLabel, error)

func (*ServiceManager) ListBFDInterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) ListBFDInterfacePolicy(tenant string) ([]*models.BFDInterfacePolicy, error)

func (*ServiceManager) ListBFDInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListBFDInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.BFDInterfaceProfile, error)

func (*ServiceManager) ListBGPAddressFamilyContextPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListBGPAddressFamilyContextPolicy(tenant string) ([]*models.BGPAddressFamilyContextPolicy, error)

func (*ServiceManager) ListBGPAddressFamilyContextPolicyRelationship ¶ added in v1.25.0

func (sm *ServiceManager) ListBGPAddressFamilyContextPolicyRelationship(vrf string, tenant string) ([]*models.BGPAddressFamilyContextPolicyRelationship, error)

func (*ServiceManager) ListBGPPeerPrefixPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListBGPPeerPrefixPolicy(tenant string) ([]*models.BGPPeerPrefixPolicy, error)

func (*ServiceManager) ListBGPTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListBGPTimersPolicy(tenant string) ([]*models.BGPTimersPolicy, error)

func (*ServiceManager) ListBgpAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string) ([]*models.BgpAutonomousSystemProfile, error)

func (*ServiceManager) ListBgpBestPathPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListBgpBestPathPolicy(tenant string) ([]*models.BgpBestPathPolicy, error)

func (*ServiceManager) ListBgpPeerConnectivityProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListBgpPeerConnectivityProfile(logical_node_profile string, l3_outside string, tenant string) ([]*models.BgpPeerConnectivityProfile, error)

func (*ServiceManager) ListBgpRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) ListBgpRouteSummarization(tenant string) ([]*models.BgpRouteSummarization, error)

func (*ServiceManager) ListBlockUserLoginsPolicy ¶ added in v1.12.31

func (sm *ServiceManager) ListBlockUserLoginsPolicy() ([]*models.BlockUserLoginsPolicy, error)

func (*ServiceManager) ListBridgeDomain ¶

func (sm *ServiceManager) ListBridgeDomain(tenant string) ([]*models.BridgeDomain, error)

func (*ServiceManager) ListCDPInterfacePolicy ¶

func (sm *ServiceManager) ListCDPInterfacePolicy() ([]*models.CDPInterfacePolicy, error)

func (*ServiceManager) ListCOOPGroupPolicy ¶ added in v1.12.10

func (sm *ServiceManager) ListCOOPGroupPolicy() ([]*models.COOPGroupPolicy, error)

func (*ServiceManager) ListCloudAWSProvider ¶

func (sm *ServiceManager) ListCloudAWSProvider(tenant string) ([]*models.CloudAWSProvider, error)

func (*ServiceManager) ListCloudAccount ¶ added in v1.50.0

func (sm *ServiceManager) ListCloudAccount(tenant string) ([]*models.CloudAccount, error)

func (*ServiceManager) ListCloudActiveDirectory ¶ added in v1.50.0

func (sm *ServiceManager) ListCloudActiveDirectory(tenant string) ([]*models.CloudActiveDirectory, error)

func (*ServiceManager) ListCloudApplicationcontainer ¶

func (sm *ServiceManager) ListCloudApplicationcontainer(tenant string) ([]*models.CloudApplicationcontainer, error)

func (*ServiceManager) ListCloudAvailabilityZone ¶

func (sm *ServiceManager) ListCloudAvailabilityZone(cloud_providers_region string, cloud_provider_profile_vendor string) ([]*models.CloudAvailabilityZone, error)

func (*ServiceManager) ListCloudCIDRPool ¶

func (sm *ServiceManager) ListCloudCIDRPool(cloud_context_profile string, tenant string) ([]*models.CloudCIDRPool, error)

func (*ServiceManager) ListCloudContextProfile ¶

func (sm *ServiceManager) ListCloudContextProfile(tenant string) ([]*models.CloudContextProfile, error)

func (*ServiceManager) ListCloudCredentials ¶ added in v1.50.0

func (sm *ServiceManager) ListCloudCredentials(tenant string) ([]*models.CloudCredentials, error)

func (*ServiceManager) ListCloudDomainProfile ¶

func (sm *ServiceManager) ListCloudDomainProfile() ([]*models.CloudDomainProfile, error)

func (*ServiceManager) ListCloudEPg ¶

func (sm *ServiceManager) ListCloudEPg(cloud_application_container string, tenant string) ([]*models.CloudEPg, error)

func (*ServiceManager) ListCloudEndpointSelector ¶

func (sm *ServiceManager) ListCloudEndpointSelector(cloud_epg string, cloud_application_container string, tenant string) ([]*models.CloudEndpointSelector, error)

func (*ServiceManager) ListCloudEndpointSelectorforExternalEPgs ¶

func (sm *ServiceManager) ListCloudEndpointSelectorforExternalEPgs(cloud_external_epg string, cloud_application_container string, tenant string) ([]*models.CloudEndpointSelectorforExternalEPgs, error)

func (*ServiceManager) ListCloudExternalEPg ¶

func (sm *ServiceManager) ListCloudExternalEPg(cloud_application_container string, tenant string) ([]*models.CloudExternalEPg, error)

func (*ServiceManager) ListCloudProviderProfile ¶

func (sm *ServiceManager) ListCloudProviderProfile() ([]*models.CloudProviderProfile, error)

func (*ServiceManager) ListCloudProvidersRegion ¶

func (sm *ServiceManager) ListCloudProvidersRegion(cloud_provider_profile_vendor string) ([]*models.CloudProvidersRegion, error)

func (*ServiceManager) ListCloudSubnet ¶

func (sm *ServiceManager) ListCloudSubnet(cloud_cidr_pool_addr string, cloud_context_profile string, tenant string) ([]*models.CloudSubnet, error)

func (*ServiceManager) ListCloudTemplateforExternalNetwork ¶ added in v1.53.0

func (sm *ServiceManager) ListCloudTemplateforExternalNetwork(infra_network_template string, tenant string) ([]*models.CloudTemplateforExternalNetwork, error)

func (*ServiceManager) ListCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) ListCloudVpnGateway(cloudContextProfile string, tenant string) ([]*models.CloudVpnGateway, error)

func (*ServiceManager) ListConcreteDevice ¶ added in v1.38.0

func (sm *ServiceManager) ListConcreteDevice(parent_dn string) ([]*models.ConcreteDevice, error)

func (*ServiceManager) ListConcreteInterface ¶ added in v1.39.0

func (sm *ServiceManager) ListConcreteInterface(parent_dn string) ([]*models.ConcreteInterface, error)

func (*ServiceManager) ListConfigurationExportPolicy ¶

func (sm *ServiceManager) ListConfigurationExportPolicy() ([]*models.ConfigurationExportPolicy, error)

func (*ServiceManager) ListConfigurationImportPolicy ¶

func (sm *ServiceManager) ListConfigurationImportPolicy() ([]*models.ConfigurationImportPolicy, error)

func (*ServiceManager) ListConnection ¶ added in v1.3.27

func (sm *ServiceManager) ListConnection(l4_l7_service_graph_template string, tenant string) ([]*models.Connection, error)

func (*ServiceManager) ListConsoleAuthenticationMethod ¶ added in v1.12.14

func (sm *ServiceManager) ListConsoleAuthenticationMethod() ([]*models.ConsoleAuthenticationMethod, error)

func (*ServiceManager) ListConsumerTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) ListConsumerTerminalNode(l4_l7_service_graph_template string, tenant string) ([]*models.ConsumerTerminalNode, error)

func (*ServiceManager) ListContract ¶

func (sm *ServiceManager) ListContract(tenant string) ([]*models.Contract, error)

func (*ServiceManager) ListContractConsumer ¶ added in v0.4.1

func (sm *ServiceManager) ListContractConsumer(application_epg string, application_profile string, tenant string) ([]*models.ContractConsumer, error)

func (*ServiceManager) ListContractInterfaceRelationship ¶ added in v1.26.0

func (sm *ServiceManager) ListContractInterfaceRelationship(application_epg string, application_profile string, tenant string) ([]*models.ContractInterfaceRelationship, error)

func (*ServiceManager) ListContractProvider ¶ added in v0.4.1

func (sm *ServiceManager) ListContractProvider(application_epg string, application_profile string, tenant string) ([]*models.ContractProvider, error)

func (*ServiceManager) ListContractSubject ¶

func (sm *ServiceManager) ListContractSubject(contract string, tenant string) ([]*models.ContractSubject, error)

func (*ServiceManager) ListCtrlrFwP ¶ added in v0.4.1

func (sm *ServiceManager) ListCtrlrFwP() ([]*models.CtrlrFwP, error)

func (*ServiceManager) ListCtrlrMaintP ¶ added in v0.4.1

func (sm *ServiceManager) ListCtrlrMaintP() ([]*models.CtrlrMaintP, error)

func (*ServiceManager) ListDHCPOption ¶ added in v1.3.27

func (sm *ServiceManager) ListDHCPOption(dhcp_option_policy string, tenant string) ([]*models.DHCPOption, error)

func (*ServiceManager) ListDHCPOptionPolicy ¶ added in v1.3.27

func (sm *ServiceManager) ListDHCPOptionPolicy(tenant string) ([]*models.DHCPOptionPolicy, error)

func (*ServiceManager) ListDHCPRelayPolicy ¶ added in v1.3.27

func (sm *ServiceManager) ListDHCPRelayPolicy(tenant string) ([]*models.DHCPRelayPolicy, error)

func (*ServiceManager) ListDefaultAuthenticationMethodforallLogins ¶ added in v1.12.22

func (sm *ServiceManager) ListDefaultAuthenticationMethodforallLogins() ([]*models.DefaultAuthenticationMethodforallLogins, error)

func (*ServiceManager) ListDefaultRadiusAuthenticationSettings ¶ added in v1.12.16

func (sm *ServiceManager) ListDefaultRadiusAuthenticationSettings() ([]*models.DefaultRadiusAuthenticationSettings, error)

func (*ServiceManager) ListDestinationofredirectedtraffic ¶ added in v0.4.5

func (sm *ServiceManager) ListDestinationofredirectedtraffic(service_redirect_policy string, tenant string) ([]*models.Destinationofredirectedtraffic, error)

func (*ServiceManager) ListDownload ¶ added in v0.4.1

func (sm *ServiceManager) ListDownload() ([]*models.Download, error)

func (*ServiceManager) ListDuoProviderGroup ¶ added in v1.12.16

func (sm *ServiceManager) ListDuoProviderGroup() ([]*models.DuoProviderGroup, error)

func (*ServiceManager) ListEPGsUsingFunction ¶ added in v0.4.1

func (sm *ServiceManager) ListEPGsUsingFunction(access_generic string, attachable_access_entity_profile string) ([]*models.EPGsUsingFunction, error)

func (*ServiceManager) ListEPLoopProtectionPolicy ¶ added in v1.12.10

func (sm *ServiceManager) ListEPLoopProtectionPolicy() ([]*models.EPLoopProtectionPolicy, error)

func (*ServiceManager) ListEPgDef ¶ added in v1.41.0

func (sm *ServiceManager) ListEPgDef(parent_dn string) ([]*models.EPgDef, error)

func (*ServiceManager) ListEndPointRetentionPolicy ¶

func (sm *ServiceManager) ListEndPointRetentionPolicy(tenant string) ([]*models.EndPointRetentionPolicy, error)

func (*ServiceManager) ListEndpointControlPolicy ¶ added in v1.12.9

func (sm *ServiceManager) ListEndpointControlPolicy() ([]*models.EndpointControlPolicy, error)

func (*ServiceManager) ListEndpointSecurityGroup ¶ added in v1.3.29

func (sm *ServiceManager) ListEndpointSecurityGroup(application_profile string, tenant string) ([]*models.EndpointSecurityGroup, error)

func (*ServiceManager) ListEndpointSecurityGroupEPgSelector ¶ added in v1.3.29

func (sm *ServiceManager) ListEndpointSecurityGroupEPgSelector(endpoint_security_group string, application_profile string, tenant string) ([]*models.EndpointSecurityGroupEPgSelector, error)

func (*ServiceManager) ListEndpointSecurityGroupSelector ¶ added in v1.3.29

func (sm *ServiceManager) ListEndpointSecurityGroupSelector(endpoint_security_group string, application_profile string, tenant string) ([]*models.EndpointSecurityGroupSelector, error)

func (*ServiceManager) ListEndpointSecurityGroupTagSelector ¶ added in v1.3.29

func (sm *ServiceManager) ListEndpointSecurityGroupTagSelector(endpoint_security_group string, application_profile string, tenant string) ([]*models.EndpointSecurityGroupTagSelector, error)

func (*ServiceManager) ListEpReachability ¶ added in v1.43.0

func (sm *ServiceManager) ListEpReachability(parent_dn string) ([]*models.EpReachability, error)

func (*ServiceManager) ListErrorDisabledRecoveryEvent ¶ added in v1.12.14

func (sm *ServiceManager) ListErrorDisabledRecoveryEvent(error_disabled_recovery_policy string) ([]*models.ErrorDisabledRecoveryEvent, error)

func (*ServiceManager) ListErrorDisabledRecoveryPolicy ¶ added in v1.12.14

func (sm *ServiceManager) ListErrorDisabledRecoveryPolicy() ([]*models.ErrorDisabledRecoveryPolicy, error)

func (*ServiceManager) ListExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ListExternalNetworkInstanceProfile(l3_outside string, tenant string) ([]*models.ExternalNetworkInstanceProfile, error)

func (*ServiceManager) ListFCDomain ¶

func (sm *ServiceManager) ListFCDomain() ([]*models.FCDomain, error)

func (*ServiceManager) ListFEXProfile ¶ added in v0.4.9

func (sm *ServiceManager) ListFEXProfile() ([]*models.FEXProfile, error)

func (*ServiceManager) ListFVDomain ¶ added in v0.4.1

func (sm *ServiceManager) ListFVDomain(application_epg string, application_profile string, tenant string) ([]*models.FVDomain, error)

func (*ServiceManager) ListFabricNode ¶ added in v0.4.1

func (sm *ServiceManager) ListFabricNode(logical_node_profile string, l3_outside string, tenant string) ([]*models.FabricNode, error)

func (*ServiceManager) ListFabricNodeControl ¶ added in v1.12.9

func (sm *ServiceManager) ListFabricNodeControl() ([]*models.FabricNodeControl, error)

func (*ServiceManager) ListFabricNodeMember ¶

func (sm *ServiceManager) ListFabricNodeMember() ([]*models.FabricNodeMember, error)

func (*ServiceManager) ListFabricPathEndpoint ¶ added in v0.5.11

func (sm *ServiceManager) ListFabricPathEndpoint(fabric_path_end_point_container_nodeId string, fabric_pod_id string) ([]*models.FabricPathEndpoint, error)

func (*ServiceManager) ListFabricWideSettingsPolicy ¶ added in v1.12.15

func (sm *ServiceManager) ListFabricWideSettingsPolicy() ([]*models.FabricWideSettingsPolicy, error)

func (*ServiceManager) ListFexBundleGroup ¶ added in v0.4.9

func (sm *ServiceManager) ListFexBundleGroup(fex_profile string) ([]*models.FexBundleGroup, error)

func (*ServiceManager) ListFilter ¶

func (sm *ServiceManager) ListFilter(tenant string) ([]*models.Filter, error)

func (*ServiceManager) ListFilterEntry ¶

func (sm *ServiceManager) ListFilterEntry(filter string, tenant string) ([]*models.FilterEntry, error)

func (*ServiceManager) ListFilterRelationship ¶ added in v1.36.0

func (sm *ServiceManager) ListFilterRelationship(parentDn string) ([]*models.FilterRelationship, error)

func (*ServiceManager) ListFirmware ¶ added in v0.4.1

func (sm *ServiceManager) ListFirmware() ([]*models.Firmware, error)

func (*ServiceManager) ListFirmwareCtrlrRunning ¶ added in v0.5.11

func (sm *ServiceManager) ListFirmwareCtrlrRunning() ([]*models.FirmwareCtrlrRunning, error)

func (*ServiceManager) ListFirmwareDownloadTask ¶

func (sm *ServiceManager) ListFirmwareDownloadTask() ([]*models.FirmwareDownloadTask, error)

func (*ServiceManager) ListFirmwareGroup ¶

func (sm *ServiceManager) ListFirmwareGroup() ([]*models.FirmwareGroup, error)

func (*ServiceManager) ListFirmwarePolicy ¶

func (sm *ServiceManager) ListFirmwarePolicy() ([]*models.FirmwarePolicy, error)

func (*ServiceManager) ListFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) ListFunctionConnector(function_node string, l4_l7_service_graph_template string, tenant string) ([]*models.FunctionConnector, error)

func (*ServiceManager) ListFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) ListFunctionNode(l4_l7_service_graph_template string, tenant string) ([]*models.FunctionNode, error)

func (*ServiceManager) ListHSRPGroupPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListHSRPGroupPolicy(tenant string) ([]*models.HSRPGroupPolicy, error)

func (*ServiceManager) ListHSRPGroupProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListHSRPGroupProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.HSRPGroupProfile, error)

func (*ServiceManager) ListHSRPInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListHSRPInterfacePolicy(tenant string) ([]*models.HSRPInterfacePolicy, error)

func (*ServiceManager) ListIPAgingPolicy ¶ added in v1.12.9

func (sm *ServiceManager) ListIPAgingPolicy() ([]*models.IPAgingPolicy, error)

func (*ServiceManager) ListIPSLAMonitoringPolicy ¶ added in v1.41.0

func (sm *ServiceManager) ListIPSLAMonitoringPolicy(tenant string) ([]*models.IPSLAMonitoringPolicy, error)

func (*ServiceManager) ListISISDomainPolicy ¶ added in v1.12.15

func (sm *ServiceManager) ListISISDomainPolicy() ([]*models.ISISDomainPolicy, error)

func (*ServiceManager) ListISISLevel ¶ added in v1.12.15

func (sm *ServiceManager) ListISISLevel(isis_domain_policy string) ([]*models.ISISLevel, error)

func (*ServiceManager) ListImportedContract ¶ added in v0.4.1

func (sm *ServiceManager) ListImportedContract(tenant string) ([]*models.ImportedContract, error)

func (*ServiceManager) ListInBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) ListInBManagedNodesZone(managed_node_connectivity_group string) ([]*models.InBManagedNodesZone, error)

func (*ServiceManager) ListInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ListInBandManagementEPg(management_profile string, tenant string) ([]*models.InBandManagementEPg, error)

func (*ServiceManager) ListInTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) ListInTermSubject(contract_subject string, contract string, tenant string) ([]*models.InTermSubject, error)

func (*ServiceManager) ListInbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) ListInbandStaticNode(in_band_management_epg string, management_profile string, tenant string) ([]*models.InbandStaticNode, error)

func (*ServiceManager) ListInfraRsDomP ¶ added in v1.25.1

func (sm *ServiceManager) ListInfraRsDomP(attachable_access_entity_profile string) ([]*models.InfraRsDomP, error)

func (*ServiceManager) ListInterVRFLeakedRoutesContainer ¶ added in v1.45.0

func (sm *ServiceManager) ListInterVRFLeakedRoutesContainer(vrf string, tenant string) ([]*models.InterVRFLeakedRoutesContainer, error)

func (*ServiceManager) ListInterfaceFCPolicy ¶

func (sm *ServiceManager) ListInterfaceFCPolicy() ([]*models.InterfaceFCPolicy, error)

func (*ServiceManager) ListInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) ListInterfaceProfile(spine_profile string) ([]*models.InterfaceProfile, error)

func (*ServiceManager) ListKeypairforSAMLEncryption ¶ added in v1.12.16

func (sm *ServiceManager) ListKeypairforSAMLEncryption() ([]*models.KeypairforSAMLEncryption, error)

func (*ServiceManager) ListL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) ListL2Domain() ([]*models.L2Domain, error)

func (*ServiceManager) ListL2InterfacePolicy ¶

func (sm *ServiceManager) ListL2InterfacePolicy() ([]*models.L2InterfacePolicy, error)

func (*ServiceManager) ListL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) ListL2Outside(tenant string) ([]*models.L2Outside, error)

func (*ServiceManager) ListL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ListL2outExternalEpg(l2_outside string, tenant string) ([]*models.L2outExternalEpg, error)

func (*ServiceManager) ListL3DomainProfile ¶

func (sm *ServiceManager) ListL3DomainProfile() ([]*models.L3DomainProfile, error)

func (*ServiceManager) ListL3InterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) ListL3InterfacePolicy() ([]*models.L3InterfacePolicy, error)

func (*ServiceManager) ListL3L3ExtSubnet ¶

func (sm *ServiceManager) ListL3L3ExtSubnet(external_network_instance_profile string, l3_outside string, tenant string) ([]*models.L3ExtSubnet, error)

func (*ServiceManager) ListL3Outside ¶

func (sm *ServiceManager) ListL3Outside(tenant string) ([]*models.L3Outside, error)

func (*ServiceManager) ListL3outBGPProtocolProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outBGPProtocolProfile(logical_node_profile string, l3_outside string, tenant string) ([]*models.L3outBGPProtocolProfile, error)

func (*ServiceManager) ListL3outBgpExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outBgpExternalPolicy(l3_outside string, tenant string) ([]*models.L3outBgpExternalPolicy, error)

func (*ServiceManager) ListL3outHSRPInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outHSRPInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.L3outHSRPInterfaceProfile, error)

func (*ServiceManager) ListL3outHSRPSecondaryVIP ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outHSRPSecondaryVIP(hsrp_group_profile string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.L3outHSRPSecondaryVIP, error)

func (*ServiceManager) ListL3outOspfExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outOspfExternalPolicy(l3_outside string, tenant string) ([]*models.L3outOspfExternalPolicy, error)

func (*ServiceManager) ListL3outPathAttachment ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outPathAttachment(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.L3outPathAttachment, error)

func (*ServiceManager) ListL3outPathAttachmentSecondaryIp ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outPathAttachmentSecondaryIp(leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.L3outPathAttachmentSecondaryIp, error)

func (*ServiceManager) ListL3outRouteTagPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outRouteTagPolicy(tenant string) ([]*models.L3outRouteTagPolicy, error)

func (*ServiceManager) ListL3outStaticRoute ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outStaticRoute(fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string) ([]*models.L3outStaticRoute, error)

func (*ServiceManager) ListL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outStaticRouteNextHop(static_route_ip string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string) ([]*models.L3outStaticRouteNextHop, error)

func (*ServiceManager) ListL3outVPCMember ¶ added in v1.3.29

func (sm *ServiceManager) ListL3outVPCMember(leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.L3outVPCMember, error)

func (*ServiceManager) ListL4L7RedirectHealthGroup ¶ added in v1.40.0

func (sm *ServiceManager) ListL4L7RedirectHealthGroup(tenant string) ([]*models.L4L7RedirectHealthGroup, error)

func (*ServiceManager) ListL4L7ServiceGraphTemplate ¶ added in v1.3.27

func (sm *ServiceManager) ListL4L7ServiceGraphTemplate(tenant string) ([]*models.L4L7ServiceGraphTemplate, error)

func (*ServiceManager) ListL4ToL7Devices ¶ added in v1.37.0

func (sm *ServiceManager) ListL4ToL7Devices(tenant string) ([]*models.L4ToL7Devices, error)

func (*ServiceManager) ListLACPMemberPolicy ¶ added in v1.48.0

func (sm *ServiceManager) ListLACPMemberPolicy() ([]*models.LACPMemberPolicy, error)

func (*ServiceManager) ListLACPPolicy ¶

func (sm *ServiceManager) ListLACPPolicy() ([]*models.LACPPolicy, error)

func (*ServiceManager) ListLDAPGroupMap ¶ added in v1.12.26

func (sm *ServiceManager) ListLDAPGroupMap() ([]*models.LDAPGroupMap, error)

func (*ServiceManager) ListLDAPGroupMapRule ¶ added in v1.12.17

func (sm *ServiceManager) ListLDAPGroupMapRule() ([]*models.LDAPGroupMapRule, error)

func (*ServiceManager) ListLDAPGroupMapruleref ¶ added in v1.12.19

func (sm *ServiceManager) ListLDAPGroupMapruleref(ldap_group_map string) ([]*models.LDAPGroupMapruleref, error)

func (*ServiceManager) ListLDAPProvider ¶ added in v1.12.16

func (sm *ServiceManager) ListLDAPProvider() ([]*models.LDAPProvider, error)

func (*ServiceManager) ListLLDPInterfacePolicy ¶

func (sm *ServiceManager) ListLLDPInterfacePolicy() ([]*models.LLDPInterfacePolicy, error)

func (*ServiceManager) ListLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ListLeafAccessPortPolicyGroup() ([]*models.LeafAccessPortPolicyGroup, error)

func (*ServiceManager) ListLeafBreakoutPortGroup ¶ added in v1.3.27

func (sm *ServiceManager) ListLeafBreakoutPortGroup() ([]*models.LeafBreakoutPortGroup, error)

func (*ServiceManager) ListLeafInterfaceProfile ¶

func (sm *ServiceManager) ListLeafInterfaceProfile() ([]*models.LeafInterfaceProfile, error)

func (*ServiceManager) ListLeafProfile ¶

func (sm *ServiceManager) ListLeafProfile() ([]*models.LeafProfile, error)

func (*ServiceManager) ListLeakInternalPrefix ¶ added in v1.54.0

func (sm *ServiceManager) ListLeakInternalPrefix(vrf string, tenant string) ([]*models.LeakInternalPrefix, error)

func (*ServiceManager) ListLeakInternalSubnet ¶ added in v1.44.0

func (sm *ServiceManager) ListLeakInternalSubnet(vrf string, tenant string) ([]*models.LeakInternalSubnet, error)

func (*ServiceManager) ListLinkLevelPolicy ¶ added in v1.0.8

func (sm *ServiceManager) ListLinkLevelPolicy() ([]*models.LinkLevelPolicy, error)

func (*ServiceManager) ListLocalAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListLocalAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string) ([]*models.LocalAutonomousSystemProfile, error)

func (*ServiceManager) ListLocalUser ¶

func (sm *ServiceManager) ListLocalUser() ([]*models.LocalUser, error)

func (*ServiceManager) ListLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) ListLogicalDeviceContext(tenant string) ([]*models.LogicalDeviceContext, error)

func (*ServiceManager) ListLogicalInterface ¶ added in v1.37.0

func (sm *ServiceManager) ListLogicalInterface(parent_dn string) ([]*models.LogicalInterface, error)

func (*ServiceManager) ListLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ListLogicalInterfaceContext(logicalDeviceContextNodeNameOrLbl string, logicalDeviceContextGraphNameOrLbl string, logical_device_context_ctrctNameOrLbl string, tenant string) ([]*models.LogicalInterfaceContext, error)

func (*ServiceManager) ListLogicalInterfaceProfile ¶

func (sm *ServiceManager) ListLogicalInterfaceProfile(logical_node_profile string, l3_outside string, tenant string) ([]*models.LogicalInterfaceProfile, error)

func (*ServiceManager) ListLogicalNodeProfile ¶

func (sm *ServiceManager) ListLogicalNodeProfile(l3_outside string, tenant string) ([]*models.LogicalNodeProfile, error)

func (*ServiceManager) ListLoginDomain ¶ added in v1.12.21

func (sm *ServiceManager) ListLoginDomain() ([]*models.LoginDomain, error)

func (*ServiceManager) ListLoopBackInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListLoopBackInterfaceProfile(fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string) ([]*models.LoopBackInterfaceProfile, error)

func (*ServiceManager) ListMaintGrp ¶ added in v0.4.1

func (sm *ServiceManager) ListMaintGrp() ([]*models.MaintGrp, error)

func (*ServiceManager) ListMaintP ¶ added in v0.4.1

func (sm *ServiceManager) ListMaintP() ([]*models.MaintP, error)

func (*ServiceManager) ListMaintenancePolicy ¶

func (sm *ServiceManager) ListMaintenancePolicy() ([]*models.MaintenancePolicy, error)

func (*ServiceManager) ListManagedNodeConnectivityGroup ¶ added in v1.12.2

func (sm *ServiceManager) ListManagedNodeConnectivityGroup() ([]*models.ManagedNodeConnectivityGroup, error)

func (*ServiceManager) ListMatchCommFactorsFromCommunityTerm ¶ added in v1.30.0

func (sm *ServiceManager) ListMatchCommFactorsFromCommunityTerm(parentDn string) ([]*models.MatchCommunityFactor, error)

func (*ServiceManager) ListMatchCommunityFactor ¶ added in v1.30.0

func (sm *ServiceManager) ListMatchCommunityFactor(match_community_term string, match_rule string, tenant string) ([]*models.MatchCommunityFactor, error)

func (*ServiceManager) ListMatchCommunityTerm ¶ added in v1.30.0

func (sm *ServiceManager) ListMatchCommunityTerm(match_rule string, tenant string) ([]*models.MatchCommunityTerm, error)

func (*ServiceManager) ListMatchRouteDestinationRule ¶ added in v1.3.29

func (sm *ServiceManager) ListMatchRouteDestinationRule(match_rule string, tenant string) ([]*models.MatchRouteDestinationRule, error)

func (*ServiceManager) ListMatchRule ¶ added in v1.3.29

func (sm *ServiceManager) ListMatchRule(tenant string) ([]*models.MatchRule, error)

func (*ServiceManager) ListMatchRuleBasedonCommunityRegularExpression ¶ added in v1.27.0

func (sm *ServiceManager) ListMatchRuleBasedonCommunityRegularExpression(match_rule string, tenant string) ([]*models.MatchRuleBasedonCommunityRegularExpression, error)

func (*ServiceManager) ListMgmtconnectivitypreference ¶ added in v1.12.9

func (sm *ServiceManager) ListMgmtconnectivitypreference() ([]*models.Mgmtconnectivitypreference, error)

func (*ServiceManager) ListMiscablingProtocolInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) ListMiscablingProtocolInstancePolicy() ([]*models.MiscablingProtocolInstancePolicy, error)

func (*ServiceManager) ListMiscablingProtocolInterfacePolicy ¶

func (sm *ServiceManager) ListMiscablingProtocolInterfacePolicy() ([]*models.MiscablingProtocolInterfacePolicy, error)

func (*ServiceManager) ListMonitoringPolicy ¶

func (sm *ServiceManager) ListMonitoringPolicy(tenant string) ([]*models.MonitoringPolicy, error)

func (*ServiceManager) ListMulticastAddressBlock ¶ added in v1.46.0

func (sm *ServiceManager) ListMulticastAddressBlock(multicast_address_pool string) ([]*models.MulticastAddressBlock, error)

func (*ServiceManager) ListMulticastAddressPool ¶ added in v1.46.0

func (sm *ServiceManager) ListMulticastAddressPool() ([]*models.MulticastAddressPool, error)

func (*ServiceManager) ListNexthopEpPReachability ¶ added in v1.43.0

func (sm *ServiceManager) ListNexthopEpPReachability(parent_dn string) ([]*models.NexthopEpPReachability, error)

func (*ServiceManager) ListNexthopUnchangedAction ¶ added in v1.31.0

func (sm *ServiceManager) ListNexthopUnchangedAction(action_rule_profile string, tenant string) ([]*models.NexthopUnchangedAction, error)

func (*ServiceManager) ListNlbEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) ListNlbEndpoint(parent_dn string) ([]*models.NlbEndpoint, error)

func (*ServiceManager) ListNodeBlk ¶ added in v0.4.1

func (sm *ServiceManager) ListNodeBlk() ([]*models.NodeBlk, error)

func (*ServiceManager) ListNodeBlock ¶ added in v0.4.1

func (sm *ServiceManager) ListNodeBlock(switch_association_type string, switch_association string, leaf_profile string) ([]*models.NodeBlock, error)

func (*ServiceManager) ListNodeBlockFW ¶

func (sm *ServiceManager) ListNodeBlockFW(firmware_group string) ([]*models.NodeBlockFW, error)

func (*ServiceManager) ListNodeBlockMG ¶

func (sm *ServiceManager) ListNodeBlockMG(pod_maintenance_group string) ([]*models.NodeBlockMG, error)

func (*ServiceManager) ListNodePolicyEndPoint ¶

func (sm *ServiceManager) ListNodePolicyEndPoint(vpc_explicit_protection_group string) ([]*models.NodePolicyEndPoint, error)

func (*ServiceManager) ListOOBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) ListOOBManagedNodesZone(managed_node_connectivity_group string) ([]*models.OOBManagedNodesZone, error)

func (*ServiceManager) ListOSPFInterfacePolicy ¶

func (sm *ServiceManager) ListOSPFInterfacePolicy(tenant string) ([]*models.OSPFInterfacePolicy, error)

func (*ServiceManager) ListOSPFInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListOSPFInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.OSPFInterfaceProfile, error)

func (*ServiceManager) ListOSPFTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListOSPFTimersPolicy(tenant string) ([]*models.OSPFTimersPolicy, error)

func (*ServiceManager) ListOSource ¶ added in v0.4.1

func (sm *ServiceManager) ListOSource() ([]*models.OSource, error)

func (*ServiceManager) ListOspfRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) ListOspfRouteSummarization(tenant string) ([]*models.OspfRouteSummarization, error)

func (*ServiceManager) ListOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ListOutOfBandManagementEPg(management_profile string, tenant string) ([]*models.OutOfBandManagementEPg, error)

func (*ServiceManager) ListOutTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) ListOutTermSubject(contract_subject string, contract string, tenant string) ([]*models.OutTermSubject, error)

func (*ServiceManager) ListOutofServiceFabricPath ¶ added in v1.19.0

func (sm *ServiceManager) ListOutofServiceFabricPath() ([]*models.OutofServiceFabricPath, error)

func (*ServiceManager) ListOutofbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) ListOutofbandStaticNode(out_of_band_management_epg string, management_profile string, tenant string) ([]*models.OutofbandStaticNode, error)

func (*ServiceManager) ListOverridePCVPCPolicyGroup ¶ added in v1.48.0

func (sm *ServiceManager) ListOverridePCVPCPolicyGroup(leaf_access_bundle_policy_group string) ([]*models.OverridePCVPCPolicyGroup, error)

func (*ServiceManager) ListPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ListPCVPCInterfacePolicyGroup() ([]*models.PCVPCInterfacePolicyGroup, error)

func (*ServiceManager) ListPODMaintenanceGroup ¶

func (sm *ServiceManager) ListPODMaintenanceGroup() ([]*models.PODMaintenanceGroup, error)

func (*ServiceManager) ListPasswordChangeExpirationPolicy ¶ added in v1.12.31

func (sm *ServiceManager) ListPasswordChangeExpirationPolicy() ([]*models.PasswordChangeExpirationPolicy, error)

func (*ServiceManager) ListPhysicalDomain ¶

func (sm *ServiceManager) ListPhysicalDomain() ([]*models.PhysicalDomain, error)

func (*ServiceManager) ListPortSecurityPolicy ¶

func (sm *ServiceManager) ListPortSecurityPolicy() ([]*models.PortSecurityPolicy, error)

func (*ServiceManager) ListPortTracking ¶ added in v1.12.10

func (sm *ServiceManager) ListPortTracking() ([]*models.PortTracking, error)

func (*ServiceManager) ListProviderGroupMember ¶ added in v1.12.30

func (sm *ServiceManager) ListProviderGroupMember(duo_provider_group string) ([]*models.ProviderGroupMember, error)

func (*ServiceManager) ListProviderTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) ListProviderTerminalNode(l4_l7_service_graph_template string, tenant string) ([]*models.ProviderTerminalNode, error)

func (*ServiceManager) ListPublicKeyManagement ¶ added in v1.12.31

func (sm *ServiceManager) ListPublicKeyManagement() ([]*models.PublicKeyManagement, error)

func (*ServiceManager) ListQOSInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) ListQOSInstancePolicy() ([]*models.QOSInstancePolicy, error)

func (*ServiceManager) ListRADIUSProvider ¶ added in v1.12.33

func (sm *ServiceManager) ListRADIUSProvider() ([]*models.RADIUSProvider, error)

func (*ServiceManager) ListRADIUSProviderGroup ¶ added in v1.12.17

func (sm *ServiceManager) ListRADIUSProviderGroup() ([]*models.RADIUSProviderGroup, error)

func (*ServiceManager) ListRSAProvider ¶ added in v1.12.20

func (sm *ServiceManager) ListRSAProvider() ([]*models.RSAProvider, error)

func (*ServiceManager) ListRanges ¶

func (sm *ServiceManager) ListRanges(vlan_pool_allocMode string, vlan_pool string) ([]*models.Ranges, error)

func (*ServiceManager) ListRecurringWindow ¶ added in v1.12.4

func (sm *ServiceManager) ListRecurringWindow(scheduler string) ([]*models.RecurringWindow, error)

func (*ServiceManager) ListRedistributeMultipathAction ¶ added in v1.31.0

func (sm *ServiceManager) ListRedistributeMultipathAction(action_rule_profile string, tenant string) ([]*models.RedistributeMultipathAction, error)

func (*ServiceManager) ListRemotePathofaFile ¶ added in v1.12.5

func (sm *ServiceManager) ListRemotePathofaFile() ([]*models.RemotePathofaFile, error)

func (*ServiceManager) ListRouteContextScope ¶ added in v1.17.0

func (sm *ServiceManager) ListRouteContextScope(route_control_context string, route_control_profile string, tenant string) ([]*models.RouteContextScope, error)

func (*ServiceManager) ListRouteControlContext ¶ added in v1.3.29

func (sm *ServiceManager) ListRouteControlContext(route_control_profile string, tenant string, l3_outside string) ([]*models.RouteControlContext, error)

func (*ServiceManager) ListRouteControlProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListRouteControlProfile(tenant string) ([]*models.RouteControlProfile, error)

func (*ServiceManager) ListRtctrlSetAddComm ¶ added in v1.31.0

func (sm *ServiceManager) ListRtctrlSetAddComm(action_rule_profile string, tenant string) ([]*models.RtctrlSetAddComm, error)

func (*ServiceManager) ListRtctrlSetComm ¶ added in v1.31.0

func (sm *ServiceManager) ListRtctrlSetComm(action_rule_profile string, tenant string) ([]*models.RtctrlSetComm, error)

func (*ServiceManager) ListRtctrlSetDamp ¶ added in v1.31.0

func (sm *ServiceManager) ListRtctrlSetDamp(action_rule_profile string, tenant string) ([]*models.RtctrlSetDamp, error)

func (*ServiceManager) ListRtctrlSetNh ¶ added in v1.31.0

func (sm *ServiceManager) ListRtctrlSetNh(action_rule_profile string, tenant string) ([]*models.RtctrlSetNh, error)

func (*ServiceManager) ListRtctrlSetPref ¶ added in v1.28.0

func (sm *ServiceManager) ListRtctrlSetPref(action_rule_profile string, tenant string) ([]*models.RtctrlSetPref, error)

func (*ServiceManager) ListRtctrlSetRtMetric ¶ added in v1.31.0

func (sm *ServiceManager) ListRtctrlSetRtMetric(action_rule_profile string, tenant string) ([]*models.RtctrlSetRtMetric, error)

func (*ServiceManager) ListRtctrlSetRtMetricType ¶ added in v1.31.0

func (sm *ServiceManager) ListRtctrlSetRtMetricType(action_rule_profile string, tenant string) ([]*models.RtctrlSetRtMetricType, error)

func (*ServiceManager) ListRtctrlSetTag ¶ added in v1.31.0

func (sm *ServiceManager) ListRtctrlSetTag(action_rule_profile string, tenant string) ([]*models.RtctrlSetTag, error)

func (*ServiceManager) ListRtctrlSetWeight ¶ added in v1.31.0

func (sm *ServiceManager) ListRtctrlSetWeight(action_rule_profile string, tenant string) ([]*models.RtctrlSetWeight, error)

func (*ServiceManager) ListSAMLProvider ¶ added in v1.12.20

func (sm *ServiceManager) ListSAMLProvider() ([]*models.SAMLProvider, error)

func (*ServiceManager) ListSAMLProviderGroup ¶ added in v1.12.25

func (sm *ServiceManager) ListSAMLProviderGroup() ([]*models.SAMLProviderGroup, error)

func (*ServiceManager) ListSNMPCommunity ¶ added in v1.12.6

func (sm *ServiceManager) ListSNMPCommunity(parent_dn string) ([]*models.SNMPCommunity, error)

func (*ServiceManager) ListSNMPContextProfile ¶ added in v1.12.8

func (sm *ServiceManager) ListSNMPContextProfile(vrf string, tenant string) ([]*models.SNMPContextProfile, error)

func (*ServiceManager) ListSPANDestinationGroup ¶

func (sm *ServiceManager) ListSPANDestinationGroup(tenant string) ([]*models.SPANDestinationGroup, error)

func (*ServiceManager) ListSPANSourceGroup ¶

func (sm *ServiceManager) ListSPANSourceGroup(tenant string) ([]*models.SPANSourceGroup, error)

func (*ServiceManager) ListSPANSourcedestinationGroupMatchLabel ¶

func (sm *ServiceManager) ListSPANSourcedestinationGroupMatchLabel(span_source_group string, tenant string) ([]*models.SPANSourcedestinationGroupMatchLabel, error)

func (*ServiceManager) ListSchedP ¶ added in v0.4.1

func (sm *ServiceManager) ListSchedP() ([]*models.SchedP, error)

func (*ServiceManager) ListSecurityDomain ¶ added in v1.3.9

func (sm *ServiceManager) ListSecurityDomain() ([]*models.SecurityDomain, error)

func (*ServiceManager) ListServiceRedirectPolicy ¶ added in v0.4.5

func (sm *ServiceManager) ListServiceRedirectPolicy(tenant string) ([]*models.ServiceRedirectPolicy, error)

func (*ServiceManager) ListSetASPath ¶ added in v1.31.0

func (sm *ServiceManager) ListSetASPath(action_rule_profile string, tenant string) ([]*models.SetASPath, error)

func (*ServiceManager) ListSetAsPathASNs ¶ added in v1.35.1

func (sm *ServiceManager) ListSetAsPathASNs(parentDn string) ([]*models.ASNumber, error)

func (*ServiceManager) ListSpanningTreeInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListSpanningTreeInterfacePolicy() ([]*models.SpanningTreeInterfacePolicy, error)

func (*ServiceManager) ListSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) ListSpineAccessPortPolicyGroup() ([]*models.SpineAccessPortPolicyGroup, error)

func (*ServiceManager) ListSpineAccessPortSelector ¶ added in v1.21.1

func (sm *ServiceManager) ListSpineAccessPortSelector(spine_interface_profile string) ([]*models.SpineAccessPortSelector, error)

func (*ServiceManager) ListSpineInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) ListSpineInterfaceProfile() ([]*models.SpineInterfaceProfile, error)

func (*ServiceManager) ListSpineProfile ¶ added in v0.4.18

func (sm *ServiceManager) ListSpineProfile() ([]*models.SpineProfile, error)

func (*ServiceManager) ListSpineSwitchPolicyGroup ¶ added in v1.12.3

func (sm *ServiceManager) ListSpineSwitchPolicyGroup() ([]*models.SpineSwitchPolicyGroup, error)

func (*ServiceManager) ListStaticPath ¶ added in v0.4.1

func (sm *ServiceManager) ListStaticPath(application_epg string, application_profile string, tenant string) ([]*models.StaticPath, error)

func (*ServiceManager) ListSubjectFilter ¶ added in v1.32.0

func (sm *ServiceManager) ListSubjectFilter(contract_subject string, contract string, tenant string) ([]*models.SubjectFilter, error)

func (*ServiceManager) ListSubnet ¶

func (sm *ServiceManager) ListSubnet(bridge_domain string, tenant string) ([]*models.Subnet, error)

func (*ServiceManager) ListSwitchAssociation ¶

func (sm *ServiceManager) ListSwitchAssociation(leaf_profile string) ([]*models.SwitchAssociation, error)

func (*ServiceManager) ListSwitchSpineAssociation ¶ added in v0.4.18

func (sm *ServiceManager) ListSwitchSpineAssociation(spine_profile string) ([]*models.SwitchSpineAssociation, error)

func (*ServiceManager) ListSyntheticMaintPValidateCtrlrMaintP ¶ added in v0.4.1

func (sm *ServiceManager) ListSyntheticMaintPValidateCtrlrMaintP(targetVersion string) ([]*models.MaintPValidate, error)

func (*ServiceManager) ListSyntheticMaintPValidateCtrlrMaintPReport ¶ added in v0.4.1

func (sm *ServiceManager) ListSyntheticMaintPValidateCtrlrMaintPReport(report string) ([]*models.MaintPValidate, error)

func (*ServiceManager) ListSystem ¶ added in v0.4.1

func (sm *ServiceManager) ListSystem() ([]*models.System, error)

func (*ServiceManager) ListTACACSDestination ¶ added in v1.12.18

func (sm *ServiceManager) ListTACACSDestination(tacacs_monitoring_destination_group string) ([]*models.TACACSDestination, error)

func (*ServiceManager) ListTACACSMonitoringDestinationGroup ¶ added in v1.12.17

func (sm *ServiceManager) ListTACACSMonitoringDestinationGroup() ([]*models.TACACSMonitoringDestinationGroup, error)

func (*ServiceManager) ListTACACSPlusProviderGroup ¶ added in v1.12.22

func (sm *ServiceManager) ListTACACSPlusProviderGroup() ([]*models.TACACSPlusProviderGroup, error)

func (*ServiceManager) ListTACACSProvider ¶ added in v1.12.25

func (sm *ServiceManager) ListTACACSProvider() ([]*models.TACACSProvider, error)

func (*ServiceManager) ListTACACSSource ¶ added in v1.12.34

func (sm *ServiceManager) ListTACACSSource(monitoring_target_scope string, monitoring_policy string, tenant string) ([]*models.TACACSSource, error)

func (*ServiceManager) ListTabooContract ¶

func (sm *ServiceManager) ListTabooContract(tenant string) ([]*models.TabooContract, error)

func (*ServiceManager) ListTag ¶ added in v1.19.0

func (sm *ServiceManager) ListTag() ([]*models.Tag, error)

func (*ServiceManager) ListTenant ¶

func (sm *ServiceManager) ListTenant() ([]*models.Tenant, error)

func (*ServiceManager) ListTenantToCloudAccountAssociation ¶ added in v1.50.0

func (sm *ServiceManager) ListTenantToCloudAccountAssociation(tenant string) ([]*models.TenantToCloudAccountAssociation, error)

func (*ServiceManager) ListTenantandVRFdestinationforInterVRFLeakedRoutes ¶ added in v1.44.0

func (sm *ServiceManager) ListTenantandVRFdestinationforInterVRFLeakedRoutes(parentDn string) ([]*models.TenantandVRFdestinationforInterVRFLeakedRoutes, error)

func (*ServiceManager) ListTerminalConnector ¶ added in v1.3.27

func (sm *ServiceManager) ListTerminalConnector(consumer_terminal_node string, l4_l7_service_graph_template string, tenant string) ([]*models.TerminalConnector, error)

func (*ServiceManager) ListTopologyFabricNode ¶ added in v0.4.1

func (sm *ServiceManager) ListTopologyFabricNode() ([]*models.TopologyFabricNode, error)

func (*ServiceManager) ListTriggerScheduler ¶

func (sm *ServiceManager) ListTriggerScheduler() ([]*models.TriggerScheduler, error)

func (*ServiceManager) ListUpgJob ¶ added in v0.4.1

func (sm *ServiceManager) ListUpgJob() ([]*models.UpgJob, error)

func (*ServiceManager) ListUserDomain ¶ added in v1.12.12

func (sm *ServiceManager) ListUserDomain(local_user string) ([]*models.UserDomain, error)

func (*ServiceManager) ListUserManagement ¶ added in v1.12.31

func (sm *ServiceManager) ListUserManagement() ([]*models.UserManagement, error)

func (*ServiceManager) ListUserRole ¶ added in v1.12.14

func (sm *ServiceManager) ListUserRole(user_domain string, local_user string) ([]*models.UserRole, error)

func (*ServiceManager) ListVLANPool ¶

func (sm *ServiceManager) ListVLANPool() ([]*models.VLANPool, error)

func (*ServiceManager) ListVMMController ¶ added in v1.3.29

func (sm *ServiceManager) ListVMMController(vmm_domain string, provider_profile_vendor string) ([]*models.VMMController, error)

func (*ServiceManager) ListVMMCredential ¶ added in v1.3.29

func (sm *ServiceManager) ListVMMCredential(vmm_domain string, provider_profile_vendor string) ([]*models.VMMCredential, error)

func (*ServiceManager) ListVMMDomain ¶

func (sm *ServiceManager) ListVMMDomain(provider_profile_vendor string) ([]*models.VMMDomain, error)

func (*ServiceManager) ListVMMSecurityPolicy ¶ added in v0.4.1

func (sm *ServiceManager) ListVMMSecurityPolicy(domain_tDn string, application_epg string, application_profile string, tenant string) ([]*models.VMMSecurityPolicy, error)

func (*ServiceManager) ListVPCDomainPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ListVPCDomainPolicy() ([]*models.VPCDomainPolicy, error)

func (*ServiceManager) ListVPCExplicitProtectionGroup ¶

func (sm *ServiceManager) ListVPCExplicitProtectionGroup() ([]*models.VPCExplicitProtectionGroup, error)

func (*ServiceManager) ListVRF ¶

func (sm *ServiceManager) ListVRF(tenant string) ([]*models.VRF, error)

func (*ServiceManager) ListVSANPool ¶

func (sm *ServiceManager) ListVSANPool() ([]*models.VSANPool, error)

func (*ServiceManager) ListVSwitchPolicyGroup ¶ added in v1.3.29

func (sm *ServiceManager) ListVSwitchPolicyGroup(vmm_domain string, provider_profile_vendor string) ([]*models.VSwitchPolicyGroup, error)

func (*ServiceManager) ListVXLANPool ¶

func (sm *ServiceManager) ListVXLANPool() ([]*models.VXLANPool, error)

func (*ServiceManager) ListVirtualLogicalInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ListVirtualLogicalInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) ([]*models.VirtualLogicalInterfaceProfile, error)

func (*ServiceManager) ListVlanEncapsulationforVxlanTraffic ¶

func (sm *ServiceManager) ListVlanEncapsulationforVxlanTraffic(attachable_access_entity_profile string) ([]*models.VlanEncapsulationforVxlanTraffic, error)

func (*ServiceManager) ListWebTokenData ¶ added in v1.12.31

func (sm *ServiceManager) ListWebTokenData() ([]*models.WebTokenData, error)

func (*ServiceManager) ListX509Certificate ¶ added in v0.0.11

func (sm *ServiceManager) ListX509Certificate(local_user string) ([]*models.X509Certificate, error)

func (*ServiceManager) PostViaURL ¶ added in v0.4.1

func (sm *ServiceManager) PostViaURL(url string, obj models.Model) (*container.Container, error)

func (*ServiceManager) PrepareModel ¶

func (sm *ServiceManager) PrepareModel(obj models.Model) (*container.Container, string, error)

func (*ServiceManager) ReadAAAAuthentication ¶ added in v1.12.16

func (sm *ServiceManager) ReadAAAAuthentication() (*models.AAAAuthentication, error)

func (*ServiceManager) ReadAESEncryptionPassphraseandKeysforConfigExportImport ¶ added in v1.12.13

func (sm *ServiceManager) ReadAESEncryptionPassphraseandKeysforConfigExportImport() (*models.AESEncryptionPassphraseandKeysforConfigExportImport, error)

func (*ServiceManager) ReadASNumber ¶ added in v1.31.0

func (sm *ServiceManager) ReadASNumber(order string, set_as_path_criteria string, action_rule_profile string, tenant string) (*models.ASNumber, error)

func (*ServiceManager) ReadAaaDomainRef ¶ added in v1.24.0

func (sm *ServiceManager) ReadAaaDomainRef(name string, parentDn string) (*models.AaaDomainRef, error)

func (*ServiceManager) ReadAccessAccessGroup ¶ added in v0.4.9

func (sm *ServiceManager) ReadAccessAccessGroup(access_port_selector_type string, access_port_selector string, leaf_interface_profile string) (*models.AccessAccessGroup, error)

func (*ServiceManager) ReadAccessGeneric ¶ added in v0.4.4

func (sm *ServiceManager) ReadAccessGeneric(name string, attachable_access_entity_profile string) (*models.AccessGeneric, error)

func (*ServiceManager) ReadAccessPortBlock ¶

func (sm *ServiceManager) ReadAccessPortBlock(name string, access_port_selector_type string, access_port_selector string, leaf_interface_profile string) (*models.AccessPortBlock, error)

func (*ServiceManager) ReadAccessPortSelector ¶

func (sm *ServiceManager) ReadAccessPortSelector(access_port_selector_type string, name string, leaf_interface_profile string) (*models.AccessPortSelector, error)

func (*ServiceManager) ReadAccessSubPortBlock ¶

func (sm *ServiceManager) ReadAccessSubPortBlock(name string, access_port_selector_type string, access_port_selector string, leaf_interface_profile string) (*models.AccessSubPortBlock, error)

func (*ServiceManager) ReadAccessSwitchPolicyGroup ¶ added in v1.12.2

func (sm *ServiceManager) ReadAccessSwitchPolicyGroup(name string) (*models.AccessSwitchPolicyGroup, error)

func (*ServiceManager) ReadActionRuleProfile ¶

func (sm *ServiceManager) ReadActionRuleProfile(name string, tenant string) (*models.ActionRuleProfile, error)

func (*ServiceManager) ReadAnnotation ¶ added in v1.19.0

func (sm *ServiceManager) ReadAnnotation(key string, parentDn string) (*models.Annotation, error)

func (*ServiceManager) ReadAny ¶

func (sm *ServiceManager) ReadAny(vrf string, tenant string) (*models.Any, error)

func (*ServiceManager) ReadAnycastEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) ReadAnycastEndpoint(mac string, parent_dn string) (*models.AnycastEndpoint, error)

func (*ServiceManager) ReadApplicationEPG ¶

func (sm *ServiceManager) ReadApplicationEPG(name string, application_profile string, tenant string) (*models.ApplicationEPG, error)

func (*ServiceManager) ReadApplicationEPGLagPolicy ¶ added in v1.35.0

func (sm *ServiceManager) ReadApplicationEPGLagPolicy(domain_dn string, application_epg string, application_profile string, tenant string) (*models.ApplicationEPGLagPolicy, error)

func (*ServiceManager) ReadApplicationProfile ¶

func (sm *ServiceManager) ReadApplicationProfile(name string, tenant string) (*models.ApplicationProfile, error)

func (*ServiceManager) ReadAttachableAccessEntityProfile ¶

func (sm *ServiceManager) ReadAttachableAccessEntityProfile(name string) (*models.AttachableAccessEntityProfile, error)

func (*ServiceManager) ReadAuthenticationMethodfortheDomain ¶ added in v1.12.21

func (sm *ServiceManager) ReadAuthenticationMethodfortheDomain(login_domain string) (*models.AuthenticationMethodfortheDomain, error)

func (*ServiceManager) ReadAutonomousSystemProfile ¶

func (sm *ServiceManager) ReadAutonomousSystemProfile() (*models.AutonomousSystemProfile, error)

func (*ServiceManager) ReadBDDHCPLabel ¶ added in v1.3.27

func (sm *ServiceManager) ReadBDDHCPLabel(name string, bridge_domain string, tenant string) (*models.BDDHCPLabel, error)

func (*ServiceManager) ReadBFDInterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) ReadBFDInterfacePolicy(name string, tenant string) (*models.BFDInterfacePolicy, error)

func (*ServiceManager) ReadBFDInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadBFDInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.BFDInterfaceProfile, error)

func (*ServiceManager) ReadBGPAddressFamilyContextPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadBGPAddressFamilyContextPolicy(name string, tenant string) (*models.BGPAddressFamilyContextPolicy, error)

func (*ServiceManager) ReadBGPAddressFamilyContextPolicyRelationship ¶ added in v1.25.0

func (sm *ServiceManager) ReadBGPAddressFamilyContextPolicyRelationship(af string, tnBgpCtxAfPolName string, vrf string, tenant string) (*models.BGPAddressFamilyContextPolicyRelationship, error)

func (*ServiceManager) ReadBGPPeerPrefixPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadBGPPeerPrefixPolicy(name string, tenant string) (*models.BGPPeerPrefixPolicy, error)

func (*ServiceManager) ReadBGPTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadBGPTimersPolicy(name string, tenant string) (*models.BGPTimersPolicy, error)

func (*ServiceManager) ReadBgpAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string) (*models.BgpAutonomousSystemProfile, error)

func (*ServiceManager) ReadBgpBestPathPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadBgpBestPathPolicy(name string, tenant string) (*models.BgpBestPathPolicy, error)

func (*ServiceManager) ReadBgpPeerConnectivityProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadBgpPeerConnectivityProfile(addr string, logical_node_profile string, l3_outside string, tenant string) (*models.BgpPeerConnectivityProfile, error)

func (*ServiceManager) ReadBgpRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) ReadBgpRouteSummarization(name string, tenant string) (*models.BgpRouteSummarization, error)

func (*ServiceManager) ReadBlockUserLoginsPolicy ¶ added in v1.12.31

func (sm *ServiceManager) ReadBlockUserLoginsPolicy() (*models.BlockUserLoginsPolicy, error)

func (*ServiceManager) ReadBridgeDomain ¶

func (sm *ServiceManager) ReadBridgeDomain(name string, tenant string) (*models.BridgeDomain, error)

func (*ServiceManager) ReadCDPInterfacePolicy ¶

func (sm *ServiceManager) ReadCDPInterfacePolicy(name string) (*models.CDPInterfacePolicy, error)

func (*ServiceManager) ReadCOOPGroupPolicy ¶ added in v1.12.10

func (sm *ServiceManager) ReadCOOPGroupPolicy(name string) (*models.COOPGroupPolicy, error)

func (*ServiceManager) ReadCloudAWSProvider ¶

func (sm *ServiceManager) ReadCloudAWSProvider(tenant string) (*models.CloudAWSProvider, error)

func (*ServiceManager) ReadCloudAccount ¶ added in v1.50.0

func (sm *ServiceManager) ReadCloudAccount(vendor string, account_id string, tenant string) (*models.CloudAccount, error)

func (*ServiceManager) ReadCloudActiveDirectory ¶ added in v1.50.0

func (sm *ServiceManager) ReadCloudActiveDirectory(active_directory_id string, tenant string) (*models.CloudActiveDirectory, error)

func (*ServiceManager) ReadCloudApplicationcontainer ¶

func (sm *ServiceManager) ReadCloudApplicationcontainer(name string, tenant string) (*models.CloudApplicationcontainer, error)

func (*ServiceManager) ReadCloudAvailabilityZone ¶

func (sm *ServiceManager) ReadCloudAvailabilityZone(name string, cloud_providers_region string, cloud_provider_profile_vendor string) (*models.CloudAvailabilityZone, error)

func (*ServiceManager) ReadCloudCIDRPool ¶

func (sm *ServiceManager) ReadCloudCIDRPool(addr string, cloud_context_profile string, tenant string) (*models.CloudCIDRPool, error)

func (*ServiceManager) ReadCloudContextProfile ¶

func (sm *ServiceManager) ReadCloudContextProfile(name string, tenant string) (*models.CloudContextProfile, error)

func (*ServiceManager) ReadCloudCredentials ¶ added in v1.50.0

func (sm *ServiceManager) ReadCloudCredentials(name string, tenant string) (*models.CloudCredentials, error)

func (*ServiceManager) ReadCloudDomainProfile ¶

func (sm *ServiceManager) ReadCloudDomainProfile() (*models.CloudDomainProfile, error)

func (*ServiceManager) ReadCloudEPg ¶

func (sm *ServiceManager) ReadCloudEPg(name string, cloud_application_container string, tenant string) (*models.CloudEPg, error)

func (*ServiceManager) ReadCloudEndpointSelector ¶

func (sm *ServiceManager) ReadCloudEndpointSelector(name string, cloud_epg string, cloud_application_container string, tenant string) (*models.CloudEndpointSelector, error)

func (*ServiceManager) ReadCloudEndpointSelectorforExternalEPgs ¶

func (sm *ServiceManager) ReadCloudEndpointSelectorforExternalEPgs(name string, cloud_external_epg string, cloud_application_container string, tenant string) (*models.CloudEndpointSelectorforExternalEPgs, error)

func (*ServiceManager) ReadCloudExternalEPg ¶

func (sm *ServiceManager) ReadCloudExternalEPg(name string, cloud_application_container string, tenant string) (*models.CloudExternalEPg, error)

func (*ServiceManager) ReadCloudProviderProfile ¶

func (sm *ServiceManager) ReadCloudProviderProfile(vendor string) (*models.CloudProviderProfile, error)

func (*ServiceManager) ReadCloudProvidersRegion ¶

func (sm *ServiceManager) ReadCloudProvidersRegion(name string, cloud_provider_profile_vendor string) (*models.CloudProvidersRegion, error)

func (*ServiceManager) ReadCloudSubnet ¶

func (sm *ServiceManager) ReadCloudSubnet(ip string, cloud_cidr_pool_addr string, cloud_context_profile string, tenant string) (*models.CloudSubnet, error)

func (*ServiceManager) ReadCloudTemplateforExternalNetwork ¶ added in v1.53.0

func (sm *ServiceManager) ReadCloudTemplateforExternalNetwork(name string, infra_network_template string, tenant string) (*models.CloudTemplateforExternalNetwork, error)

func (*ServiceManager) ReadCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) ReadCloudVpnGateway(name string, cloudContextProfile string, tenant string) (*models.CloudVpnGateway, error)

func (*ServiceManager) ReadConcreteDevice ¶ added in v1.38.0

func (sm *ServiceManager) ReadConcreteDevice(name string, parent_dn string) (*models.ConcreteDevice, error)

func (*ServiceManager) ReadConcreteInterface ¶ added in v1.39.0

func (sm *ServiceManager) ReadConcreteInterface(name string, parent_dn string) (*models.ConcreteInterface, error)

func (*ServiceManager) ReadConfigurationExportPolicy ¶

func (sm *ServiceManager) ReadConfigurationExportPolicy(name string) (*models.ConfigurationExportPolicy, error)

func (*ServiceManager) ReadConfigurationImportPolicy ¶

func (sm *ServiceManager) ReadConfigurationImportPolicy(name string) (*models.ConfigurationImportPolicy, error)

func (*ServiceManager) ReadConnection ¶ added in v1.3.27

func (sm *ServiceManager) ReadConnection(name string, l4_l7_service_graph_template string, tenant string) (*models.Connection, error)

func (*ServiceManager) ReadConsoleAuthenticationMethod ¶ added in v1.12.14

func (sm *ServiceManager) ReadConsoleAuthenticationMethod() (*models.ConsoleAuthenticationMethod, error)

func (*ServiceManager) ReadConsumerTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) ReadConsumerTerminalNode(name string, l4_l7_service_graph_template string, tenant string) (*models.ConsumerTerminalNode, error)

func (*ServiceManager) ReadContract ¶

func (sm *ServiceManager) ReadContract(name string, tenant string) (*models.Contract, error)

func (*ServiceManager) ReadContractConsumer ¶ added in v0.4.1

func (sm *ServiceManager) ReadContractConsumer(tnVzBrCPName string, application_epg string, application_profile string, tenant string) (*models.ContractConsumer, error)

func (*ServiceManager) ReadContractInterfaceRelationship ¶ added in v1.26.0

func (sm *ServiceManager) ReadContractInterfaceRelationship(tnVzCPIfName string, application_epg string, application_profile string, tenant string) (*models.ContractInterfaceRelationship, error)

func (*ServiceManager) ReadContractProvider ¶ added in v0.4.1

func (sm *ServiceManager) ReadContractProvider(tnVzBrCPName string, application_epg string, application_profile string, tenant string) (*models.ContractProvider, error)

func (*ServiceManager) ReadContractSubject ¶

func (sm *ServiceManager) ReadContractSubject(name string, contract string, tenant string) (*models.ContractSubject, error)

func (*ServiceManager) ReadCtrlrFwP ¶ added in v0.4.1

func (sm *ServiceManager) ReadCtrlrFwP(name string) (*models.CtrlrFwP, error)

func (*ServiceManager) ReadCtrlrMaintP ¶ added in v0.4.1

func (sm *ServiceManager) ReadCtrlrMaintP(name string) (*models.CtrlrMaintP, error)

func (*ServiceManager) ReadDHCPOption ¶ added in v1.3.27

func (sm *ServiceManager) ReadDHCPOption(name string, dhcp_option_policy string, tenant string) (*models.DHCPOption, error)

func (*ServiceManager) ReadDHCPOptionPolicy ¶ added in v1.3.27

func (sm *ServiceManager) ReadDHCPOptionPolicy(name string, tenant string) (*models.DHCPOptionPolicy, error)

func (*ServiceManager) ReadDHCPRelayPolicy ¶ added in v1.3.27

func (sm *ServiceManager) ReadDHCPRelayPolicy(name string, tenant string) (*models.DHCPRelayPolicy, error)

func (*ServiceManager) ReadDefaultAuthenticationMethodforallLogins ¶ added in v1.12.22

func (sm *ServiceManager) ReadDefaultAuthenticationMethodforallLogins() (*models.DefaultAuthenticationMethodforallLogins, error)

func (*ServiceManager) ReadDefaultRadiusAuthenticationSettings ¶ added in v1.12.16

func (sm *ServiceManager) ReadDefaultRadiusAuthenticationSettings() (*models.DefaultRadiusAuthenticationSettings, error)

func (*ServiceManager) ReadDestinationofredirectedtraffic ¶ added in v0.4.5

func (sm *ServiceManager) ReadDestinationofredirectedtraffic(ip string, service_redirect_policy string, tenant string) (*models.Destinationofredirectedtraffic, error)

func (*ServiceManager) ReadDownload ¶ added in v0.4.1

func (sm *ServiceManager) ReadDownload(name string) (*models.Download, error)

func (*ServiceManager) ReadDuoProviderGroup ¶ added in v1.12.16

func (sm *ServiceManager) ReadDuoProviderGroup(name string) (*models.DuoProviderGroup, error)

func (*ServiceManager) ReadEPGsUsingFunction ¶ added in v0.4.1

func (sm *ServiceManager) ReadEPGsUsingFunction(tDn string, access_generic string, attachable_access_entity_profile string) (*models.EPGsUsingFunction, error)

func (*ServiceManager) ReadEPLoopProtectionPolicy ¶ added in v1.12.10

func (sm *ServiceManager) ReadEPLoopProtectionPolicy(name string) (*models.EPLoopProtectionPolicy, error)

func (*ServiceManager) ReadEPgDef ¶ added in v1.41.0

func (sm *ServiceManager) ReadEPgDef(name string, parent_dn string) (*models.EPgDef, error)

func (*ServiceManager) ReadEndPointRetentionPolicy ¶

func (sm *ServiceManager) ReadEndPointRetentionPolicy(name string, tenant string) (*models.EndPointRetentionPolicy, error)

func (*ServiceManager) ReadEndpointControlPolicy ¶ added in v1.12.9

func (sm *ServiceManager) ReadEndpointControlPolicy(name string) (*models.EndpointControlPolicy, error)

func (*ServiceManager) ReadEndpointSecurityGroup ¶ added in v1.3.29

func (sm *ServiceManager) ReadEndpointSecurityGroup(name string, application_profile string, tenant string) (*models.EndpointSecurityGroup, error)

func (*ServiceManager) ReadEndpointSecurityGroupEPgSelector ¶ added in v1.3.29

func (sm *ServiceManager) ReadEndpointSecurityGroupEPgSelector(matchEpgDn string, endpoint_security_group string, application_profile string, tenant string) (*models.EndpointSecurityGroupEPgSelector, error)

func (*ServiceManager) ReadEndpointSecurityGroupSelector ¶ added in v1.3.29

func (sm *ServiceManager) ReadEndpointSecurityGroupSelector(matchExpression string, endpoint_security_group string, application_profile string, tenant string) (*models.EndpointSecurityGroupSelector, error)

func (*ServiceManager) ReadEndpointSecurityGroupTagSelector ¶ added in v1.3.29

func (sm *ServiceManager) ReadEndpointSecurityGroupTagSelector(matchValue string, matchKey string, endpoint_security_group string, application_profile string, tenant string) (*models.EndpointSecurityGroupTagSelector, error)

func (*ServiceManager) ReadEpReachability ¶ added in v1.43.0

func (sm *ServiceManager) ReadEpReachability(parent_dn string) (*models.EpReachability, error)

func (*ServiceManager) ReadErrorDisabledRecoveryEvent ¶ added in v1.12.14

func (sm *ServiceManager) ReadErrorDisabledRecoveryEvent(event string, error_disabled_recovery_policy string) (*models.ErrorDisabledRecoveryEvent, error)

func (*ServiceManager) ReadErrorDisabledRecoveryPolicy ¶ added in v1.12.14

func (sm *ServiceManager) ReadErrorDisabledRecoveryPolicy(name string) (*models.ErrorDisabledRecoveryPolicy, error)

func (*ServiceManager) ReadExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadExternalNetworkInstanceProfile(name string, l3_outside string, tenant string) (*models.ExternalNetworkInstanceProfile, error)

func (*ServiceManager) ReadFCDomain ¶

func (sm *ServiceManager) ReadFCDomain(name string) (*models.FCDomain, error)

func (*ServiceManager) ReadFEXProfile ¶ added in v0.4.9

func (sm *ServiceManager) ReadFEXProfile(name string) (*models.FEXProfile, error)

func (*ServiceManager) ReadFVDomain ¶ added in v0.4.1

func (sm *ServiceManager) ReadFVDomain(tDn string, application_epg string, application_profile string, tenant string) (*models.FVDomain, error)

func (*ServiceManager) ReadFabricNode ¶ added in v0.4.1

func (sm *ServiceManager) ReadFabricNode(tDn string, logical_node_profile string, l3_outside string, tenant string) (*models.FabricNode, error)

func (*ServiceManager) ReadFabricNodeControl ¶ added in v1.12.9

func (sm *ServiceManager) ReadFabricNodeControl(name string) (*models.FabricNodeControl, error)

func (*ServiceManager) ReadFabricNodeMember ¶

func (sm *ServiceManager) ReadFabricNodeMember(serial string) (*models.FabricNodeMember, error)

func (*ServiceManager) ReadFabricPathEndpoint ¶ added in v0.5.11

func (sm *ServiceManager) ReadFabricPathEndpoint(name string, fabric_path_end_point_container_nodeId string, fabric_pod_id string) (*models.FabricPathEndpoint, error)

func (*ServiceManager) ReadFabricWideSettingsPolicy ¶ added in v1.12.15

func (sm *ServiceManager) ReadFabricWideSettingsPolicy() (*models.FabricWideSettingsPolicy, error)

func (*ServiceManager) ReadFexBundleGroup ¶ added in v0.4.9

func (sm *ServiceManager) ReadFexBundleGroup(name string, fex_profile string) (*models.FexBundleGroup, error)

func (*ServiceManager) ReadFilter ¶

func (sm *ServiceManager) ReadFilter(name string, tenant string) (*models.Filter, error)

func (*ServiceManager) ReadFilterEntry ¶

func (sm *ServiceManager) ReadFilterEntry(name string, filter string, tenant string) (*models.FilterEntry, error)

func (*ServiceManager) ReadFilterRelationship ¶ added in v1.36.0

func (sm *ServiceManager) ReadFilterRelationship(tnVzFilterName string, parentDn string) (*models.FilterRelationship, error)

func (*ServiceManager) ReadFirmware ¶ added in v0.4.1

func (sm *ServiceManager) ReadFirmware(name string) (*models.Firmware, error)

func (*ServiceManager) ReadFirmwareCtrlrRunning ¶ added in v0.5.11

func (sm *ServiceManager) ReadFirmwareCtrlrRunning(podId uint32, nodeId uint32) (*models.FirmwareCtrlrRunning, error)

func (*ServiceManager) ReadFirmwareDownloadTask ¶

func (sm *ServiceManager) ReadFirmwareDownloadTask(name string) (*models.FirmwareDownloadTask, error)

func (*ServiceManager) ReadFirmwareGroup ¶

func (sm *ServiceManager) ReadFirmwareGroup(name string) (*models.FirmwareGroup, error)

func (*ServiceManager) ReadFirmwarePolicy ¶

func (sm *ServiceManager) ReadFirmwarePolicy(name string) (*models.FirmwarePolicy, error)

func (*ServiceManager) ReadFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) ReadFunctionConnector(name string, function_node string, l4_l7_service_graph_template string, tenant string) (*models.FunctionConnector, error)

func (*ServiceManager) ReadFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) ReadFunctionNode(name string, l4_l7_service_graph_template string, tenant string) (*models.FunctionNode, error)

func (*ServiceManager) ReadHSRPGroupPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadHSRPGroupPolicy(name string, tenant string) (*models.HSRPGroupPolicy, error)

func (*ServiceManager) ReadHSRPGroupProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadHSRPGroupProfile(name string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.HSRPGroupProfile, error)

func (*ServiceManager) ReadHSRPInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadHSRPInterfacePolicy(name string, tenant string) (*models.HSRPInterfacePolicy, error)

func (*ServiceManager) ReadIPAgingPolicy ¶ added in v1.12.9

func (sm *ServiceManager) ReadIPAgingPolicy(name string) (*models.IPAgingPolicy, error)

func (*ServiceManager) ReadIPSLAMonitoringPolicy ¶ added in v1.41.0

func (sm *ServiceManager) ReadIPSLAMonitoringPolicy(name string, tenant string) (*models.IPSLAMonitoringPolicy, error)

func (*ServiceManager) ReadISISDomainPolicy ¶ added in v1.12.15

func (sm *ServiceManager) ReadISISDomainPolicy(name string) (*models.ISISDomainPolicy, error)

func (*ServiceManager) ReadISISLevel ¶ added in v1.12.15

func (sm *ServiceManager) ReadISISLevel(isis_level_type string, isis_domain_policy string) (*models.ISISLevel, error)

func (*ServiceManager) ReadImportedContract ¶ added in v0.4.1

func (sm *ServiceManager) ReadImportedContract(name string, tenant string) (*models.ImportedContract, error)

func (*ServiceManager) ReadInBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) ReadInBManagedNodesZone(managed_node_connectivity_group string) (*models.InBManagedNodesZone, error)

func (*ServiceManager) ReadInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadInBandManagementEPg(name string, management_profile string, tenant string) (*models.InBandManagementEPg, error)

func (*ServiceManager) ReadInTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) ReadInTermSubject(contract_subject string, contract string, tenant string) (*models.InTermSubject, error)

func (*ServiceManager) ReadInbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) ReadInbandStaticNode(tDn string, in_band_management_epg string, management_profile string, tenant string) (*models.InbandStaticNode, error)

func (*ServiceManager) ReadInfraRsDomP ¶ added in v1.25.1

func (sm *ServiceManager) ReadInfraRsDomP(tDn string, attachable_access_entity_profile string) (*models.InfraRsDomP, error)

func (*ServiceManager) ReadInterVRFLeakedRoutesContainer ¶ added in v1.45.0

func (sm *ServiceManager) ReadInterVRFLeakedRoutesContainer(vrf string, tenant string) (*models.InterVRFLeakedRoutesContainer, error)

func (*ServiceManager) ReadInterfaceFCPolicy ¶

func (sm *ServiceManager) ReadInterfaceFCPolicy(name string) (*models.InterfaceFCPolicy, error)

func (*ServiceManager) ReadInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) ReadInterfaceProfile(tDn string, spine_profile string) (*models.InterfaceProfile, error)

func (*ServiceManager) ReadKeypairforSAMLEncryption ¶ added in v1.12.16

func (sm *ServiceManager) ReadKeypairforSAMLEncryption(name string) (*models.KeypairforSAMLEncryption, error)

func (*ServiceManager) ReadL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) ReadL2Domain(name string) (*models.L2Domain, error)

func (*ServiceManager) ReadL2InterfacePolicy ¶

func (sm *ServiceManager) ReadL2InterfacePolicy(name string) (*models.L2InterfacePolicy, error)

func (*ServiceManager) ReadL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) ReadL2Outside(name string, tenant string) (*models.L2Outside, error)

func (*ServiceManager) ReadL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ReadL2outExternalEpg(name string, l2_outside string, tenant string) (*models.L2outExternalEpg, error)

func (*ServiceManager) ReadL3DomainProfile ¶

func (sm *ServiceManager) ReadL3DomainProfile(name string) (*models.L3DomainProfile, error)

func (*ServiceManager) ReadL3ExtSubnet ¶

func (sm *ServiceManager) ReadL3ExtSubnet(ip string, external_network_instance_profile string, l3_outside string, tenant string) (*models.L3ExtSubnet, error)

func (*ServiceManager) ReadL3InterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) ReadL3InterfacePolicy(name string) (*models.L3InterfacePolicy, error)

func (*ServiceManager) ReadL3Outside ¶

func (sm *ServiceManager) ReadL3Outside(name string, tenant string) (*models.L3Outside, error)

func (*ServiceManager) ReadL3outBGPProtocolProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outBGPProtocolProfile(logical_node_profile string, l3_outside string, tenant string) (*models.L3outBGPProtocolProfile, error)

func (*ServiceManager) ReadL3outBgpExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outBgpExternalPolicy(l3_outside string, tenant string) (*models.L3outBgpExternalPolicy, error)

func (*ServiceManager) ReadL3outHSRPInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outHSRPInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.L3outHSRPInterfaceProfile, error)

func (*ServiceManager) ReadL3outHSRPSecondaryVIP ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outHSRPSecondaryVIP(ip string, hsrp_group_profile string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.L3outHSRPSecondaryVIP, error)

func (*ServiceManager) ReadL3outOspfExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outOspfExternalPolicy(l3_outside string, tenant string) (*models.L3outOspfExternalPolicy, error)

func (*ServiceManager) ReadL3outPathAttachment ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outPathAttachment(tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.L3outPathAttachment, error)

func (*ServiceManager) ReadL3outPathAttachmentSecondaryIp ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outPathAttachmentSecondaryIp(addr string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.L3outPathAttachmentSecondaryIp, error)

func (*ServiceManager) ReadL3outRouteTagPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outRouteTagPolicy(name string, tenant string) (*models.L3outRouteTagPolicy, error)

func (*ServiceManager) ReadL3outStaticRoute ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outStaticRoute(ip string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string) (*models.L3outStaticRoute, error)

func (*ServiceManager) ReadL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outStaticRouteNextHop(nhAddr string, static_route_ip string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string) (*models.L3outStaticRouteNextHop, error)

func (*ServiceManager) ReadL3outVPCMember ¶ added in v1.3.29

func (sm *ServiceManager) ReadL3outVPCMember(side string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.L3outVPCMember, error)

func (*ServiceManager) ReadL4L7RedirectHealthGroup ¶ added in v1.40.0

func (sm *ServiceManager) ReadL4L7RedirectHealthGroup(name string, tenant string) (*models.L4L7RedirectHealthGroup, error)

func (*ServiceManager) ReadL4L7ServiceGraphTemplate ¶ added in v1.3.27

func (sm *ServiceManager) ReadL4L7ServiceGraphTemplate(name string, tenant string) (*models.L4L7ServiceGraphTemplate, error)

func (*ServiceManager) ReadL4ToL7Devices ¶ added in v1.37.0

func (sm *ServiceManager) ReadL4ToL7Devices(name string, tenant string) (*models.L4ToL7Devices, error)

func (*ServiceManager) ReadLACPMemberPolicy ¶ added in v1.48.0

func (sm *ServiceManager) ReadLACPMemberPolicy(name string) (*models.LACPMemberPolicy, error)

func (*ServiceManager) ReadLACPPolicy ¶

func (sm *ServiceManager) ReadLACPPolicy(name string) (*models.LACPPolicy, error)

func (*ServiceManager) ReadLDAPGroupMap ¶ added in v1.12.26

func (sm *ServiceManager) ReadLDAPGroupMap(name string) (*models.LDAPGroupMap, error)

func (*ServiceManager) ReadLDAPGroupMapRule ¶ added in v1.12.17

func (sm *ServiceManager) ReadLDAPGroupMapRule(name string) (*models.LDAPGroupMapRule, error)

func (*ServiceManager) ReadLDAPGroupMapruleref ¶ added in v1.12.19

func (sm *ServiceManager) ReadLDAPGroupMapruleref(name string, ldap_group_map string) (*models.LDAPGroupMapruleref, error)

func (*ServiceManager) ReadLDAPProvider ¶ added in v1.12.16

func (sm *ServiceManager) ReadLDAPProvider(name string) (*models.LDAPProvider, error)

func (*ServiceManager) ReadLLDPInterfacePolicy ¶

func (sm *ServiceManager) ReadLLDPInterfacePolicy(name string) (*models.LLDPInterfacePolicy, error)

func (*ServiceManager) ReadLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadLeafAccessPortPolicyGroup(name string) (*models.LeafAccessPortPolicyGroup, error)

func (*ServiceManager) ReadLeafBreakoutPortGroup ¶ added in v1.3.27

func (sm *ServiceManager) ReadLeafBreakoutPortGroup(name string) (*models.LeafBreakoutPortGroup, error)

func (*ServiceManager) ReadLeafInterfaceProfile ¶

func (sm *ServiceManager) ReadLeafInterfaceProfile(name string) (*models.LeafInterfaceProfile, error)

func (*ServiceManager) ReadLeafProfile ¶

func (sm *ServiceManager) ReadLeafProfile(name string) (*models.LeafProfile, error)

func (*ServiceManager) ReadLeakInternalPrefix ¶ added in v1.54.0

func (sm *ServiceManager) ReadLeakInternalPrefix(ip string, vrf string, tenant string) (*models.LeakInternalPrefix, error)

func (*ServiceManager) ReadLeakInternalSubnet ¶ added in v1.44.0

func (sm *ServiceManager) ReadLeakInternalSubnet(ip string, vrf string, tenant string) (*models.LeakInternalSubnet, error)

func (*ServiceManager) ReadLinkLevelPolicy ¶ added in v1.0.8

func (sm *ServiceManager) ReadLinkLevelPolicy(name string) (*models.LinkLevelPolicy, error)

func (*ServiceManager) ReadLocalAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadLocalAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string) (*models.LocalAutonomousSystemProfile, error)

func (*ServiceManager) ReadLocalUser ¶

func (sm *ServiceManager) ReadLocalUser(name string) (*models.LocalUser, error)

func (*ServiceManager) ReadLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadLogicalDeviceContext(nodeNameOrLbl string, graphNameOrLbl string, ctrctNameOrLbl string, tenant string) (*models.LogicalDeviceContext, error)

func (*ServiceManager) ReadLogicalInterface ¶ added in v1.37.0

func (sm *ServiceManager) ReadLogicalInterface(name string, parent_dn string) (*models.LogicalInterface, error)

func (*ServiceManager) ReadLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadLogicalInterfaceContext(connNameOrLbl string, logicalDeviceContextNodeNameOrLbl string, logicalDeviceContextGraphNameOrLbl string, logical_device_context_ctrctNameOrLbl string, tenant string) (*models.LogicalInterfaceContext, error)

func (*ServiceManager) ReadLogicalInterfaceProfile ¶

func (sm *ServiceManager) ReadLogicalInterfaceProfile(name string, logical_node_profile string, l3_outside string, tenant string) (*models.LogicalInterfaceProfile, error)

func (*ServiceManager) ReadLogicalNodeProfile ¶

func (sm *ServiceManager) ReadLogicalNodeProfile(name string, l3_outside string, tenant string) (*models.LogicalNodeProfile, error)

func (*ServiceManager) ReadLoginDomain ¶ added in v1.12.21

func (sm *ServiceManager) ReadLoginDomain(name string) (*models.LoginDomain, error)

func (*ServiceManager) ReadLoopBackInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadLoopBackInterfaceProfile(addr string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string) (*models.LoopBackInterfaceProfile, error)

func (*ServiceManager) ReadMaintGrp ¶ added in v0.4.1

func (sm *ServiceManager) ReadMaintGrp(name string) (*models.MaintGrp, error)

func (*ServiceManager) ReadMaintP ¶ added in v0.4.1

func (sm *ServiceManager) ReadMaintP(name string) (*models.MaintP, error)

func (*ServiceManager) ReadMaintenancePolicy ¶

func (sm *ServiceManager) ReadMaintenancePolicy(name string) (*models.MaintenancePolicy, error)

func (*ServiceManager) ReadManagedNodeConnectivityGroup ¶ added in v1.12.2

func (sm *ServiceManager) ReadManagedNodeConnectivityGroup(name string) (*models.ManagedNodeConnectivityGroup, error)

func (*ServiceManager) ReadMatchCommunityFactor ¶ added in v1.30.0

func (sm *ServiceManager) ReadMatchCommunityFactor(community string, match_community_term string, match_rule string, tenant string) (*models.MatchCommunityFactor, error)

func (*ServiceManager) ReadMatchCommunityTerm ¶ added in v1.30.0

func (sm *ServiceManager) ReadMatchCommunityTerm(name string, match_rule string, tenant string) (*models.MatchCommunityTerm, error)

func (*ServiceManager) ReadMatchRouteDestinationRule ¶ added in v1.3.29

func (sm *ServiceManager) ReadMatchRouteDestinationRule(ip string, match_rule string, tenant string) (*models.MatchRouteDestinationRule, error)

func (*ServiceManager) ReadMatchRule ¶ added in v1.3.29

func (sm *ServiceManager) ReadMatchRule(name string, tenant string) (*models.MatchRule, error)

func (*ServiceManager) ReadMatchRuleBasedonCommunityRegularExpression ¶ added in v1.27.0

func (sm *ServiceManager) ReadMatchRuleBasedonCommunityRegularExpression(commType string, match_rule string, tenant string) (*models.MatchRuleBasedonCommunityRegularExpression, error)

func (*ServiceManager) ReadMgmtconnectivitypreference ¶ added in v1.12.9

func (sm *ServiceManager) ReadMgmtconnectivitypreference() (*models.Mgmtconnectivitypreference, error)

func (*ServiceManager) ReadMiscablingProtocolInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) ReadMiscablingProtocolInstancePolicy(name string) (*models.MiscablingProtocolInstancePolicy, error)

func (*ServiceManager) ReadMiscablingProtocolInterfacePolicy ¶

func (sm *ServiceManager) ReadMiscablingProtocolInterfacePolicy(name string) (*models.MiscablingProtocolInterfacePolicy, error)

func (*ServiceManager) ReadMonitoringPolicy ¶

func (sm *ServiceManager) ReadMonitoringPolicy(name string, tenant string) (*models.MonitoringPolicy, error)

func (*ServiceManager) ReadMulticastAddressBlock ¶ added in v1.46.0

func (sm *ServiceManager) ReadMulticastAddressBlock(to string, from string, multicast_address_pool string) (*models.MulticastAddressBlock, error)

func (*ServiceManager) ReadMulticastAddressPool ¶ added in v1.46.0

func (sm *ServiceManager) ReadMulticastAddressPool(name string) (*models.MulticastAddressPool, error)

func (*ServiceManager) ReadNexthopEpPReachability ¶ added in v1.43.0

func (sm *ServiceManager) ReadNexthopEpPReachability(nhAddr string, parent_dn string) (*models.NexthopEpPReachability, error)

func (*ServiceManager) ReadNexthopUnchangedAction ¶ added in v1.31.0

func (sm *ServiceManager) ReadNexthopUnchangedAction(action_rule_profile string, tenant string) (*models.NexthopUnchangedAction, error)

func (*ServiceManager) ReadNlbEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) ReadNlbEndpoint(parent_dn string) (*models.NlbEndpoint, error)

func (*ServiceManager) ReadNodeBlk ¶ added in v0.4.1

func (sm *ServiceManager) ReadNodeBlk(parentMOType string, parentMOName string, name string) (*models.NodeBlk, error)

func (*ServiceManager) ReadNodeBlock ¶ added in v0.4.1

func (sm *ServiceManager) ReadNodeBlock(name string, switch_association_type string, switch_association string, leaf_profile string) (*models.NodeBlock, error)

func (*ServiceManager) ReadNodeBlockFW ¶

func (sm *ServiceManager) ReadNodeBlockFW(name string, firmware_group string) (*models.NodeBlockFW, error)

func (*ServiceManager) ReadNodeBlockMG ¶

func (sm *ServiceManager) ReadNodeBlockMG(name string, pod_maintenance_group string) (*models.NodeBlockMG, error)

func (*ServiceManager) ReadNodePolicyEndPoint ¶

func (sm *ServiceManager) ReadNodePolicyEndPoint(node_policy_end_point_id string, vpc_explicit_protection_group string) (*models.NodePolicyEndPoint, error)

func (*ServiceManager) ReadOOBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) ReadOOBManagedNodesZone(managed_node_connectivity_group string) (*models.OOBManagedNodesZone, error)

func (*ServiceManager) ReadOSPFInterfacePolicy ¶

func (sm *ServiceManager) ReadOSPFInterfacePolicy(name string, tenant string) (*models.OSPFInterfacePolicy, error)

func (*ServiceManager) ReadOSPFInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadOSPFInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.OSPFInterfaceProfile, error)

func (*ServiceManager) ReadOSPFTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadOSPFTimersPolicy(name string, tenant string) (*models.OSPFTimersPolicy, error)

func (*ServiceManager) ReadOSource ¶ added in v0.4.1

func (sm *ServiceManager) ReadOSource(name string) (*models.OSource, error)

func (*ServiceManager) ReadOspfRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) ReadOspfRouteSummarization(name string, tenant string) (*models.OspfRouteSummarization, error)

func (*ServiceManager) ReadOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadOutOfBandManagementEPg(name string, management_profile string, tenant string) (*models.OutOfBandManagementEPg, error)

func (*ServiceManager) ReadOutTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) ReadOutTermSubject(contract_subject string, contract string, tenant string) (*models.OutTermSubject, error)

func (*ServiceManager) ReadOutofServiceFabricPath ¶ added in v1.19.0

func (sm *ServiceManager) ReadOutofServiceFabricPath(tDn string) (*models.OutofServiceFabricPath, error)

func (*ServiceManager) ReadOutofbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) ReadOutofbandStaticNode(tDn string, out_of_band_management_epg string, management_profile string, tenant string) (*models.OutofbandStaticNode, error)

func (*ServiceManager) ReadOverridePCVPCPolicyGroup ¶ added in v1.48.0

func (sm *ServiceManager) ReadOverridePCVPCPolicyGroup(name string, leaf_access_bundle_policy_group string) (*models.OverridePCVPCPolicyGroup, error)

func (*ServiceManager) ReadPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadPCVPCInterfacePolicyGroup(name string) (*models.PCVPCInterfacePolicyGroup, error)

func (*ServiceManager) ReadPODMaintenanceGroup ¶

func (sm *ServiceManager) ReadPODMaintenanceGroup(name string) (*models.PODMaintenanceGroup, error)

func (*ServiceManager) ReadPasswordChangeExpirationPolicy ¶ added in v1.12.31

func (sm *ServiceManager) ReadPasswordChangeExpirationPolicy() (*models.PasswordChangeExpirationPolicy, error)

func (*ServiceManager) ReadPhysicalDomain ¶

func (sm *ServiceManager) ReadPhysicalDomain(name string) (*models.PhysicalDomain, error)

func (*ServiceManager) ReadPortSecurityPolicy ¶

func (sm *ServiceManager) ReadPortSecurityPolicy(name string) (*models.PortSecurityPolicy, error)

func (*ServiceManager) ReadPortTracking ¶ added in v1.12.10

func (sm *ServiceManager) ReadPortTracking(name string) (*models.PortTracking, error)

func (*ServiceManager) ReadProviderGroupMember ¶ added in v1.12.30

func (sm *ServiceManager) ReadProviderGroupMember(name string, duo_provider_group string) (*models.ProviderGroupMember, error)

func (*ServiceManager) ReadProviderTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) ReadProviderTerminalNode(name string, l4_l7_service_graph_template string, tenant string) (*models.ProviderTerminalNode, error)

func (*ServiceManager) ReadPublicKeyManagement ¶ added in v1.12.31

func (sm *ServiceManager) ReadPublicKeyManagement() (*models.PublicKeyManagement, error)

func (*ServiceManager) ReadQOSInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) ReadQOSInstancePolicy(name string) (*models.QOSInstancePolicy, error)

func (*ServiceManager) ReadRADIUSProvider ¶ added in v1.12.33

func (sm *ServiceManager) ReadRADIUSProvider(name string) (*models.RADIUSProvider, error)

func (*ServiceManager) ReadRADIUSProviderGroup ¶ added in v1.12.17

func (sm *ServiceManager) ReadRADIUSProviderGroup(name string) (*models.RADIUSProviderGroup, error)

func (*ServiceManager) ReadRSAProvider ¶ added in v1.12.20

func (sm *ServiceManager) ReadRSAProvider(name string) (*models.RSAProvider, error)

func (*ServiceManager) ReadRanges ¶

func (sm *ServiceManager) ReadRanges(to string, _from string, vlan_pool_allocMode string, vlan_pool string) (*models.Ranges, error)

func (*ServiceManager) ReadRecurringWindow ¶ added in v1.12.4

func (sm *ServiceManager) ReadRecurringWindow(name string, scheduler string) (*models.RecurringWindow, error)

func (*ServiceManager) ReadRedistributeMultipathAction ¶ added in v1.31.0

func (sm *ServiceManager) ReadRedistributeMultipathAction(action_rule_profile string, tenant string) (*models.RedistributeMultipathAction, error)

func (*ServiceManager) ReadRelationaaaRsProvToEpp ¶ added in v1.12.16

func (sm *ServiceManager) ReadRelationaaaRsProvToEpp(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationaaaRsSecProvToEpg ¶ added in v1.12.16

func (sm *ServiceManager) ReadRelationaaaRsSecProvToEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationaaaRsToUserEp ¶ added in v1.12.31

func (sm *ServiceManager) ReadRelationaaaRsToUserEp(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationbfdRsIfPolFromInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationbfdRsIfPolFromInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationbgpRsBestPathCtrlPol ¶ added in v1.29.0

func (sm *ServiceManager) ReadRelationbgpRsBestPathCtrlPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationbgpRsBgpNodeCtxPolFromL3outBGPProtocolProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationbgpRsBgpNodeCtxPolFromL3outBGPProtocolProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationbgpRsPeerPfxPolFromBgpPeerConnectivityProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationbgpRsPeerPfxPolFromBgpPeerConnectivityProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationbgpRsPeerToProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationbgpRsPeerToProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsAD ¶ added in v1.50.0

func (sm *ServiceManager) ReadRelationcloudRsAD(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsAccountToAccessPolicy ¶ added in v1.50.0

func (sm *ServiceManager) ReadRelationcloudRsAccountToAccessPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsCloudEPgCtxFromCloudEPg ¶

func (sm *ServiceManager) ReadRelationcloudRsCloudEPgCtxFromCloudEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsCloudEPgCtxFromCloudExternalEPg ¶

func (sm *ServiceManager) ReadRelationcloudRsCloudEPgCtxFromCloudExternalEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsCredentials ¶ added in v1.50.0

func (sm *ServiceManager) ReadRelationcloudRsCredentials(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsSubnetToFlowLogFromCloudSubnet ¶

func (sm *ServiceManager) ReadRelationcloudRsSubnetToFlowLogFromCloudSubnet(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsToDirectConnPolFromCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationcloudRsToDirectConnPolFromCloudVpnGateway(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsToHostRouterPolFromCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationcloudRsToHostRouterPolFromCloudVpnGateway(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsToVpnGwPolFromCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationcloudRsToVpnGwPolFromCloudVpnGateway(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationcloudRsZoneAttachFromCloudSubnet ¶

func (sm *ServiceManager) ReadRelationcloudRsZoneAttachFromCloudSubnet(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationconfigRsExportDestinationFromConfigurationExportPolicy ¶

func (sm *ServiceManager) ReadRelationconfigRsExportDestinationFromConfigurationExportPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationconfigRsExportSchedulerFromConfigurationExportPolicy ¶

func (sm *ServiceManager) ReadRelationconfigRsExportSchedulerFromConfigurationExportPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationconfigRsImportSourceFromConfigurationImportPolicy ¶

func (sm *ServiceManager) ReadRelationconfigRsImportSourceFromConfigurationImportPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationconfigRsRemotePathFromConfigurationExportPolicy ¶

func (sm *ServiceManager) ReadRelationconfigRsRemotePathFromConfigurationExportPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationconfigRsRemotePathFromConfigurationImportPolicy ¶

func (sm *ServiceManager) ReadRelationconfigRsRemotePathFromConfigurationImportPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationdhcpRsDhcpOptionPolFromBDDHCPLabel ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationdhcpRsDhcpOptionPolFromBDDHCPLabel(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationdhcpRsProvFromDHCPRelayPolicy ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationdhcpRsProvFromDHCPRelayPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationextnwRsOutFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationextnwRsOutFromL2Domain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationextnwRsOutFromL3DomainProfile ¶

func (sm *ServiceManager) ReadRelationextnwRsOutFromL3DomainProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfabricRsToPeerNodeCfgFromNodePolicyEndPoint ¶

func (sm *ServiceManager) ReadRelationfabricRsToPeerNodeCfgFromNodePolicyEndPoint(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfabricRsVpcInstPolFromVPCExplicitProtectionGroup ¶

func (sm *ServiceManager) ReadRelationfabricRsVpcInstPolFromVPCExplicitProtectionGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfcRsVsanAttrDefFromFCDomain ¶

func (sm *ServiceManager) ReadRelationfcRsVsanAttrDefFromFCDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfcRsVsanAttrFromFCDomain ¶

func (sm *ServiceManager) ReadRelationfcRsVsanAttrFromFCDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfcRsVsanNsDefFromFCDomain ¶

func (sm *ServiceManager) ReadRelationfcRsVsanNsDefFromFCDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfcRsVsanNsFromFCDomain ¶

func (sm *ServiceManager) ReadRelationfcRsVsanNsFromFCDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfileRsARemoteHostToEpg ¶ added in v1.12.5

func (sm *ServiceManager) ReadRelationfileRsARemoteHostToEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfileRsARemoteHostToEpp ¶ added in v1.12.5

func (sm *ServiceManager) ReadRelationfileRsARemoteHostToEpp(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfirmwareRsFwgrppFromFirmwareGroup ¶

func (sm *ServiceManager) ReadRelationfirmwareRsFwgrppFromFirmwareGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsABDPolMonPolFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsABDPolMonPolFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsAEPgMonPolFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsAEPgMonPolFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsApMonPolFromApplicationProfile ¶

func (sm *ServiceManager) ReadRelationfvRsApMonPolFromApplicationProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBDSubnetToOutFromSubnet ¶

func (sm *ServiceManager) ReadRelationfvRsBDSubnetToOutFromSubnet(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBDSubnetToProfileFromSubnet ¶

func (sm *ServiceManager) ReadRelationfvRsBDSubnetToProfileFromSubnet(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBDToFhsFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsBDToFhsFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBDToNdPFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsBDToNdPFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBDToNetflowMonitorPolFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsBDToNetflowMonitorPolFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBDToOutFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsBDToOutFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBDToProfileFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsBDToProfileFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBDToRelayPFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsBDToRelayPFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBdFloodToFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsBdFloodToFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBdFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsBdFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBdToEpRetFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsBdToEpRetFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsBgpCtxPolFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsBgpCtxPolFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCons ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationfvRsCons(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsConsFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsFromCloudEPg ¶

func (sm *ServiceManager) ReadRelationfvRsConsFromCloudEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsFromCloudExternalEPg ¶

func (sm *ServiceManager) ReadRelationfvRsConsFromCloudExternalEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationfvRsConsFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsConsFromInBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsConsFromL2outExternalEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsIf ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationfvRsConsIf(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsIfFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsConsIfFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsIfFromCloudEPg ¶

func (sm *ServiceManager) ReadRelationfvRsConsIfFromCloudEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsIfFromCloudExternalEPg ¶

func (sm *ServiceManager) ReadRelationfvRsConsIfFromCloudExternalEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsIfFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationfvRsConsIfFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsIfFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsConsIfFromInBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsConsIfFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsConsIfFromL2outExternalEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCtxFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsCtxFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCtxMcastToFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsCtxMcastToFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCtxMonPolFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsCtxMonPolFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCtxToBgpCtxAfPolFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsCtxToBgpCtxAfPolFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCtxToEigrpCtxAfPolFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsCtxToEigrpCtxAfPolFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCtxToEpRetFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsCtxToEpRetFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCtxToExtRouteTagPolFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsCtxToExtRouteTagPolFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCtxToOspfCtxPolFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsCtxToOspfCtxPolFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCustQosPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationfvRsCustQosPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCustQosPolFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsCustQosPolFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCustQosPolFromCloudEPg ¶

func (sm *ServiceManager) ReadRelationfvRsCustQosPolFromCloudEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCustQosPolFromCloudExternalEPg ¶

func (sm *ServiceManager) ReadRelationfvRsCustQosPolFromCloudExternalEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCustQosPolFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationfvRsCustQosPolFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCustQosPolFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsCustQosPolFromInBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsCustQosPolFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsCustQosPolFromL2outExternalEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsDomAttFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsDomAttFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsDppPolFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsDppPolFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsFcPathAttFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsFcPathAttFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsGraphDefFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsGraphDefFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsIgmpsnFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsIgmpsnFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsIntraEpg ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationfvRsIntraEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsIntraEpgFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsIntraEpgFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsIntraEpgFromCloudEPg ¶

func (sm *ServiceManager) ReadRelationfvRsIntraEpgFromCloudEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsIntraEpgFromCloudExternalEPg ¶

func (sm *ServiceManager) ReadRelationfvRsIntraEpgFromCloudExternalEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsIntraEpgFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationfvRsIntraEpgFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsIntraEpgFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsIntraEpgFromInBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsIntraEpgFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsIntraEpgFromL2outExternalEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsMatchEPg ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationfvRsMatchEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsMldsnFromBridgeDomain ¶

func (sm *ServiceManager) ReadRelationfvRsMldsnFromBridgeDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsNdPfxPolFromSubnet ¶

func (sm *ServiceManager) ReadRelationfvRsNdPfxPolFromSubnet(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsNodeAttFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsNodeAttFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsOspfCtxPolFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsOspfCtxPolFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsPathAttFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsPathAttFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProtBy ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationfvRsProtBy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProtByFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsProtByFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProtByFromCloudEPg ¶

func (sm *ServiceManager) ReadRelationfvRsProtByFromCloudEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProtByFromCloudExternalEPg ¶

func (sm *ServiceManager) ReadRelationfvRsProtByFromCloudExternalEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProtByFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationfvRsProtByFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProtByFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsProtByFromInBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProtByFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsProtByFromL2outExternalEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProv ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationfvRsProv(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProvDefFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsProvDefFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProvFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsProvFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProvFromCloudEPg ¶

func (sm *ServiceManager) ReadRelationfvRsProvFromCloudEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProvFromCloudExternalEPg ¶

func (sm *ServiceManager) ReadRelationfvRsProvFromCloudExternalEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProvFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationfvRsProvFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProvFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsProvFromInBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsProvFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsProvFromL2outExternalEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsScope ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationfvRsScope(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsSecInherited ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationfvRsSecInherited(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsSecInheritedFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsSecInheritedFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsSecInheritedFromCloudEPg ¶

func (sm *ServiceManager) ReadRelationfvRsSecInheritedFromCloudEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsSecInheritedFromCloudExternalEPg ¶

func (sm *ServiceManager) ReadRelationfvRsSecInheritedFromCloudExternalEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsSecInheritedFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationfvRsSecInheritedFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsSecInheritedFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsSecInheritedFromInBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsSecInheritedFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationfvRsSecInheritedFromL2outExternalEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsTenantMonPolFromTenant ¶

func (sm *ServiceManager) ReadRelationfvRsTenantMonPolFromTenant(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsTnDenyRuleFromTenant ¶

func (sm *ServiceManager) ReadRelationfvRsTnDenyRuleFromTenant(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsTrustCtrlFromApplicationEPG ¶

func (sm *ServiceManager) ReadRelationfvRsTrustCtrlFromApplicationEPG(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsVmmVSwitchEnhancedLagPol ¶ added in v1.35.0

func (sm *ServiceManager) ReadRelationfvRsVmmVSwitchEnhancedLagPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationfvRsVrfValidationPolFromVRF ¶

func (sm *ServiceManager) ReadRelationfvRsVrfValidationPolFromVRF(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationhsrpRsGroupPolFromHSRPGroupProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationhsrpRsGroupPolFromHSRPGroupProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationhsrpRsIfPolFromL3outHSRPInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationhsrpRsIfPolFromL3outHSRPInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsAccBaseGrpFromAccessPortSelector ¶

func (sm *ServiceManager) ReadRelationinfraRsAccBaseGrpFromAccessPortSelector(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsAccBndlGrpToAggrIfFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsAccBndlGrpToAggrIfFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsAccBndlSubgrpFromAccessPortBlock ¶

func (sm *ServiceManager) ReadRelationinfraRsAccBndlSubgrpFromAccessPortBlock(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsAccCardPFromLeafProfile ¶

func (sm *ServiceManager) ReadRelationinfraRsAccCardPFromLeafProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsAccNodePGrpFromSwitchAssociation ¶

func (sm *ServiceManager) ReadRelationinfraRsAccNodePGrpFromSwitchAssociation(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsAccPortPFromLeafProfile ¶

func (sm *ServiceManager) ReadRelationinfraRsAccPortPFromLeafProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsAttEntPFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsAttEntPFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsAttEntPFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsAttEntPFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsAttEntPFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) ReadRelationinfraRsAttEntPFromSpineAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsBfdIpv4InstPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsBfdIpv4InstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsBfdIpv6InstPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsBfdIpv6InstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsBfdMhIpv4InstPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsBfdMhIpv4InstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsBfdMhIpv6InstPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsBfdMhIpv6InstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsCdpIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsCdpIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsCdpIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsCdpIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsCdpIfPolFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) ReadRelationinfraRsCdpIfPolFromSpineAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsCoppIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsCoppIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsCoppIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsCoppIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsCoppIfPolFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) ReadRelationinfraRsCoppIfPolFromSpineAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsDomPFromAttachableAccessEntityProfile ¶

func (sm *ServiceManager) ReadRelationinfraRsDomPFromAttachableAccessEntityProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromFCDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromFCDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromL2Domain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromL3DomainProfile ¶

func (sm *ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromL3DomainProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromPhysicalDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromPhysicalDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsDomVxlanNsDefFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsDwdmIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsDwdmIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsEquipmentFlashConfigPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsEquipmentFlashConfigPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsFcFabricPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsFcFabricPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsFcIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsFcIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsFcIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsFcIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsFcInstPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsFcInstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsFexBndlGrpToAggrIfFromFexBundleGroup ¶ added in v0.4.9

func (sm *ServiceManager) ReadRelationinfraRsFexBndlGrpToAggrIfFromFexBundleGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsFuncToEpgFromAccessGeneric ¶ added in v0.4.4

func (sm *ServiceManager) ReadRelationinfraRsFuncToEpgFromAccessGeneric(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsFuncToEpgFromVlanEncapsulationforVxlanTraffic ¶

func (sm *ServiceManager) ReadRelationinfraRsFuncToEpgFromVlanEncapsulationforVxlanTraffic(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsHIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsHIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsHIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsHIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsHIfPolFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) ReadRelationinfraRsHIfPolFromSpineAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsIaclLeafProfile ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsIaclLeafProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsIaclSpineProfile ¶ added in v1.12.3

func (sm *ServiceManager) ReadRelationinfraRsIaclSpineProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsL2IfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsL2IfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsL2IfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsL2IfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsL2InstPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsL2InstPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsL2InstPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsL2InstPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsL2NodeAuthPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsL2NodeAuthPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsL2PortAuthPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsL2PortAuthPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsL2PortAuthPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsL2PortAuthPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsL2PortSecurityPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsL2PortSecurityPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsL2PortSecurityPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsL2PortSecurityPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsLacpIfPol ¶ added in v1.48.0

func (sm *ServiceManager) ReadRelationinfraRsLacpIfPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsLacpInterfacePol ¶ added in v1.48.0

func (sm *ServiceManager) ReadRelationinfraRsLacpInterfacePol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsLacpPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsLacpPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsLeafCoppProfile ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsLeafCoppProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsLeafPGrpToCdpIfPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsLeafPGrpToCdpIfPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsLeafPGrpToLldpIfPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsLeafPGrpToLldpIfPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsLldpIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsLldpIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsLldpIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsLldpIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMacsecIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsMacsecIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMacsecIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsMacsecIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMacsecIfPolFromSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) ReadRelationinfraRsMacsecIfPolFromSpineAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMcpIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsMcpIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMcpIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsMcpIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMonBrkoutInfraPolFromLeafBreakoutPortGroup ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationinfraRsMonBrkoutInfraPolFromLeafBreakoutPortGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMonFexInfraPolFromFexBundleGroup ¶ added in v0.4.9

func (sm *ServiceManager) ReadRelationinfraRsMonFexInfraPolFromFexBundleGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMonIfInfraPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsMonIfInfraPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMonIfInfraPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsMonIfInfraPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMonNodeInfraPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsMonNodeInfraPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsMstInstPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsMstInstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsNetflowMonitorPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsNetflowMonitorPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsNetflowMonitorPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsNetflowMonitorPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsNetflowNodePol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsNetflowNodePol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsPoeIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsPoeIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsPoeInstPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsPoeInstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosDppIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosDppIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosDppIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosDppIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosEgressDppIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosEgressDppIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosEgressDppIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosEgressDppIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosIngressDppIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosIngressDppIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosIngressDppIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosIngressDppIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosPfcIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosPfcIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosPfcIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosPfcIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosSdIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosSdIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsQosSdIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsQosSdIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpAccGrp ¶ added in v1.21.1

func (sm *ServiceManager) ReadRelationinfraRsSpAccGrp(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpAccPortPFromSpineProfile ¶ added in v0.4.18

func (sm *ServiceManager) ReadRelationinfraRsSpAccPortPFromSpineProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpanVDestGrpFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsSpanVDestGrpFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpanVDestGrpFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsSpanVDestGrpFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpanVSrcGrpFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsSpanVSrcGrpFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpanVSrcGrpFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsSpanVSrcGrpFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpineAccNodePGrpFromSwitchAssociation ¶ added in v0.4.18

func (sm *ServiceManager) ReadRelationinfraRsSpineAccNodePGrpFromSwitchAssociation(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpineBfdIpv4InstPol ¶ added in v1.12.3

func (sm *ServiceManager) ReadRelationinfraRsSpineBfdIpv4InstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpineBfdIpv6InstPol ¶ added in v1.12.3

func (sm *ServiceManager) ReadRelationinfraRsSpineBfdIpv6InstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpineCoppProfile ¶ added in v1.12.3

func (sm *ServiceManager) ReadRelationinfraRsSpineCoppProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpinePGrpToCdpIfPol ¶ added in v1.12.3

func (sm *ServiceManager) ReadRelationinfraRsSpinePGrpToCdpIfPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsSpinePGrpToLldpIfPol ¶ added in v1.12.3

func (sm *ServiceManager) ReadRelationinfraRsSpinePGrpToLldpIfPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsStormctrlIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsStormctrlIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsStormctrlIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsStormctrlIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsStpIfPolFromLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsStpIfPolFromLeafAccessPortPolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsStpIfPolFromPCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) ReadRelationinfraRsStpIfPolFromPCVPCInterfacePolicyGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsTopoctrlFastLinkFailoverInstPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsTopoctrlFastLinkFailoverInstPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsTopoctrlFwdScaleProfPol ¶ added in v1.12.2

func (sm *ServiceManager) ReadRelationinfraRsTopoctrlFwdScaleProfPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVipAddrNsFromFCDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsVipAddrNsFromFCDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVipAddrNsFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationinfraRsVipAddrNsFromL2Domain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVipAddrNsFromL3DomainProfile ¶

func (sm *ServiceManager) ReadRelationinfraRsVipAddrNsFromL3DomainProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVipAddrNsFromPhysicalDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsVipAddrNsFromPhysicalDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVipAddrNsFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsVipAddrNsFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsDefFromFCDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsVlanNsDefFromFCDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsDefFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationinfraRsVlanNsDefFromL2Domain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsDefFromL3DomainProfile ¶

func (sm *ServiceManager) ReadRelationinfraRsVlanNsDefFromL3DomainProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsDefFromPhysicalDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsVlanNsDefFromPhysicalDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsDefFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsVlanNsDefFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsFromFCDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsVlanNsFromFCDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsFromL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationinfraRsVlanNsFromL2Domain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsFromL3DomainProfile ¶

func (sm *ServiceManager) ReadRelationinfraRsVlanNsFromL3DomainProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsFromPhysicalDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsVlanNsFromPhysicalDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationinfraRsVlanNsFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationinfraRsVlanNsFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationipRsNHTrackMemberFromL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationipRsNHTrackMemberFromL3outStaticRouteNextHop(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationipRsNexthopRouteTrackFromL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationipRsNexthopRouteTrackFromL3outStaticRouteNextHop(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationipRsRouteTrackFromL3outStaticRoute ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationipRsRouteTrackFromL3outStaticRoute(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl2extRsEBdFromL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationl2extRsEBdFromL2Outside(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl2extRsL2DomAttFromL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationl2extRsL2DomAttFromL2Outside(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl2extRsL2InstPToDomPFromL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationl2extRsL2InstPToDomPFromL2outExternalEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsArpIfPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsArpIfPolFromLogicalInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsDampeningPolFromL3Outside ¶

func (sm *ServiceManager) ReadRelationl3extRsDampeningPolFromL3Outside(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsDynPathAttFromLogicalInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationl3extRsDynPathAttFromLogicalInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsEctxFromL3Outside ¶

func (sm *ServiceManager) ReadRelationl3extRsEctxFromL3Outside(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsEgressQosDppPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsEgressQosDppPolFromLogicalInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsIngressQosDppPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsIngressQosDppPolFromLogicalInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsInstPToNatMappingEPgFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsInstPToNatMappingEPgFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsInstPToProfileFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsInstPToProfileFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsInterleakPolFromL3Outside ¶

func (sm *ServiceManager) ReadRelationl3extRsInterleakPolFromL3Outside(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsL3DomAttFromL3Outside ¶

func (sm *ServiceManager) ReadRelationl3extRsL3DomAttFromL3Outside(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsL3InstPToDomPFromExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsL3InstPToDomPFromExternalNetworkInstanceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsLIfPCustQosPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsLIfPCustQosPolFromLogicalInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsLIfPToNetflowMonitorPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsLIfPToNetflowMonitorPolFromLogicalInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsNdIfPolFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsNdIfPolFromLogicalInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsNodeL3OutAttFromLogicalNodeProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsNodeL3OutAttFromLogicalNodeProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsOutToBDPublicSubnetHolderFromL3Outside ¶

func (sm *ServiceManager) ReadRelationl3extRsOutToBDPublicSubnetHolderFromL3Outside(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsPathL3OutAttFromLogicalInterfaceProfile ¶

func (sm *ServiceManager) ReadRelationl3extRsPathL3OutAttFromLogicalInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsSubnetToProfileFromL3ExtSubnet ¶

func (sm *ServiceManager) ReadRelationl3extRsSubnetToProfileFromL3ExtSubnet(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationl3extRsSubnetToRtSummFromL3ExtSubnet ¶

func (sm *ServiceManager) ReadRelationl3extRsSubnetToRtSummFromL3ExtSubnet(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmaintRsMgrppFromPODMaintenanceGroup ¶

func (sm *ServiceManager) ReadRelationmaintRsMgrppFromPODMaintenanceGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmaintRsPolNotifFromMaintenancePolicy ¶

func (sm *ServiceManager) ReadRelationmaintRsPolNotifFromMaintenancePolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmaintRsPolSchedulerFromMaintP ¶ added in v0.4.1

func (sm *ServiceManager) ReadRelationmaintRsPolSchedulerFromMaintP(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmaintRsPolSchedulerFromMaintenancePolicy ¶

func (sm *ServiceManager) ReadRelationmaintRsPolSchedulerFromMaintenancePolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsAddrInst ¶ added in v1.12.7

func (sm *ServiceManager) ReadRelationmgmtRsAddrInst(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsAddrInstFrommgmtInBZone ¶ added in v1.12.7

func (sm *ServiceManager) ReadRelationmgmtRsAddrInstFrommgmtInBZone(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsInB ¶ added in v1.12.7

func (sm *ServiceManager) ReadRelationmgmtRsInB(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsInBStNodeFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationmgmtRsInBStNodeFromInBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsInbEpg ¶ added in v1.12.7

func (sm *ServiceManager) ReadRelationmgmtRsInbEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsMgmtBDFromInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationmgmtRsMgmtBDFromInBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsOoB ¶ added in v1.12.7

func (sm *ServiceManager) ReadRelationmgmtRsOoB(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsOoBCtxFromOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationmgmtRsOoBCtxFromOutOfBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsOoBProvFromOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationmgmtRsOoBProvFromOutOfBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsOoBStNodeFromOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationmgmtRsOoBStNodeFromOutOfBandManagementEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationmgmtRsOobEpg ¶ added in v1.12.7

func (sm *ServiceManager) ReadRelationmgmtRsOobEpg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationospfRsIfPolFromInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationospfRsIfPolFromInterfaceProfile(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationrtctrlRsCtxPToSubjP ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationrtctrlRsCtxPToSubjP(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationrtctrlRsScopeToAttrP ¶ added in v1.17.0

func (sm *ServiceManager) ReadRelationrtctrlRsScopeToAttrP(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationspanRsSrcGrpToFilterGrpFromSPANSourceGroup ¶

func (sm *ServiceManager) ReadRelationspanRsSrcGrpToFilterGrpFromSPANSourceGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationtacacsRsDestGroup ¶ added in v1.12.34

func (sm *ServiceManager) ReadRelationtacacsRsDestGroup(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationtrigRsTriggerableFromConfigurationExportPolicy ¶

func (sm *ServiceManager) ReadRelationtrigRsTriggerableFromConfigurationExportPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationtrigRsTriggerableFromConfigurationImportPolicy ¶

func (sm *ServiceManager) ReadRelationtrigRsTriggerableFromConfigurationImportPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationtrigRsTriggerableFromMaintenancePolicy ¶

func (sm *ServiceManager) ReadRelationtrigRsTriggerableFromMaintenancePolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsAcc ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsAcc(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsCtrlrPMonPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsCtrlrPMonPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsDefaultCdpIfPolFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationvmmRsDefaultCdpIfPolFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsDefaultFwPolFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationvmmRsDefaultFwPolFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsDefaultL2InstPolFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationvmmRsDefaultL2InstPolFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsDefaultLacpLagPolFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationvmmRsDefaultLacpLagPolFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsDefaultLldpIfPolFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationvmmRsDefaultLldpIfPolFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsDefaultStpIfPolFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationvmmRsDefaultStpIfPolFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsDomMcastAddrNsFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationvmmRsDomMcastAddrNsFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsMcastAddrNs ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsMcastAddrNs(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsMgmtEPg ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsMgmtEPg(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsPrefEnhancedLagPolFromVMMDomain ¶

func (sm *ServiceManager) ReadRelationvmmRsPrefEnhancedLagPolFromVMMDomain(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsToExtDevMgr ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsToExtDevMgr(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVmmCtrlrP ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVmmCtrlrP(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVswitchExporterPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVswitchExporterPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVswitchOverrideCdpIfPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVswitchOverrideCdpIfPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVswitchOverrideFwPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVswitchOverrideFwPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVswitchOverrideLacpPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVswitchOverrideLacpPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVswitchOverrideLldpIfPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVswitchOverrideLldpIfPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVswitchOverrideMcpIfPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVswitchOverrideMcpIfPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVswitchOverrideMtuPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVswitchOverrideMtuPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVswitchOverrideStpPol ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVswitchOverrideStpPol(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVxlanNs ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVxlanNs(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvmmRsVxlanNsDef ¶ added in v1.3.29

func (sm *ServiceManager) ReadRelationvmmRsVxlanNsDef(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsALDevToDomP ¶ added in v1.37.0

func (sm *ServiceManager) ReadRelationvnsRsALDevToDomP(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsALDevToPhysDomP ¶ added in v1.37.0

func (sm *ServiceManager) ReadRelationvnsRsALDevToPhysDomP(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsAbsConnectionConnsFromConnection ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsAbsConnectionConnsFromConnection(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsAbsCopyConnectionFromConnection ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsAbsCopyConnectionFromConnection(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsCDevToCtrlrP ¶ added in v1.38.0

func (sm *ServiceManager) ReadRelationvnsRsCDevToCtrlrP(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsCIfAttN ¶ added in v1.37.0

func (sm *ServiceManager) ReadRelationvnsRsCIfAttN(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsCIfPathAtt ¶ added in v1.39.0

func (sm *ServiceManager) ReadRelationvnsRsCIfPathAtt(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsConnToAConnFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsConnToAConnFromFunctionConnector(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsConnToCtxTermFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsConnToCtxTermFromFunctionConnector(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsConnToFltFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsConnToFltFromFunctionConnector(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsDefaultScopeToTermFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsDefaultScopeToTermFromFunctionNode(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsEPgDefToConn ¶ added in v1.41.0

func (sm *ServiceManager) ReadRelationvnsRsEPgDefToConn(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsEPgDefToLIf ¶ added in v1.41.0

func (sm *ServiceManager) ReadRelationvnsRsEPgDefToLIf(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsEPpInfoAtt ¶ added in v1.41.0

func (sm *ServiceManager) ReadRelationvnsRsEPpInfoAtt(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsIPSLAMonitoringPolFromServiceRedirectPolicy ¶ added in v0.4.5

func (sm *ServiceManager) ReadRelationvnsRsIPSLAMonitoringPolFromServiceRedirectPolicy(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLDevCtxToLDevFromLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLDevCtxToLDevFromLogicalDeviceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLDevCtxToRtrCfgFromLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLDevCtxToRtrCfgFromLogicalDeviceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLIfCtxToBDFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLIfCtxToBDFromLogicalInterfaceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLIfCtxToCustQosPolFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLIfCtxToCustQosPolFromLogicalInterfaceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLIfCtxToInstPFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLIfCtxToInstPFromLogicalInterfaceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLIfCtxToLIfFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLIfCtxToLIfFromLogicalInterfaceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLIfCtxToOutDefFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLIfCtxToOutDefFromLogicalInterfaceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLIfCtxToOutFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLIfCtxToOutFromLogicalInterfaceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLIfCtxToSvcEPgPolFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLIfCtxToSvcEPgPolFromLogicalInterfaceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsLIfCtxToSvcRedirectPolFromLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsLIfCtxToSvcRedirectPolFromLogicalInterfaceContext(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsMConnAttFromFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsMConnAttFromFunctionConnector(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsNodeToAbsFuncProfFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsNodeToAbsFuncProfFromFunctionNode(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsNodeToCloudLDevFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsNodeToCloudLDevFromFunctionNode(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsNodeToLDevFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsNodeToLDevFromFunctionNode(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsNodeToMFuncFromFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) ReadRelationvnsRsNodeToMFuncFromFunctionNode(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsRedirectHealthGroupFromDestinationofredirectedtraffic ¶ added in v0.4.5

func (sm *ServiceManager) ReadRelationvnsRsRedirectHealthGroupFromDestinationofredirectedtraffic(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvnsRsSEPpInfoAtt ¶ added in v1.41.0

func (sm *ServiceManager) ReadRelationvnsRsSEPpInfoAtt(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsAnyToConsFromAny ¶

func (sm *ServiceManager) ReadRelationvzRsAnyToConsFromAny(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsAnyToConsIfFromAny ¶

func (sm *ServiceManager) ReadRelationvzRsAnyToConsIfFromAny(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsAnyToProvFromAny ¶

func (sm *ServiceManager) ReadRelationvzRsAnyToProvFromAny(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsFiltGraphAttFromFilter ¶

func (sm *ServiceManager) ReadRelationvzRsFiltGraphAttFromFilter(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsFwdRFltPAttFromFilter ¶

func (sm *ServiceManager) ReadRelationvzRsFwdRFltPAttFromFilter(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsGraphAttFromContract ¶

func (sm *ServiceManager) ReadRelationvzRsGraphAttFromContract(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsIfFromImportedContract ¶ added in v0.4.1

func (sm *ServiceManager) ReadRelationvzRsIfFromImportedContract(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsInTermGraphAtt ¶ added in v1.34.0

func (sm *ServiceManager) ReadRelationvzRsInTermGraphAtt(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsOutTermGraphAtt ¶ added in v1.34.0

func (sm *ServiceManager) ReadRelationvzRsOutTermGraphAtt(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsRevRFltPAttFromFilter ¶

func (sm *ServiceManager) ReadRelationvzRsRevRFltPAttFromFilter(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsSdwanPolFromContractSubject ¶

func (sm *ServiceManager) ReadRelationvzRsSdwanPolFromContractSubject(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsSubjFiltAttFromContractSubject ¶

func (sm *ServiceManager) ReadRelationvzRsSubjFiltAttFromContractSubject(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRelationvzRsSubjGraphAttFromContractSubject ¶

func (sm *ServiceManager) ReadRelationvzRsSubjGraphAttFromContractSubject(parentDn string) (interface{}, error)

func (*ServiceManager) ReadRemotePathofaFile ¶ added in v1.12.5

func (sm *ServiceManager) ReadRemotePathofaFile(name string) (*models.RemotePathofaFile, error)

func (*ServiceManager) ReadRouteContextScope ¶ added in v1.17.0

func (sm *ServiceManager) ReadRouteContextScope(route_control_context string, route_control_profile string, tenant string) (*models.RouteContextScope, error)

func (*ServiceManager) ReadRouteControlContext ¶ added in v1.3.29

func (sm *ServiceManager) ReadRouteControlContext(name string, route_control_profile string, tenant string, l3_outside string) (*models.RouteControlContext, error)

func (*ServiceManager) ReadRouteControlProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadRouteControlProfile(name string, tenant string) (*models.RouteControlProfile, error)

func (*ServiceManager) ReadRtctrlSetAddComm ¶ added in v1.31.0

func (sm *ServiceManager) ReadRtctrlSetAddComm(community string, action_rule_profile string, tenant string) (*models.RtctrlSetAddComm, error)

func (*ServiceManager) ReadRtctrlSetComm ¶ added in v1.31.0

func (sm *ServiceManager) ReadRtctrlSetComm(action_rule_profile string, tenant string) (*models.RtctrlSetComm, error)

func (*ServiceManager) ReadRtctrlSetDamp ¶ added in v1.31.0

func (sm *ServiceManager) ReadRtctrlSetDamp(action_rule_profile string, tenant string) (*models.RtctrlSetDamp, error)

func (*ServiceManager) ReadRtctrlSetNh ¶ added in v1.31.0

func (sm *ServiceManager) ReadRtctrlSetNh(action_rule_profile string, tenant string) (*models.RtctrlSetNh, error)

func (*ServiceManager) ReadRtctrlSetPref ¶ added in v1.28.0

func (sm *ServiceManager) ReadRtctrlSetPref(action_rule_profile string, tenant string) (*models.RtctrlSetPref, error)

func (*ServiceManager) ReadRtctrlSetRtMetric ¶ added in v1.31.0

func (sm *ServiceManager) ReadRtctrlSetRtMetric(action_rule_profile string, tenant string) (*models.RtctrlSetRtMetric, error)

func (*ServiceManager) ReadRtctrlSetRtMetricType ¶ added in v1.31.0

func (sm *ServiceManager) ReadRtctrlSetRtMetricType(action_rule_profile string, tenant string) (*models.RtctrlSetRtMetricType, error)

func (*ServiceManager) ReadRtctrlSetTag ¶ added in v1.31.0

func (sm *ServiceManager) ReadRtctrlSetTag(action_rule_profile string, tenant string) (*models.RtctrlSetTag, error)

func (*ServiceManager) ReadRtctrlSetWeight ¶ added in v1.31.0

func (sm *ServiceManager) ReadRtctrlSetWeight(action_rule_profile string, tenant string) (*models.RtctrlSetWeight, error)

func (*ServiceManager) ReadSAMLProvider ¶ added in v1.12.20

func (sm *ServiceManager) ReadSAMLProvider(name string) (*models.SAMLProvider, error)

func (*ServiceManager) ReadSAMLProviderGroup ¶ added in v1.12.25

func (sm *ServiceManager) ReadSAMLProviderGroup(name string) (*models.SAMLProviderGroup, error)

func (*ServiceManager) ReadSNMPCommunity ¶ added in v1.12.6

func (sm *ServiceManager) ReadSNMPCommunity(name string, parent_dn string) (*models.SNMPCommunity, error)

func (*ServiceManager) ReadSNMPContextProfile ¶ added in v1.12.8

func (sm *ServiceManager) ReadSNMPContextProfile(vrf string, tenant string) (*models.SNMPContextProfile, error)

func (*ServiceManager) ReadSPANDestinationGroup ¶

func (sm *ServiceManager) ReadSPANDestinationGroup(name string, tenant string) (*models.SPANDestinationGroup, error)

func (*ServiceManager) ReadSPANSourceGroup ¶

func (sm *ServiceManager) ReadSPANSourceGroup(name string, tenant string) (*models.SPANSourceGroup, error)

func (*ServiceManager) ReadSPANSourcedestinationGroupMatchLabel ¶

func (sm *ServiceManager) ReadSPANSourcedestinationGroupMatchLabel(name string, span_source_group string, tenant string) (*models.SPANSourcedestinationGroupMatchLabel, error)

func (*ServiceManager) ReadSchedP ¶ added in v0.4.1

func (sm *ServiceManager) ReadSchedP(name string) (*models.SchedP, error)

func (*ServiceManager) ReadSecurityDomain ¶ added in v1.3.9

func (sm *ServiceManager) ReadSecurityDomain(name string) (*models.SecurityDomain, error)

func (*ServiceManager) ReadServiceRedirectPolicy ¶ added in v0.4.5

func (sm *ServiceManager) ReadServiceRedirectPolicy(name string, tenant string) (*models.ServiceRedirectPolicy, error)

func (*ServiceManager) ReadSetASPath ¶ added in v1.31.0

func (sm *ServiceManager) ReadSetASPath(criteria string, action_rule_profile string, tenant string) (*models.SetASPath, error)

func (*ServiceManager) ReadSpanningTreeInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadSpanningTreeInterfacePolicy(name string) (*models.SpanningTreeInterfacePolicy, error)

func (*ServiceManager) ReadSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) ReadSpineAccessPortPolicyGroup(name string) (*models.SpineAccessPortPolicyGroup, error)

func (*ServiceManager) ReadSpineAccessPortSelector ¶ added in v1.21.1

func (sm *ServiceManager) ReadSpineAccessPortSelector(spine_access_port_selector_type string, name string, spine_interface_profile string) (*models.SpineAccessPortSelector, error)

func (*ServiceManager) ReadSpineInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) ReadSpineInterfaceProfile(name string) (*models.SpineInterfaceProfile, error)

func (*ServiceManager) ReadSpineProfile ¶ added in v0.4.18

func (sm *ServiceManager) ReadSpineProfile(name string) (*models.SpineProfile, error)

func (*ServiceManager) ReadSpineSwitchPolicyGroup ¶ added in v1.12.3

func (sm *ServiceManager) ReadSpineSwitchPolicyGroup(name string) (*models.SpineSwitchPolicyGroup, error)

func (*ServiceManager) ReadStaticPath ¶ added in v0.4.1

func (sm *ServiceManager) ReadStaticPath(tDn string, application_epg string, application_profile string, tenant string) (*models.StaticPath, error)

func (*ServiceManager) ReadSubjectFilter ¶ added in v1.32.0

func (sm *ServiceManager) ReadSubjectFilter(tnVzFilterName string, contract_subject string, contract string, tenant string) (*models.SubjectFilter, error)

func (*ServiceManager) ReadSubnet ¶

func (sm *ServiceManager) ReadSubnet(ip string, bridge_domain string, tenant string) (*models.Subnet, error)

func (*ServiceManager) ReadSwitchAssociation ¶

func (sm *ServiceManager) ReadSwitchAssociation(switch_association_type string, name string, leaf_profile string) (*models.SwitchAssociation, error)

func (*ServiceManager) ReadSwitchSpineAssociation ¶ added in v0.4.18

func (sm *ServiceManager) ReadSwitchSpineAssociation(switch_association_type string, name string, spine_profile string) (*models.SwitchSpineAssociation, error)

func (*ServiceManager) ReadSystem ¶ added in v0.4.1

func (sm *ServiceManager) ReadSystem(pod int, node int) (*models.System, error)

func (*ServiceManager) ReadTACACSDestination ¶ added in v1.12.18

func (sm *ServiceManager) ReadTACACSDestination(port string, host string, tacacs_monitoring_destination_group string) (*models.TACACSDestination, error)

func (*ServiceManager) ReadTACACSMonitoringDestinationGroup ¶ added in v1.12.17

func (sm *ServiceManager) ReadTACACSMonitoringDestinationGroup(name string) (*models.TACACSMonitoringDestinationGroup, error)

func (*ServiceManager) ReadTACACSPlusProviderGroup ¶ added in v1.12.22

func (sm *ServiceManager) ReadTACACSPlusProviderGroup(name string) (*models.TACACSPlusProviderGroup, error)

func (*ServiceManager) ReadTACACSProvider ¶ added in v1.12.25

func (sm *ServiceManager) ReadTACACSProvider(name string) (*models.TACACSProvider, error)

func (*ServiceManager) ReadTACACSSource ¶ added in v1.12.34

func (sm *ServiceManager) ReadTACACSSource(name string, monitoring_target_scope string, monitoring_policy string, tenant string) (*models.TACACSSource, error)

func (*ServiceManager) ReadTabooContract ¶

func (sm *ServiceManager) ReadTabooContract(name string, tenant string) (*models.TabooContract, error)

func (*ServiceManager) ReadTag ¶ added in v1.19.0

func (sm *ServiceManager) ReadTag(key string, parentDn string) (*models.Tag, error)

func (*ServiceManager) ReadTenant ¶

func (sm *ServiceManager) ReadTenant(name string) (*models.Tenant, error)

func (*ServiceManager) ReadTenantToCloudAccountAssociation ¶ added in v1.50.0

func (sm *ServiceManager) ReadTenantToCloudAccountAssociation(tenant string) (*models.TenantToCloudAccountAssociation, error)

func (*ServiceManager) ReadTenantandVRFdestinationforInterVRFLeakedRoutes ¶ added in v1.44.0

func (sm *ServiceManager) ReadTenantandVRFdestinationforInterVRFLeakedRoutes(destinationCtxName string, destinationTenantName string, parentDn string) (*models.TenantandVRFdestinationforInterVRFLeakedRoutes, error)

func (*ServiceManager) ReadTerminalConnector ¶ added in v1.3.27

func (sm *ServiceManager) ReadTerminalConnector(consumer_terminal_node string, l4_l7_service_graph_template string, tenant string) (*models.TerminalConnector, error)

func (*ServiceManager) ReadTopologyFabricNode ¶ added in v0.4.1

func (sm *ServiceManager) ReadTopologyFabricNode(pod int, node int) (*models.TopologyFabricNode, error)

func (*ServiceManager) ReadTriggerScheduler ¶

func (sm *ServiceManager) ReadTriggerScheduler(name string) (*models.TriggerScheduler, error)

func (*ServiceManager) ReadUpgJob ¶ added in v0.4.1

func (sm *ServiceManager) ReadUpgJob(pod int, node int) (*models.UpgJob, error)

func (*ServiceManager) ReadUserDomain ¶ added in v1.12.12

func (sm *ServiceManager) ReadUserDomain(name string, local_user string) (*models.UserDomain, error)

func (*ServiceManager) ReadUserManagement ¶ added in v1.12.31

func (sm *ServiceManager) ReadUserManagement() (*models.UserManagement, error)

func (*ServiceManager) ReadUserRole ¶ added in v1.12.14

func (sm *ServiceManager) ReadUserRole(name string, user_domain string, local_user string) (*models.UserRole, error)

func (*ServiceManager) ReadVLANPool ¶

func (sm *ServiceManager) ReadVLANPool(allocMode string, name string) (*models.VLANPool, error)

func (*ServiceManager) ReadVMMController ¶ added in v1.3.29

func (sm *ServiceManager) ReadVMMController(name string, vmm_domain string, provider_profile_vendor string) (*models.VMMController, error)

func (*ServiceManager) ReadVMMCredential ¶ added in v1.3.29

func (sm *ServiceManager) ReadVMMCredential(name string, vmm_domain string, provider_profile_vendor string) (*models.VMMCredential, error)

func (*ServiceManager) ReadVMMDomain ¶

func (sm *ServiceManager) ReadVMMDomain(name string, provider_profile_vendor string) (*models.VMMDomain, error)

func (*ServiceManager) ReadVMMSecurityPolicy ¶ added in v0.4.1

func (sm *ServiceManager) ReadVMMSecurityPolicy(domain_tDn string, application_epg string, application_profile string, tenant string) (*models.VMMSecurityPolicy, error)

func (*ServiceManager) ReadVPCDomainPolicy ¶ added in v1.3.29

func (sm *ServiceManager) ReadVPCDomainPolicy(name string) (*models.VPCDomainPolicy, error)

func (*ServiceManager) ReadVPCExplicitProtectionGroup ¶

func (sm *ServiceManager) ReadVPCExplicitProtectionGroup(name string) (*models.VPCExplicitProtectionGroup, error)

func (*ServiceManager) ReadVRF ¶

func (sm *ServiceManager) ReadVRF(name string, tenant string) (*models.VRF, error)

func (*ServiceManager) ReadVSANPool ¶

func (sm *ServiceManager) ReadVSANPool(allocMode string, name string) (*models.VSANPool, error)

func (*ServiceManager) ReadVSwitchPolicyGroup ¶ added in v1.3.29

func (sm *ServiceManager) ReadVSwitchPolicyGroup(vmm_domain string, provider_profile_vendor string) (*models.VSwitchPolicyGroup, error)

func (*ServiceManager) ReadVXLANPool ¶

func (sm *ServiceManager) ReadVXLANPool(name string) (*models.VXLANPool, error)

func (*ServiceManager) ReadVirtualLogicalInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) ReadVirtualLogicalInterfaceProfile(encap string, nodeDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string) (*models.VirtualLogicalInterfaceProfile, error)

func (*ServiceManager) ReadVlanEncapsulationforVxlanTraffic ¶

func (sm *ServiceManager) ReadVlanEncapsulationforVxlanTraffic(attachable_access_entity_profile string) (*models.VlanEncapsulationforVxlanTraffic, error)

func (*ServiceManager) ReadWebTokenData ¶ added in v1.12.31

func (sm *ServiceManager) ReadWebTokenData() (*models.WebTokenData, error)

func (*ServiceManager) ReadX509Certificate ¶ added in v0.0.11

func (sm *ServiceManager) ReadX509Certificate(name string, local_user string) (*models.X509Certificate, error)

func (*ServiceManager) Save ¶

func (sm *ServiceManager) Save(obj models.Model) error

func (*ServiceManager) UpdateAAAAuthentication ¶ added in v1.12.16

func (sm *ServiceManager) UpdateAAAAuthentication(description string, nameAlias string, aaaAuthRealmAttr models.AAAAuthenticationAttributes) (*models.AAAAuthentication, error)

func (*ServiceManager) UpdateAESEncryptionPassphraseandKeysforConfigExportImport ¶ added in v1.12.13

func (sm *ServiceManager) UpdateAESEncryptionPassphraseandKeysforConfigExportImport(description string, nameAlias string, pkiExportEncryptionKeyAttr models.AESEncryptionPassphraseandKeysforConfigExportImportAttributes) (*models.AESEncryptionPassphraseandKeysforConfigExportImport, error)

func (*ServiceManager) UpdateASNumber ¶ added in v1.31.0

func (sm *ServiceManager) UpdateASNumber(order string, set_as_path_criteria string, action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetASPathASNAttr models.ASNumberAttributes) (*models.ASNumber, error)

func (*ServiceManager) UpdateAaaDomainRef ¶ added in v1.24.0

func (sm *ServiceManager) UpdateAaaDomainRef(name string, parentDn string, nameAlias string, aaaDomainRefAttr models.AaaDomainRefAttributes) (*models.AaaDomainRef, error)

func (*ServiceManager) UpdateAccessAccessGroup ¶ added in v0.4.9

func (sm *ServiceManager) UpdateAccessAccessGroup(access_port_selector_type string, access_port_selector string, leaf_interface_profile string, infraRsAccBaseGrpattr models.AccessAccessGroupAttributes) (*models.AccessAccessGroup, error)

func (*ServiceManager) UpdateAccessGeneric ¶ added in v0.4.4

func (sm *ServiceManager) UpdateAccessGeneric(name string, attachable_access_entity_profile string, description string, infraGenericattr models.AccessGenericAttributes) (*models.AccessGeneric, error)

func (*ServiceManager) UpdateAccessPortBlock ¶

func (sm *ServiceManager) UpdateAccessPortBlock(name string, access_port_selector_type string, access_port_selector string, leaf_interface_profile string, description string, infraPortBlkattr models.AccessPortBlockAttributes) (*models.AccessPortBlock, error)

func (*ServiceManager) UpdateAccessPortSelector ¶

func (sm *ServiceManager) UpdateAccessPortSelector(access_port_selector_type string, name string, leaf_interface_profile string, description string, infraHPortSattr models.AccessPortSelectorAttributes) (*models.AccessPortSelector, error)

func (*ServiceManager) UpdateAccessSubPortBlock ¶

func (sm *ServiceManager) UpdateAccessSubPortBlock(name string, access_port_selector_type string, access_port_selector string, leaf_interface_profile string, description string, infraSubPortBlkattr models.AccessSubPortBlockAttributes) (*models.AccessSubPortBlock, error)

func (*ServiceManager) UpdateAccessSwitchPolicyGroup ¶ added in v1.12.2

func (sm *ServiceManager) UpdateAccessSwitchPolicyGroup(name string, description string, nameAlias string, infraAccNodePGrpAttr models.AccessSwitchPolicyGroupAttributes) (*models.AccessSwitchPolicyGroup, error)

func (*ServiceManager) UpdateActionRuleProfile ¶

func (sm *ServiceManager) UpdateActionRuleProfile(name string, tenant string, description string, nameAlias string, rtctrlAttrPAttr models.ActionRuleProfileAttributes) (*models.ActionRuleProfile, error)

func (*ServiceManager) UpdateAnnotation ¶ added in v1.19.0

func (sm *ServiceManager) UpdateAnnotation(key string, parentDn string, tagAnnotationAttr models.AnnotationAttributes) (*models.Annotation, error)

func (*ServiceManager) UpdateAny ¶

func (sm *ServiceManager) UpdateAny(vrf string, tenant string, description string, vzAnyattr models.AnyAttributes) (*models.Any, error)

func (*ServiceManager) UpdateAnycastEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) UpdateAnycastEndpoint(mac string, parent_dn string, description string, nameAlias string, fvEpAnycastAttr models.AnycastEndpointAttributes) (*models.AnycastEndpoint, error)

func (*ServiceManager) UpdateApplicationEPG ¶

func (sm *ServiceManager) UpdateApplicationEPG(name string, application_profile string, tenant string, description string, fvAEPgattr models.ApplicationEPGAttributes) (*models.ApplicationEPG, error)

func (*ServiceManager) UpdateApplicationEPGLagPolicy ¶ added in v1.35.0

func (sm *ServiceManager) UpdateApplicationEPGLagPolicy(domain_dn string, application_epg string, application_profile string, tenant string, fvAEPgLagPolAttAttr models.ApplicationEPGLagPolicyAttributes) (*models.ApplicationEPGLagPolicy, error)

func (*ServiceManager) UpdateApplicationProfile ¶

func (sm *ServiceManager) UpdateApplicationProfile(name string, tenant string, description string, fvApattr models.ApplicationProfileAttributes) (*models.ApplicationProfile, error)

func (*ServiceManager) UpdateAttachableAccessEntityProfile ¶

func (sm *ServiceManager) UpdateAttachableAccessEntityProfile(name string, description string, infraAttEntityPattr models.AttachableAccessEntityProfileAttributes) (*models.AttachableAccessEntityProfile, error)

func (*ServiceManager) UpdateAuthenticationMethodfortheDomain ¶ added in v1.12.21

func (sm *ServiceManager) UpdateAuthenticationMethodfortheDomain(login_domain string, description string, nameAlias string, aaaDomainAuthAttr models.AuthenticationMethodfortheDomainAttributes) (*models.AuthenticationMethodfortheDomain, error)

func (*ServiceManager) UpdateAutonomousSystemProfile ¶

func (sm *ServiceManager) UpdateAutonomousSystemProfile(description string, cloudBgpAsPattr models.AutonomousSystemProfileAttributes) (*models.AutonomousSystemProfile, error)

func (*ServiceManager) UpdateBDDHCPLabel ¶ added in v1.3.27

func (sm *ServiceManager) UpdateBDDHCPLabel(name string, bridge_domain string, tenant string, description string, dhcpLblattr models.BDDHCPLabelAttributes) (*models.BDDHCPLabel, error)

func (*ServiceManager) UpdateBFDInterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) UpdateBFDInterfacePolicy(name string, tenant string, description string, bfdIfPolattr models.BFDInterfacePolicyAttributes) (*models.BFDInterfacePolicy, error)

func (*ServiceManager) UpdateBFDInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateBFDInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, bfdIfPattr models.BFDInterfaceProfileAttributes) (*models.BFDInterfaceProfile, error)

func (*ServiceManager) UpdateBGPAddressFamilyContextPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateBGPAddressFamilyContextPolicy(name string, tenant string, description string, bgpCtxAfPolattr models.BGPAddressFamilyContextPolicyAttributes) (*models.BGPAddressFamilyContextPolicy, error)

func (*ServiceManager) UpdateBGPAddressFamilyContextPolicyRelationship ¶ added in v1.25.0

func (sm *ServiceManager) UpdateBGPAddressFamilyContextPolicyRelationship(af string, tnBgpCtxAfPolName string, vrf string, tenant string, fvRsCtxToBgpCtxAfPolAttr models.BGPAddressFamilyContextPolicyRelationshipAttributes) (*models.BGPAddressFamilyContextPolicyRelationship, error)

func (*ServiceManager) UpdateBGPPeerPrefixPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateBGPPeerPrefixPolicy(name string, tenant string, description string, bgpPeerPfxPolattr models.BGPPeerPrefixPolicyAttributes) (*models.BGPPeerPrefixPolicy, error)

func (*ServiceManager) UpdateBGPTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateBGPTimersPolicy(name string, tenant string, description string, bgpCtxPolattr models.BGPTimersPolicyAttributes) (*models.BGPTimersPolicy, error)

func (*ServiceManager) UpdateBgpAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateBgpAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string, description string, bgpAsPattr models.BgpAutonomousSystemProfileAttributes) (*models.BgpAutonomousSystemProfile, error)

func (*ServiceManager) UpdateBgpBestPathPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateBgpBestPathPolicy(name string, tenant string, description string, bgpBestPathCtrlPolattr models.BgpBestPathPolicyAttributes) (*models.BgpBestPathPolicy, error)

func (*ServiceManager) UpdateBgpPeerConnectivityProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateBgpPeerConnectivityProfile(addr string, logical_node_profile string, l3_outside string, tenant string, description string, bgpPeerPattr models.BgpPeerConnectivityProfileAttributes) (*models.BgpPeerConnectivityProfile, error)

func (*ServiceManager) UpdateBgpRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) UpdateBgpRouteSummarization(name string, tenant string, description string, bgpRtSummPolattr models.BgpRouteSummarizationAttributes) (*models.BgpRouteSummarization, error)

func (*ServiceManager) UpdateBlockUserLoginsPolicy ¶ added in v1.12.31

func (sm *ServiceManager) UpdateBlockUserLoginsPolicy(description string, nameAlias string, aaaBlockLoginProfileAttr models.BlockUserLoginsPolicyAttributes) (*models.BlockUserLoginsPolicy, error)

func (*ServiceManager) UpdateBridgeDomain ¶

func (sm *ServiceManager) UpdateBridgeDomain(name string, tenant string, description string, fvBDattr models.BridgeDomainAttributes) (*models.BridgeDomain, error)

func (*ServiceManager) UpdateCDPInterfacePolicy ¶

func (sm *ServiceManager) UpdateCDPInterfacePolicy(name string, description string, cdpIfPolattr models.CDPInterfacePolicyAttributes) (*models.CDPInterfacePolicy, error)

func (*ServiceManager) UpdateCOOPGroupPolicy ¶ added in v1.12.10

func (sm *ServiceManager) UpdateCOOPGroupPolicy(name string, description string, nameAlias string, coopPolAttr models.COOPGroupPolicyAttributes) (*models.COOPGroupPolicy, error)

func (*ServiceManager) UpdateCloudAWSProvider ¶

func (sm *ServiceManager) UpdateCloudAWSProvider(tenant string, description string, cloudAwsProviderattr models.CloudAWSProviderAttributes) (*models.CloudAWSProvider, error)

func (*ServiceManager) UpdateCloudAccount ¶ added in v1.50.0

func (sm *ServiceManager) UpdateCloudAccount(vendor string, account_id string, tenant string, nameAlias string, cloudAccountAttr models.CloudAccountAttributes) (*models.CloudAccount, error)

func (*ServiceManager) UpdateCloudActiveDirectory ¶ added in v1.50.0

func (sm *ServiceManager) UpdateCloudActiveDirectory(active_directory_id string, tenant string, nameAlias string, cloudADAttr models.CloudActiveDirectoryAttributes) (*models.CloudActiveDirectory, error)

func (*ServiceManager) UpdateCloudApplicationcontainer ¶

func (sm *ServiceManager) UpdateCloudApplicationcontainer(name string, tenant string, description string, cloudAppattr models.CloudApplicationcontainerAttributes) (*models.CloudApplicationcontainer, error)

func (*ServiceManager) UpdateCloudAvailabilityZone ¶

func (sm *ServiceManager) UpdateCloudAvailabilityZone(name string, cloud_providers_region string, cloud_provider_profile_vendor string, description string, cloudZoneattr models.CloudAvailabilityZoneAttributes) (*models.CloudAvailabilityZone, error)

func (*ServiceManager) UpdateCloudCIDRPool ¶

func (sm *ServiceManager) UpdateCloudCIDRPool(addr string, cloud_context_profile string, tenant string, description string, cloudCidrattr models.CloudCIDRPoolAttributes) (*models.CloudCIDRPool, error)

func (*ServiceManager) UpdateCloudContextProfile ¶

func (sm *ServiceManager) UpdateCloudContextProfile(name string, tenant string, description string, cloudCtxProfileattr models.CloudContextProfileAttributes, primaryCidr string, region, vendor string, vrf string) (*models.CloudContextProfile, error)

func (*ServiceManager) UpdateCloudCredentials ¶ added in v1.50.0

func (sm *ServiceManager) UpdateCloudCredentials(name string, tenant string, nameAlias string, cloudCredentialsAttr models.CloudCredentialsAttributes) (*models.CloudCredentials, error)

func (*ServiceManager) UpdateCloudDomainProfile ¶

func (sm *ServiceManager) UpdateCloudDomainProfile(description string, cloudDomPattr models.CloudDomainProfileAttributes) (*models.CloudDomainProfile, error)

func (*ServiceManager) UpdateCloudEPg ¶

func (sm *ServiceManager) UpdateCloudEPg(name string, cloud_application_container string, tenant string, description string, cloudEPgattr models.CloudEPgAttributes) (*models.CloudEPg, error)

func (*ServiceManager) UpdateCloudEndpointSelector ¶

func (sm *ServiceManager) UpdateCloudEndpointSelector(name string, cloud_epg string, cloud_application_container string, tenant string, description string, cloudEPSelectorattr models.CloudEndpointSelectorAttributes) (*models.CloudEndpointSelector, error)

func (*ServiceManager) UpdateCloudEndpointSelectorforExternalEPgs ¶

func (sm *ServiceManager) UpdateCloudEndpointSelectorforExternalEPgs(name string, cloud_external_epg string, cloud_application_container string, tenant string, description string, cloudExtEPSelectorattr models.CloudEndpointSelectorforExternalEPgsAttributes) (*models.CloudEndpointSelectorforExternalEPgs, error)

func (*ServiceManager) UpdateCloudExternalEPg ¶

func (sm *ServiceManager) UpdateCloudExternalEPg(name string, cloud_application_container string, tenant string, description string, cloudExtEPgattr models.CloudExternalEPgAttributes) (*models.CloudExternalEPg, error)

func (*ServiceManager) UpdateCloudProviderProfile ¶

func (sm *ServiceManager) UpdateCloudProviderProfile(vendor string, description string, cloudProvPattr models.CloudProviderProfileAttributes) (*models.CloudProviderProfile, error)

func (*ServiceManager) UpdateCloudProvidersRegion ¶

func (sm *ServiceManager) UpdateCloudProvidersRegion(name string, cloud_provider_profile_vendor string, description string, cloudRegionattr models.CloudProvidersRegionAttributes) (*models.CloudProvidersRegion, error)

func (*ServiceManager) UpdateCloudSubnet ¶

func (sm *ServiceManager) UpdateCloudSubnet(ip string, cloud_cidr_pool_dn string, description string, cloudSubnetattr models.CloudSubnetAttributes, zoneDn string) (*models.CloudSubnet, error)

func (*ServiceManager) UpdateCloudTemplateforExternalNetwork ¶ added in v1.53.0

func (sm *ServiceManager) UpdateCloudTemplateforExternalNetwork(name string, infra_network_template string, tenant string, nameAlias string, cloudtemplateExtNetworkAttr models.CloudTemplateforExternalNetworkAttributes) (*models.CloudTemplateforExternalNetwork, error)

func (*ServiceManager) UpdateCloudVpnGateway ¶ added in v1.3.27

func (sm *ServiceManager) UpdateCloudVpnGateway(name string, cloudContextProfile string, tenant string, description string, cloudRouterPattr models.CloudVpnGatewayAttributes) (*models.CloudVpnGateway, error)

func (*ServiceManager) UpdateConcreteDevice ¶ added in v1.38.0

func (sm *ServiceManager) UpdateConcreteDevice(name string, parent_dn string, nameAlias string, vnsCDevAttr models.ConcreteDeviceAttributes) (*models.ConcreteDevice, error)

func (*ServiceManager) UpdateConcreteInterface ¶ added in v1.39.0

func (sm *ServiceManager) UpdateConcreteInterface(name string, parent_dn string, nameAlias string, vnsCIfAttr models.ConcreteInterfaceAttributes) (*models.ConcreteInterface, error)

func (*ServiceManager) UpdateConfigurationExportPolicy ¶

func (sm *ServiceManager) UpdateConfigurationExportPolicy(name string, description string, configExportPattr models.ConfigurationExportPolicyAttributes) (*models.ConfigurationExportPolicy, error)

func (*ServiceManager) UpdateConfigurationImportPolicy ¶

func (sm *ServiceManager) UpdateConfigurationImportPolicy(name string, description string, configImportPattr models.ConfigurationImportPolicyAttributes) (*models.ConfigurationImportPolicy, error)

func (*ServiceManager) UpdateConnection ¶ added in v1.3.27

func (sm *ServiceManager) UpdateConnection(name string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsConnectionattr models.ConnectionAttributes) (*models.Connection, error)

func (*ServiceManager) UpdateConsoleAuthenticationMethod ¶ added in v1.12.14

func (sm *ServiceManager) UpdateConsoleAuthenticationMethod(description string, nameAlias string, aaaConsoleAuthAttr models.ConsoleAuthenticationMethodAttributes) (*models.ConsoleAuthenticationMethod, error)

func (*ServiceManager) UpdateConsumerTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) UpdateConsumerTerminalNode(name string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsTermNodeConattr models.ConsumerTerminalNodeAttributes) (*models.ConsumerTerminalNode, error)

func (*ServiceManager) UpdateContract ¶

func (sm *ServiceManager) UpdateContract(name string, tenant string, description string, vzBrCPattr models.ContractAttributes) (*models.Contract, error)

func (*ServiceManager) UpdateContractConsumer ¶ added in v0.4.1

func (sm *ServiceManager) UpdateContractConsumer(tnVzBrCPName string, application_epg string, application_profile string, tenant string, fvRsConsattr models.ContractConsumerAttributes) (*models.ContractConsumer, error)

func (*ServiceManager) UpdateContractInterfaceRelationship ¶ added in v1.26.0

func (sm *ServiceManager) UpdateContractInterfaceRelationship(tnVzCPIfName string, application_epg string, application_profile string, tenant string, fvRsConsIfAttr models.ContractInterfaceRelationshipAttributes) (*models.ContractInterfaceRelationship, error)

func (*ServiceManager) UpdateContractProvider ¶ added in v0.4.1

func (sm *ServiceManager) UpdateContractProvider(tnVzBrCPName string, application_epg string, application_profile string, tenant string, fvRsProvattr models.ContractProviderAttributes) (*models.ContractProvider, error)

func (*ServiceManager) UpdateContractSubject ¶

func (sm *ServiceManager) UpdateContractSubject(name string, contract string, tenant string, description string, vzSubjattr models.ContractSubjectAttributes) (*models.ContractSubject, error)

func (*ServiceManager) UpdateCtrlrFwP ¶ added in v0.4.1

func (sm *ServiceManager) UpdateCtrlrFwP(description string, firmwareCtrlrFwPAttr models.CtrlrFwPAttributes) (*models.CtrlrFwP, error)

func (*ServiceManager) UpdateDHCPOption ¶ added in v1.3.27

func (sm *ServiceManager) UpdateDHCPOption(name string, dhcp_option_policy string, tenant string, dhcpOptionattr models.DHCPOptionAttributes) (*models.DHCPOption, error)

func (*ServiceManager) UpdateDHCPOptionPolicy ¶ added in v1.3.27

func (sm *ServiceManager) UpdateDHCPOptionPolicy(name string, tenant string, description string, dhcpOptionPolattr models.DHCPOptionPolicyAttributes) (*models.DHCPOptionPolicy, error)

func (*ServiceManager) UpdateDHCPRelayPolicy ¶ added in v1.3.27

func (sm *ServiceManager) UpdateDHCPRelayPolicy(name string, tenant string, description string, dhcpRelayPattr models.DHCPRelayPolicyAttributes) (*models.DHCPRelayPolicy, error)

func (*ServiceManager) UpdateDefaultAuthenticationMethodforallLogins ¶ added in v1.12.22

func (sm *ServiceManager) UpdateDefaultAuthenticationMethodforallLogins(description string, nameAlias string, aaaDefaultAuthAttr models.DefaultAuthenticationMethodforallLoginsAttributes) (*models.DefaultAuthenticationMethodforallLogins, error)

func (*ServiceManager) UpdateDefaultRadiusAuthenticationSettings ¶ added in v1.12.16

func (sm *ServiceManager) UpdateDefaultRadiusAuthenticationSettings(description string, nameAlias string, aaaPingEpAttr models.DefaultRadiusAuthenticationSettingsAttributes) (*models.DefaultRadiusAuthenticationSettings, error)

func (*ServiceManager) UpdateDestinationofredirectedtraffic ¶ added in v0.4.5

func (sm *ServiceManager) UpdateDestinationofredirectedtraffic(ip string, service_redirect_policy string, tenant string, description string, vnsRedirectDestattr models.DestinationofredirectedtrafficAttributes) (*models.Destinationofredirectedtraffic, error)

func (*ServiceManager) UpdateDownload ¶ added in v0.4.1

func (sm *ServiceManager) UpdateDownload(name string, description string, firmwareDownloadAttr models.DownloadAttributes) (*models.Download, error)

func (*ServiceManager) UpdateDuoProviderGroup ¶ added in v1.12.16

func (sm *ServiceManager) UpdateDuoProviderGroup(name string, description string, nameAlias string, aaaDuoProviderGroupAttr models.DuoProviderGroupAttributes) (*models.DuoProviderGroup, error)

func (*ServiceManager) UpdateEPGsUsingFunction ¶ added in v0.4.1

func (sm *ServiceManager) UpdateEPGsUsingFunction(tDn string, access_generic string, attachable_access_entity_profile string, description string, infraRsFuncToEpgattr models.EPGsUsingFunctionAttributes) (*models.EPGsUsingFunction, error)

func (*ServiceManager) UpdateEPLoopProtectionPolicy ¶ added in v1.12.10

func (sm *ServiceManager) UpdateEPLoopProtectionPolicy(name string, description string, nameAlias string, epLoopProtectPAttr models.EPLoopProtectionPolicyAttributes) (*models.EPLoopProtectionPolicy, error)

func (*ServiceManager) UpdateEPgDef ¶ added in v1.41.0

func (sm *ServiceManager) UpdateEPgDef(name string, parent_dn string, description string, nameAlias string, vnsEPgDefAttr models.EPgDefAttributes) (*models.EPgDef, error)

func (*ServiceManager) UpdateEndPointRetentionPolicy ¶

func (sm *ServiceManager) UpdateEndPointRetentionPolicy(name string, tenant string, description string, fvEpRetPolattr models.EndPointRetentionPolicyAttributes) (*models.EndPointRetentionPolicy, error)

func (*ServiceManager) UpdateEndpointControlPolicy ¶ added in v1.12.9

func (sm *ServiceManager) UpdateEndpointControlPolicy(name string, description string, nameAlias string, epControlPAttr models.EndpointControlPolicyAttributes) (*models.EndpointControlPolicy, error)

func (*ServiceManager) UpdateEndpointSecurityGroup ¶ added in v1.3.29

func (sm *ServiceManager) UpdateEndpointSecurityGroup(name string, application_profile string, tenant string, description string, nameAlias string, fvESgAttr models.EndpointSecurityGroupAttributes) (*models.EndpointSecurityGroup, error)

func (*ServiceManager) UpdateEndpointSecurityGroupEPgSelector ¶ added in v1.3.29

func (sm *ServiceManager) UpdateEndpointSecurityGroupEPgSelector(matchEpgDn string, endpoint_security_group string, application_profile string, tenant string, description string, nameAlias string, fvEPgSelectorAttr models.EndpointSecurityGroupEPgSelectorAttributes) (*models.EndpointSecurityGroupEPgSelector, error)

func (*ServiceManager) UpdateEndpointSecurityGroupSelector ¶ added in v1.3.29

func (sm *ServiceManager) UpdateEndpointSecurityGroupSelector(matchExpression string, endpoint_security_group string, application_profile string, tenant string, description string, nameAlias string, fvEPSelectorAttr models.EndpointSecurityGroupSelectorAttributes) (*models.EndpointSecurityGroupSelector, error)

func (*ServiceManager) UpdateEndpointSecurityGroupTagSelector ¶ added in v1.3.29

func (sm *ServiceManager) UpdateEndpointSecurityGroupTagSelector(matchValue string, matchKey string, endpoint_security_group string, application_profile string, tenant string, description string, nameAlias string, fvTagSelectorAttr models.EndpointSecurityGroupTagSelectorAttributes) (*models.EndpointSecurityGroupTagSelector, error)

func (*ServiceManager) UpdateEpReachability ¶ added in v1.43.0

func (sm *ServiceManager) UpdateEpReachability(parent_dn string, fvEpReachabilityAttr models.EpReachabilityAttributes) (*models.EpReachability, error)

func (*ServiceManager) UpdateErrorDisabledRecoveryEvent ¶ added in v1.12.14

func (sm *ServiceManager) UpdateErrorDisabledRecoveryEvent(event string, error_disabled_recovery_policy string, description string, nameAlias string, edrEventPAttr models.ErrorDisabledRecoveryEventAttributes) (*models.ErrorDisabledRecoveryEvent, error)

func (*ServiceManager) UpdateErrorDisabledRecoveryPolicy ¶ added in v1.12.14

func (sm *ServiceManager) UpdateErrorDisabledRecoveryPolicy(name string, description string, nameAlias string, edrErrDisRecoverPolAttr models.ErrorDisabledRecoveryPolicyAttributes) (*models.ErrorDisabledRecoveryPolicy, error)

func (*ServiceManager) UpdateExternalNetworkInstanceProfile ¶

func (sm *ServiceManager) UpdateExternalNetworkInstanceProfile(name string, l3_outside string, tenant string, description string, l3extInstPattr models.ExternalNetworkInstanceProfileAttributes) (*models.ExternalNetworkInstanceProfile, error)

func (*ServiceManager) UpdateFCDomain ¶

func (sm *ServiceManager) UpdateFCDomain(name string, fcDomPattr models.FCDomainAttributes) (*models.FCDomain, error)

func (*ServiceManager) UpdateFEXProfile ¶ added in v0.4.9

func (sm *ServiceManager) UpdateFEXProfile(name string, description string, infraFexPattr models.FEXProfileAttributes) (*models.FEXProfile, error)

func (*ServiceManager) UpdateFVDomain ¶ added in v0.4.1

func (sm *ServiceManager) UpdateFVDomain(tDn string, application_epg string, application_profile string, tenant string, description string, fvRsDomAttattr models.FVDomainAttributes) (*models.FVDomain, error)

func (*ServiceManager) UpdateFabricNode ¶ added in v0.4.1

func (sm *ServiceManager) UpdateFabricNode(tDn string, logical_node_profile string, l3_outside string, tenant string, l3extRsNodeL3OutAttattr models.FabricNodeAttributes) (*models.FabricNode, error)

func (*ServiceManager) UpdateFabricNodeControl ¶ added in v1.12.9

func (sm *ServiceManager) UpdateFabricNodeControl(name string, description string, nameAlias string, fabricNodeControlAttr models.FabricNodeControlAttributes) (*models.FabricNodeControl, error)

func (*ServiceManager) UpdateFabricNodeMember ¶

func (sm *ServiceManager) UpdateFabricNodeMember(serial string, description string, fabricNodeIdentPattr models.FabricNodeMemberAttributes) (*models.FabricNodeMember, error)

func (*ServiceManager) UpdateFabricPathEndpoint ¶ added in v0.5.11

func (sm *ServiceManager) UpdateFabricPathEndpoint(name string, fabric_path_end_point_container_nodeId string, fabric_pod_id string, description string, fabricPathEpattr models.FabricPathEndpointAttributes) (*models.FabricPathEndpoint, error)

func (*ServiceManager) UpdateFabricWideSettingsPolicy ¶ added in v1.12.15

func (sm *ServiceManager) UpdateFabricWideSettingsPolicy(description string, nameAlias string, infraSetPolAttr models.FabricWideSettingsPolicyAttributes) (*models.FabricWideSettingsPolicy, error)

func (*ServiceManager) UpdateFexBundleGroup ¶ added in v0.4.9

func (sm *ServiceManager) UpdateFexBundleGroup(name string, fex_profile string, description string, infraFexBndlGrpattr models.FexBundleGroupAttributes) (*models.FexBundleGroup, error)

func (*ServiceManager) UpdateFilter ¶

func (sm *ServiceManager) UpdateFilter(name string, tenant string, description string, vzFilterattr models.FilterAttributes) (*models.Filter, error)

func (*ServiceManager) UpdateFilterEntry ¶

func (sm *ServiceManager) UpdateFilterEntry(name string, filter string, tenant string, description string, vzEntryattr models.FilterEntryAttributes) (*models.FilterEntry, error)

func (*ServiceManager) UpdateFilterRelationship ¶ added in v1.36.0

func (sm *ServiceManager) UpdateFilterRelationship(tnVzFilterName string, parentDn string, vzRsFiltAttAttr models.FilterRelationshipAttributes) (*models.FilterRelationship, error)

func (*ServiceManager) UpdateFirmware ¶ added in v0.4.1

func (sm *ServiceManager) UpdateFirmware(name string, description string, firmwareFirmwareAttr models.FirmwareAttributes) (*models.Firmware, error)

func (*ServiceManager) UpdateFirmwareDownloadTask ¶

func (sm *ServiceManager) UpdateFirmwareDownloadTask(name string, description string, firmwareOSourceattr models.FirmwareDownloadTaskAttributes) (*models.FirmwareDownloadTask, error)

func (*ServiceManager) UpdateFirmwareGroup ¶

func (sm *ServiceManager) UpdateFirmwareGroup(name string, description string, firmwareFwGrpattr models.FirmwareGroupAttributes) (*models.FirmwareGroup, error)

func (*ServiceManager) UpdateFirmwarePolicy ¶

func (sm *ServiceManager) UpdateFirmwarePolicy(name string, description string, firmwareFwPattr models.FirmwarePolicyAttributes) (*models.FirmwarePolicy, error)

func (*ServiceManager) UpdateFunctionConnector ¶ added in v1.3.27

func (sm *ServiceManager) UpdateFunctionConnector(name string, function_node string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsFuncConnattr models.FunctionConnectorAttributes) (*models.FunctionConnector, error)

func (*ServiceManager) UpdateFunctionNode ¶ added in v1.3.27

func (sm *ServiceManager) UpdateFunctionNode(name string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsNodeattr models.FunctionNodeAttributes) (*models.FunctionNode, error)

func (*ServiceManager) UpdateHSRPGroupPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateHSRPGroupPolicy(name string, tenant string, description string, hsrpGroupPolattr models.HSRPGroupPolicyAttributes) (*models.HSRPGroupPolicy, error)

func (*ServiceManager) UpdateHSRPGroupProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateHSRPGroupProfile(name string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, hsrpGroupPattr models.HSRPGroupProfileAttributes) (*models.HSRPGroupProfile, error)

func (*ServiceManager) UpdateHSRPInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateHSRPInterfacePolicy(name string, tenant string, description string, hsrpIfPolattr models.HSRPInterfacePolicyAttributes) (*models.HSRPInterfacePolicy, error)

func (*ServiceManager) UpdateIPAgingPolicy ¶ added in v1.12.9

func (sm *ServiceManager) UpdateIPAgingPolicy(name string, description string, nameAlias string, epIpAgingPAttr models.IPAgingPolicyAttributes) (*models.IPAgingPolicy, error)

func (*ServiceManager) UpdateIPSLAMonitoringPolicy ¶ added in v1.41.0

func (sm *ServiceManager) UpdateIPSLAMonitoringPolicy(name string, tenant string, description string, nameAlias string, fvIPSLAMonitoringPolAttr models.IPSLAMonitoringPolicyAttributes) (*models.IPSLAMonitoringPolicy, error)

func (*ServiceManager) UpdateISISDomainPolicy ¶ added in v1.12.15

func (sm *ServiceManager) UpdateISISDomainPolicy(name string, description string, nameAlias string, isisDomPolAttr models.ISISDomainPolicyAttributes) (*models.ISISDomainPolicy, error)

func (*ServiceManager) UpdateISISLevel ¶ added in v1.12.15

func (sm *ServiceManager) UpdateISISLevel(isis_level_type string, isis_domain_policy string, description string, nameAlias string, isisLvlCompAttr models.ISISLevelAttributes) (*models.ISISLevel, error)

func (*ServiceManager) UpdateImportedContract ¶ added in v0.4.1

func (sm *ServiceManager) UpdateImportedContract(name string, tenant string, description string, vzCPIfattr models.ImportedContractAttributes) (*models.ImportedContract, error)

func (*ServiceManager) UpdateInBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) UpdateInBManagedNodesZone(managed_node_connectivity_group string, description string, nameAlias string, mgmtInBZoneAttr models.InBManagedNodesZoneAttributes) (*models.InBManagedNodesZone, error)

func (*ServiceManager) UpdateInBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) UpdateInBandManagementEPg(name string, management_profile string, tenant string, description string, mgmtInBattr models.InBandManagementEPgAttributes) (*models.InBandManagementEPg, error)

func (*ServiceManager) UpdateInTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) UpdateInTermSubject(contract_subject string, contract string, tenant string, description string, nameAlias string, vzInTermAttr models.InTermSubjectAttributes) (*models.InTermSubject, error)

func (*ServiceManager) UpdateInbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) UpdateInbandStaticNode(tDn string, in_band_management_epg string, management_profile string, tenant string, description string, mgmtRsInBStNodeattr models.InbandStaticNodeAttributes) (*models.InbandStaticNode, error)

func (*ServiceManager) UpdateInterVRFLeakedRoutesContainer ¶ added in v1.45.0

func (sm *ServiceManager) UpdateInterVRFLeakedRoutesContainer(vrf string, tenant string, description string, nameAlias string, leakRoutesAttr models.InterVRFLeakedRoutesContainerAttributes) (*models.InterVRFLeakedRoutesContainer, error)

func (*ServiceManager) UpdateInterfaceFCPolicy ¶

func (sm *ServiceManager) UpdateInterfaceFCPolicy(name string, description string, fcIfPolattr models.InterfaceFCPolicyAttributes) (*models.InterfaceFCPolicy, error)

func (*ServiceManager) UpdateInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) UpdateInterfaceProfile(tDn string, spine_profile string, description string, infraRsSpAccPortPattr models.InterfaceProfileAttributes) (*models.InterfaceProfile, error)

func (*ServiceManager) UpdateKeypairforSAMLEncryption ¶ added in v1.12.16

func (sm *ServiceManager) UpdateKeypairforSAMLEncryption(name string, description string, nameAlias string, aaaSamlEncCertAttr models.KeypairforSAMLEncryptionAttributes) (*models.KeypairforSAMLEncryption, error)

func (*ServiceManager) UpdateL2Domain ¶ added in v1.3.27

func (sm *ServiceManager) UpdateL2Domain(name string, l2extDomPattr models.L2DomainAttributes) (*models.L2Domain, error)

func (*ServiceManager) UpdateL2InterfacePolicy ¶

func (sm *ServiceManager) UpdateL2InterfacePolicy(name string, description string, l2IfPolattr models.L2InterfacePolicyAttributes) (*models.L2InterfacePolicy, error)

func (*ServiceManager) UpdateL2Outside ¶ added in v1.3.27

func (sm *ServiceManager) UpdateL2Outside(name string, tenant string, description string, l2extOutattr models.L2OutsideAttributes) (*models.L2Outside, error)

func (*ServiceManager) UpdateL2outExternalEpg ¶ added in v1.3.27

func (sm *ServiceManager) UpdateL2outExternalEpg(name string, l2_outside string, tenant string, description string, l2extInstPattr models.L2outExternalEpgAttributes) (*models.L2outExternalEpg, error)

func (*ServiceManager) UpdateL3DomainProfile ¶

func (sm *ServiceManager) UpdateL3DomainProfile(name string, description string, l3extDomPattr models.L3DomainProfileAttributes) (*models.L3DomainProfile, error)

func (*ServiceManager) UpdateL3ExtSubnet ¶

func (sm *ServiceManager) UpdateL3ExtSubnet(ip string, external_network_instance_profile string, l3_outside string, tenant string, description string, l3extSubnetattr models.L3ExtSubnetAttributes) (*models.L3ExtSubnet, error)

func (*ServiceManager) UpdateL3InterfacePolicy ¶ added in v1.12.0

func (sm *ServiceManager) UpdateL3InterfacePolicy(name string, description string, l3IfPolattr models.L3InterfacePolicyAttributes) (*models.L3InterfacePolicy, error)

func (*ServiceManager) UpdateL3Outside ¶

func (sm *ServiceManager) UpdateL3Outside(name string, tenant string, description string, l3extOutattr models.L3OutsideAttributes) (*models.L3Outside, error)

func (*ServiceManager) UpdateL3outBGPProtocolProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outBGPProtocolProfile(logical_node_profile string, l3_outside string, tenant string, nameAlias string, bgpProtPattr models.L3outBGPProtocolProfileAttributes) (*models.L3outBGPProtocolProfile, error)

func (*ServiceManager) UpdateL3outBgpExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outBgpExternalPolicy(l3_outside string, tenant string, description string, bgpExtPattr models.L3outBgpExternalPolicyAttributes) (*models.L3outBgpExternalPolicy, error)

func (*ServiceManager) UpdateL3outHSRPInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outHSRPInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, hsrpIfPattr models.L3outHSRPInterfaceProfileAttributes) (*models.L3outHSRPInterfaceProfile, error)

func (*ServiceManager) UpdateL3outHSRPSecondaryVIP ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outHSRPSecondaryVIP(ip string, hsrp_group_profile string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, hsrpSecVipattr models.L3outHSRPSecondaryVIPAttributes) (*models.L3outHSRPSecondaryVIP, error)

func (*ServiceManager) UpdateL3outOspfExternalPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outOspfExternalPolicy(l3_outside string, tenant string, description string, ospfExtPattr models.L3outOspfExternalPolicyAttributes) (*models.L3outOspfExternalPolicy, error)

func (*ServiceManager) UpdateL3outPathAttachment ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outPathAttachment(tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extRsPathL3OutAttattr models.L3outPathAttachmentAttributes) (*models.L3outPathAttachment, error)

func (*ServiceManager) UpdateL3outPathAttachmentSecondaryIp ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outPathAttachmentSecondaryIp(addr string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extIpattr models.L3outPathAttachmentSecondaryIpAttributes) (*models.L3outPathAttachmentSecondaryIp, error)

func (*ServiceManager) UpdateL3outRouteTagPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outRouteTagPolicy(name string, tenant string, description string, l3extRouteTagPolattr models.L3outRouteTagPolicyAttributes) (*models.L3outRouteTagPolicy, error)

func (*ServiceManager) UpdateL3outStaticRoute ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outStaticRoute(ip string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string, description string, ipRoutePattr models.L3outStaticRouteAttributes) (*models.L3outStaticRoute, error)

func (*ServiceManager) UpdateL3outStaticRouteNextHop ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outStaticRouteNextHop(nhAddr string, static_route_ip string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string, description string, ipNexthopPattr models.L3outStaticRouteNextHopAttributes) (*models.L3outStaticRouteNextHop, error)

func (*ServiceManager) UpdateL3outVPCMember ¶ added in v1.3.29

func (sm *ServiceManager) UpdateL3outVPCMember(side string, leaf_port_tDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extMemberattr models.L3outVPCMemberAttributes) (*models.L3outVPCMember, error)

func (*ServiceManager) UpdateL4L7RedirectHealthGroup ¶ added in v1.40.0

func (sm *ServiceManager) UpdateL4L7RedirectHealthGroup(name string, tenant string, description string, nameAlias string, vnsRedirectHealthGroupAttr models.L4L7RedirectHealthGroupAttributes) (*models.L4L7RedirectHealthGroup, error)

func (*ServiceManager) UpdateL4L7ServiceGraphTemplate ¶ added in v1.3.27

func (sm *ServiceManager) UpdateL4L7ServiceGraphTemplate(name string, tenant string, description string, vnsAbsGraphattr models.L4L7ServiceGraphTemplateAttributes) (*models.L4L7ServiceGraphTemplate, error)

func (*ServiceManager) UpdateL4ToL7Devices ¶ added in v1.37.0

func (sm *ServiceManager) UpdateL4ToL7Devices(name string, tenant string, nameAlias string, vnsLDevVipAttr models.L4ToL7DevicesAttributes) (*models.L4ToL7Devices, error)

func (*ServiceManager) UpdateLACPMemberPolicy ¶ added in v1.48.0

func (sm *ServiceManager) UpdateLACPMemberPolicy(name string, description string, lacpIfPolAttr models.LACPMemberPolicyAttributes) (*models.LACPMemberPolicy, error)

func (*ServiceManager) UpdateLACPPolicy ¶

func (sm *ServiceManager) UpdateLACPPolicy(name string, description string, lacpLagPolattr models.LACPPolicyAttributes) (*models.LACPPolicy, error)

func (*ServiceManager) UpdateLDAPGroupMap ¶ added in v1.12.26

func (sm *ServiceManager) UpdateLDAPGroupMap(name string, description string, nameAlias string, aaaLdapGroupMapAttr models.LDAPGroupMapAttributes) (*models.LDAPGroupMap, error)

func (*ServiceManager) UpdateLDAPGroupMapRule ¶ added in v1.12.17

func (sm *ServiceManager) UpdateLDAPGroupMapRule(name string, description string, nameAlias string, aaaLdapGroupMapRuleAttr models.LDAPGroupMapRuleAttributes) (*models.LDAPGroupMapRule, error)

func (*ServiceManager) UpdateLDAPGroupMapruleref ¶ added in v1.12.19

func (sm *ServiceManager) UpdateLDAPGroupMapruleref(name string, ldap_group_map string, description string, nameAlias string, aaaLdapGroupMapRuleRefAttr models.LDAPGroupMaprulerefAttributes) (*models.LDAPGroupMapruleref, error)

func (*ServiceManager) UpdateLDAPProvider ¶ added in v1.12.16

func (sm *ServiceManager) UpdateLDAPProvider(name string, description string, nameAlias string, aaaLdapProviderAttr models.LDAPProviderAttributes) (*models.LDAPProvider, error)

func (*ServiceManager) UpdateLLDPInterfacePolicy ¶

func (sm *ServiceManager) UpdateLLDPInterfacePolicy(name string, description string, lldpIfPolattr models.LLDPInterfacePolicyAttributes) (*models.LLDPInterfacePolicy, error)

func (*ServiceManager) UpdateLeafAccessPortPolicyGroup ¶

func (sm *ServiceManager) UpdateLeafAccessPortPolicyGroup(name string, description string, infraAccPortGrpattr models.LeafAccessPortPolicyGroupAttributes) (*models.LeafAccessPortPolicyGroup, error)

func (*ServiceManager) UpdateLeafBreakoutPortGroup ¶ added in v1.3.27

func (sm *ServiceManager) UpdateLeafBreakoutPortGroup(name string, description string, infraBrkoutPortGrpattr models.LeafBreakoutPortGroupAttributes) (*models.LeafBreakoutPortGroup, error)

func (*ServiceManager) UpdateLeafInterfaceProfile ¶

func (sm *ServiceManager) UpdateLeafInterfaceProfile(name string, description string, infraAccPortPattr models.LeafInterfaceProfileAttributes) (*models.LeafInterfaceProfile, error)

func (*ServiceManager) UpdateLeafProfile ¶

func (sm *ServiceManager) UpdateLeafProfile(name string, description string, infraNodePattr models.LeafProfileAttributes) (*models.LeafProfile, error)

func (*ServiceManager) UpdateLeakInternalPrefix ¶ added in v1.54.0

func (sm *ServiceManager) UpdateLeakInternalPrefix(ip string, vrf string, tenant string, description string, nameAlias string, leakInternalPrefixAttr models.LeakInternalPrefixAttributes) (*models.LeakInternalPrefix, error)

func (*ServiceManager) UpdateLeakInternalSubnet ¶ added in v1.44.0

func (sm *ServiceManager) UpdateLeakInternalSubnet(ip string, vrf string, tenant string, description string, nameAlias string, leakInternalSubnetAttr models.LeakInternalSubnetAttributes) (*models.LeakInternalSubnet, error)

func (*ServiceManager) UpdateLinkLevelPolicy ¶ added in v1.0.8

func (sm *ServiceManager) UpdateLinkLevelPolicy(name string, description string, fabricHIfPolattr models.LinkLevelPolicyAttributes) (*models.LinkLevelPolicy, error)

func (*ServiceManager) UpdateLocalAutonomousSystemProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateLocalAutonomousSystemProfile(peer_connectivity_profile_addr string, logical_node_profile string, l3_outside string, tenant string, description string, bgpLocalAsnPattr models.LocalAutonomousSystemProfileAttributes) (*models.LocalAutonomousSystemProfile, error)

func (*ServiceManager) UpdateLocalUser ¶

func (sm *ServiceManager) UpdateLocalUser(name string, description string, aaaUserattr models.LocalUserAttributes) (*models.LocalUser, error)

func (*ServiceManager) UpdateLogicalDeviceContext ¶ added in v1.3.27

func (sm *ServiceManager) UpdateLogicalDeviceContext(nodeNameOrLbl string, graphNameOrLbl string, ctrctNameOrLbl string, tenant string, description string, vnsLDevCtxattr models.LogicalDeviceContextAttributes) (*models.LogicalDeviceContext, error)

func (*ServiceManager) UpdateLogicalInterface ¶ added in v1.37.0

func (sm *ServiceManager) UpdateLogicalInterface(name string, parent_dn string, nameAlias string, vnsLIfAttr models.LogicalInterfaceAttributes) (*models.LogicalInterface, error)

func (*ServiceManager) UpdateLogicalInterfaceContext ¶ added in v1.3.27

func (sm *ServiceManager) UpdateLogicalInterfaceContext(connNameOrLbl string, logicalDeviceContextNodeNameOrLbl string, logicalDeviceContextGraphNameOrLbl string, logical_device_context_ctrctNameOrLbl string, tenant string, description string, vnsLIfCtxattr models.LogicalInterfaceContextAttributes) (*models.LogicalInterfaceContext, error)

func (*ServiceManager) UpdateLogicalInterfaceProfile ¶

func (sm *ServiceManager) UpdateLogicalInterfaceProfile(name string, logical_node_profile string, l3_outside string, tenant string, description string, l3extLIfPattr models.LogicalInterfaceProfileAttributes) (*models.LogicalInterfaceProfile, error)

func (*ServiceManager) UpdateLogicalNodeProfile ¶

func (sm *ServiceManager) UpdateLogicalNodeProfile(name string, l3_outside string, tenant string, description string, l3extLNodePattr models.LogicalNodeProfileAttributes) (*models.LogicalNodeProfile, error)

func (*ServiceManager) UpdateLoginDomain ¶ added in v1.12.21

func (sm *ServiceManager) UpdateLoginDomain(name string, description string, nameAlias string, aaaLoginDomainAttr models.LoginDomainAttributes) (*models.LoginDomain, error)

func (*ServiceManager) UpdateLoopBackInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateLoopBackInterfaceProfile(addr string, fabric_node_tDn string, logical_node_profile string, l3_outside string, tenant string, description string, l3extLoopBackIfPattr models.LoopBackInterfaceProfileAttributes) (*models.LoopBackInterfaceProfile, error)

func (*ServiceManager) UpdateMaintGrp ¶ added in v0.4.1

func (sm *ServiceManager) UpdateMaintGrp(name string, description string, maintMaintGrpAttr models.MaintGrpAttributes) (*models.MaintGrp, error)

func (*ServiceManager) UpdateMaintP ¶ added in v0.4.1

func (sm *ServiceManager) UpdateMaintP(name string, description string, maintMaintPAttr models.MaintPAttributes) (*models.MaintP, error)

func (*ServiceManager) UpdateMaintenancePolicy ¶

func (sm *ServiceManager) UpdateMaintenancePolicy(name string, description string, maintMaintPattr models.MaintenancePolicyAttributes) (*models.MaintenancePolicy, error)

func (*ServiceManager) UpdateManagedNodeConnectivityGroup ¶ added in v1.12.2

func (sm *ServiceManager) UpdateManagedNodeConnectivityGroup(name string, description string, mgmtGrpattr models.ManagedNodeConnectivityGroupAttributes) (*models.ManagedNodeConnectivityGroup, error)

func (*ServiceManager) UpdateMatchCommunityFactor ¶ added in v1.30.0

func (sm *ServiceManager) UpdateMatchCommunityFactor(community string, match_community_term string, match_rule string, tenant string, description string, nameAlias string, rtctrlMatchCommFactorAttr models.MatchCommunityFactorAttributes) (*models.MatchCommunityFactor, error)

func (*ServiceManager) UpdateMatchCommunityTerm ¶ added in v1.30.0

func (sm *ServiceManager) UpdateMatchCommunityTerm(name string, match_rule string, tenant string, description string, nameAlias string, rtctrlMatchCommTermAttr models.MatchCommunityTermAttributes) (*models.MatchCommunityTerm, error)

func (*ServiceManager) UpdateMatchRouteDestinationRule ¶ added in v1.3.29

func (sm *ServiceManager) UpdateMatchRouteDestinationRule(ip string, match_rule string, tenant string, description string, nameAlias string, rtctrlMatchRtDestAttr models.MatchRouteDestinationRuleAttributes) (*models.MatchRouteDestinationRule, error)

func (*ServiceManager) UpdateMatchRule ¶ added in v1.3.29

func (sm *ServiceManager) UpdateMatchRule(name string, tenant string, description string, nameAlias string, rtctrlSubjPAttr models.MatchRuleAttributes) (*models.MatchRule, error)

func (*ServiceManager) UpdateMatchRuleBasedonCommunityRegularExpression ¶ added in v1.27.0

func (sm *ServiceManager) UpdateMatchRuleBasedonCommunityRegularExpression(commType string, match_rule string, tenant string, description string, nameAlias string, rtctrlMatchCommRegexTermAttr models.MatchRuleBasedonCommunityRegularExpressionAttributes) (*models.MatchRuleBasedonCommunityRegularExpression, error)

func (*ServiceManager) UpdateMgmtconnectivitypreference ¶ added in v1.12.9

func (sm *ServiceManager) UpdateMgmtconnectivitypreference(description string, nameAlias string, mgmtConnectivityPrefsAttr models.MgmtconnectivitypreferenceAttributes) (*models.Mgmtconnectivitypreference, error)

func (*ServiceManager) UpdateMiscablingProtocolInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) UpdateMiscablingProtocolInstancePolicy(name string, description string, nameAlias string, mcpInstPolAttr models.MiscablingProtocolInstancePolicyAttributes) (*models.MiscablingProtocolInstancePolicy, error)

func (*ServiceManager) UpdateMiscablingProtocolInterfacePolicy ¶

func (sm *ServiceManager) UpdateMiscablingProtocolInterfacePolicy(name string, description string, mcpIfPolattr models.MiscablingProtocolInterfacePolicyAttributes) (*models.MiscablingProtocolInterfacePolicy, error)

func (*ServiceManager) UpdateMonitoringPolicy ¶

func (sm *ServiceManager) UpdateMonitoringPolicy(name string, tenant string, description string, monEPGPolattr models.MonitoringPolicyAttributes) (*models.MonitoringPolicy, error)

func (*ServiceManager) UpdateMulticastAddressBlock ¶ added in v1.46.0

func (sm *ServiceManager) UpdateMulticastAddressBlock(to string, from string, multicast_address_pool string, description string, fvnsMcastAddrBlkAttr models.MulticastAddressBlockAttributes) (*models.MulticastAddressBlock, error)

func (*ServiceManager) UpdateMulticastAddressPool ¶ added in v1.46.0

func (sm *ServiceManager) UpdateMulticastAddressPool(name string, description string, fvnsMcastAddrInstPAttr models.MulticastAddressPoolAttributes) (*models.MulticastAddressPool, error)

func (*ServiceManager) UpdateNexthopEpPReachability ¶ added in v1.43.0

func (sm *ServiceManager) UpdateNexthopEpPReachability(nhAddr string, parent_dn string, description string, nameAlias string, ipNexthopEpPAttr models.NexthopEpPReachabilityAttributes) (*models.NexthopEpPReachability, error)

func (*ServiceManager) UpdateNexthopUnchangedAction ¶ added in v1.31.0

func (sm *ServiceManager) UpdateNexthopUnchangedAction(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetNhUnchangedAttr models.NexthopUnchangedActionAttributes) (*models.NexthopUnchangedAction, error)

func (*ServiceManager) UpdateNlbEndpoint ¶ added in v1.43.0

func (sm *ServiceManager) UpdateNlbEndpoint(parent_dn string, description string, nameAlias string, fvEpNlbAttr models.NlbEndpointAttributes) (*models.NlbEndpoint, error)

func (*ServiceManager) UpdateNodeBlk ¶ added in v0.4.1

func (sm *ServiceManager) UpdateNodeBlk(parentMOType string, parentMOName string, name string, description string, fabricNodeBlkAttr models.NodeBlkAttributes) (*models.NodeBlk, error)

func (*ServiceManager) UpdateNodeBlock ¶ added in v0.4.1

func (sm *ServiceManager) UpdateNodeBlock(name string, switch_association_type string, switch_association string, leaf_profile string, description string, infraNodeBlkattr models.NodeBlockAttributes) (*models.NodeBlock, error)

func (*ServiceManager) UpdateNodeBlockFW ¶

func (sm *ServiceManager) UpdateNodeBlockFW(name string, firmware_group string, description string, fabricNodeBlkattr models.NodeBlockAttributesFW) (*models.NodeBlockFW, error)

func (*ServiceManager) UpdateNodeBlockMG ¶

func (sm *ServiceManager) UpdateNodeBlockMG(name string, pod_maintenance_group string, description string, fabricNodeBlkattr models.NodeBlockAttributesMG) (*models.NodeBlockMG, error)

func (*ServiceManager) UpdateNodePolicyEndPoint ¶

func (sm *ServiceManager) UpdateNodePolicyEndPoint(node_policy_end_point_id string, vpc_explicit_protection_group string, description string, fabricNodePEpattr models.NodePolicyEndPointAttributes) (*models.NodePolicyEndPoint, error)

func (*ServiceManager) UpdateOOBManagedNodesZone ¶ added in v1.12.7

func (sm *ServiceManager) UpdateOOBManagedNodesZone(managed_node_connectivity_group string, description string, nameAlias string, mgmtOoBZoneAttr models.OOBManagedNodesZoneAttributes) (*models.OOBManagedNodesZone, error)

func (*ServiceManager) UpdateOSPFInterfacePolicy ¶

func (sm *ServiceManager) UpdateOSPFInterfacePolicy(name string, tenant string, description string, ospfIfPolattr models.OSPFInterfacePolicyAttributes) (*models.OSPFInterfacePolicy, error)

func (*ServiceManager) UpdateOSPFInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateOSPFInterfaceProfile(logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, ospfIfPattr models.OSPFInterfaceProfileAttributes) (*models.OSPFInterfaceProfile, error)

func (*ServiceManager) UpdateOSPFTimersPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateOSPFTimersPolicy(name string, tenant string, description string, ospfCtxPolattr models.OSPFTimersPolicyAttributes) (*models.OSPFTimersPolicy, error)

func (*ServiceManager) UpdateOSource ¶ added in v0.4.1

func (sm *ServiceManager) UpdateOSource(name string, description string, firmwareOSourceAttr models.OSourceAttributes) (*models.OSource, error)

func (*ServiceManager) UpdateOspfRouteSummarization ¶ added in v1.3.29

func (sm *ServiceManager) UpdateOspfRouteSummarization(name string, tenant string, description string, ospfRtSummPolattr models.OspfRouteSummarizationAttributes) (*models.OspfRouteSummarization, error)

func (*ServiceManager) UpdateOutOfBandManagementEPg ¶ added in v1.3.27

func (sm *ServiceManager) UpdateOutOfBandManagementEPg(name string, management_profile string, tenant string, description string, mgmtOoBattr models.OutOfBandManagementEPgAttributes) (*models.OutOfBandManagementEPg, error)

func (*ServiceManager) UpdateOutTermSubject ¶ added in v1.34.0

func (sm *ServiceManager) UpdateOutTermSubject(contract_subject string, contract string, tenant string, description string, nameAlias string, vzOutTermAttr models.OutTermSubjectAttributes) (*models.OutTermSubject, error)

func (*ServiceManager) UpdateOutofServiceFabricPath ¶ added in v1.19.0

func (sm *ServiceManager) UpdateOutofServiceFabricPath(tDn string, fabricRsOosPathAttr models.OutofServiceFabricPathAttributes) (*models.OutofServiceFabricPath, error)

func (*ServiceManager) UpdateOutofbandStaticNode ¶ added in v1.3.29

func (sm *ServiceManager) UpdateOutofbandStaticNode(tDn string, out_of_band_management_epg string, management_profile string, tenant string, description string, mgmtRsOoBStNodeattr models.OutofbandStaticNodeAttributes) (*models.OutofbandStaticNode, error)

func (*ServiceManager) UpdateOverridePCVPCPolicyGroup ¶ added in v1.48.0

func (sm *ServiceManager) UpdateOverridePCVPCPolicyGroup(name string, leaf_access_bundle_policy_group string, description string, infraAccBndlSubgrpAttr models.OverridePCVPCPolicyGroupAttributes) (*models.OverridePCVPCPolicyGroup, error)

func (*ServiceManager) UpdatePCVPCInterfacePolicyGroup ¶

func (sm *ServiceManager) UpdatePCVPCInterfacePolicyGroup(name string, description string, infraAccBndlGrpattr models.PCVPCInterfacePolicyGroupAttributes) (*models.PCVPCInterfacePolicyGroup, error)

func (*ServiceManager) UpdatePODMaintenanceGroup ¶

func (sm *ServiceManager) UpdatePODMaintenanceGroup(name string, description string, maintMaintGrpattr models.PODMaintenanceGroupAttributes) (*models.PODMaintenanceGroup, error)

func (*ServiceManager) UpdatePasswordChangeExpirationPolicy ¶ added in v1.12.31

func (sm *ServiceManager) UpdatePasswordChangeExpirationPolicy(description string, nameAlias string, aaaPwdProfileAttr models.PasswordChangeExpirationPolicyAttributes) (*models.PasswordChangeExpirationPolicy, error)

func (*ServiceManager) UpdatePhysicalDomain ¶

func (sm *ServiceManager) UpdatePhysicalDomain(name string, description string, physDomPattr models.PhysicalDomainAttributes) (*models.PhysicalDomain, error)

func (*ServiceManager) UpdatePortSecurityPolicy ¶

func (sm *ServiceManager) UpdatePortSecurityPolicy(name string, description string, l2PortSecurityPolattr models.PortSecurityPolicyAttributes) (*models.PortSecurityPolicy, error)

func (*ServiceManager) UpdatePortTracking ¶ added in v1.12.10

func (sm *ServiceManager) UpdatePortTracking(name string, description string, nameAlias string, infraPortTrackPolAttr models.PortTrackingAttributes) (*models.PortTracking, error)

func (*ServiceManager) UpdateProviderGroupMember ¶ added in v1.12.30

func (sm *ServiceManager) UpdateProviderGroupMember(name string, duo_provider_group string, description string, nameAlias string, aaaProviderRefAttr models.ProviderGroupMemberAttributes) (*models.ProviderGroupMember, error)

func (*ServiceManager) UpdateProviderTerminalNode ¶ added in v1.3.27

func (sm *ServiceManager) UpdateProviderTerminalNode(name string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsTermNodeProvattr models.ProviderTerminalNodeAttributes) (*models.ProviderTerminalNode, error)

func (*ServiceManager) UpdatePublicKeyManagement ¶ added in v1.12.31

func (sm *ServiceManager) UpdatePublicKeyManagement(description string, nameAlias string, pkiEpAttr models.PublicKeyManagementAttributes) (*models.PublicKeyManagement, error)

func (*ServiceManager) UpdateQOSInstancePolicy ¶ added in v1.12.10

func (sm *ServiceManager) UpdateQOSInstancePolicy(name string, description string, nameAlias string, qosInstPolAttr models.QOSInstancePolicyAttributes) (*models.QOSInstancePolicy, error)

func (*ServiceManager) UpdateRADIUSProvider ¶ added in v1.12.33

func (sm *ServiceManager) UpdateRADIUSProvider(name string, description string, nameAlias string, aaaRadiusProviderAttr models.RADIUSProviderAttributes) (*models.RADIUSProvider, error)

func (*ServiceManager) UpdateRADIUSProviderGroup ¶ added in v1.12.17

func (sm *ServiceManager) UpdateRADIUSProviderGroup(name string, description string, nameAlias string, aaaRadiusProviderGroupAttr models.RADIUSProviderGroupAttributes) (*models.RADIUSProviderGroup, error)

func (*ServiceManager) UpdateRSAProvider ¶ added in v1.12.20

func (sm *ServiceManager) UpdateRSAProvider(name string, description string, nameAlias string, aaaRsaProviderAttr models.RSAProviderAttributes) (*models.RSAProvider, error)

func (*ServiceManager) UpdateRanges ¶

func (sm *ServiceManager) UpdateRanges(to string, _from string, vlan_pool_allocMode string, vlan_pool string, description string, fvnsEncapBlkattr models.RangesAttributes) (*models.Ranges, error)

func (*ServiceManager) UpdateRecurringWindow ¶ added in v1.12.4

func (sm *ServiceManager) UpdateRecurringWindow(name string, scheduler string, nameAlias string, trigRecurrWindowPAttr models.RecurringWindowAttributes) (*models.RecurringWindow, error)

func (*ServiceManager) UpdateRedistributeMultipathAction ¶ added in v1.31.0

func (sm *ServiceManager) UpdateRedistributeMultipathAction(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetRedistMultipathAttr models.RedistributeMultipathActionAttributes) (*models.RedistributeMultipathAction, error)

func (*ServiceManager) UpdateRemotePathofaFile ¶ added in v1.12.5

func (sm *ServiceManager) UpdateRemotePathofaFile(name string, description string, nameAlias string, fileRemotePathAttr models.RemotePathofaFileAttributes) (*models.RemotePathofaFile, error)

func (*ServiceManager) UpdateRouteContextScope ¶ added in v1.17.0

func (sm *ServiceManager) UpdateRouteContextScope(route_control_context string, route_control_profile string, tenant string, description string, nameAlias string, rtctrlScopeAttr models.RouteContextScopeAttributes) (*models.RouteContextScope, error)

func (*ServiceManager) UpdateRouteControlContext ¶ added in v1.3.29

func (sm *ServiceManager) UpdateRouteControlContext(name string, route_control_profile string, tenant string, l3_outside string, description string, nameAlias string, rtctrlCtxPAttr models.RouteControlContextAttributes) (*models.RouteControlContext, error)

func (*ServiceManager) UpdateRouteControlProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateRouteControlProfile(name string, tenant string, description string, rtctrlProfileattr models.RouteControlProfileAttributes) (*models.RouteControlProfile, error)

func (*ServiceManager) UpdateRtctrlSetAddComm ¶ added in v1.31.0

func (sm *ServiceManager) UpdateRtctrlSetAddComm(community string, action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetAddCommAttr models.RtctrlSetAddCommAttributes) (*models.RtctrlSetAddComm, error)

func (*ServiceManager) UpdateRtctrlSetComm ¶ added in v1.31.0

func (sm *ServiceManager) UpdateRtctrlSetComm(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetCommAttr models.RtctrlSetCommAttributes) (*models.RtctrlSetComm, error)

func (*ServiceManager) UpdateRtctrlSetDamp ¶ added in v1.31.0

func (sm *ServiceManager) UpdateRtctrlSetDamp(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetDampAttr models.RtctrlSetDampAttributes) (*models.RtctrlSetDamp, error)

func (*ServiceManager) UpdateRtctrlSetNh ¶ added in v1.31.0

func (sm *ServiceManager) UpdateRtctrlSetNh(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetNhAttr models.RtctrlSetNhAttributes) (*models.RtctrlSetNh, error)

func (*ServiceManager) UpdateRtctrlSetPref ¶ added in v1.28.0

func (sm *ServiceManager) UpdateRtctrlSetPref(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetPrefAttr models.RtctrlSetPrefAttributes) (*models.RtctrlSetPref, error)

func (*ServiceManager) UpdateRtctrlSetRtMetric ¶ added in v1.31.0

func (sm *ServiceManager) UpdateRtctrlSetRtMetric(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetRtMetricAttr models.RtctrlSetRtMetricAttributes) (*models.RtctrlSetRtMetric, error)

func (*ServiceManager) UpdateRtctrlSetRtMetricType ¶ added in v1.31.0

func (sm *ServiceManager) UpdateRtctrlSetRtMetricType(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetRtMetricTypeAttr models.RtctrlSetRtMetricTypeAttributes) (*models.RtctrlSetRtMetricType, error)

func (*ServiceManager) UpdateRtctrlSetTag ¶ added in v1.31.0

func (sm *ServiceManager) UpdateRtctrlSetTag(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetTagAttr models.RtctrlSetTagAttributes) (*models.RtctrlSetTag, error)

func (*ServiceManager) UpdateRtctrlSetWeight ¶ added in v1.31.0

func (sm *ServiceManager) UpdateRtctrlSetWeight(action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetWeightAttr models.RtctrlSetWeightAttributes) (*models.RtctrlSetWeight, error)

func (*ServiceManager) UpdateSAMLProvider ¶ added in v1.12.20

func (sm *ServiceManager) UpdateSAMLProvider(name string, description string, nameAlias string, aaaSamlProviderAttr models.SAMLProviderAttributes) (*models.SAMLProvider, error)

func (*ServiceManager) UpdateSAMLProviderGroup ¶ added in v1.12.25

func (sm *ServiceManager) UpdateSAMLProviderGroup(name string, description string, nameAlias string, aaaSamlProviderGroupAttr models.SAMLProviderGroupAttributes) (*models.SAMLProviderGroup, error)

func (*ServiceManager) UpdateSNMPCommunity ¶ added in v1.12.6

func (sm *ServiceManager) UpdateSNMPCommunity(name string, parent_dn string, description string, nameAlias string, snmpCommunityPAttr models.SNMPCommunityAttributes) (*models.SNMPCommunity, error)

func (*ServiceManager) UpdateSNMPContextProfile ¶ added in v1.12.8

func (sm *ServiceManager) UpdateSNMPContextProfile(vrf string, tenant string, nameAlias string, snmpCtxPAttr models.SNMPContextProfileAttributes) (*models.SNMPContextProfile, error)

func (*ServiceManager) UpdateSPANDestinationGroup ¶

func (sm *ServiceManager) UpdateSPANDestinationGroup(name string, tenant string, description string, spanDestGrpattr models.SPANDestinationGroupAttributes) (*models.SPANDestinationGroup, error)

func (*ServiceManager) UpdateSPANSourceGroup ¶

func (sm *ServiceManager) UpdateSPANSourceGroup(name string, tenant string, description string, spanSrcGrpattr models.SPANSourceGroupAttributes) (*models.SPANSourceGroup, error)

func (*ServiceManager) UpdateSPANSourcedestinationGroupMatchLabel ¶

func (sm *ServiceManager) UpdateSPANSourcedestinationGroupMatchLabel(name string, span_source_group string, tenant string, description string, spanSpanLblattr models.SPANSourcedestinationGroupMatchLabelAttributes) (*models.SPANSourcedestinationGroupMatchLabel, error)

func (*ServiceManager) UpdateSchedP ¶ added in v0.4.1

func (sm *ServiceManager) UpdateSchedP(name string, description string, trigSchedPAttr models.SchedPAttributes) (*models.SchedP, error)

func (*ServiceManager) UpdateSecurityDomain ¶ added in v1.3.9

func (sm *ServiceManager) UpdateSecurityDomain(name string, description string, aaaDomainattr models.SecurityDomainAttributes) (*models.SecurityDomain, error)

func (*ServiceManager) UpdateServiceRedirectPolicy ¶ added in v0.4.5

func (sm *ServiceManager) UpdateServiceRedirectPolicy(name string, tenant string, description string, vnsSvcRedirectPolattr models.ServiceRedirectPolicyAttributes) (*models.ServiceRedirectPolicy, error)

func (*ServiceManager) UpdateSetASPath ¶ added in v1.31.0

func (sm *ServiceManager) UpdateSetASPath(criteria string, action_rule_profile string, tenant string, description string, nameAlias string, rtctrlSetASPathAttr models.SetASPathAttributes) (*models.SetASPath, error)

func (*ServiceManager) UpdateSpanningTreeInterfacePolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateSpanningTreeInterfacePolicy(name string, description string, nameAlias string, stpIfPolAttr models.SpanningTreeInterfacePolicyAttributes) (*models.SpanningTreeInterfacePolicy, error)

func (*ServiceManager) UpdateSpineAccessPortPolicyGroup ¶ added in v0.4.20

func (sm *ServiceManager) UpdateSpineAccessPortPolicyGroup(name string, description string, infraSpAccPortGrpattr models.SpineAccessPortPolicyGroupAttributes) (*models.SpineAccessPortPolicyGroup, error)

func (*ServiceManager) UpdateSpineAccessPortSelector ¶ added in v1.21.1

func (sm *ServiceManager) UpdateSpineAccessPortSelector(spine_access_port_selector_type string, name string, spine_interface_profile string, description string, nameAlias string, infraSHPortSAttr models.SpineAccessPortSelectorAttributes) (*models.SpineAccessPortSelector, error)

func (*ServiceManager) UpdateSpineInterfaceProfile ¶ added in v0.4.19

func (sm *ServiceManager) UpdateSpineInterfaceProfile(name string, description string, infraSpAccPortPattr models.SpineInterfaceProfileAttributes) (*models.SpineInterfaceProfile, error)

func (*ServiceManager) UpdateSpineProfile ¶ added in v0.4.18

func (sm *ServiceManager) UpdateSpineProfile(name string, description string, infraSpinePattr models.SpineProfileAttributes) (*models.SpineProfile, error)

func (*ServiceManager) UpdateSpineSwitchPolicyGroup ¶ added in v1.12.3

func (sm *ServiceManager) UpdateSpineSwitchPolicyGroup(name string, description string, nameAlias string, infraSpineAccNodePGrpAttr models.SpineSwitchPolicyGroupAttributes) (*models.SpineSwitchPolicyGroup, error)

func (*ServiceManager) UpdateStaticPath ¶ added in v0.4.1

func (sm *ServiceManager) UpdateStaticPath(tDn string, application_epg string, application_profile string, tenant string, description string, fvRsPathAttattr models.StaticPathAttributes) (*models.StaticPath, error)

func (*ServiceManager) UpdateSubjectFilter ¶ added in v1.32.0

func (sm *ServiceManager) UpdateSubjectFilter(tnVzFilterName string, contract_subject string, contract string, tenant string, vzRsSubjFiltAttAttr models.SubjectFilterAttributes) (*models.SubjectFilter, error)

func (*ServiceManager) UpdateSubnet ¶

func (sm *ServiceManager) UpdateSubnet(ip string, bridge_domain string, tenant string, description string, fvSubnetattr models.SubnetAttributes) (*models.Subnet, error)

func (*ServiceManager) UpdateSwitchAssociation ¶

func (sm *ServiceManager) UpdateSwitchAssociation(switch_association_type string, name string, leaf_profile string, description string, infraLeafSattr models.SwitchAssociationAttributes) (*models.SwitchAssociation, error)

func (*ServiceManager) UpdateSwitchSpineAssociation ¶ added in v0.4.18

func (sm *ServiceManager) UpdateSwitchSpineAssociation(switch_association_type string, name string, spine_profile string, description string, infraSpineSattr models.SwitchSpineAssociationAttributes) (*models.SwitchSpineAssociation, error)

func (*ServiceManager) UpdateTACACSDestination ¶ added in v1.12.18

func (sm *ServiceManager) UpdateTACACSDestination(port string, host string, tacacs_monitoring_destination_group string, description string, nameAlias string, tacacsTacacsDestAttr models.TACACSDestinationAttributes) (*models.TACACSDestination, error)

func (*ServiceManager) UpdateTACACSMonitoringDestinationGroup ¶ added in v1.12.17

func (sm *ServiceManager) UpdateTACACSMonitoringDestinationGroup(name string, description string, nameAlias string, tacacsGroupAttr models.TACACSMonitoringDestinationGroupAttributes) (*models.TACACSMonitoringDestinationGroup, error)

func (*ServiceManager) UpdateTACACSPlusProviderGroup ¶ added in v1.12.22

func (sm *ServiceManager) UpdateTACACSPlusProviderGroup(name string, description string, nameAlias string, aaaTacacsPlusProviderGroupAttr models.TACACSPlusProviderGroupAttributes) (*models.TACACSPlusProviderGroup, error)

func (*ServiceManager) UpdateTACACSProvider ¶ added in v1.12.25

func (sm *ServiceManager) UpdateTACACSProvider(name string, description string, nameAlias string, aaaTacacsPlusProviderAttr models.TACACSProviderAttributes) (*models.TACACSProvider, error)

func (*ServiceManager) UpdateTACACSSource ¶ added in v1.12.34

func (sm *ServiceManager) UpdateTACACSSource(name string, monitoring_target_scope string, monitoring_policy string, tenant string, description string, nameAlias string, tacacsSrcAttr models.TACACSSourceAttributes) (*models.TACACSSource, error)

func (*ServiceManager) UpdateTabooContract ¶

func (sm *ServiceManager) UpdateTabooContract(name string, tenant string, description string, vzTabooattr models.TabooContractAttributes) (*models.TabooContract, error)

func (*ServiceManager) UpdateTag ¶ added in v1.19.0

func (sm *ServiceManager) UpdateTag(key string, parentDn string, tagTagAttr models.TagAttributes) (*models.Tag, error)

func (*ServiceManager) UpdateTenant ¶

func (sm *ServiceManager) UpdateTenant(name string, description string, fvTenantattr models.TenantAttributes) (*models.Tenant, error)

func (*ServiceManager) UpdateTenantToCloudAccountAssociation ¶ added in v1.50.0

func (sm *ServiceManager) UpdateTenantToCloudAccountAssociation(tenant string, nameAlias string, fvRsCloudAccountAttr models.TenantToCloudAccountAssociationAttributes) (*models.TenantToCloudAccountAssociation, error)

func (*ServiceManager) UpdateTenantandVRFdestinationforInterVRFLeakedRoutes ¶ added in v1.44.0

func (sm *ServiceManager) UpdateTenantandVRFdestinationforInterVRFLeakedRoutes(destinationCtxName string, destinationTenantName string, parentDn string, description string, nameAlias string, leakToAttr models.TenantandVRFdestinationforInterVRFLeakedRoutesAttributes) (*models.TenantandVRFdestinationforInterVRFLeakedRoutes, error)

func (*ServiceManager) UpdateTerminalConnector ¶ added in v1.3.27

func (sm *ServiceManager) UpdateTerminalConnector(consumer_terminal_node string, l4_l7_service_graph_template string, tenant string, description string, vnsAbsTermConnattr models.TerminalConnectorAttributes) (*models.TerminalConnector, error)

func (*ServiceManager) UpdateTriggerScheduler ¶

func (sm *ServiceManager) UpdateTriggerScheduler(name string, description string, trigSchedPattr models.TriggerSchedulerAttributes) (*models.TriggerScheduler, error)

func (*ServiceManager) UpdateUserDomain ¶ added in v1.12.12

func (sm *ServiceManager) UpdateUserDomain(name string, local_user string, description string, nameAlias string, aaaUserDomainAttr models.UserDomainAttributes) (*models.UserDomain, error)

func (*ServiceManager) UpdateUserManagement ¶ added in v1.12.31

func (sm *ServiceManager) UpdateUserManagement(description string, nameAlias string, aaaUserEpAttr models.UserManagementAttributes) (*models.UserManagement, error)

func (*ServiceManager) UpdateUserRole ¶ added in v1.12.14

func (sm *ServiceManager) UpdateUserRole(name string, user_domain string, local_user string, description string, nameAlias string, aaaUserRoleAttr models.UserRoleAttributes) (*models.UserRole, error)

func (*ServiceManager) UpdateVLANPool ¶

func (sm *ServiceManager) UpdateVLANPool(allocMode string, name string, description string, fvnsVlanInstPattr models.VLANPoolAttributes) (*models.VLANPool, error)

func (*ServiceManager) UpdateVMMController ¶ added in v1.3.29

func (sm *ServiceManager) UpdateVMMController(name string, vmm_domain string, provider_profile_vendor string, description string, nameAlias string, vmmCtrlrPAttr models.VMMControllerAttributes) (*models.VMMController, error)

func (*ServiceManager) UpdateVMMCredential ¶ added in v1.3.29

func (sm *ServiceManager) UpdateVMMCredential(name string, vmm_domain string, provider_profile_vendor string, description string, nameAlias string, vmmUsrAccPAttr models.VMMCredentialAttributes) (*models.VMMCredential, error)

func (*ServiceManager) UpdateVMMDomain ¶

func (sm *ServiceManager) UpdateVMMDomain(name string, provider_profile_vendor string, vmmDomPattr models.VMMDomainAttributes) (*models.VMMDomain, error)

func (*ServiceManager) UpdateVMMSecurityPolicy ¶ added in v0.4.1

func (sm *ServiceManager) UpdateVMMSecurityPolicy(domain_tDn string, application_epg string, application_profile string, tenant string, description string, vmmSecPattr models.VMMSecurityPolicyAttributes) (*models.VMMSecurityPolicy, error)

func (*ServiceManager) UpdateVPCDomainPolicy ¶ added in v1.3.29

func (sm *ServiceManager) UpdateVPCDomainPolicy(name string, description string, nameAlias string, vpcInstPolAttr models.VPCDomainPolicyAttributes) (*models.VPCDomainPolicy, error)

func (*ServiceManager) UpdateVPCExplicitProtectionGroup ¶

func (sm *ServiceManager) UpdateVPCExplicitProtectionGroup(name string, switch1 string, switch2 string, vpcDomainPolicy string, fabricExplicitGEpattr models.VPCExplicitProtectionGroupAttributes) (*models.VPCExplicitProtectionGroup, error)

func (*ServiceManager) UpdateVRF ¶

func (sm *ServiceManager) UpdateVRF(name string, tenant string, description string, fvCtxattr models.VRFAttributes) (*models.VRF, error)

func (*ServiceManager) UpdateVSANPool ¶

func (sm *ServiceManager) UpdateVSANPool(allocMode string, name string, description string, fvnsVsanInstPattr models.VSANPoolAttributes) (*models.VSANPool, error)

func (*ServiceManager) UpdateVSwitchPolicyGroup ¶ added in v1.3.29

func (sm *ServiceManager) UpdateVSwitchPolicyGroup(vmm_domain string, provider_profile_vendor string, description string, nameAlias string, vmmVSwitchPolicyContAttr models.VSwitchPolicyGroupAttributes) (*models.VSwitchPolicyGroup, error)

func (*ServiceManager) UpdateVXLANPool ¶

func (sm *ServiceManager) UpdateVXLANPool(name string, description string, fvnsVxlanInstPattr models.VXLANPoolAttributes) (*models.VXLANPool, error)

func (*ServiceManager) UpdateVirtualLogicalInterfaceProfile ¶ added in v1.3.29

func (sm *ServiceManager) UpdateVirtualLogicalInterfaceProfile(encap string, nodeDn string, logical_interface_profile string, logical_node_profile string, l3_outside string, tenant string, description string, l3extVirtualLIfPattr models.VirtualLogicalInterfaceProfileAttributes) (*models.VirtualLogicalInterfaceProfile, error)

func (*ServiceManager) UpdateVlanEncapsulationforVxlanTraffic ¶

func (sm *ServiceManager) UpdateVlanEncapsulationforVxlanTraffic(attachable_access_entity_profile string, description string, infraProvAccattr models.VlanEncapsulationforVxlanTrafficAttributes) (*models.VlanEncapsulationforVxlanTraffic, error)

func (*ServiceManager) UpdateWebTokenData ¶ added in v1.12.31

func (sm *ServiceManager) UpdateWebTokenData(description string, nameAlias string, pkiWebTokenDataAttr models.WebTokenDataAttributes) (*models.WebTokenData, error)

func (*ServiceManager) UpdateX509Certificate ¶ added in v0.0.11

func (sm *ServiceManager) UpdateX509Certificate(name string, local_user string, description string, aaaUserCertattr models.X509CertificateAttributes) (*models.X509Certificate, error)

func (*ServiceManager) ValidateSyntheticSwitchMaintP ¶ added in v0.4.1

func (sm *ServiceManager) ValidateSyntheticSwitchMaintP(syntheticMaintPSwitchDetailsattr models.MaintPSwitchDetailsAttributes) ([]*models.SwitchMaintPValidate, error)

Notes: PyQuery Based Request Requires a valid client APIC-Cookie to be present in the Header Ways to obtain the APIC-Cooki: (1) Use Username/Password for Client Authentication (2) Call client.Authenticate() prior to calling this function for AppUserName+Cert based clients

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL