Documentation ¶
Index ¶
- func ValidateGatewayID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateHostnameConfigurationID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationOptions
- type CreateOrUpdateOperationResponse
- type DeleteOperationOptions
- type DeleteOperationResponse
- type GatewayHostnameConfigurationClient
- func (c GatewayHostnameConfigurationClient) CreateOrUpdate(ctx context.Context, id HostnameConfigurationId, ...) (result CreateOrUpdateOperationResponse, err error)
- func (c GatewayHostnameConfigurationClient) Delete(ctx context.Context, id HostnameConfigurationId, ...) (result DeleteOperationResponse, err error)
- func (c GatewayHostnameConfigurationClient) Get(ctx context.Context, id HostnameConfigurationId) (result GetOperationResponse, err error)
- func (c GatewayHostnameConfigurationClient) GetEntityTag(ctx context.Context, id HostnameConfigurationId) (result GetEntityTagOperationResponse, err error)
- func (c GatewayHostnameConfigurationClient) ListByService(ctx context.Context, id GatewayId, options ListByServiceOperationOptions) (result ListByServiceOperationResponse, err error)
- func (c GatewayHostnameConfigurationClient) ListByServiceComplete(ctx context.Context, id GatewayId, options ListByServiceOperationOptions) (ListByServiceCompleteResult, error)
- func (c GatewayHostnameConfigurationClient) ListByServiceCompleteMatchingPredicate(ctx context.Context, id GatewayId, options ListByServiceOperationOptions, ...) (result ListByServiceCompleteResult, err error)
- type GatewayHostnameConfigurationContract
- type GatewayHostnameConfigurationContractOperationPredicate
- type GatewayHostnameConfigurationContractProperties
- type GatewayId
- type GetEntityTagOperationResponse
- type GetOperationResponse
- type HostnameConfigurationId
- func NewHostnameConfigurationID(subscriptionId string, resourceGroupName string, serviceName string, ...) HostnameConfigurationId
- func ParseHostnameConfigurationID(input string) (*HostnameConfigurationId, error)
- func ParseHostnameConfigurationIDInsensitively(input string) (*HostnameConfigurationId, error)
- type ListByServiceCompleteResult
- type ListByServiceCustomPager
- type ListByServiceOperationOptions
- type ListByServiceOperationResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateGatewayID ¶
ValidateGatewayID checks that 'input' can be parsed as a Gateway ID
func ValidateHostnameConfigurationID ¶
func ValidateHostnameConfigurationID(input interface{}, key string) (warnings []string, errors []error)
ValidateHostnameConfigurationID checks that 'input' can be parsed as a Hostname Configuration ID
Types ¶
type CreateOrUpdateOperationOptions ¶
type CreateOrUpdateOperationOptions struct {
IfMatch *string
}
func DefaultCreateOrUpdateOperationOptions ¶
func DefaultCreateOrUpdateOperationOptions() CreateOrUpdateOperationOptions
func (CreateOrUpdateOperationOptions) ToHeaders ¶
func (o CreateOrUpdateOperationOptions) ToHeaders() *client.Headers
func (CreateOrUpdateOperationOptions) ToOData ¶
func (o CreateOrUpdateOperationOptions) ToOData() *odata.Query
func (CreateOrUpdateOperationOptions) ToQuery ¶
func (o CreateOrUpdateOperationOptions) ToQuery() *client.QueryParams
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *GatewayHostnameConfigurationContract }
type DeleteOperationOptions ¶
type DeleteOperationOptions struct {
IfMatch *string
}
func DefaultDeleteOperationOptions ¶
func DefaultDeleteOperationOptions() DeleteOperationOptions
func (DeleteOperationOptions) ToHeaders ¶
func (o DeleteOperationOptions) ToHeaders() *client.Headers
func (DeleteOperationOptions) ToOData ¶
func (o DeleteOperationOptions) ToOData() *odata.Query
func (DeleteOperationOptions) ToQuery ¶
func (o DeleteOperationOptions) ToQuery() *client.QueryParams
type DeleteOperationResponse ¶
type GatewayHostnameConfigurationClient ¶
type GatewayHostnameConfigurationClient struct {
Client *resourcemanager.Client
}
func NewGatewayHostnameConfigurationClientWithBaseURI ¶
func NewGatewayHostnameConfigurationClientWithBaseURI(sdkApi sdkEnv.Api) (*GatewayHostnameConfigurationClient, error)
func (GatewayHostnameConfigurationClient) CreateOrUpdate ¶
func (c GatewayHostnameConfigurationClient) CreateOrUpdate(ctx context.Context, id HostnameConfigurationId, input GatewayHostnameConfigurationContract, options CreateOrUpdateOperationOptions) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (GatewayHostnameConfigurationClient) Delete ¶
func (c GatewayHostnameConfigurationClient) Delete(ctx context.Context, id HostnameConfigurationId, options DeleteOperationOptions) (result DeleteOperationResponse, err error)
Delete ...
func (GatewayHostnameConfigurationClient) Get ¶
func (c GatewayHostnameConfigurationClient) Get(ctx context.Context, id HostnameConfigurationId) (result GetOperationResponse, err error)
Get ...
func (GatewayHostnameConfigurationClient) GetEntityTag ¶
func (c GatewayHostnameConfigurationClient) GetEntityTag(ctx context.Context, id HostnameConfigurationId) (result GetEntityTagOperationResponse, err error)
GetEntityTag ...
func (GatewayHostnameConfigurationClient) ListByService ¶
func (c GatewayHostnameConfigurationClient) ListByService(ctx context.Context, id GatewayId, options ListByServiceOperationOptions) (result ListByServiceOperationResponse, err error)
ListByService ...
func (GatewayHostnameConfigurationClient) ListByServiceComplete ¶
func (c GatewayHostnameConfigurationClient) ListByServiceComplete(ctx context.Context, id GatewayId, options ListByServiceOperationOptions) (ListByServiceCompleteResult, error)
ListByServiceComplete retrieves all the results into a single object
func (GatewayHostnameConfigurationClient) ListByServiceCompleteMatchingPredicate ¶
func (c GatewayHostnameConfigurationClient) ListByServiceCompleteMatchingPredicate(ctx context.Context, id GatewayId, options ListByServiceOperationOptions, predicate GatewayHostnameConfigurationContractOperationPredicate) (result ListByServiceCompleteResult, err error)
ListByServiceCompleteMatchingPredicate retrieves all the results and then applies the predicate
type GatewayHostnameConfigurationContract ¶
type GatewayHostnameConfigurationContract struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *GatewayHostnameConfigurationContractProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type GatewayHostnameConfigurationContractOperationPredicate ¶
type GatewayHostnameConfigurationContractOperationPredicate struct { Id *string Name *string Type *string }
func (GatewayHostnameConfigurationContractOperationPredicate) Matches ¶
func (p GatewayHostnameConfigurationContractOperationPredicate) Matches(input GatewayHostnameConfigurationContract) bool
type GatewayHostnameConfigurationContractProperties ¶
type GatewayHostnameConfigurationContractProperties struct { CertificateId *string `json:"certificateId,omitempty"` HTTP2Enabled *bool `json:"http2Enabled,omitempty"` Hostname *string `json:"hostname,omitempty"` NegotiateClientCertificate *bool `json:"negotiateClientCertificate,omitempty"` Tls10Enabled *bool `json:"tls10Enabled,omitempty"` Tls11Enabled *bool `json:"tls11Enabled,omitempty"` }
type GatewayId ¶
type GatewayId struct { SubscriptionId string ResourceGroupName string ServiceName string GatewayId string }
GatewayId is a struct representing the Resource ID for a Gateway
func NewGatewayID ¶
func NewGatewayID(subscriptionId string, resourceGroupName string, serviceName string, gatewayId string) GatewayId
NewGatewayID returns a new GatewayId struct
func ParseGatewayID ¶
ParseGatewayID parses 'input' into a GatewayId
func ParseGatewayIDInsensitively ¶
ParseGatewayIDInsensitively parses 'input' case-insensitively into a GatewayId note: this method should only be used for API response data and not user input
func (*GatewayId) FromParseResult ¶
func (id *GatewayId) FromParseResult(input resourceids.ParseResult) error
func (GatewayId) Segments ¶
func (id GatewayId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Gateway ID
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *GatewayHostnameConfigurationContract }
type HostnameConfigurationId ¶
type HostnameConfigurationId struct { SubscriptionId string ResourceGroupName string ServiceName string GatewayId string HcId string }
HostnameConfigurationId is a struct representing the Resource ID for a Hostname Configuration
func NewHostnameConfigurationID ¶
func NewHostnameConfigurationID(subscriptionId string, resourceGroupName string, serviceName string, gatewayId string, hcId string) HostnameConfigurationId
NewHostnameConfigurationID returns a new HostnameConfigurationId struct
func ParseHostnameConfigurationID ¶
func ParseHostnameConfigurationID(input string) (*HostnameConfigurationId, error)
ParseHostnameConfigurationID parses 'input' into a HostnameConfigurationId
func ParseHostnameConfigurationIDInsensitively ¶
func ParseHostnameConfigurationIDInsensitively(input string) (*HostnameConfigurationId, error)
ParseHostnameConfigurationIDInsensitively parses 'input' case-insensitively into a HostnameConfigurationId note: this method should only be used for API response data and not user input
func (*HostnameConfigurationId) FromParseResult ¶
func (id *HostnameConfigurationId) FromParseResult(input resourceids.ParseResult) error
func (HostnameConfigurationId) ID ¶
func (id HostnameConfigurationId) ID() string
ID returns the formatted Hostname Configuration ID
func (HostnameConfigurationId) Segments ¶
func (id HostnameConfigurationId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Hostname Configuration ID
func (HostnameConfigurationId) String ¶
func (id HostnameConfigurationId) String() string
String returns a human-readable description of this Hostname Configuration ID
type ListByServiceCompleteResult ¶
type ListByServiceCompleteResult struct { LatestHttpResponse *http.Response Items []GatewayHostnameConfigurationContract }
type ListByServiceCustomPager ¶ added in v0.20240628.1153531
func (*ListByServiceCustomPager) NextPageLink ¶ added in v0.20240628.1153531
func (p *ListByServiceCustomPager) NextPageLink() *odata.Link
type ListByServiceOperationOptions ¶
func DefaultListByServiceOperationOptions ¶
func DefaultListByServiceOperationOptions() ListByServiceOperationOptions
func (ListByServiceOperationOptions) ToHeaders ¶
func (o ListByServiceOperationOptions) ToHeaders() *client.Headers
func (ListByServiceOperationOptions) ToOData ¶
func (o ListByServiceOperationOptions) ToOData() *odata.Query
func (ListByServiceOperationOptions) ToQuery ¶
func (o ListByServiceOperationOptions) ToQuery() *client.QueryParams
type ListByServiceOperationResponse ¶
type ListByServiceOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]GatewayHostnameConfigurationContract }