aws-sdk-signer 1.11.0 → 1.12.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 +4 -4
- data/lib/aws-sdk-signer.rb +1 -1
- data/lib/aws-sdk-signer/client.rb +1 -1
- data/lib/aws-sdk-signer/client_api.rb +15 -0
- data/lib/aws-sdk-signer/errors.rb +80 -0
- data/lib/aws-sdk-signer/types.rb +60 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1dfd650ab176c1898eb7f06224b516fc46d3f438
|
4
|
+
data.tar.gz: d0cdac46e0e01d68ef67ec441925fc5a943d4496
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d239231c515e94a1b5515ad11d37ebab0299711eebf6cff5b1588b03af0c3f5859f5fb8136039e672f4b390804d2a3d72019e6371e4c8f562aadfc4e7b53039
|
7
|
+
data.tar.gz: 2e990f229c17b7db1a1f26cd64a7628a57873bfcd0c0ed5eb9e508c844991e9f85c013e396b2e31dc98eb84735da2c0abec08cd732539e26b4e06143d751c0e8
|
data/lib/aws-sdk-signer.rb
CHANGED
@@ -87,6 +87,9 @@ module Aws::Signer
|
|
87
87
|
key = Shapes::StringShape.new(name: 'key')
|
88
88
|
string = Shapes::StringShape.new(name: 'string')
|
89
89
|
|
90
|
+
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
91
|
+
AccessDeniedException.struct_class = Types::AccessDeniedException
|
92
|
+
|
90
93
|
CancelSigningProfileRequest.add_member(:profile_name, Shapes::ShapeRef.new(shape: ProfileName, required: true, location: "uri", location_name: "profileName"))
|
91
94
|
CancelSigningProfileRequest.struct_class = Types::CancelSigningProfileRequest
|
92
95
|
|
@@ -149,6 +152,9 @@ module Aws::Signer
|
|
149
152
|
|
150
153
|
ImageFormats.member = Shapes::ShapeRef.new(shape: ImageFormat)
|
151
154
|
|
155
|
+
InternalServiceErrorException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
156
|
+
InternalServiceErrorException.struct_class = Types::InternalServiceErrorException
|
157
|
+
|
152
158
|
ListSigningJobsRequest.add_member(:status, Shapes::ShapeRef.new(shape: SigningStatus, location: "querystring", location_name: "status"))
|
153
159
|
ListSigningJobsRequest.add_member(:platform_id, Shapes::ShapeRef.new(shape: PlatformId, location: "querystring", location_name: "platformId"))
|
154
160
|
ListSigningJobsRequest.add_member(:requested_by, Shapes::ShapeRef.new(shape: RequestedBy, location: "querystring", location_name: "requestedBy"))
|
@@ -190,6 +196,9 @@ module Aws::Signer
|
|
190
196
|
PutSigningProfileResponse.add_member(:arn, Shapes::ShapeRef.new(shape: string, location_name: "arn"))
|
191
197
|
PutSigningProfileResponse.struct_class = Types::PutSigningProfileResponse
|
192
198
|
|
199
|
+
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
200
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
201
|
+
|
193
202
|
S3Destination.add_member(:bucket_name, Shapes::ShapeRef.new(shape: BucketName, location_name: "bucketName"))
|
194
203
|
S3Destination.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "prefix"))
|
195
204
|
S3Destination.struct_class = Types::S3Destination
|
@@ -270,6 +279,12 @@ module Aws::Signer
|
|
270
279
|
StartSigningJobResponse.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, location_name: "jobId"))
|
271
280
|
StartSigningJobResponse.struct_class = Types::StartSigningJobResponse
|
272
281
|
|
282
|
+
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
283
|
+
ThrottlingException.struct_class = Types::ThrottlingException
|
284
|
+
|
285
|
+
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
286
|
+
ValidationException.struct_class = Types::ValidationException
|
287
|
+
|
273
288
|
|
274
289
|
# @api private
|
275
290
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -10,5 +10,85 @@ module Aws::Signer
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class AccessDeniedException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::Signer::Types::AccessDeniedException] 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
|
+
end
|
28
|
+
|
29
|
+
class InternalServiceErrorException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::Signer::Types::InternalServiceErrorException] data
|
34
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
35
|
+
super(context, message, data)
|
36
|
+
end
|
37
|
+
|
38
|
+
# @return [String]
|
39
|
+
def message
|
40
|
+
@message || @data[:message]
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
class ResourceNotFoundException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::Signer::Types::ResourceNotFoundException] data
|
50
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
51
|
+
super(context, message, data)
|
52
|
+
end
|
53
|
+
|
54
|
+
# @return [String]
|
55
|
+
def message
|
56
|
+
@message || @data[:message]
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
class ThrottlingException < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::Signer::Types::ThrottlingException] data
|
66
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
67
|
+
super(context, message, data)
|
68
|
+
end
|
69
|
+
|
70
|
+
# @return [String]
|
71
|
+
def message
|
72
|
+
@message || @data[:message]
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
77
|
+
class ValidationException < ServiceError
|
78
|
+
|
79
|
+
# @param [Seahorse::Client::RequestContext] context
|
80
|
+
# @param [String] message
|
81
|
+
# @param [Aws::Signer::Types::ValidationException] data
|
82
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
83
|
+
super(context, message, data)
|
84
|
+
end
|
85
|
+
|
86
|
+
# @return [String]
|
87
|
+
def message
|
88
|
+
@message || @data[:message]
|
89
|
+
end
|
90
|
+
|
91
|
+
end
|
92
|
+
|
13
93
|
end
|
14
94
|
end
|
data/lib/aws-sdk-signer/types.rb
CHANGED
@@ -8,6 +8,18 @@
|
|
8
8
|
module Aws::Signer
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# You do not have sufficient access to perform this action.
|
12
|
+
#
|
13
|
+
# @!attribute [rw] message
|
14
|
+
# @return [String]
|
15
|
+
#
|
16
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/AccessDeniedException AWS API Documentation
|
17
|
+
#
|
18
|
+
class AccessDeniedException < Struct.new(
|
19
|
+
:message)
|
20
|
+
include Aws::Structure
|
21
|
+
end
|
22
|
+
|
11
23
|
# @note When making an API call, you may pass CancelSigningProfileRequest
|
12
24
|
# data as a hash:
|
13
25
|
#
|
@@ -304,6 +316,18 @@ module Aws::Signer
|
|
304
316
|
include Aws::Structure
|
305
317
|
end
|
306
318
|
|
319
|
+
# An internal error occurred.
|
320
|
+
#
|
321
|
+
# @!attribute [rw] message
|
322
|
+
# @return [String]
|
323
|
+
#
|
324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/InternalServiceErrorException AWS API Documentation
|
325
|
+
#
|
326
|
+
class InternalServiceErrorException < Struct.new(
|
327
|
+
:message)
|
328
|
+
include Aws::Structure
|
329
|
+
end
|
330
|
+
|
307
331
|
# @note When making an API call, you may pass ListSigningJobsRequest
|
308
332
|
# data as a hash:
|
309
333
|
#
|
@@ -549,6 +573,18 @@ module Aws::Signer
|
|
549
573
|
include Aws::Structure
|
550
574
|
end
|
551
575
|
|
576
|
+
# A specified resource could not be found.
|
577
|
+
#
|
578
|
+
# @!attribute [rw] message
|
579
|
+
# @return [String]
|
580
|
+
#
|
581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/ResourceNotFoundException AWS API Documentation
|
582
|
+
#
|
583
|
+
class ResourceNotFoundException < Struct.new(
|
584
|
+
:message)
|
585
|
+
include Aws::Structure
|
586
|
+
end
|
587
|
+
|
552
588
|
# The name and prefix of the S3 bucket where AWS Signer saves your
|
553
589
|
# signed objects.
|
554
590
|
#
|
@@ -972,5 +1008,29 @@ module Aws::Signer
|
|
972
1008
|
include Aws::Structure
|
973
1009
|
end
|
974
1010
|
|
1011
|
+
# The signing job has been throttled.
|
1012
|
+
#
|
1013
|
+
# @!attribute [rw] message
|
1014
|
+
# @return [String]
|
1015
|
+
#
|
1016
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/ThrottlingException AWS API Documentation
|
1017
|
+
#
|
1018
|
+
class ThrottlingException < Struct.new(
|
1019
|
+
:message)
|
1020
|
+
include Aws::Structure
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
# You signing certificate could not be validated.
|
1024
|
+
#
|
1025
|
+
# @!attribute [rw] message
|
1026
|
+
# @return [String]
|
1027
|
+
#
|
1028
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/ValidationException AWS API Documentation
|
1029
|
+
#
|
1030
|
+
class ValidationException < Struct.new(
|
1031
|
+
:message)
|
1032
|
+
include Aws::Structure
|
1033
|
+
end
|
1034
|
+
|
975
1035
|
end
|
976
1036
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-signer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.12.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-
|
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.
|
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.
|
32
|
+
version: 3.53.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|