Class: Azure::DataShare::Mgmt::V2019_11_01::Models::OperationMetaServiceSpecification
- Inherits:
-
Object
- Object
- Azure::DataShare::Mgmt::V2019_11_01::Models::OperationMetaServiceSpecification
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-11-01/generated/azure_mgmt_datashare/models/operation_meta_service_specification.rb
Overview
The operation meta service specification
Instance Attribute Summary collapse
-
#log_specifications ⇒ Array<OperationMetaLogSpecification>
the operation.
-
#metric_specifications ⇒ Array<OperationMetaMetricSpecification>
for the operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationMetaServiceSpecification class as Ruby Hash.
Instance Attribute Details
#log_specifications ⇒ Array<OperationMetaLogSpecification>
the operation
17 18 19 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/operation_meta_service_specification.rb', line 17 def log_specifications @log_specifications end |
#metric_specifications ⇒ Array<OperationMetaMetricSpecification>
for the operation
21 22 23 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/operation_meta_service_specification.rb', line 21 def metric_specifications @metric_specifications end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationMetaServiceSpecification class as Ruby Hash. This will be used for serialization/deserialization.
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'lib/2019-11-01/generated/azure_mgmt_datashare/models/operation_meta_service_specification.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationMetaServiceSpecification', type: { name: 'Composite', class_name: 'OperationMetaServiceSpecification', model_properties: { log_specifications: { client_side_validation: true, required: false, serialized_name: 'logSpecifications', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'OperationMetaLogSpecificationElementType', type: { name: 'Composite', class_name: 'OperationMetaLogSpecification' } } } }, metric_specifications: { client_side_validation: true, required: false, serialized_name: 'metricSpecifications', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'OperationMetaMetricSpecificationElementType', type: { name: 'Composite', class_name: 'OperationMetaMetricSpecification' } } } } } } } end |