Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::GetTdeCertificatesSqlTaskInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::GetTdeCertificatesSqlTaskInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_tde_certificates_sql_task_input.rb
Overview
Input for the task that gets TDE certificates in Base64 encoded format.
Instance Attribute Summary collapse
-
#backup_file_share ⇒ FileShare
used for temporarily storing files.
-
#connection_info ⇒ SqlConnectionInfo
Connection information for SQL Server.
-
#selected_certificates ⇒ Array<SelectedCertificateInput>
names and corresponding password to use for encrypting the exported certificate.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GetTdeCertificatesSqlTaskInput class as Ruby Hash.
Instance Attribute Details
#backup_file_share ⇒ FileShare
used for temporarily storing files.
20 21 22 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_tde_certificates_sql_task_input.rb', line 20 def backup_file_share @backup_file_share end |
#connection_info ⇒ SqlConnectionInfo
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_tde_certificates_sql_task_input.rb', line 16 def connection_info @connection_info end |
#selected_certificates ⇒ Array<SelectedCertificateInput>
names and corresponding password to use for encrypting the exported certificate.
25 26 27 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_tde_certificates_sql_task_input.rb', line 25 def selected_certificates @selected_certificates end |
Class Method Details
.mapper ⇒ Object
Mapper for GetTdeCertificatesSqlTaskInput class as Ruby Hash. This will be used for serialization/deserialization.
32 33 34 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/get_tde_certificates_sql_task_input.rb', line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GetTdeCertificatesSqlTaskInput', type: { name: 'Composite', class_name: 'GetTdeCertificatesSqlTaskInput', model_properties: { connection_info: { client_side_validation: true, required: true, serialized_name: 'connectionInfo', type: { name: 'Composite', class_name: 'SqlConnectionInfo' } }, backup_file_share: { client_side_validation: true, required: true, serialized_name: 'backupFileShare', type: { name: 'Composite', class_name: 'FileShare' } }, selected_certificates: { client_side_validation: true, required: true, serialized_name: 'selectedCertificates', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'SelectedCertificateInputElementType', type: { name: 'Composite', class_name: 'SelectedCertificateInput' } } } } } } } end |