UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

54 lines 2 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.getBotAnalyseProtectRulesOutput = exports.getBotAnalyseProtectRules = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of waf bot analyse protect rules * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.waf.getBotAnalyseProtectRules({ * botSpace: "BotRepeat", * host: "www.tf-test.com", * }); * ``` */ function getBotAnalyseProtectRules(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:waf/getBotAnalyseProtectRules:getBotAnalyseProtectRules", { "botSpace": args.botSpace, "host": args.host, "name": args.name, "nameRegex": args.nameRegex, "outputFile": args.outputFile, "path": args.path, "projectName": args.projectName, "ruleTag": args.ruleTag, }, opts); } exports.getBotAnalyseProtectRules = getBotAnalyseProtectRules; /** * Use this data source to query detailed information of waf bot analyse protect rules * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.waf.getBotAnalyseProtectRules({ * botSpace: "BotRepeat", * host: "www.tf-test.com", * }); * ``` */ function getBotAnalyseProtectRulesOutput(args, opts) { return pulumi.output(args).apply((a) => getBotAnalyseProtectRules(a, opts)); } exports.getBotAnalyseProtectRulesOutput = getBotAnalyseProtectRulesOutput; //# sourceMappingURL=getBotAnalyseProtectRules.js.map