Class: Aws::ECR::Types::PutImageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::PutImageRequest
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
When making an API call, you may pass PutImageRequest data as a hash:
{
registry_id: "RegistryId",
repository_name: "RepositoryName", # required
image_manifest: "ImageManifest", # required
image_manifest_media_type: "MediaType",
image_tag: "ImageTag",
image_digest: "ImageDigest",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_digest ⇒ String
The image digest of the image manifest corresponding to the image.
-
#image_manifest ⇒ String
The image manifest corresponding to the image to be uploaded.
-
#image_manifest_media_type ⇒ String
The media type of the image manifest.
-
#image_tag ⇒ String
The tag to associate with the image.
-
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the repository in which to put the image.
-
#repository_name ⇒ String
The name of the repository in which to put the image.
Instance Attribute Details
#image_digest ⇒ String
The image digest of the image manifest corresponding to the image.
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2964 class PutImageRequest < Struct.new( :registry_id, :repository_name, :image_manifest, :image_manifest_media_type, :image_tag, :image_digest) SENSITIVE = [] include Aws::Structure end |
#image_manifest ⇒ String
The image manifest corresponding to the image to be uploaded.
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2964 class PutImageRequest < Struct.new( :registry_id, :repository_name, :image_manifest, :image_manifest_media_type, :image_tag, :image_digest) SENSITIVE = [] include Aws::Structure end |
#image_manifest_media_type ⇒ String
The media type of the image manifest. If you push an image manifest
that does not contain the mediaType
field, you must specify the
imageManifestMediaType
in the request.
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2964 class PutImageRequest < Struct.new( :registry_id, :repository_name, :image_manifest, :image_manifest_media_type, :image_tag, :image_digest) SENSITIVE = [] include Aws::Structure end |
#image_tag ⇒ String
The tag to associate with the image. This parameter is required for images that use the Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2964 class PutImageRequest < Struct.new( :registry_id, :repository_name, :image_manifest, :image_manifest_media_type, :image_tag, :image_digest) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the repository in which to put the image. If you do not specify a registry, the default registry is assumed.
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2964 class PutImageRequest < Struct.new( :registry_id, :repository_name, :image_manifest, :image_manifest_media_type, :image_tag, :image_digest) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository in which to put the image.
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2964 class PutImageRequest < Struct.new( :registry_id, :repository_name, :image_manifest, :image_manifest_media_type, :image_tag, :image_digest) SENSITIVE = [] include Aws::Structure end |