给流水线添加一个Codeup的代码源,只能给没有代码源的流水线添加代码源。

调试

您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。

请求参数

名称 类型 是否必选 示例值 描述
Action String AddCodeupSourceToPipeline

系统规定参数。取值:AddCodeupSourceToPipeline

OrgId String 6034a9448deaa14d9e02f0ab

企业ID

PipelineId Long 12345

流水线ID

CodePath String namespace/repo

Codeup的代码库路径,比如 group1/repo1

CodeBranch String master

代码库分支,比如master

返回数据

名称 类型 示例值 描述
RequestId String D58BD623-80FA-4C1F-8371-3EA12532ABFC

Id of the request

PipelineId Long 12345

流水线id

示例

请求示例

http(s)://[Endpoint]/?Action=AddCodeupSourceToPipeline
&OrgId=6034a9448deaa14d9e02f0ab
&PipelineId=12345
&CodePath=namespace/repo
&CodeBranch=master
&公共请求参数

正常返回示例

XML格式

HTTP/1.1 200 OK
Content-Type:application/xml

<AddCodeupSourceToPipelineResponse>
    <RequestId>D58BD623-80FA-4C1F-8371-3EA12532ABFC</RequestId>
    <PipelineId>12345</PipelineId>
</AddCodeupSourceToPipelineResponse>

JSON格式

HTTP/1.1 200 OK
Content-Type:application/json

{
  "RequestId" : "D58BD623-80FA-4C1F-8371-3EA12532ABFC",
  "PipelineId" : 12345
}

错误码

HttpCode 错误码 错误信息 描述
400 InvalidUser.UserNotInCurrentOrganization The user does not belong to the specified organization. 当前用户不属于该企业
404 InvalidOrganization.NotFound The specified organization doe not exist. 企业信息有误,未找到该企业
404 InvalidUser.NotFound The specified user does not exist. 用户数据有误,未找到该用户
404 InvalidPipeline.NotFound The specified pipeline does not exist. 未找到流水线
500 SystemError.UnKnownError An error occurred while processing your request. 系统未知异常
500 IllegalState.OnlyOneCodeSourceAllowed You can only add one code source for pipeline. 通过该API目前仅支持给流水线添加一个代码源,如果流水线已经存在代码源了,则会报此错误

访问错误中心查看更多错误码。