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

RemoteRepositoryConfig

import type { RemoteRepositoryConfig } from "https://googleapis.deno.dev/v1/artifactregistry:v1.ts";

Remote repository configuration.

interface RemoteRepositoryConfig {
aptRepository?: AptRepository;
description?: string;
disableUpstreamValidation?: boolean;
dockerRepository?: DockerRepository;
mavenRepository?: MavenRepository;
npmRepository?: NpmRepository;
pythonRepository?: PythonRepository;
upstreamCredentials?: UpstreamCredentials;
yumRepository?: YumRepository;
}

§Properties

§
aptRepository?: AptRepository
[src]

Specific settings for an Apt remote repository.

§
description?: string
[src]

The description of the remote source.

§
disableUpstreamValidation?: boolean
[src]

Input only. A create/update remote repo option to avoid making a HEAD/GET request to validate a remote repo and any supplied upstream credentials.

§
dockerRepository?: DockerRepository
[src]

Specific settings for a Docker remote repository.

§
mavenRepository?: MavenRepository
[src]

Specific settings for a Maven remote repository.

§
npmRepository?: NpmRepository
[src]

Specific settings for an Npm remote repository.

§
pythonRepository?: PythonRepository
[src]

Specific settings for a Python remote repository.

§
upstreamCredentials?: UpstreamCredentials
[src]

Optional. The credentials used to access the remote repository.

§
yumRepository?: YumRepository
[src]

Specific settings for a Yum remote repository.