import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets details of a single Data Fusion instance. */ export declare function getInstance(args: GetInstanceArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetInstanceArgs { instanceId: string; location: string; project?: string; } export interface GetInstanceResult { /** * List of accelerators enabled for this CDF instance. */ readonly accelerators: outputs.datafusion.v1beta1.AcceleratorResponse[]; /** * Endpoint on which the REST APIs is accessible. */ readonly apiEndpoint: string; /** * Available versions that the instance can be upgraded to using UpdateInstanceRequest. */ readonly availableVersion: outputs.datafusion.v1beta1.VersionResponse[]; /** * The time the instance was created. */ readonly createTime: string; /** * The crypto key configuration. This field is used by the Customer-Managed Encryption Keys (CMEK) feature. */ readonly cryptoKeyConfig: outputs.datafusion.v1beta1.CryptoKeyConfigResponse; /** * 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: string; /** * A description of this instance. */ readonly description: string; /** * If the instance state is DISABLED, the reason for disabling the instance. */ readonly disabledReason: string[]; /** * Display name for an instance. */ readonly displayName: string; /** * Option to enable granular role-based access control. */ readonly enableRbac: boolean; /** * Option to enable Stackdriver Logging. */ readonly enableStackdriverLogging: boolean; /** * Option to enable Stackdriver Monitoring. */ readonly enableStackdriverMonitoring: boolean; /** * Option to enable zone separation. */ readonly enableZoneSeparation: boolean; /** * Option to enable and pass metadata for event publishing. */ readonly eventPublishConfig: outputs.datafusion.v1beta1.EventPublishConfigResponse; /** * Cloud Storage bucket generated by Data Fusion in the customer project. */ readonly gcsBucket: string; /** * The resource labels for instance to use to annotate any related underlying resources such as Compute Engine VMs. The character '=' is not allowed to be used within the labels. */ readonly labels: { [key: string]: string; }; /** * The name of this instance is in the form of projects/{project}/locations/{location}/instances/{instance}. */ readonly name: string; /** * Network configuration options. These are required when a private Data Fusion instance is to be created. */ readonly networkConfig: outputs.datafusion.v1beta1.NetworkConfigResponse; /** * Map of additional options used to configure the behavior of Data Fusion instance. */ readonly options: { [key: string]: string; }; /** * P4 service account for the customer project. */ readonly p4ServiceAccount: string; /** * Optional. Current patch revision of the Data Fusion. */ readonly patchRevision: string; /** * 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: boolean; /** * Reserved for future use. */ readonly satisfiesPzs: boolean; /** * Deprecated. Use tenant_project_id instead to extract the tenant project ID. * * @deprecated Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID. */ readonly serviceAccount: string; /** * Endpoint on which the Data Fusion UI is accessible. */ readonly serviceEndpoint: string; /** * The current state of this Data Fusion instance. */ readonly state: string; /** * Additional information about the current state of this Data Fusion instance if available. */ readonly stateMessage: string; /** * The name of the tenant project. */ readonly tenantProjectId: string; /** * Instance type. */ readonly type: string; /** * The time the instance was last updated. */ readonly updateTime: string; /** * Current version of Data Fusion. */ readonly version: string; /** * Endpoint on which the Data Fusion UI is accessible to third-party users. */ readonly workforceIdentityServiceEndpoint: string; /** * Name of the zone in which the Data Fusion instance will be created. Only DEVELOPER instances use this field. */ readonly zone: string; } /** * Gets details of a single Data Fusion instance. */ export declare function getInstanceOutput(args: GetInstanceOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetInstanceOutputArgs { instanceId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }