aws-sdk-secretsmanager 1.14.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b53e1fe23d04bb5e93299d7cea68f684a1ebeba
4
- data.tar.gz: 5cd4c3fe03b57969b380c29e095ae575d7e73c92
3
+ metadata.gz: dae232ec72c6d9dfe206512935471038ec0a432f
4
+ data.tar.gz: 19d75cdb0df94f61d92ba4377f0a984bede6a058
5
5
  SHA512:
6
- metadata.gz: 21d58dfe2364511c7e29d327946eceef5a82bfd4e23d51fd83cc9c04000a089f0ebd9dda64178d7e23709b3383e699a7fa9b4d25cba521b8d923518fec55fc88
7
- data.tar.gz: 4725164277df2c13882127dbf2d28a35d4836edb88b3de8397717d38b5106de89c70aece771b099bb49add170fd8a731c0f3563a8bdf8d682101e76f01ed703e
6
+ metadata.gz: 3726cfae2a4e6a94f2b065ce2b36f34421e0b16f75ee6a0d665ffa02c84180ebc0c3a51a945ab0e9bdb323d080ba030140f0d343beb86f91b1402cba3f380d1b
7
+ data.tar.gz: 6105388b8c48970780da6547ca996e2313cd4e8daadd7b2403a4c19f39700abd21c4ed821409eb4ed693818fde2a0ad971aa65d399a6e6b16ff8770e69347cc8
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-secretsmanager/customizations'
42
42
  # @service
43
43
  module Aws::SecretsManager
44
44
 
45
- GEM_VERSION = '1.14.0'
45
+ GEM_VERSION = '1.15.0'
46
46
 
47
47
  end
@@ -2487,25 +2487,22 @@ module Aws::SecretsManager
2487
2487
  # The list of staging labels to add to this version.
2488
2488
  #
2489
2489
  # @option params [String] :remove_from_version_id
2490
- # (Optional) Specifies the secret version ID of the version that the
2491
- # staging labels are to be removed from.
2492
- #
2493
- # If you want to move a label to a new version, you do not have to
2494
- # explicitly remove it with this parameter. Adding a label using the
2495
- # `MoveToVersionId` parameter automatically removes it from the old
2496
- # version. However, if you do include both the "MoveTo" and
2497
- # "RemoveFrom" parameters, then the move is successful only if the
2498
- # staging labels are actually present on the "RemoveFrom" version. If
2499
- # a staging label was on a different version than "RemoveFrom", then
2500
- # the request fails.
2490
+ # Specifies the secret version ID of the version that the staging labels
2491
+ # are to be removed from. If the staging label you are trying to attach
2492
+ # to one version is already attached to a different version, then you
2493
+ # must include this parameter and specify the version that the label is
2494
+ # to be removed from. If the label is attached and you either do not
2495
+ # specify this parameter, or the version ID does not match, then the
2496
+ # operation fails.
2501
2497
  #
2502
2498
  # @option params [String] :move_to_version_id
2503
2499
  # (Optional) The secret version ID that you want to add the staging
2504
- # labels to.
2500
+ # labels to. If you want to remove a label from a version, then do not
2501
+ # specify this parameter.
2505
2502
  #
2506
2503
  # If any of the staging labels are already attached to a different
2507
- # version of the secret, then they are automatically removed from that
2508
- # version before adding them to this version.
2504
+ # version of the secret, then you must also specify the
2505
+ # `RemoveFromVersionId` parameter.
2509
2506
  #
2510
2507
  # @return [Types::UpdateSecretVersionStageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2511
2508
  #
@@ -2603,7 +2600,7 @@ module Aws::SecretsManager
2603
2600
  params: params,
2604
2601
  config: config)
2605
2602
  context[:gem_name] = 'aws-sdk-secretsmanager'
2606
- context[:gem_version] = '1.14.0'
2603
+ context[:gem_version] = '1.15.0'
2607
2604
  Seahorse::Client::Request.new(handlers, context)
2608
2605
  end
2609
2606
 
@@ -1758,26 +1758,23 @@ module Aws::SecretsManager
1758
1758
  # @return [String]
1759
1759
  #
1760
1760
  # @!attribute [rw] remove_from_version_id
1761
- # (Optional) Specifies the secret version ID of the version that the
1762
- # staging labels are to be removed from.
1763
- #
1764
- # If you want to move a label to a new version, you do not have to
1765
- # explicitly remove it with this parameter. Adding a label using the
1766
- # `MoveToVersionId` parameter automatically removes it from the old
1767
- # version. However, if you do include both the "MoveTo" and
1768
- # "RemoveFrom" parameters, then the move is successful only if the
1769
- # staging labels are actually present on the "RemoveFrom" version.
1770
- # If a staging label was on a different version than "RemoveFrom",
1771
- # then the request fails.
1761
+ # Specifies the secret version ID of the version that the staging
1762
+ # labels are to be removed from. If the staging label you are trying
1763
+ # to attach to one version is already attached to a different version,
1764
+ # then you must include this parameter and specify the version that
1765
+ # the label is to be removed from. If the label is attached and you
1766
+ # either do not specify this parameter, or the version ID does not
1767
+ # match, then the operation fails.
1772
1768
  # @return [String]
1773
1769
  #
1774
1770
  # @!attribute [rw] move_to_version_id
1775
1771
  # (Optional) The secret version ID that you want to add the staging
1776
- # labels to.
1772
+ # labels to. If you want to remove a label from a version, then do not
1773
+ # specify this parameter.
1777
1774
  #
1778
1775
  # If any of the staging labels are already attached to a different
1779
- # version of the secret, then they are automatically removed from that
1780
- # version before adding them to this version.
1776
+ # version of the secret, then you must also specify the
1777
+ # `RemoveFromVersionId` parameter.
1781
1778
  # @return [String]
1782
1779
  #
1783
1780
  # @see http://docs.aws.amazon.com/goto/WebAPI/secretsmanager-2017-10-17/UpdateSecretVersionStageRequest AWS API Documentation
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.14.0
4
+ version: 1.15.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: 2018-09-06 00:00:00.000000000 Z
11
+ date: 2018-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core