/// <summary> /// Initializes a new instance of the /// CassandraTableCreateUpdateParameters class. /// </summary> /// <param name="resource">The standard JSON format of a Cassandra /// table</param> /// <param name="options">A key-value pair of options to be applied for /// the request. This corresponds to the headers sent with the /// request.</param> /// <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 CassandraTableCreateUpdateParameters(CassandraTableResource resource, IDictionary <string, string> options, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>)) : base(id, name, type, location, tags) { Resource = resource; Options = options; CustomInit(); }
/// <summary> /// Initializes a new instance of the /// CassandraTableCreateUpdateParameters class. /// </summary> /// <param name="resource">The standard JSON format of a Cassandra /// table</param> /// <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="options">A key-value pair of options to be applied for /// the request. This corresponds to the headers sent with the /// request.</param> public CassandraTableCreateUpdateParameters(CassandraTableResource resource, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), ManagedServiceIdentity identity = default(ManagedServiceIdentity), CreateUpdateOptions options = default(CreateUpdateOptions)) : base(id, name, type, location, tags, identity) { Resource = resource; Options = options; CustomInit(); }