summaryrefslogtreecommitdiffstats
path: root/components/model-catalog/blueprint-model/test-blueprint/capability_restconf/Definitions/data_types.json
diff options
context:
space:
mode:
authorottero <rodrigo.ottero@est.tech>2019-03-17 19:38:32 +0000
committerottero <rodrigo.ottero@est.tech>2019-03-17 19:38:32 +0000
commit3ac0d20b08dd8c31ff85ad3ca5c53df11b6d96e4 (patch)
treed0143e8d9a599413dd1917238b21ad84f040f58d /components/model-catalog/blueprint-model/test-blueprint/capability_restconf/Definitions/data_types.json
parentc6d4e25ec3df07b347977ee3b6720a60fcb28da9 (diff)
Adding custom headers capability to REST client
For YANG PATCH requests to ODL to work, they need to have a Content- type header of application/yang.patch+json and should not have Accept as application/json Current REST client inserts a default header to the requests with this content: Content-Type: application/json Accept: application/json The solution was to add the possibility of sending custom headers alon- gside the other parameters. Change-Id: I2cf0cd2ef7b87f4f5a246d427dffafe266cb33f7 Issue-ID: CCSDK-926 Signed-off-by: ottero <rodrigo.ottero@est.tech>
Diffstat (limited to 'components/model-catalog/blueprint-model/test-blueprint/capability_restconf/Definitions/data_types.json')
-rw-r--r--components/model-catalog/blueprint-model/test-blueprint/capability_restconf/Definitions/data_types.json16
1 files changed, 12 insertions, 4 deletions
diff --git a/components/model-catalog/blueprint-model/test-blueprint/capability_restconf/Definitions/data_types.json b/components/model-catalog/blueprint-model/test-blueprint/capability_restconf/Definitions/data_types.json
index 9f35eef88..e5aa763ba 100644
--- a/components/model-catalog/blueprint-model/test-blueprint/capability_restconf/Definitions/data_types.json
+++ b/components/model-catalog/blueprint-model/test-blueprint/capability_restconf/Definitions/data_types.json
@@ -3,13 +3,21 @@
"dt-config-assign-properties" : {
"description" : "Dynamic DataType definition for workflow(config-assign).",
"version" : "1.0.0",
- "properties" : { },
+ "properties" : {
+ "entity" : {
+ "type" : "json"
+ }
+ },
"derived_from" : "tosca.datatypes.Dynamic"
},
- "dt-configure-properties" : {
- "description" : "Dynamic DataType definition for workflow(configure).",
+ "dt-config-deploy-properties" : {
+ "description" : "Dynamic DataType definition for workflow(config-deploy).",
"version" : "1.0.0",
- "properties" : { },
+ "properties" : {
+ "entity" : {
+ "type" : "json"
+ }
+ },
"derived_from" : "tosca.datatypes.Dynamic"
}
}