Class: Azure::Web::Mgmt::V2018_02_01::Models::ResourceMetricProperty
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2018_02_01::Models::ResourceMetricProperty
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_web/models/resource_metric_property.rb
Overview
Resource metric property.
Instance Attribute Summary collapse
-
#key ⇒ String
Key for resource metric property.
-
#value ⇒ String
Value of pair.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ResourceMetricProperty class as Ruby Hash.
Instance Attribute Details
#key ⇒ String
Returns Key for resource metric property.
16 17 18 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/resource_metric_property.rb', line 16 def key @key end |
#value ⇒ String
Returns Value of pair.
19 20 21 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/resource_metric_property.rb', line 19 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for ResourceMetricProperty class as Ruby Hash. This will be used for serialization/deserialization.
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 54 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/resource_metric_property.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ResourceMetricProperty', type: { name: 'Composite', class_name: 'ResourceMetricProperty', model_properties: { key: { client_side_validation: true, required: false, serialized_name: 'key', type: { name: 'String' } }, value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'String' } } } } } end |