@huaweicloud/huaweicloud-sdk-codeartsbuild 3.1.46
Sign up to get free protection for your applications and to get access to all the features.
- package/huaweicloud-sdk-codeartsbuild.ts +4 -0
- package/package.json +19 -0
- package/v3/CodeArtsBuildClient.ts +732 -0
- package/v3/CodeArtsBuildRegion.ts +44 -0
- package/v3/model/BuildStep.ts +27 -0
- package/v3/model/DownloadKeystoreRequest.ts +30 -0
- package/v3/model/DownloadKeystoreResponse.ts +8 -0
- package/v3/model/HistoryRecord.ts +66 -0
- package/v3/model/HistoryRecord1.ts +109 -0
- package/v3/model/Job.ts +175 -0
- package/v3/model/ParameterItem.ts +18 -0
- package/v3/model/RunJobRequest.ts +12 -0
- package/v3/model/RunJobRequestBody.ts +30 -0
- package/v3/model/RunJobResponse.ts +41 -0
- package/v3/model/Scm.ts +28 -0
- package/v3/model/ShowHistoryDetailsRequest.ts +30 -0
- package/v3/model/ShowHistoryDetailsResponse.ts +69 -0
- package/v3/model/ShowJobListByProjectIdRequest.ts +42 -0
- package/v3/model/ShowJobListByProjectIdResponse.ts +19 -0
- package/v3/model/ShowJobStatusRequest.ts +18 -0
- package/v3/model/ShowJobStatusResponse.ts +13 -0
- package/v3/model/ShowJobSuccessRatioRequest.ts +42 -0
- package/v3/model/ShowJobSuccessRatioResponse.ts +41 -0
- package/v3/model/ShowLastHistoryRequest.ts +30 -0
- package/v3/model/ShowLastHistoryResponse.ts +90 -0
- package/v3/model/ShowListHistoryRequest.ts +36 -0
- package/v3/model/ShowListHistoryResponse.ts +25 -0
- package/v3/model/ShowListPeriodHistoryRequest.ts +54 -0
- package/v3/model/ShowListPeriodHistoryResponse.ts +25 -0
- package/v3/public-api.ts +28 -0
package/package.json
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"name": "@huaweicloud/huaweicloud-sdk-codeartsbuild",
|
3
|
+
"version": "3.1.46",
|
4
|
+
"description": "Huaweicloud SDK for codeartsbuild",
|
5
|
+
"main": "huaweicloud-sdk-codeartsbuild.js",
|
6
|
+
"typings": "huaweicloud-sdk-codeartsbuild.d.ts",
|
7
|
+
"scripts": {
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
9
|
+
},
|
10
|
+
"repository": {
|
11
|
+
"type": "git",
|
12
|
+
"url": "https://github.com/huaweicloud-sdk/huaweicloud-sdk-nodejs"
|
13
|
+
},
|
14
|
+
"author": "HuaweiCloud_SDK",
|
15
|
+
"license": "Apache-2.0",
|
16
|
+
"dependencies": {
|
17
|
+
"@huaweicloud/huaweicloud-sdk-core": "^3.1.46"
|
18
|
+
}
|
19
|
+
}
|