@alicloud/oos20190601 3.2.2 → 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 +12 -2
- package/dist/client.js +11 -2
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +22 -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,13 @@ 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
|
+
*/
|
|
3083
3090
|
force?: boolean;
|
|
3084
3091
|
/**
|
|
3085
3092
|
* @remarks
|
|
@@ -7388,6 +7395,7 @@ export class ListExecutionsResponse extends $tea.Model {
|
|
|
7388
7395
|
|
|
7389
7396
|
export class ListGitRepositoriesRequest extends $tea.Model {
|
|
7390
7397
|
clientToken?: string;
|
|
7398
|
+
orgId?: string;
|
|
7391
7399
|
orgName?: string;
|
|
7392
7400
|
/**
|
|
7393
7401
|
* @remarks
|
|
@@ -7405,6 +7413,7 @@ export class ListGitRepositoriesRequest extends $tea.Model {
|
|
|
7405
7413
|
static names(): { [key: string]: string } {
|
|
7406
7414
|
return {
|
|
7407
7415
|
clientToken: 'ClientToken',
|
|
7416
|
+
orgId: 'OrgId',
|
|
7408
7417
|
orgName: 'OrgName',
|
|
7409
7418
|
owner: 'Owner',
|
|
7410
7419
|
pageNumber: 'PageNumber',
|
|
@@ -7417,6 +7426,7 @@ export class ListGitRepositoriesRequest extends $tea.Model {
|
|
|
7417
7426
|
static types(): { [key: string]: any } {
|
|
7418
7427
|
return {
|
|
7419
7428
|
clientToken: 'string',
|
|
7429
|
+
orgId: 'string',
|
|
7420
7430
|
orgName: 'string',
|
|
7421
7431
|
owner: 'string',
|
|
7422
7432
|
pageNumber: 'number',
|
|
@@ -19953,12 +19963,14 @@ export class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model {
|
|
|
19953
19963
|
fullName?: string;
|
|
19954
19964
|
htmlUrl?: string;
|
|
19955
19965
|
isPrivate?: boolean;
|
|
19966
|
+
repoId?: number;
|
|
19956
19967
|
static names(): { [key: string]: string } {
|
|
19957
19968
|
return {
|
|
19958
19969
|
description: 'Description',
|
|
19959
19970
|
fullName: 'FullName',
|
|
19960
19971
|
htmlUrl: 'HtmlUrl',
|
|
19961
19972
|
isPrivate: 'IsPrivate',
|
|
19973
|
+
repoId: 'RepoId',
|
|
19962
19974
|
};
|
|
19963
19975
|
}
|
|
19964
19976
|
|
|
@@ -19968,6 +19980,7 @@ export class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model {
|
|
|
19968
19980
|
fullName: 'string',
|
|
19969
19981
|
htmlUrl: 'string',
|
|
19970
19982
|
isPrivate: 'boolean',
|
|
19983
|
+
repoId: 'number',
|
|
19971
19984
|
};
|
|
19972
19985
|
}
|
|
19973
19986
|
|
|
@@ -21921,6 +21934,7 @@ export class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
|
21921
21934
|
* 2019-05-16T10:26:14Z
|
|
21922
21935
|
*/
|
|
21923
21936
|
updatedDate?: string;
|
|
21937
|
+
versionName?: string;
|
|
21924
21938
|
static names(): { [key: string]: string } {
|
|
21925
21939
|
return {
|
|
21926
21940
|
category: 'Category',
|
|
@@ -21944,6 +21958,7 @@ export class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
|
21944
21958
|
totalExecutionCount: 'TotalExecutionCount',
|
|
21945
21959
|
updatedBy: 'UpdatedBy',
|
|
21946
21960
|
updatedDate: 'UpdatedDate',
|
|
21961
|
+
versionName: 'VersionName',
|
|
21947
21962
|
};
|
|
21948
21963
|
}
|
|
21949
21964
|
|
|
@@ -21970,6 +21985,7 @@ export class ListTemplatesResponseBodyTemplates extends $tea.Model {
|
|
|
21970
21985
|
totalExecutionCount: 'number',
|
|
21971
21986
|
updatedBy: 'string',
|
|
21972
21987
|
updatedDate: 'string',
|
|
21988
|
+
versionName: 'string',
|
|
21973
21989
|
};
|
|
21974
21990
|
}
|
|
21975
21991
|
|
|
@@ -26561,6 +26577,10 @@ export default class Client extends OpenApi {
|
|
|
26561
26577
|
query["ClientToken"] = request.clientToken;
|
|
26562
26578
|
}
|
|
26563
26579
|
|
|
26580
|
+
if (!Util.isUnset(request.orgId)) {
|
|
26581
|
+
query["OrgId"] = request.orgId;
|
|
26582
|
+
}
|
|
26583
|
+
|
|
26564
26584
|
if (!Util.isUnset(request.orgName)) {
|
|
26565
26585
|
query["OrgName"] = request.orgName;
|
|
26566
26586
|
}
|
|
@@ -28592,7 +28612,7 @@ export default class Client extends OpenApi {
|
|
|
28592
28612
|
}
|
|
28593
28613
|
|
|
28594
28614
|
/**
|
|
28595
|
-
*
|
|
28615
|
+
* Update executions that are in Running or Waiting status.
|
|
28596
28616
|
*
|
|
28597
28617
|
* @param request - UpdateExecutionRequest
|
|
28598
28618
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -28647,7 +28667,7 @@ export default class Client extends OpenApi {
|
|
|
28647
28667
|
}
|
|
28648
28668
|
|
|
28649
28669
|
/**
|
|
28650
|
-
*
|
|
28670
|
+
* Update executions that are in Running or Waiting status.
|
|
28651
28671
|
*
|
|
28652
28672
|
* @param request - UpdateExecutionRequest
|
|
28653
28673
|
* @returns UpdateExecutionResponse
|