aws-sdk-cloudhsm 1.40.0 → 1.42.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
  SHA256:
3
- metadata.gz: eb96e9d7f76e8cc1d10aee759b276827930298d5f5ba8e0e6da0fdd06219f0b8
4
- data.tar.gz: 6c6e1e024fef0e6712cf9543168a1ee29a05f82307e93c54c35d240d74439bf7
3
+ metadata.gz: 9d32274d2e6faca322b0c45dc6c6d462e6e2dfc6544430777ab3cc80dfa4bca2
4
+ data.tar.gz: a026c013d4ac1239eb4961c554748ba01389737a1347d0f43024ade58b567113
5
5
  SHA512:
6
- metadata.gz: 8dfc87b31f688233035843cef13d19831517790718e15b5ffa4acaecba2f38ef3c92076c6c897bc53dbf9796ee47f92b6cd490ce2e0590db188ea9b34bfaf233
7
- data.tar.gz: 3fa0c08cd66c17f2123e798a31d48f15f8ca95b5a727da11e44bab5ea2ffb0d5b5bed686291c80fa826f3914f456e5cce0247fe91dda52c39e0722de10689e97
6
+ metadata.gz: 53acb9ba079fe58944171c1e47d9942a90cb7b838c1c7049fa313b1d3dc33c7869bfd8471d70d24b87b94bab5d9470ded5f84fc785451dc24b0e4e91c6357697
7
+ data.tar.gz: 978d17e84b3851100aeea730897b5e1b22ecabf45b577119732d59e01b5cd8d130ecde9d1838d27f3190551351293a615895770e9e39ac00ec593c7c0a322cd2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.41.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.40.0 (2022-10-25)
5
17
  ------------------
6
18
 
@@ -267,4 +279,4 @@ Unreleased Changes
267
279
  1.0.0.rc1 (2016-12-05)
268
280
  ------------------
269
281
 
270
- * Feature - Initial preview release of the `aws-sdk-cloudhsm` gem.
282
+ * Feature - Initial preview release of the `aws-sdk-cloudhsm` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.42.0
@@ -275,6 +275,11 @@ module Aws::CloudHSM
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -1557,7 +1562,7 @@ module Aws::CloudHSM
1557
1562
  params: params,
1558
1563
  config: config)
1559
1564
  context[:gem_name] = 'aws-sdk-cloudhsm'
1560
- context[:gem_version] = '1.40.0'
1565
+ context[:gem_version] = '1.42.0'
1561
1566
  Seahorse::Client::Request.new(handlers, context)
1562
1567
  end
1563
1568
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::CloudHSM
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
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
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
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]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloudhsm/customizations'
52
52
  # @!group service
53
53
  module Aws::CloudHSM
54
54
 
55
- GEM_VERSION = '1.40.0'
55
+ GEM_VERSION = '1.42.0'
56
56
 
57
57
  end
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.40.0
4
+ version: 1.42.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-10-25 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement