Documentation ¶
Index ¶
- func PossibleValuesForProvisioningState() []string
- func ValidateSimGroupID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type IdentityAndTagsObject
- type KeyVaultKey
- type MobileNetworkResourceId
- type ProvisioningState
- type SIMGroupClient
- func (c SIMGroupClient) CreateOrUpdate(ctx context.Context, id SimGroupId, input SimGroup) (result CreateOrUpdateOperationResponse, err error)
- func (c SIMGroupClient) CreateOrUpdateThenPoll(ctx context.Context, id SimGroupId, input SimGroup) error
- func (c SIMGroupClient) Delete(ctx context.Context, id SimGroupId) (result DeleteOperationResponse, err error)
- func (c SIMGroupClient) DeleteThenPoll(ctx context.Context, id SimGroupId) error
- func (c SIMGroupClient) Get(ctx context.Context, id SimGroupId) (result GetOperationResponse, err error)
- func (c SIMGroupClient) UpdateTags(ctx context.Context, id SimGroupId, input IdentityAndTagsObject) (result UpdateTagsOperationResponse, err error)
- type SimGroup
- type SimGroupId
- type SimGroupPropertiesFormat
- type UpdateTagsOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForProvisioningState ¶
func PossibleValuesForProvisioningState() []string
func ValidateSimGroupID ¶
ValidateSimGroupID checks that 'input' can be parsed as a Sim Group ID
Types ¶
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type IdentityAndTagsObject ¶
type IdentityAndTagsObject struct { Identity *identity.UserAssignedMap `json:"identity,omitempty"` Tags *map[string]string `json:"tags,omitempty"` }
type KeyVaultKey ¶
type KeyVaultKey struct {
KeyUrl *string `json:"keyUrl,omitempty"`
}
type MobileNetworkResourceId ¶
type MobileNetworkResourceId struct {
Id string `json:"id"`
}
type ProvisioningState ¶
type ProvisioningState string
const ( ProvisioningStateAccepted ProvisioningState = "Accepted" ProvisioningStateCanceled ProvisioningState = "Canceled" ProvisioningStateDeleted ProvisioningState = "Deleted" ProvisioningStateDeleting ProvisioningState = "Deleting" ProvisioningStateFailed ProvisioningState = "Failed" ProvisioningStateSucceeded ProvisioningState = "Succeeded" ProvisioningStateUnknown ProvisioningState = "Unknown" )
func (*ProvisioningState) UnmarshalJSON ¶
func (s *ProvisioningState) UnmarshalJSON(bytes []byte) error
type SIMGroupClient ¶
type SIMGroupClient struct {
Client *resourcemanager.Client
}
func NewSIMGroupClientWithBaseURI ¶
func NewSIMGroupClientWithBaseURI(sdkApi sdkEnv.Api) (*SIMGroupClient, error)
func (SIMGroupClient) CreateOrUpdate ¶
func (c SIMGroupClient) CreateOrUpdate(ctx context.Context, id SimGroupId, input SimGroup) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (SIMGroupClient) CreateOrUpdateThenPoll ¶
func (c SIMGroupClient) CreateOrUpdateThenPoll(ctx context.Context, id SimGroupId, input SimGroup) error
CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed
func (SIMGroupClient) Delete ¶
func (c SIMGroupClient) Delete(ctx context.Context, id SimGroupId) (result DeleteOperationResponse, err error)
Delete ...
func (SIMGroupClient) DeleteThenPoll ¶
func (c SIMGroupClient) DeleteThenPoll(ctx context.Context, id SimGroupId) error
DeleteThenPoll performs Delete then polls until it's completed
func (SIMGroupClient) Get ¶
func (c SIMGroupClient) Get(ctx context.Context, id SimGroupId) (result GetOperationResponse, err error)
Get ...
func (SIMGroupClient) UpdateTags ¶
func (c SIMGroupClient) UpdateTags(ctx context.Context, id SimGroupId, input IdentityAndTagsObject) (result UpdateTagsOperationResponse, err error)
UpdateTags ...
type SimGroup ¶
type SimGroup struct { Id *string `json:"id,omitempty"` Identity *identity.UserAssignedMap `json:"identity,omitempty"` Location string `json:"location"` Name *string `json:"name,omitempty"` Properties SimGroupPropertiesFormat `json:"properties"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Tags *map[string]string `json:"tags,omitempty"` Type *string `json:"type,omitempty"` }
type SimGroupId ¶
SimGroupId is a struct representing the Resource ID for a Sim Group
func NewSimGroupID ¶
func NewSimGroupID(subscriptionId string, resourceGroupName string, simGroupName string) SimGroupId
NewSimGroupID returns a new SimGroupId struct
func ParseSimGroupID ¶
func ParseSimGroupID(input string) (*SimGroupId, error)
ParseSimGroupID parses 'input' into a SimGroupId
func ParseSimGroupIDInsensitively ¶
func ParseSimGroupIDInsensitively(input string) (*SimGroupId, error)
ParseSimGroupIDInsensitively parses 'input' case-insensitively into a SimGroupId note: this method should only be used for API response data and not user input
func (*SimGroupId) FromParseResult ¶ added in v0.20231127.1171502
func (id *SimGroupId) FromParseResult(input resourceids.ParseResult) error
func (SimGroupId) Segments ¶
func (id SimGroupId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Sim Group ID
func (SimGroupId) String ¶
func (id SimGroupId) String() string
String returns a human-readable description of this Sim Group ID
type SimGroupPropertiesFormat ¶
type SimGroupPropertiesFormat struct { EncryptionKey *KeyVaultKey `json:"encryptionKey,omitempty"` MobileNetwork *MobileNetworkResourceId `json:"mobileNetwork,omitempty"` ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"` }