- Flexera Community
- :
- Cloud Management Platform
- :
- Cloud Management Platform Forum
- :
- Please help create dynamic parameter in "More Actions" menu
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Please help create dynamic parameter in "More Actions" menu
Hello!
I need help to create an additional action for the CloudApp.
That action has multiple parameters.
Im struggling to make a dynamic content of one of those parameters.
The same function with a parameter works fine with launch operation but it`s simply not executed with the additional action.
How can I achieve that?
https://selfservice-4.rightscale.com/designer/source/6261bfe24d22432e78039443
my CAT:
parameter "param_stack_items" do
type "string"
label "List of applications"
description "json:{\"definition\":\"getUserDeployments\", \"description\": \"Select application to backup from the list.\"}"
operations "backup", "launch"
end
operation "launch" do
description "Launch the server via Jenkins"
definition "launchVM"
end
operation "backup" do
label "backupVM"
description "Perform off-line file system backup (/dr01 only)"
definition "backupVM"
end
define launchVM($param_stack_items) do
task_label("Launching the VM..")
end
define backupVM($param_stack_items) do
task_label("Backupping")
end
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I asked around internally and got the following response from one of the SME's:
