aws-sdk-cloudhsmv2 1.25.0 → 1.30.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-cloudhsmv2.rb +3 -2
- data/lib/aws-sdk-cloudhsmv2/client.rb +28 -8
- data/lib/aws-sdk-cloudhsmv2/types.rb +12 -2
- 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: 7324a55d0570f982e1801db0f6436f1a871ed699ef2cbb450612485f585c6d84
|
4
|
+
data.tar.gz: d85811438bd8b5fe12b1d67700849a487cea2841ca1e786b15ef5cfc4918ccfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33b9a1076d6d84dc544390642670ff7e548078ba30e5264847a1e2df2587527c2034976a9cb8c91eb7391cc69e3f7912252c508b0e14e18f81bccb2784074031
|
7
|
+
data.tar.gz: 1da2a0613928b9350d8c562f6434cc1417343451d652b7acdc9845d342bd707468c17ac28b09a842f0eb1419d8ec77c94564a5cc40485eca918db472a2021830
|
data/lib/aws-sdk-cloudhsmv2.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-cloudhsmv2/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::CloudHSMV2
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.30.0'
|
51
52
|
|
52
53
|
end
|
@@ -85,13 +85,28 @@ module Aws::CloudHSMV2
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
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
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::CloudHSMV2
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# 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.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -331,6 +346,10 @@ module Aws::CloudHSMV2
|
|
331
346
|
# The ID of the backup that will be copied to the destination region.
|
332
347
|
#
|
333
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.
|
334
353
|
#
|
335
354
|
# @return [Types::CopyBackupToRegionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
336
355
|
#
|
@@ -386,6 +405,7 @@ module Aws::CloudHSMV2
|
|
386
405
|
# cluster. To find the backup ID, use DescribeBackups.
|
387
406
|
#
|
388
407
|
# @option params [Array<Types::Tag>] :tag_list
|
408
|
+
# Tags to apply to the CloudHSM cluster during creation.
|
389
409
|
#
|
390
410
|
# @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
391
411
|
#
|
@@ -1035,7 +1055,7 @@ module Aws::CloudHSMV2
|
|
1035
1055
|
params: params,
|
1036
1056
|
config: config)
|
1037
1057
|
context[:gem_name] = 'aws-sdk-cloudhsmv2'
|
1038
|
-
context[:gem_version] = '1.
|
1058
|
+
context[:gem_version] = '1.30.0'
|
1039
1059
|
Seahorse::Client::Request.new(handlers, context)
|
1040
1060
|
end
|
1041
1061
|
|
@@ -38,7 +38,7 @@ module Aws::CloudHSMV2
|
|
38
38
|
# @return [Time]
|
39
39
|
#
|
40
40
|
# @!attribute [rw] source_region
|
41
|
-
# The AWS
|
41
|
+
# The AWS Region that contains the source backup from which the new
|
42
42
|
# backup was copied.
|
43
43
|
# @return [String]
|
44
44
|
#
|
@@ -49,7 +49,7 @@ module Aws::CloudHSMV2
|
|
49
49
|
#
|
50
50
|
# @!attribute [rw] source_cluster
|
51
51
|
# The identifier (ID) of the cluster containing the source backup from
|
52
|
-
# which the new backup was copied.
|
52
|
+
# which the new backup was copied.
|
53
53
|
# @return [String]
|
54
54
|
#
|
55
55
|
# @!attribute [rw] delete_timestamp
|
@@ -57,6 +57,7 @@ module Aws::CloudHSMV2
|
|
57
57
|
# @return [Time]
|
58
58
|
#
|
59
59
|
# @!attribute [rw] tag_list
|
60
|
+
# The list of tags for the backup.
|
60
61
|
# @return [Array<Types::Tag>]
|
61
62
|
#
|
62
63
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudhsmv2-2017-04-28/Backup AWS API Documentation
|
@@ -182,6 +183,9 @@ module Aws::CloudHSMV2
|
|
182
183
|
include Aws::Structure
|
183
184
|
end
|
184
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
|
+
#
|
185
189
|
# @!attribute [rw] message
|
186
190
|
# @return [String]
|
187
191
|
#
|
@@ -253,6 +257,7 @@ module Aws::CloudHSMV2
|
|
253
257
|
# @return [Types::Certificates]
|
254
258
|
#
|
255
259
|
# @!attribute [rw] tag_list
|
260
|
+
# The list of tags for the cluster.
|
256
261
|
# @return [Array<Types::Tag>]
|
257
262
|
#
|
258
263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudhsmv2-2017-04-28/Cluster AWS API Documentation
|
@@ -300,6 +305,10 @@ module Aws::CloudHSMV2
|
|
300
305
|
# @return [String]
|
301
306
|
#
|
302
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.
|
303
312
|
# @return [Array<Types::Tag>]
|
304
313
|
#
|
305
314
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudhsmv2-2017-04-28/CopyBackupToRegionRequest AWS API Documentation
|
@@ -368,6 +377,7 @@ module Aws::CloudHSMV2
|
|
368
377
|
# @return [String]
|
369
378
|
#
|
370
379
|
# @!attribute [rw] tag_list
|
380
|
+
# Tags to apply to the CloudHSM cluster during creation.
|
371
381
|
# @return [Array<Types::Tag>]
|
372
382
|
#
|
373
383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudhsmv2-2017-04-28/CreateClusterRequest AWS API Documentation
|
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.
|
4
|
+
version: 1.30.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-
|
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.
|
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.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|