export declare const GoogleCloudDatacatalogLineageV1OriginSourceType: { /** * Source is Unspecified */ readonly SourceTypeUnspecified: "SOURCE_TYPE_UNSPECIFIED"; /** * A custom source */ readonly Custom: "CUSTOM"; /** * BigQuery */ readonly Bigquery: "BIGQUERY"; /** * Data Fusion */ readonly DataFusion: "DATA_FUSION"; /** * Composer */ readonly Composer: "COMPOSER"; /** * Looker Studio */ readonly LookerStudio: "LOOKER_STUDIO"; /** * Dataproc */ readonly Dataproc: "DATAPROC"; }; /** * Type of the source. Use of a source_type other than `CUSTOM` for process creation or updating is highly discouraged, and may be restricted in the future without notice. */ export type GoogleCloudDatacatalogLineageV1OriginSourceType = (typeof GoogleCloudDatacatalogLineageV1OriginSourceType)[keyof typeof GoogleCloudDatacatalogLineageV1OriginSourceType]; export declare const RunState: { /** * The state is unknown. The true state may be any of the below or a different state that is not supported here explicitly. */ readonly Unknown: "UNKNOWN"; /** * The run is still executing. */ readonly Started: "STARTED"; /** * The run completed. */ readonly Completed: "COMPLETED"; /** * The run failed. */ readonly Failed: "FAILED"; /** * The run aborted. */ readonly Aborted: "ABORTED"; }; /** * Required. The state of the run. */ export type RunState = (typeof RunState)[keyof typeof RunState];