import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Private network resolution * * ## Import * * ```sh * $ pulumi import volcenginecc:privatezone/privateZone:PrivateZone example "zid" * ``` */ export declare class PrivateZone extends pulumi.CustomResource { /** * Get an existing PrivateZone 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?: PrivateZoneState, opts?: pulumi.CustomResourceOptions): PrivateZone; /** * Returns true if the given object is an instance of PrivateZone. 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 PrivateZone; /** * Domain creation time */ readonly createdAt: pulumi.Output; /** * Most recent operator */ readonly lastOperator: pulumi.Output; /** * Enable load balancing: 0 to disable, 1 to enable. Default is 0 */ readonly lineMode: pulumi.Output; /** * Name of the project the domain belongs to. Default is default */ readonly projectName: pulumi.Output; /** * Number of DNS records under the domain name */ readonly recordCount: pulumi.Output; /** * Enable recursive resolution: true to enable, false to disable. Default is false */ readonly recursionMode: pulumi.Output; /** * Remarks. Default is an empty string */ readonly remark: pulumi.Output; readonly tags: pulumi.Output; /** * Most recent update time of the domain */ readonly updatedAt: pulumi.Output; readonly vpcs: pulumi.Output; /** * Unique ID identifying the domain name */ readonly zid: pulumi.Output; /** * Domain name, can be a second-level or multi-level domain */ readonly zoneName: pulumi.Output; /** * Create a PrivateZone 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: PrivateZoneArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PrivateZone resources. */ export interface PrivateZoneState { /** * Domain creation time */ createdAt?: pulumi.Input; /** * Most recent operator */ lastOperator?: pulumi.Input; /** * Enable load balancing: 0 to disable, 1 to enable. Default is 0 */ lineMode?: pulumi.Input; /** * Name of the project the domain belongs to. Default is default */ projectName?: pulumi.Input; /** * Number of DNS records under the domain name */ recordCount?: pulumi.Input; /** * Enable recursive resolution: true to enable, false to disable. Default is false */ recursionMode?: pulumi.Input; /** * Remarks. Default is an empty string */ remark?: pulumi.Input; tags?: pulumi.Input[]>; /** * Most recent update time of the domain */ updatedAt?: pulumi.Input; vpcs?: pulumi.Input[]>; /** * Unique ID identifying the domain name */ zid?: pulumi.Input; /** * Domain name, can be a second-level or multi-level domain */ zoneName?: pulumi.Input; } /** * The set of arguments for constructing a PrivateZone resource. */ export interface PrivateZoneArgs { /** * Enable load balancing: 0 to disable, 1 to enable. Default is 0 */ lineMode?: pulumi.Input; /** * Name of the project the domain belongs to. Default is default */ projectName?: pulumi.Input; /** * Enable recursive resolution: true to enable, false to disable. Default is false */ recursionMode?: pulumi.Input; /** * Remarks. Default is an empty string */ remark?: pulumi.Input; tags?: pulumi.Input[]>; vpcs?: pulumi.Input[]>; /** * Domain name, can be a second-level or multi-level domain */ zoneName: pulumi.Input; }