Documentation ¶
Index ¶
- func PossibleValuesForLanguage() []string
- func PossibleValuesForProvisioningState() []string
- func PossibleValuesForReason() []string
- func PossibleValuesForSandboxCustomImageType() []string
- func ValidateSandboxCustomImageID(input interface{}, key string) (warnings []string, errors []error)
- type CheckNameAvailabilityOperationResponse
- type CheckNameResult
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type Language
- type ListByClusterOperationResponse
- type ProvisioningState
- type Reason
- type SandboxCustomImage
- type SandboxCustomImageId
- type SandboxCustomImageProperties
- type SandboxCustomImageType
- type SandboxCustomImagesCheckNameRequest
- type SandboxCustomImagesClient
- func (c SandboxCustomImagesClient) CheckNameAvailability(ctx context.Context, id commonids.KustoClusterId, ...) (result CheckNameAvailabilityOperationResponse, err error)
- func (c SandboxCustomImagesClient) CreateOrUpdate(ctx context.Context, id SandboxCustomImageId, input SandboxCustomImage) (result CreateOrUpdateOperationResponse, err error)
- func (c SandboxCustomImagesClient) CreateOrUpdateThenPoll(ctx context.Context, id SandboxCustomImageId, input SandboxCustomImage) error
- func (c SandboxCustomImagesClient) Delete(ctx context.Context, id SandboxCustomImageId) (result DeleteOperationResponse, err error)
- func (c SandboxCustomImagesClient) DeleteThenPoll(ctx context.Context, id SandboxCustomImageId) error
- func (c SandboxCustomImagesClient) Get(ctx context.Context, id SandboxCustomImageId) (result GetOperationResponse, err error)
- func (c SandboxCustomImagesClient) ListByCluster(ctx context.Context, id commonids.KustoClusterId) (result ListByClusterOperationResponse, err error)
- func (c SandboxCustomImagesClient) Update(ctx context.Context, id SandboxCustomImageId, input SandboxCustomImage) (result UpdateOperationResponse, err error)
- func (c SandboxCustomImagesClient) UpdateThenPoll(ctx context.Context, id SandboxCustomImageId, input SandboxCustomImage) error
- type SandboxCustomImagesListResult
- type UpdateOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForLanguage ¶
func PossibleValuesForLanguage() []string
func PossibleValuesForProvisioningState ¶
func PossibleValuesForProvisioningState() []string
func PossibleValuesForReason ¶
func PossibleValuesForReason() []string
func PossibleValuesForSandboxCustomImageType ¶
func PossibleValuesForSandboxCustomImageType() []string
func ValidateSandboxCustomImageID ¶
func ValidateSandboxCustomImageID(input interface{}, key string) (warnings []string, errors []error)
ValidateSandboxCustomImageID checks that 'input' can be parsed as a Sandbox Custom Image 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 *SandboxCustomImage }
type Language ¶
type Language string
const (
LanguagePython Language = "Python"
)
func (*Language) UnmarshalJSON ¶ added in v0.20240112.1095456
type ListByClusterOperationResponse ¶
type ListByClusterOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *SandboxCustomImagesListResult }
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 ¶ added in v0.20240112.1095456
func (s *ProvisioningState) UnmarshalJSON(bytes []byte) error
type SandboxCustomImage ¶
type SandboxCustomImage struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *SandboxCustomImageProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type SandboxCustomImageId ¶
type SandboxCustomImageId struct { SubscriptionId string ResourceGroupName string ClusterName string SandboxCustomImageName string }
SandboxCustomImageId is a struct representing the Resource ID for a Sandbox Custom Image
func NewSandboxCustomImageID ¶
func NewSandboxCustomImageID(subscriptionId string, resourceGroupName string, clusterName string, sandboxCustomImageName string) SandboxCustomImageId
NewSandboxCustomImageID returns a new SandboxCustomImageId struct
func ParseSandboxCustomImageID ¶
func ParseSandboxCustomImageID(input string) (*SandboxCustomImageId, error)
ParseSandboxCustomImageID parses 'input' into a SandboxCustomImageId
func ParseSandboxCustomImageIDInsensitively ¶
func ParseSandboxCustomImageIDInsensitively(input string) (*SandboxCustomImageId, error)
ParseSandboxCustomImageIDInsensitively parses 'input' case-insensitively into a SandboxCustomImageId note: this method should only be used for API response data and not user input
func (*SandboxCustomImageId) FromParseResult ¶ added in v0.20231127.1171502
func (id *SandboxCustomImageId) FromParseResult(input resourceids.ParseResult) error
func (SandboxCustomImageId) ID ¶
func (id SandboxCustomImageId) ID() string
ID returns the formatted Sandbox Custom Image ID
func (SandboxCustomImageId) Segments ¶
func (id SandboxCustomImageId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Sandbox Custom Image ID
func (SandboxCustomImageId) String ¶
func (id SandboxCustomImageId) String() string
String returns a human-readable description of this Sandbox Custom Image ID
type SandboxCustomImageProperties ¶
type SandboxCustomImageProperties struct { Language Language `json:"language"` LanguageVersion string `json:"languageVersion"` ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"` RequirementsFileContent *string `json:"requirementsFileContent,omitempty"` }
type SandboxCustomImageType ¶
type SandboxCustomImageType string
const (
SandboxCustomImageTypeMicrosoftPointKustoClustersSandboxCustomImages SandboxCustomImageType = "Microsoft.Kusto/clusters/sandboxCustomImages"
)
func (*SandboxCustomImageType) UnmarshalJSON ¶ added in v0.20240112.1095456
func (s *SandboxCustomImageType) UnmarshalJSON(bytes []byte) error
type SandboxCustomImagesCheckNameRequest ¶
type SandboxCustomImagesCheckNameRequest struct { Name string `json:"name"` Type SandboxCustomImageType `json:"type"` }
type SandboxCustomImagesClient ¶
type SandboxCustomImagesClient struct {
Client *resourcemanager.Client
}
func NewSandboxCustomImagesClientWithBaseURI ¶
func NewSandboxCustomImagesClientWithBaseURI(sdkApi sdkEnv.Api) (*SandboxCustomImagesClient, error)
func (SandboxCustomImagesClient) CheckNameAvailability ¶
func (c SandboxCustomImagesClient) CheckNameAvailability(ctx context.Context, id commonids.KustoClusterId, input SandboxCustomImagesCheckNameRequest) (result CheckNameAvailabilityOperationResponse, err error)
CheckNameAvailability ...
func (SandboxCustomImagesClient) CreateOrUpdate ¶
func (c SandboxCustomImagesClient) CreateOrUpdate(ctx context.Context, id SandboxCustomImageId, input SandboxCustomImage) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (SandboxCustomImagesClient) CreateOrUpdateThenPoll ¶
func (c SandboxCustomImagesClient) CreateOrUpdateThenPoll(ctx context.Context, id SandboxCustomImageId, input SandboxCustomImage) error
CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed
func (SandboxCustomImagesClient) Delete ¶
func (c SandboxCustomImagesClient) Delete(ctx context.Context, id SandboxCustomImageId) (result DeleteOperationResponse, err error)
Delete ...
func (SandboxCustomImagesClient) DeleteThenPoll ¶
func (c SandboxCustomImagesClient) DeleteThenPoll(ctx context.Context, id SandboxCustomImageId) error
DeleteThenPoll performs Delete then polls until it's completed
func (SandboxCustomImagesClient) Get ¶
func (c SandboxCustomImagesClient) Get(ctx context.Context, id SandboxCustomImageId) (result GetOperationResponse, err error)
Get ...
func (SandboxCustomImagesClient) ListByCluster ¶
func (c SandboxCustomImagesClient) ListByCluster(ctx context.Context, id commonids.KustoClusterId) (result ListByClusterOperationResponse, err error)
ListByCluster ...
func (SandboxCustomImagesClient) Update ¶
func (c SandboxCustomImagesClient) Update(ctx context.Context, id SandboxCustomImageId, input SandboxCustomImage) (result UpdateOperationResponse, err error)
Update ...
func (SandboxCustomImagesClient) UpdateThenPoll ¶
func (c SandboxCustomImagesClient) UpdateThenPoll(ctx context.Context, id SandboxCustomImageId, input SandboxCustomImage) error
UpdateThenPoll performs Update then polls until it's completed
type SandboxCustomImagesListResult ¶
type SandboxCustomImagesListResult struct { NextLink *string `json:"nextLink,omitempty"` Value *[]SandboxCustomImage `json:"value,omitempty"` }
Source Files ¶
- client.go
- constants.go
- id_sandboxcustomimage.go
- method_checknameavailability.go
- method_createorupdate.go
- method_delete.go
- method_get.go
- method_listbycluster.go
- method_update.go
- model_checknameresult.go
- model_sandboxcustomimage.go
- model_sandboxcustomimageproperties.go
- model_sandboxcustomimageschecknamerequest.go
- model_sandboxcustomimageslistresult.go
- version.go