Partager via


CustomHttpsConfiguration Constructors

Definition

Overloads

CustomHttpsConfiguration()

Initializes a new instance of the CustomHttpsConfiguration class.

CustomHttpsConfiguration(String, String, KeyVaultCertificateSourceParametersVault, String, String, String)

Initializes a new instance of the CustomHttpsConfiguration class.

CustomHttpsConfiguration()

Initializes a new instance of the CustomHttpsConfiguration class.

public CustomHttpsConfiguration ();
Public Sub New ()

Applies to

CustomHttpsConfiguration(String, String, KeyVaultCertificateSourceParametersVault, String, String, String)

Initializes a new instance of the CustomHttpsConfiguration class.

public CustomHttpsConfiguration (string certificateSource, string minimumTlsVersion, Microsoft.Azure.Management.FrontDoor.Models.KeyVaultCertificateSourceParametersVault vault = default, string secretName = default, string secretVersion = default, string certificateType = default);
new Microsoft.Azure.Management.FrontDoor.Models.CustomHttpsConfiguration : string * string * Microsoft.Azure.Management.FrontDoor.Models.KeyVaultCertificateSourceParametersVault * string * string * string -> Microsoft.Azure.Management.FrontDoor.Models.CustomHttpsConfiguration
Public Sub New (certificateSource As String, minimumTlsVersion As String, Optional vault As KeyVaultCertificateSourceParametersVault = Nothing, Optional secretName As String = Nothing, Optional secretVersion As String = Nothing, Optional certificateType As String = Nothing)

Parameters

certificateSource
String

Defines the source of the SSL certificate Possible values include: 'AzureKeyVault', 'FrontDoor'

minimumTlsVersion
String

The minimum TLS version required from the clients to establish an SSL handshake with Front Door. Possible values include: '1.0', '1.2'

vault
KeyVaultCertificateSourceParametersVault

The Key Vault containing the SSL certificate

secretName
String

The name of the Key Vault secret representing the full certificate PFX

secretVersion
String

The version of the Key Vault secret representing the full certificate PFX

certificateType
String

Defines the type of the certificate used for secure connections to a frontendEndpoint Possible values include: 'Dedicated'

Applies to