GitLabPipelineConfiguration

class oci.adm.models.GitLabPipelineConfiguration(**kwargs)

Bases: oci.adm.models.verify_configuration.VerifyConfiguration

Extends a Verify configuration with appropriate data to reach and use the build service provided by a GitLab Pipeline.

Attributes

BUILD_SERVICE_TYPE_GITHUB_ACTIONS str(object=’’) -> str
BUILD_SERVICE_TYPE_GITLAB_PIPELINE str(object=’’) -> str
BUILD_SERVICE_TYPE_JENKINS_PIPELINE str(object=’’) -> str
BUILD_SERVICE_TYPE_NONE str(object=’’) -> str
BUILD_SERVICE_TYPE_OCI_DEVOPS_BUILD str(object=’’) -> str
additional_parameters Gets the additional_parameters of this GitLabPipelineConfiguration.
build_service_type [Required] Gets the build_service_type of this VerifyConfiguration.
pat_secret_id [Required] Gets the pat_secret_id of this GitLabPipelineConfiguration.
repository_url [Required] Gets the repository_url of this GitLabPipelineConfiguration.
trigger_secret_id [Required] Gets the trigger_secret_id of this GitLabPipelineConfiguration.
username [Required] Gets the username of this GitLabPipelineConfiguration.

Methods

__init__(**kwargs) Initializes a new GitLabPipelineConfiguration 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.
BUILD_SERVICE_TYPE_GITHUB_ACTIONS = 'GITHUB_ACTIONS'
BUILD_SERVICE_TYPE_GITLAB_PIPELINE = 'GITLAB_PIPELINE'
BUILD_SERVICE_TYPE_JENKINS_PIPELINE = 'JENKINS_PIPELINE'
BUILD_SERVICE_TYPE_NONE = 'NONE'
BUILD_SERVICE_TYPE_OCI_DEVOPS_BUILD = 'OCI_DEVOPS_BUILD'
__init__(**kwargs)

Initializes a new GitLabPipelineConfiguration object with values from keyword arguments. The default value of the build_service_type attribute of this class is GITLAB_PIPELINE and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • build_service_type (str) – The value to assign to the build_service_type property of this GitLabPipelineConfiguration. Allowed values for this property are: “OCI_DEVOPS_BUILD”, “GITLAB_PIPELINE”, “GITHUB_ACTIONS”, “JENKINS_PIPELINE”, “NONE”
  • repository_url (str) – The value to assign to the repository_url property of this GitLabPipelineConfiguration.
  • username (str) – The value to assign to the username property of this GitLabPipelineConfiguration.
  • pat_secret_id (str) – The value to assign to the pat_secret_id property of this GitLabPipelineConfiguration.
  • trigger_secret_id (str) – The value to assign to the trigger_secret_id property of this GitLabPipelineConfiguration.
  • additional_parameters (dict(str, str)) – The value to assign to the additional_parameters property of this GitLabPipelineConfiguration.
additional_parameters

Gets the additional_parameters of this GitLabPipelineConfiguration. Additional key-value pairs passed as parameters to the build service when running an experiment.

Returns:The additional_parameters of this GitLabPipelineConfiguration.
Return type:dict(str, str)
build_service_type

[Required] Gets the build_service_type of this VerifyConfiguration. The type of Build Service.

Allowed values for this property are: “OCI_DEVOPS_BUILD”, “GITLAB_PIPELINE”, “GITHUB_ACTIONS”, “JENKINS_PIPELINE”, “NONE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The build_service_type of this VerifyConfiguration.
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.

pat_secret_id

[Required] Gets the pat_secret_id of this GitLabPipelineConfiguration. The Oracle Cloud Identifier (OCID) of the Private Access Token (PAT) Secret. The PAT provides the credentials to access the GitLab pipeline.

Returns:The pat_secret_id of this GitLabPipelineConfiguration.
Return type:str
repository_url

[Required] Gets the repository_url of this GitLabPipelineConfiguration. The location of the Repository where the GitLab Pipeline will be run. The expected format is https://gitlab.com/[groupName]/[repoName]

Returns:The repository_url of this GitLabPipelineConfiguration.
Return type:str
trigger_secret_id

[Required] Gets the trigger_secret_id of this GitLabPipelineConfiguration. The Oracle Cloud Identifier (OCID) of the trigger Secret. The Secret provides access to the trigger for a GitLab pipeline.

Returns:The trigger_secret_id of this GitLabPipelineConfiguration.
Return type:str
username

[Required] Gets the username of this GitLabPipelineConfiguration. The username that will trigger the GitLab Pipeline.

Returns:The username of this GitLabPipelineConfiguration.
Return type:str