@lbrlabs/pulumi-scaleway
Version:
A Pulumi package for creating and managing scaleway cloud resources.
92 lines • 4.09 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.ContainerToken = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* Creates and manages Scaleway Container Token.
* For more information see [the documentation](https://developers.scaleway.com/en/products/containers/api/#tokens-26b085).
*
* ## Examples
*
* ### Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scaleway from "@lbrlabs/pulumi-scaleway";
*
* const mainContainerNamespace = new scaleway.ContainerNamespace("mainContainerNamespace", {});
* const mainContainer = new scaleway.Container("mainContainer", {namespaceId: mainContainerNamespace.id});
* // Namespace Token
* const namespace = new scaleway.ContainerToken("namespace", {
* namespaceId: mainContainerNamespace.id,
* expiresAt: "2022-10-18T11:35:15+02:00",
* });
* // Container Token
* const container = new scaleway.ContainerToken("container", {containerId: mainContainer.id});
* ```
*
* ## Import
*
* Tokens can be imported using the `{region}/{id}`, e.g. bash
*
* ```sh
* $ pulumi import scaleway:index/containerToken:ContainerToken main fr-par/11111111-1111-1111-1111-111111111111
* ```
*/
class ContainerToken extends pulumi.CustomResource {
/**
* Get an existing ContainerToken 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 ContainerToken(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of ContainerToken. 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'] === ContainerToken.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["containerId"] = state ? state.containerId : undefined;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["expiresAt"] = state ? state.expiresAt : undefined;
resourceInputs["namespaceId"] = state ? state.namespaceId : undefined;
resourceInputs["region"] = state ? state.region : undefined;
resourceInputs["token"] = state ? state.token : undefined;
}
else {
const args = argsOrState;
resourceInputs["containerId"] = args ? args.containerId : undefined;
resourceInputs["description"] = args ? args.description : undefined;
resourceInputs["expiresAt"] = args ? args.expiresAt : 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(ContainerToken.__pulumiType, name, resourceInputs, opts);
}
}
exports.ContainerToken = ContainerToken;
/** @internal */
ContainerToken.__pulumiType = 'scaleway:index/containerToken:ContainerToken';
//# sourceMappingURL=containerToken.js.map