aws-sdk-cloudhsmv2 1.23.0 → 1.28.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: 463a1d93370af65521794156822bd61a4f27a548c888cd9dcbddf6633123eb79
4
- data.tar.gz: 72c9a2196a822ad856e782d1c97595ff416465d51ce335e4f9c50745c188950f
3
+ metadata.gz: a5af8ec7571a645a7ac73d6e93bd5032f047c8e6ad2287909d65049911460b6d
4
+ data.tar.gz: fb787e05f1e0c6eaea0010875daa31503d36e46d3d27c8231b7809c1ed5fbeac
5
5
  SHA512:
6
- metadata.gz: dbd56d53e7ac0211c17827d154638b1a5edf0c7e74d249f023a9c06ff7d2078688ce28b937cd6e436e99e2edeba65c6b9e1cf5384d6d285e90461990fbb9cd4a
7
- data.tar.gz: 90e8d62fa8a2e4aee93d14453c847dad6e45d7f61dfed3a0496a6e0bf030e4ef81ead4086b279aa82cf271c5fa5f7293ab2d851763a0ee5385ff550b62dcf57b
6
+ metadata.gz: bf5885f40fbebc6a54f2893757fc600bb0d73a8c51beee33b521baec330096816f927ab367b6e20ef2d5ece84b1d470f95915be286421b0c316580190db36a62
7
+ data.tar.gz: 8f8527a16dfcd6ac65db298b58cb7697ed51d927ef24389ce3924ffb61cc77a054448a168443b492d39920e73fd8aa9ecd7ffc7d4ba4220b0c06370993a3e846
@@ -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:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-cloudhsmv2/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::CloudHSMV2
47
49
 
48
- GEM_VERSION = '1.23.0'
50
+ GEM_VERSION = '1.28.0'
49
51
 
50
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,6 +26,7 @@ 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
 
@@ -69,6 +72,7 @@ module Aws::CloudHSMV2
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
74
78
 
@@ -81,13 +85,28 @@ module Aws::CloudHSMV2
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::CloudHSMV2
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::CloudHSMV2
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -327,6 +346,10 @@ module Aws::CloudHSMV2
327
346
  # The ID of the backup that will be copied to the destination region.
328
347
  #
329
348
  # @option params [Array<Types::Tag>] :tag_list
349
+ # Tags to apply to the destination backup during creation. If you
350
+ # specify tags, only these tags will be applied to the destination
351
+ # backup. If you do not specify tags, the service copies tags from the
352
+ # source backup to the destination backup.
330
353
  #
331
354
  # @return [Types::CopyBackupToRegionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
332
355
  #
@@ -382,6 +405,7 @@ module Aws::CloudHSMV2
382
405
  # cluster. To find the backup ID, use DescribeBackups.
383
406
  #
384
407
  # @option params [Array<Types::Tag>] :tag_list
408
+ # Tags to apply to the CloudHSM cluster during creation.
385
409
  #
386
410
  # @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
387
411
  #
@@ -1031,7 +1055,7 @@ module Aws::CloudHSMV2
1031
1055
  params: params,
1032
1056
  config: config)
1033
1057
  context[:gem_name] = 'aws-sdk-cloudhsmv2'
1034
- context[:gem_version] = '1.23.0'
1058
+ context[:gem_version] = '1.28.0'
1035
1059
  Seahorse::Client::Request.new(handlers, context)
1036
1060
  end
1037
1061
 
@@ -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:
@@ -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:
@@ -36,7 +38,7 @@ module Aws::CloudHSMV2
36
38
  # @return [Time]
37
39
  #
38
40
  # @!attribute [rw] source_region
39
- # The AWS region that contains the source backup from which the new
41
+ # The AWS Region that contains the source backup from which the new
40
42
  # backup was copied.
41
43
  # @return [String]
42
44
  #
@@ -47,7 +49,7 @@ module Aws::CloudHSMV2
47
49
  #
48
50
  # @!attribute [rw] source_cluster
49
51
  # The identifier (ID) of the cluster containing the source backup from
50
- # which the new backup was copied. .
52
+ # which the new backup was copied.
51
53
  # @return [String]
52
54
  #
53
55
  # @!attribute [rw] delete_timestamp
@@ -55,6 +57,7 @@ module Aws::CloudHSMV2
55
57
  # @return [Time]
56
58
  #
57
59
  # @!attribute [rw] tag_list
60
+ # The list of tags for the backup.
58
61
  # @return [Array<Types::Tag>]
59
62
  #
60
63
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudhsmv2-2017-04-28/Backup AWS API Documentation
@@ -70,6 +73,7 @@ module Aws::CloudHSMV2
70
73
  :source_cluster,
71
74
  :delete_timestamp,
72
75
  :tag_list)
76
+ SENSITIVE = []
73
77
  include Aws::Structure
74
78
  end
75
79
 
@@ -107,6 +111,7 @@ module Aws::CloudHSMV2
107
111
  :aws_hardware_certificate,
108
112
  :manufacturer_hardware_certificate,
109
113
  :cluster_certificate)
114
+ SENSITIVE = []
110
115
  include Aws::Structure
111
116
  end
112
117
 
@@ -120,6 +125,7 @@ module Aws::CloudHSMV2
120
125
  #
121
126
  class CloudHsmAccessDeniedException < Struct.new(
122
127
  :message)
128
+ SENSITIVE = []
123
129
  include Aws::Structure
124
130
  end
125
131
 
@@ -133,6 +139,7 @@ module Aws::CloudHSMV2
133
139
  #
134
140
  class CloudHsmInternalFailureException < Struct.new(
135
141
  :message)
142
+ SENSITIVE = []
136
143
  include Aws::Structure
137
144
  end
138
145
 
@@ -145,6 +152,7 @@ module Aws::CloudHSMV2
145
152
  #
146
153
  class CloudHsmInvalidRequestException < Struct.new(
147
154
  :message)
155
+ SENSITIVE = []
148
156
  include Aws::Structure
149
157
  end
150
158
 
@@ -158,6 +166,7 @@ module Aws::CloudHSMV2
158
166
  #
159
167
  class CloudHsmResourceNotFoundException < Struct.new(
160
168
  :message)
169
+ SENSITIVE = []
161
170
  include Aws::Structure
162
171
  end
163
172
 
@@ -170,9 +179,13 @@ module Aws::CloudHSMV2
170
179
  #
171
180
  class CloudHsmServiceException < Struct.new(
172
181
  :message)
182
+ SENSITIVE = []
173
183
  include Aws::Structure
174
184
  end
175
185
 
186
+ # The request was rejected because of a tagging failure. Verify the tag
187
+ # conditions in all applicable policies, and then retry the request.
188
+ #
176
189
  # @!attribute [rw] message
177
190
  # @return [String]
178
191
  #
@@ -180,6 +193,7 @@ module Aws::CloudHSMV2
180
193
  #
181
194
  class CloudHsmTagException < Struct.new(
182
195
  :message)
196
+ SENSITIVE = []
183
197
  include Aws::Structure
184
198
  end
185
199
 
@@ -243,6 +257,7 @@ module Aws::CloudHSMV2
243
257
  # @return [Types::Certificates]
244
258
  #
245
259
  # @!attribute [rw] tag_list
260
+ # The list of tags for the cluster.
246
261
  # @return [Array<Types::Tag>]
247
262
  #
248
263
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudhsmv2-2017-04-28/Cluster AWS API Documentation
@@ -262,6 +277,7 @@ module Aws::CloudHSMV2
262
277
  :vpc_id,
263
278
  :certificates,
264
279
  :tag_list)
280
+ SENSITIVE = []
265
281
  include Aws::Structure
266
282
  end
267
283
 
@@ -289,6 +305,10 @@ module Aws::CloudHSMV2
289
305
  # @return [String]
290
306
  #
291
307
  # @!attribute [rw] tag_list
308
+ # Tags to apply to the destination backup during creation. If you
309
+ # specify tags, only these tags will be applied to the destination
310
+ # backup. If you do not specify tags, the service copies tags from the
311
+ # source backup to the destination backup.
292
312
  # @return [Array<Types::Tag>]
293
313
  #
294
314
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudhsmv2-2017-04-28/CopyBackupToRegionRequest AWS API Documentation
@@ -297,6 +317,7 @@ module Aws::CloudHSMV2
297
317
  :destination_region,
298
318
  :backup_id,
299
319
  :tag_list)
320
+ SENSITIVE = []
300
321
  include Aws::Structure
301
322
  end
302
323
 
@@ -315,6 +336,7 @@ module Aws::CloudHSMV2
315
336
  #
316
337
  class CopyBackupToRegionResponse < Struct.new(
317
338
  :destination_backup)
339
+ SENSITIVE = []
318
340
  include Aws::Structure
319
341
  end
320
342
 
@@ -355,6 +377,7 @@ module Aws::CloudHSMV2
355
377
  # @return [String]
356
378
  #
357
379
  # @!attribute [rw] tag_list
380
+ # Tags to apply to the CloudHSM cluster during creation.
358
381
  # @return [Array<Types::Tag>]
359
382
  #
360
383
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudhsmv2-2017-04-28/CreateClusterRequest AWS API Documentation
@@ -364,6 +387,7 @@ module Aws::CloudHSMV2
364
387
  :hsm_type,
365
388
  :source_backup_id,
366
389
  :tag_list)
390
+ SENSITIVE = []
367
391
  include Aws::Structure
368
392
  end
369
393
 
@@ -375,6 +399,7 @@ module Aws::CloudHSMV2
375
399
  #
376
400
  class CreateClusterResponse < Struct.new(
377
401
  :cluster)
402
+ SENSITIVE = []
378
403
  include Aws::Structure
379
404
  end
380
405
 
@@ -410,6 +435,7 @@ module Aws::CloudHSMV2
410
435
  :cluster_id,
411
436
  :availability_zone,
412
437
  :ip_address)
438
+ SENSITIVE = []
413
439
  include Aws::Structure
414
440
  end
415
441
 
@@ -421,6 +447,7 @@ module Aws::CloudHSMV2
421
447
  #
422
448
  class CreateHsmResponse < Struct.new(
423
449
  :hsm)
450
+ SENSITIVE = []
424
451
  include Aws::Structure
425
452
  end
426
453
 
@@ -440,6 +467,7 @@ module Aws::CloudHSMV2
440
467
  #
441
468
  class DeleteBackupRequest < Struct.new(
442
469
  :backup_id)
470
+ SENSITIVE = []
443
471
  include Aws::Structure
444
472
  end
445
473
 
@@ -451,6 +479,7 @@ module Aws::CloudHSMV2
451
479
  #
452
480
  class DeleteBackupResponse < Struct.new(
453
481
  :backup)
482
+ SENSITIVE = []
454
483
  include Aws::Structure
455
484
  end
456
485
 
@@ -470,6 +499,7 @@ module Aws::CloudHSMV2
470
499
  #
471
500
  class DeleteClusterRequest < Struct.new(
472
501
  :cluster_id)
502
+ SENSITIVE = []
473
503
  include Aws::Structure
474
504
  end
475
505
 
@@ -481,6 +511,7 @@ module Aws::CloudHSMV2
481
511
  #
482
512
  class DeleteClusterResponse < Struct.new(
483
513
  :cluster)
514
+ SENSITIVE = []
484
515
  include Aws::Structure
485
516
  end
486
517
 
@@ -520,6 +551,7 @@ module Aws::CloudHSMV2
520
551
  :hsm_id,
521
552
  :eni_id,
522
553
  :eni_ip)
554
+ SENSITIVE = []
523
555
  include Aws::Structure
524
556
  end
525
557
 
@@ -531,6 +563,7 @@ module Aws::CloudHSMV2
531
563
  #
532
564
  class DeleteHsmResponse < Struct.new(
533
565
  :hsm_id)
566
+ SENSITIVE = []
534
567
  include Aws::Structure
535
568
  end
536
569
 
@@ -587,6 +620,7 @@ module Aws::CloudHSMV2
587
620
  :max_results,
588
621
  :filters,
589
622
  :sort_ascending)
623
+ SENSITIVE = []
590
624
  include Aws::Structure
591
625
  end
592
626
 
@@ -605,6 +639,7 @@ module Aws::CloudHSMV2
605
639
  class DescribeBackupsResponse < Struct.new(
606
640
  :backups,
607
641
  :next_token)
642
+ SENSITIVE = []
608
643
  include Aws::Structure
609
644
  end
610
645
 
@@ -650,6 +685,7 @@ module Aws::CloudHSMV2
650
685
  :filters,
651
686
  :next_token,
652
687
  :max_results)
688
+ SENSITIVE = []
653
689
  include Aws::Structure
654
690
  end
655
691
 
@@ -668,6 +704,7 @@ module Aws::CloudHSMV2
668
704
  class DescribeClustersResponse < Struct.new(
669
705
  :clusters,
670
706
  :next_token)
707
+ SENSITIVE = []
671
708
  include Aws::Structure
672
709
  end
673
710
 
@@ -700,6 +737,7 @@ module Aws::CloudHSMV2
700
737
  :source_region,
701
738
  :source_backup,
702
739
  :source_cluster)
740
+ SENSITIVE = []
703
741
  include Aws::Structure
704
742
  end
705
743
 
@@ -749,6 +787,7 @@ module Aws::CloudHSMV2
749
787
  :hsm_id,
750
788
  :state,
751
789
  :state_message)
790
+ SENSITIVE = []
752
791
  include Aws::Structure
753
792
  end
754
793
 
@@ -787,6 +826,7 @@ module Aws::CloudHSMV2
787
826
  :cluster_id,
788
827
  :signed_cert,
789
828
  :trust_anchor)
829
+ SENSITIVE = []
790
830
  include Aws::Structure
791
831
  end
792
832
 
@@ -803,6 +843,7 @@ module Aws::CloudHSMV2
803
843
  class InitializeClusterResponse < Struct.new(
804
844
  :state,
805
845
  :state_message)
846
+ SENSITIVE = []
806
847
  include Aws::Structure
807
848
  end
808
849
 
@@ -837,6 +878,7 @@ module Aws::CloudHSMV2
837
878
  :resource_id,
838
879
  :next_token,
839
880
  :max_results)
881
+ SENSITIVE = []
840
882
  include Aws::Structure
841
883
  end
842
884
 
@@ -855,6 +897,7 @@ module Aws::CloudHSMV2
855
897
  class ListTagsResponse < Struct.new(
856
898
  :tag_list,
857
899
  :next_token)
900
+ SENSITIVE = []
858
901
  include Aws::Structure
859
902
  end
860
903
 
@@ -874,6 +917,7 @@ module Aws::CloudHSMV2
874
917
  #
875
918
  class RestoreBackupRequest < Struct.new(
876
919
  :backup_id)
920
+ SENSITIVE = []
877
921
  include Aws::Structure
878
922
  end
879
923
 
@@ -885,6 +929,7 @@ module Aws::CloudHSMV2
885
929
  #
886
930
  class RestoreBackupResponse < Struct.new(
887
931
  :backup)
932
+ SENSITIVE = []
888
933
  include Aws::Structure
889
934
  end
890
935
 
@@ -911,6 +956,7 @@ module Aws::CloudHSMV2
911
956
  class Tag < Struct.new(
912
957
  :key,
913
958
  :value)
959
+ SENSITIVE = []
914
960
  include Aws::Structure
915
961
  end
916
962
 
@@ -941,6 +987,7 @@ module Aws::CloudHSMV2
941
987
  class TagResourceRequest < Struct.new(
942
988
  :resource_id,
943
989
  :tag_list)
990
+ SENSITIVE = []
944
991
  include Aws::Structure
945
992
  end
946
993
 
@@ -971,6 +1018,7 @@ module Aws::CloudHSMV2
971
1018
  class UntagResourceRequest < Struct.new(
972
1019
  :resource_id,
973
1020
  :tag_key_list)
1021
+ SENSITIVE = []
974
1022
  include Aws::Structure
975
1023
  end
976
1024
 
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.23.0
4
+ version: 1.28.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-05-28 00:00:00.000000000 Z
11
+ date: 2020-08-25 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