Share via


GatewayHostnameConfigurationContract Constructors

Definition

Overloads

GatewayHostnameConfigurationContract()

Initializes a new instance of the GatewayHostnameConfigurationContract class.

GatewayHostnameConfigurationContract(String, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the GatewayHostnameConfigurationContract class.

GatewayHostnameConfigurationContract()

Initializes a new instance of the GatewayHostnameConfigurationContract class.

public GatewayHostnameConfigurationContract ();
Public Sub New ()

Applies to

GatewayHostnameConfigurationContract(String, String, String, String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the GatewayHostnameConfigurationContract class.

public GatewayHostnameConfigurationContract (string id = default, string name = default, string type = default, string hostname = default, string certificateId = default, bool? negotiateClientCertificate = default, bool? tls10Enabled = default, bool? tls11Enabled = default, bool? http2Enabled = default);
new Microsoft.Azure.Management.ApiManagement.Models.GatewayHostnameConfigurationContract : string * string * string * string * string * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.ApiManagement.Models.GatewayHostnameConfigurationContract
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional hostname As String = Nothing, Optional certificateId As String = Nothing, Optional negotiateClientCertificate As Nullable(Of Boolean) = Nothing, Optional tls10Enabled As Nullable(Of Boolean) = Nothing, Optional tls11Enabled As Nullable(Of Boolean) = Nothing, Optional http2Enabled As Nullable(Of Boolean) = Nothing)

Parameters

id
String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

name
String

The name of the resource

type
String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

hostname
String

Hostname value. Supports valid domain name, partial or full wildcard

certificateId
String

Identifier of Certificate entity that will be used for TLS connection establishment

negotiateClientCertificate
Nullable<Boolean>

Determines whether gateway requests client certificate

tls10Enabled
Nullable<Boolean>

Specifies if TLS 1.0 is supported

tls11Enabled
Nullable<Boolean>

Specifies if TLS 1.1 is supported

http2Enabled
Nullable<Boolean>

Specifies if HTTP/2.0 is supported

Applies to