aws-sdk-secretsmanager 1.34.0 → 1.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
 - data/lib/aws-sdk-secretsmanager.rb +3 -1
 - data/lib/aws-sdk-secretsmanager/client.rb +32 -21
 - data/lib/aws-sdk-secretsmanager/client_api.rb +2 -0
 - data/lib/aws-sdk-secretsmanager/errors.rb +2 -0
 - data/lib/aws-sdk-secretsmanager/resource.rb +3 -7
 - data/lib/aws-sdk-secretsmanager/types.rb +51 -0
 - metadata +5 -5
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 2 
     | 
    
         
            +
            SHA256:
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 44bb4b64972ae334b89344496c8cc19f8461f48430c247c81e58ee5284cd893e
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 370c660e0f424b226387f19977cb059f69cf7d0ae30e61ab68fa04f869a44970
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 4cfb45a25f1344a5574fdbc56f9c3c2755911b5a46cd8971272b2f81949c9a62cef807bb3ee14b3cffdb4ee4a05199fc791f992ca63664f7e7cf658edfe1efab
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 6fb8eced24d860e5f2e38ab2101d10652d825cb8d97e2f511184fe507ce464065b37af8a787787cf8c5b3d153871520b4106b513c053415341763b2c40147efc
         
     | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            # WARNING ABOUT GENERATED CODE
         
     | 
| 
       2 
4 
     | 
    
         
             
            #
         
     | 
| 
       3 
5 
     | 
    
         
             
            # This file is generated. See the contributing guide for more information:
         
     | 
| 
         @@ -45,6 +47,6 @@ require_relative 'aws-sdk-secretsmanager/customizations' 
     | 
|
| 
       45 
47 
     | 
    
         
             
            # @service
         
     | 
| 
       46 
48 
     | 
    
         
             
            module Aws::SecretsManager
         
     | 
| 
       47 
49 
     | 
    
         | 
| 
       48 
     | 
    
         
            -
              GEM_VERSION = '1. 
     | 
| 
      
 50 
     | 
    
         
            +
              GEM_VERSION = '1.39.0'
         
     | 
| 
       49 
51 
     | 
    
         | 
| 
       50 
52 
     | 
    
         
             
            end
         
     | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            # WARNING ABOUT GENERATED CODE
         
     | 
| 
       2 
4 
     | 
    
         
             
            #
         
     | 
| 
       3 
5 
     | 
    
         
             
            # This file is generated. See the contributing guide for more information:
         
     | 
| 
         @@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb' 
     | 
|
| 
       24 
26 
     | 
    
         
             
            require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
         
     | 
| 
       25 
27 
     | 
    
         
             
            require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
         
     | 
| 
       26 
28 
     | 
    
         
             
            require 'aws-sdk-core/plugins/transfer_encoding.rb'
         
     | 
| 
      
 29 
     | 
    
         
            +
            require 'aws-sdk-core/plugins/http_checksum.rb'
         
     | 
| 
       27 
30 
     | 
    
         
             
            require 'aws-sdk-core/plugins/signature_v4.rb'
         
     | 
| 
       28 
31 
     | 
    
         
             
            require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
         
     | 
| 
       29 
32 
     | 
    
         | 
| 
         @@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:secretsmanager) 
     | 
|
| 
       32 
35 
     | 
    
         
             
            module Aws::SecretsManager
         
     | 
| 
       33 
36 
     | 
    
         
             
              # An API client for SecretsManager.  To construct a client, you need to configure a `:region` and `:credentials`.
         
     | 
| 
       34 
37 
     | 
    
         
             
              #
         
     | 
| 
       35 
     | 
    
         
            -
              # 
     | 
| 
       36 
     | 
    
         
            -
              # 
     | 
| 
       37 
     | 
    
         
            -
              # 
     | 
| 
       38 
     | 
    
         
            -
              # 
     | 
| 
       39 
     | 
    
         
            -
              # 
     | 
| 
      
 38 
     | 
    
         
            +
              #     client = Aws::SecretsManager::Client.new(
         
     | 
| 
      
 39 
     | 
    
         
            +
              #       region: region_name,
         
     | 
| 
      
 40 
     | 
    
         
            +
              #       credentials: credentials,
         
     | 
| 
      
 41 
     | 
    
         
            +
              #       # ...
         
     | 
| 
      
 42 
     | 
    
         
            +
              #     )
         
     | 
| 
       40 
43 
     | 
    
         
             
              #
         
     | 
| 
       41 
44 
     | 
    
         
             
              # For details on configuring region and credentials see
         
     | 
| 
       42 
45 
     | 
    
         
             
              # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
         
     | 
| 
         @@ -69,6 +72,7 @@ module Aws::SecretsManager 
     | 
|
| 
       69 
72 
     | 
    
         
             
                add_plugin(Aws::Plugins::ClientMetricsPlugin)
         
     | 
| 
       70 
73 
     | 
    
         
             
                add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
         
     | 
| 
       71 
74 
     | 
    
         
             
                add_plugin(Aws::Plugins::TransferEncoding)
         
     | 
| 
      
 75 
     | 
    
         
            +
                add_plugin(Aws::Plugins::HttpChecksum)
         
     | 
| 
       72 
76 
     | 
    
         
             
                add_plugin(Aws::Plugins::SignatureV4)
         
     | 
| 
       73 
77 
     | 
    
         
             
                add_plugin(Aws::Plugins::Protocols::JsonRpc)
         
     | 
| 
       74 
78 
     | 
    
         | 
| 
         @@ -105,7 +109,7 @@ module Aws::SecretsManager 
     | 
|
| 
       105 
109 
     | 
    
         
             
                #   @option options [required, String] :region
         
     | 
| 
       106 
110 
     | 
    
         
             
                #     The AWS region to connect to.  The configured `:region` is
         
     | 
| 
       107 
111 
     | 
    
         
             
                #     used to determine the service `:endpoint`. When not passed,
         
     | 
| 
       108 
     | 
    
         
            -
                #     a default `:region` is  
     | 
| 
      
 112 
     | 
    
         
            +
                #     a default `:region` is searched for in the following locations:
         
     | 
| 
       109 
113 
     | 
    
         
             
                #
         
     | 
| 
       110 
114 
     | 
    
         
             
                #     * `Aws.config[:region]`
         
     | 
| 
       111 
115 
     | 
    
         
             
                #     * `ENV['AWS_REGION']`
         
     | 
| 
         @@ -161,7 +165,7 @@ module Aws::SecretsManager 
     | 
|
| 
       161 
165 
     | 
    
         
             
                #   @option options [String] :endpoint
         
     | 
| 
       162 
166 
     | 
    
         
             
                #     The client endpoint is normally constructed from the `:region`
         
     | 
| 
       163 
167 
     | 
    
         
             
                #     option. You should only configure an `:endpoint` when connecting
         
     | 
| 
       164 
     | 
    
         
            -
                #     to test endpoints. This should be  
     | 
| 
      
 168 
     | 
    
         
            +
                #     to test or custom endpoints. This should be a valid HTTP(S) URI.
         
     | 
| 
       165 
169 
     | 
    
         
             
                #
         
     | 
| 
       166 
170 
     | 
    
         
             
                #   @option options [Integer] :endpoint_cache_max_entries (1000)
         
     | 
| 
       167 
171 
     | 
    
         
             
                #     Used for the maximum size limit of the LRU cache storing endpoints data
         
     | 
| 
         @@ -176,7 +180,7 @@ module Aws::SecretsManager 
     | 
|
| 
       176 
180 
     | 
    
         
             
                #     requests fetching endpoints information. Defaults to 60 sec.
         
     | 
| 
       177 
181 
     | 
    
         
             
                #
         
     | 
| 
       178 
182 
     | 
    
         
             
                #   @option options [Boolean] :endpoint_discovery (false)
         
     | 
| 
       179 
     | 
    
         
            -
                #     When set to `true`, endpoint discovery will be enabled for operations when available. 
     | 
| 
      
 183 
     | 
    
         
            +
                #     When set to `true`, endpoint discovery will be enabled for operations when available.
         
     | 
| 
       180 
184 
     | 
    
         
             
                #
         
     | 
| 
       181 
185 
     | 
    
         
             
                #   @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
         
     | 
| 
       182 
186 
     | 
    
         
             
                #     The log formatter.
         
     | 
| 
         @@ -229,15 +233,19 @@ module Aws::SecretsManager 
     | 
|
| 
       229 
233 
     | 
    
         
             
                #
         
     | 
| 
       230 
234 
     | 
    
         
             
                #   @option options [String] :retry_mode ("legacy")
         
     | 
| 
       231 
235 
     | 
    
         
             
                #     Specifies which retry algorithm to use. Values are:
         
     | 
| 
       232 
     | 
    
         
            -
                # 
     | 
| 
       233 
     | 
    
         
            -
                # 
     | 
| 
       234 
     | 
    
         
            -
                #        
     | 
| 
       235 
     | 
    
         
            -
                # 
     | 
| 
       236 
     | 
    
         
            -
                # 
     | 
| 
       237 
     | 
    
         
            -
                #        
     | 
| 
       238 
     | 
    
         
            -
                # 
     | 
| 
       239 
     | 
    
         
            -
                # 
     | 
| 
       240 
     | 
    
         
            -
                # 
     | 
| 
      
 236 
     | 
    
         
            +
                #
         
     | 
| 
      
 237 
     | 
    
         
            +
                #     * `legacy` - The pre-existing retry behavior.  This is default value if
         
     | 
| 
      
 238 
     | 
    
         
            +
                #       no retry mode is provided.
         
     | 
| 
      
 239 
     | 
    
         
            +
                #
         
     | 
| 
      
 240 
     | 
    
         
            +
                #     * `standard` - A standardized set of retry rules across the AWS SDKs.
         
     | 
| 
      
 241 
     | 
    
         
            +
                #       This includes support for retry quotas, which limit the number of
         
     | 
| 
      
 242 
     | 
    
         
            +
                #       unsuccessful retries a client can make.
         
     | 
| 
      
 243 
     | 
    
         
            +
                #
         
     | 
| 
      
 244 
     | 
    
         
            +
                #     * `adaptive` - An experimental retry mode that includes all the
         
     | 
| 
      
 245 
     | 
    
         
            +
                #       functionality of `standard` mode along with automatic client side
         
     | 
| 
      
 246 
     | 
    
         
            +
                #       throttling.  This is a provisional mode that may change behavior
         
     | 
| 
      
 247 
     | 
    
         
            +
                #       in the future.
         
     | 
| 
      
 248 
     | 
    
         
            +
                #
         
     | 
| 
       241 
249 
     | 
    
         
             
                #
         
     | 
| 
       242 
250 
     | 
    
         
             
                #   @option options [String] :secret_access_key
         
     | 
| 
       243 
251 
     | 
    
         
             
                #
         
     | 
| 
         @@ -275,8 +283,7 @@ module Aws::SecretsManager 
     | 
|
| 
       275 
283 
     | 
    
         
             
                #
         
     | 
| 
       276 
284 
     | 
    
         
             
                #   @option options [Integer] :http_read_timeout (60) The default
         
     | 
| 
       277 
285 
     | 
    
         
             
                #     number of seconds to wait for response data.  This value can
         
     | 
| 
       278 
     | 
    
         
            -
                #     safely be set
         
     | 
| 
       279 
     | 
    
         
            -
                #     per-request on the session yielded by {#session_for}.
         
     | 
| 
      
 286 
     | 
    
         
            +
                #     safely be set per-request on the session.
         
     | 
| 
       280 
287 
     | 
    
         
             
                #
         
     | 
| 
       281 
288 
     | 
    
         
             
                #   @option options [Float] :http_idle_timeout (5) The number of
         
     | 
| 
       282 
289 
     | 
    
         
             
                #     seconds a connection is allowed to sit idle before it is
         
     | 
| 
         @@ -288,7 +295,7 @@ module Aws::SecretsManager 
     | 
|
| 
       288 
295 
     | 
    
         
             
                #     request body.  This option has no effect unless the request has
         
     | 
| 
       289 
296 
     | 
    
         
             
                #     "Expect" header set to "100-continue".  Defaults to `nil` which
         
     | 
| 
       290 
297 
     | 
    
         
             
                #     disables this behaviour.  This value can safely be set per
         
     | 
| 
       291 
     | 
    
         
            -
                #     request on the session 
     | 
| 
      
 298 
     | 
    
         
            +
                #     request on the session.
         
     | 
| 
       292 
299 
     | 
    
         
             
                #
         
     | 
| 
       293 
300 
     | 
    
         
             
                #   @option options [Boolean] :http_wire_trace (false) When `true`,
         
     | 
| 
       294 
301 
     | 
    
         
             
                #     HTTP debug output will be sent to the `:logger`.
         
     | 
| 
         @@ -1503,6 +1510,8 @@ module Aws::SecretsManager 
     | 
|
| 
       1503 
1510 
     | 
    
         
             
                #   * {Types::ListSecretVersionIdsResponse#arn #arn} => String
         
     | 
| 
       1504 
1511 
     | 
    
         
             
                #   * {Types::ListSecretVersionIdsResponse#name #name} => String
         
     | 
| 
       1505 
1512 
     | 
    
         
             
                #
         
     | 
| 
      
 1513 
     | 
    
         
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         
     | 
| 
      
 1514 
     | 
    
         
            +
                #
         
     | 
| 
       1506 
1515 
     | 
    
         
             
                #
         
     | 
| 
       1507 
1516 
     | 
    
         
             
                # @example Example: To list all of the secret versions associated with a secret
         
     | 
| 
       1508 
1517 
     | 
    
         
             
                #
         
     | 
| 
         @@ -1623,6 +1632,8 @@ module Aws::SecretsManager 
     | 
|
| 
       1623 
1632 
     | 
    
         
             
                #   * {Types::ListSecretsResponse#secret_list #secret_list} => Array<Types::SecretListEntry>
         
     | 
| 
       1624 
1633 
     | 
    
         
             
                #   * {Types::ListSecretsResponse#next_token #next_token} => String
         
     | 
| 
       1625 
1634 
     | 
    
         
             
                #
         
     | 
| 
      
 1635 
     | 
    
         
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         
     | 
| 
      
 1636 
     | 
    
         
            +
                #
         
     | 
| 
       1626 
1637 
     | 
    
         
             
                #
         
     | 
| 
       1627 
1638 
     | 
    
         
             
                # @example Example: To list the secrets in your account
         
     | 
| 
       1628 
1639 
     | 
    
         
             
                #
         
     | 
| 
         @@ -2968,7 +2979,7 @@ module Aws::SecretsManager 
     | 
|
| 
       2968 
2979 
     | 
    
         
             
                    params: params,
         
     | 
| 
       2969 
2980 
     | 
    
         
             
                    config: config)
         
     | 
| 
       2970 
2981 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-secretsmanager'
         
     | 
| 
       2971 
     | 
    
         
            -
                  context[:gem_version] = '1. 
     | 
| 
      
 2982 
     | 
    
         
            +
                  context[:gem_version] = '1.39.0'
         
     | 
| 
       2972 
2983 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       2973 
2984 
     | 
    
         
             
                end
         
     | 
| 
       2974 
2985 
     | 
    
         | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            # WARNING ABOUT GENERATED CODE
         
     | 
| 
       2 
4 
     | 
    
         
             
            #
         
     | 
| 
       3 
5 
     | 
    
         
             
            # This file is generated. See the contributing guide for more information:
         
     | 
| 
         @@ -6,13 +8,7 @@ 
     | 
|
| 
       6 
8 
     | 
    
         
             
            # WARNING ABOUT GENERATED CODE
         
     | 
| 
       7 
9 
     | 
    
         | 
| 
       8 
10 
     | 
    
         
             
            module Aws::SecretsManager
         
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
              # To create a resource object:
         
     | 
| 
       11 
     | 
    
         
            -
              #     resource = Aws::SecretsManager::Resource.new(region: 'us-west-2')
         
     | 
| 
       12 
     | 
    
         
            -
              # You can supply a client object with custom configuration that will be used for all resource operations.
         
     | 
| 
       13 
     | 
    
         
            -
              # If you do not pass +:client+, a default client will be constructed.
         
     | 
| 
       14 
     | 
    
         
            -
              #     client = Aws::SecretsManager::Client.new(region: 'us-west-2')
         
     | 
| 
       15 
     | 
    
         
            -
              #     resource = Aws::SecretsManager::Resource.new(client: client)
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
       16 
12 
     | 
    
         
             
              class Resource
         
     | 
| 
       17 
13 
     | 
    
         | 
| 
       18 
14 
     | 
    
         
             
                # @param options ({})
         
     | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            # WARNING ABOUT GENERATED CODE
         
     | 
| 
       2 
4 
     | 
    
         
             
            #
         
     | 
| 
       3 
5 
     | 
    
         
             
            # This file is generated. See the contributing guide for more information:
         
     | 
| 
         @@ -41,6 +43,7 @@ module Aws::SecretsManager 
     | 
|
| 
       41 
43 
     | 
    
         
             
                #
         
     | 
| 
       42 
44 
     | 
    
         
             
                class CancelRotateSecretRequest < Struct.new(
         
     | 
| 
       43 
45 
     | 
    
         
             
                  :secret_id)
         
     | 
| 
      
 46 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       44 
47 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       45 
48 
     | 
    
         
             
                end
         
     | 
| 
       46 
49 
     | 
    
         | 
| 
         @@ -67,6 +70,7 @@ module Aws::SecretsManager 
     | 
|
| 
       67 
70 
     | 
    
         
             
                  :arn,
         
     | 
| 
       68 
71 
     | 
    
         
             
                  :name,
         
     | 
| 
       69 
72 
     | 
    
         
             
                  :version_id)
         
     | 
| 
      
 73 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       70 
74 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       71 
75 
     | 
    
         
             
                end
         
     | 
| 
       72 
76 
     | 
    
         | 
| 
         @@ -280,6 +284,7 @@ module Aws::SecretsManager 
     | 
|
| 
       280 
284 
     | 
    
         
             
                  :secret_binary,
         
     | 
| 
       281 
285 
     | 
    
         
             
                  :secret_string,
         
     | 
| 
       282 
286 
     | 
    
         
             
                  :tags)
         
     | 
| 
      
 287 
     | 
    
         
            +
                  SENSITIVE = [:secret_binary, :secret_string]
         
     | 
| 
       283 
288 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       284 
289 
     | 
    
         
             
                end
         
     | 
| 
       285 
290 
     | 
    
         | 
| 
         @@ -312,6 +317,7 @@ module Aws::SecretsManager 
     | 
|
| 
       312 
317 
     | 
    
         
             
                  :arn,
         
     | 
| 
       313 
318 
     | 
    
         
             
                  :name,
         
     | 
| 
       314 
319 
     | 
    
         
             
                  :version_id)
         
     | 
| 
      
 320 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       315 
321 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       316 
322 
     | 
    
         
             
                end
         
     | 
| 
       317 
323 
     | 
    
         | 
| 
         @@ -325,6 +331,7 @@ module Aws::SecretsManager 
     | 
|
| 
       325 
331 
     | 
    
         
             
                #
         
     | 
| 
       326 
332 
     | 
    
         
             
                class DecryptionFailure < Struct.new(
         
     | 
| 
       327 
333 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 334 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       328 
335 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       329 
336 
     | 
    
         
             
                end
         
     | 
| 
       330 
337 
     | 
    
         | 
| 
         @@ -361,6 +368,7 @@ module Aws::SecretsManager 
     | 
|
| 
       361 
368 
     | 
    
         
             
                #
         
     | 
| 
       362 
369 
     | 
    
         
             
                class DeleteResourcePolicyRequest < Struct.new(
         
     | 
| 
       363 
370 
     | 
    
         
             
                  :secret_id)
         
     | 
| 
      
 371 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       364 
372 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       365 
373 
     | 
    
         
             
                end
         
     | 
| 
       366 
374 
     | 
    
         | 
| 
         @@ -379,6 +387,7 @@ module Aws::SecretsManager 
     | 
|
| 
       379 
387 
     | 
    
         
             
                class DeleteResourcePolicyResponse < Struct.new(
         
     | 
| 
       380 
388 
     | 
    
         
             
                  :arn,
         
     | 
| 
       381 
389 
     | 
    
         
             
                  :name)
         
     | 
| 
      
 390 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       382 
391 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       383 
392 
     | 
    
         
             
                end
         
     | 
| 
       384 
393 
     | 
    
         | 
| 
         @@ -445,6 +454,7 @@ module Aws::SecretsManager 
     | 
|
| 
       445 
454 
     | 
    
         
             
                  :secret_id,
         
     | 
| 
       446 
455 
     | 
    
         
             
                  :recovery_window_in_days,
         
     | 
| 
       447 
456 
     | 
    
         
             
                  :force_delete_without_recovery)
         
     | 
| 
      
 457 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       448 
458 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       449 
459 
     | 
    
         
             
                end
         
     | 
| 
       450 
460 
     | 
    
         | 
| 
         @@ -469,6 +479,7 @@ module Aws::SecretsManager 
     | 
|
| 
       469 
479 
     | 
    
         
             
                  :arn,
         
     | 
| 
       470 
480 
     | 
    
         
             
                  :name,
         
     | 
| 
       471 
481 
     | 
    
         
             
                  :deletion_date)
         
     | 
| 
      
 482 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       472 
483 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       473 
484 
     | 
    
         
             
                end
         
     | 
| 
       474 
485 
     | 
    
         | 
| 
         @@ -505,6 +516,7 @@ module Aws::SecretsManager 
     | 
|
| 
       505 
516 
     | 
    
         
             
                #
         
     | 
| 
       506 
517 
     | 
    
         
             
                class DescribeSecretRequest < Struct.new(
         
     | 
| 
       507 
518 
     | 
    
         
             
                  :secret_id)
         
     | 
| 
      
 519 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       508 
520 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       509 
521 
     | 
    
         
             
                end
         
     | 
| 
       510 
522 
     | 
    
         | 
| 
         @@ -613,6 +625,7 @@ module Aws::SecretsManager 
     | 
|
| 
       613 
625 
     | 
    
         
             
                  :tags,
         
     | 
| 
       614 
626 
     | 
    
         
             
                  :version_ids_to_stages,
         
     | 
| 
       615 
627 
     | 
    
         
             
                  :owning_service)
         
     | 
| 
      
 628 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       616 
629 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       617 
630 
     | 
    
         
             
                end
         
     | 
| 
       618 
631 
     | 
    
         | 
| 
         @@ -632,6 +645,7 @@ module Aws::SecretsManager 
     | 
|
| 
       632 
645 
     | 
    
         
             
                #
         
     | 
| 
       633 
646 
     | 
    
         
             
                class EncryptionFailure < Struct.new(
         
     | 
| 
       634 
647 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 648 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       635 
649 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       636 
650 
     | 
    
         
             
                end
         
     | 
| 
       637 
651 
     | 
    
         | 
| 
         @@ -715,6 +729,7 @@ module Aws::SecretsManager 
     | 
|
| 
       715 
729 
     | 
    
         
             
                  :exclude_lowercase,
         
     | 
| 
       716 
730 
     | 
    
         
             
                  :include_space,
         
     | 
| 
       717 
731 
     | 
    
         
             
                  :require_each_included_type)
         
     | 
| 
      
 732 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       718 
733 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       719 
734 
     | 
    
         
             
                end
         
     | 
| 
       720 
735 
     | 
    
         | 
| 
         @@ -726,6 +741,7 @@ module Aws::SecretsManager 
     | 
|
| 
       726 
741 
     | 
    
         
             
                #
         
     | 
| 
       727 
742 
     | 
    
         
             
                class GetRandomPasswordResponse < Struct.new(
         
     | 
| 
       728 
743 
     | 
    
         
             
                  :random_password)
         
     | 
| 
      
 744 
     | 
    
         
            +
                  SENSITIVE = [:random_password]
         
     | 
| 
       729 
745 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       730 
746 
     | 
    
         
             
                end
         
     | 
| 
       731 
747 
     | 
    
         | 
| 
         @@ -762,6 +778,7 @@ module Aws::SecretsManager 
     | 
|
| 
       762 
778 
     | 
    
         
             
                #
         
     | 
| 
       763 
779 
     | 
    
         
             
                class GetResourcePolicyRequest < Struct.new(
         
     | 
| 
       764 
780 
     | 
    
         
             
                  :secret_id)
         
     | 
| 
      
 781 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       765 
782 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       766 
783 
     | 
    
         
             
                end
         
     | 
| 
       767 
784 
     | 
    
         | 
| 
         @@ -795,6 +812,7 @@ module Aws::SecretsManager 
     | 
|
| 
       795 
812 
     | 
    
         
             
                  :arn,
         
     | 
| 
       796 
813 
     | 
    
         
             
                  :name,
         
     | 
| 
       797 
814 
     | 
    
         
             
                  :resource_policy)
         
     | 
| 
      
 815 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       798 
816 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       799 
817 
     | 
    
         
             
                end
         
     | 
| 
       800 
818 
     | 
    
         | 
| 
         @@ -862,6 +880,7 @@ module Aws::SecretsManager 
     | 
|
| 
       862 
880 
     | 
    
         
             
                  :secret_id,
         
     | 
| 
       863 
881 
     | 
    
         
             
                  :version_id,
         
     | 
| 
       864 
882 
     | 
    
         
             
                  :version_stage)
         
     | 
| 
      
 883 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       865 
884 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       866 
885 
     | 
    
         
             
                end
         
     | 
| 
       867 
886 
     | 
    
         | 
| 
         @@ -930,6 +949,7 @@ module Aws::SecretsManager 
     | 
|
| 
       930 
949 
     | 
    
         
             
                  :secret_string,
         
     | 
| 
       931 
950 
     | 
    
         
             
                  :version_stages,
         
     | 
| 
       932 
951 
     | 
    
         
             
                  :created_date)
         
     | 
| 
      
 952 
     | 
    
         
            +
                  SENSITIVE = [:secret_binary, :secret_string]
         
     | 
| 
       933 
953 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       934 
954 
     | 
    
         
             
                end
         
     | 
| 
       935 
955 
     | 
    
         | 
| 
         @@ -942,6 +962,7 @@ module Aws::SecretsManager 
     | 
|
| 
       942 
962 
     | 
    
         
             
                #
         
     | 
| 
       943 
963 
     | 
    
         
             
                class InternalServiceError < Struct.new(
         
     | 
| 
       944 
964 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 965 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       945 
966 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       946 
967 
     | 
    
         
             
                end
         
     | 
| 
       947 
968 
     | 
    
         | 
| 
         @@ -954,6 +975,7 @@ module Aws::SecretsManager 
     | 
|
| 
       954 
975 
     | 
    
         
             
                #
         
     | 
| 
       955 
976 
     | 
    
         
             
                class InvalidNextTokenException < Struct.new(
         
     | 
| 
       956 
977 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 978 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       957 
979 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       958 
980 
     | 
    
         
             
                end
         
     | 
| 
       959 
981 
     | 
    
         | 
| 
         @@ -966,6 +988,7 @@ module Aws::SecretsManager 
     | 
|
| 
       966 
988 
     | 
    
         
             
                #
         
     | 
| 
       967 
989 
     | 
    
         
             
                class InvalidParameterException < Struct.new(
         
     | 
| 
       968 
990 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 991 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       969 
992 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       970 
993 
     | 
    
         
             
                end
         
     | 
| 
       971 
994 
     | 
    
         | 
| 
         @@ -988,6 +1011,7 @@ module Aws::SecretsManager 
     | 
|
| 
       988 
1011 
     | 
    
         
             
                #
         
     | 
| 
       989 
1012 
     | 
    
         
             
                class InvalidRequestException < Struct.new(
         
     | 
| 
       990 
1013 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 1014 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       991 
1015 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       992 
1016 
     | 
    
         
             
                end
         
     | 
| 
       993 
1017 
     | 
    
         | 
| 
         @@ -1001,6 +1025,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1001 
1025 
     | 
    
         
             
                #
         
     | 
| 
       1002 
1026 
     | 
    
         
             
                class LimitExceededException < Struct.new(
         
     | 
| 
       1003 
1027 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 1028 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1004 
1029 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1005 
1030 
     | 
    
         
             
                end
         
     | 
| 
       1006 
1031 
     | 
    
         | 
| 
         @@ -1071,6 +1096,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1071 
1096 
     | 
    
         
             
                  :max_results,
         
     | 
| 
       1072 
1097 
     | 
    
         
             
                  :next_token,
         
     | 
| 
       1073 
1098 
     | 
    
         
             
                  :include_deprecated)
         
     | 
| 
      
 1099 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1074 
1100 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1075 
1101 
     | 
    
         
             
                end
         
     | 
| 
       1076 
1102 
     | 
    
         | 
| 
         @@ -1115,6 +1141,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1115 
1141 
     | 
    
         
             
                  :next_token,
         
     | 
| 
       1116 
1142 
     | 
    
         
             
                  :arn,
         
     | 
| 
       1117 
1143 
     | 
    
         
             
                  :name)
         
     | 
| 
      
 1144 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1118 
1145 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1119 
1146 
     | 
    
         
             
                end
         
     | 
| 
       1120 
1147 
     | 
    
         | 
| 
         @@ -1152,6 +1179,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1152 
1179 
     | 
    
         
             
                class ListSecretsRequest < Struct.new(
         
     | 
| 
       1153 
1180 
     | 
    
         
             
                  :max_results,
         
     | 
| 
       1154 
1181 
     | 
    
         
             
                  :next_token)
         
     | 
| 
      
 1182 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1155 
1183 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1156 
1184 
     | 
    
         
             
                end
         
     | 
| 
       1157 
1185 
     | 
    
         | 
| 
         @@ -1175,6 +1203,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1175 
1203 
     | 
    
         
             
                class ListSecretsResponse < Struct.new(
         
     | 
| 
       1176 
1204 
     | 
    
         
             
                  :secret_list,
         
     | 
| 
       1177 
1205 
     | 
    
         
             
                  :next_token)
         
     | 
| 
      
 1206 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1178 
1207 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1179 
1208 
     | 
    
         
             
                end
         
     | 
| 
       1180 
1209 
     | 
    
         | 
| 
         @@ -1187,6 +1216,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1187 
1216 
     | 
    
         
             
                #
         
     | 
| 
       1188 
1217 
     | 
    
         
             
                class MalformedPolicyDocumentException < Struct.new(
         
     | 
| 
       1189 
1218 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 1219 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1190 
1220 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1191 
1221 
     | 
    
         
             
                end
         
     | 
| 
       1192 
1222 
     | 
    
         | 
| 
         @@ -1200,6 +1230,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1200 
1230 
     | 
    
         
             
                #
         
     | 
| 
       1201 
1231 
     | 
    
         
             
                class PreconditionNotMetException < Struct.new(
         
     | 
| 
       1202 
1232 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 1233 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1203 
1234 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1204 
1235 
     | 
    
         
             
                end
         
     | 
| 
       1205 
1236 
     | 
    
         | 
| 
         @@ -1251,6 +1282,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1251 
1282 
     | 
    
         
             
                class PutResourcePolicyRequest < Struct.new(
         
     | 
| 
       1252 
1283 
     | 
    
         
             
                  :secret_id,
         
     | 
| 
       1253 
1284 
     | 
    
         
             
                  :resource_policy)
         
     | 
| 
      
 1285 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1254 
1286 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1255 
1287 
     | 
    
         
             
                end
         
     | 
| 
       1256 
1288 
     | 
    
         | 
| 
         @@ -1269,6 +1301,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1269 
1301 
     | 
    
         
             
                class PutResourcePolicyResponse < Struct.new(
         
     | 
| 
       1270 
1302 
     | 
    
         
             
                  :arn,
         
     | 
| 
       1271 
1303 
     | 
    
         
             
                  :name)
         
     | 
| 
      
 1304 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1272 
1305 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1273 
1306 
     | 
    
         
             
                end
         
     | 
| 
       1274 
1307 
     | 
    
         | 
| 
         @@ -1418,6 +1451,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1418 
1451 
     | 
    
         
             
                  :secret_binary,
         
     | 
| 
       1419 
1452 
     | 
    
         
             
                  :secret_string,
         
     | 
| 
       1420 
1453 
     | 
    
         
             
                  :version_stages)
         
     | 
| 
      
 1454 
     | 
    
         
            +
                  SENSITIVE = [:secret_binary, :secret_string]
         
     | 
| 
       1421 
1455 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1422 
1456 
     | 
    
         
             
                end
         
     | 
| 
       1423 
1457 
     | 
    
         | 
| 
         @@ -1449,6 +1483,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1449 
1483 
     | 
    
         
             
                  :name,
         
     | 
| 
       1450 
1484 
     | 
    
         
             
                  :version_id,
         
     | 
| 
       1451 
1485 
     | 
    
         
             
                  :version_stages)
         
     | 
| 
      
 1486 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1452 
1487 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1453 
1488 
     | 
    
         
             
                end
         
     | 
| 
       1454 
1489 
     | 
    
         | 
| 
         @@ -1461,6 +1496,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1461 
1496 
     | 
    
         
             
                #
         
     | 
| 
       1462 
1497 
     | 
    
         
             
                class ResourceExistsException < Struct.new(
         
     | 
| 
       1463 
1498 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 1499 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1464 
1500 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1465 
1501 
     | 
    
         
             
                end
         
     | 
| 
       1466 
1502 
     | 
    
         | 
| 
         @@ -1473,6 +1509,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1473 
1509 
     | 
    
         
             
                #
         
     | 
| 
       1474 
1510 
     | 
    
         
             
                class ResourceNotFoundException < Struct.new(
         
     | 
| 
       1475 
1511 
     | 
    
         
             
                  :message)
         
     | 
| 
      
 1512 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1476 
1513 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1477 
1514 
     | 
    
         
             
                end
         
     | 
| 
       1478 
1515 
     | 
    
         | 
| 
         @@ -1509,6 +1546,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1509 
1546 
     | 
    
         
             
                #
         
     | 
| 
       1510 
1547 
     | 
    
         
             
                class RestoreSecretRequest < Struct.new(
         
     | 
| 
       1511 
1548 
     | 
    
         
             
                  :secret_id)
         
     | 
| 
      
 1549 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1512 
1550 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1513 
1551 
     | 
    
         
             
                end
         
     | 
| 
       1514 
1552 
     | 
    
         | 
| 
         @@ -1525,6 +1563,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1525 
1563 
     | 
    
         
             
                class RestoreSecretResponse < Struct.new(
         
     | 
| 
       1526 
1564 
     | 
    
         
             
                  :arn,
         
     | 
| 
       1527 
1565 
     | 
    
         
             
                  :name)
         
     | 
| 
      
 1566 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1528 
1567 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1529 
1568 
     | 
    
         
             
                end
         
     | 
| 
       1530 
1569 
     | 
    
         | 
| 
         @@ -1607,6 +1646,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1607 
1646 
     | 
    
         
             
                  :client_request_token,
         
     | 
| 
       1608 
1647 
     | 
    
         
             
                  :rotation_lambda_arn,
         
     | 
| 
       1609 
1648 
     | 
    
         
             
                  :rotation_rules)
         
     | 
| 
      
 1649 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1610 
1650 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1611 
1651 
     | 
    
         
             
                end
         
     | 
| 
       1612 
1652 
     | 
    
         | 
| 
         @@ -1629,6 +1669,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1629 
1669 
     | 
    
         
             
                  :arn,
         
     | 
| 
       1630 
1670 
     | 
    
         
             
                  :name,
         
     | 
| 
       1631 
1671 
     | 
    
         
             
                  :version_id)
         
     | 
| 
      
 1672 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1632 
1673 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1633 
1674 
     | 
    
         
             
                end
         
     | 
| 
       1634 
1675 
     | 
    
         | 
| 
         @@ -1658,6 +1699,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1658 
1699 
     | 
    
         
             
                #
         
     | 
| 
       1659 
1700 
     | 
    
         
             
                class RotationRulesType < Struct.new(
         
     | 
| 
       1660 
1701 
     | 
    
         
             
                  :automatically_after_days)
         
     | 
| 
      
 1702 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1661 
1703 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1662 
1704 
     | 
    
         
             
                end
         
     | 
| 
       1663 
1705 
     | 
    
         | 
| 
         @@ -1772,6 +1814,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1772 
1814 
     | 
    
         
             
                  :tags,
         
     | 
| 
       1773 
1815 
     | 
    
         
             
                  :secret_versions_to_stages,
         
     | 
| 
       1774 
1816 
     | 
    
         
             
                  :owning_service)
         
     | 
| 
      
 1817 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1775 
1818 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1776 
1819 
     | 
    
         
             
                end
         
     | 
| 
       1777 
1820 
     | 
    
         | 
| 
         @@ -1803,6 +1846,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1803 
1846 
     | 
    
         
             
                  :version_stages,
         
     | 
| 
       1804 
1847 
     | 
    
         
             
                  :last_accessed_date,
         
     | 
| 
       1805 
1848 
     | 
    
         
             
                  :created_date)
         
     | 
| 
      
 1849 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1806 
1850 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1807 
1851 
     | 
    
         
             
                end
         
     | 
| 
       1808 
1852 
     | 
    
         | 
| 
         @@ -1829,6 +1873,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1829 
1873 
     | 
    
         
             
                class Tag < Struct.new(
         
     | 
| 
       1830 
1874 
     | 
    
         
             
                  :key,
         
     | 
| 
       1831 
1875 
     | 
    
         
             
                  :value)
         
     | 
| 
      
 1876 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1832 
1877 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1833 
1878 
     | 
    
         
             
                end
         
     | 
| 
       1834 
1879 
     | 
    
         | 
| 
         @@ -1888,6 +1933,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1888 
1933 
     | 
    
         
             
                class TagResourceRequest < Struct.new(
         
     | 
| 
       1889 
1934 
     | 
    
         
             
                  :secret_id,
         
     | 
| 
       1890 
1935 
     | 
    
         
             
                  :tags)
         
     | 
| 
      
 1936 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1891 
1937 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1892 
1938 
     | 
    
         
             
                end
         
     | 
| 
       1893 
1939 
     | 
    
         | 
| 
         @@ -1941,6 +1987,7 @@ module Aws::SecretsManager 
     | 
|
| 
       1941 
1987 
     | 
    
         
             
                class UntagResourceRequest < Struct.new(
         
     | 
| 
       1942 
1988 
     | 
    
         
             
                  :secret_id,
         
     | 
| 
       1943 
1989 
     | 
    
         
             
                  :tag_keys)
         
     | 
| 
      
 1990 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       1944 
1991 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       1945 
1992 
     | 
    
         
             
                end
         
     | 
| 
       1946 
1993 
     | 
    
         | 
| 
         @@ -2096,6 +2143,7 @@ module Aws::SecretsManager 
     | 
|
| 
       2096 
2143 
     | 
    
         
             
                  :kms_key_id,
         
     | 
| 
       2097 
2144 
     | 
    
         
             
                  :secret_binary,
         
     | 
| 
       2098 
2145 
     | 
    
         
             
                  :secret_string)
         
     | 
| 
      
 2146 
     | 
    
         
            +
                  SENSITIVE = [:secret_binary, :secret_string]
         
     | 
| 
       2099 
2147 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2100 
2148 
     | 
    
         
             
                end
         
     | 
| 
       2101 
2149 
     | 
    
         | 
| 
         @@ -2128,6 +2176,7 @@ module Aws::SecretsManager 
     | 
|
| 
       2128 
2176 
     | 
    
         
             
                  :arn,
         
     | 
| 
       2129 
2177 
     | 
    
         
             
                  :name,
         
     | 
| 
       2130 
2178 
     | 
    
         
             
                  :version_id)
         
     | 
| 
      
 2179 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       2131 
2180 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2132 
2181 
     | 
    
         
             
                end
         
     | 
| 
       2133 
2182 
     | 
    
         | 
| 
         @@ -2194,6 +2243,7 @@ module Aws::SecretsManager 
     | 
|
| 
       2194 
2243 
     | 
    
         
             
                  :version_stage,
         
     | 
| 
       2195 
2244 
     | 
    
         
             
                  :remove_from_version_id,
         
     | 
| 
       2196 
2245 
     | 
    
         
             
                  :move_to_version_id)
         
     | 
| 
      
 2246 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       2197 
2247 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2198 
2248 
     | 
    
         
             
                end
         
     | 
| 
       2199 
2249 
     | 
    
         | 
| 
         @@ -2211,6 +2261,7 @@ module Aws::SecretsManager 
     | 
|
| 
       2211 
2261 
     | 
    
         
             
                class UpdateSecretVersionStageResponse < Struct.new(
         
     | 
| 
       2212 
2262 
     | 
    
         
             
                  :arn,
         
     | 
| 
       2213 
2263 
     | 
    
         
             
                  :name)
         
     | 
| 
      
 2264 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
       2214 
2265 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       2215 
2266 
     | 
    
         
             
                end
         
     | 
| 
       2216 
2267 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: aws-sdk-secretsmanager
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.39.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Amazon Web Services
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2020- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2020-07-02 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: aws-sdk-core
         
     | 
| 
         @@ -19,7 +19,7 @@ dependencies: 
     | 
|
| 
       19 
19 
     | 
    
         
             
                    version: '3'
         
     | 
| 
       20 
20 
     | 
    
         
             
                - - ">="
         
     | 
| 
       21 
21 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       22 
     | 
    
         
            -
                    version: 3. 
     | 
| 
      
 22 
     | 
    
         
            +
                    version: 3.99.0
         
     | 
| 
       23 
23 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       24 
24 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       25 
25 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -29,7 +29,7 @@ dependencies: 
     | 
|
| 
       29 
29 
     | 
    
         
             
                    version: '3'
         
     | 
| 
       30 
30 
     | 
    
         
             
                - - ">="
         
     | 
| 
       31 
31 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       32 
     | 
    
         
            -
                    version: 3. 
     | 
| 
      
 32 
     | 
    
         
            +
                    version: 3.99.0
         
     | 
| 
       33 
33 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       34 
34 
     | 
    
         
             
              name: aws-sigv4
         
     | 
| 
       35 
35 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       81 
81 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       82 
82 
     | 
    
         
             
            requirements: []
         
     | 
| 
       83 
83 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       84 
     | 
    
         
            -
            rubygems_version: 2. 
     | 
| 
      
 84 
     | 
    
         
            +
            rubygems_version: 2.7.6.2
         
     | 
| 
       85 
85 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       86 
86 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       87 
87 
     | 
    
         
             
            summary: AWS SDK for Ruby - AWS Secrets Manager
         
     |