UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

90 lines (89 loc) 2.47 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * 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", * }); * ``` */ export declare function getDescribeTraces(args: GetDescribeTracesArgs, opts?: pulumi.InvokeOptions): Promise<GetDescribeTracesResult>; /** * A collection of arguments for invoking getDescribeTraces. */ export interface GetDescribeTracesArgs { /** * File name where to save data source results. */ outputFile?: string; /** * Trace ID. */ traceId: string; /** * Trace instance ID. */ traceInstanceId: string; } /** * A collection of values returned by getDescribeTraces. */ export interface GetDescribeTracesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly outputFile?: string; /** * The total count of tls trace query. */ readonly totalCount: number; /** * Trace ID. */ readonly traceId: string; readonly traceInstanceId: string; /** * The collection of tls trace query. */ readonly traces: outputs.tls.GetDescribeTracesTrace[]; } /** * 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", * }); * ``` */ export declare function getDescribeTracesOutput(args: GetDescribeTracesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDescribeTracesResult>; /** * A collection of arguments for invoking getDescribeTraces. */ export interface GetDescribeTracesOutputArgs { /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; /** * Trace ID. */ traceId: pulumi.Input<string>; /** * Trace instance ID. */ traceInstanceId: pulumi.Input<string>; }