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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b1a6d2d514c23e566ea671e6a13e63cfb75a410e6e0f48be3f731538fe6a901
4
- data.tar.gz: 0fb93618f10c5680713f990102c88f9370daeaeb976f936a0b929c2b1e221d56
3
+ metadata.gz: 7fd191b6a5d7a6207c135a374a87d2307fb803f6784a19bd13d4e2776537fd6f
4
+ data.tar.gz: 13371dc0a257382226b75ab6953b30bf6833ad21e2bc98160867c840fb14b3a4
5
5
  SHA512:
6
- metadata.gz: 0dbc4e6f7862316dd57b011a87ddf8c6aff977192cf4de1d18e0f8be00091866a49a20c16fe23609ffc9e94e7dc9470a5ec646241ef004bac13131cb47d49252
7
- data.tar.gz: 4dac2b35c18ecc5460b2e97333483096e6be64320befd3d3a6e9bf1bf30a0bcc05a7c8e32cfdfb267bc376c98a9b2dd08643313753291c73e884062912fb23f2
6
+ metadata.gz: 90cc767aeae5810ca57b8baf0fc29f5604c3b7cf261d4837baf0cf92f965372898c3160311d94a38bce91fb0b33edb01eff6fd42720bab6d982a4ffc658ec95f
7
+ data.tar.gz: 3395c466b92f86822f5308fbf248d9581b8b28b6f0b72abe7c2c16c1b71ff6fda7e42007fab94bc9920ee307132f0e37cf1c2a2e549365f2108786f47d6a5488
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-ecr/customizations'
48
48
  # @service
49
49
  module Aws::ECR
50
50
 
51
- GEM_VERSION = '1.35.0'
51
+ GEM_VERSION = '1.36.0'
52
52
 
53
53
  end
@@ -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.35.0'
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)
@@ -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 associated with the image manifest.
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.35.0
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-07-29 00:00:00.000000000 Z
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