Skip to main content
GET
/
ocirepositories
/
{repository}
/
{
  "$schema": "https://example.com/schemas/OCIRepository.json",
  "created_by": "<string>",
  "created_on": "2023-11-07T05:31:56Z",
  "last_modified_by": "<string>",
  "last_modified_on": "2023-11-07T05:31:56Z",
  "last_scanned_on": "2023-11-07T05:31:56Z",
  "namespace": "s3-controller",
  "packages": [
    "<string>"
  ],
  "project_components": [
    "<string>"
  ],
  "projects": [
    "<string>"
  ],
  "registry": "public.ecr.aws/aws-controllers-k8s"
}

Response

OK

created_by
string
required

user who created the record.

created_on
string<date-time>
required

timestamp of when the record was created.

last_modified_by
string
required

user who last modified the record.

last_modified_on
string<date-time>
required

timestamp of when the record was last modified.

last_scanned_on
string<date-time>
required

Time when OCI Repository was last scanned.

namespace
string
required

Namespace is the namespace of the OCIRepository within the OCI Registry.

Examples:

"s3-controller"

packages
string[] | null
required

Packages is the list of Package IDs that this OCI Repository is associated with.

project_components
string[] | null
required

ProjectComponents is the list of ProjectComponent IDs that this OCI Repository is associated with.

projects
string[] | null
required

Projects is the list of Project IDs that this OCI Repository is associated with.

registry
string
required

Registry is the URL-like identifier for the OCI Registry to which this OCI Repository belongs.

Examples:

"public.ecr.aws/aws-controllers-k8s"

$schema
string<uri>

A URL to the JSON Schema for this object.

Examples:

"https://example.com/schemas/OCIRepository.json"

I