Documentation ¶
Index ¶
- func PossibleValuesForPersistedConnectionStatus() []string
- func PossibleValuesForResourceProvisioningState() []string
- func ValidateScopedPrivateEndpointConnectionID(input interface{}, key string) (warnings []string, errors []error)
- type ConnectionState
- type DeleteOperationResponse
- type GetOperationResponse
- type ListByResourceCompleteResult
- type ListByResourceCustomPager
- type ListByResourceOperationOptions
- type ListByResourceOperationResponse
- type PersistedConnectionStatus
- type PrivateEndpoint
- type PrivateEndpointConnection
- type PrivateEndpointConnectionOperationPredicate
- type PrivateEndpointConnectionProperties
- type PrivateEndpointConnectionsClient
- func (c PrivateEndpointConnectionsClient) Delete(ctx context.Context, id ScopedPrivateEndpointConnectionId) (result DeleteOperationResponse, err error)
- func (c PrivateEndpointConnectionsClient) DeleteThenPoll(ctx context.Context, id ScopedPrivateEndpointConnectionId) error
- func (c PrivateEndpointConnectionsClient) Get(ctx context.Context, id ScopedPrivateEndpointConnectionId) (result GetOperationResponse, err error)
- func (c PrivateEndpointConnectionsClient) ListByResource(ctx context.Context, id commonids.ScopeId, ...) (result ListByResourceOperationResponse, err error)
- func (c PrivateEndpointConnectionsClient) ListByResourceComplete(ctx context.Context, id commonids.ScopeId, ...) (ListByResourceCompleteResult, error)
- func (c PrivateEndpointConnectionsClient) ListByResourceCompleteMatchingPredicate(ctx context.Context, id commonids.ScopeId, ...) (result ListByResourceCompleteResult, err error)
- func (c PrivateEndpointConnectionsClient) Update(ctx context.Context, id ScopedPrivateEndpointConnectionId, ...) (result UpdateOperationResponse, err error)
- func (c PrivateEndpointConnectionsClient) UpdateThenPoll(ctx context.Context, id ScopedPrivateEndpointConnectionId, ...) error
- type ResourceProvisioningState
- type ScopedPrivateEndpointConnectionId
- func NewScopedPrivateEndpointConnectionID(scope string, privateEndpointConnectionName string) ScopedPrivateEndpointConnectionId
- func ParseScopedPrivateEndpointConnectionID(input string) (*ScopedPrivateEndpointConnectionId, error)
- func ParseScopedPrivateEndpointConnectionIDInsensitively(input string) (*ScopedPrivateEndpointConnectionId, error)
- type UpdateOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForPersistedConnectionStatus ¶
func PossibleValuesForPersistedConnectionStatus() []string
func PossibleValuesForResourceProvisioningState ¶
func PossibleValuesForResourceProvisioningState() []string
func ValidateScopedPrivateEndpointConnectionID ¶
func ValidateScopedPrivateEndpointConnectionID(input interface{}, key string) (warnings []string, errors []error)
ValidateScopedPrivateEndpointConnectionID checks that 'input' can be parsed as a Scoped Private Endpoint Connection ID
Types ¶
type ConnectionState ¶
type ConnectionState struct { ActionsRequired *string `json:"actionsRequired,omitempty"` Description *string `json:"description,omitempty"` Status *PersistedConnectionStatus `json:"status,omitempty"` }
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *PrivateEndpointConnection }
type ListByResourceCompleteResult ¶
type ListByResourceCompleteResult struct { LatestHttpResponse *http.Response Items []PrivateEndpointConnection }
type ListByResourceCustomPager ¶ added in v0.20240628.1153531
func (*ListByResourceCustomPager) NextPageLink ¶ added in v0.20240628.1153531
func (p *ListByResourceCustomPager) NextPageLink() *odata.Link
type ListByResourceOperationOptions ¶
func DefaultListByResourceOperationOptions ¶
func DefaultListByResourceOperationOptions() ListByResourceOperationOptions
func (ListByResourceOperationOptions) ToHeaders ¶
func (o ListByResourceOperationOptions) ToHeaders() *client.Headers
func (ListByResourceOperationOptions) ToOData ¶
func (o ListByResourceOperationOptions) ToOData() *odata.Query
func (ListByResourceOperationOptions) ToQuery ¶
func (o ListByResourceOperationOptions) ToQuery() *client.QueryParams
type ListByResourceOperationResponse ¶
type ListByResourceOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]PrivateEndpointConnection }
type PersistedConnectionStatus ¶
type PersistedConnectionStatus string
const ( PersistedConnectionStatusApproved PersistedConnectionStatus = "Approved" PersistedConnectionStatusDisconnected PersistedConnectionStatus = "Disconnected" PersistedConnectionStatusPending PersistedConnectionStatus = "Pending" PersistedConnectionStatusRejected PersistedConnectionStatus = "Rejected" )
func (*PersistedConnectionStatus) UnmarshalJSON ¶
func (s *PersistedConnectionStatus) UnmarshalJSON(bytes []byte) error
type PrivateEndpoint ¶
type PrivateEndpoint struct {
Id *string `json:"id,omitempty"`
}
type PrivateEndpointConnection ¶
type PrivateEndpointConnection struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *PrivateEndpointConnectionProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type PrivateEndpointConnectionOperationPredicate ¶
func (PrivateEndpointConnectionOperationPredicate) Matches ¶
func (p PrivateEndpointConnectionOperationPredicate) Matches(input PrivateEndpointConnection) bool
type PrivateEndpointConnectionProperties ¶
type PrivateEndpointConnectionProperties struct { GroupIds *[]string `json:"groupIds,omitempty"` PrivateEndpoint *PrivateEndpoint `json:"privateEndpoint,omitempty"` PrivateLinkServiceConnectionState *ConnectionState `json:"privateLinkServiceConnectionState,omitempty"` ProvisioningState *ResourceProvisioningState `json:"provisioningState,omitempty"` }
type PrivateEndpointConnectionsClient ¶
type PrivateEndpointConnectionsClient struct {
Client *resourcemanager.Client
}
func NewPrivateEndpointConnectionsClientWithBaseURI ¶
func NewPrivateEndpointConnectionsClientWithBaseURI(sdkApi sdkEnv.Api) (*PrivateEndpointConnectionsClient, error)
func (PrivateEndpointConnectionsClient) Delete ¶
func (c PrivateEndpointConnectionsClient) Delete(ctx context.Context, id ScopedPrivateEndpointConnectionId) (result DeleteOperationResponse, err error)
Delete ...
func (PrivateEndpointConnectionsClient) DeleteThenPoll ¶
func (c PrivateEndpointConnectionsClient) DeleteThenPoll(ctx context.Context, id ScopedPrivateEndpointConnectionId) error
DeleteThenPoll performs Delete then polls until it's completed
func (PrivateEndpointConnectionsClient) Get ¶
func (c PrivateEndpointConnectionsClient) Get(ctx context.Context, id ScopedPrivateEndpointConnectionId) (result GetOperationResponse, err error)
Get ...
func (PrivateEndpointConnectionsClient) ListByResource ¶
func (c PrivateEndpointConnectionsClient) ListByResource(ctx context.Context, id commonids.ScopeId, options ListByResourceOperationOptions) (result ListByResourceOperationResponse, err error)
ListByResource ...
func (PrivateEndpointConnectionsClient) ListByResourceComplete ¶
func (c PrivateEndpointConnectionsClient) ListByResourceComplete(ctx context.Context, id commonids.ScopeId, options ListByResourceOperationOptions) (ListByResourceCompleteResult, error)
ListByResourceComplete retrieves all the results into a single object
func (PrivateEndpointConnectionsClient) ListByResourceCompleteMatchingPredicate ¶
func (c PrivateEndpointConnectionsClient) ListByResourceCompleteMatchingPredicate(ctx context.Context, id commonids.ScopeId, options ListByResourceOperationOptions, predicate PrivateEndpointConnectionOperationPredicate) (result ListByResourceCompleteResult, err error)
ListByResourceCompleteMatchingPredicate retrieves all the results and then applies the predicate
func (PrivateEndpointConnectionsClient) Update ¶
func (c PrivateEndpointConnectionsClient) Update(ctx context.Context, id ScopedPrivateEndpointConnectionId, input PrivateEndpointConnection) (result UpdateOperationResponse, err error)
Update ...
func (PrivateEndpointConnectionsClient) UpdateThenPoll ¶
func (c PrivateEndpointConnectionsClient) UpdateThenPoll(ctx context.Context, id ScopedPrivateEndpointConnectionId, input PrivateEndpointConnection) error
UpdateThenPoll performs Update then polls until it's completed
type ResourceProvisioningState ¶
type ResourceProvisioningState string
const ( ResourceProvisioningStateCanceled ResourceProvisioningState = "Canceled" ResourceProvisioningStateCreating ResourceProvisioningState = "Creating" ResourceProvisioningStateDeleting ResourceProvisioningState = "Deleting" ResourceProvisioningStateFailed ResourceProvisioningState = "Failed" ResourceProvisioningStateSucceeded ResourceProvisioningState = "Succeeded" ResourceProvisioningStateUpdating ResourceProvisioningState = "Updating" )
func (*ResourceProvisioningState) UnmarshalJSON ¶
func (s *ResourceProvisioningState) UnmarshalJSON(bytes []byte) error
type ScopedPrivateEndpointConnectionId ¶
ScopedPrivateEndpointConnectionId is a struct representing the Resource ID for a Scoped Private Endpoint Connection
func NewScopedPrivateEndpointConnectionID ¶
func NewScopedPrivateEndpointConnectionID(scope string, privateEndpointConnectionName string) ScopedPrivateEndpointConnectionId
NewScopedPrivateEndpointConnectionID returns a new ScopedPrivateEndpointConnectionId struct
func ParseScopedPrivateEndpointConnectionID ¶
func ParseScopedPrivateEndpointConnectionID(input string) (*ScopedPrivateEndpointConnectionId, error)
ParseScopedPrivateEndpointConnectionID parses 'input' into a ScopedPrivateEndpointConnectionId
func ParseScopedPrivateEndpointConnectionIDInsensitively ¶
func ParseScopedPrivateEndpointConnectionIDInsensitively(input string) (*ScopedPrivateEndpointConnectionId, error)
ParseScopedPrivateEndpointConnectionIDInsensitively parses 'input' case-insensitively into a ScopedPrivateEndpointConnectionId note: this method should only be used for API response data and not user input
func (*ScopedPrivateEndpointConnectionId) FromParseResult ¶
func (id *ScopedPrivateEndpointConnectionId) FromParseResult(input resourceids.ParseResult) error
func (ScopedPrivateEndpointConnectionId) ID ¶
func (id ScopedPrivateEndpointConnectionId) ID() string
ID returns the formatted Scoped Private Endpoint Connection ID
func (ScopedPrivateEndpointConnectionId) Segments ¶
func (id ScopedPrivateEndpointConnectionId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Scoped Private Endpoint Connection ID
func (ScopedPrivateEndpointConnectionId) String ¶
func (id ScopedPrivateEndpointConnectionId) String() string
String returns a human-readable description of this Scoped Private Endpoint Connection ID