import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data source for retrieving service discovery settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * // Data source to fetch service discovery setting by name * const example = harness.service.getDiscoverySetting({ * orgIdentifier: "", * projectIdentifier: "", * }); * ``` */ export declare function getDiscoverySetting(args?: GetDiscoverySettingArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDiscoverySetting. */ export interface GetDiscoverySettingArgs { /** * Correlation ID for the request. */ correlationId?: string; /** * The organization identifier. */ orgIdentifier?: string; /** * The project identifier. */ projectIdentifier?: string; } /** * A collection of values returned by getDiscoverySetting. */ export interface GetDiscoverySettingResult { /** * Correlation ID for the request. */ readonly correlationId?: string; /** * Timestamp when the setting was created. */ readonly createdAt: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Image registry configuration. */ readonly imageRegistries: outputs.service.GetDiscoverySettingImageRegistry[]; /** * The organization identifier. */ readonly orgIdentifier?: string; /** * The project identifier. */ readonly projectIdentifier?: string; /** * Timestamp when the setting was last updated. */ readonly updatedAt: string; } /** * Data source for retrieving service discovery settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * // Data source to fetch service discovery setting by name * const example = harness.service.getDiscoverySetting({ * orgIdentifier: "", * projectIdentifier: "", * }); * ``` */ export declare function getDiscoverySettingOutput(args?: GetDiscoverySettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDiscoverySetting. */ export interface GetDiscoverySettingOutputArgs { /** * Correlation ID for the request. */ correlationId?: pulumi.Input; /** * The organization identifier. */ orgIdentifier?: pulumi.Input; /** * The project identifier. */ projectIdentifier?: pulumi.Input; } //# sourceMappingURL=getDiscoverySetting.d.ts.map