UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

35 lines 1.66 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.logContextsOutput = exports.logContexts = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of tls log contexts */ /** @deprecated volcengine.tls.LogContexts has been deprecated in favor of volcengine.tls.getLogContexts */ function logContexts(args, opts) { pulumi.log.warn("logContexts is deprecated: volcengine.tls.LogContexts has been deprecated in favor of volcengine.tls.getLogContexts"); opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:tls/logContexts:LogContexts", { "contextFlow": args.contextFlow, "describeLogContext": args.describeLogContext, "nextLogs": args.nextLogs, "outputFile": args.outputFile, "packageOffset": args.packageOffset, "prevLogs": args.prevLogs, "source": args.source, "topicId": args.topicId, }, opts); } exports.logContexts = logContexts; /** * Use this data source to query detailed information of tls log contexts */ /** @deprecated volcengine.tls.LogContexts has been deprecated in favor of volcengine.tls.getLogContexts */ function logContextsOutput(args, opts) { return pulumi.output(args).apply((a) => logContexts(a, opts)); } exports.logContextsOutput = logContextsOutput; //# sourceMappingURL=logContexts.js.map