Documentation ¶
Index ¶
- func ValidateApiID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateReleaseID(input interface{}, key string) (warnings []string, errors []error)
- type ApiId
- type ApiReleaseClient
- func (c ApiReleaseClient) CreateOrUpdate(ctx context.Context, id ReleaseId, input ApiReleaseContract, ...) (result CreateOrUpdateOperationResponse, err error)
- func (c ApiReleaseClient) Delete(ctx context.Context, id ReleaseId, options DeleteOperationOptions) (result DeleteOperationResponse, err error)
- func (c ApiReleaseClient) Get(ctx context.Context, id ReleaseId) (result GetOperationResponse, err error)
- func (c ApiReleaseClient) GetEntityTag(ctx context.Context, id ReleaseId) (result GetEntityTagOperationResponse, err error)
- func (c ApiReleaseClient) ListByService(ctx context.Context, id ApiId, options ListByServiceOperationOptions) (result ListByServiceOperationResponse, err error)
- func (c ApiReleaseClient) ListByServiceComplete(ctx context.Context, id ApiId, options ListByServiceOperationOptions) (ListByServiceCompleteResult, error)
- func (c ApiReleaseClient) ListByServiceCompleteMatchingPredicate(ctx context.Context, id ApiId, options ListByServiceOperationOptions, ...) (result ListByServiceCompleteResult, err error)
- func (c ApiReleaseClient) Update(ctx context.Context, id ReleaseId, input ApiReleaseContract, ...) (result UpdateOperationResponse, err error)
- type ApiReleaseContract
- type ApiReleaseContractOperationPredicate
- type ApiReleaseContractProperties
- func (o *ApiReleaseContractProperties) GetCreatedDateTimeAsTime() (*time.Time, error)
- func (o *ApiReleaseContractProperties) GetUpdatedDateTimeAsTime() (*time.Time, error)
- func (o *ApiReleaseContractProperties) SetCreatedDateTimeAsTime(input time.Time)
- func (o *ApiReleaseContractProperties) SetUpdatedDateTimeAsTime(input time.Time)
- type CreateOrUpdateOperationOptions
- type CreateOrUpdateOperationResponse
- type DeleteOperationOptions
- type DeleteOperationResponse
- type GetEntityTagOperationResponse
- type GetOperationResponse
- type ListByServiceCompleteResult
- type ListByServiceOperationOptions
- type ListByServiceOperationResponse
- type ReleaseId
- type UpdateOperationOptions
- type UpdateOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateApiID ¶
ValidateApiID checks that 'input' can be parsed as a Api ID
func ValidateReleaseID ¶
ValidateReleaseID checks that 'input' can be parsed as a Release ID
Types ¶
type ApiId ¶
type ApiId struct { SubscriptionId string ResourceGroupName string ServiceName string ApiId string }
ApiId is a struct representing the Resource ID for a Api
func NewApiID ¶
func NewApiID(subscriptionId string, resourceGroupName string, serviceName string, apiId string) ApiId
NewApiID returns a new ApiId struct
func ParseApiID ¶
ParseApiID parses 'input' into a ApiId
func ParseApiIDInsensitively ¶
ParseApiIDInsensitively parses 'input' case-insensitively into a ApiId note: this method should only be used for API response data and not user input
func (*ApiId) FromParseResult ¶ added in v0.20231127.1171502
func (id *ApiId) FromParseResult(input resourceids.ParseResult) error
func (ApiId) Segments ¶
func (id ApiId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Api ID
type ApiReleaseClient ¶
type ApiReleaseClient struct {
Client *resourcemanager.Client
}
func NewApiReleaseClientWithBaseURI ¶
func NewApiReleaseClientWithBaseURI(sdkApi sdkEnv.Api) (*ApiReleaseClient, error)
func (ApiReleaseClient) CreateOrUpdate ¶
func (c ApiReleaseClient) CreateOrUpdate(ctx context.Context, id ReleaseId, input ApiReleaseContract, options CreateOrUpdateOperationOptions) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ApiReleaseClient) Delete ¶
func (c ApiReleaseClient) Delete(ctx context.Context, id ReleaseId, options DeleteOperationOptions) (result DeleteOperationResponse, err error)
Delete ...
func (ApiReleaseClient) Get ¶
func (c ApiReleaseClient) Get(ctx context.Context, id ReleaseId) (result GetOperationResponse, err error)
Get ...
func (ApiReleaseClient) GetEntityTag ¶
func (c ApiReleaseClient) GetEntityTag(ctx context.Context, id ReleaseId) (result GetEntityTagOperationResponse, err error)
GetEntityTag ...
func (ApiReleaseClient) ListByService ¶
func (c ApiReleaseClient) ListByService(ctx context.Context, id ApiId, options ListByServiceOperationOptions) (result ListByServiceOperationResponse, err error)
ListByService ...
func (ApiReleaseClient) ListByServiceComplete ¶
func (c ApiReleaseClient) ListByServiceComplete(ctx context.Context, id ApiId, options ListByServiceOperationOptions) (ListByServiceCompleteResult, error)
ListByServiceComplete retrieves all the results into a single object
func (ApiReleaseClient) ListByServiceCompleteMatchingPredicate ¶
func (c ApiReleaseClient) ListByServiceCompleteMatchingPredicate(ctx context.Context, id ApiId, options ListByServiceOperationOptions, predicate ApiReleaseContractOperationPredicate) (result ListByServiceCompleteResult, err error)
ListByServiceCompleteMatchingPredicate retrieves all the results and then applies the predicate
func (ApiReleaseClient) Update ¶
func (c ApiReleaseClient) Update(ctx context.Context, id ReleaseId, input ApiReleaseContract, options UpdateOperationOptions) (result UpdateOperationResponse, err error)
Update ...
type ApiReleaseContract ¶
type ApiReleaseContract struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *ApiReleaseContractProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type ApiReleaseContractOperationPredicate ¶
func (ApiReleaseContractOperationPredicate) Matches ¶
func (p ApiReleaseContractOperationPredicate) Matches(input ApiReleaseContract) bool
type ApiReleaseContractProperties ¶
type ApiReleaseContractProperties struct { ApiId *string `json:"apiId,omitempty"` CreatedDateTime *string `json:"createdDateTime,omitempty"` Notes *string `json:"notes,omitempty"` UpdatedDateTime *string `json:"updatedDateTime,omitempty"` }
func (*ApiReleaseContractProperties) GetCreatedDateTimeAsTime ¶
func (o *ApiReleaseContractProperties) GetCreatedDateTimeAsTime() (*time.Time, error)
func (*ApiReleaseContractProperties) GetUpdatedDateTimeAsTime ¶
func (o *ApiReleaseContractProperties) GetUpdatedDateTimeAsTime() (*time.Time, error)
func (*ApiReleaseContractProperties) SetCreatedDateTimeAsTime ¶
func (o *ApiReleaseContractProperties) SetCreatedDateTimeAsTime(input time.Time)
func (*ApiReleaseContractProperties) SetUpdatedDateTimeAsTime ¶
func (o *ApiReleaseContractProperties) SetUpdatedDateTimeAsTime(input time.Time)
type CreateOrUpdateOperationOptions ¶
type CreateOrUpdateOperationOptions struct {
IfMatch *string
}
func DefaultCreateOrUpdateOperationOptions ¶
func DefaultCreateOrUpdateOperationOptions() CreateOrUpdateOperationOptions
func (CreateOrUpdateOperationOptions) ToHeaders ¶ added in v0.20230801.1071415
func (o CreateOrUpdateOperationOptions) ToHeaders() *client.Headers
func (CreateOrUpdateOperationOptions) ToOData ¶ added in v0.20230801.1071415
func (o CreateOrUpdateOperationOptions) ToOData() *odata.Query
func (CreateOrUpdateOperationOptions) ToQuery ¶ added in v0.20230801.1071415
func (o CreateOrUpdateOperationOptions) ToQuery() *client.QueryParams
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *ApiReleaseContract }
type DeleteOperationOptions ¶
type DeleteOperationOptions struct {
IfMatch *string
}
func DefaultDeleteOperationOptions ¶
func DefaultDeleteOperationOptions() DeleteOperationOptions
func (DeleteOperationOptions) ToHeaders ¶ added in v0.20230801.1071415
func (o DeleteOperationOptions) ToHeaders() *client.Headers
func (DeleteOperationOptions) ToOData ¶ added in v0.20230801.1071415
func (o DeleteOperationOptions) ToOData() *odata.Query
func (DeleteOperationOptions) ToQuery ¶ added in v0.20230801.1071415
func (o DeleteOperationOptions) ToQuery() *client.QueryParams
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *ApiReleaseContract }
type ListByServiceCompleteResult ¶
type ListByServiceCompleteResult struct {
Items []ApiReleaseContract
}
type ListByServiceOperationOptions ¶
func DefaultListByServiceOperationOptions ¶
func DefaultListByServiceOperationOptions() ListByServiceOperationOptions
func (ListByServiceOperationOptions) ToHeaders ¶ added in v0.20230801.1071415
func (o ListByServiceOperationOptions) ToHeaders() *client.Headers
func (ListByServiceOperationOptions) ToOData ¶ added in v0.20230801.1071415
func (o ListByServiceOperationOptions) ToOData() *odata.Query
func (ListByServiceOperationOptions) ToQuery ¶ added in v0.20230801.1071415
func (o ListByServiceOperationOptions) ToQuery() *client.QueryParams
type ListByServiceOperationResponse ¶
type ListByServiceOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]ApiReleaseContract }
type ReleaseId ¶
type ReleaseId struct { SubscriptionId string ResourceGroupName string ServiceName string ApiId string ReleaseId string }
ReleaseId is a struct representing the Resource ID for a Release
func NewReleaseID ¶
func NewReleaseID(subscriptionId string, resourceGroupName string, serviceName string, apiId string, releaseId string) ReleaseId
NewReleaseID returns a new ReleaseId struct
func ParseReleaseID ¶
ParseReleaseID parses 'input' into a ReleaseId
func ParseReleaseIDInsensitively ¶
ParseReleaseIDInsensitively parses 'input' case-insensitively into a ReleaseId note: this method should only be used for API response data and not user input
func (*ReleaseId) FromParseResult ¶ added in v0.20231127.1171502
func (id *ReleaseId) FromParseResult(input resourceids.ParseResult) error
func (ReleaseId) Segments ¶
func (id ReleaseId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Release ID
type UpdateOperationOptions ¶
type UpdateOperationOptions struct {
IfMatch *string
}
func DefaultUpdateOperationOptions ¶
func DefaultUpdateOperationOptions() UpdateOperationOptions
func (UpdateOperationOptions) ToHeaders ¶ added in v0.20230801.1071415
func (o UpdateOperationOptions) ToHeaders() *client.Headers
func (UpdateOperationOptions) ToOData ¶ added in v0.20230801.1071415
func (o UpdateOperationOptions) ToOData() *odata.Query
func (UpdateOperationOptions) ToQuery ¶ added in v0.20230801.1071415
func (o UpdateOperationOptions) ToQuery() *client.QueryParams
type UpdateOperationResponse ¶
type UpdateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *ApiReleaseContract }