Skip to content

Commit

Permalink
Added binding-name, timeout and namespace parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Noeva authored and MNoeva committed Sep 19, 2024
1 parent cf4a281 commit 4796bda
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion src/schemas/json/mtad.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
}
Expand Down Expand Up @@ -235,6 +254,7 @@
"type": "boolean"
},
"apply-namespace": {
"description": "Apply namespace to application routes.",
"type": "boolean"
}
}
Expand Down Expand Up @@ -358,6 +378,10 @@
"content-target": {
"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"
}
}
},
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 4796bda

Please sign in to comment.