@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 CHANGED
@@ -2420,6 +2420,13 @@ 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
+ */
2423
2430
  force?: boolean;
2424
2431
  /**
2425
2432
  * @remarks
@@ -5645,6 +5652,7 @@ export declare class ListExecutionsResponse extends $tea.Model {
5645
5652
  }
5646
5653
  export declare class ListGitRepositoriesRequest extends $tea.Model {
5647
5654
  clientToken?: string;
5655
+ orgId?: string;
5648
5656
  orgName?: string;
5649
5657
  /**
5650
5658
  * @remarks
@@ -15403,6 +15411,7 @@ export declare class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model
15403
15411
  fullName?: string;
15404
15412
  htmlUrl?: string;
15405
15413
  isPrivate?: boolean;
15414
+ repoId?: number;
15406
15415
  static names(): {
15407
15416
  [key: string]: string;
15408
15417
  };
@@ -16974,6 +16983,7 @@ export declare class ListTemplatesResponseBodyTemplates extends $tea.Model {
16974
16983
  * 2019-05-16T10:26:14Z
16975
16984
  */
16976
16985
  updatedDate?: string;
16986
+ versionName?: string;
16977
16987
  static names(): {
16978
16988
  [key: string]: string;
16979
16989
  };
@@ -19586,7 +19596,7 @@ export default class Client extends OpenApi {
19586
19596
  */
19587
19597
  updateApplicationGroup(request: UpdateApplicationGroupRequest): Promise<UpdateApplicationGroupResponse>;
19588
19598
  /**
19589
- * Updates an execution.
19599
+ * Update executions that are in Running or Waiting status.
19590
19600
  *
19591
19601
  * @param request - UpdateExecutionRequest
19592
19602
  * @param runtime - runtime options for this request RuntimeOptions
@@ -19594,7 +19604,7 @@ export default class Client extends OpenApi {
19594
19604
  */
19595
19605
  updateExecutionWithOptions(request: UpdateExecutionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateExecutionResponse>;
19596
19606
  /**
19597
- * Updates an execution.
19607
+ * Update executions that are in Running or Waiting status.
19598
19608
  *
19599
19609
  * @param request - UpdateExecutionRequest
19600
19610
  * @returns UpdateExecutionResponse
package/dist/client.js CHANGED
@@ -3157,6 +3157,7 @@ class ListGitRepositoriesRequest extends $tea.Model {
3157
3157
  static names() {
3158
3158
  return {
3159
3159
  clientToken: 'ClientToken',
3160
+ orgId: 'OrgId',
3160
3161
  orgName: 'OrgName',
3161
3162
  owner: 'Owner',
3162
3163
  pageNumber: 'PageNumber',
@@ -3168,6 +3169,7 @@ class ListGitRepositoriesRequest extends $tea.Model {
3168
3169
  static types() {
3169
3170
  return {
3170
3171
  clientToken: 'string',
3172
+ orgId: 'string',
3171
3173
  orgName: 'string',
3172
3174
  owner: 'string',
3173
3175
  pageNumber: 'number',
@@ -7654,6 +7656,7 @@ class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model {
7654
7656
  fullName: 'FullName',
7655
7657
  htmlUrl: 'HtmlUrl',
7656
7658
  isPrivate: 'IsPrivate',
7659
+ repoId: 'RepoId',
7657
7660
  };
7658
7661
  }
7659
7662
  static types() {
@@ -7662,6 +7665,7 @@ class ListGitRepositoriesResponseBodyGitRepos extends $tea.Model {
7662
7665
  fullName: 'string',
7663
7666
  htmlUrl: 'string',
7664
7667
  isPrivate: 'boolean',
7668
+ repoId: 'number',
7665
7669
  };
7666
7670
  }
7667
7671
  constructor(map) {
@@ -8271,6 +8275,7 @@ class ListTemplatesResponseBodyTemplates extends $tea.Model {
8271
8275
  totalExecutionCount: 'TotalExecutionCount',
8272
8276
  updatedBy: 'UpdatedBy',
8273
8277
  updatedDate: 'UpdatedDate',
8278
+ versionName: 'VersionName',
8274
8279
  };
8275
8280
  }
8276
8281
  static types() {
@@ -8296,6 +8301,7 @@ class ListTemplatesResponseBodyTemplates extends $tea.Model {
8296
8301
  totalExecutionCount: 'number',
8297
8302
  updatedBy: 'string',
8298
8303
  updatedDate: 'string',
8304
+ versionName: 'string',
8299
8305
  };
8300
8306
  }
8301
8307
  constructor(map) {
@@ -11234,6 +11240,9 @@ class Client extends openapi_client_1.default {
11234
11240
  if (!tea_util_1.default.isUnset(request.clientToken)) {
11235
11241
  query["ClientToken"] = request.clientToken;
11236
11242
  }
11243
+ if (!tea_util_1.default.isUnset(request.orgId)) {
11244
+ query["OrgId"] = request.orgId;
11245
+ }
11237
11246
  if (!tea_util_1.default.isUnset(request.orgName)) {
11238
11247
  query["OrgName"] = request.orgName;
11239
11248
  }
@@ -12983,7 +12992,7 @@ class Client extends openapi_client_1.default {
12983
12992
  return await this.updateApplicationGroupWithOptions(request, runtime);
12984
12993
  }
12985
12994
  /**
12986
- * Updates an execution.
12995
+ * Update executions that are in Running or Waiting status.
12987
12996
  *
12988
12997
  * @param request - UpdateExecutionRequest
12989
12998
  * @param runtime - runtime options for this request RuntimeOptions
@@ -13030,7 +13039,7 @@ class Client extends openapi_client_1.default {
13030
13039
  return $tea.cast(await this.callApi(params, req, runtime), new UpdateExecutionResponse({}));
13031
13040
  }
13032
13041
  /**
13033
- * Updates an execution.
13042
+ * Update executions that are in Running or Waiting status.
13034
13043
  *
13035
13044
  * @param request - UpdateExecutionRequest
13036
13045
  * @returns UpdateExecutionResponse