import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Cloud Enterprise Network (CEN) provides fast, high-quality, and stable networking capabilities to quickly build private networks (VPC) across regions and between on-premises data centers (IDC), helping you create a global cloud network with enterprise-scale and communication capabilities * * ## Import * * ```sh * $ pulumi import volcenginecc:cen/cen:Cen example "cen_id" * ``` */ export declare class Cen extends pulumi.CustomResource { /** * Get an existing Cen 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, state?: CenState, opts?: pulumi.CustomResourceOptions): Cen; /** * Returns true if the given object is an instance of Cen. 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 Cen; /** * Account ID to which the CEN instance belongs */ readonly accountId: pulumi.Output; /** * Bandwidth package ID */ readonly cenBandwidthPackageIds: pulumi.Output; /** * CEN instance ID */ readonly cenId: pulumi.Output; /** * Name of the CEN instance. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If not specified, defaults to the CEN instance ID */ readonly cenName: pulumi.Output; /** * Time when the CEN instance was created */ readonly creationTime: pulumi.Output; /** * Description for the CEN instance. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to empty */ readonly description: pulumi.Output; readonly instances: pulumi.Output; /** * Name of the project to which the CEN instance belongs. If not specified, defaults to 'default' */ readonly projectName: pulumi.Output; /** * Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available */ readonly status: pulumi.Output; readonly tags: pulumi.Output; /** * Time when the CEN instance was updated */ readonly updateTime: pulumi.Output; /** * Create a Cen 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?: CenArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Cen resources. */ export interface CenState { /** * Account ID to which the CEN instance belongs */ accountId?: pulumi.Input; /** * Bandwidth package ID */ cenBandwidthPackageIds?: pulumi.Input[]>; /** * CEN instance ID */ cenId?: pulumi.Input; /** * Name of the CEN instance. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If not specified, defaults to the CEN instance ID */ cenName?: pulumi.Input; /** * Time when the CEN instance was created */ creationTime?: pulumi.Input; /** * Description for the CEN instance. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to empty */ description?: pulumi.Input; instances?: pulumi.Input[]>; /** * Name of the project to which the CEN instance belongs. If not specified, defaults to 'default' */ projectName?: pulumi.Input; /** * Status of the CEN instance. Creating: Creating Deleting: Deleting Pending: Configuring Available: Available */ status?: pulumi.Input; tags?: pulumi.Input[]>; /** * Time when the CEN instance was updated */ updateTime?: pulumi.Input; } /** * The set of arguments for constructing a Cen resource. */ export interface CenArgs { /** * Name of the CEN instance. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If not specified, defaults to the CEN instance ID */ cenName?: pulumi.Input; /** * Description for the CEN instance. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If not specified, defaults to empty */ description?: pulumi.Input; instances?: pulumi.Input[]>; /** * Name of the project to which the CEN instance belongs. If not specified, defaults to 'default' */ projectName?: pulumi.Input; tags?: pulumi.Input[]>; }