UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

32 lines 910 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * OpenAPI spec version: v1 */ import type { AwsCloudAccount } from './awsCloudAccount'; import type { EcrRegistrySpecProviderType } from './ecrRegistrySpecProviderType'; import type { TlsConfiguration } from './tlsConfiguration'; /** * Ecr registry spec */ export type EcrRegistrySpec = { /** OCI ecr registry content base path */ baseContentPath?: string; containsSpectroManifest?: boolean; credentials?: AwsCloudAccount; defaultRegion?: string; endpoint: string; isPrivate: boolean; isSyncSupported?: boolean; providerType?: EcrRegistrySpecProviderType; /** Ecr registry uid */ registryUid?: string; scope?: string; tls?: TlsConfiguration; }; //# sourceMappingURL=ecrRegistrySpec.d.ts.map