@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
49 lines • 1.98 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.ruleAppliersOutput = exports.ruleAppliers = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of tls rule appliers
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getRuleAppliers({
* hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
* });
* ```
*/
/** @deprecated volcengine.tls.RuleAppliers has been deprecated in favor of volcengine.tls.getRuleAppliers */
function ruleAppliers(args, opts) {
pulumi.log.warn("ruleAppliers is deprecated: volcengine.tls.RuleAppliers has been deprecated in favor of volcengine.tls.getRuleAppliers");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:tls/ruleAppliers:RuleAppliers", {
"hostGroupId": args.hostGroupId,
"outputFile": args.outputFile,
}, opts);
}
exports.ruleAppliers = ruleAppliers;
/**
* Use this data source to query detailed information of tls rule appliers
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getRuleAppliers({
* hostGroupId: "fbea6619-7b0c-40f3-ac7e-45c63e3f676e",
* });
* ```
*/
/** @deprecated volcengine.tls.RuleAppliers has been deprecated in favor of volcengine.tls.getRuleAppliers */
function ruleAppliersOutput(args, opts) {
return pulumi.output(args).apply((a) => ruleAppliers(a, opts));
}
exports.ruleAppliersOutput = ruleAppliersOutput;
//# sourceMappingURL=ruleAppliers.js.map