Class: Azure::ARM::SQL::Models::ExportRequest
- Inherits:
-
Object
- Object
- Azure::ARM::SQL::Models::ExportRequest
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/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
28 29 30 |
# File 'lib/generated/azure_mgmt_sql/models/export_request.rb', line 28 def administrator_login @administrator_login end |
#administrator_login_password ⇒ String
31 32 33 |
# File 'lib/generated/azure_mgmt_sql/models/export_request.rb', line 31 def administrator_login_password @administrator_login_password end |
#authentication_type ⇒ AuthenticationType
include: ‘SQL’, ‘ADPassword’. Default value: ‘SQL’ .
35 36 37 |
# File 'lib/generated/azure_mgmt_sql/models/export_request.rb', line 35 def authentication_type @authentication_type end |
#storage_key ⇒ String
SharedAccessKey, it must be preceded with a “?.”
22 23 24 |
# File 'lib/generated/azure_mgmt_sql/models/export_request.rb', line 22 def storage_key @storage_key end |
#storage_key_type ⇒ StorageKeyType
values include: ‘StorageAccessKey’, ‘SharedAccessKey’
18 19 20 |
# File 'lib/generated/azure_mgmt_sql/models/export_request.rb', line 18 def storage_key_type @storage_key_type end |
#storage_uri ⇒ String
25 26 27 |
# File 'lib/generated/azure_mgmt_sql/models/export_request.rb', line 25 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.
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 |
# File 'lib/generated/azure_mgmt_sql/models/export_request.rb', line 42 def self.mapper() { required: false, serialized_name: 'ExportRequest', type: { name: 'Composite', class_name: 'ExportRequest', model_properties: { storage_key_type: { required: true, serialized_name: 'storageKeyType', type: { name: 'Enum', module: 'StorageKeyType' } }, storage_key: { required: true, serialized_name: 'storageKey', type: { name: 'String' } }, storage_uri: { required: true, serialized_name: 'storageUri', type: { name: 'String' } }, administrator_login: { required: true, serialized_name: 'administratorLogin', type: { name: 'String' } }, administrator_login_password: { required: true, serialized_name: 'administratorLoginPassword', type: { name: 'String' } }, authentication_type: { required: false, serialized_name: 'authenticationType', default_value: 'SQL', type: { name: 'Enum', module: 'AuthenticationType' } } } } } end |