UNPKG

@pulumi/tailscale

Version:

A Pulumi package for creating and managing Tailscale cloud resources.

92 lines 3.58 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.Webhook = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * The webhook resource allows you to configure webhook endpoints for your Tailscale network. See https://tailscale.com/kb/1213/webhooks for more information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as tailscale from "@pulumi/tailscale"; * * const sampleWebhook = new tailscale.Webhook("sample_webhook", { * endpointUrl: "https://example.com/webhook/endpoint", * providerType: "slack", * subscriptions: [ * "nodeCreated", * "userDeleted", * ], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Webhooks can be imported using the endpoint id, e.g., * * ```sh * $ pulumi import tailscale:index/webhook:Webhook sample_webhook 123456789 * ``` */ 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, id, state, opts) { return new Webhook(name, state, { ...opts, id: id }); } /** * 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) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === Webhook.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["endpointUrl"] = state?.endpointUrl; resourceInputs["providerType"] = state?.providerType; resourceInputs["secret"] = state?.secret; resourceInputs["subscriptions"] = state?.subscriptions; } else { const args = argsOrState; if (args?.endpointUrl === undefined && !opts.urn) { throw new Error("Missing required property 'endpointUrl'"); } if (args?.subscriptions === undefined && !opts.urn) { throw new Error("Missing required property 'subscriptions'"); } resourceInputs["endpointUrl"] = args?.endpointUrl; resourceInputs["providerType"] = args?.providerType; resourceInputs["subscriptions"] = args?.subscriptions; resourceInputs["secret"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const secretOpts = { additionalSecretOutputs: ["secret"] }; opts = pulumi.mergeOptions(opts, secretOpts); super(Webhook.__pulumiType, name, resourceInputs, opts); } } exports.Webhook = Webhook; /** @internal */ Webhook.__pulumiType = 'tailscale:index/webhook:Webhook'; //# sourceMappingURL=webhook.js.map