Class ContainerServiceMasterProfile
Profile for the container service master.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class ContainerServiceMasterProfile
Constructors
ContainerServiceMasterProfile()
Initializes a new instance of the ContainerServiceMasterProfile class.
Declaration
public ContainerServiceMasterProfile ();
ContainerServiceMasterProfile(String, Nullable<Int32>, String)
Initializes a new instance of the ContainerServiceMasterProfile class.
Declaration
public ContainerServiceMasterProfile (string dnsPrefix, Nullable<int> count = null, string fqdn = null);
Parameters
|
String
dnsPrefix
DNS prefix to be used to create the FQDN for master. |
|
Nullable<Int32>
count
Number of masters (VMs) in the container service cluster. Allowed values are 1, 3, and 5. The default value is 1. |
|
String
fqdn
FQDN for the master. |
Properties
Count
Gets or sets number of masters (VMs) in the container service cluster. Allowed values are 1, 3, and 5. The default value is 1.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="count")]
public Nullable<int> Count { get; set; }
Property Value
|
Nullable<Int32>
|
DnsPrefix
Gets or sets DNS prefix to be used to create the FQDN for master.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="dnsPrefix")]
public string DnsPrefix { get; set; }
Property Value
|
String
|
Fqdn
Gets FQDN for the master.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="fqdn")]
public string Fqdn { get; }
Property Value
|
String
|
Methods
Validate()
Validate the object.
Declaration
public virtual void Validate ();
Exceptions
|
ValidationException
Thrown if validation fails |