UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

65 lines (64 loc) 1.99 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of rocketmq allow lists * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.rocketmq.getAllowLists({}); * ``` */ /** @deprecated volcengine.rocketmq.AllowLists has been deprecated in favor of volcengine.rocketmq.getAllowLists */ export declare function allowLists(args?: AllowListsArgs, opts?: pulumi.InvokeOptions): Promise<AllowListsResult>; /** * A collection of arguments for invoking AllowLists. */ export interface AllowListsArgs { /** * File name where to save data source results. */ outputFile?: string; } /** * A collection of values returned by AllowLists. */ export interface AllowListsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly outputFile?: string; /** * The collection of query. */ readonly rocketmqAllowLists: outputs.rocketmq.AllowListsRocketmqAllowList[]; /** * The total count of query. */ readonly totalCount: number; } /** * Use this data source to query detailed information of rocketmq allow lists * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const foo = volcengine.rocketmq.getAllowLists({}); * ``` */ /** @deprecated volcengine.rocketmq.AllowLists has been deprecated in favor of volcengine.rocketmq.getAllowLists */ export declare function allowListsOutput(args?: AllowListsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<AllowListsResult>; /** * A collection of arguments for invoking AllowLists. */ export interface AllowListsOutputArgs { /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; }