UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

108 lines (107 loc) 3.04 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"], * }); * ``` */ /** @deprecated volcengine.vpc.Ipv6Gateways has been deprecated in favor of volcengine.vpc.getIpv6Gateways */ export declare function ipv6Gateways(args?: Ipv6GatewaysArgs, opts?: pulumi.InvokeOptions): Promise<Ipv6GatewaysResult>; /** * A collection of arguments for invoking Ipv6Gateways. */ export interface Ipv6GatewaysArgs { /** * 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 Ipv6Gateways. */ export interface Ipv6GatewaysResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ids?: string[]; /** * The collection of Ipv6Gateway query. */ readonly ipv6Gateways: outputs.vpc.Ipv6GatewaysIpv6Gateway[]; /** * 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"], * }); * ``` */ /** @deprecated volcengine.vpc.Ipv6Gateways has been deprecated in favor of volcengine.vpc.getIpv6Gateways */ export declare function ipv6GatewaysOutput(args?: Ipv6GatewaysOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<Ipv6GatewaysResult>; /** * A collection of arguments for invoking Ipv6Gateways. */ export interface Ipv6GatewaysOutputArgs { /** * 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>[]>; }