aws-sdk-secretsmanager 1.68.0 → 1.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-secretsmanager/client.rb +8 -2
- data/lib/aws-sdk-secretsmanager/client_api.rb +4 -0
- data/lib/aws-sdk-secretsmanager/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-secretsmanager/endpoint_provider.rb +73 -74
- data/lib/aws-sdk-secretsmanager/types.rb +11 -264
- data/lib/aws-sdk-secretsmanager.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a891ecc91bb9b24a02af41ad8598be6db0b090c889b06ca923418913ebd49052
|
4
|
+
data.tar.gz: 3d0155ca46e14988295b03922377d1d513c3fa22b5c473d7065a9beee53c11cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cee58913dd159e16235427b18fa73399c6e892bad541fee74a79068f2bb639aed062d72adc992027b9bc05b133a90aad0b67356bcc7d581cd539206f5b9ca57e
|
7
|
+
data.tar.gz: 05de315397bd20563b8cd8cb4105d0c1cd5b3faead360f15effda07aaa2e390c6820016dfbbe57967833959f5b094daf2785e40f9d10960b862f3388951bb882
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.70.0 (2022-12-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added owning service filter, include planned deletion flag, and next rotation date response parameter in ListSecrets.
|
8
|
+
|
9
|
+
1.69.0 (2022-12-22)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for Secrets Manager
|
13
|
+
|
4
14
|
1.68.0 (2022-11-17)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.70.0
|
@@ -1001,6 +1001,7 @@ module Aws::SecretsManager
|
|
1001
1001
|
# * {Types::DescribeSecretResponse#last_changed_date #last_changed_date} => Time
|
1002
1002
|
# * {Types::DescribeSecretResponse#last_accessed_date #last_accessed_date} => Time
|
1003
1003
|
# * {Types::DescribeSecretResponse#deleted_date #deleted_date} => Time
|
1004
|
+
# * {Types::DescribeSecretResponse#next_rotation_date #next_rotation_date} => Time
|
1004
1005
|
# * {Types::DescribeSecretResponse#tags #tags} => Array<Types::Tag>
|
1005
1006
|
# * {Types::DescribeSecretResponse#version_ids_to_stages #version_ids_to_stages} => Hash<String,Array<String>>
|
1006
1007
|
# * {Types::DescribeSecretResponse#owning_service #owning_service} => String
|
@@ -1074,6 +1075,7 @@ module Aws::SecretsManager
|
|
1074
1075
|
# resp.last_changed_date #=> Time
|
1075
1076
|
# resp.last_accessed_date #=> Time
|
1076
1077
|
# resp.deleted_date #=> Time
|
1078
|
+
# resp.next_rotation_date #=> Time
|
1077
1079
|
# resp.tags #=> Array
|
1078
1080
|
# resp.tags[0].key #=> String
|
1079
1081
|
# resp.tags[0].value #=> String
|
@@ -1559,6 +1561,8 @@ module Aws::SecretsManager
|
|
1559
1561
|
# [3]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#reference_iam-permissions_actions
|
1560
1562
|
# [4]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
|
1561
1563
|
#
|
1564
|
+
# @option params [Boolean] :include_planned_deletion
|
1565
|
+
#
|
1562
1566
|
# @option params [Integer] :max_results
|
1563
1567
|
# The number of results to include in the response.
|
1564
1568
|
#
|
@@ -1623,11 +1627,12 @@ module Aws::SecretsManager
|
|
1623
1627
|
# @example Request syntax with placeholder values
|
1624
1628
|
#
|
1625
1629
|
# resp = client.list_secrets({
|
1630
|
+
# include_planned_deletion: false,
|
1626
1631
|
# max_results: 1,
|
1627
1632
|
# next_token: "NextTokenType",
|
1628
1633
|
# filters: [
|
1629
1634
|
# {
|
1630
|
-
# key: "description", # accepts description, name, tag-key, tag-value, primary-region, all
|
1635
|
+
# key: "description", # accepts description, name, tag-key, tag-value, primary-region, owning-service, all
|
1631
1636
|
# values: ["FilterValueStringType"],
|
1632
1637
|
# },
|
1633
1638
|
# ],
|
@@ -1650,6 +1655,7 @@ module Aws::SecretsManager
|
|
1650
1655
|
# resp.secret_list[0].last_changed_date #=> Time
|
1651
1656
|
# resp.secret_list[0].last_accessed_date #=> Time
|
1652
1657
|
# resp.secret_list[0].deleted_date #=> Time
|
1658
|
+
# resp.secret_list[0].next_rotation_date #=> Time
|
1653
1659
|
# resp.secret_list[0].tags #=> Array
|
1654
1660
|
# resp.secret_list[0].tags[0].key #=> String
|
1655
1661
|
# resp.secret_list[0].tags[0].value #=> String
|
@@ -3046,7 +3052,7 @@ module Aws::SecretsManager
|
|
3046
3052
|
params: params,
|
3047
3053
|
config: config)
|
3048
3054
|
context[:gem_name] = 'aws-sdk-secretsmanager'
|
3049
|
-
context[:gem_version] = '1.
|
3055
|
+
context[:gem_version] = '1.70.0'
|
3050
3056
|
Seahorse::Client::Request.new(handlers, context)
|
3051
3057
|
end
|
3052
3058
|
|
@@ -69,6 +69,7 @@ module Aws::SecretsManager
|
|
69
69
|
MalformedPolicyDocumentException = Shapes::StructureShape.new(name: 'MalformedPolicyDocumentException')
|
70
70
|
MaxResultsType = Shapes::IntegerShape.new(name: 'MaxResultsType')
|
71
71
|
NameType = Shapes::StringShape.new(name: 'NameType')
|
72
|
+
NextRotationDateType = Shapes::TimestampShape.new(name: 'NextRotationDateType')
|
72
73
|
NextTokenType = Shapes::StringShape.new(name: 'NextTokenType')
|
73
74
|
NonEmptyResourcePolicyType = Shapes::StringShape.new(name: 'NonEmptyResourcePolicyType')
|
74
75
|
OwningServiceType = Shapes::StringShape.new(name: 'OwningServiceType')
|
@@ -197,6 +198,7 @@ module Aws::SecretsManager
|
|
197
198
|
DescribeSecretResponse.add_member(:last_changed_date, Shapes::ShapeRef.new(shape: LastChangedDateType, location_name: "LastChangedDate", metadata: {"box"=>true}))
|
198
199
|
DescribeSecretResponse.add_member(:last_accessed_date, Shapes::ShapeRef.new(shape: LastAccessedDateType, location_name: "LastAccessedDate", metadata: {"box"=>true}))
|
199
200
|
DescribeSecretResponse.add_member(:deleted_date, Shapes::ShapeRef.new(shape: DeletedDateType, location_name: "DeletedDate", metadata: {"box"=>true}))
|
201
|
+
DescribeSecretResponse.add_member(:next_rotation_date, Shapes::ShapeRef.new(shape: NextRotationDateType, location_name: "NextRotationDate"))
|
200
202
|
DescribeSecretResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagListType, location_name: "Tags"))
|
201
203
|
DescribeSecretResponse.add_member(:version_ids_to_stages, Shapes::ShapeRef.new(shape: SecretVersionsToStagesMapType, location_name: "VersionIdsToStages"))
|
202
204
|
DescribeSecretResponse.add_member(:owning_service, Shapes::ShapeRef.new(shape: OwningServiceType, location_name: "OwningService"))
|
@@ -280,6 +282,7 @@ module Aws::SecretsManager
|
|
280
282
|
ListSecretVersionIdsResponse.add_member(:name, Shapes::ShapeRef.new(shape: SecretNameType, location_name: "Name"))
|
281
283
|
ListSecretVersionIdsResponse.struct_class = Types::ListSecretVersionIdsResponse
|
282
284
|
|
285
|
+
ListSecretsRequest.add_member(:include_planned_deletion, Shapes::ShapeRef.new(shape: BooleanType, location_name: "IncludePlannedDeletion", metadata: {"box"=>true}))
|
283
286
|
ListSecretsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultsType, location_name: "MaxResults", metadata: {"box"=>true}))
|
284
287
|
ListSecretsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextTokenType, location_name: "NextToken"))
|
285
288
|
ListSecretsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FiltersListType, location_name: "Filters"))
|
@@ -394,6 +397,7 @@ module Aws::SecretsManager
|
|
394
397
|
SecretListEntry.add_member(:last_changed_date, Shapes::ShapeRef.new(shape: LastChangedDateType, location_name: "LastChangedDate", metadata: {"box"=>true}))
|
395
398
|
SecretListEntry.add_member(:last_accessed_date, Shapes::ShapeRef.new(shape: LastAccessedDateType, location_name: "LastAccessedDate", metadata: {"box"=>true}))
|
396
399
|
SecretListEntry.add_member(:deleted_date, Shapes::ShapeRef.new(shape: DeletedDateType, location_name: "DeletedDate"))
|
400
|
+
SecretListEntry.add_member(:next_rotation_date, Shapes::ShapeRef.new(shape: NextRotationDateType, location_name: "NextRotationDate"))
|
397
401
|
SecretListEntry.add_member(:tags, Shapes::ShapeRef.new(shape: TagListType, location_name: "Tags"))
|
398
402
|
SecretListEntry.add_member(:secret_versions_to_stages, Shapes::ShapeRef.new(shape: SecretVersionsToStagesMapType, location_name: "SecretVersionsToStages"))
|
399
403
|
SecretListEntry.add_member(:owning_service, Shapes::ShapeRef.new(shape: OwningServiceType, location_name: "OwningService"))
|
@@ -50,6 +50,9 @@ module Aws::SecretsManager
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
+
if self[:region].nil?
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
+
end
|
53
56
|
self[:use_dual_stack] = options[:use_dual_stack]
|
54
57
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
58
|
if self[:use_dual_stack].nil?
|
@@ -29,83 +29,82 @@ module Aws::SecretsManager
|
|
29
29
|
# @api private
|
30
30
|
RULES = <<-JSON
|
31
31
|
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL3NlY3JldHNtYW5hZ2VyLWZpcHMue1JlZ2lv
|
77
|
-
bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
|
78
|
-
cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
|
79
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFj
|
80
|
-
ayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
|
81
|
-
cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
|
33
|
+
YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
|
34
|
+
ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
|
35
|
+
aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
|
36
|
+
ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
|
37
|
+
IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
|
38
|
+
bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
|
39
|
+
aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
|
40
|
+
IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
|
41
|
+
IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
|
42
|
+
aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
|
43
|
+
Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
|
44
|
+
cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
|
45
|
+
bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
|
46
|
+
YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
|
47
|
+
bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
|
48
|
+
ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
|
49
|
+
IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
|
50
|
+
b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
|
51
|
+
ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
|
52
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
|
53
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
|
54
|
+
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
55
|
+
dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
|
56
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
|
57
|
+
ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
|
58
|
+
b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
82
59
|
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
cnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJo
|
100
|
-
dHRwczovL3NlY3JldHNtYW5hZ2VyLntSZWdpb259LntQYXJ0aXRpb25SZXN1
|
60
|
+
VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
|
61
|
+
Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
|
62
|
+
b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
|
63
|
+
XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
|
64
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
65
|
+
fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
|
66
|
+
Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
|
67
|
+
bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
|
68
|
+
eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
|
69
|
+
b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
|
70
|
+
Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
|
71
|
+
XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
72
|
+
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
73
|
+
InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
|
74
|
+
IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
|
75
|
+
Ly9zZWNyZXRzbWFuYWdlci1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1
|
101
76
|
bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
|
102
77
|
ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpb
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
78
|
+
XSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJsZWQsIGJ1
|
79
|
+
dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBvciBib3Ro
|
80
|
+
IiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9v
|
81
|
+
bGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1d
|
82
|
+
LCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6
|
83
|
+
ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIs
|
84
|
+
ImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJ
|
85
|
+
UFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
|
86
|
+
OltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwi
|
87
|
+
ZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zZWNyZXRzbWFuYWdlci1maXBz
|
88
|
+
LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
|
89
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
90
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBi
|
91
|
+
dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlw
|
92
|
+
ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
93
|
+
dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0s
|
94
|
+
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
95
|
+
Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
|
96
|
+
YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVh
|
97
|
+
bFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
98
|
+
b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zZWNyZXRzbWFu
|
99
|
+
YWdlci57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1
|
100
|
+
ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
|
101
|
+
ZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRHVhbFN0
|
102
|
+
YWNrIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
|
103
|
+
cHBvcnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
|
104
|
+
bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3NlY3JldHNtYW5h
|
105
|
+
Z2VyLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
|
106
|
+
b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
|
107
|
+
XX1dfQ==
|
109
108
|
|
110
109
|
JSON
|
111
110
|
end
|
@@ -10,13 +10,6 @@
|
|
10
10
|
module Aws::SecretsManager
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @note When making an API call, you may pass CancelRotateSecretRequest
|
14
|
-
# data as a hash:
|
15
|
-
#
|
16
|
-
# {
|
17
|
-
# secret_id: "SecretIdType", # required
|
18
|
-
# }
|
19
|
-
#
|
20
13
|
# @!attribute [rw] secret_id
|
21
14
|
# The ARN or name of the secret.
|
22
15
|
#
|
@@ -63,31 +56,6 @@ module Aws::SecretsManager
|
|
63
56
|
include Aws::Structure
|
64
57
|
end
|
65
58
|
|
66
|
-
# @note When making an API call, you may pass CreateSecretRequest
|
67
|
-
# data as a hash:
|
68
|
-
#
|
69
|
-
# {
|
70
|
-
# name: "NameType", # required
|
71
|
-
# client_request_token: "ClientRequestTokenType",
|
72
|
-
# description: "DescriptionType",
|
73
|
-
# kms_key_id: "KmsKeyIdType",
|
74
|
-
# secret_binary: "data",
|
75
|
-
# secret_string: "SecretStringType",
|
76
|
-
# tags: [
|
77
|
-
# {
|
78
|
-
# key: "TagKeyType",
|
79
|
-
# value: "TagValueType",
|
80
|
-
# },
|
81
|
-
# ],
|
82
|
-
# add_replica_regions: [
|
83
|
-
# {
|
84
|
-
# region: "RegionType",
|
85
|
-
# kms_key_id: "KmsKeyIdType",
|
86
|
-
# },
|
87
|
-
# ],
|
88
|
-
# force_overwrite_replica_secret: false,
|
89
|
-
# }
|
90
|
-
#
|
91
59
|
# @!attribute [rw] name
|
92
60
|
# The name of the new secret.
|
93
61
|
#
|
@@ -328,13 +296,6 @@ module Aws::SecretsManager
|
|
328
296
|
include Aws::Structure
|
329
297
|
end
|
330
298
|
|
331
|
-
# @note When making an API call, you may pass DeleteResourcePolicyRequest
|
332
|
-
# data as a hash:
|
333
|
-
#
|
334
|
-
# {
|
335
|
-
# secret_id: "SecretIdType", # required
|
336
|
-
# }
|
337
|
-
#
|
338
299
|
# @!attribute [rw] secret_id
|
339
300
|
# The ARN or name of the secret to delete the attached resource-based
|
340
301
|
# policy for.
|
@@ -374,15 +335,6 @@ module Aws::SecretsManager
|
|
374
335
|
include Aws::Structure
|
375
336
|
end
|
376
337
|
|
377
|
-
# @note When making an API call, you may pass DeleteSecretRequest
|
378
|
-
# data as a hash:
|
379
|
-
#
|
380
|
-
# {
|
381
|
-
# secret_id: "SecretIdType", # required
|
382
|
-
# recovery_window_in_days: 1,
|
383
|
-
# force_delete_without_recovery: false,
|
384
|
-
# }
|
385
|
-
#
|
386
338
|
# @!attribute [rw] secret_id
|
387
339
|
# The ARN or name of the secret to delete.
|
388
340
|
#
|
@@ -456,13 +408,6 @@ module Aws::SecretsManager
|
|
456
408
|
include Aws::Structure
|
457
409
|
end
|
458
410
|
|
459
|
-
# @note When making an API call, you may pass DescribeSecretRequest
|
460
|
-
# data as a hash:
|
461
|
-
#
|
462
|
-
# {
|
463
|
-
# secret_id: "SecretIdType", # required
|
464
|
-
# }
|
465
|
-
#
|
466
411
|
# @!attribute [rw] secret_id
|
467
412
|
# The ARN or name of the secret.
|
468
413
|
#
|
@@ -548,6 +493,9 @@ module Aws::SecretsManager
|
|
548
493
|
# deletion and restore access to the secret, use RestoreSecret.
|
549
494
|
# @return [Time]
|
550
495
|
#
|
496
|
+
# @!attribute [rw] next_rotation_date
|
497
|
+
# @return [Time]
|
498
|
+
#
|
551
499
|
# @!attribute [rw] tags
|
552
500
|
# The list of tags attached to the secret. To add tags to a secret,
|
553
501
|
# use TagResource. To remove tags, use UntagResource.
|
@@ -627,6 +575,7 @@ module Aws::SecretsManager
|
|
627
575
|
:last_changed_date,
|
628
576
|
:last_accessed_date,
|
629
577
|
:deleted_date,
|
578
|
+
:next_rotation_date,
|
630
579
|
:tags,
|
631
580
|
:version_ids_to_stages,
|
632
581
|
:owning_service,
|
@@ -665,14 +614,6 @@ module Aws::SecretsManager
|
|
665
614
|
#
|
666
615
|
# [1]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/manage_search-secret.html
|
667
616
|
#
|
668
|
-
# @note When making an API call, you may pass Filter
|
669
|
-
# data as a hash:
|
670
|
-
#
|
671
|
-
# {
|
672
|
-
# key: "description", # accepts description, name, tag-key, tag-value, primary-region, all
|
673
|
-
# values: ["FilterValueStringType"],
|
674
|
-
# }
|
675
|
-
#
|
676
617
|
# @!attribute [rw] key
|
677
618
|
# The following are keys you can use:
|
678
619
|
#
|
@@ -706,20 +647,6 @@ module Aws::SecretsManager
|
|
706
647
|
include Aws::Structure
|
707
648
|
end
|
708
649
|
|
709
|
-
# @note When making an API call, you may pass GetRandomPasswordRequest
|
710
|
-
# data as a hash:
|
711
|
-
#
|
712
|
-
# {
|
713
|
-
# password_length: 1,
|
714
|
-
# exclude_characters: "ExcludeCharactersType",
|
715
|
-
# exclude_numbers: false,
|
716
|
-
# exclude_punctuation: false,
|
717
|
-
# exclude_uppercase: false,
|
718
|
-
# exclude_lowercase: false,
|
719
|
-
# include_space: false,
|
720
|
-
# require_each_included_type: false,
|
721
|
-
# }
|
722
|
-
#
|
723
650
|
# @!attribute [rw] password_length
|
724
651
|
# The length of the password. If you don't include this parameter,
|
725
652
|
# the default length is 32 characters.
|
@@ -791,13 +718,6 @@ module Aws::SecretsManager
|
|
791
718
|
include Aws::Structure
|
792
719
|
end
|
793
720
|
|
794
|
-
# @note When making an API call, you may pass GetResourcePolicyRequest
|
795
|
-
# data as a hash:
|
796
|
-
#
|
797
|
-
# {
|
798
|
-
# secret_id: "SecretIdType", # required
|
799
|
-
# }
|
800
|
-
#
|
801
721
|
# @!attribute [rw] secret_id
|
802
722
|
# The ARN or name of the secret to retrieve the attached
|
803
723
|
# resource-based policy for.
|
@@ -849,15 +769,6 @@ module Aws::SecretsManager
|
|
849
769
|
include Aws::Structure
|
850
770
|
end
|
851
771
|
|
852
|
-
# @note When making an API call, you may pass GetSecretValueRequest
|
853
|
-
# data as a hash:
|
854
|
-
#
|
855
|
-
# {
|
856
|
-
# secret_id: "SecretIdType", # required
|
857
|
-
# version_id: "SecretVersionIdType",
|
858
|
-
# version_stage: "SecretVersionStageType",
|
859
|
-
# }
|
860
|
-
#
|
861
772
|
# @!attribute [rw] secret_id
|
862
773
|
# The ARN or name of the secret to retrieve.
|
863
774
|
#
|
@@ -1048,16 +959,6 @@ module Aws::SecretsManager
|
|
1048
959
|
include Aws::Structure
|
1049
960
|
end
|
1050
961
|
|
1051
|
-
# @note When making an API call, you may pass ListSecretVersionIdsRequest
|
1052
|
-
# data as a hash:
|
1053
|
-
#
|
1054
|
-
# {
|
1055
|
-
# secret_id: "SecretIdType", # required
|
1056
|
-
# max_results: 1,
|
1057
|
-
# next_token: "NextTokenType",
|
1058
|
-
# include_deprecated: false,
|
1059
|
-
# }
|
1060
|
-
#
|
1061
962
|
# @!attribute [rw] secret_id
|
1062
963
|
# The ARN or name of the secret whose versions you want to list.
|
1063
964
|
#
|
@@ -1132,20 +1033,8 @@ module Aws::SecretsManager
|
|
1132
1033
|
include Aws::Structure
|
1133
1034
|
end
|
1134
1035
|
|
1135
|
-
#
|
1136
|
-
#
|
1137
|
-
#
|
1138
|
-
# {
|
1139
|
-
# max_results: 1,
|
1140
|
-
# next_token: "NextTokenType",
|
1141
|
-
# filters: [
|
1142
|
-
# {
|
1143
|
-
# key: "description", # accepts description, name, tag-key, tag-value, primary-region, all
|
1144
|
-
# values: ["FilterValueStringType"],
|
1145
|
-
# },
|
1146
|
-
# ],
|
1147
|
-
# sort_order: "asc", # accepts asc, desc
|
1148
|
-
# }
|
1036
|
+
# @!attribute [rw] include_planned_deletion
|
1037
|
+
# @return [Boolean]
|
1149
1038
|
#
|
1150
1039
|
# @!attribute [rw] max_results
|
1151
1040
|
# The number of results to include in the response.
|
@@ -1172,6 +1061,7 @@ module Aws::SecretsManager
|
|
1172
1061
|
# @see http://docs.aws.amazon.com/goto/WebAPI/secretsmanager-2017-10-17/ListSecretsRequest AWS API Documentation
|
1173
1062
|
#
|
1174
1063
|
class ListSecretsRequest < Struct.new(
|
1064
|
+
:include_planned_deletion,
|
1175
1065
|
:max_results,
|
1176
1066
|
:next_token,
|
1177
1067
|
:filters,
|
@@ -1242,15 +1132,6 @@ module Aws::SecretsManager
|
|
1242
1132
|
include Aws::Structure
|
1243
1133
|
end
|
1244
1134
|
|
1245
|
-
# @note When making an API call, you may pass PutResourcePolicyRequest
|
1246
|
-
# data as a hash:
|
1247
|
-
#
|
1248
|
-
# {
|
1249
|
-
# secret_id: "SecretIdType", # required
|
1250
|
-
# resource_policy: "NonEmptyResourcePolicyType", # required
|
1251
|
-
# block_public_policy: false,
|
1252
|
-
# }
|
1253
|
-
#
|
1254
1135
|
# @!attribute [rw] secret_id
|
1255
1136
|
# The ARN or name of the secret to attach the resource-based policy.
|
1256
1137
|
#
|
@@ -1304,17 +1185,6 @@ module Aws::SecretsManager
|
|
1304
1185
|
include Aws::Structure
|
1305
1186
|
end
|
1306
1187
|
|
1307
|
-
# @note When making an API call, you may pass PutSecretValueRequest
|
1308
|
-
# data as a hash:
|
1309
|
-
#
|
1310
|
-
# {
|
1311
|
-
# secret_id: "SecretIdType", # required
|
1312
|
-
# client_request_token: "ClientRequestTokenType",
|
1313
|
-
# secret_binary: "data",
|
1314
|
-
# secret_string: "SecretStringType",
|
1315
|
-
# version_stages: ["SecretVersionStageType"],
|
1316
|
-
# }
|
1317
|
-
#
|
1318
1188
|
# @!attribute [rw] secret_id
|
1319
1189
|
# The ARN or name of the secret to add a new version to.
|
1320
1190
|
#
|
@@ -1448,14 +1318,6 @@ module Aws::SecretsManager
|
|
1448
1318
|
include Aws::Structure
|
1449
1319
|
end
|
1450
1320
|
|
1451
|
-
# @note When making an API call, you may pass RemoveRegionsFromReplicationRequest
|
1452
|
-
# data as a hash:
|
1453
|
-
#
|
1454
|
-
# {
|
1455
|
-
# secret_id: "SecretIdType", # required
|
1456
|
-
# remove_replica_regions: ["RegionType"], # required
|
1457
|
-
# }
|
1458
|
-
#
|
1459
1321
|
# @!attribute [rw] secret_id
|
1460
1322
|
# The ARN or name of the secret.
|
1461
1323
|
# @return [String]
|
@@ -1493,14 +1355,6 @@ module Aws::SecretsManager
|
|
1493
1355
|
# A custom type that specifies a `Region` and the `KmsKeyId` for a
|
1494
1356
|
# replica secret.
|
1495
1357
|
#
|
1496
|
-
# @note When making an API call, you may pass ReplicaRegionType
|
1497
|
-
# data as a hash:
|
1498
|
-
#
|
1499
|
-
# {
|
1500
|
-
# region: "RegionType",
|
1501
|
-
# kms_key_id: "KmsKeyIdType",
|
1502
|
-
# }
|
1503
|
-
#
|
1504
1358
|
# @!attribute [rw] region
|
1505
1359
|
# A Region code. For a list of Region codes, see [Name and code of
|
1506
1360
|
# Regions][1].
|
@@ -1525,20 +1379,6 @@ module Aws::SecretsManager
|
|
1525
1379
|
include Aws::Structure
|
1526
1380
|
end
|
1527
1381
|
|
1528
|
-
# @note When making an API call, you may pass ReplicateSecretToRegionsRequest
|
1529
|
-
# data as a hash:
|
1530
|
-
#
|
1531
|
-
# {
|
1532
|
-
# secret_id: "SecretIdType", # required
|
1533
|
-
# add_replica_regions: [ # required
|
1534
|
-
# {
|
1535
|
-
# region: "RegionType",
|
1536
|
-
# kms_key_id: "KmsKeyIdType",
|
1537
|
-
# },
|
1538
|
-
# ],
|
1539
|
-
# force_overwrite_replica_secret: false,
|
1540
|
-
# }
|
1541
|
-
#
|
1542
1382
|
# @!attribute [rw] secret_id
|
1543
1383
|
# The ARN or name of the secret to replicate.
|
1544
1384
|
# @return [String]
|
@@ -1642,13 +1482,6 @@ module Aws::SecretsManager
|
|
1642
1482
|
include Aws::Structure
|
1643
1483
|
end
|
1644
1484
|
|
1645
|
-
# @note When making an API call, you may pass RestoreSecretRequest
|
1646
|
-
# data as a hash:
|
1647
|
-
#
|
1648
|
-
# {
|
1649
|
-
# secret_id: "SecretIdType", # required
|
1650
|
-
# }
|
1651
|
-
#
|
1652
1485
|
# @!attribute [rw] secret_id
|
1653
1486
|
# The ARN or name of the secret to restore.
|
1654
1487
|
#
|
@@ -1685,21 +1518,6 @@ module Aws::SecretsManager
|
|
1685
1518
|
include Aws::Structure
|
1686
1519
|
end
|
1687
1520
|
|
1688
|
-
# @note When making an API call, you may pass RotateSecretRequest
|
1689
|
-
# data as a hash:
|
1690
|
-
#
|
1691
|
-
# {
|
1692
|
-
# secret_id: "SecretIdType", # required
|
1693
|
-
# client_request_token: "ClientRequestTokenType",
|
1694
|
-
# rotation_lambda_arn: "RotationLambdaARNType",
|
1695
|
-
# rotation_rules: {
|
1696
|
-
# automatically_after_days: 1,
|
1697
|
-
# duration: "DurationType",
|
1698
|
-
# schedule_expression: "ScheduleExpressionType",
|
1699
|
-
# },
|
1700
|
-
# rotate_immediately: false,
|
1701
|
-
# }
|
1702
|
-
#
|
1703
1521
|
# @!attribute [rw] secret_id
|
1704
1522
|
# The ARN or name of the secret to rotate.
|
1705
1523
|
#
|
@@ -1803,15 +1621,6 @@ module Aws::SecretsManager
|
|
1803
1621
|
|
1804
1622
|
# A structure that defines the rotation configuration for the secret.
|
1805
1623
|
#
|
1806
|
-
# @note When making an API call, you may pass RotationRulesType
|
1807
|
-
# data as a hash:
|
1808
|
-
#
|
1809
|
-
# {
|
1810
|
-
# automatically_after_days: 1,
|
1811
|
-
# duration: "DurationType",
|
1812
|
-
# schedule_expression: "ScheduleExpressionType",
|
1813
|
-
# }
|
1814
|
-
#
|
1815
1624
|
# @!attribute [rw] automatically_after_days
|
1816
1625
|
# The number of days between automatic scheduled rotations of the
|
1817
1626
|
# secret. You can use this value to check that your secret meets your
|
@@ -1958,6 +1767,9 @@ module Aws::SecretsManager
|
|
1958
1767
|
# [1]: https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html
|
1959
1768
|
# @return [Time]
|
1960
1769
|
#
|
1770
|
+
# @!attribute [rw] next_rotation_date
|
1771
|
+
# @return [Time]
|
1772
|
+
#
|
1961
1773
|
# @!attribute [rw] tags
|
1962
1774
|
# The list of user-defined tags associated with the secret. To add
|
1963
1775
|
# tags to a secret, use [ `TagResource` ][1]. To remove tags, use [
|
@@ -2008,6 +1820,7 @@ module Aws::SecretsManager
|
|
2008
1820
|
:last_changed_date,
|
2009
1821
|
:last_accessed_date,
|
2010
1822
|
:deleted_date,
|
1823
|
+
:next_rotation_date,
|
2011
1824
|
:tags,
|
2012
1825
|
:secret_versions_to_stages,
|
2013
1826
|
:owning_service,
|
@@ -2054,13 +1867,6 @@ module Aws::SecretsManager
|
|
2054
1867
|
include Aws::Structure
|
2055
1868
|
end
|
2056
1869
|
|
2057
|
-
# @note When making an API call, you may pass StopReplicationToReplicaRequest
|
2058
|
-
# data as a hash:
|
2059
|
-
#
|
2060
|
-
# {
|
2061
|
-
# secret_id: "SecretIdType", # required
|
2062
|
-
# }
|
2063
|
-
#
|
2064
1870
|
# @!attribute [rw] secret_id
|
2065
1871
|
# The ARN of the primary secret.
|
2066
1872
|
# @return [String]
|
@@ -2088,14 +1894,6 @@ module Aws::SecretsManager
|
|
2088
1894
|
|
2089
1895
|
# A structure that contains information about a tag.
|
2090
1896
|
#
|
2091
|
-
# @note When making an API call, you may pass Tag
|
2092
|
-
# data as a hash:
|
2093
|
-
#
|
2094
|
-
# {
|
2095
|
-
# key: "TagKeyType",
|
2096
|
-
# value: "TagValueType",
|
2097
|
-
# }
|
2098
|
-
#
|
2099
1897
|
# @!attribute [rw] key
|
2100
1898
|
# The key identifier, or name, of the tag.
|
2101
1899
|
# @return [String]
|
@@ -2113,19 +1911,6 @@ module Aws::SecretsManager
|
|
2113
1911
|
include Aws::Structure
|
2114
1912
|
end
|
2115
1913
|
|
2116
|
-
# @note When making an API call, you may pass TagResourceRequest
|
2117
|
-
# data as a hash:
|
2118
|
-
#
|
2119
|
-
# {
|
2120
|
-
# secret_id: "SecretIdType", # required
|
2121
|
-
# tags: [ # required
|
2122
|
-
# {
|
2123
|
-
# key: "TagKeyType",
|
2124
|
-
# value: "TagValueType",
|
2125
|
-
# },
|
2126
|
-
# ],
|
2127
|
-
# }
|
2128
|
-
#
|
2129
1914
|
# @!attribute [rw] secret_id
|
2130
1915
|
# The identifier for the secret to attach tags to. You can specify
|
2131
1916
|
# either the Amazon Resource Name (ARN) or the friendly name of the
|
@@ -2162,14 +1947,6 @@ module Aws::SecretsManager
|
|
2162
1947
|
include Aws::Structure
|
2163
1948
|
end
|
2164
1949
|
|
2165
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
2166
|
-
# data as a hash:
|
2167
|
-
#
|
2168
|
-
# {
|
2169
|
-
# secret_id: "SecretIdType", # required
|
2170
|
-
# tag_keys: ["TagKeyType"], # required
|
2171
|
-
# }
|
2172
|
-
#
|
2173
1950
|
# @!attribute [rw] secret_id
|
2174
1951
|
# The ARN or name of the secret.
|
2175
1952
|
#
|
@@ -2207,18 +1984,6 @@ module Aws::SecretsManager
|
|
2207
1984
|
include Aws::Structure
|
2208
1985
|
end
|
2209
1986
|
|
2210
|
-
# @note When making an API call, you may pass UpdateSecretRequest
|
2211
|
-
# data as a hash:
|
2212
|
-
#
|
2213
|
-
# {
|
2214
|
-
# secret_id: "SecretIdType", # required
|
2215
|
-
# client_request_token: "ClientRequestTokenType",
|
2216
|
-
# description: "DescriptionType",
|
2217
|
-
# kms_key_id: "KmsKeyIdType",
|
2218
|
-
# secret_binary: "data",
|
2219
|
-
# secret_string: "SecretStringType",
|
2220
|
-
# }
|
2221
|
-
#
|
2222
1987
|
# @!attribute [rw] secret_id
|
2223
1988
|
# The ARN or name of the secret.
|
2224
1989
|
#
|
@@ -2346,16 +2111,6 @@ module Aws::SecretsManager
|
|
2346
2111
|
include Aws::Structure
|
2347
2112
|
end
|
2348
2113
|
|
2349
|
-
# @note When making an API call, you may pass UpdateSecretVersionStageRequest
|
2350
|
-
# data as a hash:
|
2351
|
-
#
|
2352
|
-
# {
|
2353
|
-
# secret_id: "SecretIdType", # required
|
2354
|
-
# version_stage: "SecretVersionStageType", # required
|
2355
|
-
# remove_from_version_id: "SecretVersionIdType",
|
2356
|
-
# move_to_version_id: "SecretVersionIdType",
|
2357
|
-
# }
|
2358
|
-
#
|
2359
2114
|
# @!attribute [rw] secret_id
|
2360
2115
|
# The ARN or the name of the secret with the version and staging
|
2361
2116
|
# labelsto modify.
|
@@ -2419,14 +2174,6 @@ module Aws::SecretsManager
|
|
2419
2174
|
include Aws::Structure
|
2420
2175
|
end
|
2421
2176
|
|
2422
|
-
# @note When making an API call, you may pass ValidateResourcePolicyRequest
|
2423
|
-
# data as a hash:
|
2424
|
-
#
|
2425
|
-
# {
|
2426
|
-
# secret_id: "SecretIdType",
|
2427
|
-
# resource_policy: "NonEmptyResourcePolicyType", # required
|
2428
|
-
# }
|
2429
|
-
#
|
2430
2177
|
# @!attribute [rw] secret_id
|
2431
2178
|
# This field is reserved for internal use.
|
2432
2179
|
# @return [String]
|
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.70.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: 2022-
|
11
|
+
date: 2022-12-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|