Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CapabilityInformation ¶
type CapabilityInformation struct { AccountCount *int64 `json:"accountCount,omitempty"` MaxAccountCount *int64 `json:"maxAccountCount,omitempty"` MigrationState *bool `json:"migrationState,omitempty"` State *SubscriptionState `json:"state,omitempty"` SubscriptionId *string `json:"subscriptionId,omitempty"` }
type GetCapabilityResponse ¶
type GetCapabilityResponse struct { HttpResponse *http.Response Model *CapabilityInformation }
type LocationId ¶
func NewLocationID ¶
func NewLocationID(subscriptionId, name string) LocationId
func ParseLocationID ¶
func ParseLocationID(input string) (*LocationId, error)
ParseLocationID parses a Location ID into an LocationId struct
func ParseLocationIDInsensitively ¶
func ParseLocationIDInsensitively(input string) (*LocationId, error)
ParseLocationIDInsensitively parses an Location ID into an LocationId struct, insensitively This should only be used to parse an ID for rewriting to a consistent casing, the ParseLocationID method should be used instead for validation etc.
func (LocationId) ID ¶
func (id LocationId) ID() string
func (LocationId) String ¶
func (id LocationId) String() string
type LocationsClient ¶
func NewLocationsClientWithBaseURI ¶
func NewLocationsClientWithBaseURI(endpoint string) LocationsClient
func (LocationsClient) GetCapability ¶
func (c LocationsClient) GetCapability(ctx context.Context, id LocationId) (result GetCapabilityResponse, err error)
GetCapability ...
type SubscriptionState ¶
type SubscriptionState string
const ( SubscriptionStateDeleted SubscriptionState = "Deleted" SubscriptionStateRegistered SubscriptionState = "Registered" SubscriptionStateSuspended SubscriptionState = "Suspended" SubscriptionStateUnregistered SubscriptionState = "Unregistered" SubscriptionStateWarned SubscriptionState = "Warned" )
Click to show internal directories.
Click to hide internal directories.