UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

127 lines (126 loc) 3.81 kB
import * as pulumi from "@pulumi/pulumi"; /** * Provides a resource to manage vpc ipv6 gateway * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const foo = new volcengine.vpc.Ipv6Gateway("foo", { * description: "test", * vpcId: "vpc-12afxho4sxyio17q7y2kkp8ej", * }); * ``` * * ## Import * * Ipv6Gateway can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:vpc/ipv6Gateway:Ipv6Gateway default ipv6gw-12bcapllb5ukg17q7y2sd3thx * ``` */ export declare class Ipv6Gateway extends pulumi.CustomResource { /** * Get an existing Ipv6Gateway resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: Ipv6GatewayState, opts?: pulumi.CustomResourceOptions): Ipv6Gateway; /** * Returns true if the given object is an instance of Ipv6Gateway. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Ipv6Gateway; /** * Creation time of the Ipv6Gateway. */ readonly creationTime: pulumi.Output<string>; /** * The description of the Ipv6Gateway. */ readonly description: pulumi.Output<string>; /** * The ID of the Ipv6Gateway. */ readonly ipv6GatewayId: pulumi.Output<string>; /** * The name of the Ipv6Gateway. */ readonly name: pulumi.Output<string>; /** * The Status of the Ipv6Gateway. */ readonly status: pulumi.Output<string>; /** * Update time of the Ipv6Gateway. */ readonly updateTime: pulumi.Output<string>; /** * The ID of the VPC which the Ipv6Gateway belongs to. */ readonly vpcId: pulumi.Output<string>; /** * Create a Ipv6Gateway resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: Ipv6GatewayArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Ipv6Gateway resources. */ export interface Ipv6GatewayState { /** * Creation time of the Ipv6Gateway. */ creationTime?: pulumi.Input<string>; /** * The description of the Ipv6Gateway. */ description?: pulumi.Input<string>; /** * The ID of the Ipv6Gateway. */ ipv6GatewayId?: pulumi.Input<string>; /** * The name of the Ipv6Gateway. */ name?: pulumi.Input<string>; /** * The Status of the Ipv6Gateway. */ status?: pulumi.Input<string>; /** * Update time of the Ipv6Gateway. */ updateTime?: pulumi.Input<string>; /** * The ID of the VPC which the Ipv6Gateway belongs to. */ vpcId?: pulumi.Input<string>; } /** * The set of arguments for constructing a Ipv6Gateway resource. */ export interface Ipv6GatewayArgs { /** * The description of the Ipv6Gateway. */ description?: pulumi.Input<string>; /** * The name of the Ipv6Gateway. */ name?: pulumi.Input<string>; /** * The ID of the VPC which the Ipv6Gateway belongs to. */ vpcId: pulumi.Input<string>; }