UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

108 lines (107 loc) 2.88 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of tls check points * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.tls.getCheckPoints({ * consumerGroupName: "tf-consumer-group", * projectId: "7a8ac13e-8e3e-4392-ae77-aea8efa49bbf", * shardId: "0", * topicId: "33124cc3-15c4-4cdc-9a8a-cc64a9d593dd", * }); * ``` */ export declare function getCheckPoints(args: GetCheckPointsArgs, opts?: pulumi.InvokeOptions): Promise<GetCheckPointsResult>; /** * A collection of arguments for invoking getCheckPoints. */ export interface GetCheckPointsArgs { /** * The name of the consumer group. */ consumerGroupName?: string; /** * File name where to save data source results. */ outputFile?: string; /** * The ID of the project. */ projectId: string; /** * The ID of the shard. */ shardId: string; /** * The ID of the topic. */ topicId: string; } /** * A collection of values returned by getCheckPoints. */ export interface GetCheckPointsResult { /** * The list of checkpoints. */ readonly checkPoints: outputs.tls.GetCheckPointsCheckPoint[]; readonly consumerGroupName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly outputFile?: string; readonly projectId: string; /** * The ID of the shard. */ readonly shardId: string; readonly topicId: string; } /** * Use this data source to query detailed information of tls check points * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.tls.getCheckPoints({ * consumerGroupName: "tf-consumer-group", * projectId: "7a8ac13e-8e3e-4392-ae77-aea8efa49bbf", * shardId: "0", * topicId: "33124cc3-15c4-4cdc-9a8a-cc64a9d593dd", * }); * ``` */ export declare function getCheckPointsOutput(args: GetCheckPointsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCheckPointsResult>; /** * A collection of arguments for invoking getCheckPoints. */ export interface GetCheckPointsOutputArgs { /** * The name of the consumer group. */ consumerGroupName?: pulumi.Input<string>; /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; /** * The ID of the project. */ projectId: pulumi.Input<string>; /** * The ID of the shard. */ shardId: pulumi.Input<string>; /** * The ID of the topic. */ topicId: pulumi.Input<string>; }