@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
99 lines • 4.29 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.EndpointAclPolicy = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage cr endpoint acl policy
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const fooRegistry = new volcengine.cr.Registry("fooRegistry", {project: "default"});
* const fooEndpoint = new volcengine.cr.Endpoint("fooEndpoint", {
* registry: fooRegistry.id,
* enabled: true,
* });
* const fooEndpointAclPolicy: volcengine.cr.EndpointAclPolicy[] = [];
* for (const range = {value: 0}; range.value < 3; range.value++) {
* fooEndpointAclPolicy.push(new volcengine.cr.EndpointAclPolicy(`fooEndpointAclPolicy-${range.value}`, {
* registry: fooEndpoint.registry,
* type: "Public",
* entry: `192.168.0.${range.value}`,
* description: `test-${range.value}`,
* }));
* }
* ```
*
* ## Import
*
* CrEndpointAclPolicy can be imported using the registry:entry, e.g.
*
* ```sh
* $ pulumi import volcengine:cr/endpointAclPolicy:EndpointAclPolicy default resource_id
* ```
*/
class EndpointAclPolicy extends pulumi.CustomResource {
/**
* Get an existing EndpointAclPolicy 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 EndpointAclPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of EndpointAclPolicy. 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'] === EndpointAclPolicy.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["entry"] = state ? state.entry : undefined;
resourceInputs["registry"] = state ? state.registry : undefined;
resourceInputs["type"] = state ? state.type : undefined;
}
else {
const args = argsOrState;
if ((!args || args.description === undefined) && !opts.urn) {
throw new Error("Missing required property 'description'");
}
if ((!args || args.entry === undefined) && !opts.urn) {
throw new Error("Missing required property 'entry'");
}
if ((!args || args.registry === undefined) && !opts.urn) {
throw new Error("Missing required property 'registry'");
}
if ((!args || args.type === undefined) && !opts.urn) {
throw new Error("Missing required property 'type'");
}
resourceInputs["description"] = args ? args.description : undefined;
resourceInputs["entry"] = args ? args.entry : undefined;
resourceInputs["registry"] = args ? args.registry : undefined;
resourceInputs["type"] = args ? args.type : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(EndpointAclPolicy.__pulumiType, name, resourceInputs, opts);
}
}
exports.EndpointAclPolicy = EndpointAclPolicy;
/** @internal */
EndpointAclPolicy.__pulumiType = 'volcengine:cr/endpointAclPolicy:EndpointAclPolicy';
//# sourceMappingURL=endpointAclPolicy.js.map