Skip to content

Commit

Permalink
Merge branch 'feature/metadata-cmd' of github.com:MarquezProject/marq…
Browse files Browse the repository at this point in the history
…uez into feature/metadata-cmd
  • Loading branch information
wslulciuc committed Aug 26, 2022
2 parents f0f65cf + b6a21ec commit ddf8630
Show file tree
Hide file tree
Showing 3 changed files with 845 additions and 832 deletions.
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ postgresql:
## @param image.tag PostgreSQL image tag (immutable tags are recommended)
##
image:
tag: 0.25.0
tag: 12.1.0
## Authentication parameters
## ref: https://github.com/bitnami/bitnami-docker-postgresql/blob/master/README.md#setting-the-root-password-on-first-run
## ref: https://github.com/bitnami/bitnami-docker-postgresql/blob/master/README.md#creating-a-database-on-first-run
Expand Down
1,657 changes: 833 additions & 824 deletions docs/openapi.html

Large diffs are not rendered by default.

18 changes: 11 additions & 7 deletions spec/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,9 @@ components:
schema:
type: string
example: dataset:food_delivery:public.delivery_7_days
description: The ID of the node.
description: The ID of the node. A node can either be a dataset node or a job node. The format of
nodeId for dataset is `dataset:<namespace_of_dataset>:<name_of_the_dataset>` and for job is
`job:<namespace_of_the_job>:<name_of_the_job>`.
required: true

depth:
Expand Down Expand Up @@ -850,7 +852,7 @@ components:
$ref: '#/components/schemas/Source'

DatasetType:
type: enum
type: string
enum: [DB_TABLE, STREAM]
description: The type of dataset

Expand Down Expand Up @@ -1256,7 +1258,7 @@ components:
$ref: '#/components/schemas/Tag'

JobType:
type: enum
type: string
enum: [BATCH, STREAM, SERVICE]
description: The type of the job.

Expand Down Expand Up @@ -1690,7 +1692,7 @@ components:
$ref: '#/components/schemas/GraphEdge'

NodeType:
type: enum
type: string
enum: [ JOB, DATASET ]
description: The type of the diff node.

Expand Down Expand Up @@ -1768,11 +1770,13 @@ components:
example: food_delivery
nodeId:
type: string
description: The ID of the dataset or job node.
example: dataset:food_delivery:public.delivery_7_days
description: The ID of the node. A node can either be a dataset node or a job node. The format of
nodeId for dataset is `dataset:<namespace_of_dataset>:<name_of_the_dataset>` and for job is
`job:<namespace_of_the_job>:<name_of_the_job>`.
example: 'dataset:food_delivery:public.delivery_7_days'

SearchResultType:
type: enum
type: string
enum: [DATASET, JOB]
description: The type of search result.
example: DATASET

0 comments on commit ddf8630

Please sign in to comment.