Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Classes

class ExtensionResult(**kwargs)

Depending on the context of the initialization, different parameters need to be passed to the constructor. See the notes below.

The form of the ExtensionResult constructor when instantiated in the context of Dynamic Command, is as follows:

Constructor Signature

(rc = 0, message = '', output = False, output_data = None, output_name = None, call_frame = None, **kwargs)

Parameters

rc : int, optional

This parameter represents the return code of the Dynamic Command operation and determines whether the Extension task instance is perceived as completing as Success or Failed by the Controller.
A value of 0 indicates success. All other values indicate an error condition and result in a status of Failed in the Controller. The non-zero value used to represent the error condition is implementation defined and therefore left up to the extension developer.

The ExtensionResult class sets a default value of 0.

message : str, optional

This parameter allows the extension to pass a completion message back to the Controller. If rc is set to 0, the message will be considered informational and will be logged by the Controller.
If rc is non-zero, the message will be considered an error message and will be displayed to the user on the task instance form.

The default value is an empty string.

output : bool, optional

This parameter specifies if the command produced output that should be persisted and displayed under the task instance Output tab in the Controller task instance associated with the dynamic command invocation.

The default value is False.

output_data : str, optional

This parameter specifies the data that will be returned to the Controller for the command execution. It is interpreted as a UTF-8 encoded text object.

If the output attribute is True, the output_data will be persisted in the Controller as a record under table ops_exec_output, and appearing as Universal Command output type from the task instance Output tab.

The default value is None.

output_name : str, optional

This attribute is used to provide a custom name for the associated output data. The output_name (if provided) will be used in the presentation of the output_data by the Controller.

The default value is None.

Example

>>> @dynamic_command('reset_environment')

>>> def reset_environment(self, fields):

>>>     # Implementation omitted

>>>     return ExtensionResult(

...         message = "Message: Hello from dynamic command 'reset_environment'!",

...         output = True,

...         output_data = 'The environment has been reset.',

...         output_name = 'DYNAMIC_OUTPUT'

...     )


The form of the ExtensionResult constructor when instantiated in the context of Choice Command, is as follows:

Constructor Signature

(rc = 0, message = '', values = None, call_frame = None, **kwargs)


Parameters

rc : int, optional

This parameter represents the return code of the 'choice' operation and determines whether the command is perceived as completing with success or failure by the Controller. A value of 0 indicates success. All other values indicate an error condition and will be ignored by the Controller for form field population. However, the Controller will log the command response. The non-zero value used to represent the error condition is implementation defined and therefore left up to the extension developer.

The ExtensionResult class sets a default value of 0 to the rc attribute.

message : str, optional

This parameter allows the extension to pass a completion message back to the Controller. The message will be logged by the Controller.

The default value is an empty string.

values : list, optional

This parameter specifies a list of string values to be returned to the Controller and used to populate the associated dynamic choice field on the Extension task form.

The default value is an empty list.

Example

>>> @dynamic_choice_command("primary_choice_field")

>>> def primary_choice_command(self, fields):

>>>     # Implementation omitted

>>>     return ExtensionResult(

...         rc = 0,

...         message = "Values for choice field: 'primary_choice_field'",

...         values = ["Start", "Pause", "Stop", "Build", "Destroy"]

...         )

The form of the ExtensionResult constructor when instantiated in the context of Extension Start, is as follows:

Constructor Signature

(rc = 0, message = '', output_fields = None, unv_output = None, call_frame = None, **kwargs)

Parameters

rc : int, optional

This parameter represents the return code of the extension_start operation. The associated Universal Task instance in the Controler can use this value to determine the completion status of the Extension instance. The value is implementation defined and therefore left up to the extension developer.

The ExtensionResult class sets a default value of 0.

message : str, optional

This parameter allows the extension to pass a completion message back to the Controller. If rc is set to 0, the message will be considered informational and will be logged by the Controller.
If rc is non-zero, the message will be considered an error message and will be displayed to the user on the task instance form.

The default value is an empty string.

output_fields : dict, optional

Dictionary containing output fields.

The default None.

unv_output : str, optional

The value for this parameter is considered the payload of the task execution. It appears on the task instance Output tab as Universal output type.

The default value is None.

Example

>>> def extension_start(self, fields):

>>>     # Implementation omitted

>>>     return ExtensionResult(

...         unv_output = "extension_start() finished successfully",

...         rc = 0

...         )


  • No labels