@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
83 lines (82 loc) • 2.22 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to query detailed information of veenedge vpcs
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.veenedge.getVpcs({});
* ```
*/
/** @deprecated volcengine.veenedge.Vpcs has been deprecated in favor of volcengine.veenedge.getVpcs */
export declare function vpcs(args?: VpcsArgs, opts?: pulumi.InvokeOptions): Promise<VpcsResult>;
/**
* A collection of arguments for invoking Vpcs.
*/
export interface VpcsArgs {
/**
* A list of vpc IDs.
*/
ids?: string[];
/**
* A Name Regex of Vpc.
*/
nameRegex?: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
}
/**
* A collection of values returned by Vpcs.
*/
export interface VpcsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly ids?: string[];
readonly nameRegex?: string;
readonly outputFile?: string;
/**
* The total count of Vpc query.
*/
readonly totalCount: number;
/**
* The collection of Vpc query.
*/
readonly vpcInstances: outputs.veenedge.VpcsVpcInstance[];
}
/**
* Use this data source to query detailed information of veenedge vpcs
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.veenedge.getVpcs({});
* ```
*/
/** @deprecated volcengine.veenedge.Vpcs has been deprecated in favor of volcengine.veenedge.getVpcs */
export declare function vpcsOutput(args?: VpcsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<VpcsResult>;
/**
* A collection of arguments for invoking Vpcs.
*/
export interface VpcsOutputArgs {
/**
* A list of vpc IDs.
*/
ids?: pulumi.Input<pulumi.Input<string>[]>;
/**
* A Name Regex of Vpc.
*/
nameRegex?: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}