import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Webhook extends pulumi.CustomResource { /** * Get an existing Webhook 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?: WebhookState, opts?: pulumi.CustomResourceOptions): Webhook; /** * Returns true if the given object is an instance of Webhook. 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 Webhook; /** * The creation date of the webhook */ readonly createdAt: pulumi.Output; /** * The creator of the webhook */ readonly createdBy: pulumi.Output; /** * The description of the webhook */ readonly description: pulumi.Output; /** * Whether the webhook is enabled */ readonly enabled: pulumi.Output; /** * The icon of the webhook */ readonly icon: pulumi.Output; /** * The identifier of the webhook */ readonly identifier: pulumi.Output; /** * The mappings of the webhook */ readonly mappings: pulumi.Output; /** * The security of the webhook */ readonly security: pulumi.Output; /** * The title of the webhook */ readonly title: pulumi.Output; /** * The last update date of the webhook */ readonly updatedAt: pulumi.Output; /** * The last updater of the webhook */ readonly updatedBy: pulumi.Output; /** * The url of the webhook */ readonly url: pulumi.Output; /** * The webhook key of the webhook */ readonly webhookKey: pulumi.Output; /** * Create a Webhook 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?: WebhookArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Webhook resources. */ export interface WebhookState { /** * The creation date of the webhook */ createdAt?: pulumi.Input; /** * The creator of the webhook */ createdBy?: pulumi.Input; /** * The description of the webhook */ description?: pulumi.Input; /** * Whether the webhook is enabled */ enabled?: pulumi.Input; /** * The icon of the webhook */ icon?: pulumi.Input; /** * The identifier of the webhook */ identifier?: pulumi.Input; /** * The mappings of the webhook */ mappings?: pulumi.Input[]>; /** * The security of the webhook */ security?: pulumi.Input; /** * The title of the webhook */ title?: pulumi.Input; /** * The last update date of the webhook */ updatedAt?: pulumi.Input; /** * The last updater of the webhook */ updatedBy?: pulumi.Input; /** * The url of the webhook */ url?: pulumi.Input; /** * The webhook key of the webhook */ webhookKey?: pulumi.Input; } /** * The set of arguments for constructing a Webhook resource. */ export interface WebhookArgs { /** * The description of the webhook */ description?: pulumi.Input; /** * Whether the webhook is enabled */ enabled?: pulumi.Input; /** * The icon of the webhook */ icon?: pulumi.Input; /** * The identifier of the webhook */ identifier?: pulumi.Input; /** * The mappings of the webhook */ mappings?: pulumi.Input[]>; /** * The security of the webhook */ security?: pulumi.Input; /** * The title of the webhook */ title?: pulumi.Input; }