Skip to content

Commit

Permalink
OAS Update
Browse files Browse the repository at this point in the history
  • Loading branch information
stackit-pipeline committed Jun 25, 2024
1 parent 59134e3 commit d9f5780
Showing 1 changed file with 118 additions and 2 deletions.
120 changes: 118 additions & 2 deletions services/postgres-flex/v1/postgres-flex.json
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,123 @@
},
"type": "object"
},
"api.Configuration": {
"properties": {
"name": {
"type": "string"
},
"setting": {
"type": "string"
}
},
"type": "object"
},
"api.ExtensionConfigLoadResponse": {
"properties": {
"configuration": {
"description": "Returns marshalled JSON of the new configuration of whatever extension is called",
"items": {
"$ref": "#/components/schemas/api.Configuration"
},
"type": "array"
}
},
"type": "object"
},
"api.ExtensionConfigureResponse": {
"properties": {
"configuration": {
"description": "Returns marshalled JSON of the new configuration of whatever extension is called",
"items": {
"$ref": "#/components/schemas/api.Configuration"
},
"type": "array"
}
},
"type": "object"
},
"api.ExtensionDeleteResponse": {
"properties": {
"isSucceded": {
"type": "boolean"
}
},
"type": "object"
},
"api.ExtensionList": {
"properties": {
"ID": {
"type": "integer"
},
"description": {
"type": "string"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"api.ExtensionLoadResponse": {
"properties": {
"extension": {
"$ref": "#/components/schemas/api.ExtensionList"
}
},
"type": "object"
},
"api.InstallResponse": {
"properties": {
"extension": {
"$ref": "#/components/schemas/api.ExtensionList"
}
},
"type": "object"
},
"api.InstalledListResponse": {
"properties": {
"installed": {
"items": {
"$ref": "#/components/schemas/api.ExtensionList"
},
"type": "array"
}
},
"type": "object"
},
"extensions.Configuration": {
"properties": {
"name": {
"type": "string"
},
"setting": {
"type": "string"
}
},
"type": "object"
},
"extensions.ExtensionListResponse": {
"properties": {
"list": {
"items": {
"$ref": "#/components/schemas/api.ExtensionList"
},
"type": "array"
}
},
"type": "object"
},
"extensions.NewConfig": {
"properties": {
"configuration": {
"items": {
"$ref": "#/components/schemas/extensions.Configuration"
},
"type": "array"
}
},
"type": "object"
},
"instance.ListInstance": {
"properties": {
"id": {
Expand Down Expand Up @@ -572,8 +689,7 @@
"description": "This is the documentation for the STACKIT postgres service",
"termsOfService": "https://www.stackit.de/en/general-terms-and-conditions/",
"title": "STACKIT PostgreSQL Flex API",
"version": "1.0.0",
"x-stackit-timeout": "15m"
"version": "1.0.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down

0 comments on commit d9f5780

Please sign in to comment.