Class: Azure::Web::Mgmt::V2015_08_01::Models::Capability
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2015_08_01::Models::Capability
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-08-01/generated/azure_mgmt_web/models/capability.rb
Overview
Describes the capabilities/features allowed for a specific SKU.
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the SKU capability.
-
#reason ⇒ String
Reason of the SKU capability.
-
#value ⇒ String
Value of the SKU capability.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Capability class as Ruby Hash.
Instance Attribute Details
#name ⇒ String
16 17 18 |
# File 'lib/2015-08-01/generated/azure_mgmt_web/models/capability.rb', line 16 def name @name end |
#reason ⇒ String
22 23 24 |
# File 'lib/2015-08-01/generated/azure_mgmt_web/models/capability.rb', line 22 def reason @reason end |
#value ⇒ String
19 20 21 |
# File 'lib/2015-08-01/generated/azure_mgmt_web/models/capability.rb', line 19 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for Capability class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2015-08-01/generated/azure_mgmt_web/models/capability.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Capability', type: { name: 'Composite', class_name: 'Capability', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'String' } }, reason: { client_side_validation: true, required: false, serialized_name: 'reason', type: { name: 'String' } } } } } end |