Documentation ¶
Index ¶
- func ValidateAccountID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateTrustedIdProviderID(input interface{}, key string) (warnings []string, errors []error)
- type AccountId
- type CreateOrUpdateOperationResponse
- type CreateOrUpdateTrustedIdProviderParameters
- type CreateOrUpdateTrustedIdProviderProperties
- type DeleteOperationResponse
- type GetOperationResponse
- type ListByAccountCompleteResult
- type ListByAccountOperationResponse
- type TrustedIdProvider
- type TrustedIdProviderId
- type TrustedIdProviderOperationPredicate
- type TrustedIdProviderProperties
- type TrustedIdProvidersClient
- func (c TrustedIdProvidersClient) CreateOrUpdate(ctx context.Context, id TrustedIdProviderId, ...) (result CreateOrUpdateOperationResponse, err error)
- func (c TrustedIdProvidersClient) Delete(ctx context.Context, id TrustedIdProviderId) (result DeleteOperationResponse, err error)
- func (c TrustedIdProvidersClient) Get(ctx context.Context, id TrustedIdProviderId) (result GetOperationResponse, err error)
- func (c TrustedIdProvidersClient) ListByAccount(ctx context.Context, id AccountId) (result ListByAccountOperationResponse, err error)
- func (c TrustedIdProvidersClient) ListByAccountComplete(ctx context.Context, id AccountId) (ListByAccountCompleteResult, error)
- func (c TrustedIdProvidersClient) ListByAccountCompleteMatchingPredicate(ctx context.Context, id AccountId, ...) (result ListByAccountCompleteResult, err error)
- func (c TrustedIdProvidersClient) Update(ctx context.Context, id TrustedIdProviderId, ...) (result UpdateOperationResponse, err error)
- type UpdateOperationResponse
- type UpdateTrustedIdProviderParameters
- type UpdateTrustedIdProviderProperties
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 ValidateTrustedIdProviderID ¶
ValidateTrustedIdProviderID checks that 'input' can be parsed as a Trusted Id Provider 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) FromParseResult ¶
func (id *AccountId) FromParseResult(input resourceids.ParseResult) error
func (AccountId) Segments ¶
func (id AccountId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Account ID
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *TrustedIdProvider }
type CreateOrUpdateTrustedIdProviderParameters ¶
type CreateOrUpdateTrustedIdProviderParameters struct {
Properties CreateOrUpdateTrustedIdProviderProperties `json:"properties"`
}
type CreateOrUpdateTrustedIdProviderProperties ¶
type CreateOrUpdateTrustedIdProviderProperties struct {
IdProvider string `json:"idProvider"`
}
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *TrustedIdProvider }
type ListByAccountCompleteResult ¶
type ListByAccountCompleteResult struct { LatestHttpResponse *http.Response Items []TrustedIdProvider }
type ListByAccountOperationResponse ¶
type ListByAccountOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]TrustedIdProvider }
type TrustedIdProvider ¶
type TrustedIdProvider struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *TrustedIdProviderProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type TrustedIdProviderId ¶
type TrustedIdProviderId struct { SubscriptionId string ResourceGroupName string AccountName string TrustedIdProviderName string }
TrustedIdProviderId is a struct representing the Resource ID for a Trusted Id Provider
func NewTrustedIdProviderID ¶
func NewTrustedIdProviderID(subscriptionId string, resourceGroupName string, accountName string, trustedIdProviderName string) TrustedIdProviderId
NewTrustedIdProviderID returns a new TrustedIdProviderId struct
func ParseTrustedIdProviderID ¶
func ParseTrustedIdProviderID(input string) (*TrustedIdProviderId, error)
ParseTrustedIdProviderID parses 'input' into a TrustedIdProviderId
func ParseTrustedIdProviderIDInsensitively ¶
func ParseTrustedIdProviderIDInsensitively(input string) (*TrustedIdProviderId, error)
ParseTrustedIdProviderIDInsensitively parses 'input' case-insensitively into a TrustedIdProviderId note: this method should only be used for API response data and not user input
func (*TrustedIdProviderId) FromParseResult ¶
func (id *TrustedIdProviderId) FromParseResult(input resourceids.ParseResult) error
func (TrustedIdProviderId) ID ¶
func (id TrustedIdProviderId) ID() string
ID returns the formatted Trusted Id Provider ID
func (TrustedIdProviderId) Segments ¶
func (id TrustedIdProviderId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Trusted Id Provider ID
func (TrustedIdProviderId) String ¶
func (id TrustedIdProviderId) String() string
String returns a human-readable description of this Trusted Id Provider ID
type TrustedIdProviderOperationPredicate ¶
func (TrustedIdProviderOperationPredicate) Matches ¶
func (p TrustedIdProviderOperationPredicate) Matches(input TrustedIdProvider) bool
type TrustedIdProviderProperties ¶
type TrustedIdProviderProperties struct {
IdProvider *string `json:"idProvider,omitempty"`
}
type TrustedIdProvidersClient ¶
type TrustedIdProvidersClient struct {
Client *resourcemanager.Client
}
func NewTrustedIdProvidersClientWithBaseURI ¶
func NewTrustedIdProvidersClientWithBaseURI(sdkApi sdkEnv.Api) (*TrustedIdProvidersClient, error)
func (TrustedIdProvidersClient) CreateOrUpdate ¶
func (c TrustedIdProvidersClient) CreateOrUpdate(ctx context.Context, id TrustedIdProviderId, input CreateOrUpdateTrustedIdProviderParameters) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (TrustedIdProvidersClient) Delete ¶
func (c TrustedIdProvidersClient) Delete(ctx context.Context, id TrustedIdProviderId) (result DeleteOperationResponse, err error)
Delete ...
func (TrustedIdProvidersClient) Get ¶
func (c TrustedIdProvidersClient) Get(ctx context.Context, id TrustedIdProviderId) (result GetOperationResponse, err error)
Get ...
func (TrustedIdProvidersClient) ListByAccount ¶
func (c TrustedIdProvidersClient) ListByAccount(ctx context.Context, id AccountId) (result ListByAccountOperationResponse, err error)
ListByAccount ...
func (TrustedIdProvidersClient) ListByAccountComplete ¶
func (c TrustedIdProvidersClient) ListByAccountComplete(ctx context.Context, id AccountId) (ListByAccountCompleteResult, error)
ListByAccountComplete retrieves all the results into a single object
func (TrustedIdProvidersClient) ListByAccountCompleteMatchingPredicate ¶
func (c TrustedIdProvidersClient) ListByAccountCompleteMatchingPredicate(ctx context.Context, id AccountId, predicate TrustedIdProviderOperationPredicate) (result ListByAccountCompleteResult, err error)
ListByAccountCompleteMatchingPredicate retrieves all the results and then applies the predicate
func (TrustedIdProvidersClient) Update ¶
func (c TrustedIdProvidersClient) Update(ctx context.Context, id TrustedIdProviderId, input UpdateTrustedIdProviderParameters) (result UpdateOperationResponse, err error)
Update ...
type UpdateOperationResponse ¶
type UpdateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *TrustedIdProvider }
type UpdateTrustedIdProviderParameters ¶
type UpdateTrustedIdProviderParameters struct {
Properties *UpdateTrustedIdProviderProperties `json:"properties,omitempty"`
}
type UpdateTrustedIdProviderProperties ¶
type UpdateTrustedIdProviderProperties struct {
IdProvider *string `json:"idProvider,omitempty"`
}
Source Files ¶
- client.go
- id_account.go
- id_trustedidprovider.go
- method_createorupdate.go
- method_delete.go
- method_get.go
- method_listbyaccount.go
- method_update.go
- model_createorupdatetrustedidproviderparameters.go
- model_createorupdatetrustedidproviderproperties.go
- model_trustedidprovider.go
- model_trustedidproviderproperties.go
- model_updatetrustedidproviderparameters.go
- model_updatetrustedidproviderproperties.go
- predicates.go
- version.go