UNPKG

@lbrlabs/pulumi-scaleway

Version:

A Pulumi package for creating and managing scaleway cloud resources.

97 lines 4.15 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.FunctionToken = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * Creates and manages Scaleway Function Token. * For more information see [the documentation](https://developers.scaleway.com/en/products/functions/api/#tokens-26b085). * * ## Examples * * ### Basic * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@lbrlabs/pulumi-scaleway"; * * const mainFunctionNamespace = new scaleway.FunctionNamespace("mainFunctionNamespace", {}); * const mainFunction = new scaleway.Function("mainFunction", { * namespaceId: mainFunctionNamespace.id, * runtime: "go118", * handler: "Handle", * privacy: "private", * }); * // Namespace Token * const namespace = new scaleway.FunctionToken("namespace", { * namespaceId: mainFunctionNamespace.id, * expiresAt: "2022-10-18T11:35:15+02:00", * }); * // Function Token * const _function = new scaleway.FunctionToken("function", {functionId: mainFunction.id}); * ``` * * ## Import * * Tokens can be imported using the `{region}/{id}`, e.g. bash * * ```sh * $ pulumi import scaleway:index/functionToken:FunctionToken main fr-par/11111111-1111-1111-1111-111111111111 * ``` */ class FunctionToken extends pulumi.CustomResource { /** * Get an existing FunctionToken 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 FunctionToken(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of FunctionToken. 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'] === FunctionToken.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["expiresAt"] = state ? state.expiresAt : undefined; resourceInputs["functionId"] = state ? state.functionId : undefined; resourceInputs["namespaceId"] = state ? state.namespaceId : undefined; resourceInputs["region"] = state ? state.region : undefined; resourceInputs["token"] = state ? state.token : undefined; } else { const args = argsOrState; resourceInputs["description"] = args ? args.description : undefined; resourceInputs["expiresAt"] = args ? args.expiresAt : undefined; resourceInputs["functionId"] = args ? args.functionId : undefined; resourceInputs["namespaceId"] = args ? args.namespaceId : undefined; resourceInputs["region"] = args ? args.region : undefined; resourceInputs["token"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const secretOpts = { additionalSecretOutputs: ["token"] }; opts = pulumi.mergeOptions(opts, secretOpts); super(FunctionToken.__pulumiType, name, resourceInputs, opts); } } exports.FunctionToken = FunctionToken; /** @internal */ FunctionToken.__pulumiType = 'scaleway:index/functionToken:FunctionToken'; //# sourceMappingURL=functionToken.js.map