Skip to content

Commit

Permalink
chore: replace blockchain by application connector
Browse files Browse the repository at this point in the history
Part of INS-3739.
  • Loading branch information
jvallesm committed Feb 26, 2024
1 parent eed450c commit 6c5a610
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 6 additions & 2 deletions vdp/pipeline/v1beta/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,12 @@ enum ComponentType {
COMPONENT_TYPE_CONNECTOR_AI = 1;
// Connect with a remote data source.
COMPONENT_TYPE_CONNECTOR_DATA = 2;
// Connect with a blockchain service.
COMPONENT_TYPE_CONNECTOR_BLOCKCHAIN = 3;
// Blockchain connector is deprecated by
// COMPONENT_TYPE_CONNECTOR_APPLICATION.
COMPONENT_TYPE_CONNECTOR_BLOCKCHAIN = 3 [deprecated = true];
// Manipulate data.
COMPONENT_TYPE_OPERATOR = 4;
// Connect with an external application.
COMPONENT_TYPE_CONNECTOR_APPLICATION = 5;

}
6 changes: 4 additions & 2 deletions vdp/pipeline/v1beta/component_definition.proto
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,14 @@ enum ConnectorType {
CONNECTOR_TYPE_DESTINATION = 2;
// AI connector.
CONNECTOR_TYPE_AI = 3;
// Blockchain connector.
CONNECTOR_TYPE_BLOCKCHAIN = 4;
// Blockchain connector is deprecated by CONNECTOR_TYPE_APPLICATION.
CONNECTOR_TYPE_BLOCKCHAIN = 4 [deprecated = true];
// Data connector.
CONNECTOR_TYPE_DATA = 5;
// Operator connector.
CONNECTOR_TYPE_OPERATOR = 6;
// Application connector.
CONNECTOR_TYPE_APPLICATION = 7;
}

// A Connector is a type of pipeline component that queries, processes or sends
Expand Down

0 comments on commit 6c5a610

Please sign in to comment.