UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

48 lines 1.61 kB
"use strict"; // *** 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.getHostsOutput = exports.getHosts = 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: "527102e2-1e4f-45f4-a990-751152125da7", * }); * ``` */ function getHosts(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:tls/getHosts:getHosts", { "heartbeatStatus": args.heartbeatStatus, "hostGroupId": args.hostGroupId, "ip": args.ip, "outputFile": args.outputFile, }, opts); } exports.getHosts = getHosts; /** * 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: "527102e2-1e4f-45f4-a990-751152125da7", * }); * ``` */ function getHostsOutput(args, opts) { return pulumi.output(args).apply((a) => getHosts(a, opts)); } exports.getHostsOutput = getHostsOutput; //# sourceMappingURL=getHosts.js.map