paws.compute (version 0.1.0)

ecr_batch_get_image: Gets detailed information for specified images within a specified repository

Description

Gets detailed information for specified images within a specified repository. Images are specified with either imageTag or imageDigest.

Usage

ecr_batch_get_image(registryId, repositoryName, imageIds,
  acceptedMediaTypes)

Arguments

registryId

The AWS account ID associated with the registry that contains the images to describe. If you do not specify a registry, the default registry is assumed.

repositoryName

[required] The repository that contains the images to describe.

imageIds

[required] A list of image ID references that correspond to images to describe. The format of the imageIds reference is imageTag=tag or imageDigest=digest.

acceptedMediaTypes

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

Request syntax

svc$batch_get_image(
  registryId = "string",
  repositoryName = "string",
  imageIds = list(
    list(
      imageDigest = "string",
      imageTag = "string"
    )
  ),
  acceptedMediaTypes = list(
    "string"
  )
)

Examples

Run this code
# NOT RUN {
# This example obtains information for an image with a specified image
# digest ID from the repository named ubuntu in the current account.
# }
# NOT RUN {
svc$batch_get_image(
  imageIds = list(
    list(
      imageTag = "precise"
    )
  ),
  repositoryName = "ubuntu"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab