Documentation ¶
Index ¶
- func PossibleValuesForPublicNetworkAccessOptions() []string
- func ValidatePrivateLinkAssociationID(input interface{}, key string) (warnings []string, errors []error)
- type DeleteOperationResponse
- type GetOperationResponse
- type ListOperationResponse
- type PrivateLinkAssociation
- type PrivateLinkAssociationClient
- func (c PrivateLinkAssociationClient) Delete(ctx context.Context, id PrivateLinkAssociationId) (result DeleteOperationResponse, err error)
- func (c PrivateLinkAssociationClient) Get(ctx context.Context, id PrivateLinkAssociationId) (result GetOperationResponse, err error)
- func (c PrivateLinkAssociationClient) List(ctx context.Context, id commonids.ManagementGroupId) (result ListOperationResponse, err error)
- func (c PrivateLinkAssociationClient) Put(ctx context.Context, id PrivateLinkAssociationId, ...) (result PutOperationResponse, err error)
- type PrivateLinkAssociationGetResult
- type PrivateLinkAssociationId
- type PrivateLinkAssociationObject
- type PrivateLinkAssociationProperties
- type PrivateLinkAssociationPropertiesExpanded
- type PublicNetworkAccessOptions
- type PutOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForPublicNetworkAccessOptions ¶
func PossibleValuesForPublicNetworkAccessOptions() []string
func ValidatePrivateLinkAssociationID ¶
func ValidatePrivateLinkAssociationID(input interface{}, key string) (warnings []string, errors []error)
ValidatePrivateLinkAssociationID checks that 'input' can be parsed as a Private Link Association ID
Types ¶
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response Model *PrivateLinkAssociation }
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response Model *PrivateLinkAssociationGetResult }
type PrivateLinkAssociation ¶
type PrivateLinkAssociation struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *PrivateLinkAssociationPropertiesExpanded `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type PrivateLinkAssociationClient ¶
type PrivateLinkAssociationClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewPrivateLinkAssociationClientWithBaseURI ¶
func NewPrivateLinkAssociationClientWithBaseURI(endpoint string) PrivateLinkAssociationClient
func (PrivateLinkAssociationClient) Delete ¶
func (c PrivateLinkAssociationClient) Delete(ctx context.Context, id PrivateLinkAssociationId) (result DeleteOperationResponse, err error)
Delete ...
func (PrivateLinkAssociationClient) Get ¶
func (c PrivateLinkAssociationClient) Get(ctx context.Context, id PrivateLinkAssociationId) (result GetOperationResponse, err error)
Get ...
func (PrivateLinkAssociationClient) List ¶
func (c PrivateLinkAssociationClient) List(ctx context.Context, id commonids.ManagementGroupId) (result ListOperationResponse, err error)
List ...
func (PrivateLinkAssociationClient) Put ¶
func (c PrivateLinkAssociationClient) Put(ctx context.Context, id PrivateLinkAssociationId, input PrivateLinkAssociationObject) (result PutOperationResponse, err error)
Put ...
type PrivateLinkAssociationGetResult ¶
type PrivateLinkAssociationGetResult struct {
Value *[]PrivateLinkAssociation `json:"value,omitempty"`
}
type PrivateLinkAssociationId ¶
PrivateLinkAssociationId is a struct representing the Resource ID for a Private Link Association
func NewPrivateLinkAssociationID ¶
func NewPrivateLinkAssociationID(groupId string, plaId string) PrivateLinkAssociationId
NewPrivateLinkAssociationID returns a new PrivateLinkAssociationId struct
func ParsePrivateLinkAssociationID ¶
func ParsePrivateLinkAssociationID(input string) (*PrivateLinkAssociationId, error)
ParsePrivateLinkAssociationID parses 'input' into a PrivateLinkAssociationId
func ParsePrivateLinkAssociationIDInsensitively ¶
func ParsePrivateLinkAssociationIDInsensitively(input string) (*PrivateLinkAssociationId, error)
ParsePrivateLinkAssociationIDInsensitively parses 'input' case-insensitively into a PrivateLinkAssociationId note: this method should only be used for API response data and not user input
func (PrivateLinkAssociationId) ID ¶
func (id PrivateLinkAssociationId) ID() string
ID returns the formatted Private Link Association ID
func (PrivateLinkAssociationId) Segments ¶
func (id PrivateLinkAssociationId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Private Link Association ID
func (PrivateLinkAssociationId) String ¶
func (id PrivateLinkAssociationId) String() string
String returns a human-readable description of this Private Link Association ID
type PrivateLinkAssociationObject ¶
type PrivateLinkAssociationObject struct {
Properties *PrivateLinkAssociationProperties `json:"properties,omitempty"`
}
type PrivateLinkAssociationProperties ¶
type PrivateLinkAssociationProperties struct { PrivateLink *string `json:"privateLink,omitempty"` PublicNetworkAccess *PublicNetworkAccessOptions `json:"publicNetworkAccess,omitempty"` }
type PrivateLinkAssociationPropertiesExpanded ¶
type PrivateLinkAssociationPropertiesExpanded struct { PrivateLink *string `json:"privateLink,omitempty"` PublicNetworkAccess *PublicNetworkAccessOptions `json:"publicNetworkAccess,omitempty"` Scope *string `json:"scope,omitempty"` TenantID *string `json:"tenantID,omitempty"` }
type PublicNetworkAccessOptions ¶
type PublicNetworkAccessOptions string
const ( PublicNetworkAccessOptionsDisabled PublicNetworkAccessOptions = "Disabled" PublicNetworkAccessOptionsEnabled PublicNetworkAccessOptions = "Enabled" )
type PutOperationResponse ¶
type PutOperationResponse struct { HttpResponse *http.Response Model *PrivateLinkAssociation }
Source Files ¶
- client.go
- constants.go
- id_privatelinkassociation.go
- method_delete_autorest.go
- method_get_autorest.go
- method_list_autorest.go
- method_put_autorest.go
- model_privatelinkassociation.go
- model_privatelinkassociationgetresult.go
- model_privatelinkassociationobject.go
- model_privatelinkassociationproperties.go
- model_privatelinkassociationpropertiesexpanded.go
- version.go