Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::DataMigrationServiceStatusResponse
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::DataMigrationServiceStatusResponse
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_service_status_response.rb
Overview
Service health status
Instance Attribute Summary collapse
-
#agent_version ⇒ String
The DMS instance agent version.
-
#status ⇒ String
‘Offline’, ‘Online’, ‘Deploying’, ‘Deleting’, ‘Stopped’, ‘Stopping’, ‘Starting’, ‘FailedToStart’, ‘FailedToStop’ or ‘Failed’.
-
#supported_task_types ⇒ Array<String>
The list of supported task types.
-
#vm_size ⇒ String
‘Standard_D2_v2’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DataMigrationServiceStatusResponse class as Ruby Hash.
Instance Attribute Details
#agent_version ⇒ String
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_service_status_response.rb', line 16 def agent_version @agent_version end |
#status ⇒ String
‘Offline’, ‘Online’, ‘Deploying’, ‘Deleting’, ‘Stopped’, ‘Stopping’, ‘Starting’, ‘FailedToStart’, ‘FailedToStop’ or ‘Failed’
21 22 23 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_service_status_response.rb', line 21 def status @status end |
#supported_task_types ⇒ Array<String>
28 29 30 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_service_status_response.rb', line 28 def supported_task_types @supported_task_types end |
#vm_size ⇒ String
‘Standard_D2_v2’
25 26 27 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_service_status_response.rb', line 25 def vm_size @vm_size end |
Class Method Details
.mapper ⇒ Object
Mapper for DataMigrationServiceStatusResponse 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/data_migration_service_status_response.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DataMigrationServiceStatusResponse', type: { name: 'Composite', class_name: 'DataMigrationServiceStatusResponse', model_properties: { agent_version: { client_side_validation: true, required: false, serialized_name: 'agentVersion', type: { name: 'String' } }, status: { client_side_validation: true, required: false, serialized_name: 'status', type: { name: 'String' } }, vm_size: { client_side_validation: true, required: false, serialized_name: 'vmSize', type: { name: 'String' } }, supported_task_types: { client_side_validation: true, required: false, serialized_name: 'supportedTaskTypes', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |