BuildRunSource¶
- 
class oci.devops.models.BuildRunSource(**kwargs)¶
- Bases: - object- The source from which the build run is triggered. - Attributes - SOURCE_TYPE_BITBUCKET_CLOUD- A constant which can be used with the source_type property of a BuildRunSource. - SOURCE_TYPE_BITBUCKET_SERVER- A constant which can be used with the source_type property of a BuildRunSource. - SOURCE_TYPE_DEVOPS_CODE_REPOSITORY- A constant which can be used with the source_type property of a BuildRunSource. - SOURCE_TYPE_GITHUB- A constant which can be used with the source_type property of a BuildRunSource. - SOURCE_TYPE_GITLAB- A constant which can be used with the source_type property of a BuildRunSource. - SOURCE_TYPE_GITLAB_SERVER- A constant which can be used with the source_type property of a BuildRunSource. - SOURCE_TYPE_MANUAL- A constant which can be used with the source_type property of a BuildRunSource. - SOURCE_TYPE_VBS- A constant which can be used with the source_type property of a BuildRunSource. - source_type- [Required] Gets the source_type of this BuildRunSource. - Methods - __init__(**kwargs)- Initializes a new BuildRunSource 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. - 
SOURCE_TYPE_BITBUCKET_CLOUD= 'BITBUCKET_CLOUD'¶
- A constant which can be used with the source_type property of a BuildRunSource. This constant has a value of “BITBUCKET_CLOUD” 
 - 
SOURCE_TYPE_BITBUCKET_SERVER= 'BITBUCKET_SERVER'¶
- A constant which can be used with the source_type property of a BuildRunSource. This constant has a value of “BITBUCKET_SERVER” 
 - 
SOURCE_TYPE_DEVOPS_CODE_REPOSITORY= 'DEVOPS_CODE_REPOSITORY'¶
- A constant which can be used with the source_type property of a BuildRunSource. This constant has a value of “DEVOPS_CODE_REPOSITORY” 
 - 
SOURCE_TYPE_GITHUB= 'GITHUB'¶
- A constant which can be used with the source_type property of a BuildRunSource. This constant has a value of “GITHUB” 
 - 
SOURCE_TYPE_GITLAB= 'GITLAB'¶
- A constant which can be used with the source_type property of a BuildRunSource. This constant has a value of “GITLAB” 
 - 
SOURCE_TYPE_GITLAB_SERVER= 'GITLAB_SERVER'¶
- A constant which can be used with the source_type property of a BuildRunSource. This constant has a value of “GITLAB_SERVER” 
 - 
SOURCE_TYPE_MANUAL= 'MANUAL'¶
- A constant which can be used with the source_type property of a BuildRunSource. This constant has a value of “MANUAL” 
 - 
SOURCE_TYPE_VBS= 'VBS'¶
- A constant which can be used with the source_type property of a BuildRunSource. This constant has a value of “VBS” 
 - 
__init__(**kwargs)¶
- Initializes a new BuildRunSource object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: - GitlabServerBuildRunSource
- BitbucketServerBuildRunSource
- GithubBuildRunSource
- DevopsCodeRepositoryBuildRunSource
- VbsBuildRunSource
- ManualBuildRunSource
- BitbucketCloudBuildRunSource
- GitlabBuildRunSource
 - The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - source_type (str) – The value to assign to the source_type property of this BuildRunSource. Allowed values for this property are: “MANUAL”, “GITHUB”, “GITLAB”, “GITLAB_SERVER”, “BITBUCKET_CLOUD”, “BITBUCKET_SERVER”, “DEVOPS_CODE_REPOSITORY”, “VBS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. 
 - 
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. 
 - 
source_type¶
- [Required] Gets the source_type of this BuildRunSource. The source from which the build run is triggered. - Allowed values for this property are: “MANUAL”, “GITHUB”, “GITLAB”, “GITLAB_SERVER”, “BITBUCKET_CLOUD”, “BITBUCKET_SERVER”, “DEVOPS_CODE_REPOSITORY”, “VBS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The source_type of this BuildRunSource. - Return type: - str 
 
-