Skip to content

Commit

Permalink
feat(pipeline): add integration read endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
jvallesm committed Aug 27, 2024
1 parent d4cbeab commit f628d0c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions config/settings-env/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -1216,6 +1216,24 @@
"filter",
"orderBy"
]
},
{
"endpoint": "/v1beta/integrations",
"url_pattern": "/v1beta/integrations",
"method": "GET",
"timeout": "30s",
"input_query_strings": [
"pageSize",
"pageToken",
"filter"
]
},
{
"endpoint": "/v1beta/integrations/{id}",
"url_pattern": "/v1beta/integrations/{id}",
"method": "GET",
"timeout": "30s",
"input_query_strings": ["view"]
}
],
"no_auth": [
Expand Down Expand Up @@ -1810,6 +1828,18 @@
"url_pattern": "/vdp.pipeline.v1beta.PipelinePublicService/DeleteOrganizationSecret",
"method": "POST",
"timeout": "5s"
},
{
"endpoint": "/vdp.pipeline.v1beta.PipelinePublicService/GetIntegration",
"url_pattern": "/vdp.pipeline.v1beta.PipelinePublicService/GetIntegration",
"method": "POST",
"timeout": "5s"
},
{
"endpoint": "/vdp.pipeline.v1beta.PipelinePublicService/ListIntegrations",
"url_pattern": "/vdp.pipeline.v1beta.PipelinePublicService/ListIntegrations",
"method": "POST",
"timeout": "5s"
}
],
"grpc_no_auth": [
Expand Down

0 comments on commit f628d0c

Please sign in to comment.