Documentation ¶
Index ¶
- func PossibleValuesForManagedPrivateEndpointsType() []string
- func PossibleValuesForProvisioningState() []string
- func PossibleValuesForReason() []string
- func ValidateManagedPrivateEndpointID(input interface{}, key string) (warnings []string, errors []error)
- type CheckNameAvailabilityOperationResponse
- type CheckNameResult
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type ListOperationResponse
- type ManagedPrivateEndpoint
- type ManagedPrivateEndpointId
- func NewManagedPrivateEndpointID(subscriptionId string, resourceGroupName string, clusterName string, ...) ManagedPrivateEndpointId
- func ParseManagedPrivateEndpointID(input string) (*ManagedPrivateEndpointId, error)
- func ParseManagedPrivateEndpointIDInsensitively(input string) (*ManagedPrivateEndpointId, error)
- type ManagedPrivateEndpointListResult
- type ManagedPrivateEndpointProperties
- type ManagedPrivateEndpointsCheckNameRequest
- type ManagedPrivateEndpointsClient
- func (c ManagedPrivateEndpointsClient) CheckNameAvailability(ctx context.Context, id commonids.KustoClusterId, ...) (result CheckNameAvailabilityOperationResponse, err error)
- func (c ManagedPrivateEndpointsClient) CreateOrUpdate(ctx context.Context, id ManagedPrivateEndpointId, input ManagedPrivateEndpoint) (result CreateOrUpdateOperationResponse, err error)
- func (c ManagedPrivateEndpointsClient) CreateOrUpdateThenPoll(ctx context.Context, id ManagedPrivateEndpointId, input ManagedPrivateEndpoint) error
- func (c ManagedPrivateEndpointsClient) Delete(ctx context.Context, id ManagedPrivateEndpointId) (result DeleteOperationResponse, err error)
- func (c ManagedPrivateEndpointsClient) DeleteThenPoll(ctx context.Context, id ManagedPrivateEndpointId) error
- func (c ManagedPrivateEndpointsClient) Get(ctx context.Context, id ManagedPrivateEndpointId) (result GetOperationResponse, err error)
- func (c ManagedPrivateEndpointsClient) List(ctx context.Context, id commonids.KustoClusterId) (result ListOperationResponse, err error)
- func (c ManagedPrivateEndpointsClient) Update(ctx context.Context, id ManagedPrivateEndpointId, input ManagedPrivateEndpoint) (result UpdateOperationResponse, err error)
- func (c ManagedPrivateEndpointsClient) UpdateThenPoll(ctx context.Context, id ManagedPrivateEndpointId, input ManagedPrivateEndpoint) error
- type ManagedPrivateEndpointsType
- type ProvisioningState
- type Reason
- type UpdateOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForManagedPrivateEndpointsType ¶
func PossibleValuesForManagedPrivateEndpointsType() []string
func PossibleValuesForProvisioningState ¶
func PossibleValuesForProvisioningState() []string
func PossibleValuesForReason ¶
func PossibleValuesForReason() []string
func ValidateManagedPrivateEndpointID ¶
func ValidateManagedPrivateEndpointID(input interface{}, key string) (warnings []string, errors []error)
ValidateManagedPrivateEndpointID checks that 'input' can be parsed as a Managed Private Endpoint ID
Types ¶
type CheckNameAvailabilityOperationResponse ¶
type CheckNameAvailabilityOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *CheckNameResult }
type CheckNameResult ¶
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *ManagedPrivateEndpoint }
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *ManagedPrivateEndpointListResult }
type ManagedPrivateEndpoint ¶
type ManagedPrivateEndpoint struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *ManagedPrivateEndpointProperties `json:"properties,omitempty"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Type *string `json:"type,omitempty"` }
type ManagedPrivateEndpointId ¶
type ManagedPrivateEndpointId struct { SubscriptionId string ResourceGroupName string ClusterName string ManagedPrivateEndpointName string }
ManagedPrivateEndpointId is a struct representing the Resource ID for a Managed Private Endpoint
func NewManagedPrivateEndpointID ¶
func NewManagedPrivateEndpointID(subscriptionId string, resourceGroupName string, clusterName string, managedPrivateEndpointName string) ManagedPrivateEndpointId
NewManagedPrivateEndpointID returns a new ManagedPrivateEndpointId struct
func ParseManagedPrivateEndpointID ¶
func ParseManagedPrivateEndpointID(input string) (*ManagedPrivateEndpointId, error)
ParseManagedPrivateEndpointID parses 'input' into a ManagedPrivateEndpointId
func ParseManagedPrivateEndpointIDInsensitively ¶
func ParseManagedPrivateEndpointIDInsensitively(input string) (*ManagedPrivateEndpointId, error)
ParseManagedPrivateEndpointIDInsensitively parses 'input' case-insensitively into a ManagedPrivateEndpointId note: this method should only be used for API response data and not user input
func (*ManagedPrivateEndpointId) FromParseResult ¶
func (id *ManagedPrivateEndpointId) FromParseResult(input resourceids.ParseResult) error
func (ManagedPrivateEndpointId) ID ¶
func (id ManagedPrivateEndpointId) ID() string
ID returns the formatted Managed Private Endpoint ID
func (ManagedPrivateEndpointId) Segments ¶
func (id ManagedPrivateEndpointId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Managed Private Endpoint ID
func (ManagedPrivateEndpointId) String ¶
func (id ManagedPrivateEndpointId) String() string
String returns a human-readable description of this Managed Private Endpoint ID
type ManagedPrivateEndpointListResult ¶
type ManagedPrivateEndpointListResult struct {
Value *[]ManagedPrivateEndpoint `json:"value,omitempty"`
}
type ManagedPrivateEndpointProperties ¶
type ManagedPrivateEndpointProperties struct { GroupId string `json:"groupId"` PrivateLinkResourceId string `json:"privateLinkResourceId"` PrivateLinkResourceRegion *string `json:"privateLinkResourceRegion,omitempty"` ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"` RequestMessage *string `json:"requestMessage,omitempty"` }
type ManagedPrivateEndpointsCheckNameRequest ¶
type ManagedPrivateEndpointsCheckNameRequest struct { Name string `json:"name"` Type ManagedPrivateEndpointsType `json:"type"` }
type ManagedPrivateEndpointsClient ¶
type ManagedPrivateEndpointsClient struct {
Client *resourcemanager.Client
}
func NewManagedPrivateEndpointsClientWithBaseURI ¶
func NewManagedPrivateEndpointsClientWithBaseURI(sdkApi sdkEnv.Api) (*ManagedPrivateEndpointsClient, error)
func (ManagedPrivateEndpointsClient) CheckNameAvailability ¶
func (c ManagedPrivateEndpointsClient) CheckNameAvailability(ctx context.Context, id commonids.KustoClusterId, input ManagedPrivateEndpointsCheckNameRequest) (result CheckNameAvailabilityOperationResponse, err error)
CheckNameAvailability ...
func (ManagedPrivateEndpointsClient) CreateOrUpdate ¶
func (c ManagedPrivateEndpointsClient) CreateOrUpdate(ctx context.Context, id ManagedPrivateEndpointId, input ManagedPrivateEndpoint) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ManagedPrivateEndpointsClient) CreateOrUpdateThenPoll ¶
func (c ManagedPrivateEndpointsClient) CreateOrUpdateThenPoll(ctx context.Context, id ManagedPrivateEndpointId, input ManagedPrivateEndpoint) error
CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed
func (ManagedPrivateEndpointsClient) Delete ¶
func (c ManagedPrivateEndpointsClient) Delete(ctx context.Context, id ManagedPrivateEndpointId) (result DeleteOperationResponse, err error)
Delete ...
func (ManagedPrivateEndpointsClient) DeleteThenPoll ¶
func (c ManagedPrivateEndpointsClient) DeleteThenPoll(ctx context.Context, id ManagedPrivateEndpointId) error
DeleteThenPoll performs Delete then polls until it's completed
func (ManagedPrivateEndpointsClient) Get ¶
func (c ManagedPrivateEndpointsClient) Get(ctx context.Context, id ManagedPrivateEndpointId) (result GetOperationResponse, err error)
Get ...
func (ManagedPrivateEndpointsClient) List ¶
func (c ManagedPrivateEndpointsClient) List(ctx context.Context, id commonids.KustoClusterId) (result ListOperationResponse, err error)
List ...
func (ManagedPrivateEndpointsClient) Update ¶
func (c ManagedPrivateEndpointsClient) Update(ctx context.Context, id ManagedPrivateEndpointId, input ManagedPrivateEndpoint) (result UpdateOperationResponse, err error)
Update ...
func (ManagedPrivateEndpointsClient) UpdateThenPoll ¶
func (c ManagedPrivateEndpointsClient) UpdateThenPoll(ctx context.Context, id ManagedPrivateEndpointId, input ManagedPrivateEndpoint) error
UpdateThenPoll performs Update then polls until it's completed
type ManagedPrivateEndpointsType ¶
type ManagedPrivateEndpointsType string
const (
ManagedPrivateEndpointsTypeMicrosoftPointKustoClustersManagedPrivateEndpoints ManagedPrivateEndpointsType = "Microsoft.Kusto/clusters/managedPrivateEndpoints"
)
func (*ManagedPrivateEndpointsType) UnmarshalJSON ¶
func (s *ManagedPrivateEndpointsType) UnmarshalJSON(bytes []byte) error
type ProvisioningState ¶
type ProvisioningState string
const ( ProvisioningStateCanceled ProvisioningState = "Canceled" ProvisioningStateCreating ProvisioningState = "Creating" ProvisioningStateDeleting ProvisioningState = "Deleting" ProvisioningStateFailed ProvisioningState = "Failed" ProvisioningStateMoving ProvisioningState = "Moving" ProvisioningStateRunning ProvisioningState = "Running" ProvisioningStateSucceeded ProvisioningState = "Succeeded" )
func (*ProvisioningState) UnmarshalJSON ¶
func (s *ProvisioningState) UnmarshalJSON(bytes []byte) error
type UpdateOperationResponse ¶
Source Files ¶
- client.go
- constants.go
- id_managedprivateendpoint.go
- method_checknameavailability.go
- method_createorupdate.go
- method_delete.go
- method_get.go
- method_list.go
- method_update.go
- model_checknameresult.go
- model_managedprivateendpoint.go
- model_managedprivateendpointlistresult.go
- model_managedprivateendpointproperties.go
- model_managedprivateendpointschecknamerequest.go
- version.go