connectiongateways

package
v0.20220621.125715 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 21, 2022 License: MPL-2.0 Imports: 8 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ValidateConnectionGatewayID

func ValidateConnectionGatewayID(input interface{}, key string) (warnings []string, errors []error)

ValidateConnectionGatewayID checks that 'input' can be parsed as a Connection Gateway ID

func ValidateConnectionGatewayInstallationID

func ValidateConnectionGatewayInstallationID(input interface{}, key string) (warnings []string, errors []error)

ValidateConnectionGatewayInstallationID checks that 'input' can be parsed as a Connection Gateway Installation ID

func ValidateLocationID

func ValidateLocationID(input interface{}, key string) (warnings []string, errors []error)

ValidateLocationID checks that 'input' can be parsed as a Location ID

Types

type ConnectionGatewayDefinition

type ConnectionGatewayDefinition struct {
	Etag       *string                                `json:"etag,omitempty"`
	Id         *string                                `json:"id,omitempty"`
	Location   *string                                `json:"location,omitempty"`
	Name       *string                                `json:"name,omitempty"`
	Properties *ConnectionGatewayDefinitionProperties `json:"properties,omitempty"`
	Tags       *map[string]string                     `json:"tags,omitempty"`
	Type       *string                                `json:"type,omitempty"`
}

type ConnectionGatewayDefinitionCollection

type ConnectionGatewayDefinitionCollection struct {
	Value *[]ConnectionGatewayDefinition `json:"value,omitempty"`
}

type ConnectionGatewayDefinitionProperties

type ConnectionGatewayDefinitionProperties struct {
	BackendUri                    *string                     `json:"backendUri,omitempty"`
	ConnectionGatewayInstallation *ConnectionGatewayReference `json:"connectionGatewayInstallation,omitempty"`
	ContactInformation            *[]string                   `json:"contactInformation,omitempty"`
	Description                   *string                     `json:"description,omitempty"`
	DisplayName                   *string                     `json:"displayName,omitempty"`
	MachineName                   *string                     `json:"machineName,omitempty"`
	Status                        *interface{}                `json:"status,omitempty"`
}

type ConnectionGatewayId

type ConnectionGatewayId struct {
	SubscriptionId        string
	ResourceGroupName     string
	ConnectionGatewayName string
}

ConnectionGatewayId is a struct representing the Resource ID for a Connection Gateway

func NewConnectionGatewayID

func NewConnectionGatewayID(subscriptionId string, resourceGroupName string, connectionGatewayName string) ConnectionGatewayId

NewConnectionGatewayID returns a new ConnectionGatewayId struct

func ParseConnectionGatewayID

func ParseConnectionGatewayID(input string) (*ConnectionGatewayId, error)

ParseConnectionGatewayID parses 'input' into a ConnectionGatewayId

func ParseConnectionGatewayIDInsensitively

func ParseConnectionGatewayIDInsensitively(input string) (*ConnectionGatewayId, error)

ParseConnectionGatewayIDInsensitively parses 'input' case-insensitively into a ConnectionGatewayId note: this method should only be used for API response data and not user input

func (ConnectionGatewayId) ID

func (id ConnectionGatewayId) ID() string

ID returns the formatted Connection Gateway ID

func (ConnectionGatewayId) Segments

func (id ConnectionGatewayId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Connection Gateway ID

func (ConnectionGatewayId) String

func (id ConnectionGatewayId) String() string

String returns a human-readable description of this Connection Gateway ID

type ConnectionGatewayInstallationDefinition

type ConnectionGatewayInstallationDefinition struct {
	Etag       *string                                            `json:"etag,omitempty"`
	Id         *string                                            `json:"id,omitempty"`
	Location   *string                                            `json:"location,omitempty"`
	Name       *string                                            `json:"name,omitempty"`
	Properties *ConnectionGatewayInstallationDefinitionProperties `json:"properties,omitempty"`
	Tags       *map[string]string                                 `json:"tags,omitempty"`
	Type       *string                                            `json:"type,omitempty"`
}

type ConnectionGatewayInstallationDefinitionCollection

type ConnectionGatewayInstallationDefinitionCollection struct {
	Value *[]ConnectionGatewayInstallationDefinition `json:"value,omitempty"`
}

type ConnectionGatewayInstallationDefinitionProperties

type ConnectionGatewayInstallationDefinitionProperties struct {
	BackendUri         *string                     `json:"backendUri,omitempty"`
	ConnectionGateway  *ConnectionGatewayReference `json:"connectionGateway,omitempty"`
	ContactInformation *[]string                   `json:"contactInformation,omitempty"`
	Description        *string                     `json:"description,omitempty"`
	DisplayName        *string                     `json:"displayName,omitempty"`
	MachineName        *string                     `json:"machineName,omitempty"`
	Status             *interface{}                `json:"status,omitempty"`
}

type ConnectionGatewayInstallationId

type ConnectionGatewayInstallationId struct {
	SubscriptionId string
	Location       string
	GatewayId      string
}

ConnectionGatewayInstallationId is a struct representing the Resource ID for a Connection Gateway Installation

func NewConnectionGatewayInstallationID

func NewConnectionGatewayInstallationID(subscriptionId string, location string, gatewayId string) ConnectionGatewayInstallationId

NewConnectionGatewayInstallationID returns a new ConnectionGatewayInstallationId struct

func ParseConnectionGatewayInstallationID

func ParseConnectionGatewayInstallationID(input string) (*ConnectionGatewayInstallationId, error)

ParseConnectionGatewayInstallationID parses 'input' into a ConnectionGatewayInstallationId

func ParseConnectionGatewayInstallationIDInsensitively

func ParseConnectionGatewayInstallationIDInsensitively(input string) (*ConnectionGatewayInstallationId, error)

ParseConnectionGatewayInstallationIDInsensitively parses 'input' case-insensitively into a ConnectionGatewayInstallationId note: this method should only be used for API response data and not user input

func (ConnectionGatewayInstallationId) ID

ID returns the formatted Connection Gateway Installation ID

func (ConnectionGatewayInstallationId) Segments

Segments returns a slice of Resource ID Segments which comprise this Connection Gateway Installation ID

func (ConnectionGatewayInstallationId) String

String returns a human-readable description of this Connection Gateway Installation ID

type ConnectionGatewayInstallationsGetOperationResponse

type ConnectionGatewayInstallationsGetOperationResponse struct {
	HttpResponse *http.Response
	Model        *ConnectionGatewayInstallationDefinition
}

type ConnectionGatewayInstallationsListOperationResponse

type ConnectionGatewayInstallationsListOperationResponse struct {
	HttpResponse *http.Response
	Model        *ConnectionGatewayInstallationDefinitionCollection
}

type ConnectionGatewayReference

type ConnectionGatewayReference struct {
	Id       *string `json:"id,omitempty"`
	Location *string `json:"location,omitempty"`
	Name     *string `json:"name,omitempty"`
	Type     *string `json:"type,omitempty"`
}

type ConnectionGatewaysClient

type ConnectionGatewaysClient struct {
	Client autorest.Client
	// contains filtered or unexported fields
}

func NewConnectionGatewaysClientWithBaseURI

func NewConnectionGatewaysClientWithBaseURI(endpoint string) ConnectionGatewaysClient

func (ConnectionGatewaysClient) ConnectionGatewayInstallationsGet

ConnectionGatewayInstallationsGet ...

func (ConnectionGatewaysClient) ConnectionGatewayInstallationsList

func (c ConnectionGatewaysClient) ConnectionGatewayInstallationsList(ctx context.Context, id LocationId) (result ConnectionGatewayInstallationsListOperationResponse, err error)

ConnectionGatewayInstallationsList ...

func (ConnectionGatewaysClient) ConnectionGatewaysCreateOrUpdate

ConnectionGatewaysCreateOrUpdate ...

func (ConnectionGatewaysClient) ConnectionGatewaysDelete

ConnectionGatewaysDelete ...

func (ConnectionGatewaysClient) ConnectionGatewaysGet

ConnectionGatewaysGet ...

func (ConnectionGatewaysClient) ConnectionGatewaysList

ConnectionGatewaysList ...

func (ConnectionGatewaysClient) ConnectionGatewaysListByResourceGroup

ConnectionGatewaysListByResourceGroup ...

func (ConnectionGatewaysClient) ConnectionGatewaysUpdate

ConnectionGatewaysUpdate ...

type ConnectionGatewaysCreateOrUpdateOperationResponse

type ConnectionGatewaysCreateOrUpdateOperationResponse struct {
	HttpResponse *http.Response
	Model        *ConnectionGatewayDefinition
}

type ConnectionGatewaysDeleteOperationResponse

type ConnectionGatewaysDeleteOperationResponse struct {
	HttpResponse *http.Response
}

type ConnectionGatewaysGetOperationResponse

type ConnectionGatewaysGetOperationResponse struct {
	HttpResponse *http.Response
	Model        *ConnectionGatewayDefinition
}

type ConnectionGatewaysListByResourceGroupOperationResponse

type ConnectionGatewaysListByResourceGroupOperationResponse struct {
	HttpResponse *http.Response
	Model        *ConnectionGatewayDefinitionCollection
}

type ConnectionGatewaysListOperationResponse

type ConnectionGatewaysListOperationResponse struct {
	HttpResponse *http.Response
	Model        *ConnectionGatewayDefinitionCollection
}

type ConnectionGatewaysUpdateOperationResponse

type ConnectionGatewaysUpdateOperationResponse struct {
	HttpResponse *http.Response
	Model        *ConnectionGatewayDefinition
}

type LocationId

type LocationId struct {
	SubscriptionId string
	Location       string
}

LocationId is a struct representing the Resource ID for a Location

func NewLocationID

func NewLocationID(subscriptionId string, location string) LocationId

NewLocationID returns a new LocationId struct

func ParseLocationID

func ParseLocationID(input string) (*LocationId, error)

ParseLocationID parses 'input' into a LocationId

func ParseLocationIDInsensitively

func ParseLocationIDInsensitively(input string) (*LocationId, error)

ParseLocationIDInsensitively parses 'input' case-insensitively into a LocationId note: this method should only be used for API response data and not user input

func (LocationId) ID

func (id LocationId) ID() string

ID returns the formatted Location ID

func (LocationId) Segments

func (id LocationId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Location ID

func (LocationId) String

func (id LocationId) String() string

String returns a human-readable description of this Location ID

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL