@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
79 lines • 3.16 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.RuleApplier = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides a resource to manage tls rule applier
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@volcengine/pulumi";
*
* const foo = new volcengine.tls.RuleApplier("foo", {
* hostGroupId: "a2a9e8c5-9835-434f-b866-2c1cfa82887d",
* ruleId: "25104b0f-28b7-4a5c-8339-7f9c431d77c8",
* });
* ```
*
* ## Import
*
* tls rule applier can be imported using the rule id and host group id, e.g.
*
* ```sh
* $ pulumi import volcengine:tls/ruleApplier:RuleApplier default fa************:bcb*******
* ```
*/
class RuleApplier extends pulumi.CustomResource {
/**
* Get an existing RuleApplier 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 RuleApplier(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of RuleApplier. 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'] === RuleApplier.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["hostGroupId"] = state ? state.hostGroupId : undefined;
resourceInputs["ruleId"] = state ? state.ruleId : undefined;
}
else {
const args = argsOrState;
if ((!args || args.hostGroupId === undefined) && !opts.urn) {
throw new Error("Missing required property 'hostGroupId'");
}
if ((!args || args.ruleId === undefined) && !opts.urn) {
throw new Error("Missing required property 'ruleId'");
}
resourceInputs["hostGroupId"] = args ? args.hostGroupId : undefined;
resourceInputs["ruleId"] = args ? args.ruleId : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(RuleApplier.__pulumiType, name, resourceInputs, opts);
}
}
exports.RuleApplier = RuleApplier;
/** @internal */
RuleApplier.__pulumiType = 'volcengine:tls/ruleApplier:RuleApplier';
//# sourceMappingURL=ruleApplier.js.map