Class: Azure::KeyVault::Mgmt::V2015_06_01::Vaults
- Inherits:
-
Object
- Object
- Azure::KeyVault::Mgmt::V2015_06_01::Vaults
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb
Overview
The Azure management API provides a RESTful set of web services that interact with Azure Key Vault.
Instance Attribute Summary collapse
-
#client ⇒ KeyVaultManagementClient
readonly
Reference to the KeyVaultManagementClient.
Instance Method Summary collapse
-
#create_or_update(resource_group_name, vault_name, parameters, custom_headers: nil) ⇒ Vault
Create or update a key vault in the specified subscription.
-
#create_or_update_async(resource_group_name, vault_name, parameters, custom_headers: nil) ⇒ Concurrent::Promise
Create or update a key vault in the specified subscription.
-
#create_or_update_with_http_info(resource_group_name, vault_name, parameters, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Create or update a key vault in the specified subscription.
-
#delete(resource_group_name, vault_name, custom_headers: nil) ⇒ Object
Deletes the specified Azure key vault.
-
#delete_async(resource_group_name, vault_name, custom_headers: nil) ⇒ Concurrent::Promise
Deletes the specified Azure key vault.
-
#delete_with_http_info(resource_group_name, vault_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Deletes the specified Azure key vault.
-
#get(resource_group_name, vault_name, custom_headers: nil) ⇒ Vault
Gets the specified Azure key vault.
-
#get_async(resource_group_name, vault_name, custom_headers: nil) ⇒ Concurrent::Promise
Gets the specified Azure key vault.
-
#get_with_http_info(resource_group_name, vault_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Gets the specified Azure key vault.
-
#initialize(client) ⇒ Vaults
constructor
Creates and initializes a new instance of the Vaults class.
-
#list(top: nil, custom_headers: nil) ⇒ Array<Resource>
The List operation gets information about the vaults associated with the subscription.
-
#list_as_lazy(top: nil, custom_headers: nil) ⇒ ResourceListResult
The List operation gets information about the vaults associated with the subscription.
-
#list_async(top: nil, custom_headers: nil) ⇒ Concurrent::Promise
The List operation gets information about the vaults associated with the subscription.
-
#list_by_resource_group(resource_group_name, top: nil, custom_headers: nil) ⇒ Array<Vault>
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
-
#list_by_resource_group_as_lazy(resource_group_name, top: nil, custom_headers: nil) ⇒ VaultListResult
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
-
#list_by_resource_group_async(resource_group_name, top: nil, custom_headers: nil) ⇒ Concurrent::Promise
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
-
#list_by_resource_group_next(next_page_link, custom_headers: nil) ⇒ VaultListResult
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
-
#list_by_resource_group_next_async(next_page_link, custom_headers: nil) ⇒ Concurrent::Promise
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
-
#list_by_resource_group_next_with_http_info(next_page_link, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
-
#list_by_resource_group_with_http_info(resource_group_name, top: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
-
#list_next(next_page_link, custom_headers: nil) ⇒ ResourceListResult
The List operation gets information about the vaults associated with the subscription.
-
#list_next_async(next_page_link, custom_headers: nil) ⇒ Concurrent::Promise
The List operation gets information about the vaults associated with the subscription.
-
#list_next_with_http_info(next_page_link, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
The List operation gets information about the vaults associated with the subscription.
-
#list_with_http_info(top: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
The List operation gets information about the vaults associated with the subscription.
Constructor Details
#initialize(client) ⇒ Vaults
Creates and initializes a new instance of the Vaults class.
18 19 20 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 18 def initialize(client) @client = client end |
Instance Attribute Details
#client ⇒ KeyVaultManagementClient (readonly)
23 24 25 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 23 def client @client end |
Instance Method Details
#create_or_update(resource_group_name, vault_name, parameters, custom_headers: nil) ⇒ Vault
Create or update a key vault in the specified subscription.
the server belongs. update the vault will be added to the HTTP request.
38 39 40 41 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 38 def create_or_update(resource_group_name, vault_name, parameters, custom_headers:nil) response = create_or_update_async(resource_group_name, vault_name, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end |
#create_or_update_async(resource_group_name, vault_name, parameters, custom_headers: nil) ⇒ Concurrent::Promise
Create or update a key vault in the specified subscription.
the server belongs. update the vault to the HTTP request.
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 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 73 def create_or_update_async(resource_group_name, vault_name, parameters, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'vault_name is nil' if vault_name.nil? fail ArgumentError, "'vault_name' should satisfy the constraint - 'Pattern': '^[a-zA-Z0-9-]{3,24}$'" if !vault_name.nil? && vault_name.match(Regexp.new('^^[a-zA-Z0-9-]{3,24}$$')).nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, 'parameters is nil' if parameters.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? # Serialize Request request_mapper = Azure::KeyVault::Mgmt::V2015_06_01::Models::VaultCreateOrUpdateParameters.mapper() request_content = @client.serialize(request_mapper, parameters) request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil path_template = 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'vaultName' => vault_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version}, body: request_content, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:put, path_template, ) promise = promise.then do |result| http_response = result.response status_code = http_response.status response_content = http_response.body unless status_code == 201 || 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 == 201 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::KeyVault::Mgmt::V2015_06_01::Models::Vault.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 # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) result_mapper = Azure::KeyVault::Mgmt::V2015_06_01::Models::Vault.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 |
#create_or_update_with_http_info(resource_group_name, vault_name, parameters, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Create or update a key vault in the specified subscription.
the server belongs. update the vault will be added to the HTTP request.
56 57 58 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 56 def create_or_update_with_http_info(resource_group_name, vault_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, vault_name, parameters, custom_headers:custom_headers).value! end |
#delete(resource_group_name, vault_name, custom_headers: nil) ⇒ Object
Deletes the specified Azure key vault.
the vault belongs. will be added to the HTTP request.
157 158 159 160 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 157 def delete(resource_group_name, vault_name, custom_headers:nil) response = delete_async(resource_group_name, vault_name, custom_headers:custom_headers).value! nil end |
#delete_async(resource_group_name, vault_name, custom_headers: nil) ⇒ Concurrent::Promise
Deletes the specified Azure key vault.
the vault belongs. to the HTTP request.
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 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 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 188 def delete_async(resource_group_name, vault_name, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'vault_name is nil' if vault_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.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.KeyVault/vaults/{vaultName}' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'vaultName' => vault_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:delete, 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? result end promise.execute end |
#delete_with_http_info(resource_group_name, vault_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Deletes the specified Azure key vault.
the vault belongs. will be added to the HTTP request.
173 174 175 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 173 def delete_with_http_info(resource_group_name, vault_name, custom_headers:nil) delete_async(resource_group_name, vault_name, custom_headers:custom_headers).value! end |
#get(resource_group_name, vault_name, custom_headers: nil) ⇒ Vault
Gets the specified Azure key vault.
the vault belongs. will be added to the HTTP request.
244 245 246 247 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 244 def get(resource_group_name, vault_name, custom_headers:nil) response = get_async(resource_group_name, vault_name, custom_headers:custom_headers).value! response.body unless response.nil? end |
#get_async(resource_group_name, vault_name, custom_headers: nil) ⇒ Concurrent::Promise
Gets the specified Azure key vault.
the vault belongs. to the HTTP request.
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 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 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 275 def get_async(resource_group_name, vault_name, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'vault_name is nil' if vault_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.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.KeyVault/vaults/{vaultName}' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'vaultName' => vault_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version}, 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::KeyVault::Mgmt::V2015_06_01::Models::Vault.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 |
#get_with_http_info(resource_group_name, vault_name, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
Gets the specified Azure key vault.
the vault belongs. will be added to the HTTP request.
260 261 262 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 260 def get_with_http_info(resource_group_name, vault_name, custom_headers:nil) get_async(resource_group_name, vault_name, custom_headers:custom_headers).value! end |
#list(top: nil, custom_headers: nil) ⇒ Array<Resource>
The List operation gets information about the vaults associated with the subscription.
will be added to the HTTP request.
439 440 441 442 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 439 def list(top:nil, custom_headers:nil) first_page = list_as_lazy(top:top, custom_headers:custom_headers) first_page.get_all_items end |
#list_as_lazy(top: nil, custom_headers: nil) ⇒ ResourceListResult
The List operation gets information about the vaults associated with the subscription.
will be added to the HTTP request.
response.
742 743 744 745 746 747 748 749 750 751 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 742 def list_as_lazy(top:nil, custom_headers:nil) response = list_async(top:top, 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(top: nil, custom_headers: nil) ⇒ Concurrent::Promise
The List operation gets information about the vaults associated with the subscription.
to the HTTP request.
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 468 def list_async(top:nil, custom_headers:nil) filter = 'resourceType eq \'Microsoft.KeyVault/vaults\'' api_version = '2015-11-01' 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}/resources' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'subscriptionId' => @client.subscription_id}, query_params: {'$filter' => filter,'$top' => top,'api-version' => api_version}, 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::KeyVault::Mgmt::V2015_06_01::Models::ResourceListResult.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_by_resource_group(resource_group_name, top: nil, custom_headers: nil) ⇒ Array<Vault>
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
the vault belongs. will be added to the HTTP request.
342 343 344 345 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 342 def list_by_resource_group(resource_group_name, top:nil, custom_headers:nil) first_page = list_by_resource_group_as_lazy(resource_group_name, top:top, custom_headers:custom_headers) first_page.get_all_items end |
#list_by_resource_group_as_lazy(resource_group_name, top: nil, custom_headers: nil) ⇒ VaultListResult
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
the vault belongs. will be added to the HTTP request.
720 721 722 723 724 725 726 727 728 729 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 720 def list_by_resource_group_as_lazy(resource_group_name, top:nil, custom_headers:nil) response = list_by_resource_group_async(resource_group_name, top:top, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_resource_group_next_async(next_page_link, custom_headers:custom_headers) end page end end |
#list_by_resource_group_async(resource_group_name, top: nil, custom_headers: nil) ⇒ Concurrent::Promise
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
the vault belongs. to the HTTP request.
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 375 def list_by_resource_group_async(resource_group_name, top:nil, custom_headers:nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, '@client.api_version is nil' if @client.api_version.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.KeyVault/vaults' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'subscriptionId' => @client.subscription_id}, query_params: {'$top' => top,'api-version' => @client.api_version}, 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::KeyVault::Mgmt::V2015_06_01::Models::VaultListResult.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_by_resource_group_next(next_page_link, custom_headers: nil) ⇒ VaultListResult
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
to List operation. will be added to the HTTP request.
533 534 535 536 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 533 def list_by_resource_group_next(next_page_link, custom_headers:nil) response = list_by_resource_group_next_async(next_page_link, custom_headers:custom_headers).value! response.body unless response.nil? end |
#list_by_resource_group_next_async(next_page_link, custom_headers: nil) ⇒ Concurrent::Promise
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
to List operation. to the HTTP request.
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 564 def list_by_resource_group_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::KeyVault::Mgmt::V2015_06_01::Models::VaultListResult.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_by_resource_group_next_with_http_info(next_page_link, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
to List operation. will be added to the HTTP request.
549 550 551 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 549 def list_by_resource_group_next_with_http_info(next_page_link, custom_headers:nil) list_by_resource_group_next_async(next_page_link, custom_headers:custom_headers).value! end |
#list_by_resource_group_with_http_info(resource_group_name, top: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
The List operation gets information about the vaults associated with the subscription and within the specified resource group.
the vault belongs. will be added to the HTTP request.
359 360 361 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 359 def list_by_resource_group_with_http_info(resource_group_name, top:nil, custom_headers:nil) list_by_resource_group_async(resource_group_name, top:top, custom_headers:custom_headers).value! end |
#list_next(next_page_link, custom_headers: nil) ⇒ ResourceListResult
The List operation gets information about the vaults associated with the subscription.
to List operation. will be added to the HTTP request.
626 627 628 629 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 626 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
The List operation gets information about the vaults associated with the subscription.
to List operation. to the HTTP request.
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 657 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::KeyVault::Mgmt::V2015_06_01::Models::ResourceListResult.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
The List operation gets information about the vaults associated with the subscription.
to List operation. will be added to the HTTP request.
642 643 644 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 642 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(top: nil, custom_headers: nil) ⇒ MsRestAzure::AzureOperationResponse
The List operation gets information about the vaults associated with the subscription.
will be added to the HTTP request.
454 455 456 |
# File 'lib/2015-06-01/generated/azure_mgmt_key_vault/vaults.rb', line 454 def list_with_http_info(top:nil, custom_headers:nil) list_async(top:top, custom_headers:custom_headers).value! end |