Documentation ¶
Index ¶
- func PossibleValuesForProvisioningState() []string
- func ValidatePacketCoreControlPlaneID(input interface{}, key string) (warnings []string, errors []error)
- type InterfaceProperties
- type ListByPacketCoreControlPlaneCompleteResult
- type ListByPacketCoreControlPlaneOperationResponse
- type PacketCoreControlPlaneId
- type PacketCoreDataPlane
- type PacketCoreDataPlaneOperationPredicate
- type PacketCoreDataPlanePropertiesFormat
- type PacketCoreDataPlanesClient
- func (c PacketCoreDataPlanesClient) ListByPacketCoreControlPlane(ctx context.Context, id PacketCoreControlPlaneId) (resp ListByPacketCoreControlPlaneOperationResponse, err error)
- func (c PacketCoreDataPlanesClient) ListByPacketCoreControlPlaneComplete(ctx context.Context, id PacketCoreControlPlaneId) (ListByPacketCoreControlPlaneCompleteResult, error)
- func (c PacketCoreDataPlanesClient) ListByPacketCoreControlPlaneCompleteMatchingPredicate(ctx context.Context, id PacketCoreControlPlaneId, ...) (resp ListByPacketCoreControlPlaneCompleteResult, err error)
- type ProvisioningState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForProvisioningState ¶
func PossibleValuesForProvisioningState() []string
func ValidatePacketCoreControlPlaneID ¶
func ValidatePacketCoreControlPlaneID(input interface{}, key string) (warnings []string, errors []error)
ValidatePacketCoreControlPlaneID checks that 'input' can be parsed as a Packet Core Control Plane ID
Types ¶
type InterfaceProperties ¶
type ListByPacketCoreControlPlaneCompleteResult ¶
type ListByPacketCoreControlPlaneCompleteResult struct {
Items []PacketCoreDataPlane
}
type ListByPacketCoreControlPlaneOperationResponse ¶
type ListByPacketCoreControlPlaneOperationResponse struct { HttpResponse *http.Response Model *[]PacketCoreDataPlane // contains filtered or unexported fields }
func (ListByPacketCoreControlPlaneOperationResponse) HasMore ¶
func (r ListByPacketCoreControlPlaneOperationResponse) HasMore() bool
func (ListByPacketCoreControlPlaneOperationResponse) LoadMore ¶
func (r ListByPacketCoreControlPlaneOperationResponse) LoadMore(ctx context.Context) (resp ListByPacketCoreControlPlaneOperationResponse, err error)
type PacketCoreControlPlaneId ¶
type PacketCoreControlPlaneId struct { SubscriptionId string ResourceGroupName string PacketCoreControlPlaneName string }
PacketCoreControlPlaneId is a struct representing the Resource ID for a Packet Core Control Plane
func NewPacketCoreControlPlaneID ¶
func NewPacketCoreControlPlaneID(subscriptionId string, resourceGroupName string, packetCoreControlPlaneName string) PacketCoreControlPlaneId
NewPacketCoreControlPlaneID returns a new PacketCoreControlPlaneId struct
func ParsePacketCoreControlPlaneID ¶
func ParsePacketCoreControlPlaneID(input string) (*PacketCoreControlPlaneId, error)
ParsePacketCoreControlPlaneID parses 'input' into a PacketCoreControlPlaneId
func ParsePacketCoreControlPlaneIDInsensitively ¶
func ParsePacketCoreControlPlaneIDInsensitively(input string) (*PacketCoreControlPlaneId, error)
ParsePacketCoreControlPlaneIDInsensitively parses 'input' case-insensitively into a PacketCoreControlPlaneId note: this method should only be used for API response data and not user input
func (PacketCoreControlPlaneId) ID ¶
func (id PacketCoreControlPlaneId) ID() string
ID returns the formatted Packet Core Control Plane ID
func (PacketCoreControlPlaneId) Segments ¶
func (id PacketCoreControlPlaneId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Packet Core Control Plane ID
func (PacketCoreControlPlaneId) String ¶
func (id PacketCoreControlPlaneId) String() string
String returns a human-readable description of this Packet Core Control Plane ID
type PacketCoreDataPlane ¶
type PacketCoreDataPlane struct { Id *string `json:"id,omitempty"` Location string `json:"location"` Name *string `json:"name,omitempty"` Properties PacketCoreDataPlanePropertiesFormat `json:"properties"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Tags *map[string]string `json:"tags,omitempty"` Type *string `json:"type,omitempty"` }
type PacketCoreDataPlaneOperationPredicate ¶
type PacketCoreDataPlaneOperationPredicate struct { Id *string Location *string Name *string Type *string }
func (PacketCoreDataPlaneOperationPredicate) Matches ¶
func (p PacketCoreDataPlaneOperationPredicate) Matches(input PacketCoreDataPlane) bool
type PacketCoreDataPlanePropertiesFormat ¶
type PacketCoreDataPlanePropertiesFormat struct { ProvisioningState *ProvisioningState `json:"provisioningState,omitempty"` UserPlaneAccessInterface InterfaceProperties `json:"userPlaneAccessInterface"` }
type PacketCoreDataPlanesClient ¶
type PacketCoreDataPlanesClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewPacketCoreDataPlanesClientWithBaseURI ¶
func NewPacketCoreDataPlanesClientWithBaseURI(endpoint string) PacketCoreDataPlanesClient
func (PacketCoreDataPlanesClient) ListByPacketCoreControlPlane ¶
func (c PacketCoreDataPlanesClient) ListByPacketCoreControlPlane(ctx context.Context, id PacketCoreControlPlaneId) (resp ListByPacketCoreControlPlaneOperationResponse, err error)
ListByPacketCoreControlPlane ...
func (PacketCoreDataPlanesClient) ListByPacketCoreControlPlaneComplete ¶
func (c PacketCoreDataPlanesClient) ListByPacketCoreControlPlaneComplete(ctx context.Context, id PacketCoreControlPlaneId) (ListByPacketCoreControlPlaneCompleteResult, error)
ListByPacketCoreControlPlaneComplete retrieves all of the results into a single object
func (PacketCoreDataPlanesClient) ListByPacketCoreControlPlaneCompleteMatchingPredicate ¶
func (c PacketCoreDataPlanesClient) ListByPacketCoreControlPlaneCompleteMatchingPredicate(ctx context.Context, id PacketCoreControlPlaneId, predicate PacketCoreDataPlaneOperationPredicate) (resp ListByPacketCoreControlPlaneCompleteResult, err error)
ListByPacketCoreControlPlaneCompleteMatchingPredicate retrieves all of the results and then applied the predicate
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" )