UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

116 lines 4.62 kB
"use strict"; // *** 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.NetworkAcl = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage network acl * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const fooVpc = new volcengine.vpc.Vpc("fooVpc", { * vpcName: "acc-test-vpc", * cidrBlock: "172.16.0.0/16", * }); * const fooNetworkAcl = new volcengine.vpc.NetworkAcl("fooNetworkAcl", { * vpcId: fooVpc.id, * networkAclName: "tf-test-acl", * ingressAclEntries: [ * { * networkAclEntryName: "ingress1", * policy: "accept", * protocol: "all", * sourceCidrIp: "192.168.0.0/24", * }, * { * networkAclEntryName: "ingress3", * policy: "accept", * protocol: "tcp", * port: "80/80", * sourceCidrIp: "192.168.0.0/24", * }, * ], * egressAclEntries: [{ * networkAclEntryName: "egress2", * policy: "accept", * protocol: "all", * destinationCidrIp: "192.168.0.0/16", * }], * projectName: "default", * tags: [{ * key: "k1", * value: "v1", * }], * }); * ``` * * ## Import * * Network Acl can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:vpc/networkAcl:NetworkAcl default nacl-172leak37mi9s4d1w33pswqkh * ``` */ class NetworkAcl extends pulumi.CustomResource { /** * Get an existing NetworkAcl 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 NetworkAcl(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of NetworkAcl. 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'] === NetworkAcl.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["description"] = state ? state.description : undefined; resourceInputs["egressAclEntries"] = state ? state.egressAclEntries : undefined; resourceInputs["ingressAclEntries"] = state ? state.ingressAclEntries : undefined; resourceInputs["networkAclName"] = state ? state.networkAclName : undefined; resourceInputs["projectName"] = state ? state.projectName : undefined; resourceInputs["tags"] = state ? state.tags : undefined; resourceInputs["vpcId"] = state ? state.vpcId : undefined; } else { const args = argsOrState; if ((!args || args.vpcId === undefined) && !opts.urn) { throw new Error("Missing required property 'vpcId'"); } resourceInputs["description"] = args ? args.description : undefined; resourceInputs["egressAclEntries"] = args ? args.egressAclEntries : undefined; resourceInputs["ingressAclEntries"] = args ? args.ingressAclEntries : undefined; resourceInputs["networkAclName"] = args ? args.networkAclName : undefined; resourceInputs["projectName"] = args ? args.projectName : undefined; resourceInputs["tags"] = args ? args.tags : undefined; resourceInputs["vpcId"] = args ? args.vpcId : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(NetworkAcl.__pulumiType, name, resourceInputs, opts); } } exports.NetworkAcl = NetworkAcl; /** @internal */ NetworkAcl.__pulumiType = 'volcengine:vpc/networkAcl:NetworkAcl'; //# sourceMappingURL=networkAcl.js.map