@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
46 lines • 1.66 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.getRuleAppliersOutput = exports.getRuleAppliers = 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",
* });
* ```
*/
function getRuleAppliers(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:tls/getRuleAppliers:getRuleAppliers", {
"hostGroupId": args.hostGroupId,
"outputFile": args.outputFile,
}, opts);
}
exports.getRuleAppliers = getRuleAppliers;
/**
* 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",
* });
* ```
*/
function getRuleAppliersOutput(args, opts) {
return pulumi.output(args).apply((a) => getRuleAppliers(a, opts));
}
exports.getRuleAppliersOutput = getRuleAppliersOutput;
//# sourceMappingURL=getRuleAppliers.js.map