Class: Aws::ECR::Types::BatchGetImageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::BatchGetImageRequest
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accepted_media_types ⇒ Array<String>
The accepted media types for the request.
-
#image_ids ⇒ Array<Types::ImageIdentifier>
A list of image ID references that correspond to images to describe.
-
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the images to describe.
-
#repository_name ⇒ String
The repository that contains the images to describe.
Instance Attribute Details
#accepted_media_types ⇒ Array<String>
The accepted media types for the request.
Valid values: application/vnd.docker.distribution.manifest.v1+json
| application/vnd.docker.distribution.manifest.v2+json
|
application/vnd.oci.image.manifest.v1+json
228 229 230 231 232 233 234 235 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 228 class BatchGetImageRequest < Struct.new( :registry_id, :repository_name, :image_ids, :accepted_media_types) SENSITIVE = [] include Aws::Structure end |
#image_ids ⇒ Array<Types::ImageIdentifier>
A list of image ID references that correspond to images to describe.
The format of the imageIds
reference is imageTag=tag
or
imageDigest=digest
.
228 229 230 231 232 233 234 235 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 228 class BatchGetImageRequest < Struct.new( :registry_id, :repository_name, :image_ids, :accepted_media_types) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the images to describe. If you do not specify a registry, the default registry is assumed.
228 229 230 231 232 233 234 235 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 228 class BatchGetImageRequest < Struct.new( :registry_id, :repository_name, :image_ids, :accepted_media_types) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The repository that contains the images to describe.
228 229 230 231 232 233 234 235 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 228 class BatchGetImageRequest < Struct.new( :registry_id, :repository_name, :image_ids, :accepted_media_types) SENSITIVE = [] include Aws::Structure end |