@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
116 lines • 4.83 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.CfwVpcFirewallAclRulePriority = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage cfw vpc firewall acl rule priority
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const fooCfwAddressBook = new volcengine.cloud_firewall.CfwAddressBook("fooCfwAddressBook", {
* groupName: "acc-test-address-book",
* description: "acc-test",
* groupType: "ip",
* addressLists: [
* "192.168.1.1",
* "192.168.2.2",
* ],
* });
* const fooCfwVpcFirewallAclRule = new volcengine.cloud_firewall.CfwVpcFirewallAclRule("fooCfwVpcFirewallAclRule", {
* vpcFirewallId: "vfw-ydmjakzksgf7u99j****",
* action: "accept",
* destinationType: "group",
* destination: fooCfwAddressBook.id,
* proto: "TCP",
* sourceType: "net",
* source: "0.0.0.0/0",
* description: "acc-test-control-policy",
* destPortType: "port",
* destPort: "300",
* repeatType: "Weekly",
* repeatStartTime: "01:00",
* repeatEndTime: "11:00",
* repeatDays: [
* 2,
* 5,
* ],
* startTime: 1736092800,
* endTime: 1738339140,
* priority: 1,
* status: true,
* });
* const fooCfwVpcFirewallAclRulePriority = new volcengine.cloud_firewall.CfwVpcFirewallAclRulePriority("fooCfwVpcFirewallAclRulePriority", {
* vpcFirewallId: "vfw-ydmjakzksgf7u99j****",
* ruleId: fooCfwVpcFirewallAclRule.ruleId,
* newPrio: 3,
* });
* ```
*
* ## Import
*
* VpcFirewallAclRulePriority can be imported using the vpc_firewall_id:rule_id, e.g.
*
* ```sh
* $ pulumi import volcengine:cloud_firewall/cfwVpcFirewallAclRulePriority:CfwVpcFirewallAclRulePriority default resource_id
* ```
*/
class CfwVpcFirewallAclRulePriority extends pulumi.CustomResource {
/**
* Get an existing CfwVpcFirewallAclRulePriority 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 CfwVpcFirewallAclRulePriority(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of CfwVpcFirewallAclRulePriority. 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'] === CfwVpcFirewallAclRulePriority.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["newPrio"] = state ? state.newPrio : undefined;
resourceInputs["prio"] = state ? state.prio : undefined;
resourceInputs["ruleId"] = state ? state.ruleId : undefined;
resourceInputs["vpcFirewallId"] = state ? state.vpcFirewallId : undefined;
}
else {
const args = argsOrState;
if ((!args || args.ruleId === undefined) && !opts.urn) {
throw new Error("Missing required property 'ruleId'");
}
if ((!args || args.vpcFirewallId === undefined) && !opts.urn) {
throw new Error("Missing required property 'vpcFirewallId'");
}
resourceInputs["newPrio"] = args ? args.newPrio : undefined;
resourceInputs["ruleId"] = args ? args.ruleId : undefined;
resourceInputs["vpcFirewallId"] = args ? args.vpcFirewallId : undefined;
resourceInputs["prio"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(CfwVpcFirewallAclRulePriority.__pulumiType, name, resourceInputs, opts);
}
}
exports.CfwVpcFirewallAclRulePriority = CfwVpcFirewallAclRulePriority;
/** @internal */
CfwVpcFirewallAclRulePriority.__pulumiType = 'volcengine:cloud_firewall/cfwVpcFirewallAclRulePriority:CfwVpcFirewallAclRulePriority';
//# sourceMappingURL=cfwVpcFirewallAclRulePriority.js.map