/// <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 CassandraTableInner class.
 /// </summary>
 /// <param name="cassandraTableId">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 CassandraTableInner(string cassandraTableId, string location = default(string), string id = default(string), string name = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), int?defaultTtl = default(int?), CassandraSchema schema = default(CassandraSchema))
     : base(location, id, name, type, tags)
 {
     CassandraTableId = cassandraTableId;
     DefaultTtl       = defaultTtl;
     Schema           = schema;
     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();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the CassandraTableGetResultsInner
 /// class.
 /// </summary>
 /// <param name="cassandraTableGetResultsId">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 CassandraTableGetResultsInner(string location, string cassandraTableGetResultsId, string id = default(string), string name = default(string), string type = 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(location, id, name, type, tags)
 {
     CassandraTableGetResultsId = cassandraTableGetResultsId;
     DefaultTtl = defaultTtl;
     Schema     = schema;
     this._rid  = _rid;
     this._ts   = _ts;
     this._etag = _etag;
     CustomInit();
 }