Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::QuotaName
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::QuotaName
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/quota_name.rb
Overview
The name of the quota
Instance Attribute Summary collapse
-
#localized_value ⇒ String
The localized name of the quota.
-
#value ⇒ String
The unlocalized name (or ID) of the quota.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for QuotaName class as Ruby Hash.
Instance Attribute Details
#localized_value ⇒ String
Returns The localized name of the quota.
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/quota_name.rb', line 16 def localized_value @localized_value end |
#value ⇒ String
Returns The unlocalized name (or ID) of the quota.
19 20 21 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/quota_name.rb', line 19 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for QuotaName 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-04-19/generated/azure_mgmt_data_migration/models/quota_name.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Quota_name', type: { name: 'Composite', class_name: 'QuotaName', model_properties: { localized_value: { client_side_validation: true, required: false, serialized_name: 'localizedValue', type: { name: 'String' } }, value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'String' } } } } } end |