@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
49 lines • 2.03 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.hostGroupRulesOutput = exports.hostGroupRules = 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",
* });
* ```
*/
/** @deprecated volcengine.tls.HostGroupRules has been deprecated in favor of volcengine.tls.getHostGroupRules */
function hostGroupRules(args, opts) {
pulumi.log.warn("hostGroupRules is deprecated: volcengine.tls.HostGroupRules has been deprecated in favor of volcengine.tls.getHostGroupRules");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:tls/hostGroupRules:HostGroupRules", {
"hostGroupId": args.hostGroupId,
"outputFile": args.outputFile,
}, opts);
}
exports.hostGroupRules = hostGroupRules;
/**
* 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",
* });
* ```
*/
/** @deprecated volcengine.tls.HostGroupRules has been deprecated in favor of volcengine.tls.getHostGroupRules */
function hostGroupRulesOutput(args, opts) {
return pulumi.output(args).apply((a) => hostGroupRules(a, opts));
}
exports.hostGroupRulesOutput = hostGroupRulesOutput;
//# sourceMappingURL=hostGroupRules.js.map