Class: Azure::ARM::SQL::Models::ImportExportResponse
- Inherits:
-
ProxyResource
- Object
- MsRestAzure::Resource
- ProxyResource
- Azure::ARM::SQL::Models::ImportExportResponse
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_sql/models/import_export_response.rb
Overview
Response for Import/Export Get operation.
Instance Attribute Summary collapse
-
#blob_uri ⇒ String
The blob uri.
-
#database_name ⇒ String
The name of the database.
-
#error_message ⇒ String
The error message returned from the server.
-
#last_modified_time ⇒ String
The operation status last modified time.
-
#queued_time ⇒ String
The operation queued time.
-
#request_id ⇒ Object
The request type of the operation.
-
#request_type ⇒ String
The request type of the operation.
-
#server_name ⇒ String
The name of the server.
-
#status ⇒ String
The status message returned from the server.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ImportExportResponse class as Ruby Hash.
Instance Attribute Details
#blob_uri ⇒ String
Returns The blob uri.
38 39 40 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 38 def blob_uri @blob_uri end |
#database_name ⇒ String
Returns The name of the database.
26 27 28 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 26 def database_name @database_name end |
#error_message ⇒ String
Returns The error message returned from the server.
41 42 43 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 41 def @error_message end |
#last_modified_time ⇒ String
Returns The operation status last modified time.
32 33 34 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 32 def last_modified_time @last_modified_time end |
#queued_time ⇒ String
Returns The operation queued time.
35 36 37 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 35 def queued_time @queued_time end |
#request_id ⇒ Object
Returns The request type of the operation.
20 21 22 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 20 def request_id @request_id end |
#request_type ⇒ String
Returns The request type of the operation.
17 18 19 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 17 def request_type @request_type end |
#server_name ⇒ String
Returns The name of the server.
23 24 25 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 23 def server_name @server_name end |
#status ⇒ String
Returns The status message returned from the server.
29 30 31 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 29 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for ImportExportResponse class as Ruby Hash. This will be used for serialization/deserialization.
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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/generated/azure_mgmt_sql/models/import_export_response.rb', line 48 def self.mapper() { required: false, serialized_name: 'ImportExportResponse', type: { name: 'Composite', class_name: 'ImportExportResponse', model_properties: { id: { required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, request_type: { required: false, read_only: true, serialized_name: 'properties.requestType', type: { name: 'String' } }, request_id: { required: false, read_only: true, serialized_name: 'properties.requestId', type: { name: 'String' } }, server_name: { required: false, read_only: true, serialized_name: 'properties.serverName', type: { name: 'String' } }, database_name: { required: false, read_only: true, serialized_name: 'properties.databaseName', type: { name: 'String' } }, status: { required: false, read_only: true, serialized_name: 'properties.status', type: { name: 'String' } }, last_modified_time: { required: false, read_only: true, serialized_name: 'properties.lastModifiedTime', type: { name: 'String' } }, queued_time: { required: false, read_only: true, serialized_name: 'properties.queuedTime', type: { name: 'String' } }, blob_uri: { required: false, read_only: true, serialized_name: 'properties.blobUri', type: { name: 'String' } }, error_message: { required: false, read_only: true, serialized_name: 'properties.errorMessage', type: { name: 'String' } } } } } end |