Skip to content

Commit

Permalink
Add template server endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
arielshaqed committed Jul 3, 2022
1 parent c935081 commit 7aa8754
Show file tree
Hide file tree
Showing 17 changed files with 813 additions and 1 deletion.
30 changes: 30 additions & 0 deletions api/swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3516,3 +3516,33 @@ paths:
$ref: "#/components/schemas/StorageConfig"
401:
$ref: "#/components/responses/Unauthorized"
/templates:
get:
tags:
- templates
operationId: expandTemplate
description: fetch and expand template
parameters:
- in: query
name: template_location
required: true
schema:
type: string
description: URL of the template; must be relative (to a URL configured on the server).
- in: query
name: params
schema:
type: object
additionalProperties:
type: string
responses:
200:
description: expanded template
content:
"*/*":
schema:
format: binary
401:
$ref: "#/components/responses/Unauthorized"
default:
$ref: "#/components/responses/ServerError"
1 change: 1 addition & 0 deletions clients/java/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 45 additions & 0 deletions clients/java/api/openapi.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

97 changes: 97 additions & 0 deletions clients/java/docs/TemplatesApi.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

188 changes: 188 additions & 0 deletions clients/java/src/main/java/io/lakefs/clients/api/TemplatesApi.java

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7aa8754

Please sign in to comment.