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 CreateOrUpdateResponse
- type CreateOrUpdateTrustedIdProviderParameters
- type CreateOrUpdateTrustedIdProviderProperties
- type DeleteResponse
- type GetResponse
- type ListByAccountCompleteResult
- type ListByAccountResponse
- type TrustedIdProvider
- type TrustedIdProviderId
- type TrustedIdProviderPredicate
- type TrustedIdProviderProperties
- type TrustedIdProvidersClient
- func (c TrustedIdProvidersClient) CreateOrUpdate(ctx context.Context, id TrustedIdProviderId, ...) (result CreateOrUpdateResponse, err error)
- func (c TrustedIdProvidersClient) Delete(ctx context.Context, id TrustedIdProviderId) (result DeleteResponse, err error)
- func (c TrustedIdProvidersClient) Get(ctx context.Context, id TrustedIdProviderId) (result GetResponse, err error)
- func (c TrustedIdProvidersClient) ListByAccount(ctx context.Context, id AccountId) (resp ListByAccountResponse, err error)
- func (c TrustedIdProvidersClient) ListByAccountComplete(ctx context.Context, id AccountId) (ListByAccountCompleteResult, error)
- func (c TrustedIdProvidersClient) ListByAccountCompleteMatchingPredicate(ctx context.Context, id AccountId, predicate TrustedIdProviderPredicate) (resp ListByAccountCompleteResult, err error)
- func (c TrustedIdProvidersClient) Update(ctx context.Context, id TrustedIdProviderId, ...) (result UpdateResponse, err error)
- type UpdateResponse
- 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) Segments ¶
func (id AccountId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Account ID
type CreateOrUpdateResponse ¶
type CreateOrUpdateResponse struct { HttpResponse *http.Response Model *TrustedIdProvider }
type CreateOrUpdateTrustedIdProviderParameters ¶
type CreateOrUpdateTrustedIdProviderParameters struct {
Properties CreateOrUpdateTrustedIdProviderProperties `json:"properties"`
}
type CreateOrUpdateTrustedIdProviderProperties ¶
type CreateOrUpdateTrustedIdProviderProperties struct {
IdProvider string `json:"idProvider"`
}
type DeleteResponse ¶
type GetResponse ¶
type GetResponse struct { HttpResponse *http.Response Model *TrustedIdProvider }
type ListByAccountCompleteResult ¶
type ListByAccountCompleteResult struct {
Items []TrustedIdProvider
}
type ListByAccountResponse ¶
type ListByAccountResponse struct { HttpResponse *http.Response Model *[]TrustedIdProvider // 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)
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) 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 TrustedIdProviderPredicate ¶
func (TrustedIdProviderPredicate) Matches ¶
func (p TrustedIdProviderPredicate) Matches(input TrustedIdProvider) bool
type TrustedIdProviderProperties ¶
type TrustedIdProviderProperties struct {
IdProvider *string `json:"idProvider,omitempty"`
}
type TrustedIdProvidersClient ¶
type TrustedIdProvidersClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewTrustedIdProvidersClientWithBaseURI ¶
func NewTrustedIdProvidersClientWithBaseURI(endpoint string) TrustedIdProvidersClient
func (TrustedIdProvidersClient) CreateOrUpdate ¶
func (c TrustedIdProvidersClient) CreateOrUpdate(ctx context.Context, id TrustedIdProviderId, input CreateOrUpdateTrustedIdProviderParameters) (result CreateOrUpdateResponse, err error)
CreateOrUpdate ...
func (TrustedIdProvidersClient) Delete ¶
func (c TrustedIdProvidersClient) Delete(ctx context.Context, id TrustedIdProviderId) (result DeleteResponse, err error)
Delete ...
func (TrustedIdProvidersClient) Get ¶
func (c TrustedIdProvidersClient) Get(ctx context.Context, id TrustedIdProviderId) (result GetResponse, err error)
Get ...
func (TrustedIdProvidersClient) ListByAccount ¶
func (c TrustedIdProvidersClient) ListByAccount(ctx context.Context, id AccountId) (resp ListByAccountResponse, err error)
ListByAccount ...
func (TrustedIdProvidersClient) ListByAccountComplete ¶
func (c TrustedIdProvidersClient) ListByAccountComplete(ctx context.Context, id AccountId) (ListByAccountCompleteResult, error)
ListByAccountComplete retrieves all of the results into a single object
func (TrustedIdProvidersClient) ListByAccountCompleteMatchingPredicate ¶
func (c TrustedIdProvidersClient) ListByAccountCompleteMatchingPredicate(ctx context.Context, id AccountId, predicate TrustedIdProviderPredicate) (resp ListByAccountCompleteResult, err error)
ListByAccountCompleteMatchingPredicate retrieves all of the results and then applied the predicate
func (TrustedIdProvidersClient) Update ¶
func (c TrustedIdProvidersClient) Update(ctx context.Context, id TrustedIdProviderId, input UpdateTrustedIdProviderParameters) (result UpdateResponse, err error)
Update ...
type UpdateResponse ¶
type UpdateResponse struct { HttpResponse *http.Response 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_autorest.go
- method_delete_autorest.go
- method_get_autorest.go
- method_listbyaccount_autorest.go
- method_update_autorest.go
- model_createorupdatetrustedidproviderparameters.go
- model_createorupdatetrustedidproviderproperties.go
- model_trustedidprovider.go
- model_trustedidproviderproperties.go
- model_updatetrustedidproviderparameters.go
- model_updatetrustedidproviderproperties.go
- predicates.go
- version.go