FileTaskArgument

class oci.fleet_apps_management.models.FileTaskArgument(**kwargs)

Bases: oci.fleet_apps_management.models.task_argument.TaskArgument

A file variable that holds a value

Attributes

KIND_FILE str(object=’’) -> str
KIND_STRING str(object=’’) -> str
content Gets the content of this FileTaskArgument.
kind [Required] Gets the kind of this TaskArgument.
name [Required] Gets the name of this TaskArgument.

Methods

__init__(**kwargs) Initializes a new FileTaskArgument object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
KIND_FILE = 'FILE'
KIND_STRING = 'STRING'
__init__(**kwargs)

Initializes a new FileTaskArgument object with values from keyword arguments. The default value of the kind attribute of this class is FILE and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • kind (str) – The value to assign to the kind property of this FileTaskArgument. Allowed values for this property are: “STRING”, “FILE”
  • name (str) – The value to assign to the name property of this FileTaskArgument.
  • content (oci.fleet_apps_management.models.InputFileContentDetails) – The value to assign to the content property of this FileTaskArgument.
content

Gets the content of this FileTaskArgument.

Returns:The content of this FileTaskArgument.
Return type:oci.fleet_apps_management.models.InputFileContentDetails
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

kind

[Required] Gets the kind of this TaskArgument. Task argument kind

Allowed values for this property are: “STRING”, “FILE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The kind of this TaskArgument.
Return type:str
name

[Required] Gets the name of this TaskArgument. Name of the input variable

Returns:The name of this TaskArgument.
Return type:str