aws-sdk-ecr 1.35.0 → 1.36.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ecr.rb +1 -1
- data/lib/aws-sdk-ecr/client.rb +3 -1
- data/lib/aws-sdk-ecr/client_api.rb +2 -0
- data/lib/aws-sdk-ecr/types.rb +12 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7fd191b6a5d7a6207c135a374a87d2307fb803f6784a19bd13d4e2776537fd6f
|
4
|
+
data.tar.gz: 13371dc0a257382226b75ab6953b30bf6833ad21e2bc98160867c840fb14b3a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90cc767aeae5810ca57b8baf0fc29f5604c3b7cf261d4837baf0cf92f965372898c3160311d94a38bce91fb0b33edb01eff6fd42720bab6d982a4ffc658ec95f
|
7
|
+
data.tar.gz: 3395c466b92f86822f5308fbf248d9581b8b28b6f0b72abe7c2c16c1b71ff6fda7e42007fab94bc9920ee307132f0e37cf1c2a2e549365f2108786f47d6a5488
|
data/lib/aws-sdk-ecr.rb
CHANGED
data/lib/aws-sdk-ecr/client.rb
CHANGED
@@ -1071,6 +1071,8 @@ module Aws::ECR
|
|
1071
1071
|
# resp.image_details[0].image_scan_findings_summary.vulnerability_source_updated_at #=> Time
|
1072
1072
|
# resp.image_details[0].image_scan_findings_summary.finding_severity_counts #=> Hash
|
1073
1073
|
# resp.image_details[0].image_scan_findings_summary.finding_severity_counts["FindingSeverity"] #=> Integer
|
1074
|
+
# resp.image_details[0].image_manifest_media_type #=> String
|
1075
|
+
# resp.image_details[0].artifact_media_type #=> String
|
1074
1076
|
# resp.next_token #=> String
|
1075
1077
|
#
|
1076
1078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/DescribeImages AWS API Documentation
|
@@ -2202,7 +2204,7 @@ module Aws::ECR
|
|
2202
2204
|
params: params,
|
2203
2205
|
config: config)
|
2204
2206
|
context[:gem_name] = 'aws-sdk-ecr'
|
2205
|
-
context[:gem_version] = '1.
|
2207
|
+
context[:gem_version] = '1.36.0'
|
2206
2208
|
Seahorse::Client::Request.new(handlers, context)
|
2207
2209
|
end
|
2208
2210
|
|
@@ -410,6 +410,8 @@ module Aws::ECR
|
|
410
410
|
ImageDetail.add_member(:image_pushed_at, Shapes::ShapeRef.new(shape: PushTimestamp, location_name: "imagePushedAt"))
|
411
411
|
ImageDetail.add_member(:image_scan_status, Shapes::ShapeRef.new(shape: ImageScanStatus, location_name: "imageScanStatus"))
|
412
412
|
ImageDetail.add_member(:image_scan_findings_summary, Shapes::ShapeRef.new(shape: ImageScanFindingsSummary, location_name: "imageScanFindingsSummary"))
|
413
|
+
ImageDetail.add_member(:image_manifest_media_type, Shapes::ShapeRef.new(shape: MediaType, location_name: "imageManifestMediaType"))
|
414
|
+
ImageDetail.add_member(:artifact_media_type, Shapes::ShapeRef.new(shape: MediaType, location_name: "artifactMediaType"))
|
413
415
|
ImageDetail.struct_class = Types::ImageDetail
|
414
416
|
|
415
417
|
ImageDetailList.member = Shapes::ShapeRef.new(shape: ImageDetail)
|
data/lib/aws-sdk-ecr/types.rb
CHANGED
@@ -1249,7 +1249,7 @@ module Aws::ECR
|
|
1249
1249
|
# @return [String]
|
1250
1250
|
#
|
1251
1251
|
# @!attribute [rw] image_manifest_media_type
|
1252
|
-
# The media type
|
1252
|
+
# The manifest media type of the image.
|
1253
1253
|
# @return [String]
|
1254
1254
|
#
|
1255
1255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/Image AWS API Documentation
|
@@ -1327,6 +1327,14 @@ module Aws::ECR
|
|
1327
1327
|
# A summary of the last completed image scan.
|
1328
1328
|
# @return [Types::ImageScanFindingsSummary]
|
1329
1329
|
#
|
1330
|
+
# @!attribute [rw] image_manifest_media_type
|
1331
|
+
# The media type of the image manifest.
|
1332
|
+
# @return [String]
|
1333
|
+
#
|
1334
|
+
# @!attribute [rw] artifact_media_type
|
1335
|
+
# The artifact media type of the image.
|
1336
|
+
# @return [String]
|
1337
|
+
#
|
1330
1338
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/ImageDetail AWS API Documentation
|
1331
1339
|
#
|
1332
1340
|
class ImageDetail < Struct.new(
|
@@ -1337,7 +1345,9 @@ module Aws::ECR
|
|
1337
1345
|
:image_size_in_bytes,
|
1338
1346
|
:image_pushed_at,
|
1339
1347
|
:image_scan_status,
|
1340
|
-
:image_scan_findings_summary
|
1348
|
+
:image_scan_findings_summary,
|
1349
|
+
:image_manifest_media_type,
|
1350
|
+
:artifact_media_type)
|
1341
1351
|
SENSITIVE = []
|
1342
1352
|
include Aws::Structure
|
1343
1353
|
end
|
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.
|
4
|
+
version: 1.36.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-
|
11
|
+
date: 2020-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|