@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
116 lines (115 loc) • 3.32 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 privatelink vpc gateway endpoints
*/
/** @deprecated volcengine.privatelink.VpcGatewayEndpoints has been deprecated in favor of volcengine.privatelink.getVpcGatewayEndpoints */
export declare function vpcGatewayEndpoints(args?: VpcGatewayEndpointsArgs, opts?: pulumi.InvokeOptions): Promise<VpcGatewayEndpointsResult>;
/**
* A collection of arguments for invoking VpcGatewayEndpoints.
*/
export interface VpcGatewayEndpointsArgs {
/**
* The name of the gateway endpoint.
*/
endpointName?: string;
/**
* A list of gateway endpoint IDs.
*/
ids?: string[];
/**
* A Name Regex of gateway endpoint.
*/
nameRegex?: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
/**
* The project name of the gateway endpoint.
*/
projectName?: string;
/**
* Tags.
*/
tags?: inputs.privatelink.VpcGatewayEndpointsTag[];
/**
* The id of the vpc.
*/
vpcId?: string;
}
/**
* A collection of values returned by VpcGatewayEndpoints.
*/
export interface VpcGatewayEndpointsResult {
/**
* The name of the gateway endpoint.
*/
readonly endpointName?: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly ids?: string[];
readonly nameRegex?: string;
readonly outputFile?: string;
/**
* The project name of the gateway endpoint.
*/
readonly projectName?: string;
/**
* Tags.
*/
readonly tags?: outputs.privatelink.VpcGatewayEndpointsTag[];
/**
* The total count of query.
*/
readonly totalCount: number;
/**
* The collection of query.
*/
readonly vpcGatewayEndpoints: outputs.privatelink.VpcGatewayEndpointsVpcGatewayEndpoint[];
/**
* The id of the vpc.
*/
readonly vpcId?: string;
}
/**
* Use this data source to query detailed information of privatelink vpc gateway endpoints
*/
/** @deprecated volcengine.privatelink.VpcGatewayEndpoints has been deprecated in favor of volcengine.privatelink.getVpcGatewayEndpoints */
export declare function vpcGatewayEndpointsOutput(args?: VpcGatewayEndpointsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<VpcGatewayEndpointsResult>;
/**
* A collection of arguments for invoking VpcGatewayEndpoints.
*/
export interface VpcGatewayEndpointsOutputArgs {
/**
* The name of the gateway endpoint.
*/
endpointName?: pulumi.Input<string>;
/**
* A list of gateway endpoint IDs.
*/
ids?: pulumi.Input<pulumi.Input<string>[]>;
/**
* A Name Regex of gateway endpoint.
*/
nameRegex?: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
/**
* The project name of the gateway endpoint.
*/
projectName?: pulumi.Input<string>;
/**
* Tags.
*/
tags?: pulumi.Input<pulumi.Input<inputs.privatelink.VpcGatewayEndpointsTagArgs>[]>;
/**
* The id of the vpc.
*/
vpcId?: pulumi.Input<string>;
}