import * as pulumi from "@pulumi/pulumi"; /** * Data source for retrieving a Harness GitX Webhook. */ export declare function getGitxWebhook(args: GetGitxWebhookArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGitxWebhook. */ export interface GetGitxWebhookArgs { /** * Description of the resource. */ description?: string; /** * Unique identifier of the resource. */ identifier: string; /** * Name of the resource. */ name: string; /** * Unique identifier of the organization. */ orgId?: string; /** * Unique identifier of the project. */ projectId?: string; /** * Tags to associate with the resource. */ tags?: string[]; } /** * A collection of values returned by getGitxWebhook. */ export interface GetGitxWebhookResult { /** * Description of the resource. */ readonly description?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier: string; /** * Name of the resource. */ readonly name: string; /** * Unique identifier of the organization. */ readonly orgId?: string; /** * Unique identifier of the project. */ readonly projectId?: string; /** * Tags to associate with the resource. */ readonly tags?: string[]; } /** * Data source for retrieving a Harness GitX Webhook. */ export declare function getGitxWebhookOutput(args: GetGitxWebhookOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGitxWebhook. */ export interface GetGitxWebhookOutputArgs { /** * Description of the resource. */ description?: pulumi.Input; /** * Unique identifier of the resource. */ identifier: pulumi.Input; /** * Name of the resource. */ name: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; /** * Tags to associate with the resource. */ tags?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getGitxWebhook.d.ts.map