BuildSource

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

Bases: object

Build source required for the Build stage.

Attributes

CONNECTION_TYPE_BITBUCKET_CLOUD A constant which can be used with the connection_type property of a BuildSource.
CONNECTION_TYPE_BITBUCKET_SERVER A constant which can be used with the connection_type property of a BuildSource.
CONNECTION_TYPE_DEVOPS_CODE_REPOSITORY A constant which can be used with the connection_type property of a BuildSource.
CONNECTION_TYPE_GITHUB A constant which can be used with the connection_type property of a BuildSource.
CONNECTION_TYPE_GITLAB A constant which can be used with the connection_type property of a BuildSource.
CONNECTION_TYPE_GITLAB_SERVER A constant which can be used with the connection_type property of a BuildSource.
CONNECTION_TYPE_VBS A constant which can be used with the connection_type property of a BuildSource.
branch [Required] Gets the branch of this BuildSource.
connection_type [Required] Gets the connection_type of this BuildSource.
name [Required] Gets the name of this BuildSource.
repository_url [Required] Gets the repository_url of this BuildSource.

Methods

__init__(**kwargs) Initializes a new BuildSource 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.
CONNECTION_TYPE_BITBUCKET_CLOUD = 'BITBUCKET_CLOUD'

A constant which can be used with the connection_type property of a BuildSource. This constant has a value of “BITBUCKET_CLOUD”

CONNECTION_TYPE_BITBUCKET_SERVER = 'BITBUCKET_SERVER'

A constant which can be used with the connection_type property of a BuildSource. This constant has a value of “BITBUCKET_SERVER”

CONNECTION_TYPE_DEVOPS_CODE_REPOSITORY = 'DEVOPS_CODE_REPOSITORY'

A constant which can be used with the connection_type property of a BuildSource. This constant has a value of “DEVOPS_CODE_REPOSITORY”

CONNECTION_TYPE_GITHUB = 'GITHUB'

A constant which can be used with the connection_type property of a BuildSource. This constant has a value of “GITHUB”

CONNECTION_TYPE_GITLAB = 'GITLAB'

A constant which can be used with the connection_type property of a BuildSource. This constant has a value of “GITLAB”

CONNECTION_TYPE_GITLAB_SERVER = 'GITLAB_SERVER'

A constant which can be used with the connection_type property of a BuildSource. This constant has a value of “GITLAB_SERVER”

CONNECTION_TYPE_VBS = 'VBS'

A constant which can be used with the connection_type property of a BuildSource. This constant has a value of “VBS”

__init__(**kwargs)

Initializes a new BuildSource 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:

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 BuildSource.
  • connection_type (str) – The value to assign to the connection_type property of this BuildSource. Allowed values for this property are: “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’.
  • repository_url (str) – The value to assign to the repository_url property of this BuildSource.
  • branch (str) – The value to assign to the branch property of this BuildSource.
branch

[Required] Gets the branch of this BuildSource. Branch name.

Returns:The branch of this BuildSource.
Return type:str
connection_type

[Required] Gets the connection_type of this BuildSource. The type of source provider.

Allowed values for this property are: “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 connection_type of this BuildSource.
Return type:str
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.

name

[Required] Gets the name of this BuildSource. Name of the build source. This must be unique within a build source collection. The name can be used by customers to locate the working directory pertinent to this repository.

Returns:The name of this BuildSource.
Return type:str
repository_url

[Required] Gets the repository_url of this BuildSource. URL for the repository.

Returns:The repository_url of this BuildSource.
Return type:str