aws-sdk-cloudhsmv2 1.20.0 → 1.25.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
- SHA1:
3
- metadata.gz: 8596c3b790472914d401ad795ed434e7b748ac01
4
- data.tar.gz: 21c05db0c22d84ceb96ee3bd28160189197cc406
2
+ SHA256:
3
+ metadata.gz: 49f6969f048696fb13938b297c55c1d24211cee1300e5d12191896d8e254e05c
4
+ data.tar.gz: d8638a36da175f5b8e4df6b03937af737a128d79c523e5018cbf5098f1da9f57
5
5
  SHA512:
6
- metadata.gz: b8f64f183a7ccf7ffa2894426a41b2d8f980c8f06d0d8e7c38107cd20ebc480cdff1fa9a25394316f175a4339fee85a0cc208bfd3c0f1d5dbbc5c3c3acb24cf8
7
- data.tar.gz: f50949e1cd267ea89bf8aadf79bfbb85513b9d197c75bd32c46752a063150c9b9a07b5a568656dbe16924ddb0488da32b7c67bcaa916d0a45ce9a5eefc88e5e4
6
+ metadata.gz: 4cd10e295fd164d0632bd1e20ab4bbf6e9f7cc4d8fe26a3d17d69c435ba61d77c5e8bbcf6270ad56cb899fa344cd4fa5a466e6315ea5a19349efc48ac7292915
7
+ data.tar.gz: 0a9c3dd26c82bfd4261662c82e2f25ef60fcc77d778e081532fd29da2a232f5e2c1a0063be679ed0f5deff77fb8c297927a4e0eda4bea5dff6b0a804f8cfd91b
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-cloudhsmv2/customizations'
24
26
  # methods each accept a hash of request parameters and return a response
25
27
  # structure.
26
28
  #
29
+ # cloud_hsmv2 = Aws::CloudHSMV2::Client.new
30
+ # resp = cloud_hsmv2.copy_backup_to_region(params)
31
+ #
27
32
  # See {Client} for more information.
28
33
  #
29
34
  # # Errors
30
35
  #
31
- # Errors returned from AWS CloudHSM V2 all
32
- # extend {Errors::ServiceError}.
36
+ # Errors returned from AWS CloudHSM V2 are defined in the
37
+ # {Errors} module and all extend {Errors::ServiceError}.
33
38
  #
34
39
  # begin
35
40
  # # do stuff
36
41
  # rescue Aws::CloudHSMV2::Errors::ServiceError
37
- # # rescues all service API errors
42
+ # # rescues all AWS CloudHSM V2 API errors
38
43
  # end
39
44
  #
40
45
  # See {Errors} for more information.
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-cloudhsmv2/customizations'
42
47
  # @service
43
48
  module Aws::CloudHSMV2
44
49
 
45
- GEM_VERSION = '1.20.0'
50
+ GEM_VERSION = '1.25.0'
46
51
 
47
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
32
 
30
33
  Aws::Plugins::GlobalConfiguration.add_identifier(:cloudhsmv2)
31
34
 
32
35
  module Aws::CloudHSMV2
36
+ # An API client for CloudHSMV2. To construct a client, you need to configure a `:region` and `:credentials`.
37
+ #
38
+ # client = Aws::CloudHSMV2::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
43
+ #
44
+ # For details on configuring region and credentials see
45
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
46
+ #
47
+ # See {#initialize} for a full list of supported configuration options.
33
48
  class Client < Seahorse::Client::Base
34
49
 
35
50
  include Aws::ClientStubs
@@ -57,6 +72,7 @@ module Aws::CloudHSMV2
57
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
60
76
  add_plugin(Aws::Plugins::SignatureV4)
61
77
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
62
78
 
@@ -93,7 +109,7 @@ module Aws::CloudHSMV2
93
109
  # @option options [required, String] :region
94
110
  # The AWS region to connect to. The configured `:region` is
95
111
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
97
113
  #
98
114
  # * `Aws.config[:region]`
99
115
  # * `ENV['AWS_REGION']`
@@ -108,6 +124,12 @@ module Aws::CloudHSMV2
108
124
  # When set to `true`, a thread polling for endpoints will be running in
109
125
  # the background every 60 secs (default). Defaults to `false`.
110
126
  #
127
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
128
+ # Used only in `adaptive` retry mode. When true, the request will sleep
129
+ # until there is sufficent client side capacity to retry the request.
130
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
131
+ # not retry instead of sleeping.
132
+ #
111
133
  # @option options [Boolean] :client_side_monitoring (false)
112
134
  # When `true`, client-side metrics will be collected for all API requests from
113
135
  # this client.
@@ -132,6 +154,10 @@ module Aws::CloudHSMV2
132
154
  # When `true`, an attempt is made to coerce request parameters into
133
155
  # the required types.
134
156
  #
157
+ # @option options [Boolean] :correct_clock_skew (true)
158
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
159
+ # a clock skew correction and retry requests with skewed client clocks.
160
+ #
135
161
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
162
  # Set to true to disable SDK automatically adding host prefix
137
163
  # to default service endpoint when available.
@@ -139,7 +165,7 @@ module Aws::CloudHSMV2
139
165
  # @option options [String] :endpoint
140
166
  # The client endpoint is normally constructed from the `:region`
141
167
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
143
169
  #
144
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +180,7 @@ module Aws::CloudHSMV2
154
180
  # requests fetching endpoints information. Defaults to 60 sec.
155
181
  #
156
182
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
184
  #
159
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
186
  # The log formatter.
@@ -166,15 +192,29 @@ module Aws::CloudHSMV2
166
192
  # The Logger instance to send log messages to. If this option
167
193
  # is not set, logging will be disabled.
168
194
  #
195
+ # @option options [Integer] :max_attempts (3)
196
+ # An integer representing the maximum number attempts that will be made for
197
+ # a single request, including the initial attempt. For example,
198
+ # setting this value to 5 will result in a request being retried up to
199
+ # 4 times. Used in `standard` and `adaptive` retry modes.
200
+ #
169
201
  # @option options [String] :profile ("default")
170
202
  # Used when loading credentials from the shared credentials file
171
203
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
204
  #
205
+ # @option options [Proc] :retry_backoff
206
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
207
+ # This option is only used in the `legacy` retry mode.
208
+ #
173
209
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
210
+ # The base delay in seconds used by the default backoff function. This option
211
+ # is only used in the `legacy` retry mode.
175
212
  #
176
213
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
214
+ # A delay randomiser function used by the default backoff function.
215
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
216
+ # otherwise a Proc that takes and returns a number. This option is only used
217
+ # in the `legacy` retry mode.
178
218
  #
179
219
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
220
  #
@@ -182,11 +222,30 @@ module Aws::CloudHSMV2
182
222
  # The maximum number of times to retry failed requests. Only
183
223
  # ~ 500 level server errors and certain ~ 400 level client errors
184
224
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
225
+ # checksum errors, networking errors, timeout errors, auth errors,
226
+ # endpoint discovery, and errors from expired credentials.
227
+ # This option is only used in the `legacy` retry mode.
187
228
  #
188
229
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
230
+ # The maximum number of seconds to delay between retries (0 for no limit)
231
+ # used by the default backoff function. This option is only used in the
232
+ # `legacy` retry mode.
233
+ #
234
+ # @option options [String] :retry_mode ("legacy")
235
+ # Specifies which retry algorithm to use. Values are:
236
+ #
237
+ # * `legacy` - The pre-existing retry behavior. This is default value if
238
+ # no retry mode is provided.
239
+ #
240
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
241
+ # This includes support for retry quotas, which limit the number of
242
+ # unsuccessful retries a client can make.
243
+ #
244
+ # * `adaptive` - An experimental retry mode that includes all the
245
+ # functionality of `standard` mode along with automatic client side
246
+ # throttling. This is a provisional mode that may change behavior
247
+ # in the future.
248
+ #
190
249
  #
191
250
  # @option options [String] :secret_access_key
192
251
  #
@@ -219,16 +278,15 @@ module Aws::CloudHSMV2
219
278
  # requests through. Formatted like 'http://proxy.com:123'.
220
279
  #
221
280
  # @option options [Float] :http_open_timeout (15) The number of
222
- # seconds to wait when opening a HTTP session before rasing a
281
+ # seconds to wait when opening a HTTP session before raising a
223
282
  # `Timeout::Error`.
224
283
  #
225
284
  # @option options [Integer] :http_read_timeout (60) The default
226
285
  # number of seconds to wait for response data. This value can
227
- # safely be set
228
- # per-request on the session yeidled by {#session_for}.
286
+ # safely be set per-request on the session.
229
287
  #
230
288
  # @option options [Float] :http_idle_timeout (5) The number of
231
- # seconds a connection is allowed to sit idble before it is
289
+ # seconds a connection is allowed to sit idle before it is
232
290
  # considered stale. Stale connections are closed and removed
233
291
  # from the pool before making a request.
234
292
  #
@@ -237,7 +295,7 @@ module Aws::CloudHSMV2
237
295
  # request body. This option has no effect unless the request has
238
296
  # "Expect" header set to "100-continue". Defaults to `nil` which
239
297
  # disables this behaviour. This value can safely be set per
240
- # request on the session yeidled by {#session_for}.
298
+ # request on the session.
241
299
  #
242
300
  # @option options [Boolean] :http_wire_trace (false) When `true`,
243
301
  # HTTP debug output will be sent to the `:logger`.
@@ -628,6 +686,8 @@ module Aws::CloudHSMV2
628
686
  # * {Types::DescribeBackupsResponse#backups #backups} => Array&lt;Types::Backup&gt;
629
687
  # * {Types::DescribeBackupsResponse#next_token #next_token} => String
630
688
  #
689
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
690
+ #
631
691
  # @example Request syntax with placeholder values
632
692
  #
633
693
  # resp = client.describe_backups({
@@ -701,6 +761,8 @@ module Aws::CloudHSMV2
701
761
  # * {Types::DescribeClustersResponse#clusters #clusters} => Array&lt;Types::Cluster&gt;
702
762
  # * {Types::DescribeClustersResponse#next_token #next_token} => String
703
763
  #
764
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
765
+ #
704
766
  # @example Request syntax with placeholder values
705
767
  #
706
768
  # resp = client.describe_clusters({
@@ -830,6 +892,8 @@ module Aws::CloudHSMV2
830
892
  # * {Types::ListTagsResponse#tag_list #tag_list} => Array&lt;Types::Tag&gt;
831
893
  # * {Types::ListTagsResponse#next_token #next_token} => String
832
894
  #
895
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
896
+ #
833
897
  # @example Request syntax with placeholder values
834
898
  #
835
899
  # resp = client.list_tags({
@@ -971,7 +1035,7 @@ module Aws::CloudHSMV2
971
1035
  params: params,
972
1036
  config: config)
973
1037
  context[:gem_name] = 'aws-sdk-cloudhsmv2'
974
- context[:gem_version] = '1.20.0'
1038
+ context[:gem_version] = '1.25.0'
975
1039
  Seahorse::Client::Request.new(handlers, context)
976
1040
  end
977
1041
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,6 +8,34 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::CloudHSMV2
11
+
12
+ # When CloudHSMV2 returns an error response, the Ruby SDK constructs and raises an error.
13
+ # These errors all extend Aws::CloudHSMV2::Errors::ServiceError < {Aws::Errors::ServiceError}
14
+ #
15
+ # You can rescue all CloudHSMV2 errors using ServiceError:
16
+ #
17
+ # begin
18
+ # # do stuff
19
+ # rescue Aws::CloudHSMV2::Errors::ServiceError
20
+ # # rescues all CloudHSMV2 API errors
21
+ # end
22
+ #
23
+ #
24
+ # ## Request Context
25
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
26
+ # information about the request that generated the error.
27
+ # See {Seahorse::Client::RequestContext} for more information.
28
+ #
29
+ # ## Error Classes
30
+ # * {CloudHsmAccessDeniedException}
31
+ # * {CloudHsmInternalFailureException}
32
+ # * {CloudHsmInvalidRequestException}
33
+ # * {CloudHsmResourceNotFoundException}
34
+ # * {CloudHsmServiceException}
35
+ # * {CloudHsmTagException}
36
+ #
37
+ # Additionally, error classes are dynamically generated for service errors based on the error code
38
+ # if they are not defined above.
9
39
  module Errors
10
40
 
11
41
  extend Aws::Errors::DynamicErrors
@@ -23,7 +53,6 @@ module Aws::CloudHSMV2
23
53
  def message
24
54
  @message || @data[:message]
25
55
  end
26
-
27
56
  end
28
57
 
29
58
  class CloudHsmInternalFailureException < ServiceError
@@ -39,7 +68,6 @@ module Aws::CloudHSMV2
39
68
  def message
40
69
  @message || @data[:message]
41
70
  end
42
-
43
71
  end
44
72
 
45
73
  class CloudHsmInvalidRequestException < ServiceError
@@ -55,7 +83,6 @@ module Aws::CloudHSMV2
55
83
  def message
56
84
  @message || @data[:message]
57
85
  end
58
-
59
86
  end
60
87
 
61
88
  class CloudHsmResourceNotFoundException < ServiceError
@@ -71,7 +98,6 @@ module Aws::CloudHSMV2
71
98
  def message
72
99
  @message || @data[:message]
73
100
  end
74
-
75
101
  end
76
102
 
77
103
  class CloudHsmServiceException < ServiceError
@@ -87,7 +113,6 @@ module Aws::CloudHSMV2
87
113
  def message
88
114
  @message || @data[:message]
89
115
  end
90
-
91
116
  end
92
117
 
93
118
  class CloudHsmTagException < ServiceError
@@ -103,7 +128,6 @@ module Aws::CloudHSMV2
103
128
  def message
104
129
  @message || @data[:message]
105
130
  end
106
-
107
131
  end
108
132
 
109
133
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,6 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::CloudHSMV2
11
+
9
12
  class Resource
10
13
 
11
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -70,6 +72,7 @@ module Aws::CloudHSMV2
70
72
  :source_cluster,
71
73
  :delete_timestamp,
72
74
  :tag_list)
75
+ SENSITIVE = []
73
76
  include Aws::Structure
74
77
  end
75
78
 
@@ -107,6 +110,7 @@ module Aws::CloudHSMV2
107
110
  :aws_hardware_certificate,
108
111
  :manufacturer_hardware_certificate,
109
112
  :cluster_certificate)
113
+ SENSITIVE = []
110
114
  include Aws::Structure
111
115
  end
112
116
 
@@ -120,6 +124,7 @@ module Aws::CloudHSMV2
120
124
  #
121
125
  class CloudHsmAccessDeniedException < Struct.new(
122
126
  :message)
127
+ SENSITIVE = []
123
128
  include Aws::Structure
124
129
  end
125
130
 
@@ -133,6 +138,7 @@ module Aws::CloudHSMV2
133
138
  #
134
139
  class CloudHsmInternalFailureException < Struct.new(
135
140
  :message)
141
+ SENSITIVE = []
136
142
  include Aws::Structure
137
143
  end
138
144
 
@@ -145,6 +151,7 @@ module Aws::CloudHSMV2
145
151
  #
146
152
  class CloudHsmInvalidRequestException < Struct.new(
147
153
  :message)
154
+ SENSITIVE = []
148
155
  include Aws::Structure
149
156
  end
150
157
 
@@ -158,6 +165,7 @@ module Aws::CloudHSMV2
158
165
  #
159
166
  class CloudHsmResourceNotFoundException < Struct.new(
160
167
  :message)
168
+ SENSITIVE = []
161
169
  include Aws::Structure
162
170
  end
163
171
 
@@ -170,6 +178,7 @@ module Aws::CloudHSMV2
170
178
  #
171
179
  class CloudHsmServiceException < Struct.new(
172
180
  :message)
181
+ SENSITIVE = []
173
182
  include Aws::Structure
174
183
  end
175
184
 
@@ -180,6 +189,7 @@ module Aws::CloudHSMV2
180
189
  #
181
190
  class CloudHsmTagException < Struct.new(
182
191
  :message)
192
+ SENSITIVE = []
183
193
  include Aws::Structure
184
194
  end
185
195
 
@@ -262,6 +272,7 @@ module Aws::CloudHSMV2
262
272
  :vpc_id,
263
273
  :certificates,
264
274
  :tag_list)
275
+ SENSITIVE = []
265
276
  include Aws::Structure
266
277
  end
267
278
 
@@ -297,6 +308,7 @@ module Aws::CloudHSMV2
297
308
  :destination_region,
298
309
  :backup_id,
299
310
  :tag_list)
311
+ SENSITIVE = []
300
312
  include Aws::Structure
301
313
  end
302
314
 
@@ -315,6 +327,7 @@ module Aws::CloudHSMV2
315
327
  #
316
328
  class CopyBackupToRegionResponse < Struct.new(
317
329
  :destination_backup)
330
+ SENSITIVE = []
318
331
  include Aws::Structure
319
332
  end
320
333
 
@@ -364,6 +377,7 @@ module Aws::CloudHSMV2
364
377
  :hsm_type,
365
378
  :source_backup_id,
366
379
  :tag_list)
380
+ SENSITIVE = []
367
381
  include Aws::Structure
368
382
  end
369
383
 
@@ -375,6 +389,7 @@ module Aws::CloudHSMV2
375
389
  #
376
390
  class CreateClusterResponse < Struct.new(
377
391
  :cluster)
392
+ SENSITIVE = []
378
393
  include Aws::Structure
379
394
  end
380
395
 
@@ -410,6 +425,7 @@ module Aws::CloudHSMV2
410
425
  :cluster_id,
411
426
  :availability_zone,
412
427
  :ip_address)
428
+ SENSITIVE = []
413
429
  include Aws::Structure
414
430
  end
415
431
 
@@ -421,6 +437,7 @@ module Aws::CloudHSMV2
421
437
  #
422
438
  class CreateHsmResponse < Struct.new(
423
439
  :hsm)
440
+ SENSITIVE = []
424
441
  include Aws::Structure
425
442
  end
426
443
 
@@ -440,6 +457,7 @@ module Aws::CloudHSMV2
440
457
  #
441
458
  class DeleteBackupRequest < Struct.new(
442
459
  :backup_id)
460
+ SENSITIVE = []
443
461
  include Aws::Structure
444
462
  end
445
463
 
@@ -451,6 +469,7 @@ module Aws::CloudHSMV2
451
469
  #
452
470
  class DeleteBackupResponse < Struct.new(
453
471
  :backup)
472
+ SENSITIVE = []
454
473
  include Aws::Structure
455
474
  end
456
475
 
@@ -470,6 +489,7 @@ module Aws::CloudHSMV2
470
489
  #
471
490
  class DeleteClusterRequest < Struct.new(
472
491
  :cluster_id)
492
+ SENSITIVE = []
473
493
  include Aws::Structure
474
494
  end
475
495
 
@@ -481,6 +501,7 @@ module Aws::CloudHSMV2
481
501
  #
482
502
  class DeleteClusterResponse < Struct.new(
483
503
  :cluster)
504
+ SENSITIVE = []
484
505
  include Aws::Structure
485
506
  end
486
507
 
@@ -520,6 +541,7 @@ module Aws::CloudHSMV2
520
541
  :hsm_id,
521
542
  :eni_id,
522
543
  :eni_ip)
544
+ SENSITIVE = []
523
545
  include Aws::Structure
524
546
  end
525
547
 
@@ -531,6 +553,7 @@ module Aws::CloudHSMV2
531
553
  #
532
554
  class DeleteHsmResponse < Struct.new(
533
555
  :hsm_id)
556
+ SENSITIVE = []
534
557
  include Aws::Structure
535
558
  end
536
559
 
@@ -587,6 +610,7 @@ module Aws::CloudHSMV2
587
610
  :max_results,
588
611
  :filters,
589
612
  :sort_ascending)
613
+ SENSITIVE = []
590
614
  include Aws::Structure
591
615
  end
592
616
 
@@ -605,6 +629,7 @@ module Aws::CloudHSMV2
605
629
  class DescribeBackupsResponse < Struct.new(
606
630
  :backups,
607
631
  :next_token)
632
+ SENSITIVE = []
608
633
  include Aws::Structure
609
634
  end
610
635
 
@@ -650,6 +675,7 @@ module Aws::CloudHSMV2
650
675
  :filters,
651
676
  :next_token,
652
677
  :max_results)
678
+ SENSITIVE = []
653
679
  include Aws::Structure
654
680
  end
655
681
 
@@ -668,6 +694,7 @@ module Aws::CloudHSMV2
668
694
  class DescribeClustersResponse < Struct.new(
669
695
  :clusters,
670
696
  :next_token)
697
+ SENSITIVE = []
671
698
  include Aws::Structure
672
699
  end
673
700
 
@@ -700,6 +727,7 @@ module Aws::CloudHSMV2
700
727
  :source_region,
701
728
  :source_backup,
702
729
  :source_cluster)
730
+ SENSITIVE = []
703
731
  include Aws::Structure
704
732
  end
705
733
 
@@ -749,6 +777,7 @@ module Aws::CloudHSMV2
749
777
  :hsm_id,
750
778
  :state,
751
779
  :state_message)
780
+ SENSITIVE = []
752
781
  include Aws::Structure
753
782
  end
754
783
 
@@ -787,6 +816,7 @@ module Aws::CloudHSMV2
787
816
  :cluster_id,
788
817
  :signed_cert,
789
818
  :trust_anchor)
819
+ SENSITIVE = []
790
820
  include Aws::Structure
791
821
  end
792
822
 
@@ -803,6 +833,7 @@ module Aws::CloudHSMV2
803
833
  class InitializeClusterResponse < Struct.new(
804
834
  :state,
805
835
  :state_message)
836
+ SENSITIVE = []
806
837
  include Aws::Structure
807
838
  end
808
839
 
@@ -837,6 +868,7 @@ module Aws::CloudHSMV2
837
868
  :resource_id,
838
869
  :next_token,
839
870
  :max_results)
871
+ SENSITIVE = []
840
872
  include Aws::Structure
841
873
  end
842
874
 
@@ -855,6 +887,7 @@ module Aws::CloudHSMV2
855
887
  class ListTagsResponse < Struct.new(
856
888
  :tag_list,
857
889
  :next_token)
890
+ SENSITIVE = []
858
891
  include Aws::Structure
859
892
  end
860
893
 
@@ -874,6 +907,7 @@ module Aws::CloudHSMV2
874
907
  #
875
908
  class RestoreBackupRequest < Struct.new(
876
909
  :backup_id)
910
+ SENSITIVE = []
877
911
  include Aws::Structure
878
912
  end
879
913
 
@@ -885,6 +919,7 @@ module Aws::CloudHSMV2
885
919
  #
886
920
  class RestoreBackupResponse < Struct.new(
887
921
  :backup)
922
+ SENSITIVE = []
888
923
  include Aws::Structure
889
924
  end
890
925
 
@@ -911,6 +946,7 @@ module Aws::CloudHSMV2
911
946
  class Tag < Struct.new(
912
947
  :key,
913
948
  :value)
949
+ SENSITIVE = []
914
950
  include Aws::Structure
915
951
  end
916
952
 
@@ -941,6 +977,7 @@ module Aws::CloudHSMV2
941
977
  class TagResourceRequest < Struct.new(
942
978
  :resource_id,
943
979
  :tag_list)
980
+ SENSITIVE = []
944
981
  include Aws::Structure
945
982
  end
946
983
 
@@ -971,6 +1008,7 @@ module Aws::CloudHSMV2
971
1008
  class UntagResourceRequest < Struct.new(
972
1009
  :resource_id,
973
1010
  :tag_key_list)
1011
+ SENSITIVE = []
974
1012
  include Aws::Structure
975
1013
  end
976
1014
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudhsmv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.20.0
4
+ version: 1.25.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: 2020-01-17 00:00:00.000000000 Z
11
+ date: 2020-06-23 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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - CloudHSM V2