Class: Aws::SecretsManager::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::SecretsManager::Client
- Includes:
- ClientStubs
- Defined in:
- lib/aws-sdk-secretsmanager/client.rb
Overview
An API client for SecretsManager. To construct a client, you need to configure a `:region` and `:credentials`.
client = Aws::SecretsManager::Client.new(
region: region_name,
credentials: credentials,
# ...
)
For details on configuring region and credentials see the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
See #initialize for a full list of supported configuration options.
Class Attribute Summary collapse
- .identifier ⇒ Object readonly private
API Operations collapse
-
#cancel_rotate_secret(params = {}) ⇒ Types::CancelRotateSecretResponse
Turns off automatic rotation, and if a rotation is currently in progress, cancels the rotation.
-
#create_secret(params = {}) ⇒ Types::CreateSecretResponse
Creates a new secret.
-
#delete_resource_policy(params = {}) ⇒ Types::DeleteResourcePolicyResponse
Deletes the resource-based permission policy attached to the secret.
-
#delete_secret(params = {}) ⇒ Types::DeleteSecretResponse
Deletes a secret and all of its versions.
-
#describe_secret(params = {}) ⇒ Types::DescribeSecretResponse
Retrieves the details of a secret.
-
#get_random_password(params = {}) ⇒ Types::GetRandomPasswordResponse
Generates a random password.
-
#get_resource_policy(params = {}) ⇒ Types::GetResourcePolicyResponse
Retrieves the JSON text of the resource-based policy document attached to the secret.
-
#get_secret_value(params = {}) ⇒ Types::GetSecretValueResponse
Retrieves the contents of the encrypted fields `SecretString` or `SecretBinary` from the specified version of a secret, whichever contains content.
-
#list_secret_version_ids(params = {}) ⇒ Types::ListSecretVersionIdsResponse
Lists the versions of a secret.
-
#list_secrets(params = {}) ⇒ Types::ListSecretsResponse
Lists the secrets that are stored by Secrets Manager in the Amazon Web Services account, not including secrets that are marked for deletion.
-
#put_resource_policy(params = {}) ⇒ Types::PutResourcePolicyResponse
Attaches a resource-based permission policy to a secret.
-
#put_secret_value(params = {}) ⇒ Types::PutSecretValueResponse
Creates a new version with a new encrypted secret value and attaches it to the secret.
-
#remove_regions_from_replication(params = {}) ⇒ Types::RemoveRegionsFromReplicationResponse
For a secret that is replicated to other Regions, deletes the secret replicas from the Regions you specify.
-
#replicate_secret_to_regions(params = {}) ⇒ Types::ReplicateSecretToRegionsResponse
Replicates the secret to a new Regions.
-
#restore_secret(params = {}) ⇒ Types::RestoreSecretResponse
Cancels the scheduled deletion of a secret by removing the `DeletedDate` time stamp.
-
#rotate_secret(params = {}) ⇒ Types::RotateSecretResponse
Configures and starts the asynchronous process of rotating the secret.
-
#stop_replication_to_replica(params = {}) ⇒ Types::StopReplicationToReplicaResponse
Removes the link between the replica secret and the primary secret and promotes the replica to a primary secret in the replica Region.
-
#tag_resource(params = {}) ⇒ Struct
Attaches tags to a secret.
-
#untag_resource(params = {}) ⇒ Struct
Removes specific tags from a secret.
-
#update_secret(params = {}) ⇒ Types::UpdateSecretResponse
Modifies the details of a secret, including metadata and the secret value.
-
#update_secret_version_stage(params = {}) ⇒ Types::UpdateSecretVersionStageResponse
Modifies the staging labels attached to a version of a secret.
-
#validate_resource_policy(params = {}) ⇒ Types::ValidateResourcePolicyResponse
Validates that a resource policy does not grant a wide range of principals access to your secret.
Class Method Summary collapse
- .errors_module ⇒ Object private
Instance Method Summary collapse
- #build_request(operation_name, params = {}) ⇒ Object private
-
#initialize(options) ⇒ Client
constructor
A new instance of Client.
- #waiter_names ⇒ Object deprecated private Deprecated.
Constructor Details
#initialize(options) ⇒ Client
Returns a new instance of Client.
375 376 377 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 375 def initialize(*args) super end |
Class Attribute Details
.identifier ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
3066 3067 3068 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 3066 def identifier @identifier end |
Class Method Details
.errors_module ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
3069 3070 3071 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 3069 def errors_module Errors end |
Instance Method Details
#build_request(operation_name, params = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 3044 def build_request(operation_name, params = {}) handlers = @handlers.for(operation_name) context = Seahorse::Client::RequestContext.new( operation_name: operation_name, operation: config.api.operation(operation_name), client: self, params: params, config: config) context[:gem_name] = 'aws-sdk-secretsmanager' context[:gem_version] = '1.73.0' Seahorse::Client::Request.new(handlers, context) end |
#cancel_rotate_secret(params = {}) ⇒ Types::CancelRotateSecretResponse
Turns off automatic rotation, and if a rotation is currently in progress, cancels the rotation.
If you cancel a rotation in progress, it can leave the `VersionStage` labels in an unexpected state. You might need to remove the staging label `AWSPENDING` from the partially created version. You also need to determine whether to roll back to the previous version of the secret by moving the staging label `AWSCURRENT` to the version that has `AWSPENDING`. To determine which version has a specific staging label, call ListSecretVersionIds. Then use UpdateSecretVersionStage to change staging labels. For more information, see [How rotation works].
To turn on automatic rotation again, call RotateSecret.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:CancelRotateSecret`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/rotate-secrets_how.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
461 462 463 464 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 461 def cancel_rotate_secret(params = {}, = {}) req = build_request(:cancel_rotate_secret, params) req.send_request() end |
#create_secret(params = {}) ⇒ Types::CreateSecretResponse
Creates a new secret. A secret can be a password, a set of credentials such as a user name and password, an OAuth token, or other secret information that you store in an encrypted form in Secrets Manager. The secret also includes the connection information to access a database or other service, which Secrets Manager doesn't encrypt. A secret in Secrets Manager consists of both the protected secret data and the important information needed to manage the secret.
For secrets that use *managed rotation*, you need to create the secret through the managing service. For more information, see [Secrets Manager secrets managed by other Amazon Web Services services].
For information about creating a secret in the console, see [Create a secret].
To create a secret, you can provide the secret value to be encrypted in either the `SecretString` parameter or the `SecretBinary` parameter, but not both. If you include `SecretString` or `SecretBinary` then Secrets Manager creates an initial secret version and automatically attaches the staging label `AWSCURRENT` to it.
For database credentials you want to rotate, for Secrets Manager to be able to rotate the secret, you must make sure the JSON you store in the `SecretString` matches the [JSON structure of a database secret].
If you don't specify an KMS encryption key, Secrets Manager uses the Amazon Web Services managed key `aws/secretsmanager`. If this key doesn't already exist in your account, then Secrets Manager creates it for you automatically. All users and roles in the Amazon Web Services account automatically have access to use `aws/secretsmanager`. Creating `aws/secretsmanager` can result in a one-time significant delay in returning the result.
If the secret is in a different Amazon Web Services account from the credentials calling the API, then you can't use `aws/secretsmanager` to encrypt the secret, and you must create and use a customer managed KMS key.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters except `SecretBinary` or `SecretString` because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:CreateSecret`. If you include tags in the secret, you also need `secretsmanager:TagResource`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
To encrypt the secret with a KMS key other than `aws/secretsmanager`, you need `kms:GenerateDataKey` and `kms:Decrypt` permission to the key.
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/service-linked-secrets.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/manage_create-basic-secret.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_secret_json_structure.html [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [5]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [6]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
760 761 762 763 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 760 def create_secret(params = {}, = {}) req = build_request(:create_secret, params) req.send_request() end |
#delete_resource_policy(params = {}) ⇒ Types::DeleteResourcePolicyResponse
Deletes the resource-based permission policy attached to the secret. To attach a policy to a secret, use PutResourcePolicy.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:DeleteResourcePolicy`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
829 830 831 832 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 829 def delete_resource_policy(params = {}, = {}) req = build_request(:delete_resource_policy, params) req.send_request() end |
#delete_secret(params = {}) ⇒ Types::DeleteSecretResponse
Deletes a secret and all of its versions. You can specify a recovery window during which you can restore the secret. The minimum recovery window is 7 days. The default recovery window is 30 days. Secrets Manager attaches a `DeletionDate` stamp to the secret that specifies the end of the recovery window. At the end of the recovery window, Secrets Manager deletes the secret permanently.
You can't delete a primary secret that is replicated to other Regions. You must first delete the replicas using RemoveRegionsFromReplication, and then delete the primary secret. When you delete a replica, it is deleted immediately.
You can't directly delete a version of a secret. Instead, you remove all staging labels from the version using UpdateSecretVersionStage. This marks the version as deprecated, and then Secrets Manager can automatically delete the version in the background.
To determine whether an application still uses a secret, you can create an Amazon CloudWatch alarm to alert you to any attempts to access a secret during the recovery window. For more information, see [ Monitor secrets scheduled for deletion].
Secrets Manager performs the permanent secret deletion at the end of the waiting period as a background task with low priority. There is no guarantee of a specific time after the recovery window for the permanent delete to occur.
At any time before recovery window ends, you can use RestoreSecret to remove the `DeletionDate` and cancel the deletion of the secret.
When a secret is scheduled for deletion, you cannot retrieve the secret value. You must first cancel the deletion with RestoreSecret and then you can retrieve the secret.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:DeleteSecret`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/monitoring_cloudwatch_deleted-secrets.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
962 963 964 965 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 962 def delete_secret(params = {}, = {}) req = build_request(:delete_secret, params) req.send_request() end |
#describe_secret(params = {}) ⇒ Types::DescribeSecretResponse
Retrieves the details of a secret. It does not include the encrypted secret value. Secrets Manager only returns fields that have a value in the response.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:DescribeSecret`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
1105 1106 1107 1108 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 1105 def describe_secret(params = {}, = {}) req = build_request(:describe_secret, params) req.send_request() end |
#get_random_password(params = {}) ⇒ Types::GetRandomPasswordResponse
Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:GetRandomPassword`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
1207 1208 1209 1210 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 1207 def get_random_password(params = {}, = {}) req = build_request(:get_random_password, params) req.send_request() end |
#get_resource_policy(params = {}) ⇒ Types::GetResourcePolicyResponse
Retrieves the JSON text of the resource-based policy document attached to the secret. For more information about permissions policies attached to a secret, see [Permissions policies attached to a secret].
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:GetResourcePolicy`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access_resource-policies.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
1282 1283 1284 1285 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 1282 def get_resource_policy(params = {}, = {}) req = build_request(:get_resource_policy, params) req.send_request() end |
#get_secret_value(params = {}) ⇒ Types::GetSecretValueResponse
Retrieves the contents of the encrypted fields `SecretString` or `SecretBinary` from the specified version of a secret, whichever contains content.
We recommend that you cache your secret values by using client-side caching. Caching secrets improves speed and reduces your costs. For more information, see [Cache secrets for your applications].
To retrieve the previous version of a secret, use `VersionStage` and specify AWSPREVIOUS. To revert to the previous version of a secret, call [UpdateSecretVersionStage].
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:GetSecretValue`. If the secret is encrypted using a customer-managed key instead of the Amazon Web Services managed key `aws/secretsmanager`, then you also need `kms:Decrypt` permissions for that key. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieving-secrets.html [2]: docs.aws.amazon.com/cli/latest/reference/secretsmanager/update-secret-version-stage.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [5]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
1406 1407 1408 1409 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 1406 def get_secret_value(params = {}, = {}) req = build_request(:get_secret_value, params) req.send_request() end |
#list_secret_version_ids(params = {}) ⇒ Types::ListSecretVersionIdsResponse
Lists the versions of a secret. Secrets Manager uses staging labels to indicate the different versions of a secret. For more information, see [ Secrets Manager concepts: Versions].
To list the secrets in the account, use ListSecrets.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:ListSecretVersionIds`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/getting-started.html#term_version [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1533 1534 1535 1536 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 1533 def list_secret_version_ids(params = {}, = {}) req = build_request(:list_secret_version_ids, params) req.send_request() end |
#list_secrets(params = {}) ⇒ Types::ListSecretsResponse
Lists the secrets that are stored by Secrets Manager in the Amazon Web Services account, not including secrets that are marked for deletion. To see secrets marked for deletion, use the Secrets Manager console.
ListSecrets is eventually consistent, however it might not reflect changes from the last five minutes. To get the latest information for a specific secret, use DescribeSecret.
To list the versions of a secret, use ListSecretVersionIds.
To get the secret value from `SecretString` or `SecretBinary`, call GetSecretValue.
For information about finding secrets in the console, see [Find secrets in Secrets Manager].
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:ListSecrets`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/manage_search-secret.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1681 1682 1683 1684 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 1681 def list_secrets(params = {}, = {}) req = build_request(:list_secrets, params) req.send_request() end |
#put_resource_policy(params = {}) ⇒ Types::PutResourcePolicyResponse
Attaches a resource-based permission policy to a secret. A resource-based policy is optional. For more information, see
- Authentication and access control for Secrets Manager][1
-
For information about attaching a policy in the console, see [Attach a permissions policy to a secret].
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:PutResourcePolicy`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access_resource-based-policies.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions
1770 1771 1772 1773 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 1770 def put_resource_policy(params = {}, = {}) req = build_request(:put_resource_policy, params) req.send_request() end |
#put_secret_value(params = {}) ⇒ Types::PutSecretValueResponse
Creates a new version with a new encrypted secret value and attaches it to the secret. The version can contain a new `SecretString` value or a new `SecretBinary` value.
We recommend you avoid calling `PutSecretValue` at a sustained rate of more than once every 10 minutes. When you update the secret value, Secrets Manager creates a new version of the secret. Secrets Manager removes outdated versions when there are more than 100, but it does not remove versions created less than 24 hours ago. If you call `PutSecretValue` more than once every 10 minutes, you create more versions than Secrets Manager removes, and you will reach the quota for secret versions.
You can specify the staging labels to attach to the new version in `VersionStages`. If you don't include `VersionStages`, then Secrets Manager automatically moves the staging label `AWSCURRENT` to this version. If this operation creates the first version for the secret, then Secrets Manager automatically attaches the staging label `AWSCURRENT` to it. If this operation moves the staging label `AWSCURRENT` from another version to this version, then Secrets Manager also automatically moves the staging label `AWSPREVIOUS` to the version that `AWSCURRENT` was removed from.
This operation is idempotent. If you call this operation with a `ClientRequestToken` that matches an existing version's VersionId, and you specify the same secret data, the operation succeeds but does nothing. However, if the secret data is different, then the operation fails because you can't modify an existing version; you can only create new ones.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters except `SecretBinary` or `SecretString` because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:PutSecretValue`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
1958 1959 1960 1961 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 1958 def put_secret_value(params = {}, = {}) req = build_request(:put_secret_value, params) req.send_request() end |
#remove_regions_from_replication(params = {}) ⇒ Types::RemoveRegionsFromReplicationResponse
For a secret that is replicated to other Regions, deletes the secret replicas from the Regions you specify.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:RemoveRegionsFromReplication`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
2014 2015 2016 2017 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 2014 def remove_regions_from_replication(params = {}, = {}) req = build_request(:remove_regions_from_replication, params) req.send_request() end |
#replicate_secret_to_regions(params = {}) ⇒ Types::ReplicateSecretToRegionsResponse
Replicates the secret to a new Regions. See [Multi-Region secrets].
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:ReplicateSecretToRegions`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/create-manage-multi-region-secrets.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
2080 2081 2082 2083 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 2080 def replicate_secret_to_regions(params = {}, = {}) req = build_request(:replicate_secret_to_regions, params) req.send_request() end |
#restore_secret(params = {}) ⇒ Types::RestoreSecretResponse
Cancels the scheduled deletion of a secret by removing the `DeletedDate` time stamp. You can access a secret again after it has been restored.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:RestoreSecret`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
2149 2150 2151 2152 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 2149 def restore_secret(params = {}, = {}) req = build_request(:restore_secret, params) req.send_request() end |
#rotate_secret(params = {}) ⇒ Types::RotateSecretResponse
Configures and starts the asynchronous process of rotating the secret. For information about rotation, see [Rotate secrets] in the *Secrets Manager User Guide*. If you include the configuration parameters, the operation sets the values for the secret and then immediately starts a rotation. If you don't include the configuration parameters, the operation starts a rotation with the values already stored in the secret.
When rotation is successful, the `AWSPENDING` staging label might be attached to the same version as the `AWSCURRENT` version, or it might not be attached to any version. If the `AWSPENDING` staging label is present but not attached to the same version as `AWSCURRENT`, then any later invocation of `RotateSecret` assumes that a previous rotation request is still in progress and returns an error. When rotation is unsuccessful, the `AWSPENDING` staging label might be attached to an empty secret version. For more information, see [Troubleshoot rotation] in the *Secrets Manager User Guide*.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:RotateSecret`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager]. You also need `lambda:InvokeFunction` permissions on the rotation function. For more information, see [ Permissions for rotation].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/rotating-secrets.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/troubleshoot_rotation.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [5]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html [6]: docs.aws.amazon.com/secretsmanager/latest/userguide/rotating-secrets-required-permissions-function.html
2331 2332 2333 2334 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 2331 def rotate_secret(params = {}, = {}) req = build_request(:rotate_secret, params) req.send_request() end |
#stop_replication_to_replica(params = {}) ⇒ Types::StopReplicationToReplicaResponse
Removes the link between the replica secret and the primary secret and promotes the replica to a primary secret in the replica Region.
You must call this operation from the Region in which you want to promote the replica to a primary secret.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:StopReplicationToReplica`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
2379 2380 2381 2382 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 2379 def stop_replication_to_replica(params = {}, = {}) req = build_request(:stop_replication_to_replica, params) req.send_request() end |
#tag_resource(params = {}) ⇒ Struct
Attaches tags to a secret. Tags consist of a key name and a value. Tags are part of the secret's metadata. They are not associated with specific versions of the secret. This operation appends tags to the existing list of tags.
The following restrictions apply to tags:
-
Maximum number of tags per secret: 50
-
Maximum key length: 127 Unicode characters in UTF-8
-
Maximum value length: 255 Unicode characters in UTF-8
-
Tag keys and values are case sensitive.
-
Do not use the `aws:` prefix in your tag names or values because Amazon Web Services reserves it for Amazon Web Services use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit.
-
If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
If you use tags as part of your security strategy, then adding or removing a tag can change permissions. If successfully completing this operation would result in you losing your permissions for this secret, then the operation is blocked and returns an Access Denied error.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:TagResource`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
2493 2494 2495 2496 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 2493 def tag_resource(params = {}, = {}) req = build_request(:tag_resource, params) req.send_request() end |
#untag_resource(params = {}) ⇒ Struct
Removes specific tags from a secret.
This operation is idempotent. If a requested tag is not attached to the secret, no error is returned and the secret metadata is unchanged.
If you use tags as part of your security strategy, then removing a tag can change permissions. If successfully completing this operation would result in you losing your permissions for this secret, then the operation is blocked and returns an Access Denied error.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:UntagResource`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
2575 2576 2577 2578 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 2575 def untag_resource(params = {}, = {}) req = build_request(:untag_resource, params) req.send_request() end |
#update_secret(params = {}) ⇒ Types::UpdateSecretResponse
Modifies the details of a secret, including metadata and the secret value. To change the secret value, you can also use PutSecretValue.
To change the rotation configuration of a secret, use RotateSecret instead.
To change a secret so that it is managed by another service, you need to recreate the secret in that service. See [Secrets Manager secrets managed by other Amazon Web Services services].
We recommend you avoid calling `UpdateSecret` at a sustained rate of more than once every 10 minutes. When you call `UpdateSecret` to update the secret value, Secrets Manager creates a new version of the secret. Secrets Manager removes outdated versions when there are more than 100, but it does not remove versions created less than 24 hours ago. If you update the secret value more than once every 10 minutes, you create more versions than Secrets Manager removes, and you will reach the quota for secret versions.
If you include `SecretString` or `SecretBinary` to create a new secret version, Secrets Manager automatically moves the staging label `AWSCURRENT` to the new version. Then it attaches the label `AWSPREVIOUS` to the version that `AWSCURRENT` was removed from.
If you call this operation with a `ClientRequestToken` that matches an existing version's `VersionId`, the operation results in an error. You can't modify an existing version, you can only create a new version. To remove a version, remove all staging labels from it. See UpdateSecretVersionStage.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters except `SecretBinary` or `SecretString` because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:UpdateSecret`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager]. If you use a customer managed key, you must also have `kms:GenerateDataKey` and `kms:Decrypt` permissions on the key. For more information, see [ Secret encryption and decryption].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/service-linked-secrets.html [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html [5]: docs.aws.amazon.com/secretsmanager/latest/userguide/security-encryption.html
2792 2793 2794 2795 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 2792 def update_secret(params = {}, = {}) req = build_request(:update_secret, params) req.send_request() end |
#update_secret_version_stage(params = {}) ⇒ Types::UpdateSecretVersionStageResponse
Modifies the staging labels attached to a version of a secret. Secrets Manager uses staging labels to track a version as it progresses through the secret rotation process. Each staging label can be attached to only one version at a time. To add a staging label to a version when it is already attached to another version, Secrets Manager first removes it from the other version first and then attaches it to this one. For more information about versions and staging labels, see [Concepts: Version].
The staging labels that you specify in the `VersionStage` parameter are added to the existing list of staging labels for the version.
You can move the `AWSCURRENT` staging label to this version by including it in this call.
<note markdown=“1”> Whenever you move `AWSCURRENT`, Secrets Manager automatically moves the label `AWSPREVIOUS` to the version that `AWSCURRENT` was removed from.
</note>
If this action results in the last label being removed from a version, then the version is considered to be 'deprecated' and can be deleted by Secrets Manager.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:UpdateSecretVersionStage`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: docs.aws.amazon.com/secretsmanager/latest/userguide/getting-started.html#term_version [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
2947 2948 2949 2950 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 2947 def update_secret_version_stage(params = {}, = {}) req = build_request(:update_secret_version_stage, params) req.send_request() end |
#validate_resource_policy(params = {}) ⇒ Types::ValidateResourcePolicyResponse
Validates that a resource policy does not grant a wide range of principals access to your secret. A resource-based policy is optional for secrets.
The API performs three checks when validating the policy:
-
Sends a call to [Zelkova], an automated reasoning engine, to ensure your resource policy does not allow broad access to your secret, for example policies that use a wildcard for the principal.
-
Checks for correct syntax in a policy.
-
Verifies the policy does not lock out a caller.
Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see [Logging Secrets Manager events with CloudTrail].
Required permissions: `secretsmanager:ValidateResourcePolicy`. For more information, see [ IAM policy actions for Secrets Manager] and [Authentication and access control in Secrets Manager].
[1]: aws.amazon.com/blogs/security/protect-sensitive-data-in-the-cloud-with-automated-reasoning-zelkova/ [2]: docs.aws.amazon.com/secretsmanager/latest/userguide/retrieve-ct-entries.html [3]: docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions [4]: docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
3035 3036 3037 3038 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 3035 def validate_resource_policy(params = {}, = {}) req = build_request(:validate_resource_policy, params) req.send_request() end |
#waiter_names ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
3059 3060 3061 |
# File 'lib/aws-sdk-secretsmanager/client.rb', line 3059 def waiter_names [] end |