aws-sdk-cloudhsm 1.14.0 → 1.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d0602d62031808edee1cf09b5afb4f98990906e
4
- data.tar.gz: 39e300e144388ee6035a39e9204dfd06ca04bdd3
3
+ metadata.gz: a6ebb74f6ee60ba5ad3952561ebc7a8dcddf91cb
4
+ data.tar.gz: c4024378d381a3e430700095d4260ecc512f5f71
5
5
  SHA512:
6
- metadata.gz: '08bdca5a4a7f6c6d3610cc9fb40503a449b78cd5d3909978fa3b8550b1a5faf5c3f277a54c0ea9f38134049f75f13b67ecb901f5e94f726276dd27b4da51f57b'
7
- data.tar.gz: cd23a84787b29e7576031861191b4f633a066250347aee6437f60894b596d428c5b6b7327d61784926296ff65ae5f0c0bf0b898d7a779c7b48465a5da43e2396
6
+ metadata.gz: f3de272e83482fa02fd0a5e974d056aefff61f95ec0f55dbf211d462cb3b6be5cbf5bf08e367e8b5abea0d6540309e1c89be16ead5c681f7856aed9dac2d65f8
7
+ data.tar.gz: e422c8c25f4d9276d5380172ebe9d0c7c1e1394ce82d05475aebf985d08ad588d7cc5c707bc14f53eed184afc12c14941dcf52df1f2d4bcec4d78472a6597a98
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-cloudhsm/customizations'
42
42
  # @service
43
43
  module Aws::CloudHSM
44
44
 
45
- GEM_VERSION = '1.14.0'
45
+ GEM_VERSION = '1.15.0'
46
46
 
47
47
  end
@@ -1439,7 +1439,7 @@ module Aws::CloudHSM
1439
1439
  params: params,
1440
1440
  config: config)
1441
1441
  context[:gem_name] = 'aws-sdk-cloudhsm'
1442
- context[:gem_version] = '1.14.0'
1442
+ context[:gem_version] = '1.15.0'
1443
1443
  Seahorse::Client::Request.new(handlers, context)
1444
1444
  end
1445
1445
 
@@ -104,6 +104,10 @@ module Aws::CloudHSM
104
104
 
105
105
  ClientList.member = Shapes::ShapeRef.new(shape: ClientArn)
106
106
 
107
+ CloudHsmServiceException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
108
+ CloudHsmServiceException.add_member(:retryable, Shapes::ShapeRef.new(shape: Boolean, location_name: "retryable"))
109
+ CloudHsmServiceException.struct_class = Types::CloudHsmServiceException
110
+
107
111
  CreateHapgRequest.add_member(:label, Shapes::ShapeRef.new(shape: Label, required: true, location_name: "Label"))
108
112
  CreateHapgRequest.struct_class = Types::CreateHapgRequest
109
113
 
@@ -10,5 +10,26 @@ module Aws::CloudHSM
10
10
 
11
11
  extend Aws::Errors::DynamicErrors
12
12
 
13
+ class CloudHsmServiceException < ServiceError
14
+
15
+ # @param [Seahorse::Client::RequestContext] context
16
+ # @param [String] message
17
+ # @param [Aws::CloudHSM::Types::CloudHsmServiceException] data
18
+ def initialize(context, message, data = Aws::EmptyStructure.new)
19
+ super(context, message, data)
20
+ end
21
+
22
+ # @return [String]
23
+ def message
24
+ @message || @data[:message]
25
+ end
26
+
27
+ # @return [String]
28
+ def retryable
29
+ @data[:retryable]
30
+ end
31
+
32
+ end
33
+
13
34
  end
14
35
  end
@@ -48,6 +48,24 @@ module Aws::CloudHSM
48
48
  include Aws::Structure
49
49
  end
50
50
 
51
+ # Indicates that an exception occurred in the AWS CloudHSM service.
52
+ #
53
+ # @!attribute [rw] message
54
+ # Additional information about the error.
55
+ # @return [String]
56
+ #
57
+ # @!attribute [rw] retryable
58
+ # Indicates if the action can be retried.
59
+ # @return [Boolean]
60
+ #
61
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/CloudHsmServiceException AWS API Documentation
62
+ #
63
+ class CloudHsmServiceException < Struct.new(
64
+ :message,
65
+ :retryable)
66
+ include Aws::Structure
67
+ end
68
+
51
69
  # Contains the inputs for the CreateHapgRequest action.
52
70
  #
53
71
  # @note When making an API call, you may pass CreateHapgRequest
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.14.0
4
+ version: 1.15.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: 2019-05-15 00:00:00.000000000 Z
11
+ date: 2019-05-21 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.52.1
22
+ version: 3.53.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.52.1
32
+ version: 3.53.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement