@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
63 lines (62 loc) • 1.8 kB
TypeScript
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({});
* ```
*/
export declare function getAllowLists(args?: GetAllowListsArgs, opts?: pulumi.InvokeOptions): Promise<GetAllowListsResult>;
/**
* A collection of arguments for invoking getAllowLists.
*/
export interface GetAllowListsArgs {
/**
* File name where to save data source results.
*/
outputFile?: string;
}
/**
* A collection of values returned by getAllowLists.
*/
export interface GetAllowListsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly outputFile?: string;
/**
* The collection of query.
*/
readonly rocketmqAllowLists: outputs.rocketmq.GetAllowListsRocketmqAllowList[];
/**
* 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({});
* ```
*/
export declare function getAllowListsOutput(args?: GetAllowListsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAllowListsResult>;
/**
* A collection of arguments for invoking getAllowLists.
*/
export interface GetAllowListsOutputArgs {
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}