Skip to content

Commit c1ceb32

Browse files
MNoevaNoeva
andauthored
Added binding-name, timeout and namespace parameters (#4086)
Co-authored-by: Noeva <monika.noeva@sap.com>
1 parent bdaee68 commit c1ceb32

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

src/schemas/json/mtad.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545
"description": "The name of the application in the Cloud Foundry environment to be deployed for this module, based on the module name.",
4646
"type": "string"
4747
},
48+
"apply-namespace": {
49+
"description": "Apply namespace to application name.",
50+
"type": "boolean"
51+
},
4852
"buildpack": {
4953
"description": "The name or the URL of a custom buildpack required by the application.",
5054
"type": "string"
@@ -185,12 +189,27 @@
185189
"description": "Use this parameter to define which prebuilt root file system (rootfs) you want to use.",
186190
"type": "string"
187191
},
192+
"stage-timeout": {
193+
"description": "Defines how long, in seconds, your application can take during staging before the MTA operation times out.",
194+
"type": "number",
195+
"minimum": 0
196+
},
197+
"start-timeout": {
198+
"description": "Defines how long, in seconds, your application can take to start before the MTA operation times out.",
199+
"type": "number",
200+
"minimum": 0
201+
},
188202
"tasks": {
189203
"$ref": "#/definitions/module-parameters-tasks",
190204
"description": "Specify tasks, which are available for execution in the current droplet of the application. Also provide use of environment variables which are specified with the env scope."
191205
},
206+
"task-execution-timeout": {
207+
"description": "Defines how long, in seconds, your application can take to execute a task before the MTA operation times out.",
208+
"type": "number",
209+
"minimum": 0
210+
},
192211
"upload-timeout": {
193-
"description": "The application upload timeout in seconds.",
212+
"description": "Defines how long, in seconds, you can upload your application binary before the MTA operation times out.",
194213
"type": "number",
195214
"minimum": 0
196215
}
@@ -235,6 +254,7 @@
235254
"type": "boolean"
236255
},
237256
"apply-namespace": {
257+
"description": "Apply namespace to application routes.",
238258
"type": "boolean"
239259
}
240260
}
@@ -358,6 +378,10 @@
358378
"content-target": {
359379
"description": "Specify that the resource would be used as a target for the module content deployment.",
360380
"type": "boolean"
381+
},
382+
"binding-name": {
383+
"description": "Provide a binding name for the association between an application and a service instance.",
384+
"type": "string"
361385
}
362386
}
363387
},
@@ -486,6 +510,10 @@
486510
}
487511
]
488512
},
513+
"apply-namespace": {
514+
"description": "Apply namespace to service name.",
515+
"type": "boolean"
516+
},
489517
"service-key-name": {
490518
"description": "Used when consuming an existing service key. Specifies the name of the service key. See Consumption of existing service keys for more information.",
491519
"type": "string"

0 commit comments

Comments
 (0)