ContainerServiceMasterProfile Constructors

Definition

Overloads

ContainerServiceMasterProfile()

Initializes a new instance of the ContainerServiceMasterProfile class.

ContainerServiceMasterProfile(String, Nullable<Int32>, String)

Initializes a new instance of the ContainerServiceMasterProfile class.

ContainerServiceMasterProfile()

Initializes a new instance of the ContainerServiceMasterProfile class.

public ContainerServiceMasterProfile ();
Public Sub New ()

Applies to

ContainerServiceMasterProfile(String, Nullable<Int32>, String)

Initializes a new instance of the ContainerServiceMasterProfile class.

public ContainerServiceMasterProfile (string dnsPrefix, int? count = default, string fqdn = default);
new Microsoft.Azure.Management.Compute.Fluent.Models.ContainerServiceMasterProfile : string * Nullable<int> * string -> Microsoft.Azure.Management.Compute.Fluent.Models.ContainerServiceMasterProfile
Public Sub New (dnsPrefix As String, Optional count As Nullable(Of Integer) = Nothing, Optional fqdn As String = Nothing)

Parameters

dnsPrefix
String

DNS prefix to be used to create the FQDN for master.

count
Nullable<Int32>

Number of masters (VMs) in the container service cluster. Allowed values are 1, 3, and 5. The default value is 1.

fqdn
String

FQDN for the master.

Applies to