@finos/legend-graph
Version:
Legend graph and graph manager
54 lines • 1.89 kB
JavaScript
/**
* 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.
*/
export var V1_DataSubscriptionTargetType;
(function (V1_DataSubscriptionTargetType) {
V1_DataSubscriptionTargetType["BigQuery"] = "BigQuery";
V1_DataSubscriptionTargetType["Snowflake"] = "Snowflake";
})(V1_DataSubscriptionTargetType || (V1_DataSubscriptionTargetType = {}));
export class V1_DataSubscription {
guid;
dataContractId;
target;
createdBy;
}
export class V1_DataSubscriptionResponse {
subscriptions;
}
export class V1_DataSubscriptionTarget {
}
export class V1_SnowflakeTarget extends V1_DataSubscriptionTarget {
snowflakeAccountId;
snowflakeRegion;
snowflakeNetwork;
}
export var V1_SnowflakeRegion;
(function (V1_SnowflakeRegion) {
V1_SnowflakeRegion["AWS_US_EAST_1"] = "AWS_US_EAST_1";
V1_SnowflakeRegion["AWS_US_WEST_1"] = "AWS_US_WEST_1";
})(V1_SnowflakeRegion || (V1_SnowflakeRegion = {}));
export var V1_SnowflakeNetwork;
(function (V1_SnowflakeNetwork) {
V1_SnowflakeNetwork["PUBLIC"] = "PUBLIC";
V1_SnowflakeNetwork["GOLDMAN"] = "GOLDMAN";
})(V1_SnowflakeNetwork || (V1_SnowflakeNetwork = {}));
export class V1_BigQueryTarget extends V1_DataSubscriptionTarget {
gcpProjectId;
}
export class V1_CreateSubscriptionInput {
contractId;
target;
}
//# sourceMappingURL=V1_ConsumerSubscriptions.js.map