import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource for managing a Harness Chaos Image Registry * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = new harness.chaos.ImageRegistry("example", { * orgId: "", * projectId: "", * registryServer: "", * registryAccount: "", * isPrivate: true, * secretName: "", * isDefault: false, * isOverrideAllowed: true, * useCustomImages: true, * customImages: [{ * logWatcher: "", * ddcr: "", * ddcrLib: "", * ddcrFault: "", * }], * }); * ``` */ export declare class ImageRegistry extends pulumi.CustomResource { /** * Get an existing ImageRegistry 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?: ImageRegistryState, opts?: pulumi.CustomResourceOptions): ImageRegistry; /** * Returns true if the given object is an instance of ImageRegistry. 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 ImageRegistry; /** * Creation timestamp */ readonly createdAt: pulumi.Output; /** * Custom images configuration */ readonly customImages: pulumi.Output; /** * The infrastructure ID to set up the image registry */ readonly infraId: pulumi.Output; /** * Whether this is the default registry */ readonly isDefault: pulumi.Output; /** * Whether override is allowed for this registry */ readonly isOverrideAllowed: pulumi.Output; /** * Whether the registry is private */ readonly isPrivate: pulumi.Output; /** * The organization ID of the image registry */ readonly orgId: pulumi.Output; /** * The project ID of the image registry */ readonly projectId: pulumi.Output; /** * The registry account name */ readonly registryAccount: pulumi.Output; /** * The registry server URL */ readonly registryServer: pulumi.Output; /** * The name of the secret for authentication */ readonly secretName: pulumi.Output; /** * Last update timestamp */ readonly updatedAt: pulumi.Output; /** * Whether to use custom images */ readonly useCustomImages: pulumi.Output; /** * Create a ImageRegistry 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: ImageRegistryArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ImageRegistry resources. */ export interface ImageRegistryState { /** * Creation timestamp */ createdAt?: pulumi.Input; /** * Custom images configuration */ customImages?: pulumi.Input[] | undefined>; /** * The infrastructure ID to set up the image registry */ infraId?: pulumi.Input; /** * Whether this is the default registry */ isDefault?: pulumi.Input; /** * Whether override is allowed for this registry */ isOverrideAllowed?: pulumi.Input; /** * Whether the registry is private */ isPrivate?: pulumi.Input; /** * The organization ID of the image registry */ orgId?: pulumi.Input; /** * The project ID of the image registry */ projectId?: pulumi.Input; /** * The registry account name */ registryAccount?: pulumi.Input; /** * The registry server URL */ registryServer?: pulumi.Input; /** * The name of the secret for authentication */ secretName?: pulumi.Input; /** * Last update timestamp */ updatedAt?: pulumi.Input; /** * Whether to use custom images */ useCustomImages?: pulumi.Input; } /** * The set of arguments for constructing a ImageRegistry resource. */ export interface ImageRegistryArgs { /** * Custom images configuration */ customImages?: pulumi.Input[] | undefined>; /** * The infrastructure ID to set up the image registry */ infraId?: pulumi.Input; /** * Whether this is the default registry */ isDefault?: pulumi.Input; /** * Whether override is allowed for this registry */ isOverrideAllowed?: pulumi.Input; /** * Whether the registry is private */ isPrivate: pulumi.Input; /** * The organization ID of the image registry */ orgId?: pulumi.Input; /** * The project ID of the image registry */ projectId?: pulumi.Input; /** * The registry account name */ registryAccount: pulumi.Input; /** * The registry server URL */ registryServer: pulumi.Input; /** * The name of the secret for authentication */ secretName?: pulumi.Input; /** * Whether to use custom images */ useCustomImages?: pulumi.Input; } //# sourceMappingURL=imageRegistry.d.ts.map