UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

52 lines 2.19 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.describeTracesOutput = exports.describeTraces = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of tls describe traces * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const example = volcengine.tls.getDescribeTraces({ * traceId: "c415ff6a-7141-4fe9-9e6c-9ddce4e4c189", * traceInstanceId: "b28b19bd-a539-453a-8919-fda3ef6a22fe", * }); * ``` */ /** @deprecated volcengine.tls.DescribeTraces has been deprecated in favor of volcengine.tls.getDescribeTraces */ function describeTraces(args, opts) { pulumi.log.warn("describeTraces is deprecated: volcengine.tls.DescribeTraces has been deprecated in favor of volcengine.tls.getDescribeTraces"); opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:tls/describeTraces:DescribeTraces", { "outputFile": args.outputFile, "traceId": args.traceId, "traceInstanceId": args.traceInstanceId, }, opts); } exports.describeTraces = describeTraces; /** * Use this data source to query detailed information of tls describe traces * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const example = volcengine.tls.getDescribeTraces({ * traceId: "c415ff6a-7141-4fe9-9e6c-9ddce4e4c189", * traceInstanceId: "b28b19bd-a539-453a-8919-fda3ef6a22fe", * }); * ``` */ /** @deprecated volcengine.tls.DescribeTraces has been deprecated in favor of volcengine.tls.getDescribeTraces */ function describeTracesOutput(args, opts) { return pulumi.output(args).apply((a) => describeTraces(a, opts)); } exports.describeTracesOutput = describeTracesOutput; //# sourceMappingURL=describeTraces.js.map