ApplicationParameter¶
-
class
oci.data_flow.models.
ApplicationParameter
(**kwargs)¶ Bases:
object
The parameter of an application.
Methods
__init__
(**kwargs)Initializes a new ApplicationParameter object with values from keyword arguments. Attributes
name
[Required] Gets the name of this ApplicationParameter. value
[Required] Gets the value of this ApplicationParameter. -
__init__
(**kwargs)¶ Initializes a new ApplicationParameter object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - name (str) – The value to assign to the name property of this ApplicationParameter.
- value (str) – The value to assign to the value property of this ApplicationParameter.
-
name
¶ [Required] Gets the name of this ApplicationParameter. The name of the parameter. It must be a string of one or more word characters (a-z, A-Z, 0-9, _). Examples: “iterations”, “input_file”
Returns: The name of this ApplicationParameter. Return type: str
-
value
¶ [Required] Gets the value of this ApplicationParameter. The value of the parameter. It must be a string of 0 or more characters of any kind. Examples: “” (empty string), “10”, “mydata.xml”, “${x}”
Returns: The value of this ApplicationParameter. Return type: str
-