Class: Azure::SQL::Mgmt::V2014_04_01::Models::MetricAvailability
- Inherits:
-
Object
- Object
- Azure::SQL::Mgmt::V2014_04_01::Models::MetricAvailability
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-04-01/generated/azure_mgmt_sql/models/metric_availability.rb
Overview
A metric availability value.
Instance Attribute Summary collapse
-
#retention ⇒ String
The length of retention for the database metric.
-
#time_grain ⇒ String
The granularity of the database metric.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for MetricAvailability class as Ruby Hash.
Instance Attribute Details
#retention ⇒ String
16 17 18 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/metric_availability.rb', line 16 def retention @retention end |
#time_grain ⇒ String
19 20 21 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/metric_availability.rb', line 19 def time_grain @time_grain end |
Class Method Details
.mapper ⇒ Object
Mapper for MetricAvailability class as Ruby Hash. This will be used for serialization/deserialization.
26 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 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/metric_availability.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'MetricAvailability', type: { name: 'Composite', class_name: 'MetricAvailability', model_properties: { retention: { client_side_validation: true, required: false, read_only: true, serialized_name: 'retention', type: { name: 'String' } }, time_grain: { client_side_validation: true, required: false, read_only: true, serialized_name: 'timeGrain', type: { name: 'String' } } } } } end |