@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 CHANGED
@@ -2420,6 +2420,14 @@ export declare class DeleteExecutionsRequest extends $tea.Model {
2420
2420
  * ["exec-xxx"]
2421
2421
  */
2422
2422
  executionIds?: string;
2423
+ /**
2424
+ * @remarks
2425
+ * Whether to force delete the running task, the default value is false.
2426
+ *
2427
+ * @example
2428
+ * false
2429
+ */
2430
+ force?: boolean;
2423
2431
  /**
2424
2432
  * @remarks
2425
2433
  * The region ID.
@@ -5644,6 +5652,7 @@ export declare class ListExecutionsResponse extends $tea.Model {
5644
5652
  }
5645
5653
  export declare class ListGitRepositoriesRequest extends $tea.Model {
5646
5654
  clientToken?: string;
5655
+ orgId?: string;
5647
5656
  orgName?: string;
5648
5657
  /**
5649
5658
  * @remarks
@@ -15402,6 +15411,7 @@ export declare class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model
15402
15411
  fullName?: string;
15403
15412
  htmlUrl?: string;
15404
15413
  isPrivate?: boolean;
15414
+ repoId?: number;
15405
15415
  static names(): {
15406
15416
  [key: string]: string;
15407
15417
  };
@@ -16973,6 +16983,7 @@ export declare class ListTemplatesResponseBodyTemplates extends $tea.Model {
16973
16983
  * 2019-05-16T10:26:14Z
16974
16984
  */
16975
16985
  updatedDate?: string;
16986
+ versionName?: string;
16976
16987
  static names(): {
16977
16988
  [key: string]: string;
16978
16989
  };
@@ -19585,7 +19596,7 @@ export default class Client extends OpenApi {
19585
19596
  */
19586
19597
  updateApplicationGroup(request: UpdateApplicationGroupRequest): Promise<UpdateApplicationGroupResponse>;
19587
19598
  /**
19588
- * Updates an execution.
19599
+ * Update executions that are in Running or Waiting status.
19589
19600
  *
19590
19601
  * @param request - UpdateExecutionRequest
19591
19602
  * @param runtime - runtime options for this request RuntimeOptions
@@ -19593,7 +19604,7 @@ export default class Client extends OpenApi {
19593
19604
  */
19594
19605
  updateExecutionWithOptions(request: UpdateExecutionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateExecutionResponse>;
19595
19606
  /**
19596
- * Updates an execution.
19607
+ * Update executions that are in Running or Waiting status.
19597
19608
  *
19598
19609
  * @param request - UpdateExecutionRequest
19599
19610
  * @returns UpdateExecutionResponse
package/dist/client.js CHANGED
@@ -1153,12 +1153,14 @@ class DeleteExecutionsRequest extends $tea.Model {
1153
1153
  static names() {
1154
1154
  return {
1155
1155
  executionIds: 'ExecutionIds',
1156
+ force: 'Force',
1156
1157
  regionId: 'RegionId',
1157
1158
  };
1158
1159
  }
1159
1160
  static types() {
1160
1161
  return {
1161
1162
  executionIds: 'string',
1163
+ force: 'boolean',
1162
1164
  regionId: 'string',
1163
1165
  };
1164
1166
  }
@@ -3155,6 +3157,7 @@ class ListGitRepositoriesRequest extends $tea.Model {
3155
3157
  static names() {
3156
3158
  return {
3157
3159
  clientToken: 'ClientToken',
3160
+ orgId: 'OrgId',
3158
3161
  orgName: 'OrgName',
3159
3162
  owner: 'Owner',
3160
3163
  pageNumber: 'PageNumber',
@@ -3166,6 +3169,7 @@ class ListGitRepositoriesRequest extends $tea.Model {
3166
3169
  static types() {
3167
3170
  return {
3168
3171
  clientToken: 'string',
3172
+ orgId: 'string',
3169
3173
  orgName: 'string',
3170
3174
  owner: 'string',
3171
3175
  pageNumber: 'number',
@@ -7652,6 +7656,7 @@ class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model {
7652
7656
  fullName: 'FullName',
7653
7657
  htmlUrl: 'HtmlUrl',
7654
7658
  isPrivate: 'IsPrivate',
7659
+ repoId: 'RepoId',
7655
7660
  };
7656
7661
  }
7657
7662
  static types() {
@@ -7660,6 +7665,7 @@ class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model {
7660
7665
  fullName: 'string',
7661
7666
  htmlUrl: 'string',
7662
7667
  isPrivate: 'boolean',
7668
+ repoId: 'number',
7663
7669
  };
7664
7670
  }
7665
7671
  constructor(map) {
@@ -8269,6 +8275,7 @@ class ListTemplatesResponseBodyTemplates extends $tea.Model {
8269
8275
  totalExecutionCount: 'TotalExecutionCount',
8270
8276
  updatedBy: 'UpdatedBy',
8271
8277
  updatedDate: 'UpdatedDate',
8278
+ versionName: 'VersionName',
8272
8279
  };
8273
8280
  }
8274
8281
  static types() {
@@ -8294,6 +8301,7 @@ class ListTemplatesResponseBodyTemplates extends $tea.Model {
8294
8301
  totalExecutionCount: 'number',
8295
8302
  updatedBy: 'string',
8296
8303
  updatedDate: 'string',
8304
+ versionName: 'string',
8297
8305
  };
8298
8306
  }
8299
8307
  constructor(map) {
@@ -9704,6 +9712,9 @@ class Client extends openapi_client_1.default {
9704
9712
  if (!tea_util_1.default.isUnset(request.executionIds)) {
9705
9713
  query["ExecutionIds"] = request.executionIds;
9706
9714
  }
9715
+ if (!tea_util_1.default.isUnset(request.force)) {
9716
+ query["Force"] = request.force;
9717
+ }
9707
9718
  if (!tea_util_1.default.isUnset(request.regionId)) {
9708
9719
  query["RegionId"] = request.regionId;
9709
9720
  }
@@ -11229,6 +11240,9 @@ class Client extends openapi_client_1.default {
11229
11240
  if (!tea_util_1.default.isUnset(request.clientToken)) {
11230
11241
  query["ClientToken"] = request.clientToken;
11231
11242
  }
11243
+ if (!tea_util_1.default.isUnset(request.orgId)) {
11244
+ query["OrgId"] = request.orgId;
11245
+ }
11232
11246
  if (!tea_util_1.default.isUnset(request.orgName)) {
11233
11247
  query["OrgName"] = request.orgName;
11234
11248
  }
@@ -12978,7 +12992,7 @@ class Client extends openapi_client_1.default {
12978
12992
  return await this.updateApplicationGroupWithOptions(request, runtime);
12979
12993
  }
12980
12994
  /**
12981
- * Updates an execution.
12995
+ * Update executions that are in Running or Waiting status.
12982
12996
  *
12983
12997
  * @param request - UpdateExecutionRequest
12984
12998
  * @param runtime - runtime options for this request RuntimeOptions
@@ -13025,7 +13039,7 @@ class Client extends openapi_client_1.default {
13025
13039
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateExecutionResponse({}));
13026
13040
  }
13027
13041
  /**
13028
- * Updates an execution.
13042
+ * Update executions that are in Running or Waiting status.
13029
13043
  *
13030
13044
  * @param request - UpdateExecutionRequest
13031
13045
  * @returns UpdateExecutionResponse