Class: Azure::Cosmosdb::Mgmt::V2019_08_01::Models::MetricAvailability

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/metric_availability.rb

Overview

The availability of the metric.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#retentionString

Returns The retention for the metric values.

Returns:

  • (String)

    The retention for the metric values.



20
21
22
# File 'lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/metric_availability.rb', line 20

def retention
  @retention
end

#time_grainString

values.

Returns:

  • (String)

    The time grain to be used to summarize the metric



17
18
19
# File 'lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/metric_availability.rb', line 17

def time_grain
  @time_grain
end

Class Method Details

.mapperObject

Mapper for MetricAvailability class as Ruby Hash. This will be used for serialization/deserialization.



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/metric_availability.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'MetricAvailability',
    type: {
      name: 'Composite',
      class_name: 'MetricAvailability',
      model_properties: {
        time_grain: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'timeGrain',
          type: {
            name: 'String'
          }
        },
        retention: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'retention',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end