aws-sdk-cloudhsm 1.22.0 → 1.27.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: 43e2febbda994040da093e8a5ef3fe2c7ff0f8d3d4d3270b7e0c19044cfeefb0
4
- data.tar.gz: cb0d1598750cec2c3648dea04c9600456f05a6c4fe9bf65ce65d1c5982dbed95
3
+ metadata.gz: 6fce0f95f7fe7faeccf552417afa7190cbad26e9df2038069f789787afa7ce0a
4
+ data.tar.gz: e26c672e3341e97599300254291e9f5c7ce4edbdb8415bc57905d9e77ace9d10
5
5
  SHA512:
6
- metadata.gz: 4a0d99ef9a628d3edf6fd302e298470644eb2acfc89b559b60f4c43ccda0a23ecf63edefc343988b0b5a483905a6fb3e7856eb0f35b83dfc702de091981969ef
7
- data.tar.gz: b5b1e0095851026c1bff1bbf1099e27074b825dc97aeda4a513e0bd607d24fdf914e5d957b4ca0dc0be5b4e3e21a867ac133f4ccc4ddc3fe364189e032c7b4f7
6
+ metadata.gz: b01977403627f1d1014bf9d2516ff5f4a1faa67a1702cfbd1237e3fd7ddb970ff70442975c8bd66c82d3553dcd3d5249ecadd96b00b051792c36132b73604430
7
+ data.tar.gz: 7e0403b1338b4475a6dd807009bdf86711283db700c71df32cec95a517f1c0307d328c1ecb9768fd266eb1d4067da3002a1e3d793dabb552ff4bf37a7bfe7e0e
@@ -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:
@@ -5,6 +7,7 @@
5
7
  #
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
10
+
8
11
  require 'aws-sdk-core'
9
12
  require 'aws-sigv4'
10
13
 
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-cloudhsm/customizations'
42
45
  #
43
46
  # See {Errors} for more information.
44
47
  #
45
- # @service
48
+ # @!group service
46
49
  module Aws::CloudHSM
47
50
 
48
- GEM_VERSION = '1.22.0'
51
+ GEM_VERSION = '1.27.0'
49
52
 
50
53
  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::CloudHSM
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::CloudHSM
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::CloudHSM
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::CloudHSM
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
@@ -1497,7 +1516,7 @@ module Aws::CloudHSM
1497
1516
  params: params,
1498
1517
  config: config)
1499
1518
  context[:gem_name] = 'aws-sdk-cloudhsm'
1500
- context[:gem_version] = '1.22.0'
1519
+ context[:gem_version] = '1.27.0'
1501
1520
  Seahorse::Client::Request.new(handlers, context)
1502
1521
  end
1503
1522
 
@@ -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,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -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:
@@ -34,6 +36,7 @@ module Aws::CloudHSM
34
36
  class AddTagsToResourceRequest < Struct.new(
35
37
  :resource_arn,
36
38
  :tag_list)
39
+ SENSITIVE = []
37
40
  include Aws::Structure
38
41
  end
39
42
 
@@ -45,6 +48,7 @@ module Aws::CloudHSM
45
48
  #
46
49
  class AddTagsToResourceResponse < Struct.new(
47
50
  :status)
51
+ SENSITIVE = []
48
52
  include Aws::Structure
49
53
  end
50
54
 
@@ -69,6 +73,7 @@ module Aws::CloudHSM
69
73
  class CloudHsmServiceException < Struct.new(
70
74
  :message,
71
75
  :retryable)
76
+ SENSITIVE = []
72
77
  include Aws::Structure
73
78
  end
74
79
 
@@ -89,6 +94,7 @@ module Aws::CloudHSM
89
94
  #
90
95
  class CreateHapgRequest < Struct.new(
91
96
  :label)
97
+ SENSITIVE = []
92
98
  include Aws::Structure
93
99
  end
94
100
 
@@ -102,6 +108,7 @@ module Aws::CloudHSM
102
108
  #
103
109
  class CreateHapgResponse < Struct.new(
104
110
  :hapg_arn)
111
+ SENSITIVE = []
105
112
  include Aws::Structure
106
113
  end
107
114
 
@@ -175,6 +182,7 @@ module Aws::CloudHSM
175
182
  :subscription_type,
176
183
  :client_token,
177
184
  :syslog_ip)
185
+ SENSITIVE = []
178
186
  include Aws::Structure
179
187
  end
180
188
 
@@ -188,6 +196,7 @@ module Aws::CloudHSM
188
196
  #
189
197
  class CreateHsmResponse < Struct.new(
190
198
  :hsm_arn)
199
+ SENSITIVE = []
191
200
  include Aws::Structure
192
201
  end
193
202
 
@@ -215,6 +224,7 @@ module Aws::CloudHSM
215
224
  class CreateLunaClientRequest < Struct.new(
216
225
  :label,
217
226
  :certificate)
227
+ SENSITIVE = []
218
228
  include Aws::Structure
219
229
  end
220
230
 
@@ -228,6 +238,7 @@ module Aws::CloudHSM
228
238
  #
229
239
  class CreateLunaClientResponse < Struct.new(
230
240
  :client_arn)
241
+ SENSITIVE = []
231
242
  include Aws::Structure
232
243
  end
233
244
 
@@ -248,6 +259,7 @@ module Aws::CloudHSM
248
259
  #
249
260
  class DeleteHapgRequest < Struct.new(
250
261
  :hapg_arn)
262
+ SENSITIVE = []
251
263
  include Aws::Structure
252
264
  end
253
265
 
@@ -261,6 +273,7 @@ module Aws::CloudHSM
261
273
  #
262
274
  class DeleteHapgResponse < Struct.new(
263
275
  :status)
276
+ SENSITIVE = []
264
277
  include Aws::Structure
265
278
  end
266
279
 
@@ -281,6 +294,7 @@ module Aws::CloudHSM
281
294
  #
282
295
  class DeleteHsmRequest < Struct.new(
283
296
  :hsm_arn)
297
+ SENSITIVE = []
284
298
  include Aws::Structure
285
299
  end
286
300
 
@@ -294,6 +308,7 @@ module Aws::CloudHSM
294
308
  #
295
309
  class DeleteHsmResponse < Struct.new(
296
310
  :status)
311
+ SENSITIVE = []
297
312
  include Aws::Structure
298
313
  end
299
314
 
@@ -312,6 +327,7 @@ module Aws::CloudHSM
312
327
  #
313
328
  class DeleteLunaClientRequest < Struct.new(
314
329
  :client_arn)
330
+ SENSITIVE = []
315
331
  include Aws::Structure
316
332
  end
317
333
 
@@ -323,6 +339,7 @@ module Aws::CloudHSM
323
339
  #
324
340
  class DeleteLunaClientResponse < Struct.new(
325
341
  :status)
342
+ SENSITIVE = []
326
343
  include Aws::Structure
327
344
  end
328
345
 
@@ -343,6 +360,7 @@ module Aws::CloudHSM
343
360
  #
344
361
  class DescribeHapgRequest < Struct.new(
345
362
  :hapg_arn)
363
+ SENSITIVE = []
346
364
  include Aws::Structure
347
365
  end
348
366
 
@@ -395,6 +413,7 @@ module Aws::CloudHSM
395
413
  :last_modified_timestamp,
396
414
  :partition_serial_list,
397
415
  :state)
416
+ SENSITIVE = []
398
417
  include Aws::Structure
399
418
  end
400
419
 
@@ -423,6 +442,7 @@ module Aws::CloudHSM
423
442
  class DescribeHsmRequest < Struct.new(
424
443
  :hsm_arn,
425
444
  :hsm_serial_number)
445
+ SENSITIVE = []
426
446
  include Aws::Structure
427
447
  end
428
448
 
@@ -542,6 +562,7 @@ module Aws::CloudHSM
542
562
  :server_cert_uri,
543
563
  :server_cert_last_updated,
544
564
  :partitions)
565
+ SENSITIVE = []
545
566
  include Aws::Structure
546
567
  end
547
568
 
@@ -566,6 +587,7 @@ module Aws::CloudHSM
566
587
  class DescribeLunaClientRequest < Struct.new(
567
588
  :client_arn,
568
589
  :certificate_fingerprint)
590
+ SENSITIVE = []
569
591
  include Aws::Structure
570
592
  end
571
593
 
@@ -597,6 +619,7 @@ module Aws::CloudHSM
597
619
  :certificate_fingerprint,
598
620
  :last_modified_timestamp,
599
621
  :label)
622
+ SENSITIVE = []
600
623
  include Aws::Structure
601
624
  end
602
625
 
@@ -628,6 +651,7 @@ module Aws::CloudHSM
628
651
  :client_arn,
629
652
  :client_version,
630
653
  :hapg_list)
654
+ SENSITIVE = []
631
655
  include Aws::Structure
632
656
  end
633
657
 
@@ -649,6 +673,7 @@ module Aws::CloudHSM
649
673
  :config_type,
650
674
  :config_file,
651
675
  :config_cred)
676
+ SENSITIVE = []
652
677
  include Aws::Structure
653
678
  end
654
679
 
@@ -675,6 +700,7 @@ module Aws::CloudHSM
675
700
  #
676
701
  class ListAvailableZonesResponse < Struct.new(
677
702
  :az_list)
703
+ SENSITIVE = []
678
704
  include Aws::Structure
679
705
  end
680
706
 
@@ -694,6 +720,7 @@ module Aws::CloudHSM
694
720
  #
695
721
  class ListHapgsRequest < Struct.new(
696
722
  :next_token)
723
+ SENSITIVE = []
697
724
  include Aws::Structure
698
725
  end
699
726
 
@@ -711,6 +738,7 @@ module Aws::CloudHSM
711
738
  class ListHapgsResponse < Struct.new(
712
739
  :hapg_list,
713
740
  :next_token)
741
+ SENSITIVE = []
714
742
  include Aws::Structure
715
743
  end
716
744
 
@@ -730,6 +758,7 @@ module Aws::CloudHSM
730
758
  #
731
759
  class ListHsmsRequest < Struct.new(
732
760
  :next_token)
761
+ SENSITIVE = []
733
762
  include Aws::Structure
734
763
  end
735
764
 
@@ -749,6 +778,7 @@ module Aws::CloudHSM
749
778
  class ListHsmsResponse < Struct.new(
750
779
  :hsm_list,
751
780
  :next_token)
781
+ SENSITIVE = []
752
782
  include Aws::Structure
753
783
  end
754
784
 
@@ -768,6 +798,7 @@ module Aws::CloudHSM
768
798
  #
769
799
  class ListLunaClientsRequest < Struct.new(
770
800
  :next_token)
801
+ SENSITIVE = []
771
802
  include Aws::Structure
772
803
  end
773
804
 
@@ -785,6 +816,7 @@ module Aws::CloudHSM
785
816
  class ListLunaClientsResponse < Struct.new(
786
817
  :client_list,
787
818
  :next_token)
819
+ SENSITIVE = []
788
820
  include Aws::Structure
789
821
  end
790
822
 
@@ -803,6 +835,7 @@ module Aws::CloudHSM
803
835
  #
804
836
  class ListTagsForResourceRequest < Struct.new(
805
837
  :resource_arn)
838
+ SENSITIVE = []
806
839
  include Aws::Structure
807
840
  end
808
841
 
@@ -814,6 +847,7 @@ module Aws::CloudHSM
814
847
  #
815
848
  class ListTagsForResourceResponse < Struct.new(
816
849
  :tag_list)
850
+ SENSITIVE = []
817
851
  include Aws::Structure
818
852
  end
819
853
 
@@ -845,6 +879,7 @@ module Aws::CloudHSM
845
879
  :hapg_arn,
846
880
  :label,
847
881
  :partition_serial_list)
882
+ SENSITIVE = []
848
883
  include Aws::Structure
849
884
  end
850
885
 
@@ -856,6 +891,7 @@ module Aws::CloudHSM
856
891
  #
857
892
  class ModifyHapgResponse < Struct.new(
858
893
  :hapg_arn)
894
+ SENSITIVE = []
859
895
  include Aws::Structure
860
896
  end
861
897
 
@@ -913,6 +949,7 @@ module Aws::CloudHSM
913
949
  :iam_role_arn,
914
950
  :external_id,
915
951
  :syslog_ip)
952
+ SENSITIVE = []
916
953
  include Aws::Structure
917
954
  end
918
955
 
@@ -926,6 +963,7 @@ module Aws::CloudHSM
926
963
  #
927
964
  class ModifyHsmResponse < Struct.new(
928
965
  :hsm_arn)
966
+ SENSITIVE = []
929
967
  include Aws::Structure
930
968
  end
931
969
 
@@ -950,6 +988,7 @@ module Aws::CloudHSM
950
988
  class ModifyLunaClientRequest < Struct.new(
951
989
  :client_arn,
952
990
  :certificate)
991
+ SENSITIVE = []
953
992
  include Aws::Structure
954
993
  end
955
994
 
@@ -961,6 +1000,7 @@ module Aws::CloudHSM
961
1000
  #
962
1001
  class ModifyLunaClientResponse < Struct.new(
963
1002
  :client_arn)
1003
+ SENSITIVE = []
964
1004
  include Aws::Structure
965
1005
  end
966
1006
 
@@ -988,6 +1028,7 @@ module Aws::CloudHSM
988
1028
  class RemoveTagsFromResourceRequest < Struct.new(
989
1029
  :resource_arn,
990
1030
  :tag_key_list)
1031
+ SENSITIVE = []
991
1032
  include Aws::Structure
992
1033
  end
993
1034
 
@@ -999,6 +1040,7 @@ module Aws::CloudHSM
999
1040
  #
1000
1041
  class RemoveTagsFromResourceResponse < Struct.new(
1001
1042
  :status)
1043
+ SENSITIVE = []
1002
1044
  include Aws::Structure
1003
1045
  end
1004
1046
 
@@ -1026,6 +1068,7 @@ module Aws::CloudHSM
1026
1068
  class Tag < Struct.new(
1027
1069
  :key,
1028
1070
  :value)
1071
+ SENSITIVE = []
1029
1072
  include Aws::Structure
1030
1073
  end
1031
1074
 
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.22.0
4
+ version: 1.27.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-09-30 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.109.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.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement