aboutsummaryrefslogtreecommitdiffstats
path: root/cmso-service/src/main/resources/META-INF/resources/swagger/swagger.json
diff options
context:
space:
mode:
authorMalarvizhi <malarvizhi.44@wipro.com>2021-03-09 23:27:01 -0800
committerMalarvizhi <malarvizhi.44@wipro.com>2021-03-09 23:27:01 -0800
commitf11165e00b6633187f8ab0b002ed6f7e196260d5 (patch)
tree91ebc05684bca4331d06ad958cbdbc77c14a6bb8 /cmso-service/src/main/resources/META-INF/resources/swagger/swagger.json
parent6403adcbac7bd6350310fe0eb7562a378a253b4a (diff)
Fix weak cryptography issues2.3.2
Issue-ID: OPTFRA-927 Signed-off-by: Malarvizhi Paramasivam <malarvizhi.44@wipro.com> Change-Id: I2ae9a114b9825c3d3e6faa31afb72a54cdf0c423
Diffstat (limited to 'cmso-service/src/main/resources/META-INF/resources/swagger/swagger.json')
-rw-r--r--cmso-service/src/main/resources/META-INF/resources/swagger/swagger.json30
1 files changed, 21 insertions, 9 deletions
diff --git a/cmso-service/src/main/resources/META-INF/resources/swagger/swagger.json b/cmso-service/src/main/resources/META-INF/resources/swagger/swagger.json
index 932e117..eb563ad 100644
--- a/cmso-service/src/main/resources/META-INF/resources/swagger/swagger.json
+++ b/cmso-service/src/main/resources/META-INF/resources/swagger/swagger.json
@@ -1,7 +1,7 @@
{
"swagger" : "2.0",
"info" : {
- "version" : "2.3.0-SNAPSHOT",
+ "version" : "2.3.1-SNAPSHOT",
"title" : "cmso-service"
},
"basePath" : "/cmso",
@@ -774,15 +774,25 @@
"format" : "int32",
"description" : "Maximum number of VNF changes to schedule concurrently"
},
- "policyId" : {
- "type" : "string",
- "description" : "Name of schedule optimization policy used by the change management cmso optimizer to determine available time slot"
+ "changeWindows" : {
+ "type" : "array",
+ "description" : "Lists of desired change windows to schedule the elements.",
+ "items" : {
+ "$ref" : "#/definitions/Change Window"
+ }
+ },
+ "policies" : {
+ "type" : "array",
+ "description" : "List of the policies to control optimization.",
+ "items" : {
+ "$ref" : "#/definitions/Supported Policy Information"
+ }
},
- "vnfDetails" : {
+ "elements" : {
"type" : "array",
"description" : "Lists of the VNFs to be changed and the desired change windows",
"items" : {
- "$ref" : "#/definitions/VNF Details"
+ "$ref" : "#/definitions/Optimizer Element"
}
}
},
@@ -793,14 +803,16 @@
"properties" : {
"startTime" : {
"type" : "string",
- "description" : "Earliest time that a set of changes may begin."
+ "format" : "date-time",
+ "description" : "Earliest time for which changes may begin."
},
"endTime" : {
"type" : "string",
- "description" : "Latest time by which all changes must be completed"
+ "format" : "date-time",
+ "description" : "Latest time by which all changes must be completed."
}
},
- "description" : "Time window within which the scheduler optimizer can schedule the changes for the group of NVFs"
+ "description" : "Time window for which tickets are to returned"
},
"CmDetailsMessage" : {
"type" : "object",