@finos/legend-graph
Version:
Legend graph and graph manager
55 lines • 2.09 kB
TypeScript
/**
* Copyright (c) 2020-present, Goldman Sachs
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { type Hashable, type PlainObject } from '@finos/legend-shared';
import { PackageableElement, type PackageableElementVisitor } from '../packageableElements/PackageableElement.js';
import type { RawLambda } from '../rawValueSpecification/RawLambda.js';
export declare abstract class AccessPoint implements Hashable {
id: string;
description: string | undefined;
constructor(id: string);
get hashCode(): string;
}
export declare enum LakehouseTargetEnv {
Snowflake = "Snowflake",
Databricks = "Databricks",
BigQuery = "BigQuery",
DuckDb = "DuckDb"
}
export declare class LakehouseAccessPoint extends AccessPoint {
targetEnvironment: string;
func: RawLambda;
reproducible: boolean | undefined;
constructor(id: string, targetEnv: string, func: RawLambda);
get hashCode(): string;
}
export declare class UnknownAccessPoint extends AccessPoint {
content: PlainObject;
get hashCode(): string;
}
export declare class AccessPointGroup implements Hashable {
id: string;
description: string | undefined;
accessPoints: AccessPoint[];
get hashCode(): string;
}
export declare class DataProduct extends PackageableElement {
title: string | undefined;
description: string | undefined;
accessPointGroups: AccessPointGroup[];
accept_PackageableElementVisitor<T>(visitor: PackageableElementVisitor<T>): T;
protected get _elementHashCode(): string;
}
//# sourceMappingURL=DataProduct.d.ts.map