Documentation ¶
Index ¶
- func ValidateManagementAssociationID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type ListBySubscriptionOperationResponse
- type ManagementAssociation
- type ManagementAssociationClient
- func (c ManagementAssociationClient) CreateOrUpdate(ctx context.Context, id ManagementAssociationId, input ManagementAssociation) (result CreateOrUpdateOperationResponse, err error)
- func (c ManagementAssociationClient) Delete(ctx context.Context, id ManagementAssociationId) (result DeleteOperationResponse, err error)
- func (c ManagementAssociationClient) Get(ctx context.Context, id ManagementAssociationId) (result GetOperationResponse, err error)
- func (c ManagementAssociationClient) ListBySubscription(ctx context.Context, id commonids.SubscriptionId) (result ListBySubscriptionOperationResponse, err error)
- type ManagementAssociationId
- func NewManagementAssociationID(subscriptionId string, resourceGroupName string, providerName string, ...) ManagementAssociationId
- func ParseManagementAssociationID(input string) (*ManagementAssociationId, error)
- func ParseManagementAssociationIDInsensitively(input string) (*ManagementAssociationId, error)
- type ManagementAssociationProperties
- type ManagementAssociationPropertiesList
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateManagementAssociationID ¶
func ValidateManagementAssociationID(input interface{}, key string) (warnings []string, errors []error)
ValidateManagementAssociationID checks that 'input' can be parsed as a Management Association ID
Types ¶
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response Model *ManagementAssociation }
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response Model *ManagementAssociation }
type ListBySubscriptionOperationResponse ¶
type ListBySubscriptionOperationResponse struct { HttpResponse *http.Response Model *ManagementAssociationPropertiesList }
type ManagementAssociation ¶
type ManagementAssociation struct { Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Properties *ManagementAssociationProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type ManagementAssociationClient ¶
type ManagementAssociationClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewManagementAssociationClientWithBaseURI ¶
func NewManagementAssociationClientWithBaseURI(endpoint string) ManagementAssociationClient
func (ManagementAssociationClient) CreateOrUpdate ¶
func (c ManagementAssociationClient) CreateOrUpdate(ctx context.Context, id ManagementAssociationId, input ManagementAssociation) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ManagementAssociationClient) Delete ¶
func (c ManagementAssociationClient) Delete(ctx context.Context, id ManagementAssociationId) (result DeleteOperationResponse, err error)
Delete ...
func (ManagementAssociationClient) Get ¶
func (c ManagementAssociationClient) Get(ctx context.Context, id ManagementAssociationId) (result GetOperationResponse, err error)
Get ...
func (ManagementAssociationClient) ListBySubscription ¶
func (c ManagementAssociationClient) ListBySubscription(ctx context.Context, id commonids.SubscriptionId) (result ListBySubscriptionOperationResponse, err error)
ListBySubscription ...
type ManagementAssociationId ¶
type ManagementAssociationId struct { SubscriptionId string ResourceGroupName string ProviderName string ResourceType string ResourceName string ManagementAssociationName string }
ManagementAssociationId is a struct representing the Resource ID for a Management Association
func NewManagementAssociationID ¶
func NewManagementAssociationID(subscriptionId string, resourceGroupName string, providerName string, resourceType string, resourceName string, managementAssociationName string) ManagementAssociationId
NewManagementAssociationID returns a new ManagementAssociationId struct
func ParseManagementAssociationID ¶
func ParseManagementAssociationID(input string) (*ManagementAssociationId, error)
ParseManagementAssociationID parses 'input' into a ManagementAssociationId
func ParseManagementAssociationIDInsensitively ¶
func ParseManagementAssociationIDInsensitively(input string) (*ManagementAssociationId, error)
ParseManagementAssociationIDInsensitively parses 'input' case-insensitively into a ManagementAssociationId note: this method should only be used for API response data and not user input
func (ManagementAssociationId) ID ¶
func (id ManagementAssociationId) ID() string
ID returns the formatted Management Association ID
func (ManagementAssociationId) Segments ¶
func (id ManagementAssociationId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Management Association ID
func (ManagementAssociationId) String ¶
func (id ManagementAssociationId) String() string
String returns a human-readable description of this Management Association ID
type ManagementAssociationProperties ¶
type ManagementAssociationProperties struct {
ApplicationId string `json:"applicationId"`
}
type ManagementAssociationPropertiesList ¶
type ManagementAssociationPropertiesList struct {
Value *[]ManagementAssociation `json:"value,omitempty"`
}