Class: Azure::Cosmosdb::Mgmt::V2020_04_01::Models::CassandraTableGetPropertiesResource
- Inherits:
-
Object
- Object
- Azure::Cosmosdb::Mgmt::V2020_04_01::Models::CassandraTableGetPropertiesResource
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/cassandra_table_get_properties_resource.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#_etag ⇒ String
etag required for optimistic concurrency control.
-
#_rid ⇒ String
A system generated property.
-
#_ts ⇒ Object
timestamp of the resource.
-
#analytical_storage_ttl ⇒ Integer
Analytical TTL.
-
#default_ttl ⇒ Integer
Time to live of the Cosmos DB Cassandra table.
-
#id ⇒ String
Name of the Cosmos DB Cassandra table.
-
#schema ⇒ CassandraSchema
Schema of the Cosmos DB Cassandra table.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CassandraTableGetPropertiesResource class as Ruby Hash.
Instance Attribute Details
#_etag ⇒ String
etag required for optimistic concurrency control.
37 38 39 |
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/cassandra_table_get_properties_resource.rb', line 37 def _etag @_etag end |
#_rid ⇒ String
Returns A system generated property. A unique identifier.
29 30 31 |
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/cassandra_table_get_properties_resource.rb', line 29 def _rid @_rid end |
#_ts ⇒ Object
timestamp of the resource.
33 34 35 |
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/cassandra_table_get_properties_resource.rb', line 33 def _ts @_ts end |
#analytical_storage_ttl ⇒ Integer
Returns Analytical TTL.
26 27 28 |
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/cassandra_table_get_properties_resource.rb', line 26 def analytical_storage_ttl @analytical_storage_ttl end |
#default_ttl ⇒ Integer
Returns Time to live of the Cosmos DB Cassandra table.
20 21 22 |
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/cassandra_table_get_properties_resource.rb', line 20 def default_ttl @default_ttl end |
#id ⇒ String
Returns Name of the Cosmos DB Cassandra table.
17 18 19 |
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/cassandra_table_get_properties_resource.rb', line 17 def id @id end |
#schema ⇒ CassandraSchema
Returns Schema of the Cosmos DB Cassandra table.
23 24 25 |
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/cassandra_table_get_properties_resource.rb', line 23 def schema @schema end |
Class Method Details
.mapper ⇒ Object
Mapper for CassandraTableGetPropertiesResource class as Ruby Hash. This will be used for serialization/deserialization.
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/2020-04-01/generated/azure_mgmt_cosmosdb/models/cassandra_table_get_properties_resource.rb', line 44 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CassandraTableGetProperties_resource', type: { name: 'Composite', class_name: 'CassandraTableGetPropertiesResource', model_properties: { id: { client_side_validation: true, required: true, serialized_name: 'id', type: { name: 'String' } }, default_ttl: { client_side_validation: true, required: false, serialized_name: 'defaultTtl', type: { name: 'Number' } }, schema: { client_side_validation: true, required: false, serialized_name: 'schema', type: { name: 'Composite', class_name: 'CassandraSchema' } }, analytical_storage_ttl: { client_side_validation: true, required: false, serialized_name: 'analyticalStorageTtl', type: { name: 'Number' } }, _rid: { client_side_validation: true, required: false, read_only: true, serialized_name: '_rid', type: { name: 'String' } }, _ts: { client_side_validation: true, required: false, read_only: true, serialized_name: '_ts', type: { name: 'Object' } }, _etag: { client_side_validation: true, required: false, read_only: true, serialized_name: '_etag', type: { name: 'String' } } } } } end |