import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource for managing service discovery settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * // Update image registry settings for service discovery * const example = new harness.service.DiscoverySetting("example", { * orgIdentifier: "sechaosworkshop", * projectIdentifier: "se1", * imageRegistry: { * account: "", * server: "", * secrets: [""], * }, * }); * ``` */ export declare class DiscoverySetting extends pulumi.CustomResource { /** * Get an existing DiscoverySetting 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?: DiscoverySettingState, opts?: pulumi.CustomResourceOptions): DiscoverySetting; /** * Returns true if the given object is an instance of DiscoverySetting. 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 DiscoverySetting; /** * Correlation ID for the request. */ readonly correlationId: pulumi.Output; /** * Timestamp when the setting was created. */ readonly createdAt: pulumi.Output; /** * Image registry configuration. */ readonly imageRegistry: pulumi.Output; /** * The organization identifier. */ readonly orgIdentifier: pulumi.Output; /** * The project identifier. */ readonly projectIdentifier: pulumi.Output; /** * Timestamp when the setting was last updated. */ readonly updatedAt: pulumi.Output; /** * Create a DiscoverySetting 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?: DiscoverySettingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DiscoverySetting resources. */ export interface DiscoverySettingState { /** * Correlation ID for the request. */ correlationId?: pulumi.Input; /** * Timestamp when the setting was created. */ createdAt?: pulumi.Input; /** * Image registry configuration. */ imageRegistry?: pulumi.Input; /** * The organization identifier. */ orgIdentifier?: pulumi.Input; /** * The project identifier. */ projectIdentifier?: pulumi.Input; /** * Timestamp when the setting was last updated. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a DiscoverySetting resource. */ export interface DiscoverySettingArgs { /** * Correlation ID for the request. */ correlationId?: pulumi.Input; /** * Image registry configuration. */ imageRegistry?: pulumi.Input; /** * The organization identifier. */ orgIdentifier?: pulumi.Input; /** * The project identifier. */ projectIdentifier?: pulumi.Input; } //# sourceMappingURL=discoverySetting.d.ts.map