Class: Azure::Storage::Mgmt::V2021_01_01::Models::ExtendedLocation
- Inherits:
-
Object
- Object
- Azure::Storage::Mgmt::V2021_01_01::Models::ExtendedLocation
- Includes:
- MsRestAzure
- Defined in:
- lib/2021-01-01/generated/azure_mgmt_storage/models/extended_location.rb
Overview
The complex type of the extended location.
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the extended location.
-
#type ⇒ ExtendedLocationTypes
Possible values include: ‘EdgeZone’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ExtendedLocation class as Ruby Hash.
Instance Attribute Details
#name ⇒ String
Returns The name of the extended location.
16 17 18 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/extended_location.rb', line 16 def name @name end |
#type ⇒ ExtendedLocationTypes
Possible values include: ‘EdgeZone’
20 21 22 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/extended_location.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ExtendedLocation class as Ruby Hash. This will be used for serialization/deserialization.
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 55 |
# File 'lib/2021-01-01/generated/azure_mgmt_storage/models/extended_location.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExtendedLocation', type: { name: 'Composite', class_name: 'ExtendedLocation', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } } } } } end |