@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
92 lines (91 loc) • 2.66 kB
TypeScript
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",
* });
* ```
*/
/** @deprecated volcengine.tls.DescribeTraces has been deprecated in favor of volcengine.tls.getDescribeTraces */
export declare function describeTraces(args: DescribeTracesArgs, opts?: pulumi.InvokeOptions): Promise<DescribeTracesResult>;
/**
* A collection of arguments for invoking DescribeTraces.
*/
export interface DescribeTracesArgs {
/**
* 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 DescribeTraces.
*/
export interface DescribeTracesResult {
/**
* 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.DescribeTracesTrace[];
}
/**
* 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 */
export declare function describeTracesOutput(args: DescribeTracesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<DescribeTracesResult>;
/**
* A collection of arguments for invoking DescribeTraces.
*/
export interface DescribeTracesOutputArgs {
/**
* 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>;
}