StringTaskArgument¶
-
class
oci.fleet_apps_management.models.
StringTaskArgument
(**kwargs)¶ Bases:
oci.fleet_apps_management.models.task_argument.TaskArgument
A string variable that holds a value
Attributes
KIND_FILE
str(object=’’) -> str KIND_STRING
str(object=’’) -> str kind
[Required] Gets the kind of this TaskArgument. name
[Required] Gets the name of this TaskArgument. value
Gets the value of this StringTaskArgument. Methods
__init__
(**kwargs)Initializes a new StringTaskArgument 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 StringTaskArgument object with values from keyword arguments. The default value of the
kind
attribute of this class isSTRING
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 StringTaskArgument. Allowed values for this property are: “STRING”, “FILE”
- name (str) – The value to assign to the name property of this StringTaskArgument.
- value (str) – The value to assign to the value property of this StringTaskArgument.
-
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
-
value
¶ Gets the value of this StringTaskArgument. The task input
Returns: The value of this StringTaskArgument. Return type: str
-