@digitalocean/dots - v1.0.1
    Preparing search index...

    Builds and executes requests for operations under /v2/registries/{registry_name}/repositories/{repository_name}/digests

    interface DigestsRequestBuilder {
        byManifest_digest(
            manifest_digest: string,
        ): WithManifest_digestItemRequestBuilder;
        get(
            requestConfiguration?: RequestConfiguration<
                DigestsRequestBuilderGetQueryParameters,
            >,
        ): Promise<undefined | DigestsGetResponse>;
        toGetRequestInformation(
            requestConfiguration?: RequestConfiguration<
                DigestsRequestBuilderGetQueryParameters,
            >,
        ): RequestInformation;
        withUrl(rawUrl: string): DigestsRequestBuilder;
    }

    Hierarchy

    Index

    Methods

    • To list all manifests in your container registry repository, send a GETrequest to /v2/registries/$REGISTRY_NAME/repositories/$REPOSITORY_NAME/digests.Note that if your repository name contains / characters, it must beURL-encoded in the request URL. For example, to list manifests forregistry.digitalocean.com/example/my/repo, the path would be/v2/registry/example/repositories/my%2Frepo/digests.It is similar to /v2/registry/$REGISTRY_NAME/repositories/$REPOSITORY_NAME/digests and exists for backward compatibility.

      Parameters

      Returns Promise<undefined | DigestsGetResponse>

      error when the service returns a 401 status code

      error when the service returns a 404 status code

      error when the service returns a 429 status code

      error when the service returns a 500 status code

      error when the service returns a 4XX or 5XX status code

    • To list all manifests in your container registry repository, send a GETrequest to /v2/registries/$REGISTRY_NAME/repositories/$REPOSITORY_NAME/digests.Note that if your repository name contains / characters, it must beURL-encoded in the request URL. For example, to list manifests forregistry.digitalocean.com/example/my/repo, the path would be/v2/registry/example/repositories/my%2Frepo/digests.It is similar to /v2/registry/$REGISTRY_NAME/repositories/$REPOSITORY_NAME/digests and exists for backward compatibility.

      Parameters

      Returns RequestInformation

    • Parameters

      • rawUrl: string

      Returns DigestsRequestBuilder