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

DescribePackageRequest

import type { DescribePackageRequest } from "https://aws-api.deno.dev/v0.4/services/codeartifact.ts?docs=full";
interface DescribePackageRequest {
domain: string;
domainOwner?: string | null;
format: PackageFormat;
namespace?: string | null;
package: string;
repository: string;
}

§Properties

§
domain: string
[src]

The name of the domain that contains the repository that contains the package.

§
domainOwner?: string | null
[src]

The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.

§

A format that specifies the type of the requested package.

§
namespace?: string | null
[src]

The namespace of the requested package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId. The namespace is required when requesting Maven packages.
  • The namespace of an npm package is its scope.
  • Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace.
§
package: string
[src]

The name of the requested package.

§
repository: string
[src]

The name of the repository that contains the requested package.