HostNameSslState Constructors

Definition

Overloads

HostNameSslState()

Initializes a new instance of the HostNameSslState class.

HostNameSslState(String, Nullable<SslState>, String, String, Nullable<Boolean>, Nullable<HostType>)

Initializes a new instance of the HostNameSslState class.

HostNameSslState()

Initializes a new instance of the HostNameSslState class.

public HostNameSslState ();
Public Sub New ()

Applies to

HostNameSslState(String, Nullable<SslState>, String, String, Nullable<Boolean>, Nullable<HostType>)

Initializes a new instance of the HostNameSslState class.

public HostNameSslState (string name = default, Microsoft.Azure.Management.AppService.Fluent.Models.SslState? sslState = default, string virtualIP = default, string thumbprint = default, bool? toUpdate = default, Microsoft.Azure.Management.AppService.Fluent.Models.HostType? hostType = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.HostNameSslState : string * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.SslState> * string * string * Nullable<bool> * Nullable<Microsoft.Azure.Management.AppService.Fluent.Models.HostType> -> Microsoft.Azure.Management.AppService.Fluent.Models.HostNameSslState
Public Sub New (Optional name As String = Nothing, Optional sslState As Nullable(Of SslState) = Nothing, Optional virtualIP As String = Nothing, Optional thumbprint As String = Nothing, Optional toUpdate As Nullable(Of Boolean) = Nothing, Optional hostType As Nullable(Of HostType) = Nothing)

Parameters

name
String

Hostname.

sslState
Nullable<SslState>

SSL type. Possible values include: 'Disabled', 'SniEnabled', 'IpBasedEnabled'

virtualIP
String

Virtual IP address assigned to the hostname if IP based SSL is enabled.

thumbprint
String

SSL certificate thumbprint.

toUpdate
Nullable<Boolean>

Set to <code>true</code> to update existing hostname.

hostType
Nullable<HostType>

Indicates whether the hostname is a standard or repository hostname. Possible values include: 'Standard', 'Repository'

Applies to