diff options
author | Piotr Stanior <piotr.stanior@t-mobile.pl> | 2021-01-08 14:03:30 +0100 |
---|---|---|
committer | Piotr Stanior <piotr.stanior@t-mobile.pl> | 2021-01-08 14:03:41 +0100 |
commit | 325ebe9b3778fdf8db7637042391f609f692d188 (patch) | |
tree | e856c56f6f28d9bcbe16ac99d4ee6c86eb777204 /docs/api-reference/media/bp-processor.postman_collection.json | |
parent | 63eb67ed6c6e36eb441b92ac0552f2e17ae5173a (diff) |
CDS add Swagger annotations for Model Type API
Issue-ID: CCSDK-3014
Change-Id: I469151beef8ebf63b3a24ca4ce9a047c0b80850a
Signed-off-by: Piotr Stanior <piotr.stanior@t-mobile.pl>
Diffstat (limited to 'docs/api-reference/media/bp-processor.postman_collection.json')
-rw-r--r-- | docs/api-reference/media/bp-processor.postman_collection.json | 233 |
1 files changed, 233 insertions, 0 deletions
diff --git a/docs/api-reference/media/bp-processor.postman_collection.json b/docs/api-reference/media/bp-processor.postman_collection.json index 2aabe1393..b87415db9 100644 --- a/docs/api-reference/media/bp-processor.postman_collection.json +++ b/docs/api-reference/media/bp-processor.postman_collection.json @@ -3659,6 +3659,239 @@ "protocolProfileBehavior": {} }, { + "name": "Model Type Catalog", + "item": [ + { + "name": "Save a model type", + "request": { + "auth": { + "type": "basic", + "basic": [ + { + "key": "username", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "password", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "showPassword", + "value": false, + "type": "boolean" + } + ] + }, + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\r\n \"modelName\": \"test\",\r\n \"derivedFrom\": \"test\",\r\n \"definitionType\": \"data_type\",\r\n \"definition\": {},\r\n \"description\": \"Some test\",\r\n \"version\": \"1.0\",\r\n \"tags\": \"test\",\r\n \"updatedBy\": \"test\"\r\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "http://{{host}}:{{port}}/api/v1/model-type/", + "protocol": "http", + "host": [ + "{{host}}" + ], + "port": "{{port}}", + "path": [ + "api", + "v1", + "model-type", + "" + ] + }, + "description": "Save a model type by model type definition provided." + }, + "response": [] + }, + { + "name": "Retrieve a list of model types", + "request": { + "auth": { + "type": "basic", + "basic": [ + { + "key": "username", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "password", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "showPassword", + "value": false, + "type": "boolean" + } + ] + }, + "method": "GET", + "header": [], + "url": { + "raw": "http://{{host}}:{{port}}/api/v1/model-type/by-definition/data_type", + "protocol": "http", + "host": [ + "{{host}}" + ], + "port": "{{port}}", + "path": [ + "api", + "v1", + "model-type", + "by-definition", + "data_type" + ] + }, + "description": "Retrieve a list of model types by definition type provided." + }, + "response": [] + }, + { + "name": "Retrieve a list of model types", + "request": { + "auth": { + "type": "basic", + "basic": [ + { + "key": "username", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "password", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "showPassword", + "value": false, + "type": "boolean" + } + ] + }, + "method": "GET", + "header": [], + "url": { + "raw": "http://{{host}}:{{port}}/api/v1/model-type/search/test", + "protocol": "http", + "host": [ + "{{host}}" + ], + "port": "{{port}}", + "path": [ + "api", + "v1", + "model-type", + "search", + "test" + ] + }, + "description": "Retrieve a list of model types by tags provided." + }, + "response": [] + }, + { + "name": "Retrieve a model type", + "request": { + "auth": { + "type": "basic", + "basic": [ + { + "key": "username", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "password", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "showPassword", + "value": false, + "type": "boolean" + } + ] + }, + "method": "GET", + "header": [], + "url": { + "raw": "http://{{host}}:{{port}}/api/v1/model-type/test", + "protocol": "http", + "host": [ + "{{host}}" + ], + "port": "{{port}}", + "path": [ + "api", + "v1", + "model-type", + "test" + ] + }, + "description": "Retrieve a model type by name provided." + }, + "response": [] + }, + { + "name": "Remove a model type", + "request": { + "auth": { + "type": "basic", + "basic": [ + { + "key": "username", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "password", + "value": "ccsdkapps", + "type": "string" + }, + { + "key": "showPassword", + "value": false, + "type": "boolean" + } + ] + }, + "method": "DELETE", + "header": [], + "url": { + "raw": "http://{{host}}:{{port}}/api/v1/model-type/test", + "protocol": "http", + "host": [ + "{{host}}" + ], + "port": "{{port}}", + "path": [ + "api", + "v1", + "model-type", + "test" + ] + }, + "description": "Remove a model type by name provided." + }, + "response": [] + } + ], + "description": "Manages data types in CDS", + "protocolProfileBehavior": {} + }, + { "name": "List all endpoints", "request": { "auth": { |