Documentation ¶
Index ¶
- func PossibleValuesForProvisioningState() []string
- func ValidateMobileNetworkID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type MobileNetwork
- type MobileNetworkClient
- func (c MobileNetworkClient) CreateOrUpdate(ctx context.Context, id MobileNetworkId, input MobileNetwork) (result CreateOrUpdateOperationResponse, err error)
- func (c MobileNetworkClient) CreateOrUpdateThenPoll(ctx context.Context, id MobileNetworkId, input MobileNetwork) error
- func (c MobileNetworkClient) Delete(ctx context.Context, id MobileNetworkId) (result DeleteOperationResponse, err error)
- func (c MobileNetworkClient) DeleteThenPoll(ctx context.Context, id MobileNetworkId) error
- func (c MobileNetworkClient) Get(ctx context.Context, id MobileNetworkId) (result GetOperationResponse, err error)
- func (c MobileNetworkClient) UpdateTags(ctx context.Context, id MobileNetworkId, input TagsObject) (result UpdateTagsOperationResponse, err error)
- type MobileNetworkId
- type MobileNetworkPropertiesFormat
- type PlmnId
- type ProvisioningState
- type TagsObject
- type UpdateTagsOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForProvisioningState ¶
func PossibleValuesForProvisioningState() []string
func ValidateMobileNetworkID ¶
ValidateMobileNetworkID checks that 'input' can be parsed as a Mobile Network ID
Types ¶
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *MobileNetwork }
type MobileNetwork ¶
type MobileNetwork struct { Id *string `json:"id,omitempty"` Location string `json:"location"` Name *string `json:"name,omitempty"` Properties MobileNetworkPropertiesFormat `json:"properties"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Tags *map[string]string `json:"tags,omitempty"` Type *string `json:"type,omitempty"` }
type MobileNetworkClient ¶
type MobileNetworkClient struct {
Client *resourcemanager.Client
}
func NewMobileNetworkClientWithBaseURI ¶
func NewMobileNetworkClientWithBaseURI(sdkApi sdkEnv.Api) (*MobileNetworkClient, error)
func (MobileNetworkClient) CreateOrUpdate ¶
func (c MobileNetworkClient) CreateOrUpdate(ctx context.Context, id MobileNetworkId, input MobileNetwork) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (MobileNetworkClient) CreateOrUpdateThenPoll ¶
func (c MobileNetworkClient) CreateOrUpdateThenPoll(ctx context.Context, id MobileNetworkId, input MobileNetwork) error
CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed
func (MobileNetworkClient) Delete ¶
func (c MobileNetworkClient) Delete(ctx context.Context, id MobileNetworkId) (result DeleteOperationResponse, err error)
Delete ...
func (MobileNetworkClient) DeleteThenPoll ¶
func (c MobileNetworkClient) DeleteThenPoll(ctx context.Context, id MobileNetworkId) error
DeleteThenPoll performs Delete then polls until it's completed
func (MobileNetworkClient) Get ¶
func (c MobileNetworkClient) Get(ctx context.Context, id MobileNetworkId) (result GetOperationResponse, err error)
Get ...
func (MobileNetworkClient) UpdateTags ¶
func (c MobileNetworkClient) UpdateTags(ctx context.Context, id MobileNetworkId, input TagsObject) (result UpdateTagsOperationResponse, err error)
UpdateTags ...
type MobileNetworkId ¶
type MobileNetworkId struct { SubscriptionId string ResourceGroupName string MobileNetworkName string }
MobileNetworkId is a struct representing the Resource ID for a Mobile Network
func NewMobileNetworkID ¶
func NewMobileNetworkID(subscriptionId string, resourceGroupName string, mobileNetworkName string) MobileNetworkId
NewMobileNetworkID returns a new MobileNetworkId struct
func ParseMobileNetworkID ¶
func ParseMobileNetworkID(input string) (*MobileNetworkId, error)
ParseMobileNetworkID parses 'input' into a MobileNetworkId
func ParseMobileNetworkIDInsensitively ¶
func ParseMobileNetworkIDInsensitively(input string) (*MobileNetworkId, error)
ParseMobileNetworkIDInsensitively parses 'input' case-insensitively into a MobileNetworkId note: this method should only be used for API response data and not user input
func (MobileNetworkId) ID ¶
func (id MobileNetworkId) ID() string
ID returns the formatted Mobile Network ID
func (MobileNetworkId) Segments ¶
func (id MobileNetworkId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Mobile Network ID
func (MobileNetworkId) String ¶
func (id MobileNetworkId) String() string
String returns a human-readable description of this Mobile Network ID
type MobileNetworkPropertiesFormat ¶
type MobileNetworkPropertiesFormat struct { ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"` PublicLandMobileNetworkIdentifier PlmnId `json:"publicLandMobileNetworkIdentifier"` ServiceKey *string `json:"serviceKey,omitempty"` }
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 ¶ added in v0.20230713.1092427
func (s *ProvisioningState) UnmarshalJSON(bytes []byte) error
type TagsObject ¶
type UpdateTagsOperationResponse ¶
type UpdateTagsOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *MobileNetwork }