aws-sdk-signer 1.21.0 → 1.26.0

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
2
  SHA256:
3
- metadata.gz: 9c717353ccd2fde993e13d0f1e87de2d23485a7bf629c1eed3a7c4dd7bb39894
4
- data.tar.gz: 69fa0c28bd7512b49d3ae97c772d94f577b1e6941ddbef59e109feaa23a4be13
3
+ metadata.gz: 935437380f2c81e81172e5e7a4f2ea32a3d764f2fdb6ce7f23f2f981dd26adb3
4
+ data.tar.gz: 40ff35d8b36b4f8193bc53dd12ab45836b0a023bf7b2365008dc3e66aa679345
5
5
  SHA512:
6
- metadata.gz: 065e6a5e8e7633189177a89e0ed401e627f1156215bfaae8529353f2e48559f9730c639378ca3d2bca937922e6f7ee2cf7303e2dc250e43faf2dc8e53c5bf2e5
7
- data.tar.gz: fc5b61de69a50b2d396fb4ee3b2c7a08cdbbb9fb385338fb2d51c74dae50c1a3104846225f840bf022fe34b4c4b0806091b0767f75b926849cf3858414361ae7
6
+ metadata.gz: 6795cf6101c0baa7ef5e0c42e514941d5c09fe622cd3d6978702babcfe94f8dc783e4e58fbed2058caee3f5874d741ee1282cd4cb2e330026cfebdccf0fc546b
7
+ data.tar.gz: a6f314f79a282106df0c58fd99b798009e01326ff062c4d5b86a26fe22c790a8498272106855f1d2f6d8da8b50837e88d65a71b26dff7a0fa0e18cbab8e155a3
@@ -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
 
@@ -43,9 +46,9 @@ require_relative 'aws-sdk-signer/customizations'
43
46
  #
44
47
  # See {Errors} for more information.
45
48
  #
46
- # @service
49
+ # @!group service
47
50
  module Aws::Signer
48
51
 
49
- GEM_VERSION = '1.21.0'
52
+ GEM_VERSION = '1.26.0'
50
53
 
51
54
  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:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::Signer
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
 
@@ -81,13 +85,28 @@ module Aws::Signer
81
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
82
86
  # credentials.
83
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
+ #
84
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
85
103
  # from an EC2 IMDS on an EC2 instance.
86
104
  #
87
- # * `Aws::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
91
110
  #
92
111
  # When `:credentials` are not configured directly, the following
93
112
  # locations will be searched for credentials:
@@ -97,10 +116,10 @@ module Aws::Signer
97
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
98
117
  # * `~/.aws/credentials`
99
118
  # * `~/.aws/config`
100
- # * EC2 IMDS instance profile - When used by default, the timeouts are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
103
- # 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.
104
123
  #
105
124
  # @option options [required, String] :region
106
125
  # The AWS region to connect to. The configured `:region` is
@@ -161,7 +180,7 @@ module Aws::Signer
161
180
  # @option options [String] :endpoint
162
181
  # The client endpoint is normally constructed from the `:region`
163
182
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
183
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
184
  #
166
185
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
186
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -952,7 +971,7 @@ module Aws::Signer
952
971
  params: params,
953
972
  config: config)
954
973
  context[:gem_name] = 'aws-sdk-signer'
955
- context[:gem_version] = '1.21.0'
974
+ context[:gem_version] = '1.26.0'
956
975
  Seahorse::Client::Request.new(handlers, context)
957
976
  end
958
977
 
@@ -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:
@@ -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:
@@ -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:
@@ -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:
@@ -17,6 +19,7 @@ module Aws::Signer
17
19
  #
18
20
  class AccessDeniedException < Struct.new(
19
21
  :message)
22
+ SENSITIVE = []
20
23
  include Aws::Structure
21
24
  end
22
25
 
@@ -31,6 +34,7 @@ module Aws::Signer
31
34
  #
32
35
  class BadRequestException < Struct.new(
33
36
  :message)
37
+ SENSITIVE = []
34
38
  include Aws::Structure
35
39
  end
36
40
 
@@ -49,6 +53,7 @@ module Aws::Signer
49
53
  #
50
54
  class CancelSigningProfileRequest < Struct.new(
51
55
  :profile_name)
56
+ SENSITIVE = []
52
57
  include Aws::Structure
53
58
  end
54
59
 
@@ -67,6 +72,7 @@ module Aws::Signer
67
72
  #
68
73
  class DescribeSigningJobRequest < Struct.new(
69
74
  :job_id)
75
+ SENSITIVE = []
70
76
  include Aws::Structure
71
77
  end
72
78
 
@@ -143,6 +149,7 @@ module Aws::Signer
143
149
  :status,
144
150
  :status_reason,
145
151
  :signed_object)
152
+ SENSITIVE = []
146
153
  include Aws::Structure
147
154
  end
148
155
 
@@ -167,6 +174,7 @@ module Aws::Signer
167
174
  #
168
175
  class Destination < Struct.new(
169
176
  :s3)
177
+ SENSITIVE = []
170
178
  include Aws::Structure
171
179
  end
172
180
 
@@ -187,6 +195,7 @@ module Aws::Signer
187
195
  class EncryptionAlgorithmOptions < Struct.new(
188
196
  :allowed_values,
189
197
  :default_value)
198
+ SENSITIVE = []
190
199
  include Aws::Structure
191
200
  end
192
201
 
@@ -205,6 +214,7 @@ module Aws::Signer
205
214
  #
206
215
  class GetSigningPlatformRequest < Struct.new(
207
216
  :platform_id)
217
+ SENSITIVE = []
208
218
  include Aws::Structure
209
219
  end
210
220
 
@@ -252,6 +262,7 @@ module Aws::Signer
252
262
  :signing_configuration,
253
263
  :signing_image_format,
254
264
  :max_size_in_mb)
265
+ SENSITIVE = []
255
266
  include Aws::Structure
256
267
  end
257
268
 
@@ -270,6 +281,7 @@ module Aws::Signer
270
281
  #
271
282
  class GetSigningProfileRequest < Struct.new(
272
283
  :profile_name)
284
+ SENSITIVE = []
273
285
  include Aws::Structure
274
286
  end
275
287
 
@@ -319,6 +331,7 @@ module Aws::Signer
319
331
  :status,
320
332
  :arn,
321
333
  :tags)
334
+ SENSITIVE = []
322
335
  include Aws::Structure
323
336
  end
324
337
 
@@ -337,6 +350,7 @@ module Aws::Signer
337
350
  class HashAlgorithmOptions < Struct.new(
338
351
  :allowed_values,
339
352
  :default_value)
353
+ SENSITIVE = []
340
354
  include Aws::Structure
341
355
  end
342
356
 
@@ -349,6 +363,7 @@ module Aws::Signer
349
363
  #
350
364
  class InternalServiceErrorException < Struct.new(
351
365
  :message)
366
+ SENSITIVE = []
352
367
  include Aws::Structure
353
368
  end
354
369
 
@@ -399,6 +414,7 @@ module Aws::Signer
399
414
  :requested_by,
400
415
  :max_results,
401
416
  :next_token)
417
+ SENSITIVE = []
402
418
  include Aws::Structure
403
419
  end
404
420
 
@@ -415,6 +431,7 @@ module Aws::Signer
415
431
  class ListSigningJobsResponse < Struct.new(
416
432
  :jobs,
417
433
  :next_token)
434
+ SENSITIVE = []
418
435
  include Aws::Structure
419
436
  end
420
437
 
@@ -460,6 +477,7 @@ module Aws::Signer
460
477
  :target,
461
478
  :max_results,
462
479
  :next_token)
480
+ SENSITIVE = []
463
481
  include Aws::Structure
464
482
  end
465
483
 
@@ -476,6 +494,7 @@ module Aws::Signer
476
494
  class ListSigningPlatformsResponse < Struct.new(
477
495
  :platforms,
478
496
  :next_token)
497
+ SENSITIVE = []
479
498
  include Aws::Structure
480
499
  end
481
500
 
@@ -510,6 +529,7 @@ module Aws::Signer
510
529
  :include_canceled,
511
530
  :max_results,
512
531
  :next_token)
532
+ SENSITIVE = []
513
533
  include Aws::Structure
514
534
  end
515
535
 
@@ -528,6 +548,7 @@ module Aws::Signer
528
548
  class ListSigningProfilesResponse < Struct.new(
529
549
  :profiles,
530
550
  :next_token)
551
+ SENSITIVE = []
531
552
  include Aws::Structure
532
553
  end
533
554
 
@@ -546,6 +567,7 @@ module Aws::Signer
546
567
  #
547
568
  class ListTagsForResourceRequest < Struct.new(
548
569
  :resource_arn)
570
+ SENSITIVE = []
549
571
  include Aws::Structure
550
572
  end
551
573
 
@@ -557,6 +579,7 @@ module Aws::Signer
557
579
  #
558
580
  class ListTagsForResourceResponse < Struct.new(
559
581
  :tags)
582
+ SENSITIVE = []
560
583
  include Aws::Structure
561
584
  end
562
585
 
@@ -569,6 +592,7 @@ module Aws::Signer
569
592
  #
570
593
  class NotFoundException < Struct.new(
571
594
  :message)
595
+ SENSITIVE = []
572
596
  include Aws::Structure
573
597
  end
574
598
 
@@ -634,6 +658,7 @@ module Aws::Signer
634
658
  :overrides,
635
659
  :signing_parameters,
636
660
  :tags)
661
+ SENSITIVE = []
637
662
  include Aws::Structure
638
663
  end
639
664
 
@@ -645,6 +670,7 @@ module Aws::Signer
645
670
  #
646
671
  class PutSigningProfileResponse < Struct.new(
647
672
  :arn)
673
+ SENSITIVE = []
648
674
  include Aws::Structure
649
675
  end
650
676
 
@@ -657,6 +683,7 @@ module Aws::Signer
657
683
  #
658
684
  class ResourceNotFoundException < Struct.new(
659
685
  :message)
686
+ SENSITIVE = []
660
687
  include Aws::Structure
661
688
  end
662
689
 
@@ -685,6 +712,7 @@ module Aws::Signer
685
712
  class S3Destination < Struct.new(
686
713
  :bucket_name,
687
714
  :prefix)
715
+ SENSITIVE = []
688
716
  include Aws::Structure
689
717
  end
690
718
 
@@ -705,6 +733,7 @@ module Aws::Signer
705
733
  class S3SignedObject < Struct.new(
706
734
  :bucket_name,
707
735
  :key)
736
+ SENSITIVE = []
708
737
  include Aws::Structure
709
738
  end
710
739
 
@@ -737,6 +766,7 @@ module Aws::Signer
737
766
  :bucket_name,
738
767
  :key,
739
768
  :version)
769
+ SENSITIVE = []
740
770
  include Aws::Structure
741
771
  end
742
772
 
@@ -751,6 +781,7 @@ module Aws::Signer
751
781
  #
752
782
  class SignedObject < Struct.new(
753
783
  :s3)
784
+ SENSITIVE = []
754
785
  include Aws::Structure
755
786
  end
756
787
 
@@ -771,6 +802,7 @@ module Aws::Signer
771
802
  class SigningConfiguration < Struct.new(
772
803
  :encryption_algorithm_options,
773
804
  :hash_algorithm_options)
805
+ SENSITIVE = []
774
806
  include Aws::Structure
775
807
  end
776
808
 
@@ -800,6 +832,7 @@ module Aws::Signer
800
832
  class SigningConfigurationOverrides < Struct.new(
801
833
  :encryption_algorithm,
802
834
  :hash_algorithm)
835
+ SENSITIVE = []
803
836
  include Aws::Structure
804
837
  end
805
838
 
@@ -818,6 +851,7 @@ module Aws::Signer
818
851
  class SigningImageFormat < Struct.new(
819
852
  :supported_formats,
820
853
  :default_format)
854
+ SENSITIVE = []
821
855
  include Aws::Structure
822
856
  end
823
857
 
@@ -859,6 +893,7 @@ module Aws::Signer
859
893
  :signing_material,
860
894
  :created_at,
861
895
  :status)
896
+ SENSITIVE = []
862
897
  include Aws::Structure
863
898
  end
864
899
 
@@ -880,6 +915,7 @@ module Aws::Signer
880
915
  #
881
916
  class SigningMaterial < Struct.new(
882
917
  :certificate_arn)
918
+ SENSITIVE = []
883
919
  include Aws::Structure
884
920
  end
885
921
 
@@ -932,6 +968,7 @@ module Aws::Signer
932
968
  :signing_configuration,
933
969
  :signing_image_format,
934
970
  :max_size_in_mb)
971
+ SENSITIVE = []
935
972
  include Aws::Structure
936
973
  end
937
974
 
@@ -968,6 +1005,7 @@ module Aws::Signer
968
1005
  class SigningPlatformOverrides < Struct.new(
969
1006
  :signing_configuration,
970
1007
  :signing_image_format)
1008
+ SENSITIVE = []
971
1009
  include Aws::Structure
972
1010
  end
973
1011
 
@@ -1013,6 +1051,7 @@ module Aws::Signer
1013
1051
  :status,
1014
1052
  :arn,
1015
1053
  :tags)
1054
+ SENSITIVE = []
1016
1055
  include Aws::Structure
1017
1056
  end
1018
1057
 
@@ -1038,6 +1077,7 @@ module Aws::Signer
1038
1077
  #
1039
1078
  class Source < Struct.new(
1040
1079
  :s3)
1080
+ SENSITIVE = []
1041
1081
  include Aws::Structure
1042
1082
  end
1043
1083
 
@@ -1092,6 +1132,7 @@ module Aws::Signer
1092
1132
  :destination,
1093
1133
  :profile_name,
1094
1134
  :client_request_token)
1135
+ SENSITIVE = []
1095
1136
  include Aws::Structure
1096
1137
  end
1097
1138
 
@@ -1103,6 +1144,7 @@ module Aws::Signer
1103
1144
  #
1104
1145
  class StartSigningJobResponse < Struct.new(
1105
1146
  :job_id)
1147
+ SENSITIVE = []
1106
1148
  include Aws::Structure
1107
1149
  end
1108
1150
 
@@ -1129,6 +1171,7 @@ module Aws::Signer
1129
1171
  class TagResourceRequest < Struct.new(
1130
1172
  :resource_arn,
1131
1173
  :tags)
1174
+ SENSITIVE = []
1132
1175
  include Aws::Structure
1133
1176
  end
1134
1177
 
@@ -1145,6 +1188,7 @@ module Aws::Signer
1145
1188
  #
1146
1189
  class ThrottlingException < Struct.new(
1147
1190
  :message)
1191
+ SENSITIVE = []
1148
1192
  include Aws::Structure
1149
1193
  end
1150
1194
 
@@ -1169,6 +1213,7 @@ module Aws::Signer
1169
1213
  class UntagResourceRequest < Struct.new(
1170
1214
  :resource_arn,
1171
1215
  :tag_keys)
1216
+ SENSITIVE = []
1172
1217
  include Aws::Structure
1173
1218
  end
1174
1219
 
@@ -1185,6 +1230,7 @@ module Aws::Signer
1185
1230
  #
1186
1231
  class ValidationException < Struct.new(
1187
1232
  :message)
1233
+ SENSITIVE = []
1188
1234
  include Aws::Structure
1189
1235
  end
1190
1236
 
@@ -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:
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.21.0
4
+ version: 1.26.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-05-28 00:00:00.000000000 Z
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.71.0
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.71.0
32
+ version: 3.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement