aws-sdk-signer 1.17.0 → 1.22.1

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
- SHA1:
3
- metadata.gz: 953735d4dc87e531a6e8d7c5d9b9094146ccb650
4
- data.tar.gz: acc9ed91d1cd916efd23b4db8159641e84f78a0e
2
+ SHA256:
3
+ metadata.gz: 804ae10b50f3de1c3aa32f38a6e00d5908b601f69b67107a975038b797c5e311
4
+ data.tar.gz: fc54fd28ebb16ff6fb136a7c48298dd5d199d6d89db60a7986f3eb2c563c0237
5
5
  SHA512:
6
- metadata.gz: da645be34a7f44f48f48ed1a18337636c1dc5e19f61e659856270f3562f8a3a7fca3653eb99ea88c896c080ef819e48f9931983d08ad326e48c130a283bdca7b
7
- data.tar.gz: 87209f5206f2084845df34270d5d34df61450b8137f18d63760c1537bbd1e636593f7a9b711511bf1d2a555d3cf1a8009c306608d95ae6c0d33b825155ec8401
6
+ metadata.gz: e34e20fa124fd4a76db620229eeda49c8ef5f870eb255b1691f6c05cfc4ec599b1b10282ee45a801e34c3a4f59497ef3dbfeb28f050651a1d77b0705e73e8c11
7
+ data.tar.gz: 759910c1f7567801fffb2a1db108968deb74d0b03b0a6b3992cab8cbee5ebeffd5abe162a1d203bf839d13615f2a04d0392e3cec48fa1a553344a6982f085305
@@ -25,17 +25,20 @@ require_relative 'aws-sdk-signer/customizations'
25
25
  # methods each accept a hash of request parameters and return a response
26
26
  # structure.
27
27
  #
28
+ # signer = Aws::Signer::Client.new
29
+ # resp = signer.cancel_signing_profile(params)
30
+ #
28
31
  # See {Client} for more information.
29
32
  #
30
33
  # # Errors
31
34
  #
32
- # Errors returned from AWS Signer all
33
- # extend {Errors::ServiceError}.
35
+ # Errors returned from AWS Signer are defined in the
36
+ # {Errors} module and all extend {Errors::ServiceError}.
34
37
  #
35
38
  # begin
36
39
  # # do stuff
37
40
  # rescue Aws::Signer::Errors::ServiceError
38
- # # rescues all service API errors
41
+ # # rescues all AWS Signer API errors
39
42
  # end
40
43
  #
41
44
  # See {Errors} for more information.
@@ -43,6 +46,6 @@ require_relative 'aws-sdk-signer/customizations'
43
46
  # @service
44
47
  module Aws::Signer
45
48
 
46
- GEM_VERSION = '1.17.0'
49
+ GEM_VERSION = '1.22.1'
47
50
 
48
51
  end
@@ -24,12 +24,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
30
 
30
31
  Aws::Plugins::GlobalConfiguration.add_identifier(:signer)
31
32
 
32
33
  module Aws::Signer
34
+ # An API client for Signer. To construct a client, you need to configure a `:region` and `:credentials`.
35
+ #
36
+ # client = Aws::Signer::Client.new(
37
+ # region: region_name,
38
+ # credentials: credentials,
39
+ # # ...
40
+ # )
41
+ #
42
+ # For details on configuring region and credentials see
43
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
44
+ #
45
+ # See {#initialize} for a full list of supported configuration options.
33
46
  class Client < Seahorse::Client::Base
34
47
 
35
48
  include Aws::ClientStubs
@@ -57,6 +70,7 @@ module Aws::Signer
57
70
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
72
  add_plugin(Aws::Plugins::TransferEncoding)
73
+ add_plugin(Aws::Plugins::HttpChecksum)
60
74
  add_plugin(Aws::Plugins::SignatureV4)
61
75
  add_plugin(Aws::Plugins::Protocols::RestJson)
62
76
 
@@ -93,7 +107,7 @@ module Aws::Signer
93
107
  # @option options [required, String] :region
94
108
  # The AWS region to connect to. The configured `:region` is
95
109
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
110
+ # a default `:region` is searched for in the following locations:
97
111
  #
98
112
  # * `Aws.config[:region]`
99
113
  # * `ENV['AWS_REGION']`
@@ -108,6 +122,12 @@ module Aws::Signer
108
122
  # When set to `true`, a thread polling for endpoints will be running in
109
123
  # the background every 60 secs (default). Defaults to `false`.
110
124
  #
125
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
126
+ # Used only in `adaptive` retry mode. When true, the request will sleep
127
+ # until there is sufficent client side capacity to retry the request.
128
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
129
+ # not retry instead of sleeping.
130
+ #
111
131
  # @option options [Boolean] :client_side_monitoring (false)
112
132
  # When `true`, client-side metrics will be collected for all API requests from
113
133
  # this client.
@@ -132,6 +152,10 @@ module Aws::Signer
132
152
  # When `true`, an attempt is made to coerce request parameters into
133
153
  # the required types.
134
154
  #
155
+ # @option options [Boolean] :correct_clock_skew (true)
156
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
157
+ # a clock skew correction and retry requests with skewed client clocks.
158
+ #
135
159
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
160
  # Set to true to disable SDK automatically adding host prefix
137
161
  # to default service endpoint when available.
@@ -139,7 +163,7 @@ module Aws::Signer
139
163
  # @option options [String] :endpoint
140
164
  # The client endpoint is normally constructed from the `:region`
141
165
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
166
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
143
167
  #
144
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +178,7 @@ module Aws::Signer
154
178
  # requests fetching endpoints information. Defaults to 60 sec.
155
179
  #
156
180
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
181
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
182
  #
159
183
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
184
  # The log formatter.
@@ -166,15 +190,29 @@ module Aws::Signer
166
190
  # The Logger instance to send log messages to. If this option
167
191
  # is not set, logging will be disabled.
168
192
  #
193
+ # @option options [Integer] :max_attempts (3)
194
+ # An integer representing the maximum number attempts that will be made for
195
+ # a single request, including the initial attempt. For example,
196
+ # setting this value to 5 will result in a request being retried up to
197
+ # 4 times. Used in `standard` and `adaptive` retry modes.
198
+ #
169
199
  # @option options [String] :profile ("default")
170
200
  # Used when loading credentials from the shared credentials file
171
201
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
202
  #
203
+ # @option options [Proc] :retry_backoff
204
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
205
+ # This option is only used in the `legacy` retry mode.
206
+ #
173
207
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
208
+ # The base delay in seconds used by the default backoff function. This option
209
+ # is only used in the `legacy` retry mode.
175
210
  #
176
211
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
212
+ # A delay randomiser function used by the default backoff function.
213
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
214
+ # otherwise a Proc that takes and returns a number. This option is only used
215
+ # in the `legacy` retry mode.
178
216
  #
179
217
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
218
  #
@@ -182,11 +220,30 @@ module Aws::Signer
182
220
  # The maximum number of times to retry failed requests. Only
183
221
  # ~ 500 level server errors and certain ~ 400 level client errors
184
222
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
223
+ # checksum errors, networking errors, timeout errors, auth errors,
224
+ # endpoint discovery, and errors from expired credentials.
225
+ # This option is only used in the `legacy` retry mode.
187
226
  #
188
227
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
228
+ # The maximum number of seconds to delay between retries (0 for no limit)
229
+ # used by the default backoff function. This option is only used in the
230
+ # `legacy` retry mode.
231
+ #
232
+ # @option options [String] :retry_mode ("legacy")
233
+ # Specifies which retry algorithm to use. Values are:
234
+ #
235
+ # * `legacy` - The pre-existing retry behavior. This is default value if
236
+ # no retry mode is provided.
237
+ #
238
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
239
+ # This includes support for retry quotas, which limit the number of
240
+ # unsuccessful retries a client can make.
241
+ #
242
+ # * `adaptive` - An experimental retry mode that includes all the
243
+ # functionality of `standard` mode along with automatic client side
244
+ # throttling. This is a provisional mode that may change behavior
245
+ # in the future.
246
+ #
190
247
  #
191
248
  # @option options [String] :secret_access_key
192
249
  #
@@ -209,16 +266,15 @@ module Aws::Signer
209
266
  # requests through. Formatted like 'http://proxy.com:123'.
210
267
  #
211
268
  # @option options [Float] :http_open_timeout (15) The number of
212
- # seconds to wait when opening a HTTP session before rasing a
269
+ # seconds to wait when opening a HTTP session before raising a
213
270
  # `Timeout::Error`.
214
271
  #
215
272
  # @option options [Integer] :http_read_timeout (60) The default
216
273
  # number of seconds to wait for response data. This value can
217
- # safely be set
218
- # per-request on the session yeidled by {#session_for}.
274
+ # safely be set per-request on the session.
219
275
  #
220
276
  # @option options [Float] :http_idle_timeout (5) The number of
221
- # seconds a connection is allowed to sit idble before it is
277
+ # seconds a connection is allowed to sit idle before it is
222
278
  # considered stale. Stale connections are closed and removed
223
279
  # from the pool before making a request.
224
280
  #
@@ -227,7 +283,7 @@ module Aws::Signer
227
283
  # request body. This option has no effect unless the request has
228
284
  # "Expect" header set to "100-continue". Defaults to `nil` which
229
285
  # disables this behaviour. This value can safely be set per
230
- # request on the session yeidled by {#session_for}.
286
+ # request on the session.
231
287
  #
232
288
  # @option options [Boolean] :http_wire_trace (false) When `true`,
233
289
  # HTTP debug output will be sent to the `:logger`.
@@ -319,6 +375,7 @@ module Aws::Signer
319
375
  # resp.profile_name #=> String
320
376
  # resp.overrides.signing_configuration.encryption_algorithm #=> String, one of "RSA", "ECDSA"
321
377
  # resp.overrides.signing_configuration.hash_algorithm #=> String, one of "SHA1", "SHA256"
378
+ # resp.overrides.signing_image_format #=> String, one of "JSON", "JSONEmbedded", "JSONDetached"
322
379
  # resp.signing_parameters #=> Hash
323
380
  # resp.signing_parameters["SigningParameterKey"] #=> String
324
381
  # resp.created_at #=> Time
@@ -329,6 +386,11 @@ module Aws::Signer
329
386
  # resp.signed_object.s3.bucket_name #=> String
330
387
  # resp.signed_object.s3.key #=> String
331
388
  #
389
+ #
390
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
391
+ #
392
+ # * successful_signing_job
393
+ #
332
394
  # @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/DescribeSigningJob AWS API Documentation
333
395
  #
334
396
  # @overload describe_signing_job(params = {})
@@ -374,8 +436,8 @@ module Aws::Signer
374
436
  # resp.signing_configuration.hash_algorithm_options.allowed_values[0] #=> String, one of "SHA1", "SHA256"
375
437
  # resp.signing_configuration.hash_algorithm_options.default_value #=> String, one of "SHA1", "SHA256"
376
438
  # resp.signing_image_format.supported_formats #=> Array
377
- # resp.signing_image_format.supported_formats[0] #=> String, one of "JSON"
378
- # resp.signing_image_format.default_format #=> String, one of "JSON"
439
+ # resp.signing_image_format.supported_formats[0] #=> String, one of "JSON", "JSONEmbedded", "JSONDetached"
440
+ # resp.signing_image_format.default_format #=> String, one of "JSON", "JSONEmbedded", "JSONDetached"
379
441
  # resp.max_size_in_mb #=> Integer
380
442
  #
381
443
  # @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/GetSigningPlatform AWS API Documentation
@@ -416,6 +478,7 @@ module Aws::Signer
416
478
  # resp.platform_id #=> String
417
479
  # resp.overrides.signing_configuration.encryption_algorithm #=> String, one of "RSA", "ECDSA"
418
480
  # resp.overrides.signing_configuration.hash_algorithm #=> String, one of "SHA1", "SHA256"
481
+ # resp.overrides.signing_image_format #=> String, one of "JSON", "JSONEmbedded", "JSONDetached"
419
482
  # resp.signing_parameters #=> Hash
420
483
  # resp.signing_parameters["SigningParameterKey"] #=> String
421
484
  # resp.status #=> String, one of "Active", "Canceled"
@@ -469,6 +532,8 @@ module Aws::Signer
469
532
  # * {Types::ListSigningJobsResponse#jobs #jobs} => Array&lt;Types::SigningJob&gt;
470
533
  # * {Types::ListSigningJobsResponse#next_token #next_token} => String
471
534
  #
535
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
536
+ #
472
537
  # @example Request syntax with placeholder values
473
538
  #
474
539
  # resp = client.list_signing_jobs({
@@ -533,6 +598,8 @@ module Aws::Signer
533
598
  # * {Types::ListSigningPlatformsResponse#platforms #platforms} => Array&lt;Types::SigningPlatform&gt;
534
599
  # * {Types::ListSigningPlatformsResponse#next_token #next_token} => String
535
600
  #
601
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
602
+ #
536
603
  # @example Request syntax with placeholder values
537
604
  #
538
605
  # resp = client.list_signing_platforms({
@@ -558,8 +625,8 @@ module Aws::Signer
558
625
  # resp.platforms[0].signing_configuration.hash_algorithm_options.allowed_values[0] #=> String, one of "SHA1", "SHA256"
559
626
  # resp.platforms[0].signing_configuration.hash_algorithm_options.default_value #=> String, one of "SHA1", "SHA256"
560
627
  # resp.platforms[0].signing_image_format.supported_formats #=> Array
561
- # resp.platforms[0].signing_image_format.supported_formats[0] #=> String, one of "JSON"
562
- # resp.platforms[0].signing_image_format.default_format #=> String, one of "JSON"
628
+ # resp.platforms[0].signing_image_format.supported_formats[0] #=> String, one of "JSON", "JSONEmbedded", "JSONDetached"
629
+ # resp.platforms[0].signing_image_format.default_format #=> String, one of "JSON", "JSONEmbedded", "JSONDetached"
563
630
  # resp.platforms[0].max_size_in_mb #=> Integer
564
631
  # resp.next_token #=> String
565
632
  #
@@ -598,6 +665,8 @@ module Aws::Signer
598
665
  # * {Types::ListSigningProfilesResponse#profiles #profiles} => Array&lt;Types::SigningProfile&gt;
599
666
  # * {Types::ListSigningProfilesResponse#next_token #next_token} => String
600
667
  #
668
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
669
+ #
601
670
  # @example Request syntax with placeholder values
602
671
  #
603
672
  # resp = client.list_signing_profiles({
@@ -675,7 +744,7 @@ module Aws::Signer
675
744
  # with the new signing profile.
676
745
  #
677
746
  # @option params [required, String] :platform_id
678
- # The ID of the signing profile to be created.
747
+ # The ID of the signing platform to be created.
679
748
  #
680
749
  # @option params [Types::SigningPlatformOverrides] :overrides
681
750
  # A subfield of `platform`. This specifies any different configuration
@@ -687,7 +756,7 @@ module Aws::Signer
687
756
  # that you want to use during signing.
688
757
  #
689
758
  # @option params [Hash<String,String>] :tags
690
- # Tags to be associated with the signing profile being created.
759
+ # Tags to be associated with the signing profile that is being created.
691
760
  #
692
761
  # @return [Types::PutSigningProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
693
762
  #
@@ -706,6 +775,7 @@ module Aws::Signer
706
775
  # encryption_algorithm: "RSA", # accepts RSA, ECDSA
707
776
  # hash_algorithm: "SHA1", # accepts SHA1, SHA256
708
777
  # },
778
+ # signing_image_format: "JSON", # accepts JSON, JSONEmbedded, JSONDetached
709
779
  # },
710
780
  # signing_parameters: {
711
781
  # "SigningParameterKey" => "SigningParameterValue",
@@ -814,12 +884,12 @@ module Aws::Signer
814
884
 
815
885
  # Adds one or more tags to a signing profile. Tags are labels that you
816
886
  # can use to identify and organize your AWS resources. Each tag consists
817
- # of a key and an optional value. You specify the signing profile using
818
- # its Amazon Resource Name (ARN). You specify the tag by using a
819
- # key-value pair.
887
+ # of a key and an optional value. To specify the signing profile, use
888
+ # its Amazon Resource Name (ARN). To specify the tag, use a key-value
889
+ # pair.
820
890
  #
821
891
  # @option params [required, String] :resource_arn
822
- # Amazon Resource Name (ARN) for the signing profile.
892
+ # The Amazon Resource Name (ARN) for the signing profile.
823
893
  #
824
894
  # @option params [required, Hash<String,String>] :tags
825
895
  # One or more tags to be associated with the signing profile.
@@ -844,14 +914,14 @@ module Aws::Signer
844
914
  req.send_request(options)
845
915
  end
846
916
 
847
- # Remove one or more tags from a signing profile. Specify a list of tag
848
- # keys to remove the tags.
917
+ # Removes one or more tags from a signing profile. To remove the tags,
918
+ # specify a list of tag keys.
849
919
  #
850
920
  # @option params [required, String] :resource_arn
851
- # Amazon Resource Name (ARN) for the signing profile .
921
+ # The Amazon Resource Name (ARN) for the signing profile.
852
922
  #
853
923
  # @option params [required, Array<String>] :tag_keys
854
- # A list of tag keys to be removed from the signing profile .
924
+ # A list of tag keys to be removed from the signing profile.
855
925
  #
856
926
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
857
927
  #
@@ -884,7 +954,7 @@ module Aws::Signer
884
954
  params: params,
885
955
  config: config)
886
956
  context[:gem_name] = 'aws-sdk-signer'
887
- context[:gem_version] = '1.17.0'
957
+ context[:gem_version] = '1.22.1'
888
958
  Seahorse::Client::Request.new(handlers, context)
889
959
  end
890
960
 
@@ -950,9 +1020,9 @@ module Aws::Signer
950
1020
  # The following table lists the valid waiter names, the operations they call,
951
1021
  # and the default `:delay` and `:max_attempts` values.
952
1022
  #
953
- # | waiter_name | params | :delay | :max_attempts |
954
- # | ---------------------- | ----------------------- | -------- | ------------- |
955
- # | successful_signing_job | {#describe_signing_job} | 20 | 25 |
1023
+ # | waiter_name | params | :delay | :max_attempts |
1024
+ # | ---------------------- | ----------------------------- | -------- | ------------- |
1025
+ # | successful_signing_job | {Client#describe_signing_job} | 20 | 25 |
956
1026
  #
957
1027
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
958
1028
  # because the waiter has entered a state that it will not transition
@@ -281,6 +281,7 @@ module Aws::Signer
281
281
  SigningPlatform.struct_class = Types::SigningPlatform
282
282
 
283
283
  SigningPlatformOverrides.add_member(:signing_configuration, Shapes::ShapeRef.new(shape: SigningConfigurationOverrides, location_name: "signingConfiguration"))
284
+ SigningPlatformOverrides.add_member(:signing_image_format, Shapes::ShapeRef.new(shape: ImageFormat, location_name: "signingImageFormat"))
284
285
  SigningPlatformOverrides.struct_class = Types::SigningPlatformOverrides
285
286
 
286
287
  SigningPlatforms.member = Shapes::ShapeRef.new(shape: SigningPlatform)
@@ -6,6 +6,35 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Signer
9
+
10
+ # When Signer returns an error response, the Ruby SDK constructs and raises an error.
11
+ # These errors all extend Aws::Signer::Errors::ServiceError < {Aws::Errors::ServiceError}
12
+ #
13
+ # You can rescue all Signer errors using ServiceError:
14
+ #
15
+ # begin
16
+ # # do stuff
17
+ # rescue Aws::Signer::Errors::ServiceError
18
+ # # rescues all Signer API errors
19
+ # end
20
+ #
21
+ #
22
+ # ## Request Context
23
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
24
+ # information about the request that generated the error.
25
+ # See {Seahorse::Client::RequestContext} for more information.
26
+ #
27
+ # ## Error Classes
28
+ # * {AccessDeniedException}
29
+ # * {BadRequestException}
30
+ # * {InternalServiceErrorException}
31
+ # * {NotFoundException}
32
+ # * {ResourceNotFoundException}
33
+ # * {ThrottlingException}
34
+ # * {ValidationException}
35
+ #
36
+ # Additionally, error classes are dynamically generated for service errors based on the error code
37
+ # if they are not defined above.
9
38
  module Errors
10
39
 
11
40
  extend Aws::Errors::DynamicErrors
@@ -23,7 +52,6 @@ module Aws::Signer
23
52
  def message
24
53
  @message || @data[:message]
25
54
  end
26
-
27
55
  end
28
56
 
29
57
  class BadRequestException < ServiceError
@@ -39,7 +67,6 @@ module Aws::Signer
39
67
  def message
40
68
  @message || @data[:message]
41
69
  end
42
-
43
70
  end
44
71
 
45
72
  class InternalServiceErrorException < ServiceError
@@ -55,7 +82,6 @@ module Aws::Signer
55
82
  def message
56
83
  @message || @data[:message]
57
84
  end
58
-
59
85
  end
60
86
 
61
87
  class NotFoundException < ServiceError
@@ -71,7 +97,6 @@ module Aws::Signer
71
97
  def message
72
98
  @message || @data[:message]
73
99
  end
74
-
75
100
  end
76
101
 
77
102
  class ResourceNotFoundException < ServiceError
@@ -87,7 +112,6 @@ module Aws::Signer
87
112
  def message
88
113
  @message || @data[:message]
89
114
  end
90
-
91
115
  end
92
116
 
93
117
  class ThrottlingException < ServiceError
@@ -103,7 +127,6 @@ module Aws::Signer
103
127
  def message
104
128
  @message || @data[:message]
105
129
  end
106
-
107
130
  end
108
131
 
109
132
  class ValidationException < ServiceError
@@ -119,7 +142,6 @@ module Aws::Signer
119
142
  def message
120
143
  @message || @data[:message]
121
144
  end
122
-
123
145
  end
124
146
 
125
147
  end
@@ -6,6 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::Signer
9
+
9
10
  class Resource
10
11
 
11
12
  # @param options ({})
@@ -80,7 +80,7 @@ module Aws::Signer
80
80
  # @return [Types::Source]
81
81
  #
82
82
  # @!attribute [rw] signing_material
83
- # Amazon Resource Name (ARN) of your code signing certificate.
83
+ # The Amazon Resource Name (ARN) of your code signing certificate.
84
84
  # @return [Types::SigningMaterial]
85
85
  #
86
86
  # @!attribute [rw] platform_id
@@ -586,6 +586,7 @@ module Aws::Signer
586
586
  # encryption_algorithm: "RSA", # accepts RSA, ECDSA
587
587
  # hash_algorithm: "SHA1", # accepts SHA1, SHA256
588
588
  # },
589
+ # signing_image_format: "JSON", # accepts JSON, JSONEmbedded, JSONDetached
589
590
  # },
590
591
  # signing_parameters: {
591
592
  # "SigningParameterKey" => "SigningParameterValue",
@@ -605,7 +606,7 @@ module Aws::Signer
605
606
  # @return [Types::SigningMaterial]
606
607
  #
607
608
  # @!attribute [rw] platform_id
608
- # The ID of the signing profile to be created.
609
+ # The ID of the signing platform to be created.
609
610
  # @return [String]
610
611
  #
611
612
  # @!attribute [rw] overrides
@@ -620,7 +621,8 @@ module Aws::Signer
620
621
  # @return [Hash<String,String>]
621
622
  #
622
623
  # @!attribute [rw] tags
623
- # Tags to be associated with the signing profile being created.
624
+ # Tags to be associated with the signing profile that is being
625
+ # created.
624
626
  # @return [Hash<String,String>]
625
627
  #
626
628
  # @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/PutSigningProfileRequest AWS API Documentation
@@ -760,7 +762,7 @@ module Aws::Signer
760
762
  # @return [Types::EncryptionAlgorithmOptions]
761
763
  #
762
764
  # @!attribute [rw] hash_algorithm_options
763
- # The hash algorithm options that are available for a a code signing
765
+ # The hash algorithm options that are available for a code signing
764
766
  # job.
765
767
  # @return [Types::HashAlgorithmOptions]
766
768
  #
@@ -804,11 +806,11 @@ module Aws::Signer
804
806
  # The image format of a code signing platform or profile.
805
807
  #
806
808
  # @!attribute [rw] supported_formats
807
- # The supported formats of a code signing signing image.
809
+ # The supported formats of a code signing image.
808
810
  # @return [Array<String>]
809
811
  #
810
812
  # @!attribute [rw] default_format
811
- # The default format of a code signing signing image.
813
+ # The default format of a code signing image.
812
814
  # @return [String]
813
815
  #
814
816
  # @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/SigningImageFormat AWS API Documentation
@@ -882,7 +884,7 @@ module Aws::Signer
882
884
  end
883
885
 
884
886
  # Contains information about the signing configurations and parameters
885
- # that is used to perform a code signing job.
887
+ # that are used to perform a code signing job.
886
888
  #
887
889
  # @!attribute [rw] platform_id
888
890
  # The ID of a code signing; platform.
@@ -944,6 +946,7 @@ module Aws::Signer
944
946
  # encryption_algorithm: "RSA", # accepts RSA, ECDSA
945
947
  # hash_algorithm: "SHA1", # accepts SHA1, SHA256
946
948
  # },
949
+ # signing_image_format: "JSON", # accepts JSON, JSONEmbedded, JSONDetached
947
950
  # }
948
951
  #
949
952
  # @!attribute [rw] signing_configuration
@@ -951,10 +954,20 @@ module Aws::Signer
951
954
  # hash algorithm of a signing job.
952
955
  # @return [Types::SigningConfigurationOverrides]
953
956
  #
957
+ # @!attribute [rw] signing_image_format
958
+ # A signed image is a JSON object. When overriding the default signing
959
+ # platform configuration, a customer can select either of two signing
960
+ # formats, `JSONEmbedded` or `JSONDetached`. (A third format value,
961
+ # `JSON`, is reserved for future use.) With `JSONEmbedded`, the
962
+ # signing image has the payload embedded in it. With `JSONDetached`,
963
+ # the payload is not be embedded in the signing image.
964
+ # @return [String]
965
+ #
954
966
  # @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/SigningPlatformOverrides AWS API Documentation
955
967
  #
956
968
  class SigningPlatformOverrides < Struct.new(
957
- :signing_configuration)
969
+ :signing_configuration,
970
+ :signing_image_format)
958
971
  include Aws::Structure
959
972
  end
960
973
 
@@ -983,7 +996,7 @@ module Aws::Signer
983
996
  # @return [String]
984
997
  #
985
998
  # @!attribute [rw] arn
986
- # Amazon Resource Name (ARN) for the signing profile.
999
+ # The Amazon Resource Name (ARN) for the signing profile.
987
1000
  # @return [String]
988
1001
  #
989
1002
  # @!attribute [rw] tags
@@ -1104,7 +1117,7 @@ module Aws::Signer
1104
1117
  # }
1105
1118
  #
1106
1119
  # @!attribute [rw] resource_arn
1107
- # Amazon Resource Name (ARN) for the signing profile.
1120
+ # The Amazon Resource Name (ARN) for the signing profile.
1108
1121
  # @return [String]
1109
1122
  #
1110
1123
  # @!attribute [rw] tags
@@ -1144,11 +1157,11 @@ module Aws::Signer
1144
1157
  # }
1145
1158
  #
1146
1159
  # @!attribute [rw] resource_arn
1147
- # Amazon Resource Name (ARN) for the signing profile .
1160
+ # The Amazon Resource Name (ARN) for the signing profile.
1148
1161
  # @return [String]
1149
1162
  #
1150
1163
  # @!attribute [rw] tag_keys
1151
- # A list of tag keys to be removed from the signing profile .
1164
+ # A list of tag keys to be removed from the signing profile.
1152
1165
  # @return [Array<String>]
1153
1166
  #
1154
1167
  # @see http://docs.aws.amazon.com/goto/WebAPI/signer-2017-08-25/UntagResourceRequest AWS API Documentation
@@ -8,6 +8,67 @@
8
8
  require 'aws-sdk-core/waiters'
9
9
 
10
10
  module Aws::Signer
11
+ # Waiters are utility methods that poll for a particular state to occur
12
+ # on a client. Waiters can fail after a number of attempts at a polling
13
+ # interval defined for the service client.
14
+ #
15
+ # For a list of operations that can be waited for and the
16
+ # client methods called for each operation, see the table below or the
17
+ # {Client#wait_until} field documentation for the {Client}.
18
+ #
19
+ # # Invoking a Waiter
20
+ # To invoke a waiter, call #wait_until on a {Client}. The first parameter
21
+ # is the waiter name, which is specific to the service client and indicates
22
+ # which operation is being waited for. The second parameter is a hash of
23
+ # parameters that are passed to the client method called by the waiter,
24
+ # which varies according to the waiter name.
25
+ #
26
+ # # Wait Failures
27
+ # To catch errors in a waiter, use WaiterFailed,
28
+ # as shown in the following example.
29
+ #
30
+ # rescue rescue Aws::Waiters::Errors::WaiterFailed => error
31
+ # puts "failed waiting for instance running: #{error.message}
32
+ # end
33
+ #
34
+ # # Configuring a Waiter
35
+ # Each waiter has a default polling interval and a maximum number of
36
+ # attempts it will make before returning control to your program.
37
+ # To set these values, use the `max_attempts` and `delay` parameters
38
+ # in your `#wait_until` call.
39
+ # The following example waits for up to 25 seconds, polling every five seconds.
40
+ #
41
+ # client.wait_until(...) do |w|
42
+ # w.max_attempts = 5
43
+ # w.delay = 5
44
+ # end
45
+ #
46
+ # To disable wait failures, set the value of either of these parameters
47
+ # to `nil`.
48
+ #
49
+ # # Extending a Waiter
50
+ # To modify the behavior of waiters, you can register callbacks that are
51
+ # triggered before each polling attempt and before waiting.
52
+ #
53
+ # The following example implements an exponential backoff in a waiter
54
+ # by doubling the amount of time to wait on every attempt.
55
+ #
56
+ # client.wait_until(...) do |w|
57
+ # w.interval = 0 # disable normal sleep
58
+ # w.before_wait do |n, resp|
59
+ # sleep(n ** 2)
60
+ # end
61
+ # end
62
+ #
63
+ # # Available Waiters
64
+ #
65
+ # The following table lists the valid waiter names, the operations they call,
66
+ # and the default `:delay` and `:max_attempts` values.
67
+ #
68
+ # | waiter_name | params | :delay | :max_attempts |
69
+ # | ---------------------- | ----------------------------- | -------- | ------------- |
70
+ # | successful_signing_job | {Client#describe_signing_job} | 20 | 25 |
71
+ #
11
72
  module Waiters
12
73
 
13
74
  class SuccessfulSigningJob
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.17.0
4
+ version: 1.22.1
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-11-06 00:00:00.000000000 Z
11
+ date: 2020-06-11 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.99.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.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  version: '0'
83
83
  requirements: []
84
84
  rubyforge_project:
85
- rubygems_version: 2.5.2.3
85
+ rubygems_version: 2.7.6.2
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: AWS SDK for Ruby - signer