import * as pulumi from "@pulumi/pulumi"; /** * Provides a Nutanix Karbon Registry resource to Create a private registry entry in Karbon. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const registries = nutanix.getKarbonPrivateRegistry({}); * const registry = new nutanix.KarbonPrivateRegistry("registry", {}); * ``` * */ export declare class KarbonPrivateRegistry extends pulumi.CustomResource { /** * Get an existing KarbonPrivateRegistry resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: KarbonPrivateRegistryState, opts?: pulumi.CustomResourceOptions): KarbonPrivateRegistry; /** * Returns true if the given object is an instance of KarbonPrivateRegistry. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is KarbonPrivateRegistry; /** * - (Optional) Certificate of the private registry in format of base64-encoded byte array. **Note:** Updates to this attribute forces new resource creation. */ readonly cert: pulumi.Output; /** * - Endpoint of the private in format `url:port`. */ readonly endpoint: pulumi.Output; /** * - (Required) Name of the private registry configuration. **Note:** Updates to this attribute forces new resource creation. */ readonly name: pulumi.Output; /** * - (Optional) Password for authentication to the private registry. **Note:** Updates to this attribute forces new resource creation. */ readonly password: pulumi.Output; /** * - (Optional) Port of the private registry. */ readonly port: pulumi.Output; /** * - (Optional) URL of the private registry. **Note:** Updates to this attribute forces new resource creation. */ readonly url: pulumi.Output; /** * - (Optional) Username for authentication to the private registry. **Note:** Updates to this attribute forces new resource creation. */ readonly username: pulumi.Output; /** * Create a KarbonPrivateRegistry resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: KarbonPrivateRegistryArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KarbonPrivateRegistry resources. */ export interface KarbonPrivateRegistryState { /** * - (Optional) Certificate of the private registry in format of base64-encoded byte array. **Note:** Updates to this attribute forces new resource creation. */ cert?: pulumi.Input; /** * - Endpoint of the private in format `url:port`. */ endpoint?: pulumi.Input; /** * - (Required) Name of the private registry configuration. **Note:** Updates to this attribute forces new resource creation. */ name?: pulumi.Input; /** * - (Optional) Password for authentication to the private registry. **Note:** Updates to this attribute forces new resource creation. */ password?: pulumi.Input; /** * - (Optional) Port of the private registry. */ port?: pulumi.Input; /** * - (Optional) URL of the private registry. **Note:** Updates to this attribute forces new resource creation. */ url?: pulumi.Input; /** * - (Optional) Username for authentication to the private registry. **Note:** Updates to this attribute forces new resource creation. */ username?: pulumi.Input; } /** * The set of arguments for constructing a KarbonPrivateRegistry resource. */ export interface KarbonPrivateRegistryArgs { /** * - (Optional) Certificate of the private registry in format of base64-encoded byte array. **Note:** Updates to this attribute forces new resource creation. */ cert?: pulumi.Input; /** * - (Required) Name of the private registry configuration. **Note:** Updates to this attribute forces new resource creation. */ name?: pulumi.Input; /** * - (Optional) Password for authentication to the private registry. **Note:** Updates to this attribute forces new resource creation. */ password?: pulumi.Input; /** * - (Optional) Port of the private registry. */ port?: pulumi.Input; /** * - (Optional) URL of the private registry. **Note:** Updates to this attribute forces new resource creation. */ url: pulumi.Input; /** * - (Optional) Username for authentication to the private registry. **Note:** Updates to this attribute forces new resource creation. */ username?: pulumi.Input; } //# sourceMappingURL=karbonPrivateRegistry.d.ts.map