aws-sdk-cloudhsm 1.23.1 → 1.28.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-cloudhsm.rb +5 -2
- data/lib/aws-sdk-cloudhsm/client.rb +25 -8
- data/lib/aws-sdk-cloudhsm/client_api.rb +2 -0
- data/lib/aws-sdk-cloudhsm/customizations.rb +1 -0
- data/lib/aws-sdk-cloudhsm/errors.rb +2 -0
- data/lib/aws-sdk-cloudhsm/resource.rb +2 -0
- data/lib/aws-sdk-cloudhsm/types.rb +43 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5cc7893c30011a0400634099dc0c412ab2c08f08308fa9d66f9fdd1ae59b47d
|
4
|
+
data.tar.gz: ea227c6c77c03e763e85a2421ceef5d19761889e4748f1c340362d41e324b4f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a5fd2f381a0885c39465dae72ca829a2cf50bd34f6e5bd68e95cb6c3a43d5b6941f165f6597603bac38e5842270af00da174ac9b91ef2c02d5f3a50b3b196cf
|
7
|
+
data.tar.gz: 3c83e6e56e9164b101bb6f953afcd6d484400339f51e7678ff8589b7af74bfefa1bfed19347a2e974d79b5231b515529a40644810a94ce896b7a0bb57194e4a9
|
data/lib/aws-sdk-cloudhsm.rb
CHANGED
@@ -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
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::CloudHSM
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.28.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:
|
@@ -83,13 +85,28 @@ module Aws::CloudHSM
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
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
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::CloudHSM
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# 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.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -1499,7 +1516,7 @@ module Aws::CloudHSM
|
|
1499
1516
|
params: params,
|
1500
1517
|
config: config)
|
1501
1518
|
context[:gem_name] = 'aws-sdk-cloudhsm'
|
1502
|
-
context[:gem_version] = '1.
|
1519
|
+
context[:gem_version] = '1.28.0'
|
1503
1520
|
Seahorse::Client::Request.new(handlers, context)
|
1504
1521
|
end
|
1505
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:
|
@@ -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.
|
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:
|
11
|
+
date: 2021-02-02 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.
|
22
|
+
version: 3.112.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.
|
32
|
+
version: 3.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|