Class: Azure::SQL::Mgmt::V2014_04_01::Models::ImportExportResponse
- Inherits:
-
ProxyResource
- Object
- Resource
- ProxyResource
- Azure::SQL::Mgmt::V2014_04_01::Models::ImportExportResponse
- Includes:
- MsRestAzure
- Defined in:
- lib/2014-04-01/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.
Attributes inherited from Resource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ImportExportResponse class as Ruby Hash.
Methods inherited from Resource
Instance Attribute Details
#blob_uri ⇒ String
Returns The blob uri.
37 38 39 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 37 def blob_uri @blob_uri end |
#database_name ⇒ String
Returns The name of the database.
25 26 27 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 25 def database_name @database_name end |
#error_message ⇒ String
Returns The error message returned from the server.
40 41 42 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 40 def end |
#last_modified_time ⇒ String
Returns The operation status last modified time.
31 32 33 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 31 def last_modified_time @last_modified_time end |
#queued_time ⇒ String
Returns The operation queued time.
34 35 36 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 34 def queued_time @queued_time end |
#request_id ⇒ Object
Returns The request type of the operation.
19 20 21 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 19 def request_id @request_id end |
#request_type ⇒ String
Returns The request type of the operation.
16 17 18 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 16 def request_type @request_type end |
#server_name ⇒ String
Returns The name of the server.
22 23 24 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 22 def server_name @server_name end |
#status ⇒ String
Returns The status message returned from the server.
28 29 30 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 28 def status @status end |
Class Method Details
.mapper ⇒ Object
Mapper for ImportExportResponse class as Ruby Hash. This will be used for serialization/deserialization.
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 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 156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/2014-04-01/generated/azure_mgmt_sql/models/import_export_response.rb', line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ImportExportResponse', type: { name: 'Composite', class_name: 'ImportExportResponse', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, request_type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.requestType', type: { name: 'String' } }, request_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.requestId', type: { name: 'String' } }, server_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.serverName', type: { name: 'String' } }, database_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.databaseName', type: { name: 'String' } }, status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.status', type: { name: 'String' } }, last_modified_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.lastModifiedTime', type: { name: 'String' } }, queued_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.queuedTime', type: { name: 'String' } }, blob_uri: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.blobUri', type: { name: 'String' } }, error_message: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.errorMessage', type: { name: 'String' } } } } } end |