Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RepositoryCatalogDataInput

import type { RepositoryCatalogDataInput } from "https://aws-api.deno.dev/v0.4/services/ecrpublic.ts?docs=full";

An object that contains the catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.

interface RepositoryCatalogDataInput {
aboutText?: string | null;
architectures?: string[] | null;
description?: string | null;
logoImageBlob?: Uint8Array | string | null;
operatingSystems?: string[] | null;
usageText?: string | null;
}

§Properties

§
aboutText?: string | null
[src]

A detailed description of the contents of the repository. It's publicly visible in the Amazon ECR Public Gallery. The text must be in markdown format.

§
architectures?: string[] | null
[src]

The system architecture that the images in the repository are compatible with. On the Amazon ECR Public Gallery, the following supported architectures appear as badges on the repository and are used as search filters.

Note: If an unsupported tag is added to your repository catalog data, it's associated with the repository and can be retrieved using the API but isn't discoverable in the Amazon ECR Public Gallery.

  • ARM
    
  • ARM 64
    
  • x86
    
  • x86-64
    
§
description?: string | null
[src]

A short description of the contents of the repository. This text appears in both the image details and also when searching for repositories on the Amazon ECR Public Gallery.

§
logoImageBlob?: Uint8Array | string | null
[src]

The base64-encoded repository logo payload.

Note: The repository logo is only publicly visible in the Amazon ECR Public Gallery for verified accounts.

§
operatingSystems?: string[] | null
[src]

The operating systems that the images in the repository are compatible with. On the Amazon ECR Public Gallery, the following supported operating systems appear as badges on the repository and are used as search filters.

Note: If an unsupported tag is added to your repository catalog data, it's associated with the repository and can be retrieved using the API but isn't discoverable in the Amazon ECR Public Gallery.

  • Linux
    
  • Windows
    
§
usageText?: string | null
[src]

Detailed information about how to use the contents of the repository. It's publicly visible in the Amazon ECR Public Gallery. The usage text provides context, support information, and additional usage details for users of the repository. The text must be in markdown format.