import * as pulumi from "@pulumi/pulumi"; /** * Creates a new ManagedZone in a given project and location. * Auto-naming is currently not supported for this resource. */ export declare class ManagedZone extends pulumi.CustomResource { /** * Get an existing ManagedZone 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): ManagedZone; /** * Returns true if the given object is an instance of ManagedZone. 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 ManagedZone; /** * Created time. */ readonly createTime: pulumi.Output; /** * Optional. Description of the resource. */ readonly description: pulumi.Output; /** * DNS Name of the resource */ readonly dns: pulumi.Output; /** * Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources */ readonly labels: pulumi.Output<{ [key: string]: string; }>; /** * Required. Identifier to assign to the ManagedZone. Must be unique within scope of the parent resource. */ readonly managedZoneId: pulumi.Output; /** * Resource name of the Managed Zone. Format: projects/{project}/locations/global/managedZones/{managed_zone} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The name of the Target Project */ readonly targetProject: pulumi.Output; /** * The name of the Target Project VPC Network */ readonly targetVpc: pulumi.Output; /** * Updated time. */ readonly updateTime: pulumi.Output; /** * Create a ManagedZone 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: ManagedZoneArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ManagedZone resource. */ export interface ManagedZoneArgs { /** * Optional. Description of the resource. */ description?: pulumi.Input; /** * DNS Name of the resource */ dns: pulumi.Input; /** * Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Required. Identifier to assign to the ManagedZone. Must be unique within scope of the parent resource. */ managedZoneId: pulumi.Input; project?: pulumi.Input; /** * The name of the Target Project */ targetProject: pulumi.Input; /** * The name of the Target Project VPC Network */ targetVpc: pulumi.Input; }