Class: Azure::Signalr::Mgmt::V2018_10_01::Models::ServiceSpecification
- Inherits:
-
Object
- Object
- Azure::Signalr::Mgmt::V2018_10_01::Models::ServiceSpecification
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-10-01/generated/azure_mgmt_signalr/models/service_specification.rb
Overview
An object that describes a specification.
Instance Attribute Summary collapse
-
#log_specifications ⇒ Array<LogSpecification>
Monitoring.
-
#metric_specifications ⇒ Array<MetricSpecification>
Azure Monitoring.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ServiceSpecification class as Ruby Hash.
Instance Attribute Details
#log_specifications ⇒ Array<LogSpecification>
Monitoring.
21 22 23 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/service_specification.rb', line 21 def log_specifications @log_specifications end |
#metric_specifications ⇒ Array<MetricSpecification>
Azure Monitoring.
17 18 19 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/service_specification.rb', line 17 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.
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/2018-10-01/generated/azure_mgmt_signalr/models/service_specification.rb', line 28 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' } } } }, log_specifications: { client_side_validation: true, required: false, serialized_name: 'logSpecifications', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'LogSpecificationElementType', type: { name: 'Composite', class_name: 'LogSpecification' } } } } } } } end |