/// <summary>
 /// Initializes a new instance of the CassandraTableResource class.
 /// </summary>
 /// <param name="id">Name of the Cosmos DB Cassandra table</param>
 /// <param name="defaultTtl">Time to live of the Cosmos DB Cassandra
 /// table</param>
 /// <param name="schema">Schema of the Cosmos DB Cassandra
 /// table</param>
 public CassandraTableResource(string id, int?defaultTtl = default(int?), CassandraSchema schema = default(CassandraSchema))
 {
     Id         = id;
     DefaultTtl = defaultTtl;
     Schema     = schema;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the CassandraTableResource class.
 /// </summary>
 /// <param name="id">Name of the Cosmos DB Cassandra table</param>
 /// <param name="defaultTtl">Time to live of the Cosmos DB Cassandra
 /// table</param>
 /// <param name="schema">Schema of the Cosmos DB Cassandra
 /// table</param>
 /// <param name="analyticalStorageTtl">Analytical TTL.</param>
 public CassandraTableResource(string id, int?defaultTtl = default(int?), CassandraSchema schema = default(CassandraSchema), int?analyticalStorageTtl = default(int?))
 {
     Id                   = id;
     DefaultTtl           = defaultTtl;
     Schema               = schema;
     AnalyticalStorageTtl = analyticalStorageTtl;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the
 /// CassandraTableGetPropertiesResource class.
 /// </summary>
 /// <param name="id">Name of the Cosmos DB Cassandra table</param>
 /// <param name="defaultTtl">Time to live of the Cosmos DB Cassandra
 /// table</param>
 /// <param name="schema">Schema of the Cosmos DB Cassandra
 /// table</param>
 /// <param name="_rid">A system generated property. A unique
 /// identifier.</param>
 /// <param name="_ts">A system generated property that denotes the last
 /// updated timestamp of the resource.</param>
 /// <param name="_etag">A system generated property representing the
 /// resource etag required for optimistic concurrency control.</param>
 public CassandraTableGetPropertiesResource(string id, int?defaultTtl = default(int?), CassandraSchema schema = default(CassandraSchema), string _rid = default(string), object _ts = default(object), string _etag = default(string))
 {
     Id         = id;
     DefaultTtl = defaultTtl;
     Schema     = schema;
     this._rid  = _rid;
     this._ts   = _ts;
     this._etag = _etag;
     CustomInit();
 }
Пример #4
0
 /// <summary>
 /// Initializes a new instance of the
 /// CassandraTableGetPropertiesResource class.
 /// </summary>
 /// <param name="id">Name of the Cosmos DB Cassandra table</param>
 /// <param name="defaultTtl">Time to live of the Cosmos DB Cassandra
 /// table</param>
 /// <param name="schema">Schema of the Cosmos DB Cassandra
 /// table</param>
 /// <param name="analyticalStorageTtl">Analytical TTL.</param>
 /// <param name="_rid">A system generated property. A unique
 /// identifier.</param>
 /// <param name="_ts">A system generated property that denotes the last
 /// updated timestamp of the resource.</param>
 /// <param name="_etag">A system generated property representing the
 /// resource etag required for optimistic concurrency control.</param>
 public CassandraTableGetPropertiesResource(string id, int?defaultTtl = default(int?), CassandraSchema schema = default(CassandraSchema), int?analyticalStorageTtl = default(int?), string _rid = default(string), double?_ts = default(double?), string _etag = default(string))
 {
     Id                   = id;
     DefaultTtl           = defaultTtl;
     Schema               = schema;
     AnalyticalStorageTtl = analyticalStorageTtl;
     this._rid            = _rid;
     this._ts             = _ts;
     this._etag           = _etag;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the CassandraTableGetResults class.
 /// </summary>
 /// <param name="cassandraTableGetResultsId">Name of the Cosmos DB
 /// 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="defaultTtl">Time to live of the Cosmos DB Cassandra
 /// table</param>
 /// <param name="schema">Schema of the Cosmos DB Cassandra
 /// table</param>
 /// <param name="_rid">A system generated property. A unique
 /// identifier.</param>
 /// <param name="_ts">A system generated property that denotes the last
 /// updated timestamp of the resource.</param>
 /// <param name="_etag">A system generated property representing the
 /// resource etag required for optimistic concurrency control.</param>
 public CassandraTableGetResults(string cassandraTableGetResultsId, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), int?defaultTtl = default(int?), CassandraSchema schema = default(CassandraSchema), string _rid = default(string), object _ts = default(object), string _etag = default(string))
     : base(id, name, type, location, tags)
 {
     CassandraTableGetResultsId = cassandraTableGetResultsId;
     DefaultTtl = defaultTtl;
     Schema     = schema;
     this._rid  = _rid;
     this._ts   = _ts;
     this._etag = _etag;
     CustomInit();
 }