@finos/legend-graph
Version:
Legend graph and graph manager
55 lines • 2.5 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 { SerializationFactory } from '@finos/legend-shared';
export declare class V1_DataProductArtifactDataProduct {
path: string;
deploymentId: string;
description: string | undefined;
title: string | undefined;
static readonly serialization: SerializationFactory<V1_DataProductArtifactDataProduct>;
}
export declare class V1_DataProductArtifactResourceBuilder {
reproducible: boolean;
targetEnvironment: string;
script: string;
static readonly serialization: SerializationFactory<V1_DataProductArtifactResourceBuilder>;
}
export declare class V1_DataProductArtifactAccessPointImplementation {
id: string;
resourceBuilder: V1_DataProductArtifactResourceBuilder;
static readonly serialization: SerializationFactory<V1_DataProductArtifactAccessPointImplementation>;
}
export declare class V1_DataProductArtifactAccessPointGroup {
id: string;
description: string | undefined;
accessPointImplementations: V1_DataProductArtifactAccessPointImplementation[];
static readonly serialization: SerializationFactory<V1_DataProductArtifactAccessPointGroup>;
}
export declare class V1_DataProductArtifactGeneration {
dataProduct: V1_DataProductArtifactDataProduct;
accessPointGroups: V1_DataProductArtifactAccessPointGroup[];
static readonly serialization: SerializationFactory<V1_DataProductArtifactGeneration>;
}
export declare class V1_DataProductDefinitionAndArtifact {
definition: string;
artifact: V1_DataProductArtifactGeneration;
static readonly serialization: SerializationFactory<V1_DataProductDefinitionAndArtifact>;
}
export declare class V1_SandboxDataProductDeploymentResponse {
deployedDataProducts: V1_DataProductDefinitionAndArtifact[];
static readonly serialization: SerializationFactory<V1_SandboxDataProductDeploymentResponse>;
}
//# sourceMappingURL=V1_DataProductArtifact.d.ts.map