import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Container Configuration resource in Oracle Cloud Infrastructure Artifacts service. * * Get container configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testContainerConfiguration = oci.artifacts.getContainerConfiguration({ * compartmentId: compartmentId, * }); * ``` */ export declare function getContainerConfiguration(args: GetContainerConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getContainerConfiguration. */ export interface GetContainerConfigurationArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; } /** * A collection of values returned by getContainerConfiguration. */ export interface GetContainerConfigurationResult { readonly compartmentId: string; readonly id: string; /** * Whether to create a new container repository when a container is pushed to a new repository path. Repositories created in this way belong to the root compartment. */ readonly isRepositoryCreatedOnFirstPush: boolean; /** * The tenancy namespace used in the container repository path. */ readonly namespace: string; } /** * This data source provides details about a specific Container Configuration resource in Oracle Cloud Infrastructure Artifacts service. * * Get container configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testContainerConfiguration = oci.artifacts.getContainerConfiguration({ * compartmentId: compartmentId, * }); * ``` */ export declare function getContainerConfigurationOutput(args: GetContainerConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getContainerConfiguration. */ export interface GetContainerConfigurationOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; } //# sourceMappingURL=getContainerConfiguration.d.ts.map