@pulumiverse/scaleway
Version:
A Pulumi package for creating and managing Scaleway cloud resources.
100 lines • 4.46 kB
JavaScript
;
// *** 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.Token = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* The `scaleway.functions.Token` resource allows you to create and manage authentication tokens for Scaleway [Serverless Functions](https://www.scaleway.com/en/docs/serverless/functions/).
*
* Refer to the Functions tokens [documentation](https://www.scaleway.com/en/docs/serverless/functions/how-to/create-auth-token-from-console/) and [API documentation](https://www.scaleway.com/en/developers/api/serverless-functions/#path-tokens-list-all-tokens) for more information.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scaleway from "@pulumiverse/scaleway";
*
* const main = new scaleway.functions.Namespace("main", {name: "test-function-token-ns"});
* const mainFunction = new scaleway.functions.Function("main", {
* namespaceId: main.id,
* runtime: "go118",
* handler: "Handle",
* privacy: "private",
* });
* // Namespace Token
* const namespace = new scaleway.functions.Token("namespace", {
* namespaceId: main.id,
* expiresAt: "2022-10-18T11:35:15+02:00",
* });
* // Function Token
* const _function = new scaleway.functions.Token("function", {functionId: mainFunction.id});
* ```
*
* ## Import
*
* Tokens can be imported using `{region}/{id}`, as shown below:
*
* bash
*
* ```sh
* $ pulumi import scaleway:functions/token:Token main fr-par/11111111-1111-1111-1111-111111111111
* ```
*/
class Token extends pulumi.CustomResource {
/**
* Get an existing Token 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 Token(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of Token. 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'] === Token.__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["value"] = state ? state.value : 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["value"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const aliasOpts = { aliases: [{ type: "scaleway:index/functionToken:FunctionToken" }] };
opts = pulumi.mergeOptions(opts, aliasOpts);
const secretOpts = { additionalSecretOutputs: ["value"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(Token.__pulumiType, name, resourceInputs, opts);
}
}
exports.Token = Token;
/** @internal */
Token.__pulumiType = 'scaleway:functions/token:Token';
//# sourceMappingURL=token.js.map