Documentation ¶
Index ¶
- func ValidateConfigurationAssignmentID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateProviderID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateProviders2ConfigurationAssignmentID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateResourceGroupProviderID(input interface{}, key string) (warnings []string, errors []error)
- type ConfigurationAssignment
- type ConfigurationAssignmentId
- func NewConfigurationAssignmentID(subscriptionId string, resourceGroupName string, providerName string, ...) ConfigurationAssignmentId
- func ParseConfigurationAssignmentID(input string) (*ConfigurationAssignmentId, error)
- func ParseConfigurationAssignmentIDInsensitively(input string) (*ConfigurationAssignmentId, error)
- type ConfigurationAssignmentProperties
- type ConfigurationAssignmentsClient
- func (c ConfigurationAssignmentsClient) CreateOrUpdate(ctx context.Context, id ConfigurationAssignmentId, ...) (result CreateOrUpdateOperationResponse, err error)
- func (c ConfigurationAssignmentsClient) CreateOrUpdateParent(ctx context.Context, id Providers2ConfigurationAssignmentId, ...) (result CreateOrUpdateParentOperationResponse, err error)
- func (c ConfigurationAssignmentsClient) Delete(ctx context.Context, id ConfigurationAssignmentId) (result DeleteOperationResponse, err error)
- func (c ConfigurationAssignmentsClient) DeleteParent(ctx context.Context, id Providers2ConfigurationAssignmentId) (result DeleteParentOperationResponse, err error)
- func (c ConfigurationAssignmentsClient) List(ctx context.Context, id ProviderId) (result ListOperationResponse, err error)
- func (c ConfigurationAssignmentsClient) ListParent(ctx context.Context, id ResourceGroupProviderId) (result ListParentOperationResponse, err error)
- type CreateOrUpdateOperationResponse
- type CreateOrUpdateParentOperationResponse
- type DeleteOperationResponse
- type DeleteParentOperationResponse
- type ListConfigurationAssignmentsResult
- type ListOperationResponse
- type ListParentOperationResponse
- type ProviderId
- type Providers2ConfigurationAssignmentId
- func NewProviders2ConfigurationAssignmentID(subscriptionId string, resourceGroupName string, providerName string, ...) Providers2ConfigurationAssignmentId
- func ParseProviders2ConfigurationAssignmentID(input string) (*Providers2ConfigurationAssignmentId, error)
- func ParseProviders2ConfigurationAssignmentIDInsensitively(input string) (*Providers2ConfigurationAssignmentId, error)
- type ResourceGroupProviderId
- func NewResourceGroupProviderID(subscriptionId string, resourceGroupName string, providerName string, ...) ResourceGroupProviderId
- func ParseResourceGroupProviderID(input string) (*ResourceGroupProviderId, error)
- func ParseResourceGroupProviderIDInsensitively(input string) (*ResourceGroupProviderId, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateConfigurationAssignmentID ¶
func ValidateConfigurationAssignmentID(input interface{}, key string) (warnings []string, errors []error)
ValidateConfigurationAssignmentID checks that 'input' can be parsed as a Configuration Assignment ID
func ValidateProviderID ¶
ValidateProviderID checks that 'input' can be parsed as a Provider ID
func ValidateProviders2ConfigurationAssignmentID ¶
func ValidateProviders2ConfigurationAssignmentID(input interface{}, key string) (warnings []string, errors []error)
ValidateProviders2ConfigurationAssignmentID checks that 'input' can be parsed as a Providers 2 Configuration Assignment ID
func ValidateResourceGroupProviderID ¶
func ValidateResourceGroupProviderID(input interface{}, key string) (warnings []string, errors []error)
ValidateResourceGroupProviderID checks that 'input' can be parsed as a Resource Group Provider ID
Types ¶
type ConfigurationAssignment ¶
type ConfigurationAssignment struct { Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Properties *ConfigurationAssignmentProperties `json:"properties,omitempty"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Type *string `json:"type,omitempty"` }
type ConfigurationAssignmentId ¶
type ConfigurationAssignmentId struct { SubscriptionId string ResourceGroupName string ProviderName string ResourceType string ResourceName string ConfigurationAssignmentName string }
ConfigurationAssignmentId is a struct representing the Resource ID for a Configuration Assignment
func NewConfigurationAssignmentID ¶
func NewConfigurationAssignmentID(subscriptionId string, resourceGroupName string, providerName string, resourceType string, resourceName string, configurationAssignmentName string) ConfigurationAssignmentId
NewConfigurationAssignmentID returns a new ConfigurationAssignmentId struct
func ParseConfigurationAssignmentID ¶
func ParseConfigurationAssignmentID(input string) (*ConfigurationAssignmentId, error)
ParseConfigurationAssignmentID parses 'input' into a ConfigurationAssignmentId
func ParseConfigurationAssignmentIDInsensitively ¶
func ParseConfigurationAssignmentIDInsensitively(input string) (*ConfigurationAssignmentId, error)
ParseConfigurationAssignmentIDInsensitively parses 'input' case-insensitively into a ConfigurationAssignmentId note: this method should only be used for API response data and not user input
func (ConfigurationAssignmentId) ID ¶
func (id ConfigurationAssignmentId) ID() string
ID returns the formatted Configuration Assignment ID
func (ConfigurationAssignmentId) Segments ¶
func (id ConfigurationAssignmentId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Configuration Assignment ID
func (ConfigurationAssignmentId) String ¶
func (id ConfigurationAssignmentId) String() string
String returns a human-readable description of this Configuration Assignment ID
type ConfigurationAssignmentsClient ¶
type ConfigurationAssignmentsClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewConfigurationAssignmentsClientWithBaseURI ¶
func NewConfigurationAssignmentsClientWithBaseURI(endpoint string) ConfigurationAssignmentsClient
func (ConfigurationAssignmentsClient) CreateOrUpdate ¶
func (c ConfigurationAssignmentsClient) CreateOrUpdate(ctx context.Context, id ConfigurationAssignmentId, input ConfigurationAssignment) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ConfigurationAssignmentsClient) CreateOrUpdateParent ¶
func (c ConfigurationAssignmentsClient) CreateOrUpdateParent(ctx context.Context, id Providers2ConfigurationAssignmentId, input ConfigurationAssignment) (result CreateOrUpdateParentOperationResponse, err error)
CreateOrUpdateParent ...
func (ConfigurationAssignmentsClient) Delete ¶
func (c ConfigurationAssignmentsClient) Delete(ctx context.Context, id ConfigurationAssignmentId) (result DeleteOperationResponse, err error)
Delete ...
func (ConfigurationAssignmentsClient) DeleteParent ¶
func (c ConfigurationAssignmentsClient) DeleteParent(ctx context.Context, id Providers2ConfigurationAssignmentId) (result DeleteParentOperationResponse, err error)
DeleteParent ...
func (ConfigurationAssignmentsClient) List ¶
func (c ConfigurationAssignmentsClient) List(ctx context.Context, id ProviderId) (result ListOperationResponse, err error)
List ...
func (ConfigurationAssignmentsClient) ListParent ¶
func (c ConfigurationAssignmentsClient) ListParent(ctx context.Context, id ResourceGroupProviderId) (result ListParentOperationResponse, err error)
ListParent ...
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response Model *ConfigurationAssignment }
type CreateOrUpdateParentOperationResponse ¶
type CreateOrUpdateParentOperationResponse struct { HttpResponse *http.Response Model *ConfigurationAssignment }
type DeleteOperationResponse ¶
type DeleteOperationResponse struct { HttpResponse *http.Response Model *ConfigurationAssignment }
type DeleteParentOperationResponse ¶
type DeleteParentOperationResponse struct { HttpResponse *http.Response Model *ConfigurationAssignment }
type ListConfigurationAssignmentsResult ¶
type ListConfigurationAssignmentsResult struct {
Value *[]ConfigurationAssignment `json:"value,omitempty"`
}
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response Model *ListConfigurationAssignmentsResult }
type ListParentOperationResponse ¶
type ListParentOperationResponse struct { HttpResponse *http.Response Model *ListConfigurationAssignmentsResult }
type ProviderId ¶
type ProviderId struct { SubscriptionId string ResourceGroupName string ProviderName string ResourceType string ResourceName string }
ProviderId is a struct representing the Resource ID for a Provider
func NewProviderID ¶
func NewProviderID(subscriptionId string, resourceGroupName string, providerName string, resourceType string, resourceName string) ProviderId
NewProviderID returns a new ProviderId struct
func ParseProviderID ¶
func ParseProviderID(input string) (*ProviderId, error)
ParseProviderID parses 'input' into a ProviderId
func ParseProviderIDInsensitively ¶
func ParseProviderIDInsensitively(input string) (*ProviderId, error)
ParseProviderIDInsensitively parses 'input' case-insensitively into a ProviderId note: this method should only be used for API response data and not user input
func (ProviderId) Segments ¶
func (id ProviderId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Provider ID
func (ProviderId) String ¶
func (id ProviderId) String() string
String returns a human-readable description of this Provider ID
type Providers2ConfigurationAssignmentId ¶
type Providers2ConfigurationAssignmentId struct { SubscriptionId string ResourceGroupName string ProviderName string ResourceParentType string ResourceParentName string ResourceType string ResourceName string ConfigurationAssignmentName string }
Providers2ConfigurationAssignmentId is a struct representing the Resource ID for a Providers 2 Configuration Assignment
func NewProviders2ConfigurationAssignmentID ¶
func NewProviders2ConfigurationAssignmentID(subscriptionId string, resourceGroupName string, providerName string, resourceParentType string, resourceParentName string, resourceType string, resourceName string, configurationAssignmentName string) Providers2ConfigurationAssignmentId
NewProviders2ConfigurationAssignmentID returns a new Providers2ConfigurationAssignmentId struct
func ParseProviders2ConfigurationAssignmentID ¶
func ParseProviders2ConfigurationAssignmentID(input string) (*Providers2ConfigurationAssignmentId, error)
ParseProviders2ConfigurationAssignmentID parses 'input' into a Providers2ConfigurationAssignmentId
func ParseProviders2ConfigurationAssignmentIDInsensitively ¶
func ParseProviders2ConfigurationAssignmentIDInsensitively(input string) (*Providers2ConfigurationAssignmentId, error)
ParseProviders2ConfigurationAssignmentIDInsensitively parses 'input' case-insensitively into a Providers2ConfigurationAssignmentId note: this method should only be used for API response data and not user input
func (Providers2ConfigurationAssignmentId) ID ¶
func (id Providers2ConfigurationAssignmentId) ID() string
ID returns the formatted Providers 2 Configuration Assignment ID
func (Providers2ConfigurationAssignmentId) Segments ¶
func (id Providers2ConfigurationAssignmentId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Providers 2 Configuration Assignment ID
func (Providers2ConfigurationAssignmentId) String ¶
func (id Providers2ConfigurationAssignmentId) String() string
String returns a human-readable description of this Providers 2 Configuration Assignment ID
type ResourceGroupProviderId ¶
type ResourceGroupProviderId struct { SubscriptionId string ResourceGroupName string ProviderName string ResourceParentType string ResourceParentName string ResourceType string ResourceName string }
ResourceGroupProviderId is a struct representing the Resource ID for a Resource Group Provider
func NewResourceGroupProviderID ¶
func NewResourceGroupProviderID(subscriptionId string, resourceGroupName string, providerName string, resourceParentType string, resourceParentName string, resourceType string, resourceName string) ResourceGroupProviderId
NewResourceGroupProviderID returns a new ResourceGroupProviderId struct
func ParseResourceGroupProviderID ¶
func ParseResourceGroupProviderID(input string) (*ResourceGroupProviderId, error)
ParseResourceGroupProviderID parses 'input' into a ResourceGroupProviderId
func ParseResourceGroupProviderIDInsensitively ¶
func ParseResourceGroupProviderIDInsensitively(input string) (*ResourceGroupProviderId, error)
ParseResourceGroupProviderIDInsensitively parses 'input' case-insensitively into a ResourceGroupProviderId note: this method should only be used for API response data and not user input
func (ResourceGroupProviderId) ID ¶
func (id ResourceGroupProviderId) ID() string
ID returns the formatted Resource Group Provider ID
func (ResourceGroupProviderId) Segments ¶
func (id ResourceGroupProviderId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Resource Group Provider ID
func (ResourceGroupProviderId) String ¶
func (id ResourceGroupProviderId) String() string
String returns a human-readable description of this Resource Group Provider ID
Source Files ¶
- client.go
- id_configurationassignment.go
- id_provider.go
- id_providers2configurationassignment.go
- id_resourcegroupprovider.go
- method_createorupdate_autorest.go
- method_createorupdateparent_autorest.go
- method_delete_autorest.go
- method_deleteparent_autorest.go
- method_list_autorest.go
- method_listparent_autorest.go
- model_configurationassignment.go
- model_configurationassignmentproperties.go
- model_listconfigurationassignmentsresult.go
- version.go