@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
89 lines • 3.31 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.Acl = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage acl
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const foo = new volcengine.clb.Acl("foo", {
* aclEntries: [
* {
* description: "e1",
* entry: "172.20.1.0/24",
* },
* {
* description: "e3",
* entry: "172.20.3.0/24",
* },
* ],
* aclName: "tf-test-2",
* projectName: "default",
* });
* ```
*
* ## Import
*
* Acl can be imported using the id, e.g.
*
* ```sh
* $ pulumi import volcengine:clb/acl:Acl default acl-mizl7m1kqccg5smt1bdpijuj
* ```
*/
class Acl extends pulumi.CustomResource {
/**
* Get an existing Acl 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 Acl(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of Acl. 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'] === Acl.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["aclEntries"] = state ? state.aclEntries : undefined;
resourceInputs["aclName"] = state ? state.aclName : undefined;
resourceInputs["createTime"] = state ? state.createTime : undefined;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["projectName"] = state ? state.projectName : undefined;
}
else {
const args = argsOrState;
resourceInputs["aclEntries"] = args ? args.aclEntries : undefined;
resourceInputs["aclName"] = args ? args.aclName : undefined;
resourceInputs["description"] = args ? args.description : undefined;
resourceInputs["projectName"] = args ? args.projectName : undefined;
resourceInputs["createTime"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Acl.__pulumiType, name, resourceInputs, opts);
}
}
exports.Acl = Acl;
/** @internal */
Acl.__pulumiType = 'volcengine:clb/acl:Acl';
//# sourceMappingURL=acl.js.map