Documentation ¶
Index ¶
- func PossibleValuesForProvisioningState() []string
- func ValidateServiceEndpointPolicyDefinitionID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateServiceEndpointPolicyID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type ListByResourceGroupCompleteResult
- type ListByResourceGroupOperationResponse
- type ProvisioningState
- type ServiceEndpointPolicyDefinition
- type ServiceEndpointPolicyDefinitionId
- func NewServiceEndpointPolicyDefinitionID(subscriptionId string, resourceGroupName string, ...) ServiceEndpointPolicyDefinitionId
- func ParseServiceEndpointPolicyDefinitionID(input string) (*ServiceEndpointPolicyDefinitionId, error)
- func ParseServiceEndpointPolicyDefinitionIDInsensitively(input string) (*ServiceEndpointPolicyDefinitionId, error)
- type ServiceEndpointPolicyDefinitionOperationPredicate
- type ServiceEndpointPolicyDefinitionPropertiesFormat
- type ServiceEndpointPolicyDefinitionsClient
- func (c ServiceEndpointPolicyDefinitionsClient) CreateOrUpdate(ctx context.Context, id ServiceEndpointPolicyDefinitionId, ...) (result CreateOrUpdateOperationResponse, err error)
- func (c ServiceEndpointPolicyDefinitionsClient) CreateOrUpdateThenPoll(ctx context.Context, id ServiceEndpointPolicyDefinitionId, ...) error
- func (c ServiceEndpointPolicyDefinitionsClient) Delete(ctx context.Context, id ServiceEndpointPolicyDefinitionId) (result DeleteOperationResponse, err error)
- func (c ServiceEndpointPolicyDefinitionsClient) DeleteThenPoll(ctx context.Context, id ServiceEndpointPolicyDefinitionId) error
- func (c ServiceEndpointPolicyDefinitionsClient) Get(ctx context.Context, id ServiceEndpointPolicyDefinitionId) (result GetOperationResponse, err error)
- func (c ServiceEndpointPolicyDefinitionsClient) ListByResourceGroup(ctx context.Context, id ServiceEndpointPolicyId) (result ListByResourceGroupOperationResponse, err error)
- func (c ServiceEndpointPolicyDefinitionsClient) ListByResourceGroupComplete(ctx context.Context, id ServiceEndpointPolicyId) (ListByResourceGroupCompleteResult, error)
- func (c ServiceEndpointPolicyDefinitionsClient) ListByResourceGroupCompleteMatchingPredicate(ctx context.Context, id ServiceEndpointPolicyId, ...) (result ListByResourceGroupCompleteResult, err error)
- type ServiceEndpointPolicyId
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForProvisioningState ¶
func PossibleValuesForProvisioningState() []string
func ValidateServiceEndpointPolicyDefinitionID ¶
func ValidateServiceEndpointPolicyDefinitionID(input interface{}, key string) (warnings []string, errors []error)
ValidateServiceEndpointPolicyDefinitionID checks that 'input' can be parsed as a Service Endpoint Policy Definition ID
func ValidateServiceEndpointPolicyID ¶
func ValidateServiceEndpointPolicyID(input interface{}, key string) (warnings []string, errors []error)
ValidateServiceEndpointPolicyID checks that 'input' can be parsed as a Service Endpoint Policy ID
Types ¶
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *ServiceEndpointPolicyDefinition }
type ListByResourceGroupCompleteResult ¶
type ListByResourceGroupCompleteResult struct { LatestHttpResponse *http.Response Items []ServiceEndpointPolicyDefinition }
type ListByResourceGroupOperationResponse ¶
type ListByResourceGroupOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]ServiceEndpointPolicyDefinition }
type ProvisioningState ¶
type ProvisioningState string
const ( ProvisioningStateDeleting ProvisioningState = "Deleting" ProvisioningStateFailed ProvisioningState = "Failed" ProvisioningStateSucceeded ProvisioningState = "Succeeded" ProvisioningStateUpdating ProvisioningState = "Updating" )
func (*ProvisioningState) UnmarshalJSON ¶
func (s *ProvisioningState) UnmarshalJSON(bytes []byte) error
type ServiceEndpointPolicyDefinition ¶
type ServiceEndpointPolicyDefinition struct { Etag *string `json:"etag,omitempty"` Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *ServiceEndpointPolicyDefinitionPropertiesFormat `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type ServiceEndpointPolicyDefinitionId ¶
type ServiceEndpointPolicyDefinitionId struct { SubscriptionId string ResourceGroupName string ServiceEndpointPolicyName string ServiceEndpointPolicyDefinitionName string }
ServiceEndpointPolicyDefinitionId is a struct representing the Resource ID for a Service Endpoint Policy Definition
func NewServiceEndpointPolicyDefinitionID ¶
func NewServiceEndpointPolicyDefinitionID(subscriptionId string, resourceGroupName string, serviceEndpointPolicyName string, serviceEndpointPolicyDefinitionName string) ServiceEndpointPolicyDefinitionId
NewServiceEndpointPolicyDefinitionID returns a new ServiceEndpointPolicyDefinitionId struct
func ParseServiceEndpointPolicyDefinitionID ¶
func ParseServiceEndpointPolicyDefinitionID(input string) (*ServiceEndpointPolicyDefinitionId, error)
ParseServiceEndpointPolicyDefinitionID parses 'input' into a ServiceEndpointPolicyDefinitionId
func ParseServiceEndpointPolicyDefinitionIDInsensitively ¶
func ParseServiceEndpointPolicyDefinitionIDInsensitively(input string) (*ServiceEndpointPolicyDefinitionId, error)
ParseServiceEndpointPolicyDefinitionIDInsensitively parses 'input' case-insensitively into a ServiceEndpointPolicyDefinitionId note: this method should only be used for API response data and not user input
func (*ServiceEndpointPolicyDefinitionId) FromParseResult ¶
func (id *ServiceEndpointPolicyDefinitionId) FromParseResult(input resourceids.ParseResult) error
func (ServiceEndpointPolicyDefinitionId) ID ¶
func (id ServiceEndpointPolicyDefinitionId) ID() string
ID returns the formatted Service Endpoint Policy Definition ID
func (ServiceEndpointPolicyDefinitionId) Segments ¶
func (id ServiceEndpointPolicyDefinitionId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Service Endpoint Policy Definition ID
func (ServiceEndpointPolicyDefinitionId) String ¶
func (id ServiceEndpointPolicyDefinitionId) String() string
String returns a human-readable description of this Service Endpoint Policy Definition ID
type ServiceEndpointPolicyDefinitionOperationPredicate ¶
type ServiceEndpointPolicyDefinitionOperationPredicate struct { Etag *string Id *string Name *string Type *string }
func (ServiceEndpointPolicyDefinitionOperationPredicate) Matches ¶
func (p ServiceEndpointPolicyDefinitionOperationPredicate) Matches(input ServiceEndpointPolicyDefinition) bool
type ServiceEndpointPolicyDefinitionPropertiesFormat ¶
type ServiceEndpointPolicyDefinitionPropertiesFormat struct { Description *string `json:"description,omitempty"` ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"` Service *string `json:"service,omitempty"` ServiceResources *[]string `json:"serviceResources,omitempty"` }
type ServiceEndpointPolicyDefinitionsClient ¶
type ServiceEndpointPolicyDefinitionsClient struct {
Client *resourcemanager.Client
}
func NewServiceEndpointPolicyDefinitionsClientWithBaseURI ¶
func NewServiceEndpointPolicyDefinitionsClientWithBaseURI(sdkApi sdkEnv.Api) (*ServiceEndpointPolicyDefinitionsClient, error)
func (ServiceEndpointPolicyDefinitionsClient) CreateOrUpdate ¶
func (c ServiceEndpointPolicyDefinitionsClient) CreateOrUpdate(ctx context.Context, id ServiceEndpointPolicyDefinitionId, input ServiceEndpointPolicyDefinition) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ServiceEndpointPolicyDefinitionsClient) CreateOrUpdateThenPoll ¶
func (c ServiceEndpointPolicyDefinitionsClient) CreateOrUpdateThenPoll(ctx context.Context, id ServiceEndpointPolicyDefinitionId, input ServiceEndpointPolicyDefinition) error
CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed
func (ServiceEndpointPolicyDefinitionsClient) Delete ¶
func (c ServiceEndpointPolicyDefinitionsClient) Delete(ctx context.Context, id ServiceEndpointPolicyDefinitionId) (result DeleteOperationResponse, err error)
Delete ...
func (ServiceEndpointPolicyDefinitionsClient) DeleteThenPoll ¶
func (c ServiceEndpointPolicyDefinitionsClient) DeleteThenPoll(ctx context.Context, id ServiceEndpointPolicyDefinitionId) error
DeleteThenPoll performs Delete then polls until it's completed
func (ServiceEndpointPolicyDefinitionsClient) Get ¶
func (c ServiceEndpointPolicyDefinitionsClient) Get(ctx context.Context, id ServiceEndpointPolicyDefinitionId) (result GetOperationResponse, err error)
Get ...
func (ServiceEndpointPolicyDefinitionsClient) ListByResourceGroup ¶
func (c ServiceEndpointPolicyDefinitionsClient) ListByResourceGroup(ctx context.Context, id ServiceEndpointPolicyId) (result ListByResourceGroupOperationResponse, err error)
ListByResourceGroup ...
func (ServiceEndpointPolicyDefinitionsClient) ListByResourceGroupComplete ¶
func (c ServiceEndpointPolicyDefinitionsClient) ListByResourceGroupComplete(ctx context.Context, id ServiceEndpointPolicyId) (ListByResourceGroupCompleteResult, error)
ListByResourceGroupComplete retrieves all the results into a single object
func (ServiceEndpointPolicyDefinitionsClient) ListByResourceGroupCompleteMatchingPredicate ¶
func (c ServiceEndpointPolicyDefinitionsClient) ListByResourceGroupCompleteMatchingPredicate(ctx context.Context, id ServiceEndpointPolicyId, predicate ServiceEndpointPolicyDefinitionOperationPredicate) (result ListByResourceGroupCompleteResult, err error)
ListByResourceGroupCompleteMatchingPredicate retrieves all the results and then applies the predicate
type ServiceEndpointPolicyId ¶
type ServiceEndpointPolicyId struct { SubscriptionId string ResourceGroupName string ServiceEndpointPolicyName string }
ServiceEndpointPolicyId is a struct representing the Resource ID for a Service Endpoint Policy
func NewServiceEndpointPolicyID ¶
func NewServiceEndpointPolicyID(subscriptionId string, resourceGroupName string, serviceEndpointPolicyName string) ServiceEndpointPolicyId
NewServiceEndpointPolicyID returns a new ServiceEndpointPolicyId struct
func ParseServiceEndpointPolicyID ¶
func ParseServiceEndpointPolicyID(input string) (*ServiceEndpointPolicyId, error)
ParseServiceEndpointPolicyID parses 'input' into a ServiceEndpointPolicyId
func ParseServiceEndpointPolicyIDInsensitively ¶
func ParseServiceEndpointPolicyIDInsensitively(input string) (*ServiceEndpointPolicyId, error)
ParseServiceEndpointPolicyIDInsensitively parses 'input' case-insensitively into a ServiceEndpointPolicyId note: this method should only be used for API response data and not user input
func (*ServiceEndpointPolicyId) FromParseResult ¶
func (id *ServiceEndpointPolicyId) FromParseResult(input resourceids.ParseResult) error
func (ServiceEndpointPolicyId) ID ¶
func (id ServiceEndpointPolicyId) ID() string
ID returns the formatted Service Endpoint Policy ID
func (ServiceEndpointPolicyId) Segments ¶
func (id ServiceEndpointPolicyId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Service Endpoint Policy ID
func (ServiceEndpointPolicyId) String ¶
func (id ServiceEndpointPolicyId) String() string
String returns a human-readable description of this Service Endpoint Policy ID