class Azure::Web::Mgmt::V2015_08_01::Models::Capability
Describes the capabilities/features allowed for a specific SKU.
Attributes
name[RW]
@return [String] Name of the SKU capability.
reason[RW]
@return [String] Reason of the SKU capability.
value[RW]
@return [String] Value of the SKU capability.
Public Class Methods
mapper()
click to toggle source
Mapper for Capability
class as Ruby Hash. This will be used for serialization/deserialization.
# 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