@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
92 lines • 4.22 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.ServiceControlPolicy = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage organization service control policy
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const foo = new volcengine.organization.ServiceControlPolicy("foo", {
* description: "tftest1",
* policyName: "tfpolicy11",
* statement: "{\"Statement\":[{\"Effect\":\"Deny\",\"Action\":[\"ecs:RunInstances\"],\"Resource\":[\"*\"]}]}",
* });
* const foo2 = new volcengine.organization.ServiceControlPolicy("foo2", {
* policyName: "tfpolicy21",
* statement: "{\"Statement\":[{\"Effect\":\"Deny\",\"Action\":[\"ecs:DeleteInstance\"],\"Resource\":[\"*\"]}]}",
* });
* ```
*
* ## Import
*
* Service Control Policy can be imported using the id, e.g.
*
* ```sh
* $ pulumi import volcengine:organization/serviceControlPolicy:ServiceControlPolicy default 1000001
* ```
*/
class ServiceControlPolicy extends pulumi.CustomResource {
/**
* Get an existing ServiceControlPolicy 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 ServiceControlPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of ServiceControlPolicy. 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'] === ServiceControlPolicy.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["createDate"] = state ? state.createDate : undefined;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["policyName"] = state ? state.policyName : undefined;
resourceInputs["policyType"] = state ? state.policyType : undefined;
resourceInputs["statement"] = state ? state.statement : undefined;
resourceInputs["updateDate"] = state ? state.updateDate : undefined;
}
else {
const args = argsOrState;
if ((!args || args.policyName === undefined) && !opts.urn) {
throw new Error("Missing required property 'policyName'");
}
if ((!args || args.statement === undefined) && !opts.urn) {
throw new Error("Missing required property 'statement'");
}
resourceInputs["description"] = args ? args.description : undefined;
resourceInputs["policyName"] = args ? args.policyName : undefined;
resourceInputs["statement"] = args ? args.statement : undefined;
resourceInputs["createDate"] = undefined /*out*/;
resourceInputs["policyType"] = undefined /*out*/;
resourceInputs["updateDate"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(ServiceControlPolicy.__pulumiType, name, resourceInputs, opts);
}
}
exports.ServiceControlPolicy = ServiceControlPolicy;
/** @internal */
ServiceControlPolicy.__pulumiType = 'volcengine:organization/serviceControlPolicy:ServiceControlPolicy';
//# sourceMappingURL=serviceControlPolicy.js.map