Class: Azure::RecoveryServicesBackup::Mgmt::V2016_06_01::Jobs
- Inherits:
-
Object
- Object
- Azure::RecoveryServicesBackup::Mgmt::V2016_06_01::Jobs
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb
Overview
Open API 2.0 Specs for Azure RecoveryServices Backup service
Instance Attribute Summary collapse
-
#client ⇒ RecoveryServicesBackupClient
readonly
Reference to the RecoveryServicesBackupClient.
Instance Method Summary collapse
-
#export(vault_name, resource_group_name, filter: nil, custom_headers: nil) ⇒ Object
Exports all jobs for a given Shared Access Signatures (SAS) URL.
-
#export_async(vault_name, resource_group_name, filter: nil, custom_headers: nil) ⇒ Concurrent::Promise
Exports all jobs for a given Shared Access Signatures (SAS) URL.
-
#export_with_http_info(vault_name, resource_group_name, filter: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Exports all jobs for a given Shared Access Signatures (SAS) URL.
-
#initialize(client) ⇒ Jobs
constructor
Creates and initializes a new instance of the Jobs class.
-
#list(vault_name, resource_group_name, filter: nil, skip_token: nil, custom_headers: nil) ⇒ Array<JobResource>
Provides a pageable list of jobs.
-
#list_as_lazy(vault_name, resource_group_name, filter: nil, skip_token: nil, custom_headers: nil) ⇒ JobResourceList
Provides a pageable list of jobs.
-
#list_async(vault_name, resource_group_name, filter: nil, skip_token: nil, custom_headers: nil) ⇒ Concurrent::Promise
Provides a pageable list of jobs.
-
#list_next(next_page_link, custom_headers: nil) ⇒ JobResourceList
Provides a pageable list of jobs.
-
#list_next_async(next_page_link, custom_headers: nil) ⇒ Concurrent::Promise
Provides a pageable list of jobs.
-
#list_next_with_http_info(next_page_link, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Provides a pageable list of jobs.
-
#list_with_http_info(vault_name, resource_group_name, filter: nil, skip_token: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Provides a pageable list of jobs.
Constructor Details
#initialize(client) ⇒ Jobs
Creates and initializes a new instance of the Jobs class.
21 22 23 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 21 def initialize(client) @client = client end |
Instance Attribute Details
#client ⇒ RecoveryServicesBackupClient (readonly)
Returns reference to the RecoveryServicesBackupClient.
26 27 28 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 26 def client @client end |
Instance Method Details
#export(vault_name, resource_group_name, filter: nil, custom_headers: nil) ⇒ Object
Exports all jobs for a given Shared Access Signatures (SAS) URL. The SAS URL expires within 15 minutes of its creation.
with the Recovery Services vault. Completed , Failed , CompletedWithWarnings , Cancelled , Cancelling } and backupManagementType eq {AzureIaasVM, MAB, DPM, AzureBackupServer, AzureSql } and operation eq { ConfigureBackup , Backup , Restore , DisableBackup , DeleteBackupData } and jobId eq guid and startTime eq { yyyy-mm-dd hh:mm:ss PM } and endTime eq { yyyy-mm-dd hh:mm:ss PM }. will be added to the HTTP request.
45 46 47 48 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 45 def export(vault_name, resource_group_name, filter:nil, custom_headers:nil) response = export_async(vault_name, resource_group_name, filter:filter, custom_headers:custom_headers).value! nil end |
#export_async(vault_name, resource_group_name, filter: nil, custom_headers: nil) ⇒ Concurrent::Promise
Exports all jobs for a given Shared Access Signatures (SAS) URL. The SAS URL expires within 15 minutes of its creation.
with the Recovery Services vault. Completed , Failed , CompletedWithWarnings , Cancelled , Cancelling } and backupManagementType eq {AzureIaasVM, MAB, DPM, AzureBackupServer, AzureSql } and operation eq { ConfigureBackup , Backup , Restore , DisableBackup , DeleteBackupData } and jobId eq guid and startTime eq { yyyy-mm-dd hh:mm:ss PM } and endTime eq { yyyy-mm-dd hh:mm:ss PM }. to the HTTP request.
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 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 90 def export_async(vault_name, resource_group_name, filter:nil, custom_headers:nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, 'vault_name is nil' if vault_name.nil? fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = 'Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupJobsExport' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'vaultName' => vault_name,'resourceGroupName' => resource_group_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version,'$filter' => filter}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, ) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 202 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? result end promise.execute end |
#export_with_http_info(vault_name, resource_group_name, filter: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Exports all jobs for a given Shared Access Signatures (SAS) URL. The SAS URL expires within 15 minutes of its creation.
with the Recovery Services vault. Completed , Failed , CompletedWithWarnings , Cancelled , Cancelling } and backupManagementType eq {AzureIaasVM, MAB, DPM, AzureBackupServer, AzureSql } and operation eq { ConfigureBackup , Backup , Restore , DisableBackup , DeleteBackupData } and jobId eq guid and startTime eq { yyyy-mm-dd hh:mm:ss PM } and endTime eq { yyyy-mm-dd hh:mm:ss PM }. will be added to the HTTP request.
68 69 70 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 68 def export_with_http_info(vault_name, resource_group_name, filter:nil, custom_headers:nil) export_async(vault_name, resource_group_name, filter:filter, custom_headers:custom_headers).value! end |
#list(vault_name, resource_group_name, filter: nil, skip_token: nil, custom_headers: nil) ⇒ Array<JobResource>
Provides a pageable list of jobs.
with the Recovery Services vault. of jobs based on status, type, start date, and end date. status eq { InProgress , Completed , Failed , CompletedWithWarnings , Cancelled , Cancelling } and backupManagementType eq {AzureIaasVM, MAB, DPM, AzureBackupServer, AzureSql } and operation eq { ConfigureBackup , Backup , Restore , DisableBackup , DeleteBackupData } and jobId eq guid and startTime eq { yyyy-mm-dd hh:mm:ss PM } and endTime eq { yyyy-mm-dd hh:mm:ss PM }. will be added to the HTTP request.
155 156 157 158 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 155 def list(vault_name, resource_group_name, filter:nil, skip_token:nil, custom_headers:nil) first_page = list_as_lazy(vault_name, resource_group_name, filter:filter, skip_token:skip_token, custom_headers:custom_headers) first_page.get_all_items end |
#list_as_lazy(vault_name, resource_group_name, filter: nil, skip_token: nil, custom_headers: nil) ⇒ JobResourceList
Provides a pageable list of jobs.
with the Recovery Services vault. of jobs based on status, type, start date, and end date. status eq { InProgress , Completed , Failed , CompletedWithWarnings , Cancelled , Cancelling } and backupManagementType eq {AzureIaasVM, MAB, DPM, AzureBackupServer, AzureSql } and operation eq { ConfigureBackup , Backup , Restore , DisableBackup , DeleteBackupData } and jobId eq guid and startTime eq { yyyy-mm-dd hh:mm:ss PM } and endTime eq { yyyy-mm-dd hh:mm:ss PM }. will be added to the HTTP request.
369 370 371 372 373 374 375 376 377 378 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 369 def list_as_lazy(vault_name, resource_group_name, filter:nil, skip_token:nil, custom_headers:nil) response = list_async(vault_name, resource_group_name, filter:filter, skip_token:skip_token, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_next_async(next_page_link, custom_headers:custom_headers) end page end end |
#list_async(vault_name, resource_group_name, filter: nil, skip_token: nil, custom_headers: nil) ⇒ Concurrent::Promise
Provides a pageable list of jobs.
with the Recovery Services vault. of jobs based on status, type, start date, and end date. status eq { InProgress , Completed , Failed , CompletedWithWarnings , Cancelled , Cancelling } and backupManagementType eq {AzureIaasVM, MAB, DPM, AzureBackupServer, AzureSql } and operation eq { ConfigureBackup , Backup , Restore , DisableBackup , DeleteBackupData } and jobId eq guid and startTime eq { yyyy-mm-dd hh:mm:ss PM } and endTime eq { yyyy-mm-dd hh:mm:ss PM }. to the HTTP request.
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 204 def list_async(vault_name, resource_group_name, filter:nil, skip_token:nil, custom_headers:nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, 'vault_name is nil' if vault_name.nil? fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = 'Subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupJobs' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'vaultName' => vault_name,'resourceGroupName' => resource_group_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version,'$filter' => filter,'$skipToken' => skip_token}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, path_template, ) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::RecoveryServicesBackup::Mgmt::V2016_06_01::Models::JobResourceList.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e., e.backtrace, result) end end result end promise.execute end |
#list_next(next_page_link, custom_headers: nil) ⇒ JobResourceList
Provides a pageable list of jobs.
to List operation. will be added to the HTTP request.
269 270 271 272 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 269 def list_next(next_page_link, custom_headers:nil) response = list_next_async(next_page_link, custom_headers:custom_headers).value! response.body unless response.nil? end |
#list_next_async(next_page_link, custom_headers: nil) ⇒ Concurrent::Promise
Provides a pageable list of jobs.
to List operation. to the HTTP request.
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 298 def list_next_async(next_page_link, custom_headers:nil) fail ArgumentError, 'next_page_link is nil' if next_page_link.nil? request_headers = {} request_headers['Content-Type'] = 'application/json; charset=utf-8' # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = '{nextLink}' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'nextLink' => next_page_link}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:get, path_template, ) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.new(result.request, http_response, error_model) end result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? result.correlation_request_id = http_response['x-ms-correlation-request-id'] unless http_response['x-ms-correlation-request-id'].nil? result.client_request_id = http_response['x-ms-client-request-id'] unless http_response['x-ms-client-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::RecoveryServicesBackup::Mgmt::V2016_06_01::Models::JobResourceList.mapper() result.body = @client.deserialize(result_mapper, parsed_response) rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e., e.backtrace, result) end end result end promise.execute end |
#list_next_with_http_info(next_page_link, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Provides a pageable list of jobs.
to List operation. will be added to the HTTP request.
284 285 286 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 284 def list_next_with_http_info(next_page_link, custom_headers:nil) list_next_async(next_page_link, custom_headers:custom_headers).value! end |
#list_with_http_info(vault_name, resource_group_name, filter: nil, skip_token: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Provides a pageable list of jobs.
with the Recovery Services vault. of jobs based on status, type, start date, and end date. status eq { InProgress , Completed , Failed , CompletedWithWarnings , Cancelled , Cancelling } and backupManagementType eq {AzureIaasVM, MAB, DPM, AzureBackupServer, AzureSql } and operation eq { ConfigureBackup , Backup , Restore , DisableBackup , DeleteBackupData } and jobId eq guid and startTime eq { yyyy-mm-dd hh:mm:ss PM } and endTime eq { yyyy-mm-dd hh:mm:ss PM }. will be added to the HTTP request.
180 181 182 |
# File 'lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/jobs.rb', line 180 def list_with_http_info(vault_name, resource_group_name, filter:nil, skip_token:nil, custom_headers:nil) list_async(vault_name, resource_group_name, filter:filter, skip_token:skip_token, custom_headers:custom_headers).value! end |