Class: Azure::Storage::Mgmt::V2017_06_01::Models::ServiceSpecification

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-06-01/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:



17
18
19
# File 'lib/2017-06-01/generated/azure_mgmt_storage/models/service_specification.rb', line 17

def metric_specifications
  @metric_specifications
end

Class Method Details

.mapperObject

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



24
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
52
53
# File 'lib/2017-06-01/generated/azure_mgmt_storage/models/service_specification.rb', line 24

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