import * as pulumi from "@pulumi/pulumi"; /** * Describes Karbon private registry entry * * ## Example Usage * * * */ export declare function getKarbonPrivateRegistry(args?: GetKarbonPrivateRegistryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getKarbonPrivateRegistry. */ export interface GetKarbonPrivateRegistryArgs { /** * Represents karbon private registry uuid */ privateRegistryId?: string; /** * Represents the name of karbon private registry */ privateRegistryName?: string; } /** * A collection of values returned by getKarbonPrivateRegistry. */ export interface GetKarbonPrivateRegistryResult { /** * - Endpoint of the private in format `url:port`. */ readonly endpoint: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * - Name of the private registry. */ readonly name: string; readonly privateRegistryId?: string; readonly privateRegistryName?: string; /** * - UUID of the private registry. */ readonly uuid: string; } /** * Describes Karbon private registry entry * * ## Example Usage * * * */ export declare function getKarbonPrivateRegistryOutput(args?: GetKarbonPrivateRegistryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getKarbonPrivateRegistry. */ export interface GetKarbonPrivateRegistryOutputArgs { /** * Represents karbon private registry uuid */ privateRegistryId?: pulumi.Input; /** * Represents the name of karbon private registry */ privateRegistryName?: pulumi.Input; } //# sourceMappingURL=getKarbonPrivateRegistry.d.ts.map