BuildPipelineParameter

class oci.devops.models.BuildPipelineParameter(**kwargs)

Bases: object

Parameter name for which the values will be supplied at the time of running the build.

Methods

__init__(**kwargs) Initializes a new BuildPipelineParameter object with values from keyword arguments.

Attributes

default_value [Required] Gets the default_value of this BuildPipelineParameter.
description Gets the description of this BuildPipelineParameter.
name [Required] Gets the name of this BuildPipelineParameter.
__init__(**kwargs)

Initializes a new BuildPipelineParameter 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 BuildPipelineParameter.
  • default_value (str) – The value to assign to the default_value property of this BuildPipelineParameter.
  • description (str) – The value to assign to the description property of this BuildPipelineParameter.
default_value

[Required] Gets the default_value of this BuildPipelineParameter. Default value of the parameter.

Returns:The default_value of this BuildPipelineParameter.
Return type:str
description

Gets the description of this BuildPipelineParameter. Description of the parameter.

Returns:The description of this BuildPipelineParameter.
Return type:str
name

[Required] Gets the name of this BuildPipelineParameter. 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 BuildPipelineParameter.
Return type:str