Class: Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloneRequest
- Inherits:
-
Object
- Object
- Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::CloneRequest
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/clone_request.rb
Overview
The clone job request.
Instance Attribute Summary collapse
-
#backup_element ⇒ BackupElement
The backup element that is cloned.
-
#target_access_control_record_ids ⇒ Array<String>
records to be associated to the new cloned volume.
-
#target_device_id ⇒ String
target.
-
#target_volume_name ⇒ String
the backup will be cloned into.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CloneRequest class as Ruby Hash.
Instance Attribute Details
#backup_element ⇒ BackupElement
28 29 30 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/clone_request.rb', line 28 def backup_element @backup_element end |
#target_access_control_record_ids ⇒ Array<String>
records to be associated to the new cloned volume.
25 26 27 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/clone_request.rb', line 25 def target_access_control_record_ids @target_access_control_record_ids end |
#target_device_id ⇒ String
target.
17 18 19 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/clone_request.rb', line 17 def target_device_id @target_device_id end |
#target_volume_name ⇒ String
the backup will be cloned into.
21 22 23 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/clone_request.rb', line 21 def target_volume_name @target_volume_name end |
Class Method Details
.mapper ⇒ Object
Mapper for CloneRequest class as Ruby Hash. This will be used for serialization/deserialization.
35 36 37 38 39 40 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 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/clone_request.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CloneRequest', type: { name: 'Composite', class_name: 'CloneRequest', model_properties: { target_device_id: { client_side_validation: true, required: true, serialized_name: 'targetDeviceId', type: { name: 'String' } }, target_volume_name: { client_side_validation: true, required: true, serialized_name: 'targetVolumeName', type: { name: 'String' } }, target_access_control_record_ids: { client_side_validation: true, required: true, serialized_name: 'targetAccessControlRecordIds', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, backup_element: { client_side_validation: true, required: true, serialized_name: 'backupElement', type: { name: 'Composite', class_name: 'BackupElement' } } } } } end |