Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::QuotaName

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#localized_valueString

Returns The localized name of the quota.

Returns:

  • (String)

    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

#valueString

Returns The unlocalized name (or ID) of the quota.

Returns:

  • (String)

    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

.mapperObject

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