Class: OCI::KeyManagement::KmsVaultClient
- Inherits:
-
Object
- Object
- OCI::KeyManagement::KmsVaultClient
- Defined in:
- lib/oci/key_management/kms_vault_client.rb
Overview
Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults and Managing Keys.
Instance Attribute Summary collapse
-
#api_client ⇒ OCI::ApiClient
readonly
Client used to make HTTP requests.
-
#endpoint ⇒ String
readonly
Fully qualified endpoint URL.
-
#region ⇒ String
The region, which will usually correspond to a value in Regions::REGION_ENUM.
-
#retry_config ⇒ OCI::Retry::RetryConfig
readonly
The default retry configuration to apply to all operations in this service client.
Instance Method Summary collapse
-
#backup_vault(vault_id, opts = {}) ⇒ Response
Backs up an encrypted file that contains all the metadata of a vault so that you can restore the vault later.
-
#cancel_vault_deletion(vault_id, opts = {}) ⇒ Response
Cancels the scheduled deletion of the specified vault.
-
#change_vault_compartment(vault_id, change_vault_compartment_details, opts = {}) ⇒ Response
Moves a vault into a different compartment within the same tenancy.
-
#create_vault(create_vault_details, opts = {}) ⇒ Response
Creates a new vault.
-
#create_vault_replica(vault_id, create_vault_replica_details, opts = {}) ⇒ Response
Creates a replica for the vault in another region in the same realm.
-
#delete_vault_replica(vault_id, delete_vault_replica_details, opts = {}) ⇒ Response
Deletes a vault replica.
-
#get_vault(vault_id, opts = {}) ⇒ Response
Gets the specified vault's configuration information.
-
#get_vault_usage(vault_id, opts = {}) ⇒ Response
Gets the count of keys and key versions in the specified vault to calculate usage against service limits.
-
#initialize(config: nil, region: nil, endpoint: nil, signer: nil, proxy_settings: nil, retry_config: nil) ⇒ KmsVaultClient
constructor
Creates a new KmsVaultClient.
-
#list_vault_replicas(vault_id, opts = {}) ⇒ Response
Lists the replicas for a vault.
-
#list_vaults(compartment_id, opts = {}) ⇒ Response
Lists the vaults in the specified compartment.
-
#logger ⇒ Logger
The logger for this client.
-
#restore_vault_from_file(compartment_id, restore_vault_from_file_details, opts = {}) ⇒ Response
Restores a vault from an encrypted backup file.
-
#restore_vault_from_object_store(compartment_id, opts = {}) ⇒ Response
Restores a vault from an encrypted backup file stored in Oracle Cloud Infrastructure Object Storage.
-
#schedule_vault_deletion(vault_id, schedule_vault_deletion_details, opts = {}) ⇒ Response
Schedules the deletion of the specified vault.
-
#update_vault(vault_id, update_vault_details, opts = {}) ⇒ Response
Updates the properties of a vault.
Constructor Details
#initialize(config: nil, region: nil, endpoint: nil, signer: nil, proxy_settings: nil, retry_config: nil) ⇒ KmsVaultClient
Creates a new KmsVaultClient. Notes: If a config is not specified, then the global OCI.config will be used.
This client is not thread-safe
Either a region or an endpoint must be specified. If an endpoint is specified, it will be used instead of the region. A region may be specified in the config or via or the region parameter. If specified in both, then the region parameter will be used.
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 55 def initialize(config: nil, region: nil, endpoint: nil, signer: nil, proxy_settings: nil, retry_config: nil) # If the signer is an InstancePrincipalsSecurityTokenSigner or SecurityTokenSigner and no config was supplied (they are self-sufficient signers) # then create a dummy config to pass to the ApiClient constructor. If customers wish to create a client which uses instance principals # and has config (either populated programmatically or loaded from a file), they must construct that config themselves and then # pass it to this constructor. # # If there is no signer (or the signer is not an instance principals signer) and no config was supplied, this is not valid # so try and load the config from the default file. config = OCI::Config.validate_and_build_config_with_signer(config, signer) signer = OCI::Signer.config_file_auth_builder(config) if signer.nil? @api_client = OCI::ApiClient.new(config, signer, proxy_settings: proxy_settings) @retry_config = retry_config if endpoint @endpoint = endpoint + '/' else region ||= config.region region ||= signer.region if signer.respond_to?(:region) self.region = region end logger.info "KmsVaultClient endpoint set to '#{@endpoint}'." if logger end |
Instance Attribute Details
#api_client ⇒ OCI::ApiClient (readonly)
Client used to make HTTP requests.
15 16 17 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 15 def api_client @api_client end |
#endpoint ⇒ String (readonly)
Fully qualified endpoint URL
19 20 21 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 19 def endpoint @endpoint end |
#region ⇒ String
The region, which will usually correspond to a value in Regions::REGION_ENUM.
29 30 31 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 29 def region @region end |
#retry_config ⇒ OCI::Retry::RetryConfig (readonly)
The default retry configuration to apply to all operations in this service client. This can be overridden on a per-operation basis. The default retry configuration value is nil
, which means that an operation will not perform any retries
25 26 27 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 25 def retry_config @retry_config end |
Instance Method Details
#backup_vault(vault_id, opts = {}) ⇒ Response
Click here to see an example of how to use backup_vault API.
Backs up an encrypted file that contains all the metadata of a vault so that you can restore the vault later. You can backup a vault whether or not it contains keys. This operation only backs up the metadata of the vault, and does not include key metadata.
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 168 169 170 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 131 def backup_vault(vault_id, opts = {}) logger.debug 'Calling operation KmsVaultClient#backup_vault.' if logger raise "Missing the required parameter 'vault_id' when calling backup_vault." if vault_id.nil? raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}/actions/backup'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = @api_client.object_to_http_body(opts[:backup_vault_details]) # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#backup_vault') do @api_client.call_api( :POST, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'OCI::KeyManagement::Models::Vault' ) end # rubocop:enable Metrics/BlockLength end |
#cancel_vault_deletion(vault_id, opts = {}) ⇒ Response
Click here to see an example of how to use cancel_vault_deletion API.
Cancels the scheduled deletion of the specified vault. Canceling a scheduled deletion restores the vault and all keys in it to their respective states from before their scheduled deletion. All keys that were scheduled for deletion prior to vault deletion retain their lifecycle state and time of deletion.
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning write operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning write operations exceeds 10 requests per second for a given tenancy.
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 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 213 def cancel_vault_deletion(vault_id, opts = {}) logger.debug 'Calling operation KmsVaultClient#cancel_vault_deletion.' if logger raise "Missing the required parameter 'vault_id' when calling cancel_vault_deletion." if vault_id.nil? raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}/actions/cancelDeletion'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = nil # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#cancel_vault_deletion') do @api_client.call_api( :POST, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'OCI::KeyManagement::Models::Vault' ) end # rubocop:enable Metrics/BlockLength end |
#change_vault_compartment(vault_id, change_vault_compartment_details, opts = {}) ⇒ Response
Click here to see an example of how to use change_vault_compartment API.
Moves a vault into a different compartment within the same tenancy. For information about moving resources between compartments, see Moving Resources to a Different Compartment.
When provided, if-match is checked against the ETag values of the resource.
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning write operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning write operations exceeds 10 requests per second for a given tenancy.
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 329 330 331 332 333 334 335 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 296 def change_vault_compartment(vault_id, change_vault_compartment_details, opts = {}) logger.debug 'Calling operation KmsVaultClient#change_vault_compartment.' if logger raise "Missing the required parameter 'vault_id' when calling change_vault_compartment." if vault_id.nil? raise "Missing the required parameter 'change_vault_compartment_details' when calling change_vault_compartment." if change_vault_compartment_details.nil? raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}/actions/changeCompartment'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = @api_client.object_to_http_body(change_vault_compartment_details) # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#change_vault_compartment') do @api_client.call_api( :POST, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body ) end # rubocop:enable Metrics/BlockLength end |
#create_vault(create_vault_details, opts = {}) ⇒ Response
Click here to see an example of how to use create_vault API.
Creates a new vault. The type of vault you create determines key placement, pricing, and available options. Options include storage isolation, a dedicated service endpoint instead of a shared service endpoint for API calls, and either a dedicated hardware security module (HSM) or a multitenant HSM.
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning write operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning write operations exceeds 10 requests per second for a given tenancy.
372 373 374 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 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 372 def create_vault(create_vault_details, opts = {}) logger.debug 'Calling operation KmsVaultClient#create_vault.' if logger raise "Missing the required parameter 'create_vault_details' when calling create_vault." if create_vault_details.nil? path = '/20180608/vaults' operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = @api_client.object_to_http_body(create_vault_details) # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#create_vault') do @api_client.call_api( :POST, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'OCI::KeyManagement::Models::Vault' ) end # rubocop:enable Metrics/BlockLength end |
#create_vault_replica(vault_id, create_vault_replica_details, opts = {}) ⇒ Response
Click here to see an example of how to use create_vault_replica API.
Creates a replica for the vault in another region in the same realm
The API is a no-op if called for same region that a vault is already replicated to. 409 if called on a vault that is already replicated to a different region. Users need to delete existing replica first before calling it with a different region.
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning write operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning write operations exceeds 10 requests per second for a given tenancy.
454 455 456 457 458 459 460 461 462 463 464 465 466 467 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 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 454 def create_vault_replica(vault_id, create_vault_replica_details, opts = {}) logger.debug 'Calling operation KmsVaultClient#create_vault_replica.' if logger raise "Missing the required parameter 'vault_id' when calling create_vault_replica." if vault_id.nil? raise "Missing the required parameter 'create_vault_replica_details' when calling create_vault_replica." if create_vault_replica_details.nil? raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}/actions/createReplica'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = @api_client.object_to_http_body(create_vault_replica_details) # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#create_vault_replica') do @api_client.call_api( :POST, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body ) end # rubocop:enable Metrics/BlockLength end |
#delete_vault_replica(vault_id, delete_vault_replica_details, opts = {}) ⇒ Response
Click here to see an example of how to use delete_vault_replica API.
Deletes a vault replica
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning write operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning write operations exceeds 10 requests per second for a given tenancy.
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 534 def delete_vault_replica(vault_id, delete_vault_replica_details, opts = {}) logger.debug 'Calling operation KmsVaultClient#delete_vault_replica.' if logger raise "Missing the required parameter 'vault_id' when calling delete_vault_replica." if vault_id.nil? raise "Missing the required parameter 'delete_vault_replica_details' when calling delete_vault_replica." if delete_vault_replica_details.nil? raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}/actions/deleteReplica'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = @api_client.object_to_http_body(delete_vault_replica_details) # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#delete_vault_replica') do @api_client.call_api( :POST, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body ) end # rubocop:enable Metrics/BlockLength end |
#get_vault(vault_id, opts = {}) ⇒ Response
Click here to see an example of how to use get_vault API.
Gets the specified vault's configuration information.
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning read operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning read operations exceeds 10 requests per second for a given tenancy.
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 600 def get_vault(vault_id, opts = {}) logger.debug 'Calling operation KmsVaultClient#get_vault.' if logger raise "Missing the required parameter 'vault_id' when calling get_vault." if vault_id.nil? raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] # rubocop:enable Style/NegatedIf post_body = nil # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#get_vault') do @api_client.call_api( :GET, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'OCI::KeyManagement::Models::Vault' ) end # rubocop:enable Metrics/BlockLength end |
#get_vault_usage(vault_id, opts = {}) ⇒ Response
Click here to see an example of how to use get_vault_usage API.
Gets the count of keys and key versions in the specified vault to calculate usage against service limits.
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 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 658 def get_vault_usage(vault_id, opts = {}) logger.debug 'Calling operation KmsVaultClient#get_vault_usage.' if logger raise "Missing the required parameter 'vault_id' when calling get_vault_usage." if vault_id.nil? raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}/usage'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] # rubocop:enable Style/NegatedIf post_body = nil # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#get_vault_usage') do @api_client.call_api( :GET, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'OCI::KeyManagement::Models::VaultUsage' ) end # rubocop:enable Metrics/BlockLength end |
#list_vault_replicas(vault_id, opts = {}) ⇒ Response
Click here to see an example of how to use list_vault_replicas API.
Lists the replicas for a vault
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning write operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning write operations exceeds 10 requests per second for a given tenancy.
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 747 def list_vault_replicas(vault_id, opts = {}) logger.debug 'Calling operation KmsVaultClient#list_vault_replicas.' if logger raise "Missing the required parameter 'vault_id' when calling list_vault_replicas." if vault_id.nil? if opts[:sort_by] && !%w[TIMECREATED DISPLAYNAME].include?(opts[:sort_by]) raise 'Invalid value for "sort_by", must be one of TIMECREATED, DISPLAYNAME.' end if opts[:sort_order] && !%w[ASC DESC].include?(opts[:sort_order]) raise 'Invalid value for "sort_order", must be one of ASC, DESC.' end raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}/actions/listReplicas'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} query_params[:limit] = opts[:limit] if opts[:limit] query_params[:page] = opts[:page] if opts[:page] query_params[:sortBy] = opts[:sort_by] if opts[:sort_by] query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order] # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = nil # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#list_vault_replicas') do @api_client.call_api( :GET, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'Array<OCI::KeyManagement::Models::VaultReplicaSummary>' ) end # rubocop:enable Metrics/BlockLength end |
#list_vaults(compartment_id, opts = {}) ⇒ Response
Click here to see an example of how to use list_vaults API.
Lists the vaults in the specified compartment.
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning read operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning read operations exceeds 10 requests per second for a given tenancy.
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 838 def list_vaults(compartment_id, opts = {}) logger.debug 'Calling operation KmsVaultClient#list_vaults.' if logger raise "Missing the required parameter 'compartment_id' when calling list_vaults." if compartment_id.nil? if opts[:sort_by] && !%w[TIMECREATED DISPLAYNAME].include?(opts[:sort_by]) raise 'Invalid value for "sort_by", must be one of TIMECREATED, DISPLAYNAME.' end if opts[:sort_order] && !%w[ASC DESC].include?(opts[:sort_order]) raise 'Invalid value for "sort_order", must be one of ASC, DESC.' end path = '/20180608/vaults' operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} query_params[:compartmentId] = compartment_id query_params[:limit] = opts[:limit] if opts[:limit] query_params[:page] = opts[:page] if opts[:page] query_params[:sortBy] = opts[:sort_by] if opts[:sort_by] query_params[:sortOrder] = opts[:sort_order] if opts[:sort_order] # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] # rubocop:enable Style/NegatedIf post_body = nil # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#list_vaults') do @api_client.call_api( :GET, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'Array<OCI::KeyManagement::Models::VaultSummary>' ) end # rubocop:enable Metrics/BlockLength end |
#logger ⇒ Logger
Returns The logger for this client. May be nil.
94 95 96 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 94 def logger @api_client.config.logger end |
#restore_vault_from_file(compartment_id, restore_vault_from_file_details, opts = {}) ⇒ Response
Click here to see an example of how to use restore_vault_from_file API.
Restores a vault from an encrypted backup file. If a vault with the same OCID already exists, this operation returns a response with a 409 HTTP status error code.
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 931 def restore_vault_from_file(compartment_id, restore_vault_from_file_details, opts = {}) logger.debug 'Calling operation KmsVaultClient#restore_vault_from_file.' if logger raise "Missing the required parameter 'compartment_id' when calling restore_vault_from_file." if compartment_id.nil? raise "Missing the required parameter 'restore_vault_from_file_details' when calling restore_vault_from_file." if restore_vault_from_file_details.nil? path = '/20180608/vaults/actions/restoreFromFile' operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} query_params[:compartmentId] = compartment_id # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-length'] = opts[:content_length] if opts[:content_length] header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'content-md5'] = opts[:content_md5] if opts[:content_md5] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'content-type'] ||= 'application/octet-stream' header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = @api_client.object_to_http_body(restore_vault_from_file_details) # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#restore_vault_from_file') do @api_client.call_api( :POST, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'OCI::KeyManagement::Models::Vault' ) end # rubocop:enable Metrics/BlockLength end |
#restore_vault_from_object_store(compartment_id, opts = {}) ⇒ Response
Click here to see an example of how to use restore_vault_from_object_store API.
Restores a vault from an encrypted backup file stored in Oracle Cloud Infrastructure Object Storage. If a vault with the same OCID already exists, this operation returns a response with a 409 HTTP status error code.
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 1011 def restore_vault_from_object_store(compartment_id, opts = {}) logger.debug 'Calling operation KmsVaultClient#restore_vault_from_object_store.' if logger raise "Missing the required parameter 'compartment_id' when calling restore_vault_from_object_store." if compartment_id.nil? path = '/20180608/vaults/actions/restoreFromObjectStore' operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} query_params[:compartmentId] = compartment_id # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = @api_client.object_to_http_body(opts[:restore_vault_from_object_store_details]) # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#restore_vault_from_object_store') do @api_client.call_api( :POST, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'OCI::KeyManagement::Models::Vault' ) end # rubocop:enable Metrics/BlockLength end |
#schedule_vault_deletion(vault_id, schedule_vault_deletion_details, opts = {}) ⇒ Response
Click here to see an example of how to use schedule_vault_deletion API.
Schedules the deletion of the specified vault. This sets the lifecycle state of the vault and all keys in it that are not already scheduled for deletion to PENDING_DELETION
and then deletes them after the retention period ends. The lifecycle state and time of deletion for keys already scheduled for deletion won't change. If any keys in the vault are scheduled to be deleted after the specified time of deletion for the vault, the call is rejected with the error code 409.
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning write operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning write operations exceeds 10 requests per second for a given tenancy.
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 1095 def schedule_vault_deletion(vault_id, schedule_vault_deletion_details, opts = {}) logger.debug 'Calling operation KmsVaultClient#schedule_vault_deletion.' if logger raise "Missing the required parameter 'vault_id' when calling schedule_vault_deletion." if vault_id.nil? raise "Missing the required parameter 'schedule_vault_deletion_details' when calling schedule_vault_deletion." if schedule_vault_deletion_details.nil? raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}/actions/scheduleDeletion'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] header_params[:'opc-retry-token'] = opts[:opc_retry_token] if opts[:opc_retry_token] # rubocop:enable Style/NegatedIf header_params[:'opc-retry-token'] ||= OCI::Retry.generate_opc_retry_token post_body = @api_client.object_to_http_body(schedule_vault_deletion_details) # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#schedule_vault_deletion') do @api_client.call_api( :POST, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'OCI::KeyManagement::Models::Vault' ) end # rubocop:enable Metrics/BlockLength end |
#update_vault(vault_id, update_vault_details, opts = {}) ⇒ Response
Click here to see an example of how to use update_vault API.
Updates the properties of a vault. Specifically, you can update the displayName
, freeformTags
, and definedTags
properties. Furthermore, the vault must be in an ACTIVE or CREATING state to be updated.
As a provisioning operation, this call is subject to a Key Management limit that applies to the total number of requests across all provisioning write operations. Key Management might throttle this call to reject an otherwise valid request when the total rate of provisioning write operations exceeds 10 requests per second for a given tenancy.
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 |
# File 'lib/oci/key_management/kms_vault_client.rb', line 1171 def update_vault(vault_id, update_vault_details, opts = {}) logger.debug 'Calling operation KmsVaultClient#update_vault.' if logger raise "Missing the required parameter 'vault_id' when calling update_vault." if vault_id.nil? raise "Missing the required parameter 'update_vault_details' when calling update_vault." if update_vault_details.nil? raise "Parameter value for 'vault_id' must not be blank" if OCI::Internal::Util.blank_string?(vault_id) path = '/20180608/vaults/{vaultId}'.sub('{vaultId}', vault_id.to_s) operation_signing_strategy = :standard # rubocop:disable Style/NegatedIf # Query Params query_params = {} # Header Params header_params = {} header_params[:accept] = 'application/json' header_params[:'content-type'] = 'application/json' header_params[:'if-match'] = opts[:if_match] if opts[:if_match] header_params[:'opc-request-id'] = opts[:opc_request_id] if opts[:opc_request_id] # rubocop:enable Style/NegatedIf post_body = @api_client.object_to_http_body(update_vault_details) # rubocop:disable Metrics/BlockLength OCI::Retry.(applicable_retry_config(opts), call_name: 'KmsVaultClient#update_vault') do @api_client.call_api( :PUT, path, endpoint, header_params: header_params, query_params: query_params, operation_signing_strategy: operation_signing_strategy, body: post_body, return_type: 'OCI::KeyManagement::Models::Vault' ) end # rubocop:enable Metrics/BlockLength end |