aws-sdk-ecr 1.27.0 → 1.32.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: a3331d72d4afebdf5b03add5870c6977a9ee32e8a77afce43809404976eb56ad
4
- data.tar.gz: 6fc834a56e4d47a96bb535437f47f2410165347d35e86ab5c0e17a65a02397ec
3
+ metadata.gz: 20ac92b1cd6d7111a8a09fc5fa7ecad85a024f9a51579f924a66c2fad2c9b4d3
4
+ data.tar.gz: c9b0ea66ceb5e23806de2bf0f75e45af1fdeb5c68a1fe6a2eeb801d262c09192
5
5
  SHA512:
6
- metadata.gz: b4471b993cbe248ee5df446a89e03e6df3bc0126585774427f27f24f8b309bc63e629ac1b99d5b1db1c4db027e0d26fd737f3744438074a83a4c7c17117314e0
7
- data.tar.gz: '01290d9ce8334a4f5fc64181d32253dfc271c00c89d25a739866a67cffe8b5a177e83dc36c02731ef5cd45d03631a86989c042c65194ad931bd45305e3de4245'
6
+ metadata.gz: 4f59fad5102a68eb17d28765f897e0b48854a8a5553d1195007b0842975a513d5f19157c793285bfec6a116f278508c5e9a79307efaee003b371e4bc71fbde00
7
+ data.tar.gz: b5a8925fffb271d4b9cb44efecc6140e60b48ce26c0b2093fbf28e355104f7e657856a137a95d8cd0035761d8c3098375637d706c5c80c8db2d073d7fd3b7cfe
@@ -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:
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-ecr/customizations'
46
48
  # @service
47
49
  module Aws::ECR
48
50
 
49
- GEM_VERSION = '1.27.0'
51
+ GEM_VERSION = '1.32.0'
50
52
 
51
53
  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/json_rpc.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::ECR
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::JsonRpc)
74
78
 
@@ -105,7 +109,7 @@ module Aws::ECR
105
109
  # @option options [required, String] :region
106
110
  # The AWS region to connect to. The configured `:region` is
107
111
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
109
113
  #
110
114
  # * `Aws.config[:region]`
111
115
  # * `ENV['AWS_REGION']`
@@ -161,7 +165,7 @@ module Aws::ECR
161
165
  # @option options [String] :endpoint
162
166
  # The client endpoint is normally constructed from the `:region`
163
167
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
169
  #
166
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +180,7 @@ module Aws::ECR
176
180
  # requests fetching endpoints information. Defaults to 60 sec.
177
181
  #
178
182
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
184
  #
181
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
186
  # The log formatter.
@@ -549,6 +553,7 @@ module Aws::ECR
549
553
  # resp.images[0].image_id.image_digest #=> String
550
554
  # resp.images[0].image_id.image_tag #=> String
551
555
  # resp.images[0].image_manifest #=> String
556
+ # resp.images[0].image_manifest_media_type #=> String
552
557
  # resp.failures #=> Array
553
558
  # resp.failures[0].image_id.image_digest #=> String
554
559
  # resp.failures[0].image_id.image_tag #=> String
@@ -1678,6 +1683,11 @@ module Aws::ECR
1678
1683
  # @option params [required, String] :image_manifest
1679
1684
  # The image manifest corresponding to the image to be uploaded.
1680
1685
  #
1686
+ # @option params [String] :image_manifest_media_type
1687
+ # The media type of the image manifest. If you push an image manifest
1688
+ # that does not contain the `mediaType` field, you must specify the
1689
+ # `imageManifestMediaType` in the request.
1690
+ #
1681
1691
  # @option params [String] :image_tag
1682
1692
  # The tag to associate with the image. This parameter is required for
1683
1693
  # images that use the Docker Image Manifest V2 Schema 2 or OCI formats.
@@ -1692,6 +1702,7 @@ module Aws::ECR
1692
1702
  # registry_id: "RegistryId",
1693
1703
  # repository_name: "RepositoryName", # required
1694
1704
  # image_manifest: "ImageManifest", # required
1705
+ # image_manifest_media_type: "MediaType",
1695
1706
  # image_tag: "ImageTag",
1696
1707
  # })
1697
1708
  #
@@ -1702,6 +1713,7 @@ module Aws::ECR
1702
1713
  # resp.image.image_id.image_digest #=> String
1703
1714
  # resp.image.image_id.image_tag #=> String
1704
1715
  # resp.image.image_manifest #=> String
1716
+ # resp.image.image_manifest_media_type #=> String
1705
1717
  #
1706
1718
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/PutImage AWS API Documentation
1707
1719
  #
@@ -1865,7 +1877,7 @@ module Aws::ECR
1865
1877
  #
1866
1878
  #
1867
1879
  #
1868
- # [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/RepositoryPolicies.html
1880
+ # [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policies.html
1869
1881
  #
1870
1882
  # @option params [String] :registry_id
1871
1883
  # The AWS account ID associated with the registry that contains the
@@ -1877,12 +1889,12 @@ module Aws::ECR
1877
1889
  #
1878
1890
  # @option params [required, String] :policy_text
1879
1891
  # The JSON repository policy text to apply to the repository. For more
1880
- # information, see [Amazon ECR Repository Policy Examples][1] in the
1881
- # *Amazon Elastic Container Registry User Guide*.
1892
+ # information, see [Amazon ECR Repository Policies][1] in the *Amazon
1893
+ # Elastic Container Registry User Guide*.
1882
1894
  #
1883
1895
  #
1884
1896
  #
1885
- # [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/RepositoryPolicyExamples.html
1897
+ # [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policy-examples.html
1886
1898
  #
1887
1899
  # @option params [Boolean] :force
1888
1900
  # If the policy you are attempting to set on a repository policy would
@@ -2114,10 +2126,12 @@ module Aws::ECR
2114
2126
  # associate with the layer part upload.
2115
2127
  #
2116
2128
  # @option params [required, Integer] :part_first_byte
2117
- # The integer value of the first byte of the layer part.
2129
+ # The position of the first byte of the layer part witin the overall
2130
+ # image layer.
2118
2131
  #
2119
2132
  # @option params [required, Integer] :part_last_byte
2120
- # The integer value of the last byte of the layer part.
2133
+ # The position of the last byte of the layer part within the overall
2134
+ # image layer.
2121
2135
  #
2122
2136
  # @option params [required, String, IO] :layer_part_blob
2123
2137
  # The base64-encoded layer part payload.
@@ -2169,7 +2183,7 @@ module Aws::ECR
2169
2183
  params: params,
2170
2184
  config: config)
2171
2185
  context[:gem_name] = 'aws-sdk-ecr'
2172
- context[:gem_version] = '1.27.0'
2186
+ context[:gem_version] = '1.32.0'
2173
2187
  Seahorse::Client::Request.new(handlers, context)
2174
2188
  end
2175
2189
 
@@ -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:
@@ -383,6 +385,7 @@ module Aws::ECR
383
385
  Image.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, location_name: "repositoryName"))
384
386
  Image.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageIdentifier, location_name: "imageId"))
385
387
  Image.add_member(:image_manifest, Shapes::ShapeRef.new(shape: ImageManifest, location_name: "imageManifest"))
388
+ Image.add_member(:image_manifest_media_type, Shapes::ShapeRef.new(shape: MediaType, location_name: "imageManifestMediaType"))
386
389
  Image.struct_class = Types::Image
387
390
 
388
391
  ImageAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "message"))
@@ -558,6 +561,7 @@ module Aws::ECR
558
561
  PutImageRequest.add_member(:registry_id, Shapes::ShapeRef.new(shape: RegistryId, location_name: "registryId"))
559
562
  PutImageRequest.add_member(:repository_name, Shapes::ShapeRef.new(shape: RepositoryName, required: true, location_name: "repositoryName"))
560
563
  PutImageRequest.add_member(:image_manifest, Shapes::ShapeRef.new(shape: ImageManifest, required: true, location_name: "imageManifest"))
564
+ PutImageRequest.add_member(:image_manifest_media_type, Shapes::ShapeRef.new(shape: MediaType, location_name: "imageManifestMediaType"))
561
565
  PutImageRequest.add_member(:image_tag, Shapes::ShapeRef.new(shape: ImageTag, location_name: "imageTag"))
562
566
  PutImageRequest.struct_class = Types::PutImageRequest
563
567
 
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -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:
@@ -23,6 +25,7 @@ module Aws::ECR
23
25
  class Attribute < Struct.new(
24
26
  :key,
25
27
  :value)
28
+ SENSITIVE = []
26
29
  include Aws::Structure
27
30
  end
28
31
 
@@ -53,6 +56,7 @@ module Aws::ECR
53
56
  :authorization_token,
54
57
  :expires_at,
55
58
  :proxy_endpoint)
59
+ SENSITIVE = []
56
60
  include Aws::Structure
57
61
  end
58
62
 
@@ -86,6 +90,7 @@ module Aws::ECR
86
90
  :registry_id,
87
91
  :repository_name,
88
92
  :layer_digests)
93
+ SENSITIVE = []
89
94
  include Aws::Structure
90
95
  end
91
96
 
@@ -103,6 +108,7 @@ module Aws::ECR
103
108
  class BatchCheckLayerAvailabilityResponse < Struct.new(
104
109
  :layers,
105
110
  :failures)
111
+ SENSITIVE = []
106
112
  include Aws::Structure
107
113
  end
108
114
 
@@ -145,6 +151,7 @@ module Aws::ECR
145
151
  :registry_id,
146
152
  :repository_name,
147
153
  :image_ids)
154
+ SENSITIVE = []
148
155
  include Aws::Structure
149
156
  end
150
157
 
@@ -161,6 +168,7 @@ module Aws::ECR
161
168
  class BatchDeleteImageResponse < Struct.new(
162
169
  :image_ids,
163
170
  :failures)
171
+ SENSITIVE = []
164
172
  include Aws::Structure
165
173
  end
166
174
 
@@ -210,6 +218,7 @@ module Aws::ECR
210
218
  :repository_name,
211
219
  :image_ids,
212
220
  :accepted_media_types)
221
+ SENSITIVE = []
213
222
  include Aws::Structure
214
223
  end
215
224
 
@@ -227,6 +236,7 @@ module Aws::ECR
227
236
  class BatchGetImageResponse < Struct.new(
228
237
  :images,
229
238
  :failures)
239
+ SENSITIVE = []
230
240
  include Aws::Structure
231
241
  end
232
242
 
@@ -266,6 +276,7 @@ module Aws::ECR
266
276
  :repository_name,
267
277
  :upload_id,
268
278
  :layer_digests)
279
+ SENSITIVE = []
269
280
  include Aws::Structure
270
281
  end
271
282
 
@@ -292,6 +303,7 @@ module Aws::ECR
292
303
  :repository_name,
293
304
  :upload_id,
294
305
  :layer_digest)
306
+ SENSITIVE = []
295
307
  include Aws::Structure
296
308
  end
297
309
 
@@ -348,6 +360,7 @@ module Aws::ECR
348
360
  :tags,
349
361
  :image_tag_mutability,
350
362
  :image_scanning_configuration)
363
+ SENSITIVE = []
351
364
  include Aws::Structure
352
365
  end
353
366
 
@@ -359,6 +372,7 @@ module Aws::ECR
359
372
  #
360
373
  class CreateRepositoryResponse < Struct.new(
361
374
  :repository)
375
+ SENSITIVE = []
362
376
  include Aws::Structure
363
377
  end
364
378
 
@@ -385,6 +399,7 @@ module Aws::ECR
385
399
  class DeleteLifecyclePolicyRequest < Struct.new(
386
400
  :registry_id,
387
401
  :repository_name)
402
+ SENSITIVE = []
388
403
  include Aws::Structure
389
404
  end
390
405
 
@@ -411,6 +426,7 @@ module Aws::ECR
411
426
  :repository_name,
412
427
  :lifecycle_policy_text,
413
428
  :last_evaluated_at)
429
+ SENSITIVE = []
414
430
  include Aws::Structure
415
431
  end
416
432
 
@@ -438,6 +454,7 @@ module Aws::ECR
438
454
  class DeleteRepositoryPolicyRequest < Struct.new(
439
455
  :registry_id,
440
456
  :repository_name)
457
+ SENSITIVE = []
441
458
  include Aws::Structure
442
459
  end
443
460
 
@@ -459,6 +476,7 @@ module Aws::ECR
459
476
  :registry_id,
460
477
  :repository_name,
461
478
  :policy_text)
479
+ SENSITIVE = []
462
480
  include Aws::Structure
463
481
  end
464
482
 
@@ -491,6 +509,7 @@ module Aws::ECR
491
509
  :registry_id,
492
510
  :repository_name,
493
511
  :force)
512
+ SENSITIVE = []
494
513
  include Aws::Structure
495
514
  end
496
515
 
@@ -502,6 +521,7 @@ module Aws::ECR
502
521
  #
503
522
  class DeleteRepositoryResponse < Struct.new(
504
523
  :repository)
524
+ SENSITIVE = []
505
525
  include Aws::Structure
506
526
  end
507
527
 
@@ -563,6 +583,7 @@ module Aws::ECR
563
583
  :image_id,
564
584
  :next_token,
565
585
  :max_results)
586
+ SENSITIVE = []
566
587
  include Aws::Structure
567
588
  end
568
589
 
@@ -603,6 +624,7 @@ module Aws::ECR
603
624
  :image_scan_status,
604
625
  :image_scan_findings,
605
626
  :next_token)
627
+ SENSITIVE = []
606
628
  include Aws::Structure
607
629
  end
608
630
 
@@ -624,6 +646,7 @@ module Aws::ECR
624
646
  #
625
647
  class DescribeImagesFilter < Struct.new(
626
648
  :tag_status)
649
+ SENSITIVE = []
627
650
  include Aws::Structure
628
651
  end
629
652
 
@@ -696,6 +719,7 @@ module Aws::ECR
696
719
  :next_token,
697
720
  :max_results,
698
721
  :filter)
722
+ SENSITIVE = []
699
723
  include Aws::Structure
700
724
  end
701
725
 
@@ -716,6 +740,7 @@ module Aws::ECR
716
740
  class DescribeImagesResponse < Struct.new(
717
741
  :image_details,
718
742
  :next_token)
743
+ SENSITIVE = []
719
744
  include Aws::Structure
720
745
  end
721
746
 
@@ -776,6 +801,7 @@ module Aws::ECR
776
801
  :repository_names,
777
802
  :next_token,
778
803
  :max_results)
804
+ SENSITIVE = []
779
805
  include Aws::Structure
780
806
  end
781
807
 
@@ -796,6 +822,7 @@ module Aws::ECR
796
822
  class DescribeRepositoriesResponse < Struct.new(
797
823
  :repositories,
798
824
  :next_token)
825
+ SENSITIVE = []
799
826
  include Aws::Structure
800
827
  end
801
828
 
@@ -809,6 +836,7 @@ module Aws::ECR
809
836
  #
810
837
  class EmptyUploadException < Struct.new(
811
838
  :message)
839
+ SENSITIVE = []
812
840
  include Aws::Structure
813
841
  end
814
842
 
@@ -829,6 +857,7 @@ module Aws::ECR
829
857
  #
830
858
  class GetAuthorizationTokenRequest < Struct.new(
831
859
  :registry_ids)
860
+ SENSITIVE = []
832
861
  include Aws::Structure
833
862
  end
834
863
 
@@ -841,6 +870,7 @@ module Aws::ECR
841
870
  #
842
871
  class GetAuthorizationTokenResponse < Struct.new(
843
872
  :authorization_data)
873
+ SENSITIVE = []
844
874
  include Aws::Structure
845
875
  end
846
876
 
@@ -874,6 +904,7 @@ module Aws::ECR
874
904
  :registry_id,
875
905
  :repository_name,
876
906
  :layer_digest)
907
+ SENSITIVE = []
877
908
  include Aws::Structure
878
909
  end
879
910
 
@@ -890,6 +921,7 @@ module Aws::ECR
890
921
  class GetDownloadUrlForLayerResponse < Struct.new(
891
922
  :download_url,
892
923
  :layer_digest)
924
+ SENSITIVE = []
893
925
  include Aws::Structure
894
926
  end
895
927
 
@@ -964,6 +996,7 @@ module Aws::ECR
964
996
  :next_token,
965
997
  :max_results,
966
998
  :filter)
999
+ SENSITIVE = []
967
1000
  include Aws::Structure
968
1001
  end
969
1002
 
@@ -1009,6 +1042,7 @@ module Aws::ECR
1009
1042
  :next_token,
1010
1043
  :preview_results,
1011
1044
  :summary)
1045
+ SENSITIVE = []
1012
1046
  include Aws::Structure
1013
1047
  end
1014
1048
 
@@ -1035,6 +1069,7 @@ module Aws::ECR
1035
1069
  class GetLifecyclePolicyRequest < Struct.new(
1036
1070
  :registry_id,
1037
1071
  :repository_name)
1072
+ SENSITIVE = []
1038
1073
  include Aws::Structure
1039
1074
  end
1040
1075
 
@@ -1061,6 +1096,7 @@ module Aws::ECR
1061
1096
  :repository_name,
1062
1097
  :lifecycle_policy_text,
1063
1098
  :last_evaluated_at)
1099
+ SENSITIVE = []
1064
1100
  include Aws::Structure
1065
1101
  end
1066
1102
 
@@ -1087,6 +1123,7 @@ module Aws::ECR
1087
1123
  class GetRepositoryPolicyRequest < Struct.new(
1088
1124
  :registry_id,
1089
1125
  :repository_name)
1126
+ SENSITIVE = []
1090
1127
  include Aws::Structure
1091
1128
  end
1092
1129
 
@@ -1108,6 +1145,7 @@ module Aws::ECR
1108
1145
  :registry_id,
1109
1146
  :repository_name,
1110
1147
  :policy_text)
1148
+ SENSITIVE = []
1111
1149
  include Aws::Structure
1112
1150
  end
1113
1151
 
@@ -1131,13 +1169,19 @@ module Aws::ECR
1131
1169
  # The image manifest associated with the image.
1132
1170
  # @return [String]
1133
1171
  #
1172
+ # @!attribute [rw] image_manifest_media_type
1173
+ # The media type associated with the image manifest.
1174
+ # @return [String]
1175
+ #
1134
1176
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/Image AWS API Documentation
1135
1177
  #
1136
1178
  class Image < Struct.new(
1137
1179
  :registry_id,
1138
1180
  :repository_name,
1139
1181
  :image_id,
1140
- :image_manifest)
1182
+ :image_manifest,
1183
+ :image_manifest_media_type)
1184
+ SENSITIVE = []
1141
1185
  include Aws::Structure
1142
1186
  end
1143
1187
 
@@ -1152,6 +1196,7 @@ module Aws::ECR
1152
1196
  #
1153
1197
  class ImageAlreadyExistsException < Struct.new(
1154
1198
  :message)
1199
+ SENSITIVE = []
1155
1200
  include Aws::Structure
1156
1201
  end
1157
1202
 
@@ -1214,6 +1259,7 @@ module Aws::ECR
1214
1259
  :image_pushed_at,
1215
1260
  :image_scan_status,
1216
1261
  :image_scan_findings_summary)
1262
+ SENSITIVE = []
1217
1263
  include Aws::Structure
1218
1264
  end
1219
1265
 
@@ -1237,6 +1283,7 @@ module Aws::ECR
1237
1283
  :image_id,
1238
1284
  :failure_code,
1239
1285
  :failure_reason)
1286
+ SENSITIVE = []
1240
1287
  include Aws::Structure
1241
1288
  end
1242
1289
 
@@ -1263,6 +1310,7 @@ module Aws::ECR
1263
1310
  class ImageIdentifier < Struct.new(
1264
1311
  :image_digest,
1265
1312
  :image_tag)
1313
+ SENSITIVE = []
1266
1314
  include Aws::Structure
1267
1315
  end
1268
1316
 
@@ -1275,6 +1323,7 @@ module Aws::ECR
1275
1323
  #
1276
1324
  class ImageNotFoundException < Struct.new(
1277
1325
  :message)
1326
+ SENSITIVE = []
1278
1327
  include Aws::Structure
1279
1328
  end
1280
1329
 
@@ -1310,6 +1359,7 @@ module Aws::ECR
1310
1359
  :uri,
1311
1360
  :severity,
1312
1361
  :attributes)
1362
+ SENSITIVE = []
1313
1363
  include Aws::Structure
1314
1364
  end
1315
1365
 
@@ -1338,6 +1388,7 @@ module Aws::ECR
1338
1388
  :vulnerability_source_updated_at,
1339
1389
  :findings,
1340
1390
  :finding_severity_counts)
1391
+ SENSITIVE = []
1341
1392
  include Aws::Structure
1342
1393
  end
1343
1394
 
@@ -1361,6 +1412,7 @@ module Aws::ECR
1361
1412
  :image_scan_completed_at,
1362
1413
  :vulnerability_source_updated_at,
1363
1414
  :finding_severity_counts)
1415
+ SENSITIVE = []
1364
1416
  include Aws::Structure
1365
1417
  end
1366
1418
 
@@ -1379,6 +1431,7 @@ module Aws::ECR
1379
1431
  class ImageScanStatus < Struct.new(
1380
1432
  :status,
1381
1433
  :description)
1434
+ SENSITIVE = []
1382
1435
  include Aws::Structure
1383
1436
  end
1384
1437
 
@@ -1403,6 +1456,7 @@ module Aws::ECR
1403
1456
  #
1404
1457
  class ImageScanningConfiguration < Struct.new(
1405
1458
  :scan_on_push)
1459
+ SENSITIVE = []
1406
1460
  include Aws::Structure
1407
1461
  end
1408
1462
 
@@ -1416,6 +1470,7 @@ module Aws::ECR
1416
1470
  #
1417
1471
  class ImageTagAlreadyExistsException < Struct.new(
1418
1472
  :message)
1473
+ SENSITIVE = []
1419
1474
  include Aws::Structure
1420
1475
  end
1421
1476
 
@@ -1442,6 +1497,7 @@ module Aws::ECR
1442
1497
  class InitiateLayerUploadRequest < Struct.new(
1443
1498
  :registry_id,
1444
1499
  :repository_name)
1500
+ SENSITIVE = []
1445
1501
  include Aws::Structure
1446
1502
  end
1447
1503
 
@@ -1460,6 +1516,7 @@ module Aws::ECR
1460
1516
  class InitiateLayerUploadResponse < Struct.new(
1461
1517
  :upload_id,
1462
1518
  :part_size)
1519
+ SENSITIVE = []
1463
1520
  include Aws::Structure
1464
1521
  end
1465
1522
 
@@ -1474,6 +1531,7 @@ module Aws::ECR
1474
1531
  #
1475
1532
  class InvalidLayerException < Struct.new(
1476
1533
  :message)
1534
+ SENSITIVE = []
1477
1535
  include Aws::Structure
1478
1536
  end
1479
1537
 
@@ -1509,6 +1567,7 @@ module Aws::ECR
1509
1567
  :upload_id,
1510
1568
  :last_valid_byte_received,
1511
1569
  :message)
1570
+ SENSITIVE = []
1512
1571
  include Aws::Structure
1513
1572
  end
1514
1573
 
@@ -1523,6 +1582,7 @@ module Aws::ECR
1523
1582
  #
1524
1583
  class InvalidParameterException < Struct.new(
1525
1584
  :message)
1585
+ SENSITIVE = []
1526
1586
  include Aws::Structure
1527
1587
  end
1528
1588
 
@@ -1537,6 +1597,7 @@ module Aws::ECR
1537
1597
  #
1538
1598
  class InvalidTagParameterException < Struct.new(
1539
1599
  :message)
1600
+ SENSITIVE = []
1540
1601
  include Aws::Structure
1541
1602
  end
1542
1603
 
@@ -1567,6 +1628,7 @@ module Aws::ECR
1567
1628
  :layer_availability,
1568
1629
  :layer_size,
1569
1630
  :media_type)
1631
+ SENSITIVE = []
1570
1632
  include Aws::Structure
1571
1633
  end
1572
1634
 
@@ -1580,6 +1642,7 @@ module Aws::ECR
1580
1642
  #
1581
1643
  class LayerAlreadyExistsException < Struct.new(
1582
1644
  :message)
1645
+ SENSITIVE = []
1583
1646
  include Aws::Structure
1584
1647
  end
1585
1648
 
@@ -1603,6 +1666,7 @@ module Aws::ECR
1603
1666
  :layer_digest,
1604
1667
  :failure_code,
1605
1668
  :failure_reason)
1669
+ SENSITIVE = []
1606
1670
  include Aws::Structure
1607
1671
  end
1608
1672
 
@@ -1617,6 +1681,7 @@ module Aws::ECR
1617
1681
  #
1618
1682
  class LayerInaccessibleException < Struct.new(
1619
1683
  :message)
1684
+ SENSITIVE = []
1620
1685
  include Aws::Structure
1621
1686
  end
1622
1687
 
@@ -1630,6 +1695,7 @@ module Aws::ECR
1630
1695
  #
1631
1696
  class LayerPartTooSmallException < Struct.new(
1632
1697
  :message)
1698
+ SENSITIVE = []
1633
1699
  include Aws::Structure
1634
1700
  end
1635
1701
 
@@ -1644,6 +1710,7 @@ module Aws::ECR
1644
1710
  #
1645
1711
  class LayersNotFoundException < Struct.new(
1646
1712
  :message)
1713
+ SENSITIVE = []
1647
1714
  include Aws::Structure
1648
1715
  end
1649
1716
 
@@ -1657,6 +1724,7 @@ module Aws::ECR
1657
1724
  #
1658
1725
  class LifecyclePolicyNotFoundException < Struct.new(
1659
1726
  :message)
1727
+ SENSITIVE = []
1660
1728
  include Aws::Structure
1661
1729
  end
1662
1730
 
@@ -1677,6 +1745,7 @@ module Aws::ECR
1677
1745
  #
1678
1746
  class LifecyclePolicyPreviewFilter < Struct.new(
1679
1747
  :tag_status)
1748
+ SENSITIVE = []
1680
1749
  include Aws::Structure
1681
1750
  end
1682
1751
 
@@ -1690,6 +1759,7 @@ module Aws::ECR
1690
1759
  #
1691
1760
  class LifecyclePolicyPreviewInProgressException < Struct.new(
1692
1761
  :message)
1762
+ SENSITIVE = []
1693
1763
  include Aws::Structure
1694
1764
  end
1695
1765
 
@@ -1702,6 +1772,7 @@ module Aws::ECR
1702
1772
  #
1703
1773
  class LifecyclePolicyPreviewNotFoundException < Struct.new(
1704
1774
  :message)
1775
+ SENSITIVE = []
1705
1776
  include Aws::Structure
1706
1777
  end
1707
1778
 
@@ -1736,6 +1807,7 @@ module Aws::ECR
1736
1807
  :image_pushed_at,
1737
1808
  :action,
1738
1809
  :applied_rule_priority)
1810
+ SENSITIVE = []
1739
1811
  include Aws::Structure
1740
1812
  end
1741
1813
 
@@ -1749,6 +1821,7 @@ module Aws::ECR
1749
1821
  #
1750
1822
  class LifecyclePolicyPreviewSummary < Struct.new(
1751
1823
  :expiring_image_total_count)
1824
+ SENSITIVE = []
1752
1825
  include Aws::Structure
1753
1826
  end
1754
1827
 
@@ -1762,17 +1835,17 @@ module Aws::ECR
1762
1835
  #
1763
1836
  class LifecyclePolicyRuleAction < Struct.new(
1764
1837
  :type)
1838
+ SENSITIVE = []
1765
1839
  include Aws::Structure
1766
1840
  end
1767
1841
 
1768
1842
  # The operation did not succeed because it would have exceeded a service
1769
- # limit for your account. For more information, see [Amazon ECR Default
1770
- # Service Limits][1] in the Amazon Elastic Container Registry User
1771
- # Guide.
1843
+ # limit for your account. For more information, see [Amazon ECR Service
1844
+ # Quotas][1] in the Amazon Elastic Container Registry User Guide.
1772
1845
  #
1773
1846
  #
1774
1847
  #
1775
- # [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/service_limits.html
1848
+ # [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/service-quotas.html
1776
1849
  #
1777
1850
  # @!attribute [rw] message
1778
1851
  # The error message associated with the exception.
@@ -1782,6 +1855,7 @@ module Aws::ECR
1782
1855
  #
1783
1856
  class LimitExceededException < Struct.new(
1784
1857
  :message)
1858
+ SENSITIVE = []
1785
1859
  include Aws::Structure
1786
1860
  end
1787
1861
 
@@ -1803,6 +1877,7 @@ module Aws::ECR
1803
1877
  #
1804
1878
  class ListImagesFilter < Struct.new(
1805
1879
  :tag_status)
1880
+ SENSITIVE = []
1806
1881
  include Aws::Structure
1807
1882
  end
1808
1883
 
@@ -1867,6 +1942,7 @@ module Aws::ECR
1867
1942
  :next_token,
1868
1943
  :max_results,
1869
1944
  :filter)
1945
+ SENSITIVE = []
1870
1946
  include Aws::Structure
1871
1947
  end
1872
1948
 
@@ -1886,6 +1962,7 @@ module Aws::ECR
1886
1962
  class ListImagesResponse < Struct.new(
1887
1963
  :image_ids,
1888
1964
  :next_token)
1965
+ SENSITIVE = []
1889
1966
  include Aws::Structure
1890
1967
  end
1891
1968
 
@@ -1906,6 +1983,7 @@ module Aws::ECR
1906
1983
  #
1907
1984
  class ListTagsForResourceRequest < Struct.new(
1908
1985
  :resource_arn)
1986
+ SENSITIVE = []
1909
1987
  include Aws::Structure
1910
1988
  end
1911
1989
 
@@ -1917,6 +1995,7 @@ module Aws::ECR
1917
1995
  #
1918
1996
  class ListTagsForResourceResponse < Struct.new(
1919
1997
  :tags)
1998
+ SENSITIVE = []
1920
1999
  include Aws::Structure
1921
2000
  end
1922
2001
 
@@ -1927,6 +2006,7 @@ module Aws::ECR
1927
2006
  # registry_id: "RegistryId",
1928
2007
  # repository_name: "RepositoryName", # required
1929
2008
  # image_manifest: "ImageManifest", # required
2009
+ # image_manifest_media_type: "MediaType",
1930
2010
  # image_tag: "ImageTag",
1931
2011
  # }
1932
2012
  #
@@ -1944,6 +2024,12 @@ module Aws::ECR
1944
2024
  # The image manifest corresponding to the image to be uploaded.
1945
2025
  # @return [String]
1946
2026
  #
2027
+ # @!attribute [rw] image_manifest_media_type
2028
+ # The media type of the image manifest. If you push an image manifest
2029
+ # that does not contain the `mediaType` field, you must specify the
2030
+ # `imageManifestMediaType` in the request.
2031
+ # @return [String]
2032
+ #
1947
2033
  # @!attribute [rw] image_tag
1948
2034
  # The tag to associate with the image. This parameter is required for
1949
2035
  # images that use the Docker Image Manifest V2 Schema 2 or OCI
@@ -1956,7 +2042,9 @@ module Aws::ECR
1956
2042
  :registry_id,
1957
2043
  :repository_name,
1958
2044
  :image_manifest,
2045
+ :image_manifest_media_type,
1959
2046
  :image_tag)
2047
+ SENSITIVE = []
1960
2048
  include Aws::Structure
1961
2049
  end
1962
2050
 
@@ -1968,6 +2056,7 @@ module Aws::ECR
1968
2056
  #
1969
2057
  class PutImageResponse < Struct.new(
1970
2058
  :image)
2059
+ SENSITIVE = []
1971
2060
  include Aws::Structure
1972
2061
  end
1973
2062
 
@@ -2006,6 +2095,7 @@ module Aws::ECR
2006
2095
  :registry_id,
2007
2096
  :repository_name,
2008
2097
  :image_scanning_configuration)
2098
+ SENSITIVE = []
2009
2099
  include Aws::Structure
2010
2100
  end
2011
2101
 
@@ -2027,6 +2117,7 @@ module Aws::ECR
2027
2117
  :registry_id,
2028
2118
  :repository_name,
2029
2119
  :image_scanning_configuration)
2120
+ SENSITIVE = []
2030
2121
  include Aws::Structure
2031
2122
  end
2032
2123
 
@@ -2063,6 +2154,7 @@ module Aws::ECR
2063
2154
  :registry_id,
2064
2155
  :repository_name,
2065
2156
  :image_tag_mutability)
2157
+ SENSITIVE = []
2066
2158
  include Aws::Structure
2067
2159
  end
2068
2160
 
@@ -2084,6 +2176,7 @@ module Aws::ECR
2084
2176
  :registry_id,
2085
2177
  :repository_name,
2086
2178
  :image_tag_mutability)
2179
+ SENSITIVE = []
2087
2180
  include Aws::Structure
2088
2181
  end
2089
2182
 
@@ -2116,6 +2209,7 @@ module Aws::ECR
2116
2209
  :registry_id,
2117
2210
  :repository_name,
2118
2211
  :lifecycle_policy_text)
2212
+ SENSITIVE = []
2119
2213
  include Aws::Structure
2120
2214
  end
2121
2215
 
@@ -2137,6 +2231,7 @@ module Aws::ECR
2137
2231
  :registry_id,
2138
2232
  :repository_name,
2139
2233
  :lifecycle_policy_text)
2234
+ SENSITIVE = []
2140
2235
  include Aws::Structure
2141
2236
  end
2142
2237
 
@@ -2149,6 +2244,7 @@ module Aws::ECR
2149
2244
  #
2150
2245
  class ReferencedImagesNotFoundException < Struct.new(
2151
2246
  :message)
2247
+ SENSITIVE = []
2152
2248
  include Aws::Structure
2153
2249
  end
2154
2250
 
@@ -2199,6 +2295,7 @@ module Aws::ECR
2199
2295
  :created_at,
2200
2296
  :image_tag_mutability,
2201
2297
  :image_scanning_configuration)
2298
+ SENSITIVE = []
2202
2299
  include Aws::Structure
2203
2300
  end
2204
2301
 
@@ -2212,6 +2309,7 @@ module Aws::ECR
2212
2309
  #
2213
2310
  class RepositoryAlreadyExistsException < Struct.new(
2214
2311
  :message)
2312
+ SENSITIVE = []
2215
2313
  include Aws::Structure
2216
2314
  end
2217
2315
 
@@ -2227,6 +2325,7 @@ module Aws::ECR
2227
2325
  #
2228
2326
  class RepositoryNotEmptyException < Struct.new(
2229
2327
  :message)
2328
+ SENSITIVE = []
2230
2329
  include Aws::Structure
2231
2330
  end
2232
2331
 
@@ -2242,6 +2341,7 @@ module Aws::ECR
2242
2341
  #
2243
2342
  class RepositoryNotFoundException < Struct.new(
2244
2343
  :message)
2344
+ SENSITIVE = []
2245
2345
  include Aws::Structure
2246
2346
  end
2247
2347
 
@@ -2256,6 +2356,7 @@ module Aws::ECR
2256
2356
  #
2257
2357
  class RepositoryPolicyNotFoundException < Struct.new(
2258
2358
  :message)
2359
+ SENSITIVE = []
2259
2360
  include Aws::Structure
2260
2361
  end
2261
2362
 
@@ -2269,6 +2370,7 @@ module Aws::ECR
2269
2370
  #
2270
2371
  class ScanNotFoundException < Struct.new(
2271
2372
  :message)
2373
+ SENSITIVE = []
2272
2374
  include Aws::Structure
2273
2375
  end
2274
2376
 
@@ -2282,6 +2384,7 @@ module Aws::ECR
2282
2384
  #
2283
2385
  class ServerException < Struct.new(
2284
2386
  :message)
2387
+ SENSITIVE = []
2285
2388
  include Aws::Structure
2286
2389
  end
2287
2390
 
@@ -2307,12 +2410,12 @@ module Aws::ECR
2307
2410
  #
2308
2411
  # @!attribute [rw] policy_text
2309
2412
  # The JSON repository policy text to apply to the repository. For more
2310
- # information, see [Amazon ECR Repository Policy Examples][1] in the
2311
- # *Amazon Elastic Container Registry User Guide*.
2413
+ # information, see [Amazon ECR Repository Policies][1] in the *Amazon
2414
+ # Elastic Container Registry User Guide*.
2312
2415
  #
2313
2416
  #
2314
2417
  #
2315
- # [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/RepositoryPolicyExamples.html
2418
+ # [1]: https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policy-examples.html
2316
2419
  # @return [String]
2317
2420
  #
2318
2421
  # @!attribute [rw] force
@@ -2329,6 +2432,7 @@ module Aws::ECR
2329
2432
  :repository_name,
2330
2433
  :policy_text,
2331
2434
  :force)
2435
+ SENSITIVE = []
2332
2436
  include Aws::Structure
2333
2437
  end
2334
2438
 
@@ -2350,6 +2454,7 @@ module Aws::ECR
2350
2454
  :registry_id,
2351
2455
  :repository_name,
2352
2456
  :policy_text)
2457
+ SENSITIVE = []
2353
2458
  include Aws::Structure
2354
2459
  end
2355
2460
 
@@ -2385,6 +2490,7 @@ module Aws::ECR
2385
2490
  :registry_id,
2386
2491
  :repository_name,
2387
2492
  :image_id)
2493
+ SENSITIVE = []
2388
2494
  include Aws::Structure
2389
2495
  end
2390
2496
 
@@ -2411,6 +2517,7 @@ module Aws::ECR
2411
2517
  :repository_name,
2412
2518
  :image_id,
2413
2519
  :image_scan_status)
2520
+ SENSITIVE = []
2414
2521
  include Aws::Structure
2415
2522
  end
2416
2523
 
@@ -2444,6 +2551,7 @@ module Aws::ECR
2444
2551
  :registry_id,
2445
2552
  :repository_name,
2446
2553
  :lifecycle_policy_text)
2554
+ SENSITIVE = []
2447
2555
  include Aws::Structure
2448
2556
  end
2449
2557
 
@@ -2470,6 +2578,7 @@ module Aws::ECR
2470
2578
  :repository_name,
2471
2579
  :lifecycle_policy_text,
2472
2580
  :status)
2581
+ SENSITIVE = []
2473
2582
  include Aws::Structure
2474
2583
  end
2475
2584
 
@@ -2503,6 +2612,7 @@ module Aws::ECR
2503
2612
  class Tag < Struct.new(
2504
2613
  :key,
2505
2614
  :value)
2615
+ SENSITIVE = []
2506
2616
  include Aws::Structure
2507
2617
  end
2508
2618
 
@@ -2537,6 +2647,7 @@ module Aws::ECR
2537
2647
  class TagResourceRequest < Struct.new(
2538
2648
  :resource_arn,
2539
2649
  :tags)
2650
+ SENSITIVE = []
2540
2651
  include Aws::Structure
2541
2652
  end
2542
2653
 
@@ -2554,6 +2665,7 @@ module Aws::ECR
2554
2665
  #
2555
2666
  class TooManyTagsException < Struct.new(
2556
2667
  :message)
2668
+ SENSITIVE = []
2557
2669
  include Aws::Structure
2558
2670
  end
2559
2671
 
@@ -2566,6 +2678,7 @@ module Aws::ECR
2566
2678
  #
2567
2679
  class UnsupportedImageTypeException < Struct.new(
2568
2680
  :message)
2681
+ SENSITIVE = []
2569
2682
  include Aws::Structure
2570
2683
  end
2571
2684
 
@@ -2592,6 +2705,7 @@ module Aws::ECR
2592
2705
  class UntagResourceRequest < Struct.new(
2593
2706
  :resource_arn,
2594
2707
  :tag_keys)
2708
+ SENSITIVE = []
2595
2709
  include Aws::Structure
2596
2710
  end
2597
2711
 
@@ -2627,11 +2741,13 @@ module Aws::ECR
2627
2741
  # @return [String]
2628
2742
  #
2629
2743
  # @!attribute [rw] part_first_byte
2630
- # The integer value of the first byte of the layer part.
2744
+ # The position of the first byte of the layer part witin the overall
2745
+ # image layer.
2631
2746
  # @return [Integer]
2632
2747
  #
2633
2748
  # @!attribute [rw] part_last_byte
2634
- # The integer value of the last byte of the layer part.
2749
+ # The position of the last byte of the layer part within the overall
2750
+ # image layer.
2635
2751
  # @return [Integer]
2636
2752
  #
2637
2753
  # @!attribute [rw] layer_part_blob
@@ -2647,6 +2763,7 @@ module Aws::ECR
2647
2763
  :part_first_byte,
2648
2764
  :part_last_byte,
2649
2765
  :layer_part_blob)
2766
+ SENSITIVE = []
2650
2767
  include Aws::Structure
2651
2768
  end
2652
2769
 
@@ -2673,6 +2790,7 @@ module Aws::ECR
2673
2790
  :repository_name,
2674
2791
  :upload_id,
2675
2792
  :last_byte_received)
2793
+ SENSITIVE = []
2676
2794
  include Aws::Structure
2677
2795
  end
2678
2796
 
@@ -2687,6 +2805,7 @@ module Aws::ECR
2687
2805
  #
2688
2806
  class UploadNotFoundException < Struct.new(
2689
2807
  :message)
2808
+ SENSITIVE = []
2690
2809
  include Aws::Structure
2691
2810
  end
2692
2811
 
@@ -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-ecr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.0
4
+ version: 1.32.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-04-28 00:00:00.000000000 Z
11
+ date: 2020-06-23 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