Class: Azure::MediaServices::Mgmt::V2018_07_01::Models::ServiceSpecification
- Inherits:
-
Object
- Object
- Azure::MediaServices::Mgmt::V2018_07_01::Models::ServiceSpecification
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-01/generated/azure_mgmt_media_services/models/service_specification.rb
Overview
The service metric specifications.
Instance Attribute Summary collapse
-
#metric_specifications ⇒ Array<Metric>
List of metric specifications.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ServiceSpecification class as Ruby Hash.
Instance Attribute Details
#metric_specifications ⇒ Array<Metric>
Returns List of metric specifications.
16 17 18 |
# File 'lib/2018-07-01/generated/azure_mgmt_media_services/models/service_specification.rb', line 16 def metric_specifications @metric_specifications end |
Class Method Details
.mapper ⇒ Object
Mapper for ServiceSpecification class as Ruby Hash. This will be used for serialization/deserialization.
23 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/2018-07-01/generated/azure_mgmt_media_services/models/service_specification.rb', line 23 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, read_only: true, serialized_name: 'metricSpecifications', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'MetricElementType', type: { name: 'Composite', class_name: 'Metric' } } } } } } } end |