Class: Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudApplianceConfiguration
- Inherits:
-
BaseModel
- Object
- BaseModel
- Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloudApplianceConfiguration
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/cloud_appliance_configuration.rb
Overview
The cloud appliance configuration
Instance Attribute Summary collapse
-
#acs_configuration ⇒ AcsConfiguration
The ACS configuration.
-
#cloud_platform ⇒ String
The cloud platform.
-
#model_number ⇒ String
The model number.
-
#supported_regions ⇒ Array<String>
The supported regions.
-
#supported_storage_account_types ⇒ Array<String>
The supported storage account types.
-
#supported_vm_images ⇒ Array<VmImage>
The supported virtual machine images.
-
#supported_vm_types ⇒ Array<String>
The supported virtual machine types.
Attributes inherited from BaseModel
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CloudApplianceConfiguration class as Ruby Hash.
Instance Attribute Details
#acs_configuration ⇒ AcsConfiguration
Returns The ACS configuration.
22 23 24 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/cloud_appliance_configuration.rb', line 22 def acs_configuration @acs_configuration end |
#cloud_platform ⇒ String
Returns The cloud platform.
19 20 21 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/cloud_appliance_configuration.rb', line 19 def cloud_platform @cloud_platform end |
#model_number ⇒ String
Returns The model number.
16 17 18 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/cloud_appliance_configuration.rb', line 16 def model_number @model_number end |
#supported_regions ⇒ Array<String>
Returns The supported regions.
28 29 30 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/cloud_appliance_configuration.rb', line 28 def supported_regions @supported_regions end |
#supported_storage_account_types ⇒ Array<String>
Returns The supported storage account types.
25 26 27 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/cloud_appliance_configuration.rb', line 25 def supported_storage_account_types @supported_storage_account_types end |
#supported_vm_images ⇒ Array<VmImage>
Returns The supported virtual machine images.
34 35 36 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/cloud_appliance_configuration.rb', line 34 def supported_vm_images @supported_vm_images end |
#supported_vm_types ⇒ Array<String>
Returns The supported virtual machine types.
31 32 33 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/cloud_appliance_configuration.rb', line 31 def supported_vm_types @supported_vm_types end |
Class Method Details
.mapper ⇒ Object
Mapper for CloudApplianceConfiguration class as Ruby Hash. This will be used for serialization/deserialization.
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/cloud_appliance_configuration.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CloudApplianceConfiguration', type: { name: 'Composite', class_name: 'CloudApplianceConfiguration', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, kind: { client_side_validation: true, required: false, serialized_name: 'kind', type: { name: 'Enum', module: 'Kind' } }, model_number: { client_side_validation: true, required: true, serialized_name: 'properties.modelNumber', type: { name: 'String' } }, cloud_platform: { client_side_validation: true, required: true, serialized_name: 'properties.cloudPlatform', type: { name: 'String' } }, acs_configuration: { client_side_validation: true, required: true, serialized_name: 'properties.acsConfiguration', type: { name: 'Composite', class_name: 'AcsConfiguration' } }, supported_storage_account_types: { client_side_validation: true, required: true, serialized_name: 'properties.supportedStorageAccountTypes', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, supported_regions: { client_side_validation: true, required: true, serialized_name: 'properties.supportedRegions', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, supported_vm_types: { client_side_validation: true, required: true, serialized_name: 'properties.supportedVmTypes', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, supported_vm_images: { client_side_validation: true, required: true, serialized_name: 'properties.supportedVmImages', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'VmImageElementType', type: { name: 'Composite', class_name: 'VmImage' } } } } } } } end |