@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
90 lines • 4.07 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.Organization = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage organization
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const foo = new volcengine.organization.Organization("foo", {});
* ```
*
* ## Import
*
* Organization can be imported using the id, e.g.
*
* ```sh
* $ pulumi import volcengine:organization/organization:Organization default resource_id
* ```
*/
class Organization extends pulumi.CustomResource {
/**
* Get an existing Organization 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 Organization(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of Organization. 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'] === Organization.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["accountId"] = state ? state.accountId : undefined;
resourceInputs["accountName"] = state ? state.accountName : undefined;
resourceInputs["createdTime"] = state ? state.createdTime : undefined;
resourceInputs["deleteUk"] = state ? state.deleteUk : undefined;
resourceInputs["deletedTime"] = state ? state.deletedTime : undefined;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["mainName"] = state ? state.mainName : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["owner"] = state ? state.owner : undefined;
resourceInputs["status"] = state ? state.status : undefined;
resourceInputs["type"] = state ? state.type : undefined;
resourceInputs["updatedTime"] = state ? state.updatedTime : undefined;
}
else {
const args = argsOrState;
resourceInputs["accountId"] = undefined /*out*/;
resourceInputs["accountName"] = undefined /*out*/;
resourceInputs["createdTime"] = undefined /*out*/;
resourceInputs["deleteUk"] = undefined /*out*/;
resourceInputs["deletedTime"] = undefined /*out*/;
resourceInputs["description"] = undefined /*out*/;
resourceInputs["mainName"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["owner"] = undefined /*out*/;
resourceInputs["status"] = undefined /*out*/;
resourceInputs["type"] = undefined /*out*/;
resourceInputs["updatedTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Organization.__pulumiType, name, resourceInputs, opts);
}
}
exports.Organization = Organization;
/** @internal */
Organization.__pulumiType = 'volcengine:organization/organization:Organization';
//# sourceMappingURL=organization.js.map