@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
91 lines • 5.03 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.RuleGroup = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Contains the Rules that identify the requests that you want to allow, block, or count. In a RuleGroup, you also specify a default action (ALLOW or BLOCK), and the action for each Rule that you add to a RuleGroup, for example, block requests from specified IP addresses or block requests from specified referrers. You also associate the RuleGroup with a CloudFront distribution to identify the requests that you want AWS WAF to filter. If you add more than one Rule to a RuleGroup, a request needs to match only one of the specifications to be allowed, blocked, or counted.
*/
class RuleGroup extends pulumi.CustomResource {
/**
* Get an existing RuleGroup 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 opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, opts) {
return new RuleGroup(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of RuleGroup. 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'] === RuleGroup.__pulumiType;
}
/**
* Create a RuleGroup resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name, args, opts) {
let resourceInputs = {};
opts = opts || {};
if (!opts.id) {
if ((!args || args.capacity === undefined) && !opts.urn) {
throw new Error("Missing required property 'capacity'");
}
if ((!args || args.scope === undefined) && !opts.urn) {
throw new Error("Missing required property 'scope'");
}
if ((!args || args.visibilityConfig === undefined) && !opts.urn) {
throw new Error("Missing required property 'visibilityConfig'");
}
resourceInputs["availableLabels"] = args ? args.availableLabels : undefined;
resourceInputs["capacity"] = args ? args.capacity : undefined;
resourceInputs["consumedLabels"] = args ? args.consumedLabels : undefined;
resourceInputs["customResponseBodies"] = args ? args.customResponseBodies : undefined;
resourceInputs["description"] = args ? args.description : undefined;
resourceInputs["name"] = args ? args.name : undefined;
resourceInputs["rules"] = args ? args.rules : undefined;
resourceInputs["scope"] = args ? args.scope : undefined;
resourceInputs["tags"] = args ? args.tags : undefined;
resourceInputs["visibilityConfig"] = args ? args.visibilityConfig : undefined;
resourceInputs["arn"] = undefined /*out*/;
resourceInputs["awsId"] = undefined /*out*/;
resourceInputs["labelNamespace"] = undefined /*out*/;
}
else {
resourceInputs["arn"] = undefined /*out*/;
resourceInputs["availableLabels"] = undefined /*out*/;
resourceInputs["awsId"] = undefined /*out*/;
resourceInputs["capacity"] = undefined /*out*/;
resourceInputs["consumedLabels"] = undefined /*out*/;
resourceInputs["customResponseBodies"] = undefined /*out*/;
resourceInputs["description"] = undefined /*out*/;
resourceInputs["labelNamespace"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["rules"] = undefined /*out*/;
resourceInputs["scope"] = undefined /*out*/;
resourceInputs["tags"] = undefined /*out*/;
resourceInputs["visibilityConfig"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const replaceOnChanges = { replaceOnChanges: ["name", "scope"] };
opts = pulumi.mergeOptions(opts, replaceOnChanges);
super(RuleGroup.__pulumiType, name, resourceInputs, opts);
}
}
exports.RuleGroup = RuleGroup;
/** @internal */
RuleGroup.__pulumiType = 'aws-native:wafv2:RuleGroup';
//# sourceMappingURL=ruleGroup.js.map