@alicloud/oos20190601 3.2.1 → 3.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +13 -2
- package/dist/client.js +16 -2
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +29 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/oos20190601",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@alicloud/tea-typescript": "^1.7.1",
|
|
23
23
|
"@alicloud/tea-util": "^1.4.9",
|
|
24
|
-
"@alicloud/openapi-client": "^0.4.
|
|
24
|
+
"@alicloud/openapi-client": "^0.4.12",
|
|
25
25
|
"@alicloud/openapi-util": "^0.3.2",
|
|
26
26
|
"@alicloud/endpoint-util": "^0.0.1"
|
|
27
27
|
},
|
package/src/client.ts
CHANGED
|
@@ -3080,6 +3080,14 @@ export class DeleteExecutionsRequest extends $tea.Model {
|
|
|
3080
3080
|
* ["exec-xxx"]
|
|
3081
3081
|
*/
|
|
3082
3082
|
executionIds?: string;
|
|
3083
|
+
/**
|
|
3084
|
+
* @remarks
|
|
3085
|
+
* Whether to force delete the running task, the default value is false.
|
|
3086
|
+
*
|
|
3087
|
+
* @example
|
|
3088
|
+
* false
|
|
3089
|
+
*/
|
|
3090
|
+
force?: boolean;
|
|
3083
3091
|
/**
|
|
3084
3092
|
* @remarks
|
|
3085
3093
|
* The region ID.
|
|
@@ -3091,6 +3099,7 @@ export class DeleteExecutionsRequest extends $tea.Model {
|
|
|
3091
3099
|
static names(): { [key: string]: string } {
|
|
3092
3100
|
return {
|
|
3093
3101
|
executionIds: 'ExecutionIds',
|
|
3102
|
+
force: 'Force',
|
|
3094
3103
|
regionId: 'RegionId',
|
|
3095
3104
|
};
|
|
3096
3105
|
}
|
|
@@ -3098,6 +3107,7 @@ export class DeleteExecutionsRequest extends $tea.Model {
|
|
|
3098
3107
|
static types(): { [key: string]: any } {
|
|
3099
3108
|
return {
|
|
3100
3109
|
executionIds: 'string',
|
|
3110
|
+
force: 'boolean',
|
|
3101
3111
|
regionId: 'string',
|
|
3102
3112
|
};
|
|
3103
3113
|
}
|
|
@@ -7385,6 +7395,7 @@ export class ListExecutionsResponse extends $tea.Model {
|
|
|
7385
7395
|
|
|
7386
7396
|
export class ListGitRepositoriesRequest extends $tea.Model {
|
|
7387
7397
|
clientToken?: string;
|
|
7398
|
+
orgId?: string;
|
|
7388
7399
|
orgName?: string;
|
|
7389
7400
|
/**
|
|
7390
7401
|
* @remarks
|
|
@@ -7402,6 +7413,7 @@ export class ListGitRepositoriesRequest extends $tea.Model {
|
|
|
7402
7413
|
static names(): { [key: string]: string } {
|
|
7403
7414
|
return {
|
|
7404
7415
|
clientToken: 'ClientToken',
|
|
7416
|
+
orgId: 'OrgId',
|
|
7405
7417
|
orgName: 'OrgName',
|
|
7406
7418
|
owner: 'Owner',
|
|
7407
7419
|
pageNumber: 'PageNumber',
|
|
@@ -7414,6 +7426,7 @@ export class ListGitRepositoriesRequest extends $tea.Model {
|
|
|
7414
7426
|
static types(): { [key: string]: any } {
|
|
7415
7427
|
return {
|
|
7416
7428
|
clientToken: 'string',
|
|
7429
|
+
orgId: 'string',
|
|
7417
7430
|
orgName: 'string',
|
|
7418
7431
|
owner: 'string',
|
|
7419
7432
|
pageNumber: 'number',
|
|
@@ -19950,12 +19963,14 @@ export class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model {
|
|
|
19950
19963
|
fullName?: string;
|
|
19951
19964
|
htmlUrl?: string;
|
|
19952
19965
|
isPrivate?: boolean;
|
|
19966
|
+
repoId?: number;
|
|
19953
19967
|
static names(): { [key: string]: string } {
|
|
19954
19968
|
return {
|
|
19955
19969
|
description: 'Description',
|
|
19956
19970
|
fullName: 'FullName',
|
|
19957
19971
|
htmlUrl: 'HtmlUrl',
|
|
19958
19972
|
isPrivate: 'IsPrivate',
|
|
19973
|
+
repoId: 'RepoId',
|
|
19959
19974
|
};
|
|
19960
19975
|
}
|
|
19961
19976
|
|
|
@@ -19965,6 +19980,7 @@ export class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model {
|
|
|
19965
19980
|
fullName: 'string',
|
|
19966
19981
|
htmlUrl: 'string',
|
|
19967
19982
|
isPrivate: 'boolean',
|
|
19983
|
+
repoId: 'number',
|
|
19968
19984
|
};
|
|
19969
19985
|
}
|
|
19970
19986
|
|
|
@@ -21918,6 +21934,7 @@ export class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
|
21918
21934
|
* 2019-05-16T10:26:14Z
|
|
21919
21935
|
*/
|
|
21920
21936
|
updatedDate?: string;
|
|
21937
|
+
versionName?: string;
|
|
21921
21938
|
static names(): { [key: string]: string } {
|
|
21922
21939
|
return {
|
|
21923
21940
|
category: 'Category',
|
|
@@ -21941,6 +21958,7 @@ export class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
|
21941
21958
|
totalExecutionCount: 'TotalExecutionCount',
|
|
21942
21959
|
updatedBy: 'UpdatedBy',
|
|
21943
21960
|
updatedDate: 'UpdatedDate',
|
|
21961
|
+
versionName: 'VersionName',
|
|
21944
21962
|
};
|
|
21945
21963
|
}
|
|
21946
21964
|
|
|
@@ -21967,6 +21985,7 @@ export class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
|
21967
21985
|
totalExecutionCount: 'number',
|
|
21968
21986
|
updatedBy: 'string',
|
|
21969
21987
|
updatedDate: 'string',
|
|
21988
|
+
versionName: 'string',
|
|
21970
21989
|
};
|
|
21971
21990
|
}
|
|
21972
21991
|
|
|
@@ -24834,6 +24853,10 @@ export default class Client extends OpenApi {
|
|
|
24834
24853
|
query["ExecutionIds"] = request.executionIds;
|
|
24835
24854
|
}
|
|
24836
24855
|
|
|
24856
|
+
if (!Util.isUnset(request.force)) {
|
|
24857
|
+
query["Force"] = request.force;
|
|
24858
|
+
}
|
|
24859
|
+
|
|
24837
24860
|
if (!Util.isUnset(request.regionId)) {
|
|
24838
24861
|
query["RegionId"] = request.regionId;
|
|
24839
24862
|
}
|
|
@@ -26554,6 +26577,10 @@ export default class Client extends OpenApi {
|
|
|
26554
26577
|
query["ClientToken"] = request.clientToken;
|
|
26555
26578
|
}
|
|
26556
26579
|
|
|
26580
|
+
if (!Util.isUnset(request.orgId)) {
|
|
26581
|
+
query["OrgId"] = request.orgId;
|
|
26582
|
+
}
|
|
26583
|
+
|
|
26557
26584
|
if (!Util.isUnset(request.orgName)) {
|
|
26558
26585
|
query["OrgName"] = request.orgName;
|
|
26559
26586
|
}
|
|
@@ -28585,7 +28612,7 @@ export default class Client extends OpenApi {
|
|
|
28585
28612
|
}
|
|
28586
28613
|
|
|
28587
28614
|
/**
|
|
28588
|
-
*
|
|
28615
|
+
* Update executions that are in Running or Waiting status.
|
|
28589
28616
|
*
|
|
28590
28617
|
* @param request - UpdateExecutionRequest
|
|
28591
28618
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -28640,7 +28667,7 @@ export default class Client extends OpenApi {
|
|
|
28640
28667
|
}
|
|
28641
28668
|
|
|
28642
28669
|
/**
|
|
28643
|
-
*
|
|
28670
|
+
* Update executions that are in Running or Waiting status.
|
|
28644
28671
|
*
|
|
28645
28672
|
* @param request - UpdateExecutionRequest
|
|
28646
28673
|
* @returns UpdateExecutionResponse
|