/// <summary>
 /// Initializes a new instance of the ClusterCreateParametersExtended
 /// class.
 /// </summary>
 /// <param name="location">The location of the cluster.</param>
 /// <param name="tags">The resource tags.</param>
 /// <param name="properties">The cluster create parameters.</param>
 /// <param name="identity">The identity of the cluster, if
 /// configured.</param>
 public ClusterCreateParametersExtended(string location = default(string), IDictionary<string, string> tags = default(IDictionary<string, string>), ClusterCreateProperties properties = default(ClusterCreateProperties), ClusterIdentity identity = default(ClusterIdentity))
 {
     Location = location;
     Tags = tags;
     Properties = properties;
     Identity = identity;
     CustomInit();
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the
 /// ClusterCreateRequestValidationParameters class.
 /// </summary>
 /// <param name="location">The location of the cluster.</param>
 /// <param name="tags">The resource tags.</param>
 /// <param name="properties">The cluster create parameters.</param>
 /// <param name="identity">The identity of the cluster, if
 /// configured.</param>
 /// <param name="name">The cluster name.</param>
 /// <param name="type">The resource type.</param>
 /// <param name="tenantId">The tenant id.</param>
 /// <param name="fetchAaddsResource">This indicates whether fetch Aadds
 /// resource or not.</param>
 public ClusterCreateRequestValidationParameters(string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), ClusterCreateProperties properties = default(ClusterCreateProperties), ClusterIdentity identity = default(ClusterIdentity), string name = default(string), string type = default(string), string tenantId = default(string), bool?fetchAaddsResource = default(bool?))
     : base(location, tags, properties, identity)
 {
     Name               = name;
     Type               = type;
     TenantId           = tenantId;
     FetchAaddsResource = fetchAaddsResource;
     CustomInit();
 }