
Renames name of the section containing class methods. New name is more OOP and doesn't cause confusion with Mistral. Old name is still works for backward compatibility Change-Id: I7f6a4af31983f85283e2c91d0a88b9b42367affa Implements: blueprint rename-workflow-to-methods
22 lines
463 B
YAML
22 lines
463 B
YAML
Namespaces:
|
|
=: io.murano
|
|
|
|
Name: Application
|
|
|
|
Methods:
|
|
reportDeployed:
|
|
Arguments:
|
|
- title:
|
|
Contract: $.string()
|
|
Default: null
|
|
- unitCount:
|
|
Contract: $.int()
|
|
Default: null
|
|
Body:
|
|
- $this.find(Environment).instanceNotifier.trackApplication($this, $title, $unitCount)
|
|
|
|
reportDestroyed:
|
|
Body:
|
|
- $this.find(Environment).instanceNotifier.untrackApplication($this)
|
|
|