Documentation
¶
Index ¶
- 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 ¶
This section is empty.
Types ¶
type AccountId ¶
func NewAccountID ¶
func ParseAccountID ¶
ParseAccountID parses a Account ID into an AccountId struct
func ParseAccountIDInsensitively ¶
ParseAccountIDInsensitively parses an Account ID into an AccountId struct, insensitively This should only be used to parse an ID for rewriting to a consistent casing, the ParseAccountID method should be used instead for validation etc.
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 ResourceGroup string AccountName string Name string }
func NewTrustedIdProviderID ¶
func NewTrustedIdProviderID(subscriptionId, resourceGroup, accountName, name string) TrustedIdProviderId
func ParseTrustedIdProviderID ¶
func ParseTrustedIdProviderID(input string) (*TrustedIdProviderId, error)
ParseTrustedIdProviderID parses a TrustedIdProvider ID into an TrustedIdProviderId struct
func ParseTrustedIdProviderIDInsensitively ¶
func ParseTrustedIdProviderIDInsensitively(input string) (*TrustedIdProviderId, error)
ParseTrustedIdProviderIDInsensitively parses an TrustedIdProvider ID into an TrustedIdProviderId struct, insensitively This should only be used to parse an ID for rewriting to a consistent casing, the ParseTrustedIdProviderID method should be used instead for validation etc.
func (TrustedIdProviderId) ID ¶
func (id TrustedIdProviderId) ID() string
func (TrustedIdProviderId) String ¶
func (id TrustedIdProviderId) String() string
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