/// <summary>
 /// Initializes a new instance of the
 /// ManagedCassandraARMResourceProperties class.
 /// </summary>
 /// <param name="id">The unique resource identifier of the ARM
 /// resource.</param>
 /// <param name="name">The name of the ARM resource.</param>
 /// <param name="type">The type of Azure resource.</param>
 /// <param name="location">The location of the resource group to which
 /// the resource belongs.</param>
 public ManagedCassandraARMResourceProperties(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), ManagedCassandraManagedServiceIdentity identity = default(ManagedCassandraManagedServiceIdentity))
 {
     Id       = id;
     Name     = name;
     Type     = type;
     Location = location;
     Tags     = tags;
     Identity = identity;
     CustomInit();
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the ClusterResource class.
 /// </summary>
 /// <param name="id">The unique resource identifier of the ARM
 /// resource.</param>
 /// <param name="name">The name of the ARM resource.</param>
 /// <param name="type">The type of Azure resource.</param>
 /// <param name="location">The location of the resource group to which
 /// the resource belongs.</param>
 /// <param name="properties">Properties of a managed Cassandra
 /// cluster.</param>
 public ClusterResource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), ManagedCassandraManagedServiceIdentity identity = default(ManagedCassandraManagedServiceIdentity), ClusterResourceProperties properties = default(ClusterResourceProperties))
     : base(id, name, type, location, tags, identity)
 {
     Properties = properties;
     CustomInit();
 }