BuildRunArgument¶
-
class
oci.devops.models.
BuildRunArgument
(**kwargs)¶ Bases:
object
Values for pipeline parameters to be supplied at the time of running the build.
Methods
__init__
(**kwargs)Initializes a new BuildRunArgument object with values from keyword arguments. Attributes
name
[Required] Gets the name of this BuildRunArgument. value
[Required] Gets the value of this BuildRunArgument. -
__init__
(**kwargs)¶ Initializes a new BuildRunArgument 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 BuildRunArgument.
- value (str) – The value to assign to the value property of this BuildRunArgument.
-
name
¶ [Required] Gets the name of this BuildRunArgument. Name of the parameter (case-sensitive). Parameter name must be ^[a-zA-Z][a-zA-Z_0-9]*$. Example: ‘Build_Pipeline_param’ is not same as ‘build_pipeline_Param’
Returns: The name of this BuildRunArgument. Return type: str
-
value
¶ [Required] Gets the value of this BuildRunArgument. Value of the argument.
Returns: The value of this BuildRunArgument. Return type: str
-