aws-sdk-secretsmanager 1.14.0 → 1.15.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 +4 -4
- data/lib/aws-sdk-secretsmanager.rb +1 -1
- data/lib/aws-sdk-secretsmanager/client.rb +12 -15
- data/lib/aws-sdk-secretsmanager/types.rb +11 -14
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dae232ec72c6d9dfe206512935471038ec0a432f
|
|
4
|
+
data.tar.gz: 19d75cdb0df94f61d92ba4377f0a984bede6a058
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3726cfae2a4e6a94f2b065ce2b36f34421e0b16f75ee6a0d665ffa02c84180ebc0c3a51a945ab0e9bdb323d080ba030140f0d343beb86f91b1402cba3f380d1b
|
|
7
|
+
data.tar.gz: 6105388b8c48970780da6547ca996e2313cd4e8daadd7b2403a4c19f39700abd21c4ed821409eb4ed693818fde2a0ad971aa65d399a6e6b16ff8770e69347cc8
|
|
@@ -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
|
-
#
|
|
2491
|
-
#
|
|
2492
|
-
#
|
|
2493
|
-
#
|
|
2494
|
-
#
|
|
2495
|
-
#
|
|
2496
|
-
#
|
|
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
|
|
2508
|
-
#
|
|
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.
|
|
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
|
-
#
|
|
1762
|
-
#
|
|
1763
|
-
#
|
|
1764
|
-
#
|
|
1765
|
-
#
|
|
1766
|
-
#
|
|
1767
|
-
#
|
|
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
|
|
1780
|
-
#
|
|
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.
|
|
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-
|
|
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
|