aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSingal, Kapil (ks220y) <ks220y@att.com>2022-08-07 20:20:06 -0400
committerKAPIL SINGAL <ks220y@att.com>2022-08-22 19:30:33 +0000
commitedd7b5679350130e8cf5b2de01140dc09d01a80c (patch)
tree246b4427ebd76dc378e22ea94b5cd2cbd494c377
parentcc2dbf6d08840ba0e105e44022568d9afd130273 (diff)
Refactoring to support H2 DB for local run
Updating pom.xml to remove scope test for H2 DB Updating H2DB version to 1.4.200 Updating application-dev.properties DB properties to H2 DB Issue-ID: CCSDK-3740 Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com> Change-Id: I57f90a0b0788510ab736d2f9dce28a0cbf3da12d
-rw-r--r--docs/api-reference/media/cds-bp-processor-api-swagger.json4592
-rwxr-xr-xms/blueprintsprocessor/application/src/main/resources/application-dev.properties22
-rw-r--r--ms/blueprintsprocessor/modules/inbounds/pom.xml1
-rwxr-xr-xms/blueprintsprocessor/parent/pom.xml7
-rw-r--r--ms/py-executor/resource_resolution/README.md4
-rw-r--r--ms/py-executor/resource_resolution/tests/http_client_test.py4
6 files changed, 2314 insertions, 2316 deletions
diff --git a/docs/api-reference/media/cds-bp-processor-api-swagger.json b/docs/api-reference/media/cds-bp-processor-api-swagger.json
index 7ad3f800f..8eaf25a89 100644
--- a/docs/api-reference/media/cds-bp-processor-api-swagger.json
+++ b/docs/api-reference/media/cds-bp-processor-api-swagger.json
@@ -1,2297 +1,2297 @@
-{
- "swagger" : "2.0",
- "info" : {
- "description" : "Shows all resources and endpoints which CDS BP processor currently provides with sample requests/responses, parameter description and other information.",
- "version" : "v1",
- "title" : "CDS Blueprint Processor API Reference",
- "termsOfService" : "https://www.onap.org/",
- "contact" : {
- "name" : "ONAP Community",
- "url" : "https://www.onap.org/",
- "email" : "onap-discuss@lists.onap.org"
- },
- "license" : {
- "name" : "Apache 2.0",
- "url" : "http://www.apache.org/licenses/LICENSE-2.0.html"
- }
- },
- "host" : "localhost:8080",
- "tags" : [ {
- "name" : "Blueprint Model Catalog",
- "description" : "Manages all blueprint models which are available in CDS"
- }, {
- "name" : "Model Type Catalog",
- "description" : "Manages data types in CDS"
- }, {
- "name" : "Resource configuration",
- "description" : "Interaction with stored configurations"
- }, {
- "name" : "Resource dictionary",
- "description" : "Interaction with stored dictionaries"
- }, {
- "name" : "Resource template",
- "description" : "Interaction with resolved templates"
- }, {
- "name" : "Resources",
- "description" : "Interaction with resolved resources"
- } ],
- "schemes" : [ "http" ],
- "paths" : {
- "/api/v1/blueprint-model" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "List all Blueprint Models",
- "description" : "Lists all meta-data of blueprint models which are saved in CDS.",
- "operationId" : "BlueprintModelController_allBlueprintModel_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "responses" : {
- "200" : {
- "description" : "OK",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/BlueprintModelSearch"
- }
- }
- },
- "500" : {
- "description" : "Internal Server Error"
- }
- }
- },
- "post" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Save a Blueprint Model",
- "description" : "Saves a blueprint model by the given CBA zip file input. There is no validation of the attached CBA happening when this API is called.",
- "operationId" : "BlueprintModelController_saveBlueprint_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "multipart/form-data" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "file",
- "description" : "CBA file to be uploaded (example: cba.zip)",
- "required" : true,
- "schema" : {
- "$ref" : "#/definitions/FilePart"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "OK",
- "schema" : {
- "$ref" : "#/definitions/BlueprintModelSearch"
- }
- },
- "500" : {
- "description" : "Internal Server Error"
- }
- }
- }
- },
- "/api/v1/blueprint-model/bootstrap" : {
- "post" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Bootstrap CDS",
- "description" : "Loads all Model Types, Resource Dictionaries and Blueprint Models which are included in CDS by default. Before starting to work with CDS, bootstrap should be called to load all the basic models that each orginization might support. Parameter values can be set as `false` to skip loading e.g. the Resource Dictionaries but this is not recommended.",
- "operationId" : "BlueprintModelController_bootstrap_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "application/json" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "body",
- "description" : "Specifies which elements to load",
- "required" : true,
- "schema" : {
- "$ref" : "#/definitions/BootstrapRequest"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "OK",
- "schema" : {
- "type" : "object"
- }
- },
- "500" : {
- "description" : "Internal Server Error"
- }
- }
- }
- },
- "/api/v1/blueprint-model/by-name/{name}/version/{version}" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Get a Blueprint Model by Name and Version",
- "description" : "Get Meta-Data of a Blueprint Model by its name and version.",
- "operationId" : "BlueprintModelController_getBlueprintByNameAndVersion_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "name",
- "in" : "path",
- "description" : "Name of the blueprint model",
- "required" : true,
- "type" : "string",
- "x-example" : "pnf_netconf"
- }, {
- "name" : "version",
- "in" : "path",
- "description" : "Version of the blueprint model",
- "required" : true,
- "type" : "string",
- "x-example" : "1.0.0"
- } ],
- "responses" : {
- "200" : {
- "description" : "OK",
- "schema" : {
- "$ref" : "#/definitions/BlueprintModelSearch"
- }
- },
- "404" : {
- "description" : "Not Found"
- }
- }
- }
- },
- "/api/v1/blueprint-model/download/by-name/{name}/version/{version}" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Download a Blueprint Model",
- "description" : "Gets the CBA of a blueprint model by its name and version. Response can be saved to a file to download the CBA.",
- "operationId" : "BlueprintModelController_downloadBlueprintByNameAndVersion_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "name",
- "in" : "path",
- "description" : "Name of the blueprint model",
- "required" : true,
- "type" : "string",
- "x-example" : "pnf_netconf"
- }, {
- "name" : "version",
- "in" : "path",
- "description" : "Version of the blueprint model",
- "required" : true,
- "type" : "string",
- "x-example" : "1.0.0"
- } ],
- "responses" : {
- "200" : {
- "description" : "OK",
- "schema" : {
- "type" : "object"
- }
- },
- "404" : {
- "description" : "Not Found"
- }
- }
- }
- },
- "/api/v1/blueprint-model/download/{id}" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Download a Blueprint Model by ID",
- "description" : "Gets the CBA of a blueprint model by its ID. Response can be saved to a file to download the CBA.",
- "operationId" : "BlueprintModelController_downloadBluePrint_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "id",
- "in" : "path",
- "description" : "ID of the blueprint model to download",
- "required" : true,
- "type" : "string",
- "x-example" : "67ec1f96-ab55-4b81-aff9-23ee0ed1d7a4"
- } ],
- "responses" : {
- "200" : {
- "description" : "OK",
- "schema" : {
- "type" : "object"
- }
- },
- "404" : {
- "description" : "Not Found"
- }
- }
- }
- },
- "/api/v1/blueprint-model/enrich" : {
- "post" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Enrich a Blueprint Model",
- "description" : "Enriches the attached CBA and returns the enriched CBA zip file in the response. The enrichment process will complete the package by providing all the definition of types used.",
- "operationId" : "BlueprintModelController_enrichBlueprint_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "multipart/form-data" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "file",
- "description" : "CBA zip file to be uploaded (example: cba_unenriched.zip)",
- "required" : true,
- "schema" : {
- "$ref" : "#/definitions/FilePart"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "object"
- }
- }
- }
- }
- },
- "/api/v1/blueprint-model/enrichandpublish" : {
- "post" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Enrich and publish a Blueprint Model",
- "description" : "Enriches the attached CBA, validates it and saves it in CDS if validation was successful.",
- "operationId" : "BlueprintModelController_enrichAndPubishlueprint_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "multipart/form-data" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "file",
- "description" : "Unenriched CBA zip file to be uploaded (example: cba_unenriched.zip)",
- "required" : true,
- "schema" : {
- "$ref" : "#/definitions/FilePart"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "OK",
- "schema" : {
- "$ref" : "#/definitions/BlueprintModelSearch"
- }
- },
- "503" : {
- "description" : "Service Unavailable"
- }
- }
- }
- },
- "/api/v1/blueprint-model/meta-data/{keyword}" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Search for Blueprints by a Keyword",
- "description" : "Lists all blueprint models by a matching keyword in any of the meta-data of the blueprint models. Blueprint models are just returned if a whole keyword is matching, not just parts of it. Not case-sensitive. Used by CDS UI.",
- "operationId" : "BlueprintModelController_allBlueprintModelMetaData_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "keyword",
- "in" : "path",
- "description" : "Keyword to search for in blueprint model meta-data",
- "required" : true,
- "type" : "string",
- "x-example" : "pnf_netconf"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/BlueprintModelSearch"
- }
- }
- }
- }
- }
- },
- "/api/v1/blueprint-model/name/{name}/version/{version}" : {
- "delete" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Delete a Blueprint Model by Name",
- "description" : "Deletes a blueprint model identified by its name and version from CDS.",
- "operationId" : "BlueprintModelController_deleteBlueprintByName_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "parameters" : [ {
- "name" : "name",
- "in" : "path",
- "description" : "Name of the blueprint model",
- "required" : true,
- "type" : "string",
- "x-example" : "pnf_netconf"
- }, {
- "name" : "version",
- "in" : "path",
- "description" : "Version of the blueprint model",
- "required" : true,
- "type" : "string",
- "x-example" : "1.0.0"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "object"
- }
- }
- }
- }
- },
- "/api/v1/blueprint-model/paged" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Get Blueprints ordered",
- "description" : "Lists all blueprint models which are saved in CDS in an ordered mode.",
- "operationId" : "BlueprintModelController_allBlueprintModelPaged_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "limit",
- "in" : "query",
- "description" : "Maximum number of returned blueprint models",
- "required" : false,
- "type" : "integer",
- "default" : 20,
- "format" : "int32"
- }, {
- "name" : "offset",
- "in" : "query",
- "description" : "Offset",
- "required" : false,
- "type" : "integer",
- "default" : 0,
- "format" : "int32"
- }, {
- "name" : "sort",
- "in" : "query",
- "description" : "Order of returned blueprint models",
- "required" : false,
- "type" : "string",
- "default" : "DATE",
- "enum" : [ "DATE", "NAME", "VERSION" ]
- }, {
- "name" : "sortType",
- "in" : "query",
- "description" : "Ascend or descend ordering",
- "required" : false,
- "type" : "string",
- "default" : "ASC"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/PageBlueprintModelSearch"
- }
- }
- }
- }
- },
- "/api/v1/blueprint-model/paged/meta-data/{keyword}" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Search for Blueprints by a Keyword in an ordered mode",
- "description" : "Lists all blueprint models by a matching keyword in any of the meta-data of the blueprint models in an ordered mode. Blueprint models are just returned if a whole keyword is matching, not just parts of it. Not case-sensitive. Used by CDS UI.",
- "operationId" : "BlueprintModelController_allBlueprintModelMetaDataPaged_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "keyword",
- "in" : "path",
- "description" : "Keyword to search for in blueprint model meta-data",
- "required" : true,
- "type" : "string",
- "x-example" : "pnf_netconf"
- }, {
- "name" : "limit",
- "in" : "query",
- "description" : "Maximum number of returned blueprint models",
- "required" : false,
- "type" : "integer",
- "default" : 20,
- "format" : "int32"
- }, {
- "name" : "offset",
- "in" : "query",
- "description" : "Offset",
- "required" : false,
- "type" : "integer",
- "default" : 0,
- "format" : "int32"
- }, {
- "name" : "sort",
- "in" : "query",
- "description" : "Order of returned blueprint models",
- "required" : false,
- "type" : "string",
- "default" : "DATE",
- "enum" : [ "DATE", "NAME", "VERSION" ]
- }, {
- "name" : "sortType",
- "in" : "query",
- "description" : "Ascend or descend ordering",
- "required" : false,
- "type" : "string",
- "default" : "ASC"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/PageBlueprintModelSearch"
- }
- }
- }
- }
- },
- "/api/v1/blueprint-model/publish" : {
- "post" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Publish a Blueprint Model",
- "description" : "Validates the attached CBA file and saves it in CDS if validation was successful. CBA needs to be already enriched.",
- "operationId" : "BlueprintModelController_publishBlueprint_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "multipart/form-data" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "file",
- "description" : "Enriched CBA zip file to be uploaded (example: cba_enriched.zip)",
- "required" : true,
- "schema" : {
- "$ref" : "#/definitions/FilePart"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/BlueprintModelSearch"
- }
- }
- }
- }
- },
- "/api/v1/blueprint-model/search/{tags}" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Search for a Blueprint by Tag",
- "description" : "Searches for all blueprint models which contain the specified input parameter in their tags. Blueprint models which contain just parts of the searched word in their tags are also returned.",
- "operationId" : "BlueprintModelController_searchBlueprintModels_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "tags",
- "in" : "path",
- "description" : "Tag to search for",
- "required" : true,
- "type" : "string",
- "x-example" : "test"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/BlueprintModelSearch"
- }
- }
- }
- }
- }
- },
- "/api/v1/blueprint-model/workflow-spec" : {
- "post" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Get Workflow Specification",
- "description" : "Get the workflow of a blueprint identified by Blueprint and workflow name. Inputs, outputs and data types of workflow is returned.",
- "operationId" : "BlueprintModelController_workflowSpec_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "application/json" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "body",
- "description" : "Blueprint and workflow identification",
- "required" : true,
- "schema" : {
- "$ref" : "#/definitions/WorkFlowSpecRequest"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "object"
- }
- }
- }
- }
- },
- "/api/v1/blueprint-model/workflows/blueprint-name/{name}/version/{version}" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Get Workflows of a Blueprint",
- "description" : "Get all available workflows of a Blueprint identified by its name and version.",
- "operationId" : "BlueprintModelController_getWorkflowList_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "name",
- "in" : "path",
- "description" : "Name of the blueprint model",
- "required" : true,
- "type" : "string",
- "x-example" : "pnf_netconf"
- }, {
- "name" : "version",
- "in" : "path",
- "description" : "Version of the blueprint model",
- "required" : true,
- "type" : "string",
- "x-example" : "1.0.0"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "object"
- }
- }
- }
- }
- },
- "/api/v1/blueprint-model/{id}" : {
- "get" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Get a Blueprint Model by ID",
- "description" : "Get meta-data of a blueprint model by its internally created ID.",
- "operationId" : "BlueprintModelController_getBlueprintModel_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "id",
- "in" : "path",
- "description" : "ID of the blueprint model to search for",
- "required" : true,
- "type" : "string",
- "x-example" : "67ec1f96-ab55-4b81-aff9-23ee0ed1d7a4"
- } ],
- "responses" : {
- "200" : {
- "description" : "OK",
- "schema" : {
- "$ref" : "#/definitions/BlueprintModelSearch"
- }
- },
- "404" : {
- "description" : "Not Found"
- }
- }
- },
- "delete" : {
- "tags" : [ "Blueprint Model Catalog" ],
- "summary" : "Delete a Blueprint Model by ID",
- "description" : "Delete a blueprint model by its ID. ID is the internally created ID of blueprint, not the name of blueprint.",
- "operationId" : "BlueprintModelController_deleteBlueprint_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "parameters" : [ {
- "name" : "id",
- "in" : "path",
- "description" : "ID of the blueprint model to delete",
- "required" : true,
- "type" : "string",
- "x-example" : "67ec1f96-ab55-4b81-aff9-23ee0ed1d7a4"
- } ],
- "responses" : {
- "200" : {
- "description" : "OK",
- "schema" : {
- "type" : "object"
- }
- },
- "404" : {
- "description" : "RESOURCE_NOT_FOUND"
- }
- }
- }
- },
- "/api/v1/configs" : {
- "get" : {
- "tags" : [ "Resource configuration" ],
- "summary" : "Retrieve a resource configuration snapshot",
- "description" : "Retrieve a config snapshot, identified by its Resource Id and Type. An extra 'format' parameter can be passed to tell what content-type is expected.",
- "operationId" : "ResourceConfigSnapshotController_get_GET.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
- "produces" : [ "text/plain", "application/json", "application/xml" ],
- "parameters" : [ {
- "name" : "resourceType",
- "in" : "query",
- "description" : "Resource Type associated of the resource configuration snapshot",
- "required" : true,
- "type" : "string",
- "x-example" : "\"PNF\""
- }, {
- "name" : "resourceId",
- "in" : "query",
- "description" : "Resource Id associated of the resource configuration snapshot",
- "required" : true,
- "type" : "string",
- "x-example" : "\"1\""
- }, {
- "name" : "status",
- "in" : "query",
- "description" : "Status of the snapshot being retrieved",
- "required" : false,
- "type" : "string",
- "default" : "RUNNING"
- }, {
- "name" : "format",
- "in" : "query",
- "description" : "Expected format of the snapshot being retrieved",
- "required" : false,
- "type" : "string",
- "default" : "text/plain"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "string"
- }
- }
- }
- }
- },
- "/api/v1/configs/allByID" : {
- "get" : {
- "tags" : [ "Resource configuration" ],
- "summary" : "Retrieve all resource configuration snapshots identified by a given resource_id",
- "description" : "Retrieve all config snapshots, identified by its Resource Id, ordered by most recently created/modified date. ",
- "operationId" : "ResourceConfigSnapshotController_getAllByID_GET.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "resourceId",
- "in" : "query",
- "description" : "Resource Id associated of the resource configuration snapshots",
- "required" : true,
- "type" : "string",
- "x-example" : "\"1\""
- }, {
- "name" : "status",
- "in" : "query",
- "description" : "Status of the snapshot being retrieved",
- "required" : false,
- "type" : "string",
- "default" : "ANY"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/ResourceConfigSnapshot"
- }
- }
- }
- }
- }
- },
- "/api/v1/configs/allByType" : {
- "get" : {
- "tags" : [ "Resource configuration" ],
- "summary" : "Retrieve all resource configuration snapshots for a given resource type",
- "description" : "Retrieve all config snapshots matching a specified Resource Type, ordered by most recently created/modified date. ",
- "operationId" : "ResourceConfigSnapshotController_getAllByType_GET.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "resourceType",
- "in" : "query",
- "description" : "Resource Type associated of the resource configuration snapshot",
- "required" : true,
- "type" : "string",
- "x-example" : "\"PNF\""
- }, {
- "name" : "status",
- "in" : "query",
- "description" : "Status of the snapshot being retrieved",
- "required" : false,
- "type" : "string",
- "default" : "ANY"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/ResourceConfigSnapshot"
- }
- }
- }
- }
- }
- },
- "/api/v1/configs/{resourceType}/{resourceId}/{status}" : {
- "post" : {
- "tags" : [ "Resource configuration" ],
- "summary" : "Store a resource configuration snapshot identified by resourceId, resourceType, status",
- "description" : "Store a resource configuration snapshot, identified by its resourceId and resourceType, and optionally its status, either RUNNING or CANDIDATE.",
- "operationId" : "ResourceConfigSnapshotController_postWithResourceIdAndResourceType_POST.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "resourceType",
- "in" : "path",
- "description" : "Resource Type associated with the resolution",
- "required" : true,
- "type" : "string",
- "x-example" : "\"PNF\""
- }, {
- "name" : "resourceId",
- "in" : "path",
- "description" : "Resource Id associated with the resolution",
- "required" : true,
- "type" : "string",
- "x-example" : "\"1\""
- }, {
- "name" : "status",
- "in" : "path",
- "description" : "Status of the snapshot being retrieved",
- "required" : true,
- "type" : "string",
- "default" : "RUNNING"
- }, {
- "in" : "body",
- "name" : "body",
- "description" : "Config snapshot to store",
- "required" : true,
- "schema" : {
- "type" : "string"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/ResourceConfigSnapshot"
- }
- }
- }
- },
- "delete" : {
- "tags" : [ "Resource configuration" ],
- "summary" : "Delete a resource configuration snapshot identified by resourceId, resourceType, status.",
- "description" : "Delete a resource configuration snapshot, identified by its resourceId and resourceType, and optionally its status, either RUNNING or CANDIDATE.",
- "operationId" : "ResourceConfigSnapshotController_deleteWithResourceIdAndResourceType_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
- "parameters" : [ {
- "name" : "resourceType",
- "in" : "path",
- "description" : "Resource Type associated with the resolution.",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "resourceId",
- "in" : "path",
- "description" : "Resource Id associated with the resolution.",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "status",
- "in" : "path",
- "description" : "Status of the snapshot being deleted.",
- "required" : true,
- "type" : "string"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "object"
- }
- }
- }
- }
- },
- "/api/v1/dictionary" : {
- "post" : {
- "tags" : [ "Resource dictionary" ],
- "summary" : "Save a resource dictionary",
- "description" : "Save a resource dictionary by dictionary provided.",
- "operationId" : "ResourceDictionaryController_saveResourceDictionary_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "application/json" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "body",
- "description" : "Resource dictionary to store",
- "required" : true,
- "schema" : {
- "$ref" : "#/definitions/ResourceDictionary"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/ResourceDictionary"
- }
- }
- }
- }
- },
- "/api/v1/dictionary/by-names" : {
- "post" : {
- "tags" : [ "Resource dictionary" ],
- "summary" : "Search for a resource dictionary",
- "description" : "Search for a resource dictionary by names provided.",
- "operationId" : "ResourceDictionaryController_searchResourceDictionaryByNames_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "application/json" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "body",
- "description" : "List of names",
- "required" : true,
- "schema" : {
- "type" : "array",
- "items" : {
- "type" : "string"
- }
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/ResourceDictionary"
- }
- }
- }
- }
- }
- },
- "/api/v1/dictionary/definition" : {
- "post" : {
- "tags" : [ "Resource dictionary" ],
- "summary" : "Save a resource dictionary",
- "description" : "Save a resource dictionary by resource definition provided.",
- "operationId" : "ResourceDictionaryController_saveResourceDictionary_1_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "application/json" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "body",
- "description" : "Resource definition to generate",
- "required" : true,
- "schema" : {
- "$ref" : "#/definitions/ResourceDefinition"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/ResourceDefinition"
- }
- }
- }
- }
- },
- "/api/v1/dictionary/resource_dictionary_group" : {
- "get" : {
- "tags" : [ "Resource dictionary" ],
- "summary" : "Retrieve all resource dictionary groups",
- "description" : "Retrieve all resource dictionary groups.",
- "operationId" : "ResourceDictionaryController_getResourceDictionaryDistinct_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "type" : "string"
- }
- }
- }
- }
- }
- },
- "/api/v1/dictionary/search/{tags}" : {
- "get" : {
- "tags" : [ "Resource dictionary" ],
- "summary" : "Search for a resource dictionary",
- "description" : "Search for a resource dictionary by tags provided.",
- "operationId" : "ResourceDictionaryController_searchResourceDictionaryByTags_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "tags",
- "in" : "path",
- "description" : "Tags list",
- "required" : true,
- "type" : "string",
- "x-example" : "\"status\""
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/ResourceDictionary"
- }
- }
- }
- }
- }
- },
- "/api/v1/dictionary/source-mapping" : {
- "get" : {
- "tags" : [ "Resource dictionary" ],
- "summary" : "Search for a source mapping",
- "description" : "Search for a source mapping.",
- "operationId" : "ResourceDictionaryController_getResourceSourceMapping_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/ResourceSourceMapping"
- }
- }
- }
- }
- },
- "/api/v1/dictionary/{name}" : {
- "get" : {
- "tags" : [ "Resource dictionary" ],
- "summary" : "Retrieve a resource dictionary",
- "description" : "Retrieve a resource dictionary by name provided.",
- "operationId" : "ResourceDictionaryController_getResourceDictionaryByName_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "name",
- "in" : "path",
- "description" : "Name of the resource",
- "required" : true,
- "type" : "string",
- "x-example" : "\"hostname\""
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/ResourceDictionary"
- }
- }
- }
- },
- "delete" : {
- "tags" : [ "Resource dictionary" ],
- "summary" : "Remove a resource dictionary",
- "description" : "Remove a resource dictionary by name provided.",
- "operationId" : "ResourceDictionaryController_deleteResourceDictionaryByName_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "parameters" : [ {
- "name" : "name",
- "in" : "path",
- "description" : "Name of the resource",
- "required" : true,
- "type" : "string"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "object"
- }
- }
- }
- }
- },
- "/api/v1/model-type/" : {
- "post" : {
- "tags" : [ "Model Type Catalog" ],
- "summary" : "Save a model type",
- "description" : "Save a model type by model type definition provided.",
- "operationId" : "ModelTypeController_saveModelType_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "consumes" : [ "application/json" ],
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "in" : "body",
- "name" : "body",
- "required" : false,
- "schema" : {
- "$ref" : "#/definitions/ModelType"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/ModelType"
- }
- }
- }
- }
- },
- "/api/v1/model-type/by-definition/{definitionType}" : {
- "get" : {
- "tags" : [ "Model Type Catalog" ],
- "summary" : "Retrieve a list of model types",
- "description" : "Retrieve a list of model types by definition type provided.",
- "operationId" : "ModelTypeController_getModelTypeByDefinitionType_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "definitionType",
- "in" : "path",
- "required" : true,
- "type" : "string"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/ModelType"
- }
- }
- }
- }
- }
- },
- "/api/v1/model-type/search/{tags}" : {
- "get" : {
- "tags" : [ "Model Type Catalog" ],
- "summary" : "Retrieve a list of model types",
- "description" : "Retrieve a list of model types by tags provided.",
- "operationId" : "ModelTypeController_searchModelTypes_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "tags",
- "in" : "path",
- "required" : true,
- "type" : "string"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/ModelType"
- }
- }
- }
- }
- }
- },
- "/api/v1/model-type/{name}" : {
- "get" : {
- "tags" : [ "Model Type Catalog" ],
- "summary" : "Retrieve a model type",
- "description" : "Retrieve a model type by name provided.",
- "operationId" : "ModelTypeController_getModelTypeByName_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "name",
- "in" : "path",
- "required" : true,
- "type" : "string"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/ModelType"
- }
- }
- }
- },
- "delete" : {
- "tags" : [ "Model Type Catalog" ],
- "summary" : "Remove a model type",
- "description" : "Remove a model type by name provided.",
- "operationId" : "ModelTypeController_deleteModelTypeByName_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
- "parameters" : [ {
- "name" : "name",
- "in" : "path",
- "required" : true,
- "type" : "string"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/ModelType"
- }
- }
- }
- }
- },
- "/api/v1/resources" : {
- "get" : {
- "tags" : [ "Resources" ],
- "summary" : "Get all resolved resources using the resolution key",
- "description" : "Retrieve all stored resolved resources using the blueprint name, blueprint version, artifact name and the resolution-key.",
- "operationId" : "ResourceController_getAllFromResolutionKeyOrFromResourceTypeAndId_GET.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "bpName",
- "in" : "query",
- "description" : "Name of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "bpVersion",
- "in" : "query",
- "description" : "Version of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "artifactName",
- "in" : "query",
- "description" : "Artifact name for which to retrieve a resolved resource",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "resolutionKey",
- "in" : "query",
- "description" : "Resolution Key associated with the resolution",
- "required" : false,
- "type" : "string"
- }, {
- "name" : "resourceType",
- "in" : "query",
- "description" : "Resource Type associated with the resolution",
- "required" : false,
- "type" : "string"
- }, {
- "name" : "resourceId",
- "in" : "query",
- "description" : "Resource Id associated with the resolution",
- "required" : false,
- "type" : "string"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/ResourceResolution"
- }
- }
- }
- }
- },
- "delete" : {
- "tags" : [ "Resources" ],
- "summary" : "Delete resources using resolution key",
- "description" : "Delete all the resources associated to a resolution-key using blueprint metadata, artifact name and the resolution-key.",
- "operationId" : "ResourceController_deleteByBlueprintNameAndBlueprintVersionAndArtifactNameAndResolutionKey_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "bpName",
- "in" : "query",
- "description" : "Name of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "bpVersion",
- "in" : "query",
- "description" : "Version of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "artifactName",
- "in" : "query",
- "description" : "Artifact name for which to retrieve a resolved resource",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "resolutionKey",
- "in" : "query",
- "description" : "Resolution Key associated with the resolution",
- "required" : true,
- "type" : "string"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/Unit"
- }
- }
- }
- }
- },
- "/api/v1/resources/resource" : {
- "get" : {
- "tags" : [ "Resources" ],
- "summary" : "Fetch a resource value using resolution key",
- "description" : "Retrieve a stored resource value using the blueprint metadata, artifact name, resolution-key along with the name of the resource value to retrieve.",
- "operationId" : "ResourceController_getOneFromResolutionKey_GET.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "bpName",
- "in" : "query",
- "description" : "Name of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "bpVersion",
- "in" : "query",
- "description" : "Version of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "artifactName",
- "in" : "query",
- "description" : "Artifact name for which to retrieve a resolved resource",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "resolutionKey",
- "in" : "query",
- "description" : "Resolution Key associated with the resolution",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "name",
- "in" : "query",
- "description" : "Name of the resource to retrieve",
- "required" : true,
- "type" : "string"
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/ResourceResolution"
- }
- }
- }
- }
- },
- "/api/v1/template/{bpName}/{bpVersion}/{artifactName}/{resolutionKey}" : {
- "post" : {
- "tags" : [ "Resource template" ],
- "summary" : "Store a resolved template w/ resolution-key",
- "description" : "Store a template for a given CBA's action, identified by its blueprint name, blueprint version, artifact name and resolution key.",
- "operationId" : "TemplateController_postWithResolutionKey_POST.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "bpName",
- "in" : "path",
- "description" : "Name of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "bpVersion",
- "in" : "path",
- "description" : "Version of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "artifactName",
- "in" : "path",
- "description" : "Artifact name for which to retrieve a resolved resource",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "resolutionKey",
- "in" : "path",
- "description" : "Resolution Key associated with the resolution",
- "required" : true,
- "type" : "string"
- }, {
- "in" : "body",
- "name" : "body",
- "description" : "Template to store",
- "required" : true,
- "schema" : {
- "type" : "string"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/TemplateResolution"
- }
- }
- }
- }
- },
- "/api/v1/template/{bpName}/{bpVersion}/{artifactName}/{resourceType}/{resourceId}" : {
- "post" : {
- "tags" : [ "Resource template" ],
- "summary" : "Store a resolved template w/ resourceId and resourceType",
- "description" : "Store a template for a given CBA's action, identified by its blueprint name, blueprint version, artifact name, resourceId and resourceType.",
- "operationId" : "TemplateController_postWithResourceIdAndResourceType_POST.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
- "produces" : [ "application/json" ],
- "parameters" : [ {
- "name" : "bpName",
- "in" : "path",
- "description" : "Name of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "bpVersion",
- "in" : "path",
- "description" : "Version of the CBA",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "artifactName",
- "in" : "path",
- "description" : "Artifact name for which to retrieve a resolved resource",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "resourceType",
- "in" : "path",
- "description" : "Resource Type associated with the resolution",
- "required" : true,
- "type" : "string"
- }, {
- "name" : "resourceId",
- "in" : "path",
- "description" : "Resource Id associated with the resolution",
- "required" : true,
- "type" : "string"
- }, {
- "in" : "body",
- "name" : "body",
- "description" : "Template to store",
- "required" : true,
- "schema" : {
- "type" : "string"
- }
- } ],
- "responses" : {
- "200" : {
- "description" : "successful operation",
- "schema" : {
- "$ref" : "#/definitions/TemplateResolution"
- }
- }
- }
- }
- }
- },
- "securityDefinitions" : {
- "Basic Auth" : {
- "type" : "basic"
- }
- },
- "definitions" : {
- "ArtifactDefinition" : {
- "type" : "object",
- "properties" : {
- "type" : {
- "type" : "string"
- },
- "file" : {
- "type" : "string"
- },
- "repository" : {
- "type" : "string"
- },
- "description" : {
- "type" : "string"
- },
- "properties" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/JsonNode"
- }
- },
- "deploy_Path" : {
- "type" : "string"
- }
- }
- },
- "BlueprintModelSearch" : {
- "type" : "object",
- "required" : [ "artifactName", "artifactVersion", "createdDate", "id", "published", "tags", "updatedBy" ],
- "properties" : {
- "id" : {
- "type" : "string",
- "example" : "658f9a48-7f54-41ba-ae18-c69f26f3dc94",
- "description" : "ID of Blueprint model, is automatically created by CDS"
- },
- "artifactUUId" : {
- "type" : "string",
- "example" : null,
- "description" : "Artifact UUID, usually null"
- },
- "artifactType" : {
- "type" : "string",
- "example" : "SDNC_MODEL",
- "description" : "Artifact Type, usually null"
- },
- "artifactVersion" : {
- "type" : "string",
- "example" : "1.0.0",
- "description" : "Artifact Version, usually 1.0.0"
- },
- "artifactDescription" : {
- "type" : "string",
- "example" : "",
- "description" : "Artifact Description, usually empty"
- },
- "internalVersion" : {
- "type" : "integer",
- "format" : "int32",
- "example" : null,
- "description" : "Internal Version of CBA, usually null"
- },
- "createdDate" : {
- "type" : "string",
- "format" : "date-time",
- "example" : "2020-11-19T10:34:56.000Z",
- "description" : "Datetime of the creation of CBA in CDS"
- },
- "artifactName" : {
- "type" : "string",
- "example" : "pnf_netconf",
- "description" : "Artifact Name, defined in Metadata"
- },
- "published" : {
- "type" : "string",
- "example" : "pnf_netconf",
- "description" : "Artifact Name, defined in Metadata"
- },
- "updatedBy" : {
- "type" : "string",
- "example" : "Deutsche Telekom AG",
- "description" : "Name of publisher, defined in Metadata"
- },
- "tags" : {
- "type" : "string",
- "example" : "test",
- "description" : "Tags to identify the CBA, defined in Metadata"
- }
- }
- },
- "BootstrapRequest" : {
- "type" : "object",
- "required" : [ "loadCBA", "loadModelType", "loadResourceDictionary" ],
- "properties" : {
- "loadModelType" : {
- "type" : "boolean",
- "example" : true,
- "description" : "Specifies if default model types should be loaded"
- },
- "loadResourceDictionary" : {
- "type" : "boolean",
- "example" : true,
- "description" : "Specifies if default data dictionaries should be loaded"
- },
- "loadCBA" : {
- "type" : "boolean",
- "example" : true,
- "description" : "Specifies if default blueprint models should be loaded"
- }
- }
- },
- "CapabilityAssignment" : {
- "type" : "object",
- "properties" : {
- "attributes" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/JsonNode"
- }
- },
- "properties" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/JsonNode"
- }
- }
- }
- },
- "ConstraintClause" : {
- "type" : "object",
- "properties" : {
- "equal" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "length" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "pattern" : {
- "type" : "string"
- },
- "schema" : {
- "type" : "string"
- },
- "greater_than" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "greater_or_equal" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "less_than" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "less_or_equal" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "in_range" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/JsonNode"
- }
- },
- "valid_values" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/JsonNode"
- }
- },
- "min_length" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "max_length" : {
- "$ref" : "#/definitions/JsonNode"
- }
- }
- },
- "EntrySchema" : {
- "type" : "object",
- "properties" : {
- "type" : {
- "type" : "string"
- },
- "constraints" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/ConstraintClause"
- }
- }
- }
- },
- "FilePart" : {
- "type" : "object"
- },
- "Implementation" : {
- "type" : "object",
- "properties" : {
- "primary" : {
- "type" : "string"
- },
- "dependencies" : {
- "type" : "array",
- "items" : {
- "type" : "string"
- }
- },
- "timeout" : {
- "type" : "integer",
- "format" : "int32"
- },
- "lock" : {
- "$ref" : "#/definitions/LockAssignment"
- },
- "operation_host" : {
- "type" : "string"
- }
- }
- },
- "InterfaceAssignment" : {
- "type" : "object",
- "properties" : {
- "operations" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/OperationAssignment"
- }
- },
- "inputs" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/JsonNode"
- }
- }
- }
- },
- "JsonNode" : {
- "type" : "object",
- "properties" : {
- "float" : {
- "type" : "boolean"
- },
- "array" : {
- "type" : "boolean"
- },
- "null" : {
- "type" : "boolean"
- },
- "valueNode" : {
- "type" : "boolean"
- },
- "containerNode" : {
- "type" : "boolean"
- },
- "missingNode" : {
- "type" : "boolean"
- },
- "pojo" : {
- "type" : "boolean"
- },
- "integralNumber" : {
- "type" : "boolean"
- },
- "floatingPointNumber" : {
- "type" : "boolean"
- },
- "bigDecimal" : {
- "type" : "boolean"
- },
- "bigInteger" : {
- "type" : "boolean"
- },
- "textual" : {
- "type" : "boolean"
- },
- "short" : {
- "type" : "boolean"
- },
- "nodeType" : {
- "type" : "string",
- "enum" : [ "ARRAY", "BINARY", "BOOLEAN", "MISSING", "NULL", "NUMBER", "OBJECT", "POJO", "STRING" ]
- },
- "number" : {
- "type" : "boolean"
- },
- "boolean" : {
- "type" : "boolean"
- },
- "double" : {
- "type" : "boolean"
- },
- "int" : {
- "type" : "boolean"
- },
- "long" : {
- "type" : "boolean"
- },
- "object" : {
- "type" : "boolean"
- },
- "binary" : {
- "type" : "boolean"
- }
- }
- },
- "LockAssignment" : {
- "type" : "object",
- "properties" : {
- "key" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "acquireTimeout" : {
- "$ref" : "#/definitions/JsonNode"
- }
- }
- },
- "ModelType" : {
- "type" : "object",
- "required" : [ "definition", "definitionType", "derivedFrom", "description", "modelName", "tags", "updatedBy", "version" ],
- "properties" : {
- "modelName" : {
- "type" : "string"
- },
- "derivedFrom" : {
- "type" : "string"
- },
- "definitionType" : {
- "type" : "string"
- },
- "definition" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "description" : {
- "type" : "string"
- },
- "version" : {
- "type" : "string"
- },
- "tags" : {
- "type" : "string"
- },
- "creationDate" : {
- "type" : "string",
- "format" : "date-time"
- },
- "updatedBy" : {
- "type" : "string"
- }
- }
- },
- "NodeFilterDefinition" : {
- "type" : "object",
- "properties" : {
- "properties" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/PropertyDefinition"
- }
- },
- "capabilities" : {
- "type" : "array",
- "items" : {
- "type" : "string"
- }
- }
- }
- },
- "NodeTemplate" : {
- "type" : "object",
- "properties" : {
- "description" : {
- "type" : "string"
- },
- "type" : {
- "type" : "string"
- },
- "metadata" : {
- "type" : "object",
- "additionalProperties" : {
- "type" : "string"
- }
- },
- "directives" : {
- "type" : "array",
- "items" : {
- "type" : "string"
- }
- },
- "properties" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/JsonNode"
- }
- },
- "attributes" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/JsonNode"
- }
- },
- "capabilities" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/CapabilityAssignment"
- }
- },
- "requirements" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/RequirementAssignment"
- }
- },
- "interfaces" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/InterfaceAssignment"
- }
- },
- "artifacts" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/ArtifactDefinition"
- }
- },
- "copy" : {
- "type" : "string"
- },
- "node_filter" : {
- "$ref" : "#/definitions/NodeFilterDefinition"
- }
- }
- },
- "OperationAssignment" : {
- "type" : "object",
- "properties" : {
- "description" : {
- "type" : "string"
- },
- "implementation" : {
- "$ref" : "#/definitions/Implementation"
- },
- "inputs" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/JsonNode"
- }
- },
- "outputs" : {
- "type" : "object",
- "additionalProperties" : {
- "$ref" : "#/definitions/JsonNode"
- }
- }
- }
- },
- "Page" : {
- "type" : "object",
- "properties" : {
- "totalPages" : {
- "type" : "integer",
- "format" : "int32"
- },
- "totalElements" : {
- "type" : "integer",
- "format" : "int64"
- },
- "number" : {
- "type" : "integer",
- "format" : "int32"
- },
- "sort" : {
- "$ref" : "#/definitions/Sort"
- },
- "size" : {
- "type" : "integer",
- "format" : "int32"
- },
- "content" : {
- "type" : "array",
- "items" : {
- "type" : "object"
- }
- },
- "numberOfElements" : {
- "type" : "integer",
- "format" : "int32"
- },
- "pageable" : {
- "$ref" : "#/definitions/Pageable"
- },
- "last" : {
- "type" : "boolean"
- },
- "first" : {
- "type" : "boolean"
- },
- "empty" : {
- "type" : "boolean"
- }
- }
- },
- "PageBlueprintModelSearch" : {
- "type" : "object",
- "properties" : {
- "totalPages" : {
- "type" : "integer",
- "format" : "int32"
- },
- "totalElements" : {
- "type" : "integer",
- "format" : "int64"
- },
- "number" : {
- "type" : "integer",
- "format" : "int32"
- },
- "sort" : {
- "$ref" : "#/definitions/Sort"
- },
- "size" : {
- "type" : "integer",
- "format" : "int32"
- },
- "content" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/BlueprintModelSearch"
- }
- },
- "numberOfElements" : {
- "type" : "integer",
- "format" : "int32"
- },
- "pageable" : {
- "$ref" : "#/definitions/Pageable"
- },
- "last" : {
- "type" : "boolean"
- },
- "first" : {
- "type" : "boolean"
- },
- "empty" : {
- "type" : "boolean"
- }
- }
- },
- "Pageable" : {
- "type" : "object",
- "properties" : {
- "sort" : {
- "$ref" : "#/definitions/Sort"
- },
- "offset" : {
- "type" : "integer",
- "format" : "int64"
- },
- "paged" : {
- "type" : "boolean"
- },
- "pageNumber" : {
- "type" : "integer",
- "format" : "int32"
- },
- "pageSize" : {
- "type" : "integer",
- "format" : "int32"
- },
- "unpaged" : {
- "type" : "boolean"
- }
- }
- },
- "PropertyDefinition" : {
- "type" : "object",
- "properties" : {
- "description" : {
- "type" : "string"
- },
- "required" : {
- "type" : "boolean"
- },
- "type" : {
- "type" : "string"
- },
- "status" : {
- "type" : "string"
- },
- "constraints" : {
- "type" : "array",
- "items" : {
- "$ref" : "#/definitions/ConstraintClause"
- }
- },
- "metadata" : {
- "type" : "object",
- "additionalProperties" : {
- "type" : "string"
- }
- },
- "value" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "input-param" : {
- "type" : "boolean"
- },
- "default" : {
- "$ref" : "#/definitions/JsonNode"
- },
- "entry_schema" : {
- "$ref" : "#/definitions/EntrySchema"
- },
- "external-schema" : {
- "type" : "string"
- }
- }
- },
- "RequirementAssignment" : {
- "type" : "object",
- "properties" : {
- "capability" : {
- "type" : "string"
- },
- "node" : {
- "type" : "string"
- },
- "relationship" : {
- "type" : "string"
- }
- }
- },
- "ResourceConfigSnapshot" : {
- "type" : "object",
- "required" : [ "config_snapshot", "createdDate", "resourceId", "resourceType", "status" ],
- "properties" : {
- "resourceType" : {
- "type" : "string",
- "example" : "ServiceInstance",
- "description" : "Resource type."
- },
- "resourceId" : {
- "type" : "string",
- "example" : "1",
- "description" : "ID associated with the resource type in the inventory system."
- },
- "status" : {
- "type" : "string",
- "description" : "Status of the snapshot, either running or candidate.",
- "enum" : [ "RUNNING", "CANDIDATE" ]
- },
- "config_snapshot" : {
- "type" : "string",
- "example" : "config_snapshot",
- "description" : "Snapshot of the resource as retrieved from resource."
- },
- "id" : {
- "type" : "string"
- },
- "createdDate" : {
- "type" : "string",
- "format" : "date-time",
- "description" : "Creation date of the snapshot."
- }
- }
- },
- "ResourceDefinition" : {
- "type" : "object",
- "required" : [ "group", "name", "property", "sources", "updated-by" ],
- "properties" : {
- "tags" : {
- "type" : "string"
- },
- "name" : {
- "type" : "string",
- "example" : "default-source",
- "description" : "Name"
- },
- "property" : {
- "description" : "Property",
- "$ref" : "#/definitions/PropertyDefinition"
- },
- "group" : {
- "type" : "string",
- "example" : "default",
- "description" : "Group"
- },
- "updated-by" : {
- "type" : "string",
- "example" : "example@onap.com",
- "description" : "Updated by"
- },
- "sources" : {
- "type" : "object",
- "example" : "sources",
- "description" : "Sources",
- "additionalProperties" : {
- "$ref" : "#/definitions/NodeTemplate"
- }
- }
- }
- },
- "ResourceDictionary" : {
- "type" : "object",
- "required" : [ "dataType", "definition", "description", "entrySchema", "name", "resourceDictionaryGroup", "tags", "updatedBy" ],
- "properties" : {
- "name" : {
- "type" : "string",
- "example" : "sample-db-source",
- "description" : "Name"
- },
- "dataType" : {
- "type" : "string",
- "example" : "string",
- "description" : "Data type"
- },
- "entrySchema" : {
- "type" : "string",
- "example" : "dt-license-key",
- "description" : "Entry schema"
- },
- "resourceDictionaryGroup" : {
- "type" : "string",
- "example" : "default",
- "description" : "Resource dictionary group"
- },
- "definition" : {
- "description" : "Definition",
- "$ref" : "#/definitions/ResourceDefinition"
- },
- "description" : {
- "type" : "string",
- "example" : "demo_artifacts_version",
- "description" : "Description"
- },
- "tags" : {
- "type" : "string",
- "example" : "hostname",
- "description" : "Tags"
- },
- "creationDate" : {
- "type" : "string",
- "format" : "date-time"
- },
- "updatedBy" : {
- "type" : "string",
- "example" : "username",
- "description" : "Updated by"
- }
- }
- },
- "ResourceResolution" : {
- "type" : "object",
- "required" : [ "artifactName", "blueprintName", "blueprintVersion", "createdDate", "dictionaryName", "dictionarySource", "dictionaryVersion", "name", "occurrence", "resolutionKey", "resourceId", "resourceType", "status", "value" ],
- "properties" : {
- "blueprintName" : {
- "type" : "string",
- "description" : "Name of the CBA."
- },
- "blueprintVersion" : {
- "type" : "string",
- "description" : "Version of the CBA."
- },
- "artifactName" : {
- "type" : "string",
- "description" : "Artifact name for which to retrieve a resolved resource."
- },
- "name" : {
- "type" : "string",
- "description" : "Name of the resource."
- },
- "value" : {
- "type" : "string",
- "description" : "Value of the resolution."
- },
- "status" : {
- "type" : "string",
- "description" : "Whether success of failure."
- },
- "resolutionKey" : {
- "type" : "string",
- "description" : "Resolution Key uniquely identifying the resolution of a given artifact within a CBA."
- },
- "resourceType" : {
- "type" : "string",
- "example" : "ServiceInstance",
- "description" : "Resolution type."
- },
- "resourceId" : {
- "type" : "string",
- "description" : "ID associated with the resolution type in the inventory system."
- },
- "occurrence" : {
- "type" : "integer",
- "format" : "int32",
- "description" : "If resolution occurred multiple time, this field provides the index."
- },
- "dictionaryName" : {
- "type" : "string",
- "description" : "Name of the data dictionary used for the resolution."
- },
- "dictionarySource" : {
- "type" : "string",
- "description" : "Source associated with the data dictionary used for the resolution."
- },
- "dictionaryVersion" : {
- "type" : "integer",
- "format" : "int32",
- "description" : "Version of the data dictionary used for the resolution."
- },
- "id" : {
- "type" : "string"
- },
- "createdDate" : {
- "type" : "string",
- "format" : "date-time",
- "description" : "Creation date of the resolution."
- }
- }
- },
- "ResourceSourceMapping" : {
- "type" : "object",
- "properties" : {
- "resourceSourceMappings" : {
- "type" : "object",
- "additionalProperties" : {
- "type" : "string"
- }
- }
- }
- },
- "Sort" : {
- "type" : "object",
- "properties" : {
- "unsorted" : {
- "type" : "boolean"
- },
- "sorted" : {
- "type" : "boolean"
- },
- "empty" : {
- "type" : "boolean"
- }
- }
- },
- "TemplateResolution" : {
- "type" : "object",
- "required" : [ "artifactName", "blueprintName", "blueprintVersion", "createdDate", "occurrence", "resolutionKey", "resourceId", "resourceType", "result" ],
- "properties" : {
- "blueprintName" : {
- "type" : "string",
- "description" : "Name of the CBA."
- },
- "blueprintVersion" : {
- "type" : "string",
- "description" : "Version of the CBA."
- },
- "artifactName" : {
- "type" : "string",
- "description" : "Artifact name for which to retrieve a resolved resource."
- },
- "result" : {
- "type" : "string",
- "description" : "Rendered template."
- },
- "resolutionKey" : {
- "type" : "string",
- "description" : "Resolution Key uniquely identifying the resolution of a given artifact within a CBA."
- },
- "resourceType" : {
- "type" : "string",
- "example" : "ServiceInstance",
- "description" : "Resolution type."
- },
- "resourceId" : {
- "type" : "string",
- "description" : "ID associated with the resolution type in the inventory system."
- },
- "occurrence" : {
- "type" : "integer",
- "format" : "int32",
- "description" : "If resolution occurred multiple time, this field provides the index."
- },
- "id" : {
- "type" : "string"
- },
- "createdDate" : {
- "type" : "string",
- "format" : "date-time",
- "description" : "Creation date of the resolution."
- }
- }
- },
- "Unit" : {
- "type" : "object"
- },
- "WorkFlowSpecRequest" : {
- "type" : "object",
- "required" : [ "blueprintName", "workflowName" ],
- "properties" : {
- "blueprintName" : {
- "type" : "string",
- "example" : "pnf_netconf",
- "description" : "Name of the BLueprint"
- },
- "version" : {
- "type" : "string"
- },
- "returnContent" : {
- "type" : "string"
- },
- "workflowName" : {
- "type" : "string",
- "example" : "config-assign",
- "description" : "Name of the Workflow"
- },
- "specType" : {
- "type" : "string"
- }
- }
- }
- }
+{
+ "swagger" : "2.0",
+ "info" : {
+ "description" : "Shows all resources and endpoints which CDS BP processor currently provides with sample requests/responses, parameter description and other information.",
+ "version" : "v1",
+ "title" : "CDS Blueprint Processor API Reference",
+ "termsOfService" : "https://www.onap.org/",
+ "contact" : {
+ "name" : "ONAP Community",
+ "url" : "https://www.onap.org/",
+ "email" : "onap-discuss@lists.onap.org"
+ },
+ "license" : {
+ "name" : "Apache 2.0",
+ "url" : "http://www.apache.org/licenses/LICENSE-2.0.html"
+ }
+ },
+ "host" : "localhost:8080",
+ "tags" : [ {
+ "name" : "Blueprint Model Catalog",
+ "description" : "Manages all blueprint models which are available in CDS"
+ }, {
+ "name" : "Model Type Catalog",
+ "description" : "Manages data types in CDS"
+ }, {
+ "name" : "Resource configuration",
+ "description" : "Interaction with stored configurations"
+ }, {
+ "name" : "Resource dictionary",
+ "description" : "Interaction with stored dictionaries"
+ }, {
+ "name" : "Resource template",
+ "description" : "Interaction with resolved templates"
+ }, {
+ "name" : "Resources",
+ "description" : "Interaction with resolved resources"
+ } ],
+ "schemes" : [ "http" ],
+ "paths" : {
+ "/api/v1/blueprint-model" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "List all Blueprint Models",
+ "description" : "Lists all meta-data of blueprint models which are saved in CDS.",
+ "operationId" : "BlueprintModelController_allBlueprintModel_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "responses" : {
+ "200" : {
+ "description" : "OK",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/BlueprintModelSearch"
+ }
+ }
+ },
+ "500" : {
+ "description" : "Internal Server Error"
+ }
+ }
+ },
+ "post" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Save a Blueprint Model",
+ "description" : "Saves a blueprint model by the given CBA zip file input. There is no validation of the attached CBA happening when this API is called.",
+ "operationId" : "BlueprintModelController_saveBlueprint_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "multipart/form-data" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "file",
+ "description" : "CBA file to be uploaded (example: cba.zip)",
+ "required" : true,
+ "schema" : {
+ "$ref" : "#/definitions/FilePart"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "OK",
+ "schema" : {
+ "$ref" : "#/definitions/BlueprintModelSearch"
+ }
+ },
+ "500" : {
+ "description" : "Internal Server Error"
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/bootstrap" : {
+ "post" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Bootstrap CDS",
+ "description" : "Loads all Model Types, Resource Dictionaries and Blueprint Models which are included in CDS by default. Before starting to work with CDS, bootstrap should be called to load all the basic models that each orginization might support. Parameter values can be set as `false` to skip loading e.g. the Resource Dictionaries but this is not recommended.",
+ "operationId" : "BlueprintModelController_bootstrap_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "application/json" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "body",
+ "description" : "Specifies which elements to load",
+ "required" : true,
+ "schema" : {
+ "$ref" : "#/definitions/BootstrapRequest"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "OK",
+ "schema" : {
+ "type" : "object"
+ }
+ },
+ "500" : {
+ "description" : "Internal Server Error"
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/by-name/{name}/version/{version}" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Get a Blueprint Model by Name and Version",
+ "description" : "Get Meta-Data of a Blueprint Model by its name and version.",
+ "operationId" : "BlueprintModelController_getBlueprintByNameAndVersion_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "name",
+ "in" : "path",
+ "description" : "Name of the blueprint model",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "pnf_netconf"
+ }, {
+ "name" : "version",
+ "in" : "path",
+ "description" : "Version of the blueprint model",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "1.0.0"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "OK",
+ "schema" : {
+ "$ref" : "#/definitions/BlueprintModelSearch"
+ }
+ },
+ "404" : {
+ "description" : "Not Found"
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/download/by-name/{name}/version/{version}" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Download a Blueprint Model",
+ "description" : "Gets the CBA of a blueprint model by its name and version. Response can be saved to a file to download the CBA.",
+ "operationId" : "BlueprintModelController_downloadBlueprintByNameAndVersion_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "name",
+ "in" : "path",
+ "description" : "Name of the blueprint model",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "pnf_netconf"
+ }, {
+ "name" : "version",
+ "in" : "path",
+ "description" : "Version of the blueprint model",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "1.0.0"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "OK",
+ "schema" : {
+ "type" : "object"
+ }
+ },
+ "404" : {
+ "description" : "Not Found"
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/download/{id}" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Download a Blueprint Model by ID",
+ "description" : "Gets the CBA of a blueprint model by its ID. Response can be saved to a file to download the CBA.",
+ "operationId" : "BlueprintModelController_downloadBluePrint_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "id",
+ "in" : "path",
+ "description" : "ID of the blueprint model to download",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "67ec1f96-ab55-4b81-aff9-23ee0ed1d7a4"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "OK",
+ "schema" : {
+ "type" : "object"
+ }
+ },
+ "404" : {
+ "description" : "Not Found"
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/enrich" : {
+ "post" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Enrich a Blueprint Model",
+ "description" : "Enriches the attached CBA and returns the enriched CBA zip file in the response. The enrichment process will complete the package by providing all the definition of types used.",
+ "operationId" : "BlueprintModelController_enrichBlueprint_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "multipart/form-data" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "file",
+ "description" : "CBA zip file to be uploaded (example: cba_unenriched.zip)",
+ "required" : true,
+ "schema" : {
+ "$ref" : "#/definitions/FilePart"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "object"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/enrichandpublish" : {
+ "post" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Enrich and publish a Blueprint Model",
+ "description" : "Enriches the attached CBA, validates it and saves it in CDS if validation was successful.",
+ "operationId" : "BlueprintModelController_enrichAndPubishlueprint_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "multipart/form-data" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "file",
+ "description" : "Unenriched CBA zip file to be uploaded (example: cba_unenriched.zip)",
+ "required" : true,
+ "schema" : {
+ "$ref" : "#/definitions/FilePart"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "OK",
+ "schema" : {
+ "$ref" : "#/definitions/BlueprintModelSearch"
+ }
+ },
+ "503" : {
+ "description" : "Service Unavailable"
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/meta-data/{keyword}" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Search for Blueprints by a Keyword",
+ "description" : "Lists all blueprint models by a matching keyword in any of the meta-data of the blueprint models. Blueprint models are just returned if a whole keyword is matching, not just parts of it. Not case-sensitive. Used by CDS UI.",
+ "operationId" : "BlueprintModelController_allBlueprintModelMetaData_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "keyword",
+ "in" : "path",
+ "description" : "Keyword to search for in blueprint model meta-data",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "pnf_netconf"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/BlueprintModelSearch"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/name/{name}/version/{version}" : {
+ "delete" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Delete a Blueprint Model by Name",
+ "description" : "Deletes a blueprint model identified by its name and version from CDS.",
+ "operationId" : "BlueprintModelController_deleteBlueprintByName_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "parameters" : [ {
+ "name" : "name",
+ "in" : "path",
+ "description" : "Name of the blueprint model",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "pnf_netconf"
+ }, {
+ "name" : "version",
+ "in" : "path",
+ "description" : "Version of the blueprint model",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "1.0.0"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "object"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/paged" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Get Blueprints ordered",
+ "description" : "Lists all blueprint models which are saved in CDS in an ordered mode.",
+ "operationId" : "BlueprintModelController_allBlueprintModelPaged_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "limit",
+ "in" : "query",
+ "description" : "Maximum number of returned blueprint models",
+ "required" : false,
+ "type" : "integer",
+ "default" : 20,
+ "format" : "int32"
+ }, {
+ "name" : "offset",
+ "in" : "query",
+ "description" : "Offset",
+ "required" : false,
+ "type" : "integer",
+ "default" : 0,
+ "format" : "int32"
+ }, {
+ "name" : "sort",
+ "in" : "query",
+ "description" : "Order of returned blueprint models",
+ "required" : false,
+ "type" : "string",
+ "default" : "DATE",
+ "enum" : [ "DATE", "NAME", "VERSION" ]
+ }, {
+ "name" : "sortType",
+ "in" : "query",
+ "description" : "Ascend or descend ordering",
+ "required" : false,
+ "type" : "string",
+ "default" : "ASC"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/PageBlueprintModelSearch"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/paged/meta-data/{keyword}" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Search for Blueprints by a Keyword in an ordered mode",
+ "description" : "Lists all blueprint models by a matching keyword in any of the meta-data of the blueprint models in an ordered mode. Blueprint models are just returned if a whole keyword is matching, not just parts of it. Not case-sensitive. Used by CDS UI.",
+ "operationId" : "BlueprintModelController_allBlueprintModelMetaDataPaged_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "keyword",
+ "in" : "path",
+ "description" : "Keyword to search for in blueprint model meta-data",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "pnf_netconf"
+ }, {
+ "name" : "limit",
+ "in" : "query",
+ "description" : "Maximum number of returned blueprint models",
+ "required" : false,
+ "type" : "integer",
+ "default" : 20,
+ "format" : "int32"
+ }, {
+ "name" : "offset",
+ "in" : "query",
+ "description" : "Offset",
+ "required" : false,
+ "type" : "integer",
+ "default" : 0,
+ "format" : "int32"
+ }, {
+ "name" : "sort",
+ "in" : "query",
+ "description" : "Order of returned blueprint models",
+ "required" : false,
+ "type" : "string",
+ "default" : "DATE",
+ "enum" : [ "DATE", "NAME", "VERSION" ]
+ }, {
+ "name" : "sortType",
+ "in" : "query",
+ "description" : "Ascend or descend ordering",
+ "required" : false,
+ "type" : "string",
+ "default" : "ASC"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/PageBlueprintModelSearch"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/publish" : {
+ "post" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Publish a Blueprint Model",
+ "description" : "Validates the attached CBA file and saves it in CDS if validation was successful. CBA needs to be already enriched.",
+ "operationId" : "BlueprintModelController_publishBlueprint_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "multipart/form-data" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "file",
+ "description" : "Enriched CBA zip file to be uploaded (example: cba_enriched.zip)",
+ "required" : true,
+ "schema" : {
+ "$ref" : "#/definitions/FilePart"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/BlueprintModelSearch"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/search/{tags}" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Search for a Blueprint by Tag",
+ "description" : "Searches for all blueprint models which contain the specified input parameter in their tags. Blueprint models which contain just parts of the searched word in their tags are also returned.",
+ "operationId" : "BlueprintModelController_searchBlueprintModels_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "tags",
+ "in" : "path",
+ "description" : "Tag to search for",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "test"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/BlueprintModelSearch"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/workflow-spec" : {
+ "post" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Get Workflow Specification",
+ "description" : "Get the workflow of a blueprint identified by Blueprint and workflow name. Inputs, outputs and data types of workflow is returned.",
+ "operationId" : "BlueprintModelController_workflowSpec_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "application/json" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "body",
+ "description" : "Blueprint and workflow identification",
+ "required" : true,
+ "schema" : {
+ "$ref" : "#/definitions/WorkFlowSpecRequest"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "object"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/workflows/blueprint-name/{name}/version/{version}" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Get Workflows of a Blueprint",
+ "description" : "Get all available workflows of a Blueprint identified by its name and version.",
+ "operationId" : "BlueprintModelController_getWorkflowList_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "name",
+ "in" : "path",
+ "description" : "Name of the blueprint model",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "pnf_netconf"
+ }, {
+ "name" : "version",
+ "in" : "path",
+ "description" : "Version of the blueprint model",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "1.0.0"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "object"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/blueprint-model/{id}" : {
+ "get" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Get a Blueprint Model by ID",
+ "description" : "Get meta-data of a blueprint model by its internally created ID.",
+ "operationId" : "BlueprintModelController_getBlueprintModel_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "id",
+ "in" : "path",
+ "description" : "ID of the blueprint model to search for",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "67ec1f96-ab55-4b81-aff9-23ee0ed1d7a4"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "OK",
+ "schema" : {
+ "$ref" : "#/definitions/BlueprintModelSearch"
+ }
+ },
+ "404" : {
+ "description" : "Not Found"
+ }
+ }
+ },
+ "delete" : {
+ "tags" : [ "Blueprint Model Catalog" ],
+ "summary" : "Delete a Blueprint Model by ID",
+ "description" : "Delete a blueprint model by its ID. ID is the internally created ID of blueprint, not the name of blueprint.",
+ "operationId" : "BlueprintModelController_deleteBlueprint_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "parameters" : [ {
+ "name" : "id",
+ "in" : "path",
+ "description" : "ID of the blueprint model to delete",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "67ec1f96-ab55-4b81-aff9-23ee0ed1d7a4"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "OK",
+ "schema" : {
+ "type" : "object"
+ }
+ },
+ "404" : {
+ "description" : "RESOURCE_NOT_FOUND"
+ }
+ }
+ }
+ },
+ "/api/v1/configs" : {
+ "get" : {
+ "tags" : [ "Resource configuration" ],
+ "summary" : "Retrieve a resource configuration snapshot",
+ "description" : "Retrieve a config snapshot, identified by its Resource Id and Type. An extra 'format' parameter can be passed to tell what content-type is expected.",
+ "operationId" : "ResourceConfigSnapshotController_get_GET.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
+ "produces" : [ "text/plain", "application/json", "application/xml" ],
+ "parameters" : [ {
+ "name" : "resourceType",
+ "in" : "query",
+ "description" : "Resource Type associated of the resource configuration snapshot",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "\"PNF\""
+ }, {
+ "name" : "resourceId",
+ "in" : "query",
+ "description" : "Resource Id associated of the resource configuration snapshot",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "\"1\""
+ }, {
+ "name" : "status",
+ "in" : "query",
+ "description" : "Status of the snapshot being retrieved",
+ "required" : false,
+ "type" : "string",
+ "default" : "RUNNING"
+ }, {
+ "name" : "format",
+ "in" : "query",
+ "description" : "Expected format of the snapshot being retrieved",
+ "required" : false,
+ "type" : "string",
+ "default" : "text/plain"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "string"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/configs/allByID" : {
+ "get" : {
+ "tags" : [ "Resource configuration" ],
+ "summary" : "Retrieve all resource configuration snapshots identified by a given resource_id",
+ "description" : "Retrieve all config snapshots, identified by its Resource Id, ordered by most recently created/modified date. ",
+ "operationId" : "ResourceConfigSnapshotController_getAllByID_GET.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "resourceId",
+ "in" : "query",
+ "description" : "Resource Id associated of the resource configuration snapshots",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "\"1\""
+ }, {
+ "name" : "status",
+ "in" : "query",
+ "description" : "Status of the snapshot being retrieved",
+ "required" : false,
+ "type" : "string",
+ "default" : "ANY"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/ResourceConfigSnapshot"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/configs/allByType" : {
+ "get" : {
+ "tags" : [ "Resource configuration" ],
+ "summary" : "Retrieve all resource configuration snapshots for a given resource type",
+ "description" : "Retrieve all config snapshots matching a specified Resource Type, ordered by most recently created/modified date. ",
+ "operationId" : "ResourceConfigSnapshotController_getAllByType_GET.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "resourceType",
+ "in" : "query",
+ "description" : "Resource Type associated of the resource configuration snapshot",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "\"PNF\""
+ }, {
+ "name" : "status",
+ "in" : "query",
+ "description" : "Status of the snapshot being retrieved",
+ "required" : false,
+ "type" : "string",
+ "default" : "ANY"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/ResourceConfigSnapshot"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/configs/{resourceType}/{resourceId}/{status}" : {
+ "post" : {
+ "tags" : [ "Resource configuration" ],
+ "summary" : "Store a resource configuration snapshot identified by resourceId, resourceType, status",
+ "description" : "Store a resource configuration snapshot, identified by its resourceId and resourceType, and optionally its status, either RUNNING or CANDIDATE.",
+ "operationId" : "ResourceConfigSnapshotController_postWithResourceIdAndResourceType_POST.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "resourceType",
+ "in" : "path",
+ "description" : "Resource Type associated with the resolution",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "\"PNF\""
+ }, {
+ "name" : "resourceId",
+ "in" : "path",
+ "description" : "Resource Id associated with the resolution",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "\"1\""
+ }, {
+ "name" : "status",
+ "in" : "path",
+ "description" : "Status of the snapshot being retrieved",
+ "required" : true,
+ "type" : "string",
+ "default" : "RUNNING"
+ }, {
+ "in" : "body",
+ "name" : "body",
+ "description" : "Config snapshot to store",
+ "required" : true,
+ "schema" : {
+ "type" : "string"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/ResourceConfigSnapshot"
+ }
+ }
+ }
+ },
+ "delete" : {
+ "tags" : [ "Resource configuration" ],
+ "summary" : "Delete a resource configuration snapshot identified by resourceId, resourceType, status.",
+ "description" : "Delete a resource configuration snapshot, identified by its resourceId and resourceType, and optionally its status, either RUNNING or CANDIDATE.",
+ "operationId" : "ResourceConfigSnapshotController_deleteWithResourceIdAndResourceType_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.configs.api",
+ "parameters" : [ {
+ "name" : "resourceType",
+ "in" : "path",
+ "description" : "Resource Type associated with the resolution.",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "resourceId",
+ "in" : "path",
+ "description" : "Resource Id associated with the resolution.",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "status",
+ "in" : "path",
+ "description" : "Status of the snapshot being deleted.",
+ "required" : true,
+ "type" : "string"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "object"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/dictionary" : {
+ "post" : {
+ "tags" : [ "Resource dictionary" ],
+ "summary" : "Save a resource dictionary",
+ "description" : "Save a resource dictionary by dictionary provided.",
+ "operationId" : "ResourceDictionaryController_saveResourceDictionary_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "application/json" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "body",
+ "description" : "Resource dictionary to store",
+ "required" : true,
+ "schema" : {
+ "$ref" : "#/definitions/ResourceDictionary"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/ResourceDictionary"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/dictionary/by-names" : {
+ "post" : {
+ "tags" : [ "Resource dictionary" ],
+ "summary" : "Search for a resource dictionary",
+ "description" : "Search for a resource dictionary by names provided.",
+ "operationId" : "ResourceDictionaryController_searchResourceDictionaryByNames_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "application/json" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "body",
+ "description" : "List of names",
+ "required" : true,
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "type" : "string"
+ }
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/ResourceDictionary"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/dictionary/definition" : {
+ "post" : {
+ "tags" : [ "Resource dictionary" ],
+ "summary" : "Save a resource dictionary",
+ "description" : "Save a resource dictionary by resource definition provided.",
+ "operationId" : "ResourceDictionaryController_saveResourceDictionary_1_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "application/json" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "body",
+ "description" : "Resource definition to generate",
+ "required" : true,
+ "schema" : {
+ "$ref" : "#/definitions/ResourceDefinition"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/ResourceDefinition"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/dictionary/resource_dictionary_group" : {
+ "get" : {
+ "tags" : [ "Resource dictionary" ],
+ "summary" : "Retrieve all resource dictionary groups",
+ "description" : "Retrieve all resource dictionary groups.",
+ "operationId" : "ResourceDictionaryController_getResourceDictionaryDistinct_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "type" : "string"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/dictionary/search/{tags}" : {
+ "get" : {
+ "tags" : [ "Resource dictionary" ],
+ "summary" : "Search for a resource dictionary",
+ "description" : "Search for a resource dictionary by tags provided.",
+ "operationId" : "ResourceDictionaryController_searchResourceDictionaryByTags_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "tags",
+ "in" : "path",
+ "description" : "Tags list",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "\"status\""
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/ResourceDictionary"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/dictionary/source-mapping" : {
+ "get" : {
+ "tags" : [ "Resource dictionary" ],
+ "summary" : "Search for a source mapping",
+ "description" : "Search for a source mapping.",
+ "operationId" : "ResourceDictionaryController_getResourceSourceMapping_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/ResourceSourceMapping"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/dictionary/{name}" : {
+ "get" : {
+ "tags" : [ "Resource dictionary" ],
+ "summary" : "Retrieve a resource dictionary",
+ "description" : "Retrieve a resource dictionary by name provided.",
+ "operationId" : "ResourceDictionaryController_getResourceDictionaryByName_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "name",
+ "in" : "path",
+ "description" : "Name of the resource",
+ "required" : true,
+ "type" : "string",
+ "x-example" : "\"hostname\""
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/ResourceDictionary"
+ }
+ }
+ }
+ },
+ "delete" : {
+ "tags" : [ "Resource dictionary" ],
+ "summary" : "Remove a resource dictionary",
+ "description" : "Remove a resource dictionary by name provided.",
+ "operationId" : "ResourceDictionaryController_deleteResourceDictionaryByName_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "parameters" : [ {
+ "name" : "name",
+ "in" : "path",
+ "description" : "Name of the resource",
+ "required" : true,
+ "type" : "string"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "object"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/model-type/" : {
+ "post" : {
+ "tags" : [ "Model Type Catalog" ],
+ "summary" : "Save a model type",
+ "description" : "Save a model type by model type definition provided.",
+ "operationId" : "ModelTypeController_saveModelType_POST.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "consumes" : [ "application/json" ],
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "in" : "body",
+ "name" : "body",
+ "required" : false,
+ "schema" : {
+ "$ref" : "#/definitions/ModelType"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/ModelType"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/model-type/by-definition/{definitionType}" : {
+ "get" : {
+ "tags" : [ "Model Type Catalog" ],
+ "summary" : "Retrieve a list of model types",
+ "description" : "Retrieve a list of model types by definition type provided.",
+ "operationId" : "ModelTypeController_getModelTypeByDefinitionType_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "definitionType",
+ "in" : "path",
+ "required" : true,
+ "type" : "string"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/ModelType"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/model-type/search/{tags}" : {
+ "get" : {
+ "tags" : [ "Model Type Catalog" ],
+ "summary" : "Retrieve a list of model types",
+ "description" : "Retrieve a list of model types by tags provided.",
+ "operationId" : "ModelTypeController_searchModelTypes_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "tags",
+ "in" : "path",
+ "required" : true,
+ "type" : "string"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/ModelType"
+ }
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/model-type/{name}" : {
+ "get" : {
+ "tags" : [ "Model Type Catalog" ],
+ "summary" : "Retrieve a model type",
+ "description" : "Retrieve a model type by name provided.",
+ "operationId" : "ModelTypeController_getModelTypeByName_GET.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "name",
+ "in" : "path",
+ "required" : true,
+ "type" : "string"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/ModelType"
+ }
+ }
+ }
+ },
+ "delete" : {
+ "tags" : [ "Model Type Catalog" ],
+ "summary" : "Remove a model type",
+ "description" : "Remove a model type by name provided.",
+ "operationId" : "ModelTypeController_deleteModelTypeByName_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.designer.api",
+ "parameters" : [ {
+ "name" : "name",
+ "in" : "path",
+ "required" : true,
+ "type" : "string"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/ModelType"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/resources" : {
+ "get" : {
+ "tags" : [ "Resources" ],
+ "summary" : "Get all resolved resources using the resolution key",
+ "description" : "Retrieve all stored resolved resources using the blueprint name, blueprint version, artifact name and the resolution-key.",
+ "operationId" : "ResourceController_getAllFromResolutionKeyOrFromResourceTypeAndId_GET.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "bpName",
+ "in" : "query",
+ "description" : "Name of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "bpVersion",
+ "in" : "query",
+ "description" : "Version of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "artifactName",
+ "in" : "query",
+ "description" : "Artifact name for which to retrieve a resolved resource",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "resolutionKey",
+ "in" : "query",
+ "description" : "Resolution Key associated with the resolution",
+ "required" : false,
+ "type" : "string"
+ }, {
+ "name" : "resourceType",
+ "in" : "query",
+ "description" : "Resource Type associated with the resolution",
+ "required" : false,
+ "type" : "string"
+ }, {
+ "name" : "resourceId",
+ "in" : "query",
+ "description" : "Resource Id associated with the resolution",
+ "required" : false,
+ "type" : "string"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/ResourceResolution"
+ }
+ }
+ }
+ }
+ },
+ "delete" : {
+ "tags" : [ "Resources" ],
+ "summary" : "Delete resources using resolution key",
+ "description" : "Delete all the resources associated to a resolution-key using blueprint metadata, artifact name and the resolution-key.",
+ "operationId" : "ResourceController_deleteByBlueprintNameAndBlueprintVersionAndArtifactNameAndResolutionKey_DELETE.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "bpName",
+ "in" : "query",
+ "description" : "Name of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "bpVersion",
+ "in" : "query",
+ "description" : "Version of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "artifactName",
+ "in" : "query",
+ "description" : "Artifact name for which to retrieve a resolved resource",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "resolutionKey",
+ "in" : "query",
+ "description" : "Resolution Key associated with the resolution",
+ "required" : true,
+ "type" : "string"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/Unit"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/resources/resource" : {
+ "get" : {
+ "tags" : [ "Resources" ],
+ "summary" : "Fetch a resource value using resolution key",
+ "description" : "Retrieve a stored resource value using the blueprint metadata, artifact name, resolution-key along with the name of the resource value to retrieve.",
+ "operationId" : "ResourceController_getOneFromResolutionKey_GET.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "bpName",
+ "in" : "query",
+ "description" : "Name of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "bpVersion",
+ "in" : "query",
+ "description" : "Version of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "artifactName",
+ "in" : "query",
+ "description" : "Artifact name for which to retrieve a resolved resource",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "resolutionKey",
+ "in" : "query",
+ "description" : "Resolution Key associated with the resolution",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "name",
+ "in" : "query",
+ "description" : "Name of the resource to retrieve",
+ "required" : true,
+ "type" : "string"
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/ResourceResolution"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/template/{bpName}/{bpVersion}/{artifactName}/{resolutionKey}" : {
+ "post" : {
+ "tags" : [ "Resource template" ],
+ "summary" : "Store a resolved template w/ resolution-key",
+ "description" : "Store a template for a given CBA's action, identified by its blueprint name, blueprint version, artifact name and resolution key.",
+ "operationId" : "TemplateController_postWithResolutionKey_POST.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "bpName",
+ "in" : "path",
+ "description" : "Name of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "bpVersion",
+ "in" : "path",
+ "description" : "Version of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "artifactName",
+ "in" : "path",
+ "description" : "Artifact name for which to retrieve a resolved resource",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "resolutionKey",
+ "in" : "path",
+ "description" : "Resolution Key associated with the resolution",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "in" : "body",
+ "name" : "body",
+ "description" : "Template to store",
+ "required" : true,
+ "schema" : {
+ "type" : "string"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/TemplateResolution"
+ }
+ }
+ }
+ }
+ },
+ "/api/v1/template/{bpName}/{bpVersion}/{artifactName}/{resourceType}/{resourceId}" : {
+ "post" : {
+ "tags" : [ "Resource template" ],
+ "summary" : "Store a resolved template w/ resourceId and resourceType",
+ "description" : "Store a template for a given CBA's action, identified by its blueprint name, blueprint version, artifact name, resourceId and resourceType.",
+ "operationId" : "TemplateController_postWithResourceIdAndResourceType_POST.org.onap.ccsdk.cds.blueprintsprocessor.resource.api",
+ "produces" : [ "application/json" ],
+ "parameters" : [ {
+ "name" : "bpName",
+ "in" : "path",
+ "description" : "Name of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "bpVersion",
+ "in" : "path",
+ "description" : "Version of the CBA",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "artifactName",
+ "in" : "path",
+ "description" : "Artifact name for which to retrieve a resolved resource",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "resourceType",
+ "in" : "path",
+ "description" : "Resource Type associated with the resolution",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "name" : "resourceId",
+ "in" : "path",
+ "description" : "Resource Id associated with the resolution",
+ "required" : true,
+ "type" : "string"
+ }, {
+ "in" : "body",
+ "name" : "body",
+ "description" : "Template to store",
+ "required" : true,
+ "schema" : {
+ "type" : "string"
+ }
+ } ],
+ "responses" : {
+ "200" : {
+ "description" : "successful operation",
+ "schema" : {
+ "$ref" : "#/definitions/TemplateResolution"
+ }
+ }
+ }
+ }
+ }
+ },
+ "securityDefinitions" : {
+ "Basic Auth" : {
+ "type" : "basic"
+ }
+ },
+ "definitions" : {
+ "ArtifactDefinition" : {
+ "type" : "object",
+ "properties" : {
+ "type" : {
+ "type" : "string"
+ },
+ "file" : {
+ "type" : "string"
+ },
+ "repository" : {
+ "type" : "string"
+ },
+ "description" : {
+ "type" : "string"
+ },
+ "properties" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ },
+ "deploy_Path" : {
+ "type" : "string"
+ }
+ }
+ },
+ "BlueprintModelSearch" : {
+ "type" : "object",
+ "required" : [ "artifactName", "artifactVersion", "createdDate", "id", "published", "tags", "updatedBy" ],
+ "properties" : {
+ "id" : {
+ "type" : "string",
+ "example" : "658f9a48-7f54-41ba-ae18-c69f26f3dc94",
+ "description" : "ID of Blueprint model, is automatically created by CDS"
+ },
+ "artifactUUId" : {
+ "type" : "string",
+ "example" : null,
+ "description" : "Artifact UUID, usually null"
+ },
+ "artifactType" : {
+ "type" : "string",
+ "example" : "SDNC_MODEL",
+ "description" : "Artifact Type, usually null"
+ },
+ "artifactVersion" : {
+ "type" : "string",
+ "example" : "1.0.0",
+ "description" : "Artifact Version, usually 1.0.0"
+ },
+ "artifactDescription" : {
+ "type" : "string",
+ "example" : "",
+ "description" : "Artifact Description, usually empty"
+ },
+ "internalVersion" : {
+ "type" : "integer",
+ "format" : "int32",
+ "example" : null,
+ "description" : "Internal Version of CBA, usually null"
+ },
+ "createdDate" : {
+ "type" : "string",
+ "format" : "date-time",
+ "example" : "2020-11-19T10:34:56.000Z",
+ "description" : "Datetime of the creation of CBA in CDS"
+ },
+ "artifactName" : {
+ "type" : "string",
+ "example" : "pnf_netconf",
+ "description" : "Artifact Name, defined in Metadata"
+ },
+ "published" : {
+ "type" : "string",
+ "example" : "pnf_netconf",
+ "description" : "Artifact Name, defined in Metadata"
+ },
+ "updatedBy" : {
+ "type" : "string",
+ "example" : "Deutsche Telekom AG",
+ "description" : "Name of publisher, defined in Metadata"
+ },
+ "tags" : {
+ "type" : "string",
+ "example" : "test",
+ "description" : "Tags to identify the CBA, defined in Metadata"
+ }
+ }
+ },
+ "BootstrapRequest" : {
+ "type" : "object",
+ "required" : [ "loadCBA", "loadModelType", "loadResourceDictionary" ],
+ "properties" : {
+ "loadModelType" : {
+ "type" : "boolean",
+ "example" : true,
+ "description" : "Specifies if default model types should be loaded"
+ },
+ "loadResourceDictionary" : {
+ "type" : "boolean",
+ "example" : true,
+ "description" : "Specifies if default data dictionaries should be loaded"
+ },
+ "loadCBA" : {
+ "type" : "boolean",
+ "example" : true,
+ "description" : "Specifies if default blueprint models should be loaded"
+ }
+ }
+ },
+ "CapabilityAssignment" : {
+ "type" : "object",
+ "properties" : {
+ "attributes" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ },
+ "properties" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ }
+ }
+ },
+ "ConstraintClause" : {
+ "type" : "object",
+ "properties" : {
+ "equal" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "length" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "pattern" : {
+ "type" : "string"
+ },
+ "schema" : {
+ "type" : "string"
+ },
+ "greater_than" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "greater_or_equal" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "less_than" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "less_or_equal" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "in_range" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ },
+ "valid_values" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ },
+ "min_length" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "max_length" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ }
+ },
+ "EntrySchema" : {
+ "type" : "object",
+ "properties" : {
+ "type" : {
+ "type" : "string"
+ },
+ "constraints" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/ConstraintClause"
+ }
+ }
+ }
+ },
+ "FilePart" : {
+ "type" : "object"
+ },
+ "Implementation" : {
+ "type" : "object",
+ "properties" : {
+ "primary" : {
+ "type" : "string"
+ },
+ "dependencies" : {
+ "type" : "array",
+ "items" : {
+ "type" : "string"
+ }
+ },
+ "timeout" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "lock" : {
+ "$ref" : "#/definitions/LockAssignment"
+ },
+ "operation_host" : {
+ "type" : "string"
+ }
+ }
+ },
+ "InterfaceAssignment" : {
+ "type" : "object",
+ "properties" : {
+ "operations" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/OperationAssignment"
+ }
+ },
+ "inputs" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ }
+ }
+ },
+ "JsonNode" : {
+ "type" : "object",
+ "properties" : {
+ "array" : {
+ "type" : "boolean"
+ },
+ "null" : {
+ "type" : "boolean"
+ },
+ "float" : {
+ "type" : "boolean"
+ },
+ "nodeType" : {
+ "type" : "string",
+ "enum" : [ "ARRAY", "BINARY", "BOOLEAN", "MISSING", "NULL", "NUMBER", "OBJECT", "POJO", "STRING" ]
+ },
+ "number" : {
+ "type" : "boolean"
+ },
+ "boolean" : {
+ "type" : "boolean"
+ },
+ "short" : {
+ "type" : "boolean"
+ },
+ "double" : {
+ "type" : "boolean"
+ },
+ "int" : {
+ "type" : "boolean"
+ },
+ "long" : {
+ "type" : "boolean"
+ },
+ "object" : {
+ "type" : "boolean"
+ },
+ "binary" : {
+ "type" : "boolean"
+ },
+ "containerNode" : {
+ "type" : "boolean"
+ },
+ "pojo" : {
+ "type" : "boolean"
+ },
+ "missingNode" : {
+ "type" : "boolean"
+ },
+ "valueNode" : {
+ "type" : "boolean"
+ },
+ "integralNumber" : {
+ "type" : "boolean"
+ },
+ "textual" : {
+ "type" : "boolean"
+ },
+ "floatingPointNumber" : {
+ "type" : "boolean"
+ },
+ "bigInteger" : {
+ "type" : "boolean"
+ },
+ "bigDecimal" : {
+ "type" : "boolean"
+ }
+ }
+ },
+ "LockAssignment" : {
+ "type" : "object",
+ "properties" : {
+ "key" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "acquireTimeout" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ }
+ },
+ "ModelType" : {
+ "type" : "object",
+ "required" : [ "definition", "definitionType", "derivedFrom", "description", "modelName", "tags", "updatedBy", "version" ],
+ "properties" : {
+ "modelName" : {
+ "type" : "string"
+ },
+ "derivedFrom" : {
+ "type" : "string"
+ },
+ "definitionType" : {
+ "type" : "string"
+ },
+ "definition" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "description" : {
+ "type" : "string"
+ },
+ "version" : {
+ "type" : "string"
+ },
+ "tags" : {
+ "type" : "string"
+ },
+ "creationDate" : {
+ "type" : "string",
+ "format" : "date-time"
+ },
+ "updatedBy" : {
+ "type" : "string"
+ }
+ }
+ },
+ "NodeFilterDefinition" : {
+ "type" : "object",
+ "properties" : {
+ "properties" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/PropertyDefinition"
+ }
+ },
+ "capabilities" : {
+ "type" : "array",
+ "items" : {
+ "type" : "string"
+ }
+ }
+ }
+ },
+ "NodeTemplate" : {
+ "type" : "object",
+ "properties" : {
+ "description" : {
+ "type" : "string"
+ },
+ "type" : {
+ "type" : "string"
+ },
+ "metadata" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "type" : "string"
+ }
+ },
+ "directives" : {
+ "type" : "array",
+ "items" : {
+ "type" : "string"
+ }
+ },
+ "properties" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ },
+ "attributes" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ },
+ "capabilities" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/CapabilityAssignment"
+ }
+ },
+ "requirements" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/RequirementAssignment"
+ }
+ },
+ "interfaces" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/InterfaceAssignment"
+ }
+ },
+ "artifacts" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/ArtifactDefinition"
+ }
+ },
+ "copy" : {
+ "type" : "string"
+ },
+ "node_filter" : {
+ "$ref" : "#/definitions/NodeFilterDefinition"
+ }
+ }
+ },
+ "OperationAssignment" : {
+ "type" : "object",
+ "properties" : {
+ "description" : {
+ "type" : "string"
+ },
+ "implementation" : {
+ "$ref" : "#/definitions/Implementation"
+ },
+ "inputs" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ },
+ "outputs" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/JsonNode"
+ }
+ }
+ }
+ },
+ "Page" : {
+ "type" : "object",
+ "properties" : {
+ "totalPages" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "totalElements" : {
+ "type" : "integer",
+ "format" : "int64"
+ },
+ "size" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "content" : {
+ "type" : "array",
+ "items" : {
+ "type" : "object"
+ }
+ },
+ "sort" : {
+ "$ref" : "#/definitions/Sort"
+ },
+ "first" : {
+ "type" : "boolean"
+ },
+ "last" : {
+ "type" : "boolean"
+ },
+ "numberOfElements" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "pageable" : {
+ "$ref" : "#/definitions/Pageable"
+ },
+ "number" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "empty" : {
+ "type" : "boolean"
+ }
+ }
+ },
+ "PageBlueprintModelSearch" : {
+ "type" : "object",
+ "properties" : {
+ "totalPages" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "totalElements" : {
+ "type" : "integer",
+ "format" : "int64"
+ },
+ "size" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "content" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/BlueprintModelSearch"
+ }
+ },
+ "sort" : {
+ "$ref" : "#/definitions/Sort"
+ },
+ "first" : {
+ "type" : "boolean"
+ },
+ "last" : {
+ "type" : "boolean"
+ },
+ "numberOfElements" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "pageable" : {
+ "$ref" : "#/definitions/Pageable"
+ },
+ "number" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "empty" : {
+ "type" : "boolean"
+ }
+ }
+ },
+ "Pageable" : {
+ "type" : "object",
+ "properties" : {
+ "offset" : {
+ "type" : "integer",
+ "format" : "int64"
+ },
+ "sort" : {
+ "$ref" : "#/definitions/Sort"
+ },
+ "unpaged" : {
+ "type" : "boolean"
+ },
+ "pageSize" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "pageNumber" : {
+ "type" : "integer",
+ "format" : "int32"
+ },
+ "paged" : {
+ "type" : "boolean"
+ }
+ }
+ },
+ "PropertyDefinition" : {
+ "type" : "object",
+ "properties" : {
+ "description" : {
+ "type" : "string"
+ },
+ "required" : {
+ "type" : "boolean"
+ },
+ "type" : {
+ "type" : "string"
+ },
+ "status" : {
+ "type" : "string"
+ },
+ "constraints" : {
+ "type" : "array",
+ "items" : {
+ "$ref" : "#/definitions/ConstraintClause"
+ }
+ },
+ "metadata" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "type" : "string"
+ }
+ },
+ "value" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "input-param" : {
+ "type" : "boolean"
+ },
+ "default" : {
+ "$ref" : "#/definitions/JsonNode"
+ },
+ "entry_schema" : {
+ "$ref" : "#/definitions/EntrySchema"
+ },
+ "external-schema" : {
+ "type" : "string"
+ }
+ }
+ },
+ "RequirementAssignment" : {
+ "type" : "object",
+ "properties" : {
+ "capability" : {
+ "type" : "string"
+ },
+ "node" : {
+ "type" : "string"
+ },
+ "relationship" : {
+ "type" : "string"
+ }
+ }
+ },
+ "ResourceConfigSnapshot" : {
+ "type" : "object",
+ "required" : [ "config_snapshot", "createdDate", "resourceId", "resourceType", "status" ],
+ "properties" : {
+ "resourceType" : {
+ "type" : "string",
+ "example" : "ServiceInstance",
+ "description" : "Resource type."
+ },
+ "resourceId" : {
+ "type" : "string",
+ "example" : "1",
+ "description" : "ID associated with the resource type in the inventory system."
+ },
+ "status" : {
+ "type" : "string",
+ "description" : "Status of the snapshot, either running or candidate.",
+ "enum" : [ "RUNNING", "CANDIDATE" ]
+ },
+ "config_snapshot" : {
+ "type" : "string",
+ "example" : "config_snapshot",
+ "description" : "Snapshot of the resource as retrieved from resource."
+ },
+ "id" : {
+ "type" : "string"
+ },
+ "createdDate" : {
+ "type" : "string",
+ "format" : "date-time",
+ "description" : "Creation date of the snapshot."
+ }
+ }
+ },
+ "ResourceDefinition" : {
+ "type" : "object",
+ "required" : [ "group", "name", "property", "sources", "updated-by" ],
+ "properties" : {
+ "tags" : {
+ "type" : "string"
+ },
+ "name" : {
+ "type" : "string",
+ "example" : "default-source",
+ "description" : "Name"
+ },
+ "property" : {
+ "description" : "Property",
+ "$ref" : "#/definitions/PropertyDefinition"
+ },
+ "group" : {
+ "type" : "string",
+ "example" : "default",
+ "description" : "Group"
+ },
+ "updated-by" : {
+ "type" : "string",
+ "example" : "example@onap.com",
+ "description" : "Updated by"
+ },
+ "sources" : {
+ "type" : "object",
+ "example" : "sources",
+ "description" : "Sources",
+ "additionalProperties" : {
+ "$ref" : "#/definitions/NodeTemplate"
+ }
+ }
+ }
+ },
+ "ResourceDictionary" : {
+ "type" : "object",
+ "required" : [ "dataType", "definition", "description", "entrySchema", "name", "resourceDictionaryGroup", "tags", "updatedBy" ],
+ "properties" : {
+ "name" : {
+ "type" : "string",
+ "example" : "sample-db-source",
+ "description" : "Name"
+ },
+ "dataType" : {
+ "type" : "string",
+ "example" : "string",
+ "description" : "Data type"
+ },
+ "entrySchema" : {
+ "type" : "string",
+ "example" : "dt-license-key",
+ "description" : "Entry schema"
+ },
+ "resourceDictionaryGroup" : {
+ "type" : "string",
+ "example" : "default",
+ "description" : "Resource dictionary group"
+ },
+ "definition" : {
+ "description" : "Definition",
+ "$ref" : "#/definitions/ResourceDefinition"
+ },
+ "description" : {
+ "type" : "string",
+ "example" : "demo_artifacts_version",
+ "description" : "Description"
+ },
+ "tags" : {
+ "type" : "string",
+ "example" : "hostname",
+ "description" : "Tags"
+ },
+ "creationDate" : {
+ "type" : "string",
+ "format" : "date-time"
+ },
+ "updatedBy" : {
+ "type" : "string",
+ "example" : "username",
+ "description" : "Updated by"
+ }
+ }
+ },
+ "ResourceResolution" : {
+ "type" : "object",
+ "required" : [ "artifactName", "blueprintName", "blueprintVersion", "createdDate", "dictionaryName", "dictionarySource", "dictionaryVersion", "name", "occurrence", "resolutionKey", "resourceId", "resourceType", "status", "value" ],
+ "properties" : {
+ "blueprintName" : {
+ "type" : "string",
+ "description" : "Name of the CBA."
+ },
+ "blueprintVersion" : {
+ "type" : "string",
+ "description" : "Version of the CBA."
+ },
+ "artifactName" : {
+ "type" : "string",
+ "description" : "Artifact name for which to retrieve a resolved resource."
+ },
+ "name" : {
+ "type" : "string",
+ "description" : "Name of the resource."
+ },
+ "value" : {
+ "type" : "string",
+ "description" : "Value of the resolution."
+ },
+ "status" : {
+ "type" : "string",
+ "description" : "Whether success of failure."
+ },
+ "resolutionKey" : {
+ "type" : "string",
+ "description" : "Resolution Key uniquely identifying the resolution of a given artifact within a CBA."
+ },
+ "resourceType" : {
+ "type" : "string",
+ "example" : "ServiceInstance",
+ "description" : "Resolution type."
+ },
+ "resourceId" : {
+ "type" : "string",
+ "description" : "ID associated with the resolution type in the inventory system."
+ },
+ "occurrence" : {
+ "type" : "integer",
+ "format" : "int32",
+ "description" : "If resolution occurred multiple time, this field provides the index."
+ },
+ "dictionaryName" : {
+ "type" : "string",
+ "description" : "Name of the data dictionary used for the resolution."
+ },
+ "dictionarySource" : {
+ "type" : "string",
+ "description" : "Source associated with the data dictionary used for the resolution."
+ },
+ "dictionaryVersion" : {
+ "type" : "integer",
+ "format" : "int32",
+ "description" : "Version of the data dictionary used for the resolution."
+ },
+ "id" : {
+ "type" : "string"
+ },
+ "createdDate" : {
+ "type" : "string",
+ "format" : "date-time",
+ "description" : "Creation date of the resolution."
+ }
+ }
+ },
+ "ResourceSourceMapping" : {
+ "type" : "object",
+ "properties" : {
+ "resourceSourceMappings" : {
+ "type" : "object",
+ "additionalProperties" : {
+ "type" : "string"
+ }
+ }
+ }
+ },
+ "Sort" : {
+ "type" : "object",
+ "properties" : {
+ "sorted" : {
+ "type" : "boolean"
+ },
+ "unsorted" : {
+ "type" : "boolean"
+ },
+ "empty" : {
+ "type" : "boolean"
+ }
+ }
+ },
+ "TemplateResolution" : {
+ "type" : "object",
+ "required" : [ "artifactName", "blueprintName", "blueprintVersion", "createdDate", "occurrence", "resolutionKey", "resourceId", "resourceType", "result" ],
+ "properties" : {
+ "blueprintName" : {
+ "type" : "string",
+ "description" : "Name of the CBA."
+ },
+ "blueprintVersion" : {
+ "type" : "string",
+ "description" : "Version of the CBA."
+ },
+ "artifactName" : {
+ "type" : "string",
+ "description" : "Artifact name for which to retrieve a resolved resource."
+ },
+ "result" : {
+ "type" : "string",
+ "description" : "Rendered template."
+ },
+ "resolutionKey" : {
+ "type" : "string",
+ "description" : "Resolution Key uniquely identifying the resolution of a given artifact within a CBA."
+ },
+ "resourceType" : {
+ "type" : "string",
+ "example" : "ServiceInstance",
+ "description" : "Resolution type."
+ },
+ "resourceId" : {
+ "type" : "string",
+ "description" : "ID associated with the resolution type in the inventory system."
+ },
+ "occurrence" : {
+ "type" : "integer",
+ "format" : "int32",
+ "description" : "If resolution occurred multiple time, this field provides the index."
+ },
+ "id" : {
+ "type" : "string"
+ },
+ "createdDate" : {
+ "type" : "string",
+ "format" : "date-time",
+ "description" : "Creation date of the resolution."
+ }
+ }
+ },
+ "Unit" : {
+ "type" : "object"
+ },
+ "WorkFlowSpecRequest" : {
+ "type" : "object",
+ "required" : [ "blueprintName", "workflowName" ],
+ "properties" : {
+ "blueprintName" : {
+ "type" : "string",
+ "example" : "pnf_netconf",
+ "description" : "Name of the BLueprint"
+ },
+ "version" : {
+ "type" : "string"
+ },
+ "returnContent" : {
+ "type" : "string"
+ },
+ "workflowName" : {
+ "type" : "string",
+ "example" : "config-assign",
+ "description" : "Name of the Workflow"
+ },
+ "specType" : {
+ "type" : "string"
+ }
+ }
+ }
+ }
} \ No newline at end of file
diff --git a/ms/blueprintsprocessor/application/src/main/resources/application-dev.properties b/ms/blueprintsprocessor/application/src/main/resources/application-dev.properties
index e20e2649d..cac9a0034 100755
--- a/ms/blueprintsprocessor/application/src/main/resources/application-dev.properties
+++ b/ms/blueprintsprocessor/application/src/main/resources/application-dev.properties
@@ -22,7 +22,7 @@
#Current paths assume relative paths to $CDS_DIR/ms/blueprintsprocessor/application
# Web server config
-server.port=8081
+server.port=8080
# Used in Health Check
security.user.password: {bcrypt}$2a$10$duaUzVUVW0YPQCSIbGEkQOXwafZGwQ/b32/Ys4R1iwSSawFgz7QNu
security.user.name: ccsdkapps
@@ -51,7 +51,7 @@ blueprintsprocessor.loadCbaExtension=zip
### END -Controller Blueprints Properties
blueprintsprocessor.grpcEnable=false
-blueprintsprocessor.httpPort=8081
+blueprintsprocessor.httpPort=8080
blueprintsprocessor.grpcPort=9111
# Command executor
@@ -75,20 +75,20 @@ blueprintsprocessor.grpcclient.py-executor.trustCertCollection=src/main/resource
# db
-blueprintsprocessor.db.url=jdbc:mysql://localhost:3306/sdnctl
-blueprintsprocessor.db.username=sdnctl
-blueprintsprocessor.db.password=sdnctl
-blueprintsprocessor.db.driverClassName=org.mariadb.jdbc.Driver
+blueprintsprocessor.db.url=jdbc:h2:mem:sdnctl;MODE=MySQL;DATABASE_TO_LOWER=TRUE;CASE_INSENSITIVE_IDENTIFIERS=TRUE
+blueprintsprocessor.db.username=sa
+blueprintsprocessor.db.password=password
+blueprintsprocessor.db.driverClassName=org.h2.Driver
blueprintsprocessor.db.hibernateHbm2ddlAuto=update
blueprintsprocessor.db.hibernateDDLAuto=update
blueprintsprocessor.db.hibernateNamingStrategy=org.hibernate.cfg.ImprovedNamingStrategy
-blueprintsprocessor.db.hibernateDialect=org.hibernate.dialect.MySQL5InnoDBDialect
+blueprintsprocessor.db.hibernateDialect=org.hibernate.dialect.H2Dialect
# processor-db endpoint
-blueprintsprocessor.db.processor-db.type=maria-db
-blueprintsprocessor.db.processor-db.url=jdbc:mysql://localhost:3306/sdnctl
-blueprintsprocessor.db.processor-db.username=root
-blueprintsprocessor.db.processor-db.password=secretpassword
+blueprintsprocessor.db.processor-db.type=mysql-db
+blueprintsprocessor.db.processor-db.url=jdbc:h2:mem:sdnctl;MODE=MySQL;DATABASE_TO_LOWER=TRUE;CASE_INSENSITIVE_IDENTIFIERS=TRUE
+blueprintsprocessor.db.processor-db.username=sa
+blueprintsprocessor.db.processor-db.password=password
# Python executor
### If testing in docker, use the absolute paths as Docker view of filesystem will not respect relative paths.
diff --git a/ms/blueprintsprocessor/modules/inbounds/pom.xml b/ms/blueprintsprocessor/modules/inbounds/pom.xml
index 3ee279cec..42a425c4a 100644
--- a/ms/blueprintsprocessor/modules/inbounds/pom.xml
+++ b/ms/blueprintsprocessor/modules/inbounds/pom.xml
@@ -92,7 +92,6 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
- <scope>test</scope>
</dependency>
</dependencies>
</project>
diff --git a/ms/blueprintsprocessor/parent/pom.xml b/ms/blueprintsprocessor/parent/pom.xml
index 8f4af1fbd..99ae887de 100755
--- a/ms/blueprintsprocessor/parent/pom.xml
+++ b/ms/blueprintsprocessor/parent/pom.xml
@@ -38,14 +38,14 @@
<onap.logger.slf4j>1.2.2</onap.logger.slf4j>
<hazelcast.version>4.2.2</hazelcast.version>
- <h2database.version>1.4.197</h2database.version>
+ <h2database.version>1.4.200</h2database.version>
<powermock.version>1.7.4</powermock.version>
<mockkserver.version>5.5.1</mockkserver.version>
<json.unit.version>2.8.0</json.unit.version>
<xmlunit.version>2.6.3</xmlunit.version>
-
-
+
+
<sshd.version>2.2.0</sshd.version>
<jsch.version>0.1.55</jsch.version>
<jslt.version>0.1.8</jslt.version>
@@ -499,7 +499,6 @@
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2database.version}</version>
- <scope>test</scope>
</dependency>
<!-- Test Dependency -->
diff --git a/ms/py-executor/resource_resolution/README.md b/ms/py-executor/resource_resolution/README.md
index 3920338ae..275073583 100644
--- a/ms/py-executor/resource_resolution/README.md
+++ b/ms/py-executor/resource_resolution/README.md
@@ -150,7 +150,7 @@ from resource_resolution.resource_resolution import ResourceResolution
if __name__ == "__main__":
# If you want to use only HTTP you don't have to use context manager
r = ResourceResolution(
- http_server_port=8081,
+ http_server_port=8080,
http_auth_user="ccsdkapps",
http_auth_pass="ccsdkapps",
http_use_tls=False
@@ -177,4 +177,4 @@ if __name__ == "__main__":
resolution_key="test",
)
assert another_template.result == "another_value"
-``` \ No newline at end of file
+```
diff --git a/ms/py-executor/resource_resolution/tests/http_client_test.py b/ms/py-executor/resource_resolution/tests/http_client_test.py
index 2279fde7a..2c38457df 100644
--- a/ms/py-executor/resource_resolution/tests/http_client_test.py
+++ b/ms/py-executor/resource_resolution/tests/http_client_test.py
@@ -30,9 +30,9 @@ def test_http_client(request_mock):
assert c.protocol == "http"
assert c.url == "http://127.0.0.1:8080/api/v1"
- c = Client("127.0.0.1", 8081, use_ssl=True)
+ c = Client("127.0.0.1", 8080, use_ssl=True)
assert c.protocol == "https"
- assert c.url == "https://127.0.0.1:8081/api/v1"
+ assert c.url == "https://127.0.0.1:8080/api/v1"
c.send_request("GET", "something")
request_mock.assert_called_once_with(method="GET", url=f"{c.url}/something", verify=False, auth=None)