Documentation ¶
Index ¶
- func ValidateApplicationTypeID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateManagedClusterID(input interface{}, key string) (warnings []string, errors []error)
- type ApplicationTypeClient
- func (c ApplicationTypeClient) CreateOrUpdate(ctx context.Context, id ApplicationTypeId, input ApplicationTypeResource) (result CreateOrUpdateOperationResponse, err error)
- func (c ApplicationTypeClient) Delete(ctx context.Context, id ApplicationTypeId) (result DeleteOperationResponse, err error)
- func (c ApplicationTypeClient) DeleteThenPoll(ctx context.Context, id ApplicationTypeId) error
- func (c ApplicationTypeClient) Get(ctx context.Context, id ApplicationTypeId) (result GetOperationResponse, err error)
- func (c ApplicationTypeClient) List(ctx context.Context, id ManagedClusterId) (resp ListOperationResponse, err error)
- func (c ApplicationTypeClient) ListComplete(ctx context.Context, id ManagedClusterId) (ListCompleteResult, error)
- func (c ApplicationTypeClient) ListCompleteMatchingPredicate(ctx context.Context, id ManagedClusterId, ...) (resp ListCompleteResult, err error)
- func (c ApplicationTypeClient) Update(ctx context.Context, id ApplicationTypeId, ...) (result UpdateOperationResponse, err error)
- type ApplicationTypeId
- type ApplicationTypeResource
- type ApplicationTypeResourceOperationPredicate
- type ApplicationTypeResourceProperties
- type ApplicationTypeUpdateParameters
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type ListCompleteResult
- type ListOperationResponse
- type ManagedClusterId
- type SystemData
- type UpdateOperationResponse
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 ValidateManagedClusterID ¶
ValidateManagedClusterID checks that 'input' can be parsed as a Managed Cluster ID
Types ¶
type ApplicationTypeClient ¶
type ApplicationTypeClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewApplicationTypeClientWithBaseURI ¶
func NewApplicationTypeClientWithBaseURI(endpoint string) ApplicationTypeClient
func (ApplicationTypeClient) CreateOrUpdate ¶
func (c ApplicationTypeClient) CreateOrUpdate(ctx context.Context, id ApplicationTypeId, input ApplicationTypeResource) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ApplicationTypeClient) Delete ¶
func (c ApplicationTypeClient) Delete(ctx context.Context, id ApplicationTypeId) (result DeleteOperationResponse, err error)
Delete ...
func (ApplicationTypeClient) DeleteThenPoll ¶
func (c ApplicationTypeClient) DeleteThenPoll(ctx context.Context, id ApplicationTypeId) error
DeleteThenPoll performs Delete then polls until it's completed
func (ApplicationTypeClient) Get ¶
func (c ApplicationTypeClient) Get(ctx context.Context, id ApplicationTypeId) (result GetOperationResponse, err error)
Get ...
func (ApplicationTypeClient) List ¶
func (c ApplicationTypeClient) List(ctx context.Context, id ManagedClusterId) (resp ListOperationResponse, err error)
List ...
func (ApplicationTypeClient) ListComplete ¶
func (c ApplicationTypeClient) ListComplete(ctx context.Context, id ManagedClusterId) (ListCompleteResult, error)
ListComplete retrieves all of the results into a single object
func (ApplicationTypeClient) ListCompleteMatchingPredicate ¶
func (c ApplicationTypeClient) ListCompleteMatchingPredicate(ctx context.Context, id ManagedClusterId, predicate ApplicationTypeResourceOperationPredicate) (resp ListCompleteResult, err error)
ListCompleteMatchingPredicate retrieves all of the results and then applied the predicate
func (ApplicationTypeClient) Update ¶
func (c ApplicationTypeClient) Update(ctx context.Context, id ApplicationTypeId, input ApplicationTypeUpdateParameters) (result UpdateOperationResponse, err error)
Update ...
type ApplicationTypeId ¶
type ApplicationTypeId struct { SubscriptionId string ResourceGroupName string ManagedClusterName string ApplicationTypeName string }
ApplicationTypeId is a struct representing the Resource ID for a Application Type
func NewApplicationTypeID ¶
func NewApplicationTypeID(subscriptionId string, resourceGroupName string, managedClusterName 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 ApplicationTypeResource ¶
type ApplicationTypeResource struct { Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Properties *ApplicationTypeResourceProperties `json:"properties,omitempty"` SystemData *SystemData `json:"systemData,omitempty"` Tags *map[string]string `json:"tags,omitempty"` Type *string `json:"type,omitempty"` }
type ApplicationTypeResourceOperationPredicate ¶
type ApplicationTypeResourceOperationPredicate struct { Id *string Location *string Name *string Type *string }
func (ApplicationTypeResourceOperationPredicate) Matches ¶
func (p ApplicationTypeResourceOperationPredicate) Matches(input ApplicationTypeResource) bool
type ApplicationTypeResourceProperties ¶
type ApplicationTypeResourceProperties struct {
ProvisioningState *string `json:"provisioningState,omitempty"`
}
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response Model *ApplicationTypeResource }
type DeleteOperationResponse ¶
type DeleteOperationResponse struct { Poller polling.LongRunningPoller HttpResponse *http.Response }
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response Model *ApplicationTypeResource }
type ListCompleteResult ¶
type ListCompleteResult struct {
Items []ApplicationTypeResource
}
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response Model *[]ApplicationTypeResource // contains filtered or unexported fields }
func (ListOperationResponse) HasMore ¶
func (r ListOperationResponse) HasMore() bool
func (ListOperationResponse) LoadMore ¶
func (r ListOperationResponse) LoadMore(ctx context.Context) (resp ListOperationResponse, err error)
type ManagedClusterId ¶
type ManagedClusterId struct { SubscriptionId string ResourceGroupName string ManagedClusterName string }
ManagedClusterId is a struct representing the Resource ID for a Managed Cluster
func NewManagedClusterID ¶
func NewManagedClusterID(subscriptionId string, resourceGroupName string, managedClusterName string) ManagedClusterId
NewManagedClusterID returns a new ManagedClusterId struct
func ParseManagedClusterID ¶
func ParseManagedClusterID(input string) (*ManagedClusterId, error)
ParseManagedClusterID parses 'input' into a ManagedClusterId
func ParseManagedClusterIDInsensitively ¶
func ParseManagedClusterIDInsensitively(input string) (*ManagedClusterId, error)
ParseManagedClusterIDInsensitively parses 'input' case-insensitively into a ManagedClusterId note: this method should only be used for API response data and not user input
func (ManagedClusterId) ID ¶
func (id ManagedClusterId) ID() string
ID returns the formatted Managed Cluster ID
func (ManagedClusterId) Segments ¶
func (id ManagedClusterId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Managed Cluster ID
func (ManagedClusterId) String ¶
func (id ManagedClusterId) String() string
String returns a human-readable description of this Managed Cluster ID
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 UpdateOperationResponse ¶
type UpdateOperationResponse struct { HttpResponse *http.Response Model *ApplicationTypeResource }
Source Files ¶
- client.go
- id_applicationtype.go
- id_managedcluster.go
- method_createorupdate_autorest.go
- method_delete_autorest.go
- method_get_autorest.go
- method_list_autorest.go
- method_update_autorest.go
- model_applicationtyperesource.go
- model_applicationtyperesourceproperties.go
- model_applicationtypeupdateparameters.go
- model_systemdata.go
- predicates.go
- version.go