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.CfwControlPolicyPriority = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage cfw control policy 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 fooCfwControlPolicy = new volcengine.cloud_firewall.CfwControlPolicy("fooCfwControlPolicy", { * direction: "in", * 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 fooCfwControlPolicyPriority = new volcengine.cloud_firewall.CfwControlPolicyPriority("fooCfwControlPolicyPriority", { * direction: "in", * ruleId: fooCfwControlPolicy.ruleId, * newPrio: 5, * }); * ``` * * ## Import * * ControlPolicyPriority can be imported using the direction:rule_id, e.g. * * ```sh * $ pulumi import volcengine:cloud_firewall/cfwControlPolicyPriority:CfwControlPolicyPriority default resource_id * ``` */ class CfwControlPolicyPriority extends pulumi.CustomResource { /** * Get an existing CfwControlPolicyPriority 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 CfwControlPolicyPriority(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of CfwControlPolicyPriority. 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'] === CfwControlPolicyPriority.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["direction"] = state ? state.direction : undefined; resourceInputs["newPrio"] = state ? state.newPrio : undefined; resourceInputs["prio"] = state ? state.prio : undefined; resourceInputs["ruleId"] = state ? state.ruleId : undefined; } else { const args = argsOrState; if ((!args || args.direction === undefined) && !opts.urn) { throw new Error("Missing required property 'direction'"); } if ((!args || args.ruleId === undefined) && !opts.urn) { throw new Error("Missing required property 'ruleId'"); } resourceInputs["direction"] = args ? args.direction : undefined; resourceInputs["newPrio"] = args ? args.newPrio : undefined; resourceInputs["ruleId"] = args ? args.ruleId : undefined; resourceInputs["prio"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(CfwControlPolicyPriority.__pulumiType, name, resourceInputs, opts); } } exports.CfwControlPolicyPriority = CfwControlPolicyPriority; /** @internal */ CfwControlPolicyPriority.__pulumiType = 'volcengine:cloud_firewall/cfwControlPolicyPriority:CfwControlPolicyPriority'; //# sourceMappingURL=cfwControlPolicyPriority.js.map