Documentation ¶
Index ¶
- func ValidateAccountID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateCreatorID(input interface{}, key string) (warnings []string, errors []error)
- type AccountId
- type CreateOrUpdateResponse
- type Creator
- type CreatorId
- type CreatorPredicate
- type CreatorProperties
- type CreatorUpdateParameters
- type CreatorsClient
- func (c CreatorsClient) CreateOrUpdate(ctx context.Context, id CreatorId, input Creator) (result CreateOrUpdateResponse, err error)
- func (c CreatorsClient) Delete(ctx context.Context, id CreatorId) (result DeleteResponse, err error)
- func (c CreatorsClient) Get(ctx context.Context, id CreatorId) (result GetResponse, err error)
- func (c CreatorsClient) ListByAccount(ctx context.Context, id AccountId) (resp ListByAccountResponse, err error)
- func (c CreatorsClient) ListByAccountComplete(ctx context.Context, id AccountId) (ListByAccountCompleteResult, error)
- func (c CreatorsClient) ListByAccountCompleteMatchingPredicate(ctx context.Context, id AccountId, predicate CreatorPredicate) (resp ListByAccountCompleteResult, err error)
- func (c CreatorsClient) Update(ctx context.Context, id CreatorId, input CreatorUpdateParameters) (result UpdateResponse, err error)
- type DeleteResponse
- type GetResponse
- type ListByAccountCompleteResult
- type ListByAccountResponse
- type UpdateResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateAccountID ¶
ValidateAccountID checks that 'input' can be parsed as a Account ID
func ValidateCreatorID ¶
ValidateCreatorID checks that 'input' can be parsed as a Creator ID
Types ¶
type AccountId ¶
AccountId is a struct representing the Resource ID for a Account
func NewAccountID ¶
NewAccountID returns a new AccountId struct
func ParseAccountID ¶
ParseAccountID parses 'input' into a AccountId
func ParseAccountIDInsensitively ¶
ParseAccountIDInsensitively parses 'input' case-insensitively into a AccountId note: this method should only be used for API response data and not user input
func (AccountId) Segments ¶
func (id AccountId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Account ID
type CreateOrUpdateResponse ¶
type CreatorId ¶
type CreatorId struct { SubscriptionId string ResourceGroupName string AccountName string CreatorName string }
CreatorId is a struct representing the Resource ID for a Creator
func NewCreatorID ¶
func NewCreatorID(subscriptionId string, resourceGroupName string, accountName string, creatorName string) CreatorId
NewCreatorID returns a new CreatorId struct
func ParseCreatorID ¶
ParseCreatorID parses 'input' into a CreatorId
func ParseCreatorIDInsensitively ¶
ParseCreatorIDInsensitively parses 'input' case-insensitively into a CreatorId note: this method should only be used for API response data and not user input
func (CreatorId) Segments ¶
func (id CreatorId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Creator ID
type CreatorPredicate ¶
func (CreatorPredicate) Matches ¶
func (p CreatorPredicate) Matches(input Creator) bool
type CreatorProperties ¶
type CreatorUpdateParameters ¶
type CreatorUpdateParameters struct { Properties *CreatorProperties `json:"properties,omitempty"` Tags *map[string]string `json:"tags,omitempty"` }
type CreatorsClient ¶
func NewCreatorsClientWithBaseURI ¶
func NewCreatorsClientWithBaseURI(endpoint string) CreatorsClient
func (CreatorsClient) CreateOrUpdate ¶
func (c CreatorsClient) CreateOrUpdate(ctx context.Context, id CreatorId, input Creator) (result CreateOrUpdateResponse, err error)
CreateOrUpdate ...
func (CreatorsClient) Delete ¶
func (c CreatorsClient) Delete(ctx context.Context, id CreatorId) (result DeleteResponse, err error)
Delete ...
func (CreatorsClient) Get ¶
func (c CreatorsClient) Get(ctx context.Context, id CreatorId) (result GetResponse, err error)
Get ...
func (CreatorsClient) ListByAccount ¶
func (c CreatorsClient) ListByAccount(ctx context.Context, id AccountId) (resp ListByAccountResponse, err error)
ListByAccount ...
func (CreatorsClient) ListByAccountComplete ¶
func (c CreatorsClient) ListByAccountComplete(ctx context.Context, id AccountId) (ListByAccountCompleteResult, error)
ListByAccountComplete retrieves all of the results into a single object
func (CreatorsClient) ListByAccountCompleteMatchingPredicate ¶
func (c CreatorsClient) ListByAccountCompleteMatchingPredicate(ctx context.Context, id AccountId, predicate CreatorPredicate) (resp ListByAccountCompleteResult, err error)
ListByAccountCompleteMatchingPredicate retrieves all of the results and then applied the predicate
func (CreatorsClient) Update ¶
func (c CreatorsClient) Update(ctx context.Context, id CreatorId, input CreatorUpdateParameters) (result UpdateResponse, err error)
Update ...
type DeleteResponse ¶
type GetResponse ¶
type ListByAccountCompleteResult ¶
type ListByAccountCompleteResult struct {
Items []Creator
}
type ListByAccountResponse ¶
type ListByAccountResponse struct { HttpResponse *http.Response Model *[]Creator // contains filtered or unexported fields }
func (ListByAccountResponse) HasMore ¶
func (r ListByAccountResponse) HasMore() bool
func (ListByAccountResponse) LoadMore ¶
func (r ListByAccountResponse) LoadMore(ctx context.Context) (resp ListByAccountResponse, err error)