Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove delete table schema references #2257

Merged
merged 2 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions containers/daap-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.11] 2023-11-07

### Changed

- upload data now reflects POST

### Removed

- references to deleteTable schema

## [1.0.10] 2023-11-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion containers/daap-docs/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "daap-docs",
"version": "1.0.10",
"version": "1.0.11",
"registry": "ecr",
"ecr": {
"role": "arn:aws:iam::013433889002:role/modernisation-platform-oidc-cicd",
Expand Down
14 changes: 2 additions & 12 deletions containers/daap-docs/src/var/task/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"paths": {
"/data-product/{data-product-name}/table/{table-name}/upload": {
"get": {
"post": {
"tags": [
"Upload Data"
],
Expand Down Expand Up @@ -84,9 +84,6 @@
"description": "bad request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/deleteTable"
},
"examples": {
"Not string inputs": {
"summary": "Inputs not convertible to type string",
Expand Down Expand Up @@ -124,9 +121,6 @@
"description": "not found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/deleteTable"
},
"examples": {
"Data product registration not found": {
"summary": "Data product registration not found",
Expand Down Expand Up @@ -702,9 +696,6 @@
"description": "bad request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/deleteTable"
},
"examples": {
"Glue: Table Not Found": {
"summary": "Glue: Table Not Found",
Expand Down Expand Up @@ -802,8 +793,7 @@
},
"UploadDataRequest": {
"required": [
"database",
"table",
"filename",
"contentMD5"
],
"type": "object",
Expand Down
Loading