aws-sdk-cloudhsm 1.40.0 → 1.41.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 +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudhsm/client.rb +1 -1
- data/lib/aws-sdk-cloudhsm/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-cloudhsm/types.rb +0 -168
- data/lib/aws-sdk-cloudhsm.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: 7543a672b2b60332cece92b28b92c6dfd9827e78587aedfd489c9a9af33de6e1
|
4
|
+
data.tar.gz: 65e7df5a06bef702e5806b4deb4fe198049d9d3b7a73f76832e80dc879addb56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4244feecd0957c57f37932a7c7cfaee9f5e3bf181e17b38a7e4630f68cf7666cf3462d1431febb29ba1f456650a64d3639834ea4f9c2874b88b3571f7ce7cea
|
7
|
+
data.tar.gz: bbf89bedc9dbca00be65992265dff17fa0e7d14cc6612ebf8ce7c7540ea1459b2c78ffdb0f3b9fbe8866eb1532eb1ca548f5663089ed0607cb746e6ed38d7108
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.41.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
4
11
|
1.40.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
@@ -267,4 +274,4 @@ Unreleased Changes
|
|
267
274
|
1.0.0.rc1 (2016-12-05)
|
268
275
|
------------------
|
269
276
|
|
270
|
-
* Feature - Initial preview release of the `aws-sdk-cloudhsm` gem.
|
277
|
+
* Feature - Initial preview release of the `aws-sdk-cloudhsm` gem.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.41.0
|
@@ -1557,7 +1557,7 @@ module Aws::CloudHSM
|
|
1557
1557
|
params: params,
|
1558
1558
|
config: config)
|
1559
1559
|
context[:gem_name] = 'aws-sdk-cloudhsm'
|
1560
|
-
context[:gem_version] = '1.
|
1560
|
+
context[:gem_version] = '1.41.0'
|
1561
1561
|
Seahorse::Client::Request.new(handlers, context)
|
1562
1562
|
end
|
1563
1563
|
|
@@ -9,103 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::CloudHSM
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudhsm-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudhsm-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
+
end
|
37
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
38
|
+
end
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudhsm.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
42
|
+
end
|
43
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
44
|
+
end
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://cloudhsm.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
46
|
end
|
22
|
-
|
23
|
-
end
|
47
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
48
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
49
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
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
|
-
dCI6eyJ1cmwiOiJodHRwczovL2Nsb3VkaHNtLWZpcHMue1JlZ2lvbn0ue1Bh
|
77
|
-
cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
|
78
|
-
cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
|
79
|
-
bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
|
80
|
-
ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
|
81
|
-
b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
|
82
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
83
|
-
UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
84
|
-
bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
|
85
|
-
OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
|
86
|
-
InN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
|
87
|
-
Y29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
88
|
-
dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Nsb3VkaHNt
|
89
|
-
LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9Iiwi
|
90
|
-
cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
|
91
|
-
In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFi
|
92
|
-
bGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMi
|
93
|
-
LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
94
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1
|
95
|
-
ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3si
|
96
|
-
Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0
|
97
|
-
dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9y
|
98
|
-
dHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
|
99
|
-
bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Nsb3Vk
|
100
|
-
aHNtLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3Vm
|
101
|
-
Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
|
102
|
-
bmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3Rh
|
103
|
-
Y2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
|
104
|
-
cG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
|
105
|
-
cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vY2xvdWRoc20ue1Jl
|
106
|
-
Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGll
|
107
|
-
cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
108
|
-
|
109
|
-
JSON
|
110
50
|
end
|
111
51
|
end
|
@@ -10,19 +10,6 @@
|
|
10
10
|
module Aws::CloudHSM
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @note When making an API call, you may pass AddTagsToResourceRequest
|
14
|
-
# data as a hash:
|
15
|
-
#
|
16
|
-
# {
|
17
|
-
# resource_arn: "String", # required
|
18
|
-
# tag_list: [ # required
|
19
|
-
# {
|
20
|
-
# key: "TagKey", # required
|
21
|
-
# value: "TagValue", # required
|
22
|
-
# },
|
23
|
-
# ],
|
24
|
-
# }
|
25
|
-
#
|
26
13
|
# @!attribute [rw] resource_arn
|
27
14
|
# The Amazon Resource Name (ARN) of the AWS CloudHSM resource to tag.
|
28
15
|
# @return [String]
|
@@ -79,13 +66,6 @@ module Aws::CloudHSM
|
|
79
66
|
|
80
67
|
# Contains the inputs for the CreateHapgRequest action.
|
81
68
|
#
|
82
|
-
# @note When making an API call, you may pass CreateHapgRequest
|
83
|
-
# data as a hash:
|
84
|
-
#
|
85
|
-
# {
|
86
|
-
# label: "Label", # required
|
87
|
-
# }
|
88
|
-
#
|
89
69
|
# @!attribute [rw] label
|
90
70
|
# The label of the new high-availability partition group.
|
91
71
|
# @return [String]
|
@@ -114,20 +94,6 @@ module Aws::CloudHSM
|
|
114
94
|
|
115
95
|
# Contains the inputs for the `CreateHsm` operation.
|
116
96
|
#
|
117
|
-
# @note When making an API call, you may pass CreateHsmRequest
|
118
|
-
# data as a hash:
|
119
|
-
#
|
120
|
-
# {
|
121
|
-
# subnet_id: "SubnetId", # required
|
122
|
-
# ssh_key: "SshKey", # required
|
123
|
-
# eni_ip: "IpAddress",
|
124
|
-
# iam_role_arn: "IamRoleArn", # required
|
125
|
-
# external_id: "ExternalId",
|
126
|
-
# subscription_type: "PRODUCTION", # required, accepts PRODUCTION
|
127
|
-
# client_token: "ClientToken",
|
128
|
-
# syslog_ip: "IpAddress",
|
129
|
-
# }
|
130
|
-
#
|
131
97
|
# @!attribute [rw] subnet_id
|
132
98
|
# The identifier of the subnet in your VPC in which to place the HSM.
|
133
99
|
# @return [String]
|
@@ -202,14 +168,6 @@ module Aws::CloudHSM
|
|
202
168
|
|
203
169
|
# Contains the inputs for the CreateLunaClient action.
|
204
170
|
#
|
205
|
-
# @note When making an API call, you may pass CreateLunaClientRequest
|
206
|
-
# data as a hash:
|
207
|
-
#
|
208
|
-
# {
|
209
|
-
# label: "ClientLabel",
|
210
|
-
# certificate: "Certificate", # required
|
211
|
-
# }
|
212
|
-
#
|
213
171
|
# @!attribute [rw] label
|
214
172
|
# The label for the client.
|
215
173
|
# @return [String]
|
@@ -244,13 +202,6 @@ module Aws::CloudHSM
|
|
244
202
|
|
245
203
|
# Contains the inputs for the DeleteHapg action.
|
246
204
|
#
|
247
|
-
# @note When making an API call, you may pass DeleteHapgRequest
|
248
|
-
# data as a hash:
|
249
|
-
#
|
250
|
-
# {
|
251
|
-
# hapg_arn: "HapgArn", # required
|
252
|
-
# }
|
253
|
-
#
|
254
205
|
# @!attribute [rw] hapg_arn
|
255
206
|
# The ARN of the high-availability partition group to delete.
|
256
207
|
# @return [String]
|
@@ -279,13 +230,6 @@ module Aws::CloudHSM
|
|
279
230
|
|
280
231
|
# Contains the inputs for the DeleteHsm operation.
|
281
232
|
#
|
282
|
-
# @note When making an API call, you may pass DeleteHsmRequest
|
283
|
-
# data as a hash:
|
284
|
-
#
|
285
|
-
# {
|
286
|
-
# hsm_arn: "HsmArn", # required
|
287
|
-
# }
|
288
|
-
#
|
289
233
|
# @!attribute [rw] hsm_arn
|
290
234
|
# The ARN of the HSM to delete.
|
291
235
|
# @return [String]
|
@@ -312,13 +256,6 @@ module Aws::CloudHSM
|
|
312
256
|
include Aws::Structure
|
313
257
|
end
|
314
258
|
|
315
|
-
# @note When making an API call, you may pass DeleteLunaClientRequest
|
316
|
-
# data as a hash:
|
317
|
-
#
|
318
|
-
# {
|
319
|
-
# client_arn: "ClientArn", # required
|
320
|
-
# }
|
321
|
-
#
|
322
259
|
# @!attribute [rw] client_arn
|
323
260
|
# The ARN of the client to delete.
|
324
261
|
# @return [String]
|
@@ -345,13 +282,6 @@ module Aws::CloudHSM
|
|
345
282
|
|
346
283
|
# Contains the inputs for the DescribeHapg action.
|
347
284
|
#
|
348
|
-
# @note When making an API call, you may pass DescribeHapgRequest
|
349
|
-
# data as a hash:
|
350
|
-
#
|
351
|
-
# {
|
352
|
-
# hapg_arn: "HapgArn", # required
|
353
|
-
# }
|
354
|
-
#
|
355
285
|
# @!attribute [rw] hapg_arn
|
356
286
|
# The ARN of the high-availability partition group to describe.
|
357
287
|
# @return [String]
|
@@ -419,14 +349,6 @@ module Aws::CloudHSM
|
|
419
349
|
|
420
350
|
# Contains the inputs for the DescribeHsm operation.
|
421
351
|
#
|
422
|
-
# @note When making an API call, you may pass DescribeHsmRequest
|
423
|
-
# data as a hash:
|
424
|
-
#
|
425
|
-
# {
|
426
|
-
# hsm_arn: "HsmArn",
|
427
|
-
# hsm_serial_number: "HsmSerialNumber",
|
428
|
-
# }
|
429
|
-
#
|
430
352
|
# @!attribute [rw] hsm_arn
|
431
353
|
# The ARN of the HSM. Either the `HsmArn` or the `SerialNumber`
|
432
354
|
# parameter must be specified.
|
@@ -566,14 +488,6 @@ module Aws::CloudHSM
|
|
566
488
|
include Aws::Structure
|
567
489
|
end
|
568
490
|
|
569
|
-
# @note When making an API call, you may pass DescribeLunaClientRequest
|
570
|
-
# data as a hash:
|
571
|
-
#
|
572
|
-
# {
|
573
|
-
# client_arn: "ClientArn",
|
574
|
-
# certificate_fingerprint: "CertificateFingerprint",
|
575
|
-
# }
|
576
|
-
#
|
577
491
|
# @!attribute [rw] client_arn
|
578
492
|
# The ARN of the client.
|
579
493
|
# @return [String]
|
@@ -623,15 +537,6 @@ module Aws::CloudHSM
|
|
623
537
|
include Aws::Structure
|
624
538
|
end
|
625
539
|
|
626
|
-
# @note When making an API call, you may pass GetConfigRequest
|
627
|
-
# data as a hash:
|
628
|
-
#
|
629
|
-
# {
|
630
|
-
# client_arn: "ClientArn", # required
|
631
|
-
# client_version: "5.1", # required, accepts 5.1, 5.3
|
632
|
-
# hapg_list: ["HapgArn"], # required
|
633
|
-
# }
|
634
|
-
#
|
635
540
|
# @!attribute [rw] client_arn
|
636
541
|
# The ARN of the client.
|
637
542
|
# @return [String]
|
@@ -704,13 +609,6 @@ module Aws::CloudHSM
|
|
704
609
|
include Aws::Structure
|
705
610
|
end
|
706
611
|
|
707
|
-
# @note When making an API call, you may pass ListHapgsRequest
|
708
|
-
# data as a hash:
|
709
|
-
#
|
710
|
-
# {
|
711
|
-
# next_token: "PaginationToken",
|
712
|
-
# }
|
713
|
-
#
|
714
612
|
# @!attribute [rw] next_token
|
715
613
|
# The `NextToken` value from a previous call to `ListHapgs`. Pass null
|
716
614
|
# if this is the first call.
|
@@ -742,13 +640,6 @@ module Aws::CloudHSM
|
|
742
640
|
include Aws::Structure
|
743
641
|
end
|
744
642
|
|
745
|
-
# @note When making an API call, you may pass ListHsmsRequest
|
746
|
-
# data as a hash:
|
747
|
-
#
|
748
|
-
# {
|
749
|
-
# next_token: "PaginationToken",
|
750
|
-
# }
|
751
|
-
#
|
752
643
|
# @!attribute [rw] next_token
|
753
644
|
# The `NextToken` value from a previous call to `ListHsms`. Pass null
|
754
645
|
# if this is the first call.
|
@@ -782,13 +673,6 @@ module Aws::CloudHSM
|
|
782
673
|
include Aws::Structure
|
783
674
|
end
|
784
675
|
|
785
|
-
# @note When making an API call, you may pass ListLunaClientsRequest
|
786
|
-
# data as a hash:
|
787
|
-
#
|
788
|
-
# {
|
789
|
-
# next_token: "PaginationToken",
|
790
|
-
# }
|
791
|
-
#
|
792
676
|
# @!attribute [rw] next_token
|
793
677
|
# The `NextToken` value from a previous call to `ListLunaClients`.
|
794
678
|
# Pass null if this is the first call.
|
@@ -820,13 +704,6 @@ module Aws::CloudHSM
|
|
820
704
|
include Aws::Structure
|
821
705
|
end
|
822
706
|
|
823
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
824
|
-
# data as a hash:
|
825
|
-
#
|
826
|
-
# {
|
827
|
-
# resource_arn: "String", # required
|
828
|
-
# }
|
829
|
-
#
|
830
707
|
# @!attribute [rw] resource_arn
|
831
708
|
# The Amazon Resource Name (ARN) of the AWS CloudHSM resource.
|
832
709
|
# @return [String]
|
@@ -851,15 +728,6 @@ module Aws::CloudHSM
|
|
851
728
|
include Aws::Structure
|
852
729
|
end
|
853
730
|
|
854
|
-
# @note When making an API call, you may pass ModifyHapgRequest
|
855
|
-
# data as a hash:
|
856
|
-
#
|
857
|
-
# {
|
858
|
-
# hapg_arn: "HapgArn", # required
|
859
|
-
# label: "Label",
|
860
|
-
# partition_serial_list: ["PartitionSerial"],
|
861
|
-
# }
|
862
|
-
#
|
863
731
|
# @!attribute [rw] hapg_arn
|
864
732
|
# The ARN of the high-availability partition group to modify.
|
865
733
|
# @return [String]
|
@@ -897,18 +765,6 @@ module Aws::CloudHSM
|
|
897
765
|
|
898
766
|
# Contains the inputs for the ModifyHsm operation.
|
899
767
|
#
|
900
|
-
# @note When making an API call, you may pass ModifyHsmRequest
|
901
|
-
# data as a hash:
|
902
|
-
#
|
903
|
-
# {
|
904
|
-
# hsm_arn: "HsmArn", # required
|
905
|
-
# subnet_id: "SubnetId",
|
906
|
-
# eni_ip: "IpAddress",
|
907
|
-
# iam_role_arn: "IamRoleArn",
|
908
|
-
# external_id: "ExternalId",
|
909
|
-
# syslog_ip: "IpAddress",
|
910
|
-
# }
|
911
|
-
#
|
912
768
|
# @!attribute [rw] hsm_arn
|
913
769
|
# The ARN of the HSM to modify.
|
914
770
|
# @return [String]
|
@@ -967,14 +823,6 @@ module Aws::CloudHSM
|
|
967
823
|
include Aws::Structure
|
968
824
|
end
|
969
825
|
|
970
|
-
# @note When making an API call, you may pass ModifyLunaClientRequest
|
971
|
-
# data as a hash:
|
972
|
-
#
|
973
|
-
# {
|
974
|
-
# client_arn: "ClientArn", # required
|
975
|
-
# certificate: "Certificate", # required
|
976
|
-
# }
|
977
|
-
#
|
978
826
|
# @!attribute [rw] client_arn
|
979
827
|
# The ARN of the client.
|
980
828
|
# @return [String]
|
@@ -1004,14 +852,6 @@ module Aws::CloudHSM
|
|
1004
852
|
include Aws::Structure
|
1005
853
|
end
|
1006
854
|
|
1007
|
-
# @note When making an API call, you may pass RemoveTagsFromResourceRequest
|
1008
|
-
# data as a hash:
|
1009
|
-
#
|
1010
|
-
# {
|
1011
|
-
# resource_arn: "String", # required
|
1012
|
-
# tag_key_list: ["TagKey"], # required
|
1013
|
-
# }
|
1014
|
-
#
|
1015
855
|
# @!attribute [rw] resource_arn
|
1016
856
|
# The Amazon Resource Name (ARN) of the AWS CloudHSM resource.
|
1017
857
|
# @return [String]
|
@@ -1047,14 +887,6 @@ module Aws::CloudHSM
|
|
1047
887
|
# A key-value pair that identifies or specifies metadata about an AWS
|
1048
888
|
# CloudHSM resource.
|
1049
889
|
#
|
1050
|
-
# @note When making an API call, you may pass Tag
|
1051
|
-
# data as a hash:
|
1052
|
-
#
|
1053
|
-
# {
|
1054
|
-
# key: "TagKey", # required
|
1055
|
-
# value: "TagValue", # required
|
1056
|
-
# }
|
1057
|
-
#
|
1058
890
|
# @!attribute [rw] key
|
1059
891
|
# The key of the tag.
|
1060
892
|
# @return [String]
|
data/lib/aws-sdk-cloudhsm.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-cloudhsm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.41.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:
|
11
|
+
date: 2023-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|