import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a new Instance in a given project and location. * Auto-naming is currently not supported for this resource. */ export declare class Instance extends pulumi.CustomResource { /** * Get an existing Instance 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): Instance; /** * Returns true if the given object is an instance of Instance. 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 Instance; /** * Looker Instance Admin settings. */ readonly adminSettings: pulumi.Output; /** * Network name in the consumer project. Format: `projects/{project}/global/networks/{network}`. Note that the consumer network may be in a different GCP project than the consumer project that is hosting the Looker Instance. */ readonly consumerNetwork: pulumi.Output; /** * The time when the Looker instance provisioning was first requested. */ readonly createTime: pulumi.Output; readonly customDomain: pulumi.Output; /** * Maintenance denial period for this instance. */ readonly denyMaintenancePeriod: pulumi.Output; /** * Public Egress IP (IPv4). */ readonly egressPublicIp: pulumi.Output; /** * Encryption configuration (CMEK). Only set if CMEK has been enabled on the instance. */ readonly encryptionConfig: pulumi.Output; /** * Private Ingress IP (IPv4). */ readonly ingressPrivateIp: pulumi.Output; /** * Public Ingress IP (IPv4). */ readonly ingressPublicIp: pulumi.Output; /** * Required. The unique instance identifier. Must contain only lowercase letters, numbers, or hyphens, with the first character a letter and the last a letter or a number. 63 characters maximum. */ readonly instanceId: pulumi.Output; /** * Last computed maintenance denial period for this instance. */ readonly lastDenyMaintenancePeriod: pulumi.Output; readonly location: pulumi.Output; /** * Looker instance URI which can be used to access the Looker Instance UI. */ readonly lookerUri: pulumi.Output; /** * The Looker version that the instance is using. */ readonly lookerVersion: pulumi.Output; /** * Maintenance schedule for this instance. */ readonly maintenanceSchedule: pulumi.Output; /** * Maintenance window for this instance. */ readonly maintenanceWindow: pulumi.Output; /** * Format: `projects/{project}/locations/{location}/instances/{instance}`. */ readonly name: pulumi.Output; /** * Looker instance OAuth login settings. */ readonly oauthConfig: pulumi.Output; /** * Platform edition. */ readonly platformEdition: pulumi.Output; /** * Whether private IP is enabled on the Looker instance. */ readonly privateIpEnabled: pulumi.Output; readonly project: pulumi.Output; /** * Whether public IP is enabled on the Looker instance. */ readonly publicIpEnabled: pulumi.Output; /** * Name of a reserved IP address range within the Instance.consumer_network, to be used for private services access connection. May or may not be specified in a create request. */ readonly reservedRange: pulumi.Output; /** * The state of the instance. */ readonly state: pulumi.Output; /** * The time when the Looker instance was last updated. */ readonly updateTime: pulumi.Output; /** * User metadata. */ readonly userMetadata: pulumi.Output; /** * Create a Instance 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: InstanceArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Instance resource. */ export interface InstanceArgs { /** * Looker Instance Admin settings. */ adminSettings?: pulumi.Input; /** * Network name in the consumer project. Format: `projects/{project}/global/networks/{network}`. Note that the consumer network may be in a different GCP project than the consumer project that is hosting the Looker Instance. */ consumerNetwork?: pulumi.Input; customDomain?: pulumi.Input; /** * Maintenance denial period for this instance. */ denyMaintenancePeriod?: pulumi.Input; /** * Encryption configuration (CMEK). Only set if CMEK has been enabled on the instance. */ encryptionConfig?: pulumi.Input; /** * Required. The unique instance identifier. Must contain only lowercase letters, numbers, or hyphens, with the first character a letter and the last a letter or a number. 63 characters maximum. */ instanceId: pulumi.Input; location?: pulumi.Input; /** * Maintenance schedule for this instance. */ maintenanceSchedule?: pulumi.Input; /** * Maintenance window for this instance. */ maintenanceWindow?: pulumi.Input; /** * Looker instance OAuth login settings. */ oauthConfig?: pulumi.Input; /** * Platform edition. */ platformEdition?: pulumi.Input; /** * Whether private IP is enabled on the Looker instance. */ privateIpEnabled?: pulumi.Input; project?: pulumi.Input; /** * Whether public IP is enabled on the Looker instance. */ publicIpEnabled?: pulumi.Input; /** * Name of a reserved IP address range within the Instance.consumer_network, to be used for private services access connection. May or may not be specified in a create request. */ reservedRange?: pulumi.Input; /** * User metadata. */ userMetadata?: pulumi.Input; }