/**
 * Copyright (c) Spectro Cloud
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * Generated by orval v7.10.0 🍺
 * Do not edit manually.
 * Palette APIs - 4.7
 * 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