@huaweicloudos/pulumi
Version:
A Pulumi package for creating and managing Huaweicloud cloud resources.
89 lines • 3.67 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.Whitelist = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Manages an ELB whitelist resource within HuaweiCloud.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as pulumi from "@huaweicloudos/pulumi";
*
* const listener1 = new huaweicloud.elb.Listener("listener1", {
* protocol: "HTTP",
* protocolPort: 8080,
* loadbalancerId: _var.loadbalancer_id,
* });
* const whitelist1 = new huaweicloud.elb.Whitelist("whitelist1", {
* enableWhitelist: true,
* whitelist: "192.168.11.1,192.168.0.1/24,192.168.201.18/8",
* listenerId: listener1.id,
* });
* ```
*
* ## Import
*
* ELB whitelist can be imported using the whitelist ID, e.g. bash
*
* ```sh
* $ pulumi import huaweicloud:Elb/whitelist:Whitelist whitelist_1 5c20fdad-7288-11eb-b817-0255ac10158b
* ```
*/
class Whitelist extends pulumi.CustomResource {
/**
* Get an existing Whitelist 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 Whitelist(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of Whitelist. 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'] === Whitelist.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["enableWhitelist"] = state ? state.enableWhitelist : undefined;
resourceInputs["listenerId"] = state ? state.listenerId : undefined;
resourceInputs["region"] = state ? state.region : undefined;
resourceInputs["tenantId"] = state ? state.tenantId : undefined;
resourceInputs["whitelist"] = state ? state.whitelist : undefined;
}
else {
const args = argsOrState;
if ((!args || args.listenerId === undefined) && !opts.urn) {
throw new Error("Missing required property 'listenerId'");
}
resourceInputs["enableWhitelist"] = args ? args.enableWhitelist : undefined;
resourceInputs["listenerId"] = args ? args.listenerId : undefined;
resourceInputs["region"] = args ? args.region : undefined;
resourceInputs["tenantId"] = args ? args.tenantId : undefined;
resourceInputs["whitelist"] = args ? args.whitelist : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Whitelist.__pulumiType, name, resourceInputs, opts);
}
}
exports.Whitelist = Whitelist;
/** @internal */
Whitelist.__pulumiType = 'huaweicloud:Elb/whitelist:Whitelist';
//# sourceMappingURL=whitelist.js.map