@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
142 lines (141 loc) • 3.95 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* Use this data source to query detailed information of private zone resolver endpoints
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.private_zone.getResolverEndpoints({});
* ```
*/
export declare function getResolverEndpoints(args?: GetResolverEndpointsArgs, opts?: pulumi.InvokeOptions): Promise<GetResolverEndpointsResult>;
/**
* A collection of arguments for invoking getResolverEndpoints.
*/
export interface GetResolverEndpointsArgs {
/**
* The direction of the private zone resolver endpoint.
*/
direction?: string;
/**
* The name of the private zone resolver endpoint.
*/
name?: string;
/**
* A Name Regex of Resource.
*/
nameRegex?: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
/**
* The project name of the private zone resolver endpoint.
*/
projectName?: string;
/**
* The status of the private zone resolver endpoint.
*/
status?: string;
/**
* List of tag filters.
*/
tagFilters?: inputs.private_zone.GetResolverEndpointsTagFilter[];
/**
* The vpc ID of the private zone resolver endpoint.
*/
vpcId?: string;
}
/**
* A collection of values returned by getResolverEndpoints.
*/
export interface GetResolverEndpointsResult {
/**
* The direction of the endpoint.
*/
readonly direction?: string;
/**
* The collection of query.
*/
readonly endpoints: outputs.private_zone.GetResolverEndpointsEndpoint[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* The name of the endpoint.
*/
readonly name?: string;
readonly nameRegex?: string;
readonly outputFile?: string;
/**
* The project name of the endpoint.
*/
readonly projectName?: string;
/**
* The status of the endpoint.
*/
readonly status?: string;
readonly tagFilters?: outputs.private_zone.GetResolverEndpointsTagFilter[];
/**
* The total count of query.
*/
readonly totalCount: number;
/**
* The vpc id of the endpoint.
*/
readonly vpcId?: string;
}
/**
* Use this data source to query detailed information of private zone resolver endpoints
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.private_zone.getResolverEndpoints({});
* ```
*/
export declare function getResolverEndpointsOutput(args?: GetResolverEndpointsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetResolverEndpointsResult>;
/**
* A collection of arguments for invoking getResolverEndpoints.
*/
export interface GetResolverEndpointsOutputArgs {
/**
* The direction of the private zone resolver endpoint.
*/
direction?: pulumi.Input<string>;
/**
* The name of the private zone resolver endpoint.
*/
name?: pulumi.Input<string>;
/**
* A Name Regex of Resource.
*/
nameRegex?: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
/**
* The project name of the private zone resolver endpoint.
*/
projectName?: pulumi.Input<string>;
/**
* The status of the private zone resolver endpoint.
*/
status?: pulumi.Input<string>;
/**
* List of tag filters.
*/
tagFilters?: pulumi.Input<pulumi.Input<inputs.private_zone.GetResolverEndpointsTagFilterArgs>[]>;
/**
* The vpc ID of the private zone resolver endpoint.
*/
vpcId?: pulumi.Input<string>;
}