Class: Azure::SQL::Mgmt::V2014_04_01::Models::ExportRequest
- Inherits:
-
Object
- Object
- Azure::SQL::Mgmt::V2014_04_01::Models::ExportRequest
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-04-01/generated/azure_mgmt_sql/models/export_request.rb
Overview
Export database parameters.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#administrator_login ⇒ String
The name of the SQL administrator.
-
#administrator_login_password ⇒ String
The password of the SQL administrator.
-
#authentication_type ⇒ AuthenticationType
include: ‘SQL’, ‘ADPassword’.
-
#storage_key ⇒ String
SharedAccessKey, it must be preceded with a “?.”.
-
#storage_key_type ⇒ StorageKeyType
values include: ‘StorageAccessKey’, ‘SharedAccessKey’.
-
#storage_uri ⇒ String
The storage uri to use.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ExportRequest class as Ruby Hash.
Instance Attribute Details
#administrator_login ⇒ String
Returns The name of the SQL administrator.
27 28 29 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/export_request.rb', line 27 def administrator_login @administrator_login end |
#administrator_login_password ⇒ String
Returns The password of the SQL administrator.
30 31 32 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/export_request.rb', line 30 def administrator_login_password @administrator_login_password end |
#authentication_type ⇒ AuthenticationType
include: ‘SQL’, ‘ADPassword’. Default value: ‘SQL’ .
34 35 36 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/export_request.rb', line 34 def authentication_type @authentication_type end |
#storage_key ⇒ String
SharedAccessKey, it must be preceded with a “?.”
21 22 23 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/export_request.rb', line 21 def storage_key @storage_key end |
#storage_key_type ⇒ StorageKeyType
values include: ‘StorageAccessKey’, ‘SharedAccessKey’
17 18 19 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/export_request.rb', line 17 def storage_key_type @storage_key_type end |
#storage_uri ⇒ String
Returns The storage uri to use.
24 25 26 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/export_request.rb', line 24 def storage_uri @storage_uri end |
Class Method Details
.mapper ⇒ Object
Mapper for ExportRequest class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/export_request.rb', line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExportRequest', type: { name: 'Composite', class_name: 'ExportRequest', model_properties: { storage_key_type: { client_side_validation: true, required: true, serialized_name: 'storageKeyType', type: { name: 'Enum', module: 'StorageKeyType' } }, storage_key: { client_side_validation: true, required: true, serialized_name: 'storageKey', type: { name: 'String' } }, storage_uri: { client_side_validation: true, required: true, serialized_name: 'storageUri', type: { name: 'String' } }, administrator_login: { client_side_validation: true, required: true, serialized_name: 'administratorLogin', type: { name: 'String' } }, administrator_login_password: { client_side_validation: true, required: true, serialized_name: 'administratorLoginPassword', type: { name: 'String' } }, authentication_type: { client_side_validation: true, required: false, serialized_name: 'authenticationType', default_value: 'SQL', type: { name: 'Enum', module: 'AuthenticationType' } } } } } end |