From 87ef7f1a67cc76c33cb7bae664f9213390e7e9b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20Garc=C3=ADa=20Veytia=20=28Puerco=29?= Date: Thu, 28 Nov 2024 21:23:05 -0600 Subject: [PATCH] Add deps DS types to proto MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds the deps data source types to the minder proto definitions. Signed-off-by: Adolfo GarcĂ­a Veytia (Puerco) --- proto/minder/v1/minder.proto | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/proto/minder/v1/minder.proto b/proto/minder/v1/minder.proto index 61d60c19f9..675a69770b 100644 --- a/proto/minder/v1/minder.proto +++ b/proto/minder/v1/minder.proto @@ -3820,9 +3820,20 @@ message DataSource { oneof driver { // rest is the REST data source driver. RestDataSource rest = 6; + + // deps is the dependencies extractor data source driver. + DepsDataSource deps = 7; } } +// DepsDataSource is the dependency data source driver +message DepsDataSource { + message Def { + } + + map def = 1; +} + // RestDataSource is the REST data source driver. message RestDataSource { message Def { @@ -3924,4 +3935,4 @@ message DataSourceReference { max_len: 200, } ]; -} \ No newline at end of file +}