Class: Azure::ARM::Storage::Models::ServiceSpecification

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_storage/models/service_specification.rb

Overview

One property of operation, include metric specifications.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#metric_specificationsArray<MetricSpecification>

operation.

Returns:



18
19
20
# File 'lib/generated/azure_mgmt_storage/models/service_specification.rb', line 18

def metric_specifications
  @metric_specifications
end

Class Method Details

.mapperObject

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



25
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
# File 'lib/generated/azure_mgmt_storage/models/service_specification.rb', line 25

def self.mapper()
  {
    required: false,
    serialized_name: 'ServiceSpecification',
    type: {
      name: 'Composite',
      class_name: 'ServiceSpecification',
      model_properties: {
        metric_specifications: {
          required: false,
          serialized_name: 'metricSpecifications',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'MetricSpecificationElementType',
                type: {
                  name: 'Composite',
                  class_name: 'MetricSpecification'
                }
            }
          }
        }
      }
    }
  }
end