UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

106 lines (105 loc) 2.85 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to query detailed information of vpc ipv6 gateways * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.vpc.getIpv6Gateways({ * ids: ["ipv6gw-12bcapllb5ukg17q7y2sd3thx"], * }); * ``` */ export declare function getIpv6Gateways(args?: GetIpv6GatewaysArgs, opts?: pulumi.InvokeOptions): Promise<GetIpv6GatewaysResult>; /** * A collection of arguments for invoking getIpv6Gateways. */ export interface GetIpv6GatewaysArgs { /** * The ID list of the Ipv6Gateways. */ ids?: string[]; /** * The name of the Ipv6Gateway. */ name?: string; /** * A Name Regex of the Ipv6Gateway. */ nameRegex?: string; /** * File name where to save data source results. */ outputFile?: string; /** * The ID list of the VPC which the Ipv6Gateway belongs to. */ vpcIds?: string[]; } /** * A collection of values returned by getIpv6Gateways. */ export interface GetIpv6GatewaysResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ids?: string[]; /** * The collection of Ipv6Gateway query. */ readonly ipv6Gateways: outputs.vpc.GetIpv6GatewaysIpv6Gateway[]; /** * The Name of the Ipv6Gateway. */ readonly name?: string; readonly nameRegex?: string; readonly outputFile?: string; /** * The total count of Ipv6Gateway query. */ readonly totalCount: number; readonly vpcIds?: string[]; } /** * Use this data source to query detailed information of vpc ipv6 gateways * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const default = volcengine.vpc.getIpv6Gateways({ * ids: ["ipv6gw-12bcapllb5ukg17q7y2sd3thx"], * }); * ``` */ export declare function getIpv6GatewaysOutput(args?: GetIpv6GatewaysOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetIpv6GatewaysResult>; /** * A collection of arguments for invoking getIpv6Gateways. */ export interface GetIpv6GatewaysOutputArgs { /** * The ID list of the Ipv6Gateways. */ ids?: pulumi.Input<pulumi.Input<string>[]>; /** * The name of the Ipv6Gateway. */ name?: pulumi.Input<string>; /** * A Name Regex of the Ipv6Gateway. */ nameRegex?: pulumi.Input<string>; /** * File name where to save data source results. */ outputFile?: pulumi.Input<string>; /** * The ID list of the VPC which the Ipv6Gateway belongs to. */ vpcIds?: pulumi.Input<pulumi.Input<string>[]>; }