From 4f2d087c4213de75f2d5e3e669e6ac73af623a14 Mon Sep 17 00:00:00 2001 From: Noeva Date: Thu, 19 Sep 2024 14:10:06 +0300 Subject: [PATCH] Added binding-name, timeout and namespace parameters --- src/schemas/json/mtad.json | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/src/schemas/json/mtad.json b/src/schemas/json/mtad.json index a029d57af7e..08a4986eb3c 100644 --- a/src/schemas/json/mtad.json +++ b/src/schemas/json/mtad.json @@ -45,6 +45,10 @@ "description": "The name of the application in the Cloud Foundry environment to be deployed for this module, based on the module name.", "type": "string" }, + "apply-namespace": { + "description": "Apply namespace to application name.", + "type": "boolean" + }, "buildpack": { "description": "The name or the URL of a custom buildpack required by the application.", "type": "string" @@ -185,12 +189,27 @@ "description": "Use this parameter to define which prebuilt root file system (rootfs) you want to use.", "type": "string" }, + "stage-timeout": { + "description": "Defines how long, in seconds, your application can take during staging before the MTA operation times out.", + "type": "number", + "minimum": 0 + }, + "start-timeout": { + "description": "Defines how long, in seconds, your application can take to start before the MTA operation times out.", + "type": "number", + "minimum": 0 + }, "tasks": { "$ref": "#/definitions/module-parameters-tasks", "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." }, + "task-execution-timeout": { + "description": "Defines how long, in seconds, your application can take to execute a task before the MTA operation times out.", + "type": "number", + "minimum": 0 + }, "upload-timeout": { - "description": "The application upload timeout in seconds.", + "description": "Defines how long, in seconds, you can upload your application binary before the MTA operation times out.", "type": "number", "minimum": 0 } @@ -235,6 +254,7 @@ "type": "boolean" }, "apply-namespace": { + "description": "Apply namespace to application routes.", "type": "boolean" } } @@ -359,6 +379,10 @@ "description": "Specify that the resource would be used as a target for the module content deployment.", "type": "boolean" } + }, + "binding-name": { + "description": "Provide a binding name for the association between an application and a service instance.", + "type": "string" } }, "module-provides": { @@ -486,6 +510,10 @@ } ] }, + "apply-namespace": { + "description": "Apply namespace to service name.", + "type": "boolean" + }, "service-key-name": { "description": "Used when consuming an existing service key. Specifies the name of the service key. See Consumption of existing service keys for more information.", "type": "string"