Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::SelectedCertificateInput
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::SelectedCertificateInput
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/selected_certificate_input.rb
Overview
Info for certificate to be exported for TDE enabled databases.
Instance Attribute Summary collapse
-
#certificate_name ⇒ String
Name of certificate to be exported.
-
#password ⇒ String
certificate.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SelectedCertificateInput class as Ruby Hash.
Instance Attribute Details
#certificate_name ⇒ String
Returns Name of certificate to be exported.
16 17 18 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/selected_certificate_input.rb', line 16 def certificate_name @certificate_name end |
#password ⇒ String
certificate.
20 21 22 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/selected_certificate_input.rb', line 20 def password @password end |
Class Method Details
.mapper ⇒ Object
Mapper for SelectedCertificateInput class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/selected_certificate_input.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SelectedCertificateInput', type: { name: 'Composite', class_name: 'SelectedCertificateInput', model_properties: { certificate_name: { client_side_validation: true, required: true, serialized_name: 'certificateName', type: { name: 'String' } }, password: { client_side_validation: true, required: true, serialized_name: 'password', type: { name: 'String' } } } } } end |