@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
51 lines • 1.89 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.hostsOutput = exports.hosts = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of tls hosts
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getHosts({
* hostGroupId: "2123af96-d057-4234-8f34-6fae9c9da6d0",
* });
* ```
*/
/** @deprecated volcengine.tls.Hosts has been deprecated in favor of volcengine.tls.getHosts */
function hosts(args, opts) {
pulumi.log.warn("hosts is deprecated: volcengine.tls.Hosts has been deprecated in favor of volcengine.tls.getHosts");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:tls/hosts:Hosts", {
"heartbeatStatus": args.heartbeatStatus,
"hostGroupId": args.hostGroupId,
"ip": args.ip,
"outputFile": args.outputFile,
}, opts);
}
exports.hosts = hosts;
/**
* Use this data source to query detailed information of tls hosts
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.tls.getHosts({
* hostGroupId: "2123af96-d057-4234-8f34-6fae9c9da6d0",
* });
* ```
*/
/** @deprecated volcengine.tls.Hosts has been deprecated in favor of volcengine.tls.getHosts */
function hostsOutput(args, opts) {
return pulumi.output(args).apply((a) => hosts(a, opts));
}
exports.hostsOutput = hostsOutput;
//# sourceMappingURL=hosts.js.map