Documentation ¶
Index ¶
- func ValidateApplicationTypeID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateVersionID(input interface{}, key string) (warnings []string, errors []error)
- type ApplicationTypeId
- type ApplicationTypeVersionClient
- func (c ApplicationTypeVersionClient) CreateOrUpdate(ctx context.Context, id VersionId, input ApplicationTypeVersionResource) (result CreateOrUpdateOperationResponse, err error)
- func (c ApplicationTypeVersionClient) CreateOrUpdateThenPoll(ctx context.Context, id VersionId, input ApplicationTypeVersionResource) error
- func (c ApplicationTypeVersionClient) Delete(ctx context.Context, id VersionId) (result DeleteOperationResponse, err error)
- func (c ApplicationTypeVersionClient) DeleteThenPoll(ctx context.Context, id VersionId) error
- func (c ApplicationTypeVersionClient) Get(ctx context.Context, id VersionId) (result GetOperationResponse, err error)
- func (c ApplicationTypeVersionClient) List(ctx context.Context, id ApplicationTypeId) (result ListOperationResponse, err error)
- type ApplicationTypeVersionResource
- type ApplicationTypeVersionResourceList
- type ApplicationTypeVersionResourceProperties
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type ListOperationResponse
- type SystemData
- type VersionId
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateApplicationTypeID ¶
ValidateApplicationTypeID checks that 'input' can be parsed as a Application Type ID
func ValidateVersionID ¶
ValidateVersionID checks that 'input' can be parsed as a Version ID
Types ¶
type ApplicationTypeId ¶
type ApplicationTypeId struct { SubscriptionId string ResourceGroupName string ClusterName string ApplicationTypeName string }
ApplicationTypeId is a struct representing the Resource ID for a Application Type
func NewApplicationTypeID ¶
func NewApplicationTypeID(subscriptionId string, resourceGroupName string, clusterName string, applicationTypeName string) ApplicationTypeId
NewApplicationTypeID returns a new ApplicationTypeId struct
func ParseApplicationTypeID ¶
func ParseApplicationTypeID(input string) (*ApplicationTypeId, error)
ParseApplicationTypeID parses 'input' into a ApplicationTypeId
func ParseApplicationTypeIDInsensitively ¶
func ParseApplicationTypeIDInsensitively(input string) (*ApplicationTypeId, error)
ParseApplicationTypeIDInsensitively parses 'input' case-insensitively into a ApplicationTypeId note: this method should only be used for API response data and not user input
func (ApplicationTypeId) ID ¶
func (id ApplicationTypeId) ID() string
ID returns the formatted Application Type ID
func (ApplicationTypeId) Segments ¶
func (id ApplicationTypeId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Application Type ID
func (ApplicationTypeId) String ¶
func (id ApplicationTypeId) String() string
String returns a human-readable description of this Application Type ID
type ApplicationTypeVersionClient ¶
type ApplicationTypeVersionClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewApplicationTypeVersionClientWithBaseURI ¶
func NewApplicationTypeVersionClientWithBaseURI(endpoint string) ApplicationTypeVersionClient
func (ApplicationTypeVersionClient) CreateOrUpdate ¶
func (c ApplicationTypeVersionClient) CreateOrUpdate(ctx context.Context, id VersionId, input ApplicationTypeVersionResource) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ApplicationTypeVersionClient) CreateOrUpdateThenPoll ¶
func (c ApplicationTypeVersionClient) CreateOrUpdateThenPoll(ctx context.Context, id VersionId, input ApplicationTypeVersionResource) error
CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed
func (ApplicationTypeVersionClient) Delete ¶
func (c ApplicationTypeVersionClient) Delete(ctx context.Context, id VersionId) (result DeleteOperationResponse, err error)
Delete ...
func (ApplicationTypeVersionClient) DeleteThenPoll ¶
func (c ApplicationTypeVersionClient) DeleteThenPoll(ctx context.Context, id VersionId) error
DeleteThenPoll performs Delete then polls until it's completed
func (ApplicationTypeVersionClient) Get ¶
func (c ApplicationTypeVersionClient) Get(ctx context.Context, id VersionId) (result GetOperationResponse, err error)
Get ...
func (ApplicationTypeVersionClient) List ¶
func (c ApplicationTypeVersionClient) List(ctx context.Context, id ApplicationTypeId) (result ListOperationResponse, err error)
List ...
type ApplicationTypeVersionResource ¶
type ApplicationTypeVersionResource struct { Etag *string `json:"etag,omitempty"` Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Properties *ApplicationTypeVersionResourceProperties `json:"properties,omitempty"` SystemData *SystemData `json:"systemData,omitempty"` Tags *map[string]string `json:"tags,omitempty"` Type *string `json:"type,omitempty"` }
type ApplicationTypeVersionResourceList ¶
type ApplicationTypeVersionResourceList struct { NextLink *string `json:"nextLink,omitempty"` Value *[]ApplicationTypeVersionResource `json:"value,omitempty"` }
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response }
type DeleteOperationResponse ¶
type DeleteOperationResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response }
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response Model *ApplicationTypeVersionResource }
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response Model *ApplicationTypeVersionResourceList }
type SystemData ¶
type SystemData struct { CreatedAt *string `json:"createdAt,omitempty"` CreatedBy *string `json:"createdBy,omitempty"` CreatedByType *string `json:"createdByType,omitempty"` LastModifiedAt *string `json:"lastModifiedAt,omitempty"` LastModifiedBy *string `json:"lastModifiedBy,omitempty"` LastModifiedByType *string `json:"lastModifiedByType,omitempty"` }
func (*SystemData) GetCreatedAtAsTime ¶
func (o *SystemData) GetCreatedAtAsTime() (*time.Time, error)
func (*SystemData) GetLastModifiedAtAsTime ¶
func (o *SystemData) GetLastModifiedAtAsTime() (*time.Time, error)
func (*SystemData) SetCreatedAtAsTime ¶
func (o *SystemData) SetCreatedAtAsTime(input time.Time)
func (*SystemData) SetLastModifiedAtAsTime ¶
func (o *SystemData) SetLastModifiedAtAsTime(input time.Time)
type VersionId ¶
type VersionId struct { SubscriptionId string ResourceGroupName string ClusterName string ApplicationTypeName string VersionName string }
VersionId is a struct representing the Resource ID for a Version
func NewVersionID ¶
func NewVersionID(subscriptionId string, resourceGroupName string, clusterName string, applicationTypeName string, versionName string) VersionId
NewVersionID returns a new VersionId struct
func ParseVersionID ¶
ParseVersionID parses 'input' into a VersionId
func ParseVersionIDInsensitively ¶
ParseVersionIDInsensitively parses 'input' case-insensitively into a VersionId note: this method should only be used for API response data and not user input
func (VersionId) Segments ¶
func (id VersionId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Version ID
Source Files ¶
- client.go
- id_applicationtype.go
- id_version.go
- method_createorupdate_autorest.go
- method_delete_autorest.go
- method_get_autorest.go
- method_list_autorest.go
- model_applicationtypeversionresource.go
- model_applicationtypeversionresourcelist.go
- model_applicationtypeversionresourceproperties.go
- model_systemdata.go
- version.go