import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Creates a new Data Fusion instance in the specified project and location. */ 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; /** * List of accelerators enabled for this CDF instance. */ readonly accelerators: pulumi.Output; /** * Endpoint on which the REST APIs is accessible. */ readonly apiEndpoint: pulumi.Output; /** * Available versions that the instance can be upgraded to using UpdateInstanceRequest. */ readonly availableVersion: pulumi.Output; /** * The time the instance was created. */ readonly createTime: pulumi.Output; /** * User-managed service account to set on Dataproc when Cloud Data Fusion creates Dataproc to run data processing pipelines. This allows users to have fine-grained access control on Dataproc's accesses to cloud resources. */ readonly dataprocServiceAccount: pulumi.Output; /** * A description of this instance. */ readonly description: pulumi.Output; /** * Display name for an instance. */ readonly displayName: pulumi.Output; /** * Option to enable granular role-based access control. */ readonly enableRbac: pulumi.Output; /** * Option to enable Stackdriver Logging. */ readonly enableStackdriverLogging: pulumi.Output; /** * Option to enable Stackdriver Monitoring. */ readonly enableStackdriverMonitoring: pulumi.Output; /** * Cloud Storage bucket generated by Data Fusion in the customer project. */ readonly gcsBucket: pulumi.Output; /** * The resource labels for instance to use to annotate any related underlying resources such as GCE VMs. The character '=' is not allowed to be used within the labels. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; /** * The name of this instance is in the form of projects/{project}/locations/{location}/instances/{instance}. */ readonly name: pulumi.Output; /** * Network configuration options. These are required when a private Data Fusion instance is to be created. */ readonly networkConfig: pulumi.Output; /** * Map of additional options used to configure the behavior of Data Fusion instance. */ readonly options: pulumi.Output<{ [key: string]: string; }>; /** * P4 service account for the customer project. */ readonly p4ServiceAccount: pulumi.Output; /** * Specifies whether the Data Fusion instance should be private. If set to true, all Data Fusion nodes will have private IP addresses and will not be able to access the public internet. */ readonly privateInstance: pulumi.Output; /** * Endpoint on which the Data Fusion UI is accessible. */ readonly serviceEndpoint: pulumi.Output; /** * The current state of this Data Fusion instance. */ readonly state: pulumi.Output; /** * Additional information about the current state of this Data Fusion instance if available. */ readonly stateMessage: pulumi.Output; /** * The name of the tenant project. */ readonly tenantProjectId: pulumi.Output; /** * Required. Instance type. */ readonly type: pulumi.Output; /** * The time the instance was last updated. */ readonly updateTime: pulumi.Output; /** * Current version of the Data Fusion. Only specifiable in Update. */ readonly version: pulumi.Output; /** * Name of the zone in which the Data Fusion instance will be created. Only DEVELOPER instances use this field. */ readonly zone: 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 { /** * List of accelerators enabled for this CDF instance. */ readonly accelerators?: pulumi.Input[]>; /** * Available versions that the instance can be upgraded to using UpdateInstanceRequest. */ readonly availableVersion?: pulumi.Input[]>; /** * User-managed service account to set on Dataproc when Cloud Data Fusion creates Dataproc to run data processing pipelines. This allows users to have fine-grained access control on Dataproc's accesses to cloud resources. */ readonly dataprocServiceAccount?: pulumi.Input; /** * A description of this instance. */ readonly description?: pulumi.Input; /** * Display name for an instance. */ readonly displayName?: pulumi.Input; /** * Option to enable granular role-based access control. */ readonly enableRbac?: pulumi.Input; /** * Option to enable Stackdriver Logging. */ readonly enableStackdriverLogging?: pulumi.Input; /** * Option to enable Stackdriver Monitoring. */ readonly enableStackdriverMonitoring?: pulumi.Input; readonly instancesId: pulumi.Input; /** * The resource labels for instance to use to annotate any related underlying resources such as GCE VMs. The character '=' is not allowed to be used within the labels. */ readonly labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; readonly locationsId: pulumi.Input; /** * Network configuration options. These are required when a private Data Fusion instance is to be created. */ readonly networkConfig?: pulumi.Input; /** * Map of additional options used to configure the behavior of Data Fusion instance. */ readonly options?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Specifies whether the Data Fusion instance should be private. If set to true, all Data Fusion nodes will have private IP addresses and will not be able to access the public internet. */ readonly privateInstance?: pulumi.Input; readonly projectsId: pulumi.Input; /** * Required. Instance type. */ readonly type?: pulumi.Input; /** * Current version of the Data Fusion. Only specifiable in Update. */ readonly version?: pulumi.Input; /** * Name of the zone in which the Data Fusion instance will be created. Only DEVELOPER instances use this field. */ readonly zone?: pulumi.Input; }