@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
46 lines • 1.69 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.getHostGroupRulesOutput = exports.getHostGroupRules = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of tls host group rules
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getHostGroupRules({
* hostGroupId: "59989043-5422-4440-a981-63d241563fc0",
* });
* ```
*/
function getHostGroupRules(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:tls/getHostGroupRules:getHostGroupRules", {
"hostGroupId": args.hostGroupId,
"outputFile": args.outputFile,
}, opts);
}
exports.getHostGroupRules = getHostGroupRules;
/**
* Use this data source to query detailed information of tls host group rules
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getHostGroupRules({
* hostGroupId: "59989043-5422-4440-a981-63d241563fc0",
* });
* ```
*/
function getHostGroupRulesOutput(args, opts) {
return pulumi.output(args).apply((a) => getHostGroupRules(a, opts));
}
exports.getHostGroupRulesOutput = getHostGroupRulesOutput;
//# sourceMappingURL=getHostGroupRules.js.map