Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_azure_db_for_postgre_sql_sync_task_output.rb
Overview
Output for the task that validates connection to Azure Database for PostgreSQL and target server requirements
Instance Attribute Summary collapse
-
#databases ⇒ Array<String>
List of databases on target server.
-
#id ⇒ String
Result identifier.
-
#target_server_brand_version ⇒ String
Target server brand version.
-
#target_server_version ⇒ String
Version of the target server.
-
#validation_errors ⇒ Array<ReportableException>
the task.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput class as Ruby Hash.
Instance Attribute Details
#databases ⇒ Array<String>
Returns List of databases on target server.
23 24 25 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_azure_db_for_postgre_sql_sync_task_output.rb', line 23 def databases @databases end |
#id ⇒ String
Returns Result identifier.
17 18 19 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_azure_db_for_postgre_sql_sync_task_output.rb', line 17 def id @id end |
#target_server_brand_version ⇒ String
Returns Target server brand version.
26 27 28 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_azure_db_for_postgre_sql_sync_task_output.rb', line 26 def target_server_brand_version @target_server_brand_version end |
#target_server_version ⇒ String
Returns Version of the target server.
20 21 22 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_azure_db_for_postgre_sql_sync_task_output.rb', line 20 def target_server_version @target_server_version end |
#validation_errors ⇒ Array<ReportableException>
the task
30 31 32 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_azure_db_for_postgre_sql_sync_task_output.rb', line 30 def validation_errors @validation_errors end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput class as Ruby Hash. This will be used for serialization/deserialization.
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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/connect_to_target_azure_db_for_postgre_sql_sync_task_output.rb', line 38 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput', type: { name: 'Composite', class_name: 'ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, target_server_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'targetServerVersion', type: { name: 'String' } }, databases: { client_side_validation: true, required: false, read_only: true, serialized_name: 'databases', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, target_server_brand_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'targetServerBrandVersion', type: { name: 'String' } }, validation_errors: { client_side_validation: true, required: false, read_only: true, serialized_name: 'validationErrors', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ReportableExceptionElementType', type: { name: 'Composite', class_name: 'ReportableException' } } } } } } } end |