@alicloud/oos20190601 3.1.1 → 3.1.2

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/src/client.ts CHANGED
@@ -3975,6 +3975,7 @@ export class ListGitRepositoriesRequest extends $tea.Model {
3975
3975
  pageNumber?: number;
3976
3976
  pageSize?: number;
3977
3977
  platform?: string;
3978
+ regionId?: string;
3978
3979
  static names(): { [key: string]: string } {
3979
3980
  return {
3980
3981
  clientToken: 'ClientToken',
@@ -3983,6 +3984,7 @@ export class ListGitRepositoriesRequest extends $tea.Model {
3983
3984
  pageNumber: 'PageNumber',
3984
3985
  pageSize: 'PageSize',
3985
3986
  platform: 'Platform',
3987
+ regionId: 'RegionId',
3986
3988
  };
3987
3989
  }
3988
3990
 
@@ -3994,6 +3996,7 @@ export class ListGitRepositoriesRequest extends $tea.Model {
3994
3996
  pageNumber: 'number',
3995
3997
  pageSize: 'number',
3996
3998
  platform: 'string',
3999
+ regionId: 'string',
3997
4000
  };
3998
4001
  }
3999
4002
 
@@ -5804,6 +5807,7 @@ export class ListTemplatesRequest extends $tea.Model {
5804
5807
  createdDateAfter?: string;
5805
5808
  createdDateBefore?: string;
5806
5809
  hasTrigger?: boolean;
5810
+ isExample?: boolean;
5807
5811
  isFavorite?: boolean;
5808
5812
  maxResults?: number;
5809
5813
  nextToken?: string;
@@ -5823,6 +5827,7 @@ export class ListTemplatesRequest extends $tea.Model {
5823
5827
  createdDateAfter: 'CreatedDateAfter',
5824
5828
  createdDateBefore: 'CreatedDateBefore',
5825
5829
  hasTrigger: 'HasTrigger',
5830
+ isExample: 'IsExample',
5826
5831
  isFavorite: 'IsFavorite',
5827
5832
  maxResults: 'MaxResults',
5828
5833
  nextToken: 'NextToken',
@@ -5845,6 +5850,7 @@ export class ListTemplatesRequest extends $tea.Model {
5845
5850
  createdDateAfter: 'string',
5846
5851
  createdDateBefore: 'string',
5847
5852
  hasTrigger: 'boolean',
5853
+ isExample: 'boolean',
5848
5854
  isFavorite: 'boolean',
5849
5855
  maxResults: 'number',
5850
5856
  nextToken: 'string',
@@ -5871,6 +5877,7 @@ export class ListTemplatesShrinkRequest extends $tea.Model {
5871
5877
  createdDateAfter?: string;
5872
5878
  createdDateBefore?: string;
5873
5879
  hasTrigger?: boolean;
5880
+ isExample?: boolean;
5874
5881
  isFavorite?: boolean;
5875
5882
  maxResults?: number;
5876
5883
  nextToken?: string;
@@ -5890,6 +5897,7 @@ export class ListTemplatesShrinkRequest extends $tea.Model {
5890
5897
  createdDateAfter: 'CreatedDateAfter',
5891
5898
  createdDateBefore: 'CreatedDateBefore',
5892
5899
  hasTrigger: 'HasTrigger',
5900
+ isExample: 'IsExample',
5893
5901
  isFavorite: 'IsFavorite',
5894
5902
  maxResults: 'MaxResults',
5895
5903
  nextToken: 'NextToken',
@@ -5912,6 +5920,7 @@ export class ListTemplatesShrinkRequest extends $tea.Model {
5912
5920
  createdDateAfter: 'string',
5913
5921
  createdDateBefore: 'string',
5914
5922
  hasTrigger: 'boolean',
5923
+ isExample: 'boolean',
5915
5924
  isFavorite: 'boolean',
5916
5925
  maxResults: 'number',
5917
5926
  nextToken: 'string',
@@ -11228,6 +11237,13 @@ export default class Client extends OpenApi {
11228
11237
  return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
11229
11238
  }
11230
11239
 
11240
+ /**
11241
+ * @summary Cancels an execution.
11242
+ *
11243
+ * @param request CancelExecutionRequest
11244
+ * @param runtime runtime options for this request RuntimeOptions
11245
+ * @return CancelExecutionResponse
11246
+ */
11231
11247
  async cancelExecutionWithOptions(request: CancelExecutionRequest, runtime: $Util.RuntimeOptions): Promise<CancelExecutionResponse> {
11232
11248
  Util.validateModel(request);
11233
11249
  let query = { };
@@ -11256,11 +11272,24 @@ export default class Client extends OpenApi {
11256
11272
  return $tea.cast<CancelExecutionResponse>(await this.callApi(params, req, runtime), new CancelExecutionResponse({}));
11257
11273
  }
11258
11274
 
11275
+ /**
11276
+ * @summary Cancels an execution.
11277
+ *
11278
+ * @param request CancelExecutionRequest
11279
+ * @return CancelExecutionResponse
11280
+ */
11259
11281
  async cancelExecution(request: CancelExecutionRequest): Promise<CancelExecutionResponse> {
11260
11282
  let runtime = new $Util.RuntimeOptions({ });
11261
11283
  return await this.cancelExecutionWithOptions(request, runtime);
11262
11284
  }
11263
11285
 
11286
+ /**
11287
+ * @summary Modifies the resource group to which a cloud resource belongs.
11288
+ *
11289
+ * @param request ChangeResourceGroupRequest
11290
+ * @param runtime runtime options for this request RuntimeOptions
11291
+ * @return ChangeResourceGroupResponse
11292
+ */
11264
11293
  async changeResourceGroupWithOptions(request: ChangeResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ChangeResourceGroupResponse> {
11265
11294
  Util.validateModel(request);
11266
11295
  let query = { };
@@ -11297,11 +11326,24 @@ export default class Client extends OpenApi {
11297
11326
  return $tea.cast<ChangeResourceGroupResponse>(await this.callApi(params, req, runtime), new ChangeResourceGroupResponse({}));
11298
11327
  }
11299
11328
 
11329
+ /**
11330
+ * @summary Modifies the resource group to which a cloud resource belongs.
11331
+ *
11332
+ * @param request ChangeResourceGroupRequest
11333
+ * @return ChangeResourceGroupResponse
11334
+ */
11300
11335
  async changeResourceGroup(request: ChangeResourceGroupRequest): Promise<ChangeResourceGroupResponse> {
11301
11336
  let runtime = new $Util.RuntimeOptions({ });
11302
11337
  return await this.changeResourceGroupWithOptions(request, runtime);
11303
11338
  }
11304
11339
 
11340
+ /**
11341
+ * @summary Continues deploying an application group when an error occurs for calling the DeployApplicationGroup operation. You can call this operation only for the applications which reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
11342
+ *
11343
+ * @param request ContinueDeployApplicationGroupRequest
11344
+ * @param runtime runtime options for this request RuntimeOptions
11345
+ * @return ContinueDeployApplicationGroupResponse
11346
+ */
11305
11347
  async continueDeployApplicationGroupWithOptions(request: ContinueDeployApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<ContinueDeployApplicationGroupResponse> {
11306
11348
  Util.validateModel(request);
11307
11349
  let query = { };
@@ -11338,11 +11380,24 @@ export default class Client extends OpenApi {
11338
11380
  return $tea.cast<ContinueDeployApplicationGroupResponse>(await this.callApi(params, req, runtime), new ContinueDeployApplicationGroupResponse({}));
11339
11381
  }
11340
11382
 
11383
+ /**
11384
+ * @summary Continues deploying an application group when an error occurs for calling the DeployApplicationGroup operation. You can call this operation only for the applications which reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
11385
+ *
11386
+ * @param request ContinueDeployApplicationGroupRequest
11387
+ * @return ContinueDeployApplicationGroupResponse
11388
+ */
11341
11389
  async continueDeployApplicationGroup(request: ContinueDeployApplicationGroupRequest): Promise<ContinueDeployApplicationGroupResponse> {
11342
11390
  let runtime = new $Util.RuntimeOptions({ });
11343
11391
  return await this.continueDeployApplicationGroupWithOptions(request, runtime);
11344
11392
  }
11345
11393
 
11394
+ /**
11395
+ * @summary Creates an application. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
11396
+ *
11397
+ * @param tmpReq CreateApplicationRequest
11398
+ * @param runtime runtime options for this request RuntimeOptions
11399
+ * @return CreateApplicationResponse
11400
+ */
11346
11401
  async createApplicationWithOptions(tmpReq: CreateApplicationRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationResponse> {
11347
11402
  Util.validateModel(tmpReq);
11348
11403
  let request = new CreateApplicationShrinkRequest({ });
@@ -11405,11 +11460,24 @@ export default class Client extends OpenApi {
11405
11460
  return $tea.cast<CreateApplicationResponse>(await this.callApi(params, req, runtime), new CreateApplicationResponse({}));
11406
11461
  }
11407
11462
 
11463
+ /**
11464
+ * @summary Creates an application. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
11465
+ *
11466
+ * @param request CreateApplicationRequest
11467
+ * @return CreateApplicationResponse
11468
+ */
11408
11469
  async createApplication(request: CreateApplicationRequest): Promise<CreateApplicationResponse> {
11409
11470
  let runtime = new $Util.RuntimeOptions({ });
11410
11471
  return await this.createApplicationWithOptions(request, runtime);
11411
11472
  }
11412
11473
 
11474
+ /**
11475
+ * @summary Creates an application group. You can call this operation only for the application groups that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
11476
+ *
11477
+ * @param request CreateApplicationGroupRequest
11478
+ * @param runtime runtime options for this request RuntimeOptions
11479
+ * @return CreateApplicationGroupResponse
11480
+ */
11413
11481
  async createApplicationGroupWithOptions(request: CreateApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationGroupResponse> {
11414
11482
  Util.validateModel(request);
11415
11483
  let query = { };
@@ -11466,11 +11534,24 @@ export default class Client extends OpenApi {
11466
11534
  return $tea.cast<CreateApplicationGroupResponse>(await this.callApi(params, req, runtime), new CreateApplicationGroupResponse({}));
11467
11535
  }
11468
11536
 
11537
+ /**
11538
+ * @summary Creates an application group. You can call this operation only for the application groups that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
11539
+ *
11540
+ * @param request CreateApplicationGroupRequest
11541
+ * @return CreateApplicationGroupResponse
11542
+ */
11469
11543
  async createApplicationGroup(request: CreateApplicationGroupRequest): Promise<CreateApplicationGroupResponse> {
11470
11544
  let runtime = new $Util.RuntimeOptions({ });
11471
11545
  return await this.createApplicationGroupWithOptions(request, runtime);
11472
11546
  }
11473
11547
 
11548
+ /**
11549
+ * @summary Creates an O\\\\\\\\\\\\&M Item.
11550
+ *
11551
+ * @param tmpReq CreateOpsItemRequest
11552
+ * @param runtime runtime options for this request RuntimeOptions
11553
+ * @return CreateOpsItemResponse
11554
+ */
11474
11555
  async createOpsItemWithOptions(tmpReq: CreateOpsItemRequest, runtime: $Util.RuntimeOptions): Promise<CreateOpsItemResponse> {
11475
11556
  Util.validateModel(tmpReq);
11476
11557
  let request = new CreateOpsItemShrinkRequest({ });
@@ -11549,11 +11630,24 @@ export default class Client extends OpenApi {
11549
11630
  return $tea.cast<CreateOpsItemResponse>(await this.callApi(params, req, runtime), new CreateOpsItemResponse({}));
11550
11631
  }
11551
11632
 
11633
+ /**
11634
+ * @summary Creates an O\\\\\\\\\\\\&M Item.
11635
+ *
11636
+ * @param request CreateOpsItemRequest
11637
+ * @return CreateOpsItemResponse
11638
+ */
11552
11639
  async createOpsItem(request: CreateOpsItemRequest): Promise<CreateOpsItemResponse> {
11553
11640
  let runtime = new $Util.RuntimeOptions({ });
11554
11641
  return await this.createOpsItemWithOptions(request, runtime);
11555
11642
  }
11556
11643
 
11644
+ /**
11645
+ * @summary Creates a common parameter.
11646
+ *
11647
+ * @param tmpReq CreateParameterRequest
11648
+ * @param runtime runtime options for this request RuntimeOptions
11649
+ * @return CreateParameterResponse
11650
+ */
11557
11651
  async createParameterWithOptions(tmpReq: CreateParameterRequest, runtime: $Util.RuntimeOptions): Promise<CreateParameterResponse> {
11558
11652
  Util.validateModel(tmpReq);
11559
11653
  let request = new CreateParameterShrinkRequest({ });
@@ -11616,11 +11710,24 @@ export default class Client extends OpenApi {
11616
11710
  return $tea.cast<CreateParameterResponse>(await this.callApi(params, req, runtime), new CreateParameterResponse({}));
11617
11711
  }
11618
11712
 
11713
+ /**
11714
+ * @summary Creates a common parameter.
11715
+ *
11716
+ * @param request CreateParameterRequest
11717
+ * @return CreateParameterResponse
11718
+ */
11619
11719
  async createParameter(request: CreateParameterRequest): Promise<CreateParameterResponse> {
11620
11720
  let runtime = new $Util.RuntimeOptions({ });
11621
11721
  return await this.createParameterWithOptions(request, runtime);
11622
11722
  }
11623
11723
 
11724
+ /**
11725
+ * @summary Creates a patch baseline.
11726
+ *
11727
+ * @param tmpReq CreatePatchBaselineRequest
11728
+ * @param runtime runtime options for this request RuntimeOptions
11729
+ * @return CreatePatchBaselineResponse
11730
+ */
11624
11731
  async createPatchBaselineWithOptions(tmpReq: CreatePatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<CreatePatchBaselineResponse> {
11625
11732
  Util.validateModel(tmpReq);
11626
11733
  let request = new CreatePatchBaselineShrinkRequest({ });
@@ -11711,11 +11818,24 @@ export default class Client extends OpenApi {
11711
11818
  return $tea.cast<CreatePatchBaselineResponse>(await this.callApi(params, req, runtime), new CreatePatchBaselineResponse({}));
11712
11819
  }
11713
11820
 
11821
+ /**
11822
+ * @summary Creates a patch baseline.
11823
+ *
11824
+ * @param request CreatePatchBaselineRequest
11825
+ * @return CreatePatchBaselineResponse
11826
+ */
11714
11827
  async createPatchBaseline(request: CreatePatchBaselineRequest): Promise<CreatePatchBaselineResponse> {
11715
11828
  let runtime = new $Util.RuntimeOptions({ });
11716
11829
  return await this.createPatchBaselineWithOptions(request, runtime);
11717
11830
  }
11718
11831
 
11832
+ /**
11833
+ * @summary Creates an encryption parameter. Make sure that you have the permissions to call this operation.
11834
+ *
11835
+ * @param tmpReq CreateSecretParameterRequest
11836
+ * @param runtime runtime options for this request RuntimeOptions
11837
+ * @return CreateSecretParameterResponse
11838
+ */
11719
11839
  async createSecretParameterWithOptions(tmpReq: CreateSecretParameterRequest, runtime: $Util.RuntimeOptions): Promise<CreateSecretParameterResponse> {
11720
11840
  Util.validateModel(tmpReq);
11721
11841
  let request = new CreateSecretParameterShrinkRequest({ });
@@ -11786,11 +11906,24 @@ export default class Client extends OpenApi {
11786
11906
  return $tea.cast<CreateSecretParameterResponse>(await this.callApi(params, req, runtime), new CreateSecretParameterResponse({}));
11787
11907
  }
11788
11908
 
11909
+ /**
11910
+ * @summary Creates an encryption parameter. Make sure that you have the permissions to call this operation.
11911
+ *
11912
+ * @param request CreateSecretParameterRequest
11913
+ * @return CreateSecretParameterResponse
11914
+ */
11789
11915
  async createSecretParameter(request: CreateSecretParameterRequest): Promise<CreateSecretParameterResponse> {
11790
11916
  let runtime = new $Util.RuntimeOptions({ });
11791
11917
  return await this.createSecretParameterWithOptions(request, runtime);
11792
11918
  }
11793
11919
 
11920
+ /**
11921
+ * @summary Creates a desired-state configuration.
11922
+ *
11923
+ * @param tmpReq CreateStateConfigurationRequest
11924
+ * @param runtime runtime options for this request RuntimeOptions
11925
+ * @return CreateStateConfigurationResponse
11926
+ */
11794
11927
  async createStateConfigurationWithOptions(tmpReq: CreateStateConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<CreateStateConfigurationResponse> {
11795
11928
  Util.validateModel(tmpReq);
11796
11929
  let request = new CreateStateConfigurationShrinkRequest({ });
@@ -11865,11 +11998,24 @@ export default class Client extends OpenApi {
11865
11998
  return $tea.cast<CreateStateConfigurationResponse>(await this.callApi(params, req, runtime), new CreateStateConfigurationResponse({}));
11866
11999
  }
11867
12000
 
12001
+ /**
12002
+ * @summary Creates a desired-state configuration.
12003
+ *
12004
+ * @param request CreateStateConfigurationRequest
12005
+ * @return CreateStateConfigurationResponse
12006
+ */
11868
12007
  async createStateConfiguration(request: CreateStateConfigurationRequest): Promise<CreateStateConfigurationResponse> {
11869
12008
  let runtime = new $Util.RuntimeOptions({ });
11870
12009
  return await this.createStateConfigurationWithOptions(request, runtime);
11871
12010
  }
11872
12011
 
12012
+ /**
12013
+ * @summary Creates a template.
12014
+ *
12015
+ * @param tmpReq CreateTemplateRequest
12016
+ * @param runtime runtime options for this request RuntimeOptions
12017
+ * @return CreateTemplateResponse
12018
+ */
11873
12019
  async createTemplateWithOptions(tmpReq: CreateTemplateRequest, runtime: $Util.RuntimeOptions): Promise<CreateTemplateResponse> {
11874
12020
  Util.validateModel(tmpReq);
11875
12021
  let request = new CreateTemplateShrinkRequest({ });
@@ -11920,11 +12066,24 @@ export default class Client extends OpenApi {
11920
12066
  return $tea.cast<CreateTemplateResponse>(await this.callApi(params, req, runtime), new CreateTemplateResponse({}));
11921
12067
  }
11922
12068
 
12069
+ /**
12070
+ * @summary Creates a template.
12071
+ *
12072
+ * @param request CreateTemplateRequest
12073
+ * @return CreateTemplateResponse
12074
+ */
11923
12075
  async createTemplate(request: CreateTemplateRequest): Promise<CreateTemplateResponse> {
11924
12076
  let runtime = new $Util.RuntimeOptions({ });
11925
12077
  return await this.createTemplateWithOptions(request, runtime);
11926
12078
  }
11927
12079
 
12080
+ /**
12081
+ * @summary Deletes an application. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12082
+ *
12083
+ * @param request DeleteApplicationRequest
12084
+ * @param runtime runtime options for this request RuntimeOptions
12085
+ * @return DeleteApplicationResponse
12086
+ */
11928
12087
  async deleteApplicationWithOptions(request: DeleteApplicationRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationResponse> {
11929
12088
  Util.validateModel(request);
11930
12089
  let query = { };
@@ -11961,11 +12120,24 @@ export default class Client extends OpenApi {
11961
12120
  return $tea.cast<DeleteApplicationResponse>(await this.callApi(params, req, runtime), new DeleteApplicationResponse({}));
11962
12121
  }
11963
12122
 
12123
+ /**
12124
+ * @summary Deletes an application. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12125
+ *
12126
+ * @param request DeleteApplicationRequest
12127
+ * @return DeleteApplicationResponse
12128
+ */
11964
12129
  async deleteApplication(request: DeleteApplicationRequest): Promise<DeleteApplicationResponse> {
11965
12130
  let runtime = new $Util.RuntimeOptions({ });
11966
12131
  return await this.deleteApplicationWithOptions(request, runtime);
11967
12132
  }
11968
12133
 
12134
+ /**
12135
+ * @summary Deletes an application group. You can call this operation only for the application groups which reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12136
+ *
12137
+ * @param request DeleteApplicationGroupRequest
12138
+ * @param runtime runtime options for this request RuntimeOptions
12139
+ * @return DeleteApplicationGroupResponse
12140
+ */
11969
12141
  async deleteApplicationGroupWithOptions(request: DeleteApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationGroupResponse> {
11970
12142
  Util.validateModel(request);
11971
12143
  let query = { };
@@ -12002,11 +12174,24 @@ export default class Client extends OpenApi {
12002
12174
  return $tea.cast<DeleteApplicationGroupResponse>(await this.callApi(params, req, runtime), new DeleteApplicationGroupResponse({}));
12003
12175
  }
12004
12176
 
12177
+ /**
12178
+ * @summary Deletes an application group. You can call this operation only for the application groups which reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12179
+ *
12180
+ * @param request DeleteApplicationGroupRequest
12181
+ * @return DeleteApplicationGroupResponse
12182
+ */
12005
12183
  async deleteApplicationGroup(request: DeleteApplicationGroupRequest): Promise<DeleteApplicationGroupResponse> {
12006
12184
  let runtime = new $Util.RuntimeOptions({ });
12007
12185
  return await this.deleteApplicationGroupWithOptions(request, runtime);
12008
12186
  }
12009
12187
 
12188
+ /**
12189
+ * @summary Deletes multiple executions.
12190
+ *
12191
+ * @param request DeleteExecutionsRequest
12192
+ * @param runtime runtime options for this request RuntimeOptions
12193
+ * @return DeleteExecutionsResponse
12194
+ */
12010
12195
  async deleteExecutionsWithOptions(request: DeleteExecutionsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteExecutionsResponse> {
12011
12196
  Util.validateModel(request);
12012
12197
  let query = { };
@@ -12035,11 +12220,24 @@ export default class Client extends OpenApi {
12035
12220
  return $tea.cast<DeleteExecutionsResponse>(await this.callApi(params, req, runtime), new DeleteExecutionsResponse({}));
12036
12221
  }
12037
12222
 
12223
+ /**
12224
+ * @summary Deletes multiple executions.
12225
+ *
12226
+ * @param request DeleteExecutionsRequest
12227
+ * @return DeleteExecutionsResponse
12228
+ */
12038
12229
  async deleteExecutions(request: DeleteExecutionsRequest): Promise<DeleteExecutionsResponse> {
12039
12230
  let runtime = new $Util.RuntimeOptions({ });
12040
12231
  return await this.deleteExecutionsWithOptions(request, runtime);
12041
12232
  }
12042
12233
 
12234
+ /**
12235
+ * @summary Deletes a common parameter.
12236
+ *
12237
+ * @param request DeleteParameterRequest
12238
+ * @param runtime runtime options for this request RuntimeOptions
12239
+ * @return DeleteParameterResponse
12240
+ */
12043
12241
  async deleteParameterWithOptions(request: DeleteParameterRequest, runtime: $Util.RuntimeOptions): Promise<DeleteParameterResponse> {
12044
12242
  Util.validateModel(request);
12045
12243
  let query = { };
@@ -12068,11 +12266,24 @@ export default class Client extends OpenApi {
12068
12266
  return $tea.cast<DeleteParameterResponse>(await this.callApi(params, req, runtime), new DeleteParameterResponse({}));
12069
12267
  }
12070
12268
 
12269
+ /**
12270
+ * @summary Deletes a common parameter.
12271
+ *
12272
+ * @param request DeleteParameterRequest
12273
+ * @return DeleteParameterResponse
12274
+ */
12071
12275
  async deleteParameter(request: DeleteParameterRequest): Promise<DeleteParameterResponse> {
12072
12276
  let runtime = new $Util.RuntimeOptions({ });
12073
12277
  return await this.deleteParameterWithOptions(request, runtime);
12074
12278
  }
12075
12279
 
12280
+ /**
12281
+ * @summary Deletes a patch baseline.
12282
+ *
12283
+ * @param request DeletePatchBaselineRequest
12284
+ * @param runtime runtime options for this request RuntimeOptions
12285
+ * @return DeletePatchBaselineResponse
12286
+ */
12076
12287
  async deletePatchBaselineWithOptions(request: DeletePatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<DeletePatchBaselineResponse> {
12077
12288
  Util.validateModel(request);
12078
12289
  let query = { };
@@ -12101,11 +12312,24 @@ export default class Client extends OpenApi {
12101
12312
  return $tea.cast<DeletePatchBaselineResponse>(await this.callApi(params, req, runtime), new DeletePatchBaselineResponse({}));
12102
12313
  }
12103
12314
 
12315
+ /**
12316
+ * @summary Deletes a patch baseline.
12317
+ *
12318
+ * @param request DeletePatchBaselineRequest
12319
+ * @return DeletePatchBaselineResponse
12320
+ */
12104
12321
  async deletePatchBaseline(request: DeletePatchBaselineRequest): Promise<DeletePatchBaselineResponse> {
12105
12322
  let runtime = new $Util.RuntimeOptions({ });
12106
12323
  return await this.deletePatchBaselineWithOptions(request, runtime);
12107
12324
  }
12108
12325
 
12326
+ /**
12327
+ * @summary Deletes an encryption parameter. Make sure that you have the permissions to call the DeleteSecret operation before you call this operation.
12328
+ *
12329
+ * @param request DeleteSecretParameterRequest
12330
+ * @param runtime runtime options for this request RuntimeOptions
12331
+ * @return DeleteSecretParameterResponse
12332
+ */
12109
12333
  async deleteSecretParameterWithOptions(request: DeleteSecretParameterRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSecretParameterResponse> {
12110
12334
  Util.validateModel(request);
12111
12335
  let query = { };
@@ -12134,11 +12358,24 @@ export default class Client extends OpenApi {
12134
12358
  return $tea.cast<DeleteSecretParameterResponse>(await this.callApi(params, req, runtime), new DeleteSecretParameterResponse({}));
12135
12359
  }
12136
12360
 
12361
+ /**
12362
+ * @summary Deletes an encryption parameter. Make sure that you have the permissions to call the DeleteSecret operation before you call this operation.
12363
+ *
12364
+ * @param request DeleteSecretParameterRequest
12365
+ * @return DeleteSecretParameterResponse
12366
+ */
12137
12367
  async deleteSecretParameter(request: DeleteSecretParameterRequest): Promise<DeleteSecretParameterResponse> {
12138
12368
  let runtime = new $Util.RuntimeOptions({ });
12139
12369
  return await this.deleteSecretParameterWithOptions(request, runtime);
12140
12370
  }
12141
12371
 
12372
+ /**
12373
+ * @summary Deletes multiple desired-state configurations at a time.
12374
+ *
12375
+ * @param request DeleteStateConfigurationsRequest
12376
+ * @param runtime runtime options for this request RuntimeOptions
12377
+ * @return DeleteStateConfigurationsResponse
12378
+ */
12142
12379
  async deleteStateConfigurationsWithOptions(request: DeleteStateConfigurationsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteStateConfigurationsResponse> {
12143
12380
  Util.validateModel(request);
12144
12381
  let query = { };
@@ -12171,11 +12408,24 @@ export default class Client extends OpenApi {
12171
12408
  return $tea.cast<DeleteStateConfigurationsResponse>(await this.callApi(params, req, runtime), new DeleteStateConfigurationsResponse({}));
12172
12409
  }
12173
12410
 
12411
+ /**
12412
+ * @summary Deletes multiple desired-state configurations at a time.
12413
+ *
12414
+ * @param request DeleteStateConfigurationsRequest
12415
+ * @return DeleteStateConfigurationsResponse
12416
+ */
12174
12417
  async deleteStateConfigurations(request: DeleteStateConfigurationsRequest): Promise<DeleteStateConfigurationsResponse> {
12175
12418
  let runtime = new $Util.RuntimeOptions({ });
12176
12419
  return await this.deleteStateConfigurationsWithOptions(request, runtime);
12177
12420
  }
12178
12421
 
12422
+ /**
12423
+ * @summary Deletes a template.
12424
+ *
12425
+ * @param request DeleteTemplateRequest
12426
+ * @param runtime runtime options for this request RuntimeOptions
12427
+ * @return DeleteTemplateResponse
12428
+ */
12179
12429
  async deleteTemplateWithOptions(request: DeleteTemplateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTemplateResponse> {
12180
12430
  Util.validateModel(request);
12181
12431
  let query = { };
@@ -12208,11 +12458,24 @@ export default class Client extends OpenApi {
12208
12458
  return $tea.cast<DeleteTemplateResponse>(await this.callApi(params, req, runtime), new DeleteTemplateResponse({}));
12209
12459
  }
12210
12460
 
12461
+ /**
12462
+ * @summary Deletes a template.
12463
+ *
12464
+ * @param request DeleteTemplateRequest
12465
+ * @return DeleteTemplateResponse
12466
+ */
12211
12467
  async deleteTemplate(request: DeleteTemplateRequest): Promise<DeleteTemplateResponse> {
12212
12468
  let runtime = new $Util.RuntimeOptions({ });
12213
12469
  return await this.deleteTemplateWithOptions(request, runtime);
12214
12470
  }
12215
12471
 
12472
+ /**
12473
+ * @summary Deletes multiple templates.
12474
+ *
12475
+ * @param request DeleteTemplatesRequest
12476
+ * @param runtime runtime options for this request RuntimeOptions
12477
+ * @return DeleteTemplatesResponse
12478
+ */
12216
12479
  async deleteTemplatesWithOptions(request: DeleteTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTemplatesResponse> {
12217
12480
  Util.validateModel(request);
12218
12481
  let query = { };
@@ -12245,11 +12508,24 @@ export default class Client extends OpenApi {
12245
12508
  return $tea.cast<DeleteTemplatesResponse>(await this.callApi(params, req, runtime), new DeleteTemplatesResponse({}));
12246
12509
  }
12247
12510
 
12511
+ /**
12512
+ * @summary Deletes multiple templates.
12513
+ *
12514
+ * @param request DeleteTemplatesRequest
12515
+ * @return DeleteTemplatesResponse
12516
+ */
12248
12517
  async deleteTemplates(request: DeleteTemplatesRequest): Promise<DeleteTemplatesResponse> {
12249
12518
  let runtime = new $Util.RuntimeOptions({ });
12250
12519
  return await this.deleteTemplatesWithOptions(request, runtime);
12251
12520
  }
12252
12521
 
12522
+ /**
12523
+ * @summary Deploys an application group. You can call this operation only for the applications which reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12524
+ *
12525
+ * @param request DeployApplicationGroupRequest
12526
+ * @param runtime runtime options for this request RuntimeOptions
12527
+ * @return DeployApplicationGroupResponse
12528
+ */
12253
12529
  async deployApplicationGroupWithOptions(request: DeployApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeployApplicationGroupResponse> {
12254
12530
  Util.validateModel(request);
12255
12531
  let query = { };
@@ -12286,11 +12562,24 @@ export default class Client extends OpenApi {
12286
12562
  return $tea.cast<DeployApplicationGroupResponse>(await this.callApi(params, req, runtime), new DeployApplicationGroupResponse({}));
12287
12563
  }
12288
12564
 
12565
+ /**
12566
+ * @summary Deploys an application group. You can call this operation only for the applications which reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12567
+ *
12568
+ * @param request DeployApplicationGroupRequest
12569
+ * @return DeployApplicationGroupResponse
12570
+ */
12289
12571
  async deployApplicationGroup(request: DeployApplicationGroupRequest): Promise<DeployApplicationGroupResponse> {
12290
12572
  let runtime = new $Util.RuntimeOptions({ });
12291
12573
  return await this.deployApplicationGroupWithOptions(request, runtime);
12292
12574
  }
12293
12575
 
12576
+ /**
12577
+ * @summary 查询应用分组资源成本
12578
+ *
12579
+ * @param request DescribeApplicationGroupBillRequest
12580
+ * @param runtime runtime options for this request RuntimeOptions
12581
+ * @return DescribeApplicationGroupBillResponse
12582
+ */
12294
12583
  async describeApplicationGroupBillWithOptions(request: DescribeApplicationGroupBillRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationGroupBillResponse> {
12295
12584
  Util.validateModel(request);
12296
12585
  let query = { };
@@ -12339,11 +12628,24 @@ export default class Client extends OpenApi {
12339
12628
  return $tea.cast<DescribeApplicationGroupBillResponse>(await this.callApi(params, req, runtime), new DescribeApplicationGroupBillResponse({}));
12340
12629
  }
12341
12630
 
12631
+ /**
12632
+ * @summary 查询应用分组资源成本
12633
+ *
12634
+ * @param request DescribeApplicationGroupBillRequest
12635
+ * @return DescribeApplicationGroupBillResponse
12636
+ */
12342
12637
  async describeApplicationGroupBill(request: DescribeApplicationGroupBillRequest): Promise<DescribeApplicationGroupBillResponse> {
12343
12638
  let runtime = new $Util.RuntimeOptions({ });
12344
12639
  return await this.describeApplicationGroupBillWithOptions(request, runtime);
12345
12640
  }
12346
12641
 
12642
+ /**
12643
+ * @summary Queries supported regions.
12644
+ *
12645
+ * @param request DescribeRegionsRequest
12646
+ * @param runtime runtime options for this request RuntimeOptions
12647
+ * @return DescribeRegionsResponse
12648
+ */
12347
12649
  async describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
12348
12650
  Util.validateModel(request);
12349
12651
  let query = { };
@@ -12372,11 +12674,24 @@ export default class Client extends OpenApi {
12372
12674
  return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
12373
12675
  }
12374
12676
 
12677
+ /**
12678
+ * @summary Queries supported regions.
12679
+ *
12680
+ * @param request DescribeRegionsRequest
12681
+ * @return DescribeRegionsResponse
12682
+ */
12375
12683
  async describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse> {
12376
12684
  let runtime = new $Util.RuntimeOptions({ });
12377
12685
  return await this.describeRegionsWithOptions(request, runtime);
12378
12686
  }
12379
12687
 
12688
+ /**
12689
+ * @summary Queries the Resource Access Management (RAM) policy required for template execution.
12690
+ *
12691
+ * @param request GenerateExecutionPolicyRequest
12692
+ * @param runtime runtime options for this request RuntimeOptions
12693
+ * @return GenerateExecutionPolicyResponse
12694
+ */
12380
12695
  async generateExecutionPolicyWithOptions(request: GenerateExecutionPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GenerateExecutionPolicyResponse> {
12381
12696
  Util.validateModel(request);
12382
12697
  let query = { };
@@ -12417,11 +12732,24 @@ export default class Client extends OpenApi {
12417
12732
  return $tea.cast<GenerateExecutionPolicyResponse>(await this.callApi(params, req, runtime), new GenerateExecutionPolicyResponse({}));
12418
12733
  }
12419
12734
 
12735
+ /**
12736
+ * @summary Queries the Resource Access Management (RAM) policy required for template execution.
12737
+ *
12738
+ * @param request GenerateExecutionPolicyRequest
12739
+ * @return GenerateExecutionPolicyResponse
12740
+ */
12420
12741
  async generateExecutionPolicy(request: GenerateExecutionPolicyRequest): Promise<GenerateExecutionPolicyResponse> {
12421
12742
  let runtime = new $Util.RuntimeOptions({ });
12422
12743
  return await this.generateExecutionPolicyWithOptions(request, runtime);
12423
12744
  }
12424
12745
 
12746
+ /**
12747
+ * @summary Queries the information of an application. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12748
+ *
12749
+ * @param request GetApplicationRequest
12750
+ * @param runtime runtime options for this request RuntimeOptions
12751
+ * @return GetApplicationResponse
12752
+ */
12425
12753
  async getApplicationWithOptions(request: GetApplicationRequest, runtime: $Util.RuntimeOptions): Promise<GetApplicationResponse> {
12426
12754
  Util.validateModel(request);
12427
12755
  let query = { };
@@ -12450,11 +12778,24 @@ export default class Client extends OpenApi {
12450
12778
  return $tea.cast<GetApplicationResponse>(await this.callApi(params, req, runtime), new GetApplicationResponse({}));
12451
12779
  }
12452
12780
 
12781
+ /**
12782
+ * @summary Queries the information of an application. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12783
+ *
12784
+ * @param request GetApplicationRequest
12785
+ * @return GetApplicationResponse
12786
+ */
12453
12787
  async getApplication(request: GetApplicationRequest): Promise<GetApplicationResponse> {
12454
12788
  let runtime = new $Util.RuntimeOptions({ });
12455
12789
  return await this.getApplicationWithOptions(request, runtime);
12456
12790
  }
12457
12791
 
12792
+ /**
12793
+ * @summary Queries the information about an application group. You can call this operation only for the application groups that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12794
+ *
12795
+ * @param request GetApplicationGroupRequest
12796
+ * @param runtime runtime options for this request RuntimeOptions
12797
+ * @return GetApplicationGroupResponse
12798
+ */
12458
12799
  async getApplicationGroupWithOptions(request: GetApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetApplicationGroupResponse> {
12459
12800
  Util.validateModel(request);
12460
12801
  let query = { };
@@ -12487,11 +12828,24 @@ export default class Client extends OpenApi {
12487
12828
  return $tea.cast<GetApplicationGroupResponse>(await this.callApi(params, req, runtime), new GetApplicationGroupResponse({}));
12488
12829
  }
12489
12830
 
12831
+ /**
12832
+ * @summary Queries the information about an application group. You can call this operation only for the application groups that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
12833
+ *
12834
+ * @param request GetApplicationGroupRequest
12835
+ * @return GetApplicationGroupResponse
12836
+ */
12490
12837
  async getApplicationGroup(request: GetApplicationGroupRequest): Promise<GetApplicationGroupResponse> {
12491
12838
  let runtime = new $Util.RuntimeOptions({ });
12492
12839
  return await this.getApplicationGroupWithOptions(request, runtime);
12493
12840
  }
12494
12841
 
12842
+ /**
12843
+ * @summary Queries the information about the template of an execution, including the content of the template.
12844
+ *
12845
+ * @param request GetExecutionTemplateRequest
12846
+ * @param runtime runtime options for this request RuntimeOptions
12847
+ * @return GetExecutionTemplateResponse
12848
+ */
12495
12849
  async getExecutionTemplateWithOptions(request: GetExecutionTemplateRequest, runtime: $Util.RuntimeOptions): Promise<GetExecutionTemplateResponse> {
12496
12850
  Util.validateModel(request);
12497
12851
  let query = { };
@@ -12520,11 +12874,24 @@ export default class Client extends OpenApi {
12520
12874
  return $tea.cast<GetExecutionTemplateResponse>(await this.callApi(params, req, runtime), new GetExecutionTemplateResponse({}));
12521
12875
  }
12522
12876
 
12877
+ /**
12878
+ * @summary Queries the information about the template of an execution, including the content of the template.
12879
+ *
12880
+ * @param request GetExecutionTemplateRequest
12881
+ * @return GetExecutionTemplateResponse
12882
+ */
12523
12883
  async getExecutionTemplate(request: GetExecutionTemplateRequest): Promise<GetExecutionTemplateResponse> {
12524
12884
  let runtime = new $Util.RuntimeOptions({ });
12525
12885
  return await this.getExecutionTemplateWithOptions(request, runtime);
12526
12886
  }
12527
12887
 
12888
+ /**
12889
+ * @summary Queries the properties of a configuration list.
12890
+ *
12891
+ * @param request GetInventorySchemaRequest
12892
+ * @param runtime runtime options for this request RuntimeOptions
12893
+ * @return GetInventorySchemaResponse
12894
+ */
12528
12895
  async getInventorySchemaWithOptions(request: GetInventorySchemaRequest, runtime: $Util.RuntimeOptions): Promise<GetInventorySchemaResponse> {
12529
12896
  Util.validateModel(request);
12530
12897
  let query = { };
@@ -12565,11 +12932,24 @@ export default class Client extends OpenApi {
12565
12932
  return $tea.cast<GetInventorySchemaResponse>(await this.callApi(params, req, runtime), new GetInventorySchemaResponse({}));
12566
12933
  }
12567
12934
 
12935
+ /**
12936
+ * @summary Queries the properties of a configuration list.
12937
+ *
12938
+ * @param request GetInventorySchemaRequest
12939
+ * @return GetInventorySchemaResponse
12940
+ */
12568
12941
  async getInventorySchema(request: GetInventorySchemaRequest): Promise<GetInventorySchemaResponse> {
12569
12942
  let runtime = new $Util.RuntimeOptions({ });
12570
12943
  return await this.getInventorySchemaWithOptions(request, runtime);
12571
12944
  }
12572
12945
 
12946
+ /**
12947
+ * @summary Queries the details of an O\\\\\\\\\\\\&M item.
12948
+ *
12949
+ * @param request GetOpsItemRequest
12950
+ * @param runtime runtime options for this request RuntimeOptions
12951
+ * @return GetOpsItemResponse
12952
+ */
12573
12953
  async getOpsItemWithOptions(request: GetOpsItemRequest, runtime: $Util.RuntimeOptions): Promise<GetOpsItemResponse> {
12574
12954
  Util.validateModel(request);
12575
12955
  let query = { };
@@ -12598,11 +12978,24 @@ export default class Client extends OpenApi {
12598
12978
  return $tea.cast<GetOpsItemResponse>(await this.callApi(params, req, runtime), new GetOpsItemResponse({}));
12599
12979
  }
12600
12980
 
12981
+ /**
12982
+ * @summary Queries the details of an O\\\\\\\\\\\\&M item.
12983
+ *
12984
+ * @param request GetOpsItemRequest
12985
+ * @return GetOpsItemResponse
12986
+ */
12601
12987
  async getOpsItem(request: GetOpsItemRequest): Promise<GetOpsItemResponse> {
12602
12988
  let runtime = new $Util.RuntimeOptions({ });
12603
12989
  return await this.getOpsItemWithOptions(request, runtime);
12604
12990
  }
12605
12991
 
12992
+ /**
12993
+ * @summary Queries a common parameter and its value.
12994
+ *
12995
+ * @param request GetParameterRequest
12996
+ * @param runtime runtime options for this request RuntimeOptions
12997
+ * @return GetParameterResponse
12998
+ */
12606
12999
  async getParameterWithOptions(request: GetParameterRequest, runtime: $Util.RuntimeOptions): Promise<GetParameterResponse> {
12607
13000
  Util.validateModel(request);
12608
13001
  let query = { };
@@ -12639,11 +13032,24 @@ export default class Client extends OpenApi {
12639
13032
  return $tea.cast<GetParameterResponse>(await this.callApi(params, req, runtime), new GetParameterResponse({}));
12640
13033
  }
12641
13034
 
13035
+ /**
13036
+ * @summary Queries a common parameter and its value.
13037
+ *
13038
+ * @param request GetParameterRequest
13039
+ * @return GetParameterResponse
13040
+ */
12642
13041
  async getParameter(request: GetParameterRequest): Promise<GetParameterResponse> {
12643
13042
  let runtime = new $Util.RuntimeOptions({ });
12644
13043
  return await this.getParameterWithOptions(request, runtime);
12645
13044
  }
12646
13045
 
13046
+ /**
13047
+ * @summary Queries the information about one or more parameters.
13048
+ *
13049
+ * @param request GetParametersRequest
13050
+ * @param runtime runtime options for this request RuntimeOptions
13051
+ * @return GetParametersResponse
13052
+ */
12647
13053
  async getParametersWithOptions(request: GetParametersRequest, runtime: $Util.RuntimeOptions): Promise<GetParametersResponse> {
12648
13054
  Util.validateModel(request);
12649
13055
  let query = { };
@@ -12672,11 +13078,24 @@ export default class Client extends OpenApi {
12672
13078
  return $tea.cast<GetParametersResponse>(await this.callApi(params, req, runtime), new GetParametersResponse({}));
12673
13079
  }
12674
13080
 
13081
+ /**
13082
+ * @summary Queries the information about one or more parameters.
13083
+ *
13084
+ * @param request GetParametersRequest
13085
+ * @return GetParametersResponse
13086
+ */
12675
13087
  async getParameters(request: GetParametersRequest): Promise<GetParametersResponse> {
12676
13088
  let runtime = new $Util.RuntimeOptions({ });
12677
13089
  return await this.getParametersWithOptions(request, runtime);
12678
13090
  }
12679
13091
 
13092
+ /**
13093
+ * @summary Queries one or more parameters by path.
13094
+ *
13095
+ * @param request GetParametersByPathRequest
13096
+ * @param runtime runtime options for this request RuntimeOptions
13097
+ * @return GetParametersByPathResponse
13098
+ */
12680
13099
  async getParametersByPathWithOptions(request: GetParametersByPathRequest, runtime: $Util.RuntimeOptions): Promise<GetParametersByPathResponse> {
12681
13100
  Util.validateModel(request);
12682
13101
  let query = { };
@@ -12717,11 +13136,24 @@ export default class Client extends OpenApi {
12717
13136
  return $tea.cast<GetParametersByPathResponse>(await this.callApi(params, req, runtime), new GetParametersByPathResponse({}));
12718
13137
  }
12719
13138
 
13139
+ /**
13140
+ * @summary Queries one or more parameters by path.
13141
+ *
13142
+ * @param request GetParametersByPathRequest
13143
+ * @return GetParametersByPathResponse
13144
+ */
12720
13145
  async getParametersByPath(request: GetParametersByPathRequest): Promise<GetParametersByPathResponse> {
12721
13146
  let runtime = new $Util.RuntimeOptions({ });
12722
13147
  return await this.getParametersByPathWithOptions(request, runtime);
12723
13148
  }
12724
13149
 
13150
+ /**
13151
+ * @summary Queries the information of a patch baseline.
13152
+ *
13153
+ * @param request GetPatchBaselineRequest
13154
+ * @param runtime runtime options for this request RuntimeOptions
13155
+ * @return GetPatchBaselineResponse
13156
+ */
12725
13157
  async getPatchBaselineWithOptions(request: GetPatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<GetPatchBaselineResponse> {
12726
13158
  Util.validateModel(request);
12727
13159
  let query = { };
@@ -12750,11 +13182,24 @@ export default class Client extends OpenApi {
12750
13182
  return $tea.cast<GetPatchBaselineResponse>(await this.callApi(params, req, runtime), new GetPatchBaselineResponse({}));
12751
13183
  }
12752
13184
 
13185
+ /**
13186
+ * @summary Queries the information of a patch baseline.
13187
+ *
13188
+ * @param request GetPatchBaselineRequest
13189
+ * @return GetPatchBaselineResponse
13190
+ */
12753
13191
  async getPatchBaseline(request: GetPatchBaselineRequest): Promise<GetPatchBaselineResponse> {
12754
13192
  let runtime = new $Util.RuntimeOptions({ });
12755
13193
  return await this.getPatchBaselineWithOptions(request, runtime);
12756
13194
  }
12757
13195
 
13196
+ /**
13197
+ * @summary Queries the information about an encryption parameter, including the parameter value. Make sure that you have the permissions to call the GetSecretValue operation before you call this operation.
13198
+ *
13199
+ * @param request GetSecretParameterRequest
13200
+ * @param runtime runtime options for this request RuntimeOptions
13201
+ * @return GetSecretParameterResponse
13202
+ */
12758
13203
  async getSecretParameterWithOptions(request: GetSecretParameterRequest, runtime: $Util.RuntimeOptions): Promise<GetSecretParameterResponse> {
12759
13204
  Util.validateModel(request);
12760
13205
  let query = { };
@@ -12791,11 +13236,24 @@ export default class Client extends OpenApi {
12791
13236
  return $tea.cast<GetSecretParameterResponse>(await this.callApi(params, req, runtime), new GetSecretParameterResponse({}));
12792
13237
  }
12793
13238
 
13239
+ /**
13240
+ * @summary Queries the information about an encryption parameter, including the parameter value. Make sure that you have the permissions to call the GetSecretValue operation before you call this operation.
13241
+ *
13242
+ * @param request GetSecretParameterRequest
13243
+ * @return GetSecretParameterResponse
13244
+ */
12794
13245
  async getSecretParameter(request: GetSecretParameterRequest): Promise<GetSecretParameterResponse> {
12795
13246
  let runtime = new $Util.RuntimeOptions({ });
12796
13247
  return await this.getSecretParameterWithOptions(request, runtime);
12797
13248
  }
12798
13249
 
13250
+ /**
13251
+ * @summary Queries the information about one or more encryption parameters. Make sure that you have the permissions to call the GetSecretValue operation before you call this operation.
13252
+ *
13253
+ * @param request GetSecretParametersRequest
13254
+ * @param runtime runtime options for this request RuntimeOptions
13255
+ * @return GetSecretParametersResponse
13256
+ */
12799
13257
  async getSecretParametersWithOptions(request: GetSecretParametersRequest, runtime: $Util.RuntimeOptions): Promise<GetSecretParametersResponse> {
12800
13258
  Util.validateModel(request);
12801
13259
  let query = { };
@@ -12828,11 +13286,24 @@ export default class Client extends OpenApi {
12828
13286
  return $tea.cast<GetSecretParametersResponse>(await this.callApi(params, req, runtime), new GetSecretParametersResponse({}));
12829
13287
  }
12830
13288
 
13289
+ /**
13290
+ * @summary Queries the information about one or more encryption parameters. Make sure that you have the permissions to call the GetSecretValue operation before you call this operation.
13291
+ *
13292
+ * @param request GetSecretParametersRequest
13293
+ * @return GetSecretParametersResponse
13294
+ */
12831
13295
  async getSecretParameters(request: GetSecretParametersRequest): Promise<GetSecretParametersResponse> {
12832
13296
  let runtime = new $Util.RuntimeOptions({ });
12833
13297
  return await this.getSecretParametersWithOptions(request, runtime);
12834
13298
  }
12835
13299
 
13300
+ /**
13301
+ * @summary Queries encryption parameters by path. Make sure that you have the permissions to call the GetSecretValue operation before you call this operation.
13302
+ *
13303
+ * @param request GetSecretParametersByPathRequest
13304
+ * @param runtime runtime options for this request RuntimeOptions
13305
+ * @return GetSecretParametersByPathResponse
13306
+ */
12836
13307
  async getSecretParametersByPathWithOptions(request: GetSecretParametersByPathRequest, runtime: $Util.RuntimeOptions): Promise<GetSecretParametersByPathResponse> {
12837
13308
  Util.validateModel(request);
12838
13309
  let query = { };
@@ -12877,11 +13348,24 @@ export default class Client extends OpenApi {
12877
13348
  return $tea.cast<GetSecretParametersByPathResponse>(await this.callApi(params, req, runtime), new GetSecretParametersByPathResponse({}));
12878
13349
  }
12879
13350
 
13351
+ /**
13352
+ * @summary Queries encryption parameters by path. Make sure that you have the permissions to call the GetSecretValue operation before you call this operation.
13353
+ *
13354
+ * @param request GetSecretParametersByPathRequest
13355
+ * @return GetSecretParametersByPathResponse
13356
+ */
12880
13357
  async getSecretParametersByPath(request: GetSecretParametersByPathRequest): Promise<GetSecretParametersByPathResponse> {
12881
13358
  let runtime = new $Util.RuntimeOptions({ });
12882
13359
  return await this.getSecretParametersByPathWithOptions(request, runtime);
12883
13360
  }
12884
13361
 
13362
+ /**
13363
+ * @summary Queries the settings of the delivery feature.
13364
+ *
13365
+ * @param request GetServiceSettingsRequest
13366
+ * @param runtime runtime options for this request RuntimeOptions
13367
+ * @return GetServiceSettingsResponse
13368
+ */
12885
13369
  async getServiceSettingsWithOptions(request: GetServiceSettingsRequest, runtime: $Util.RuntimeOptions): Promise<GetServiceSettingsResponse> {
12886
13370
  Util.validateModel(request);
12887
13371
  let query = { };
@@ -12906,11 +13390,24 @@ export default class Client extends OpenApi {
12906
13390
  return $tea.cast<GetServiceSettingsResponse>(await this.callApi(params, req, runtime), new GetServiceSettingsResponse({}));
12907
13391
  }
12908
13392
 
13393
+ /**
13394
+ * @summary Queries the settings of the delivery feature.
13395
+ *
13396
+ * @param request GetServiceSettingsRequest
13397
+ * @return GetServiceSettingsResponse
13398
+ */
12909
13399
  async getServiceSettings(request: GetServiceSettingsRequest): Promise<GetServiceSettingsResponse> {
12910
13400
  let runtime = new $Util.RuntimeOptions({ });
12911
13401
  return await this.getServiceSettingsWithOptions(request, runtime);
12912
13402
  }
12913
13403
 
13404
+ /**
13405
+ * @summary Queries the information about a template, including the content of the template.
13406
+ *
13407
+ * @param request GetTemplateRequest
13408
+ * @param runtime runtime options for this request RuntimeOptions
13409
+ * @return GetTemplateResponse
13410
+ */
12914
13411
  async getTemplateWithOptions(request: GetTemplateRequest, runtime: $Util.RuntimeOptions): Promise<GetTemplateResponse> {
12915
13412
  Util.validateModel(request);
12916
13413
  let query = { };
@@ -12943,11 +13440,24 @@ export default class Client extends OpenApi {
12943
13440
  return $tea.cast<GetTemplateResponse>(await this.callApi(params, req, runtime), new GetTemplateResponse({}));
12944
13441
  }
12945
13442
 
13443
+ /**
13444
+ * @summary Queries the information about a template, including the content of the template.
13445
+ *
13446
+ * @param request GetTemplateRequest
13447
+ * @return GetTemplateResponse
13448
+ */
12946
13449
  async getTemplate(request: GetTemplateRequest): Promise<GetTemplateResponse> {
12947
13450
  let runtime = new $Util.RuntimeOptions({ });
12948
13451
  return await this.getTemplateWithOptions(request, runtime);
12949
13452
  }
12950
13453
 
13454
+ /**
13455
+ * @summary Queries the available actions, including atomic actions and cloud product actions.
13456
+ *
13457
+ * @param request ListActionsRequest
13458
+ * @param runtime runtime options for this request RuntimeOptions
13459
+ * @return ListActionsResponse
13460
+ */
12951
13461
  async listActionsWithOptions(request: ListActionsRequest, runtime: $Util.RuntimeOptions): Promise<ListActionsResponse> {
12952
13462
  Util.validateModel(request);
12953
13463
  let query = { };
@@ -12984,11 +13494,24 @@ export default class Client extends OpenApi {
12984
13494
  return $tea.cast<ListActionsResponse>(await this.callApi(params, req, runtime), new ListActionsResponse({}));
12985
13495
  }
12986
13496
 
13497
+ /**
13498
+ * @summary Queries the available actions, including atomic actions and cloud product actions.
13499
+ *
13500
+ * @param request ListActionsRequest
13501
+ * @return ListActionsResponse
13502
+ */
12987
13503
  async listActions(request: ListActionsRequest): Promise<ListActionsResponse> {
12988
13504
  let runtime = new $Util.RuntimeOptions({ });
12989
13505
  return await this.listActionsWithOptions(request, runtime);
12990
13506
  }
12991
13507
 
13508
+ /**
13509
+ * @summary Queries a list of application groups. You can call this operation only for the application groups that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
13510
+ *
13511
+ * @param request ListApplicationGroupsRequest
13512
+ * @param runtime runtime options for this request RuntimeOptions
13513
+ * @return ListApplicationGroupsResponse
13514
+ */
12992
13515
  async listApplicationGroupsWithOptions(request: ListApplicationGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationGroupsResponse> {
12993
13516
  Util.validateModel(request);
12994
13517
  let query = { };
@@ -13041,11 +13564,24 @@ export default class Client extends OpenApi {
13041
13564
  return $tea.cast<ListApplicationGroupsResponse>(await this.callApi(params, req, runtime), new ListApplicationGroupsResponse({}));
13042
13565
  }
13043
13566
 
13567
+ /**
13568
+ * @summary Queries a list of application groups. You can call this operation only for the application groups that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
13569
+ *
13570
+ * @param request ListApplicationGroupsRequest
13571
+ * @return ListApplicationGroupsResponse
13572
+ */
13044
13573
  async listApplicationGroups(request: ListApplicationGroupsRequest): Promise<ListApplicationGroupsResponse> {
13045
13574
  let runtime = new $Util.RuntimeOptions({ });
13046
13575
  return await this.listApplicationGroupsWithOptions(request, runtime);
13047
13576
  }
13048
13577
 
13578
+ /**
13579
+ * @summary Queries a list of applications. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
13580
+ *
13581
+ * @param tmpReq ListApplicationsRequest
13582
+ * @param runtime runtime options for this request RuntimeOptions
13583
+ * @return ListApplicationsResponse
13584
+ */
13049
13585
  async listApplicationsWithOptions(tmpReq: ListApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsResponse> {
13050
13586
  Util.validateModel(tmpReq);
13051
13587
  let request = new ListApplicationsShrinkRequest({ });
@@ -13100,17 +13636,25 @@ export default class Client extends OpenApi {
13100
13636
  return $tea.cast<ListApplicationsResponse>(await this.callApi(params, req, runtime), new ListApplicationsResponse({}));
13101
13637
  }
13102
13638
 
13639
+ /**
13640
+ * @summary Queries a list of applications. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
13641
+ *
13642
+ * @param request ListApplicationsRequest
13643
+ * @return ListApplicationsResponse
13644
+ */
13103
13645
  async listApplications(request: ListApplicationsRequest): Promise<ListApplicationsResponse> {
13104
13646
  let runtime = new $Util.RuntimeOptions({ });
13105
13647
  return await this.listApplicationsWithOptions(request, runtime);
13106
13648
  }
13107
13649
 
13108
13650
  /**
13109
- * ****
13110
- *
13111
- * @param request ListExecutionLogsRequest
13112
- * @param runtime runtime options for this request RuntimeOptions
13113
- * @return ListExecutionLogsResponse
13651
+ * @summary Queries the logs of an execution.
13652
+ *
13653
+ * @description ****
13654
+ *
13655
+ * @param request ListExecutionLogsRequest
13656
+ * @param runtime runtime options for this request RuntimeOptions
13657
+ * @return ListExecutionLogsResponse
13114
13658
  */
13115
13659
  async listExecutionLogsWithOptions(request: ListExecutionLogsRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutionLogsResponse> {
13116
13660
  Util.validateModel(request);
@@ -13157,16 +13701,25 @@ export default class Client extends OpenApi {
13157
13701
  }
13158
13702
 
13159
13703
  /**
13160
- * ****
13161
- *
13162
- * @param request ListExecutionLogsRequest
13163
- * @return ListExecutionLogsResponse
13704
+ * @summary Queries the logs of an execution.
13705
+ *
13706
+ * @description ****
13707
+ *
13708
+ * @param request ListExecutionLogsRequest
13709
+ * @return ListExecutionLogsResponse
13164
13710
  */
13165
13711
  async listExecutionLogs(request: ListExecutionLogsRequest): Promise<ListExecutionLogsResponse> {
13166
13712
  let runtime = new $Util.RuntimeOptions({ });
13167
13713
  return await this.listExecutionLogsWithOptions(request, runtime);
13168
13714
  }
13169
13715
 
13716
+ /**
13717
+ * @summary Queries high-risk tasks in the execution of a template.
13718
+ *
13719
+ * @param request ListExecutionRiskyTasksRequest
13720
+ * @param runtime runtime options for this request RuntimeOptions
13721
+ * @return ListExecutionRiskyTasksResponse
13722
+ */
13170
13723
  async listExecutionRiskyTasksWithOptions(request: ListExecutionRiskyTasksRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutionRiskyTasksResponse> {
13171
13724
  Util.validateModel(request);
13172
13725
  let query = { };
@@ -13195,11 +13748,24 @@ export default class Client extends OpenApi {
13195
13748
  return $tea.cast<ListExecutionRiskyTasksResponse>(await this.callApi(params, req, runtime), new ListExecutionRiskyTasksResponse({}));
13196
13749
  }
13197
13750
 
13751
+ /**
13752
+ * @summary Queries high-risk tasks in the execution of a template.
13753
+ *
13754
+ * @param request ListExecutionRiskyTasksRequest
13755
+ * @return ListExecutionRiskyTasksResponse
13756
+ */
13198
13757
  async listExecutionRiskyTasks(request: ListExecutionRiskyTasksRequest): Promise<ListExecutionRiskyTasksResponse> {
13199
13758
  let runtime = new $Util.RuntimeOptions({ });
13200
13759
  return await this.listExecutionRiskyTasksWithOptions(request, runtime);
13201
13760
  }
13202
13761
 
13762
+ /**
13763
+ * @summary Queries executions. Multiple methods are supported to filter executions.
13764
+ *
13765
+ * @param tmpReq ListExecutionsRequest
13766
+ * @param runtime runtime options for this request RuntimeOptions
13767
+ * @return ListExecutionsResponse
13768
+ */
13203
13769
  async listExecutionsWithOptions(tmpReq: ListExecutionsRequest, runtime: $Util.RuntimeOptions): Promise<ListExecutionsResponse> {
13204
13770
  Util.validateModel(tmpReq);
13205
13771
  let request = new ListExecutionsShrinkRequest({ });
@@ -13326,11 +13892,24 @@ export default class Client extends OpenApi {
13326
13892
  return $tea.cast<ListExecutionsResponse>(await this.callApi(params, req, runtime), new ListExecutionsResponse({}));
13327
13893
  }
13328
13894
 
13895
+ /**
13896
+ * @summary Queries executions. Multiple methods are supported to filter executions.
13897
+ *
13898
+ * @param request ListExecutionsRequest
13899
+ * @return ListExecutionsResponse
13900
+ */
13329
13901
  async listExecutions(request: ListExecutionsRequest): Promise<ListExecutionsResponse> {
13330
13902
  let runtime = new $Util.RuntimeOptions({ });
13331
13903
  return await this.listExecutionsWithOptions(request, runtime);
13332
13904
  }
13333
13905
 
13906
+ /**
13907
+ * @summary 获取仓库信息
13908
+ *
13909
+ * @param request ListGitRepositoriesRequest
13910
+ * @param runtime runtime options for this request RuntimeOptions
13911
+ * @return ListGitRepositoriesResponse
13912
+ */
13334
13913
  async listGitRepositoriesWithOptions(request: ListGitRepositoriesRequest, runtime: $Util.RuntimeOptions): Promise<ListGitRepositoriesResponse> {
13335
13914
  Util.validateModel(request);
13336
13915
  let query = { };
@@ -13358,6 +13937,10 @@ export default class Client extends OpenApi {
13358
13937
  query["Platform"] = request.platform;
13359
13938
  }
13360
13939
 
13940
+ if (!Util.isUnset(request.regionId)) {
13941
+ query["RegionId"] = request.regionId;
13942
+ }
13943
+
13361
13944
  let req = new $OpenApi.OpenApiRequest({
13362
13945
  query: OpenApiUtil.query(query),
13363
13946
  });
@@ -13375,11 +13958,24 @@ export default class Client extends OpenApi {
13375
13958
  return $tea.cast<ListGitRepositoriesResponse>(await this.callApi(params, req, runtime), new ListGitRepositoriesResponse({}));
13376
13959
  }
13377
13960
 
13961
+ /**
13962
+ * @summary 获取仓库信息
13963
+ *
13964
+ * @param request ListGitRepositoriesRequest
13965
+ * @return ListGitRepositoriesResponse
13966
+ */
13378
13967
  async listGitRepositories(request: ListGitRepositoriesRequest): Promise<ListGitRepositoriesResponse> {
13379
13968
  let runtime = new $Util.RuntimeOptions({ });
13380
13969
  return await this.listGitRepositoriesWithOptions(request, runtime);
13381
13970
  }
13382
13971
 
13972
+ /**
13973
+ * @summary Queries the information about the patches of an instance.
13974
+ *
13975
+ * @param request ListInstancePatchStatesRequest
13976
+ * @param runtime runtime options for this request RuntimeOptions
13977
+ * @return ListInstancePatchStatesResponse
13978
+ */
13383
13979
  async listInstancePatchStatesWithOptions(request: ListInstancePatchStatesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancePatchStatesResponse> {
13384
13980
  Util.validateModel(request);
13385
13981
  let query = { };
@@ -13416,11 +14012,24 @@ export default class Client extends OpenApi {
13416
14012
  return $tea.cast<ListInstancePatchStatesResponse>(await this.callApi(params, req, runtime), new ListInstancePatchStatesResponse({}));
13417
14013
  }
13418
14014
 
14015
+ /**
14016
+ * @summary Queries the information about the patches of an instance.
14017
+ *
14018
+ * @param request ListInstancePatchStatesRequest
14019
+ * @return ListInstancePatchStatesResponse
14020
+ */
13419
14021
  async listInstancePatchStates(request: ListInstancePatchStatesRequest): Promise<ListInstancePatchStatesResponse> {
13420
14022
  let runtime = new $Util.RuntimeOptions({ });
13421
14023
  return await this.listInstancePatchStatesWithOptions(request, runtime);
13422
14024
  }
13423
14025
 
14026
+ /**
14027
+ * @summary Queries the information about the patches of an instance.
14028
+ *
14029
+ * @param request ListInstancePatchesRequest
14030
+ * @param runtime runtime options for this request RuntimeOptions
14031
+ * @return ListInstancePatchesResponse
14032
+ */
13424
14033
  async listInstancePatchesWithOptions(request: ListInstancePatchesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancePatchesResponse> {
13425
14034
  Util.validateModel(request);
13426
14035
  let query = { };
@@ -13461,11 +14070,24 @@ export default class Client extends OpenApi {
13461
14070
  return $tea.cast<ListInstancePatchesResponse>(await this.callApi(params, req, runtime), new ListInstancePatchesResponse({}));
13462
14071
  }
13463
14072
 
14073
+ /**
14074
+ * @summary Queries the information about the patches of an instance.
14075
+ *
14076
+ * @param request ListInstancePatchesRequest
14077
+ * @return ListInstancePatchesResponse
14078
+ */
13464
14079
  async listInstancePatches(request: ListInstancePatchesRequest): Promise<ListInstancePatchesResponse> {
13465
14080
  let runtime = new $Util.RuntimeOptions({ });
13466
14081
  return await this.listInstancePatchesWithOptions(request, runtime);
13467
14082
  }
13468
14083
 
14084
+ /**
14085
+ * @summary Queries the configurations of an Elastic Compute Service (ECS) instance.
14086
+ *
14087
+ * @param request ListInventoryEntriesRequest
14088
+ * @param runtime runtime options for this request RuntimeOptions
14089
+ * @return ListInventoryEntriesResponse
14090
+ */
13469
14091
  async listInventoryEntriesWithOptions(request: ListInventoryEntriesRequest, runtime: $Util.RuntimeOptions): Promise<ListInventoryEntriesResponse> {
13470
14092
  Util.validateModel(request);
13471
14093
  let query = { };
@@ -13510,11 +14132,24 @@ export default class Client extends OpenApi {
13510
14132
  return $tea.cast<ListInventoryEntriesResponse>(await this.callApi(params, req, runtime), new ListInventoryEntriesResponse({}));
13511
14133
  }
13512
14134
 
14135
+ /**
14136
+ * @summary Queries the configurations of an Elastic Compute Service (ECS) instance.
14137
+ *
14138
+ * @param request ListInventoryEntriesRequest
14139
+ * @return ListInventoryEntriesResponse
14140
+ */
13513
14141
  async listInventoryEntries(request: ListInventoryEntriesRequest): Promise<ListInventoryEntriesResponse> {
13514
14142
  let runtime = new $Util.RuntimeOptions({ });
13515
14143
  return await this.listInventoryEntriesWithOptions(request, runtime);
13516
14144
  }
13517
14145
 
14146
+ /**
14147
+ * @summary Queries O\\&M items.
14148
+ *
14149
+ * @param tmpReq ListOpsItemsRequest
14150
+ * @param runtime runtime options for this request RuntimeOptions
14151
+ * @return ListOpsItemsResponse
14152
+ */
13518
14153
  async listOpsItemsWithOptions(tmpReq: ListOpsItemsRequest, runtime: $Util.RuntimeOptions): Promise<ListOpsItemsResponse> {
13519
14154
  Util.validateModel(tmpReq);
13520
14155
  let request = new ListOpsItemsShrinkRequest({ });
@@ -13569,11 +14204,24 @@ export default class Client extends OpenApi {
13569
14204
  return $tea.cast<ListOpsItemsResponse>(await this.callApi(params, req, runtime), new ListOpsItemsResponse({}));
13570
14205
  }
13571
14206
 
14207
+ /**
14208
+ * @summary Queries O\\&M items.
14209
+ *
14210
+ * @param request ListOpsItemsRequest
14211
+ * @return ListOpsItemsResponse
14212
+ */
13572
14213
  async listOpsItems(request: ListOpsItemsRequest): Promise<ListOpsItemsResponse> {
13573
14214
  let runtime = new $Util.RuntimeOptions({ });
13574
14215
  return await this.listOpsItemsWithOptions(request, runtime);
13575
14216
  }
13576
14217
 
14218
+ /**
14219
+ * @summary Queries the versions of a common parameter.
14220
+ *
14221
+ * @param request ListParameterVersionsRequest
14222
+ * @param runtime runtime options for this request RuntimeOptions
14223
+ * @return ListParameterVersionsResponse
14224
+ */
13577
14225
  async listParameterVersionsWithOptions(request: ListParameterVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListParameterVersionsResponse> {
13578
14226
  Util.validateModel(request);
13579
14227
  let query = { };
@@ -13614,11 +14262,24 @@ export default class Client extends OpenApi {
13614
14262
  return $tea.cast<ListParameterVersionsResponse>(await this.callApi(params, req, runtime), new ListParameterVersionsResponse({}));
13615
14263
  }
13616
14264
 
14265
+ /**
14266
+ * @summary Queries the versions of a common parameter.
14267
+ *
14268
+ * @param request ListParameterVersionsRequest
14269
+ * @return ListParameterVersionsResponse
14270
+ */
13617
14271
  async listParameterVersions(request: ListParameterVersionsRequest): Promise<ListParameterVersionsResponse> {
13618
14272
  let runtime = new $Util.RuntimeOptions({ });
13619
14273
  return await this.listParameterVersionsWithOptions(request, runtime);
13620
14274
  }
13621
14275
 
14276
+ /**
14277
+ * @summary Queries common parameters. Multiple methods are supported to filter common parameters.
14278
+ *
14279
+ * @param tmpReq ListParametersRequest
14280
+ * @param runtime runtime options for this request RuntimeOptions
14281
+ * @return ListParametersResponse
14282
+ */
13622
14283
  async listParametersWithOptions(tmpReq: ListParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListParametersResponse> {
13623
14284
  Util.validateModel(tmpReq);
13624
14285
  let request = new ListParametersShrinkRequest({ });
@@ -13693,11 +14354,24 @@ export default class Client extends OpenApi {
13693
14354
  return $tea.cast<ListParametersResponse>(await this.callApi(params, req, runtime), new ListParametersResponse({}));
13694
14355
  }
13695
14356
 
14357
+ /**
14358
+ * @summary Queries common parameters. Multiple methods are supported to filter common parameters.
14359
+ *
14360
+ * @param request ListParametersRequest
14361
+ * @return ListParametersResponse
14362
+ */
13696
14363
  async listParameters(request: ListParametersRequest): Promise<ListParametersResponse> {
13697
14364
  let runtime = new $Util.RuntimeOptions({ });
13698
14365
  return await this.listParametersWithOptions(request, runtime);
13699
14366
  }
13700
14367
 
14368
+ /**
14369
+ * @summary Queries a list of patch baselines.
14370
+ *
14371
+ * @param tmpReq ListPatchBaselinesRequest
14372
+ * @param runtime runtime options for this request RuntimeOptions
14373
+ * @return ListPatchBaselinesResponse
14374
+ */
13701
14375
  async listPatchBaselinesWithOptions(tmpReq: ListPatchBaselinesRequest, runtime: $Util.RuntimeOptions): Promise<ListPatchBaselinesResponse> {
13702
14376
  Util.validateModel(tmpReq);
13703
14377
  let request = new ListPatchBaselinesShrinkRequest({ });
@@ -13776,11 +14450,24 @@ export default class Client extends OpenApi {
13776
14450
  return $tea.cast<ListPatchBaselinesResponse>(await this.callApi(params, req, runtime), new ListPatchBaselinesResponse({}));
13777
14451
  }
13778
14452
 
14453
+ /**
14454
+ * @summary Queries a list of patch baselines.
14455
+ *
14456
+ * @param request ListPatchBaselinesRequest
14457
+ * @return ListPatchBaselinesResponse
14458
+ */
13779
14459
  async listPatchBaselines(request: ListPatchBaselinesRequest): Promise<ListPatchBaselinesResponse> {
13780
14460
  let runtime = new $Util.RuntimeOptions({ });
13781
14461
  return await this.listPatchBaselinesWithOptions(request, runtime);
13782
14462
  }
13783
14463
 
14464
+ /**
14465
+ * @summary Queries the information about a scheduled execution that involves O&M operations on Elastic Compute Service (ECS) instances.
14466
+ *
14467
+ * @param request ListResourceExecutionStatusRequest
14468
+ * @param runtime runtime options for this request RuntimeOptions
14469
+ * @return ListResourceExecutionStatusResponse
14470
+ */
13784
14471
  async listResourceExecutionStatusWithOptions(request: ListResourceExecutionStatusRequest, runtime: $Util.RuntimeOptions): Promise<ListResourceExecutionStatusResponse> {
13785
14472
  Util.validateModel(request);
13786
14473
  let query = { };
@@ -13817,11 +14504,24 @@ export default class Client extends OpenApi {
13817
14504
  return $tea.cast<ListResourceExecutionStatusResponse>(await this.callApi(params, req, runtime), new ListResourceExecutionStatusResponse({}));
13818
14505
  }
13819
14506
 
14507
+ /**
14508
+ * @summary Queries the information about a scheduled execution that involves O&M operations on Elastic Compute Service (ECS) instances.
14509
+ *
14510
+ * @param request ListResourceExecutionStatusRequest
14511
+ * @return ListResourceExecutionStatusResponse
14512
+ */
13820
14513
  async listResourceExecutionStatus(request: ListResourceExecutionStatusRequest): Promise<ListResourceExecutionStatusResponse> {
13821
14514
  let runtime = new $Util.RuntimeOptions({ });
13822
14515
  return await this.listResourceExecutionStatusWithOptions(request, runtime);
13823
14516
  }
13824
14517
 
14518
+ /**
14519
+ * @summary Queries versions of an encryption parameter.
14520
+ *
14521
+ * @param request ListSecretParameterVersionsRequest
14522
+ * @param runtime runtime options for this request RuntimeOptions
14523
+ * @return ListSecretParameterVersionsResponse
14524
+ */
13825
14525
  async listSecretParameterVersionsWithOptions(request: ListSecretParameterVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListSecretParameterVersionsResponse> {
13826
14526
  Util.validateModel(request);
13827
14527
  let query = { };
@@ -13866,17 +14566,25 @@ export default class Client extends OpenApi {
13866
14566
  return $tea.cast<ListSecretParameterVersionsResponse>(await this.callApi(params, req, runtime), new ListSecretParameterVersionsResponse({}));
13867
14567
  }
13868
14568
 
14569
+ /**
14570
+ * @summary Queries versions of an encryption parameter.
14571
+ *
14572
+ * @param request ListSecretParameterVersionsRequest
14573
+ * @return ListSecretParameterVersionsResponse
14574
+ */
13869
14575
  async listSecretParameterVersions(request: ListSecretParameterVersionsRequest): Promise<ListSecretParameterVersionsResponse> {
13870
14576
  let runtime = new $Util.RuntimeOptions({ });
13871
14577
  return await this.listSecretParameterVersionsWithOptions(request, runtime);
13872
14578
  }
13873
14579
 
13874
14580
  /**
13875
- * Before you call this operation, make sure that you have the permission to manage Key Management Service (KMS) secrets.
13876
- *
13877
- * @param tmpReq ListSecretParametersRequest
13878
- * @param runtime runtime options for this request RuntimeOptions
13879
- * @return ListSecretParametersResponse
14581
+ * @summary Queries common parameters. Multiple types of queries are supported.
14582
+ *
14583
+ * @description Before you call this operation, make sure that you have the permission to manage Key Management Service (KMS) secrets.
14584
+ *
14585
+ * @param tmpReq ListSecretParametersRequest
14586
+ * @param runtime runtime options for this request RuntimeOptions
14587
+ * @return ListSecretParametersResponse
13880
14588
  */
13881
14589
  async listSecretParametersWithOptions(tmpReq: ListSecretParametersRequest, runtime: $Util.RuntimeOptions): Promise<ListSecretParametersResponse> {
13882
14590
  Util.validateModel(tmpReq);
@@ -13945,16 +14653,25 @@ export default class Client extends OpenApi {
13945
14653
  }
13946
14654
 
13947
14655
  /**
13948
- * Before you call this operation, make sure that you have the permission to manage Key Management Service (KMS) secrets.
13949
- *
13950
- * @param request ListSecretParametersRequest
13951
- * @return ListSecretParametersResponse
14656
+ * @summary Queries common parameters. Multiple types of queries are supported.
14657
+ *
14658
+ * @description Before you call this operation, make sure that you have the permission to manage Key Management Service (KMS) secrets.
14659
+ *
14660
+ * @param request ListSecretParametersRequest
14661
+ * @return ListSecretParametersResponse
13952
14662
  */
13953
14663
  async listSecretParameters(request: ListSecretParametersRequest): Promise<ListSecretParametersResponse> {
13954
14664
  let runtime = new $Util.RuntimeOptions({ });
13955
14665
  return await this.listSecretParametersWithOptions(request, runtime);
13956
14666
  }
13957
14667
 
14668
+ /**
14669
+ * @summary Queries desired-state configurations.
14670
+ *
14671
+ * @param tmpReq ListStateConfigurationsRequest
14672
+ * @param runtime runtime options for this request RuntimeOptions
14673
+ * @return ListStateConfigurationsResponse
14674
+ */
13958
14675
  async listStateConfigurationsWithOptions(tmpReq: ListStateConfigurationsRequest, runtime: $Util.RuntimeOptions): Promise<ListStateConfigurationsResponse> {
13959
14676
  Util.validateModel(tmpReq);
13960
14677
  let request = new ListStateConfigurationsShrinkRequest({ });
@@ -14013,11 +14730,24 @@ export default class Client extends OpenApi {
14013
14730
  return $tea.cast<ListStateConfigurationsResponse>(await this.callApi(params, req, runtime), new ListStateConfigurationsResponse({}));
14014
14731
  }
14015
14732
 
14733
+ /**
14734
+ * @summary Queries desired-state configurations.
14735
+ *
14736
+ * @param request ListStateConfigurationsRequest
14737
+ * @return ListStateConfigurationsResponse
14738
+ */
14016
14739
  async listStateConfigurations(request: ListStateConfigurationsRequest): Promise<ListStateConfigurationsResponse> {
14017
14740
  let runtime = new $Util.RuntimeOptions({ });
14018
14741
  return await this.listStateConfigurationsWithOptions(request, runtime);
14019
14742
  }
14020
14743
 
14744
+ /**
14745
+ * @summary Queries the tags.
14746
+ *
14747
+ * @param request ListTagKeysRequest
14748
+ * @param runtime runtime options for this request RuntimeOptions
14749
+ * @return ListTagKeysResponse
14750
+ */
14021
14751
  async listTagKeysWithOptions(request: ListTagKeysRequest, runtime: $Util.RuntimeOptions): Promise<ListTagKeysResponse> {
14022
14752
  Util.validateModel(request);
14023
14753
  let query = { };
@@ -14054,11 +14784,24 @@ export default class Client extends OpenApi {
14054
14784
  return $tea.cast<ListTagKeysResponse>(await this.callApi(params, req, runtime), new ListTagKeysResponse({}));
14055
14785
  }
14056
14786
 
14787
+ /**
14788
+ * @summary Queries the tags.
14789
+ *
14790
+ * @param request ListTagKeysRequest
14791
+ * @return ListTagKeysResponse
14792
+ */
14057
14793
  async listTagKeys(request: ListTagKeysRequest): Promise<ListTagKeysResponse> {
14058
14794
  let runtime = new $Util.RuntimeOptions({ });
14059
14795
  return await this.listTagKeysWithOptions(request, runtime);
14060
14796
  }
14061
14797
 
14798
+ /**
14799
+ * @summary Queries the tags that are added to one or more resources.
14800
+ *
14801
+ * @param tmpReq ListTagResourcesRequest
14802
+ * @param runtime runtime options for this request RuntimeOptions
14803
+ * @return ListTagResourcesResponse
14804
+ */
14062
14805
  async listTagResourcesWithOptions(tmpReq: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse> {
14063
14806
  Util.validateModel(tmpReq);
14064
14807
  let request = new ListTagResourcesShrinkRequest({ });
@@ -14109,11 +14852,24 @@ export default class Client extends OpenApi {
14109
14852
  return $tea.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
14110
14853
  }
14111
14854
 
14855
+ /**
14856
+ * @summary Queries the tags that are added to one or more resources.
14857
+ *
14858
+ * @param request ListTagResourcesRequest
14859
+ * @return ListTagResourcesResponse
14860
+ */
14112
14861
  async listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse> {
14113
14862
  let runtime = new $Util.RuntimeOptions({ });
14114
14863
  return await this.listTagResourcesWithOptions(request, runtime);
14115
14864
  }
14116
14865
 
14866
+ /**
14867
+ * @summary Queries the values of created tags.
14868
+ *
14869
+ * @param request ListTagValuesRequest
14870
+ * @param runtime runtime options for this request RuntimeOptions
14871
+ * @return ListTagValuesResponse
14872
+ */
14117
14873
  async listTagValuesWithOptions(request: ListTagValuesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagValuesResponse> {
14118
14874
  Util.validateModel(request);
14119
14875
  let query = { };
@@ -14154,11 +14910,24 @@ export default class Client extends OpenApi {
14154
14910
  return $tea.cast<ListTagValuesResponse>(await this.callApi(params, req, runtime), new ListTagValuesResponse({}));
14155
14911
  }
14156
14912
 
14913
+ /**
14914
+ * @summary Queries the values of created tags.
14915
+ *
14916
+ * @param request ListTagValuesRequest
14917
+ * @return ListTagValuesResponse
14918
+ */
14157
14919
  async listTagValues(request: ListTagValuesRequest): Promise<ListTagValuesResponse> {
14158
14920
  let runtime = new $Util.RuntimeOptions({ });
14159
14921
  return await this.listTagValuesWithOptions(request, runtime);
14160
14922
  }
14161
14923
 
14924
+ /**
14925
+ * @summary Queries task executions. Multiple methods are supported to filter task executions.
14926
+ *
14927
+ * @param request ListTaskExecutionsRequest
14928
+ * @param runtime runtime options for this request RuntimeOptions
14929
+ * @return ListTaskExecutionsResponse
14930
+ */
14162
14931
  async listTaskExecutionsWithOptions(request: ListTaskExecutionsRequest, runtime: $Util.RuntimeOptions): Promise<ListTaskExecutionsResponse> {
14163
14932
  Util.validateModel(request);
14164
14933
  let query = { };
@@ -14243,11 +15012,24 @@ export default class Client extends OpenApi {
14243
15012
  return $tea.cast<ListTaskExecutionsResponse>(await this.callApi(params, req, runtime), new ListTaskExecutionsResponse({}));
14244
15013
  }
14245
15014
 
15015
+ /**
15016
+ * @summary Queries task executions. Multiple methods are supported to filter task executions.
15017
+ *
15018
+ * @param request ListTaskExecutionsRequest
15019
+ * @return ListTaskExecutionsResponse
15020
+ */
14246
15021
  async listTaskExecutions(request: ListTaskExecutionsRequest): Promise<ListTaskExecutionsResponse> {
14247
15022
  let runtime = new $Util.RuntimeOptions({ });
14248
15023
  return await this.listTaskExecutionsWithOptions(request, runtime);
14249
15024
  }
14250
15025
 
15026
+ /**
15027
+ * @summary Queries a list of versions of a template.
15028
+ *
15029
+ * @param request ListTemplateVersionsRequest
15030
+ * @param runtime runtime options for this request RuntimeOptions
15031
+ * @return ListTemplateVersionsResponse
15032
+ */
14251
15033
  async listTemplateVersionsWithOptions(request: ListTemplateVersionsRequest, runtime: $Util.RuntimeOptions): Promise<ListTemplateVersionsResponse> {
14252
15034
  Util.validateModel(request);
14253
15035
  let query = { };
@@ -14288,11 +15070,24 @@ export default class Client extends OpenApi {
14288
15070
  return $tea.cast<ListTemplateVersionsResponse>(await this.callApi(params, req, runtime), new ListTemplateVersionsResponse({}));
14289
15071
  }
14290
15072
 
15073
+ /**
15074
+ * @summary Queries a list of versions of a template.
15075
+ *
15076
+ * @param request ListTemplateVersionsRequest
15077
+ * @return ListTemplateVersionsResponse
15078
+ */
14291
15079
  async listTemplateVersions(request: ListTemplateVersionsRequest): Promise<ListTemplateVersionsResponse> {
14292
15080
  let runtime = new $Util.RuntimeOptions({ });
14293
15081
  return await this.listTemplateVersionsWithOptions(request, runtime);
14294
15082
  }
14295
15083
 
15084
+ /**
15085
+ * @summary Queries templates. Multiple methods are supported to filter templates.
15086
+ *
15087
+ * @param tmpReq ListTemplatesRequest
15088
+ * @param runtime runtime options for this request RuntimeOptions
15089
+ * @return ListTemplatesResponse
15090
+ */
14296
15091
  async listTemplatesWithOptions(tmpReq: ListTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<ListTemplatesResponse> {
14297
15092
  Util.validateModel(tmpReq);
14298
15093
  let request = new ListTemplatesShrinkRequest({ });
@@ -14322,6 +15117,10 @@ export default class Client extends OpenApi {
14322
15117
  query["HasTrigger"] = request.hasTrigger;
14323
15118
  }
14324
15119
 
15120
+ if (!Util.isUnset(request.isExample)) {
15121
+ query["IsExample"] = request.isExample;
15122
+ }
15123
+
14325
15124
  if (!Util.isUnset(request.isFavorite)) {
14326
15125
  query["IsFavorite"] = request.isFavorite;
14327
15126
  }
@@ -14387,20 +15186,28 @@ export default class Client extends OpenApi {
14387
15186
  return $tea.cast<ListTemplatesResponse>(await this.callApi(params, req, runtime), new ListTemplatesResponse({}));
14388
15187
  }
14389
15188
 
15189
+ /**
15190
+ * @summary Queries templates. Multiple methods are supported to filter templates.
15191
+ *
15192
+ * @param request ListTemplatesRequest
15193
+ * @return ListTemplatesResponse
15194
+ */
14390
15195
  async listTemplates(request: ListTemplatesRequest): Promise<ListTemplatesResponse> {
14391
15196
  let runtime = new $Util.RuntimeOptions({ });
14392
15197
  return await this.listTemplatesWithOptions(request, runtime);
14393
15198
  }
14394
15199
 
14395
15200
  /**
14396
- * You can call this operation to notify an execution in the following scenarios:
14397
- * * If a template contains a special task, such as an approval task, the Operation Orchestration Service (OOS) execution engine sets the execution state to Waiting when the approval task is being run. You can call this operation to specify whether to continue the execution.
14398
- * * If you perform debugging in the debug mode, you can call this operation to notify the execution of the subsequent operations after the execution is created or a task is complete.
14399
- * * If a high-risk operation task waits for approval, you can call this operation to specify whether to continue the execution.
14400
- *
14401
- * @param request NotifyExecutionRequest
14402
- * @param runtime runtime options for this request RuntimeOptions
14403
- * @return NotifyExecutionResponse
15201
+ * @summary Notifies an execution in the Waiting state of the subsequent operations.
15202
+ *
15203
+ * @description You can call this operation to notify an execution in the following scenarios:
15204
+ * * If a template contains a special task, such as an approval task, the Operation Orchestration Service (OOS) execution engine sets the execution state to Waiting when the approval task is being run. You can call this operation to specify whether to continue the execution.
15205
+ * * If you perform debugging in the debug mode, you can call this operation to notify the execution of the subsequent operations after the execution is created or a task is complete.
15206
+ * * If a high-risk operation task waits for approval, you can call this operation to specify whether to continue the execution.
15207
+ *
15208
+ * @param request NotifyExecutionRequest
15209
+ * @param runtime runtime options for this request RuntimeOptions
15210
+ * @return NotifyExecutionResponse
14404
15211
  */
14405
15212
  async notifyExecutionWithOptions(request: NotifyExecutionRequest, runtime: $Util.RuntimeOptions): Promise<NotifyExecutionResponse> {
14406
15213
  Util.validateModel(request);
@@ -14463,19 +15270,28 @@ export default class Client extends OpenApi {
14463
15270
  }
14464
15271
 
14465
15272
  /**
14466
- * You can call this operation to notify an execution in the following scenarios:
14467
- * * If a template contains a special task, such as an approval task, the Operation Orchestration Service (OOS) execution engine sets the execution state to Waiting when the approval task is being run. You can call this operation to specify whether to continue the execution.
14468
- * * If you perform debugging in the debug mode, you can call this operation to notify the execution of the subsequent operations after the execution is created or a task is complete.
14469
- * * If a high-risk operation task waits for approval, you can call this operation to specify whether to continue the execution.
14470
- *
14471
- * @param request NotifyExecutionRequest
14472
- * @return NotifyExecutionResponse
15273
+ * @summary Notifies an execution in the Waiting state of the subsequent operations.
15274
+ *
15275
+ * @description You can call this operation to notify an execution in the following scenarios:
15276
+ * * If a template contains a special task, such as an approval task, the Operation Orchestration Service (OOS) execution engine sets the execution state to Waiting when the approval task is being run. You can call this operation to specify whether to continue the execution.
15277
+ * * If you perform debugging in the debug mode, you can call this operation to notify the execution of the subsequent operations after the execution is created or a task is complete.
15278
+ * * If a high-risk operation task waits for approval, you can call this operation to specify whether to continue the execution.
15279
+ *
15280
+ * @param request NotifyExecutionRequest
15281
+ * @return NotifyExecutionResponse
14473
15282
  */
14474
15283
  async notifyExecution(request: NotifyExecutionRequest): Promise<NotifyExecutionResponse> {
14475
15284
  let runtime = new $Util.RuntimeOptions({ });
14476
15285
  return await this.notifyExecutionWithOptions(request, runtime);
14477
15286
  }
14478
15287
 
15288
+ /**
15289
+ * @summary Registers the default patch baseline.
15290
+ *
15291
+ * @param request RegisterDefaultPatchBaselineRequest
15292
+ * @param runtime runtime options for this request RuntimeOptions
15293
+ * @return RegisterDefaultPatchBaselineResponse
15294
+ */
14479
15295
  async registerDefaultPatchBaselineWithOptions(request: RegisterDefaultPatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<RegisterDefaultPatchBaselineResponse> {
14480
15296
  Util.validateModel(request);
14481
15297
  let query = { };
@@ -14504,11 +15320,24 @@ export default class Client extends OpenApi {
14504
15320
  return $tea.cast<RegisterDefaultPatchBaselineResponse>(await this.callApi(params, req, runtime), new RegisterDefaultPatchBaselineResponse({}));
14505
15321
  }
14506
15322
 
15323
+ /**
15324
+ * @summary Registers the default patch baseline.
15325
+ *
15326
+ * @param request RegisterDefaultPatchBaselineRequest
15327
+ * @return RegisterDefaultPatchBaselineResponse
15328
+ */
14507
15329
  async registerDefaultPatchBaseline(request: RegisterDefaultPatchBaselineRequest): Promise<RegisterDefaultPatchBaselineResponse> {
14508
15330
  let runtime = new $Util.RuntimeOptions({ });
14509
15331
  return await this.registerDefaultPatchBaselineWithOptions(request, runtime);
14510
15332
  }
14511
15333
 
15334
+ /**
15335
+ * @summary Queries the details or aggregate information of a configuration inventory.
15336
+ *
15337
+ * @param request SearchInventoryRequest
15338
+ * @param runtime runtime options for this request RuntimeOptions
15339
+ * @return SearchInventoryResponse
15340
+ */
14512
15341
  async searchInventoryWithOptions(request: SearchInventoryRequest, runtime: $Util.RuntimeOptions): Promise<SearchInventoryResponse> {
14513
15342
  Util.validateModel(request);
14514
15343
  let query = { };
@@ -14549,11 +15378,24 @@ export default class Client extends OpenApi {
14549
15378
  return $tea.cast<SearchInventoryResponse>(await this.callApi(params, req, runtime), new SearchInventoryResponse({}));
14550
15379
  }
14551
15380
 
15381
+ /**
15382
+ * @summary Queries the details or aggregate information of a configuration inventory.
15383
+ *
15384
+ * @param request SearchInventoryRequest
15385
+ * @return SearchInventoryResponse
15386
+ */
14552
15387
  async searchInventory(request: SearchInventoryRequest): Promise<SearchInventoryResponse> {
14553
15388
  let runtime = new $Util.RuntimeOptions({ });
14554
15389
  return await this.searchInventoryWithOptions(request, runtime);
14555
15390
  }
14556
15391
 
15392
+ /**
15393
+ * @summary Enables or disables the feature of delivering template execution records and sets the storage location.
15394
+ *
15395
+ * @param request SetServiceSettingsRequest
15396
+ * @param runtime runtime options for this request RuntimeOptions
15397
+ * @return SetServiceSettingsResponse
15398
+ */
14557
15399
  async setServiceSettingsWithOptions(request: SetServiceSettingsRequest, runtime: $Util.RuntimeOptions): Promise<SetServiceSettingsResponse> {
14558
15400
  Util.validateModel(request);
14559
15401
  let query = { };
@@ -14602,11 +15444,24 @@ export default class Client extends OpenApi {
14602
15444
  return $tea.cast<SetServiceSettingsResponse>(await this.callApi(params, req, runtime), new SetServiceSettingsResponse({}));
14603
15445
  }
14604
15446
 
15447
+ /**
15448
+ * @summary Enables or disables the feature of delivering template execution records and sets the storage location.
15449
+ *
15450
+ * @param request SetServiceSettingsRequest
15451
+ * @return SetServiceSettingsResponse
15452
+ */
14605
15453
  async setServiceSettings(request: SetServiceSettingsRequest): Promise<SetServiceSettingsResponse> {
14606
15454
  let runtime = new $Util.RuntimeOptions({ });
14607
15455
  return await this.setServiceSettingsWithOptions(request, runtime);
14608
15456
  }
14609
15457
 
15458
+ /**
15459
+ * @summary Starts an execution.
15460
+ *
15461
+ * @param tmpReq StartExecutionRequest
15462
+ * @param runtime runtime options for this request RuntimeOptions
15463
+ * @return StartExecutionResponse
15464
+ */
14610
15465
  async startExecutionWithOptions(tmpReq: StartExecutionRequest, runtime: $Util.RuntimeOptions): Promise<StartExecutionResponse> {
14611
15466
  Util.validateModel(tmpReq);
14612
15467
  let request = new StartExecutionShrinkRequest({ });
@@ -14689,11 +15544,24 @@ export default class Client extends OpenApi {
14689
15544
  return $tea.cast<StartExecutionResponse>(await this.callApi(params, req, runtime), new StartExecutionResponse({}));
14690
15545
  }
14691
15546
 
15547
+ /**
15548
+ * @summary Starts an execution.
15549
+ *
15550
+ * @param request StartExecutionRequest
15551
+ * @return StartExecutionResponse
15552
+ */
14692
15553
  async startExecution(request: StartExecutionRequest): Promise<StartExecutionResponse> {
14693
15554
  let runtime = new $Util.RuntimeOptions({ });
14694
15555
  return await this.startExecutionWithOptions(request, runtime);
14695
15556
  }
14696
15557
 
15558
+ /**
15559
+ * @summary Adds tags to one or more resources.
15560
+ *
15561
+ * @param tmpReq TagResourcesRequest
15562
+ * @param runtime runtime options for this request RuntimeOptions
15563
+ * @return TagResourcesResponse
15564
+ */
14697
15565
  async tagResourcesWithOptions(tmpReq: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse> {
14698
15566
  Util.validateModel(tmpReq);
14699
15567
  let request = new TagResourcesShrinkRequest({ });
@@ -14740,11 +15608,24 @@ export default class Client extends OpenApi {
14740
15608
  return $tea.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
14741
15609
  }
14742
15610
 
15611
+ /**
15612
+ * @summary Adds tags to one or more resources.
15613
+ *
15614
+ * @param request TagResourcesRequest
15615
+ * @return TagResourcesResponse
15616
+ */
14743
15617
  async tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse> {
14744
15618
  let runtime = new $Util.RuntimeOptions({ });
14745
15619
  return await this.tagResourcesWithOptions(request, runtime);
14746
15620
  }
14747
15621
 
15622
+ /**
15623
+ * @summary Debugs a started execution that contains an event trigger task or alert trigger task. If the operation is called, a message body is sent to the event trigger task or alert trigger task. After the trigger task receives the message body, the trigger task generates a new child execution.
15624
+ *
15625
+ * @param request TriggerExecutionRequest
15626
+ * @param runtime runtime options for this request RuntimeOptions
15627
+ * @return TriggerExecutionResponse
15628
+ */
14748
15629
  async triggerExecutionWithOptions(request: TriggerExecutionRequest, runtime: $Util.RuntimeOptions): Promise<TriggerExecutionResponse> {
14749
15630
  Util.validateModel(request);
14750
15631
  let query = { };
@@ -14785,11 +15666,24 @@ export default class Client extends OpenApi {
14785
15666
  return $tea.cast<TriggerExecutionResponse>(await this.callApi(params, req, runtime), new TriggerExecutionResponse({}));
14786
15667
  }
14787
15668
 
15669
+ /**
15670
+ * @summary Debugs a started execution that contains an event trigger task or alert trigger task. If the operation is called, a message body is sent to the event trigger task or alert trigger task. After the trigger task receives the message body, the trigger task generates a new child execution.
15671
+ *
15672
+ * @param request TriggerExecutionRequest
15673
+ * @return TriggerExecutionResponse
15674
+ */
14788
15675
  async triggerExecution(request: TriggerExecutionRequest): Promise<TriggerExecutionResponse> {
14789
15676
  let runtime = new $Util.RuntimeOptions({ });
14790
15677
  return await this.triggerExecutionWithOptions(request, runtime);
14791
15678
  }
14792
15679
 
15680
+ /**
15681
+ * @summary Removes tags from one or more resources.
15682
+ *
15683
+ * @param tmpReq UntagResourcesRequest
15684
+ * @param runtime runtime options for this request RuntimeOptions
15685
+ * @return UntagResourcesResponse
15686
+ */
14793
15687
  async untagResourcesWithOptions(tmpReq: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse> {
14794
15688
  Util.validateModel(tmpReq);
14795
15689
  let request = new UntagResourcesShrinkRequest({ });
@@ -14840,11 +15734,24 @@ export default class Client extends OpenApi {
14840
15734
  return $tea.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
14841
15735
  }
14842
15736
 
15737
+ /**
15738
+ * @summary Removes tags from one or more resources.
15739
+ *
15740
+ * @param request UntagResourcesRequest
15741
+ * @return UntagResourcesResponse
15742
+ */
14843
15743
  async untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse> {
14844
15744
  let runtime = new $Util.RuntimeOptions({ });
14845
15745
  return await this.untagResourcesWithOptions(request, runtime);
14846
15746
  }
14847
15747
 
15748
+ /**
15749
+ * @summary Updates an application. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
15750
+ *
15751
+ * @param tmpReq UpdateApplicationRequest
15752
+ * @param runtime runtime options for this request RuntimeOptions
15753
+ * @return UpdateApplicationResponse
15754
+ */
14848
15755
  async updateApplicationWithOptions(tmpReq: UpdateApplicationRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationResponse> {
14849
15756
  Util.validateModel(tmpReq);
14850
15757
  let request = new UpdateApplicationShrinkRequest({ });
@@ -14899,11 +15806,24 @@ export default class Client extends OpenApi {
14899
15806
  return $tea.cast<UpdateApplicationResponse>(await this.callApi(params, req, runtime), new UpdateApplicationResponse({}));
14900
15807
  }
14901
15808
 
15809
+ /**
15810
+ * @summary Updates an application. You can call this operation only for the applications that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
15811
+ *
15812
+ * @param request UpdateApplicationRequest
15813
+ * @return UpdateApplicationResponse
15814
+ */
14902
15815
  async updateApplication(request: UpdateApplicationRequest): Promise<UpdateApplicationResponse> {
14903
15816
  let runtime = new $Util.RuntimeOptions({ });
14904
15817
  return await this.updateApplicationWithOptions(request, runtime);
14905
15818
  }
14906
15819
 
15820
+ /**
15821
+ * @summary Updates the information of an application group. You can call this operation only for the application groups that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
15822
+ *
15823
+ * @param request UpdateApplicationGroupRequest
15824
+ * @param runtime runtime options for this request RuntimeOptions
15825
+ * @return UpdateApplicationGroupResponse
15826
+ */
14907
15827
  async updateApplicationGroupWithOptions(request: UpdateApplicationGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationGroupResponse> {
14908
15828
  Util.validateModel(request);
14909
15829
  let query = { };
@@ -14940,11 +15860,24 @@ export default class Client extends OpenApi {
14940
15860
  return $tea.cast<UpdateApplicationGroupResponse>(await this.callApi(params, req, runtime), new UpdateApplicationGroupResponse({}));
14941
15861
  }
14942
15862
 
15863
+ /**
15864
+ * @summary Updates the information of an application group. You can call this operation only for the application groups that reside in the China (Hangzhou) region. Use an endpoint of the China (Hangzhou) region.
15865
+ *
15866
+ * @param request UpdateApplicationGroupRequest
15867
+ * @return UpdateApplicationGroupResponse
15868
+ */
14943
15869
  async updateApplicationGroup(request: UpdateApplicationGroupRequest): Promise<UpdateApplicationGroupResponse> {
14944
15870
  let runtime = new $Util.RuntimeOptions({ });
14945
15871
  return await this.updateApplicationGroupWithOptions(request, runtime);
14946
15872
  }
14947
15873
 
15874
+ /**
15875
+ * @summary Updates an execution.
15876
+ *
15877
+ * @param request UpdateExecutionRequest
15878
+ * @param runtime runtime options for this request RuntimeOptions
15879
+ * @return UpdateExecutionResponse
15880
+ */
14948
15881
  async updateExecutionWithOptions(request: UpdateExecutionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateExecutionResponse> {
14949
15882
  Util.validateModel(request);
14950
15883
  let query = { };
@@ -14993,11 +15926,24 @@ export default class Client extends OpenApi {
14993
15926
  return $tea.cast<UpdateExecutionResponse>(await this.callApi(params, req, runtime), new UpdateExecutionResponse({}));
14994
15927
  }
14995
15928
 
15929
+ /**
15930
+ * @summary Updates an execution.
15931
+ *
15932
+ * @param request UpdateExecutionRequest
15933
+ * @return UpdateExecutionResponse
15934
+ */
14996
15935
  async updateExecution(request: UpdateExecutionRequest): Promise<UpdateExecutionResponse> {
14997
15936
  let runtime = new $Util.RuntimeOptions({ });
14998
15937
  return await this.updateExecutionWithOptions(request, runtime);
14999
15938
  }
15000
15939
 
15940
+ /**
15941
+ * @summary Modifies an O\\\\\\\\\\\\&M item.
15942
+ *
15943
+ * @param tmpReq UpdateOpsItemRequest
15944
+ * @param runtime runtime options for this request RuntimeOptions
15945
+ * @return UpdateOpsItemResponse
15946
+ */
15001
15947
  async updateOpsItemWithOptions(tmpReq: UpdateOpsItemRequest, runtime: $Util.RuntimeOptions): Promise<UpdateOpsItemResponse> {
15002
15948
  Util.validateModel(tmpReq);
15003
15949
  let request = new UpdateOpsItemShrinkRequest({ });
@@ -15084,11 +16030,24 @@ export default class Client extends OpenApi {
15084
16030
  return $tea.cast<UpdateOpsItemResponse>(await this.callApi(params, req, runtime), new UpdateOpsItemResponse({}));
15085
16031
  }
15086
16032
 
16033
+ /**
16034
+ * @summary Modifies an O\\\\\\\\\\\\&M item.
16035
+ *
16036
+ * @param request UpdateOpsItemRequest
16037
+ * @return UpdateOpsItemResponse
16038
+ */
15087
16039
  async updateOpsItem(request: UpdateOpsItemRequest): Promise<UpdateOpsItemResponse> {
15088
16040
  let runtime = new $Util.RuntimeOptions({ });
15089
16041
  return await this.updateOpsItemWithOptions(request, runtime);
15090
16042
  }
15091
16043
 
16044
+ /**
16045
+ * @summary Updates a common parameter.
16046
+ *
16047
+ * @param request UpdateParameterRequest
16048
+ * @param runtime runtime options for this request RuntimeOptions
16049
+ * @return UpdateParameterResponse
16050
+ */
15092
16051
  async updateParameterWithOptions(request: UpdateParameterRequest, runtime: $Util.RuntimeOptions): Promise<UpdateParameterResponse> {
15093
16052
  Util.validateModel(request);
15094
16053
  let query = { };
@@ -15133,11 +16092,24 @@ export default class Client extends OpenApi {
15133
16092
  return $tea.cast<UpdateParameterResponse>(await this.callApi(params, req, runtime), new UpdateParameterResponse({}));
15134
16093
  }
15135
16094
 
16095
+ /**
16096
+ * @summary Updates a common parameter.
16097
+ *
16098
+ * @param request UpdateParameterRequest
16099
+ * @return UpdateParameterResponse
16100
+ */
15136
16101
  async updateParameter(request: UpdateParameterRequest): Promise<UpdateParameterResponse> {
15137
16102
  let runtime = new $Util.RuntimeOptions({ });
15138
16103
  return await this.updateParameterWithOptions(request, runtime);
15139
16104
  }
15140
16105
 
16106
+ /**
16107
+ * @summary Updates a patch baseline.
16108
+ *
16109
+ * @param tmpReq UpdatePatchBaselineRequest
16110
+ * @param runtime runtime options for this request RuntimeOptions
16111
+ * @return UpdatePatchBaselineResponse
16112
+ */
15141
16113
  async updatePatchBaselineWithOptions(tmpReq: UpdatePatchBaselineRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePatchBaselineResponse> {
15142
16114
  Util.validateModel(tmpReq);
15143
16115
  let request = new UpdatePatchBaselineShrinkRequest({ });
@@ -15224,11 +16196,24 @@ export default class Client extends OpenApi {
15224
16196
  return $tea.cast<UpdatePatchBaselineResponse>(await this.callApi(params, req, runtime), new UpdatePatchBaselineResponse({}));
15225
16197
  }
15226
16198
 
16199
+ /**
16200
+ * @summary Updates a patch baseline.
16201
+ *
16202
+ * @param request UpdatePatchBaselineRequest
16203
+ * @return UpdatePatchBaselineResponse
16204
+ */
15227
16205
  async updatePatchBaseline(request: UpdatePatchBaselineRequest): Promise<UpdatePatchBaselineResponse> {
15228
16206
  let runtime = new $Util.RuntimeOptions({ });
15229
16207
  return await this.updatePatchBaselineWithOptions(request, runtime);
15230
16208
  }
15231
16209
 
16210
+ /**
16211
+ * @summary Updates an encryption parameter.
16212
+ *
16213
+ * @param tmpReq UpdateSecretParameterRequest
16214
+ * @param runtime runtime options for this request RuntimeOptions
16215
+ * @return UpdateSecretParameterResponse
16216
+ */
15232
16217
  async updateSecretParameterWithOptions(tmpReq: UpdateSecretParameterRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSecretParameterResponse> {
15233
16218
  Util.validateModel(tmpReq);
15234
16219
  let request = new UpdateSecretParameterShrinkRequest({ });
@@ -15279,11 +16264,24 @@ export default class Client extends OpenApi {
15279
16264
  return $tea.cast<UpdateSecretParameterResponse>(await this.callApi(params, req, runtime), new UpdateSecretParameterResponse({}));
15280
16265
  }
15281
16266
 
16267
+ /**
16268
+ * @summary Updates an encryption parameter.
16269
+ *
16270
+ * @param request UpdateSecretParameterRequest
16271
+ * @return UpdateSecretParameterResponse
16272
+ */
15282
16273
  async updateSecretParameter(request: UpdateSecretParameterRequest): Promise<UpdateSecretParameterResponse> {
15283
16274
  let runtime = new $Util.RuntimeOptions({ });
15284
16275
  return await this.updateSecretParameterWithOptions(request, runtime);
15285
16276
  }
15286
16277
 
16278
+ /**
16279
+ * @summary Updates a desired-state configuration.
16280
+ *
16281
+ * @param tmpReq UpdateStateConfigurationRequest
16282
+ * @param runtime runtime options for this request RuntimeOptions
16283
+ * @return UpdateStateConfigurationResponse
16284
+ */
15287
16285
  async updateStateConfigurationWithOptions(tmpReq: UpdateStateConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<UpdateStateConfigurationResponse> {
15288
16286
  Util.validateModel(tmpReq);
15289
16287
  let request = new UpdateStateConfigurationShrinkRequest({ });
@@ -15358,11 +16356,24 @@ export default class Client extends OpenApi {
15358
16356
  return $tea.cast<UpdateStateConfigurationResponse>(await this.callApi(params, req, runtime), new UpdateStateConfigurationResponse({}));
15359
16357
  }
15360
16358
 
16359
+ /**
16360
+ * @summary Updates a desired-state configuration.
16361
+ *
16362
+ * @param request UpdateStateConfigurationRequest
16363
+ * @return UpdateStateConfigurationResponse
16364
+ */
15361
16365
  async updateStateConfiguration(request: UpdateStateConfigurationRequest): Promise<UpdateStateConfigurationResponse> {
15362
16366
  let runtime = new $Util.RuntimeOptions({ });
15363
16367
  return await this.updateStateConfigurationWithOptions(request, runtime);
15364
16368
  }
15365
16369
 
16370
+ /**
16371
+ * @summary Updates the information about an existing template.
16372
+ *
16373
+ * @param tmpReq UpdateTemplateRequest
16374
+ * @param runtime runtime options for this request RuntimeOptions
16375
+ * @return UpdateTemplateResponse
16376
+ */
15366
16377
  async updateTemplateWithOptions(tmpReq: UpdateTemplateRequest, runtime: $Util.RuntimeOptions): Promise<UpdateTemplateResponse> {
15367
16378
  Util.validateModel(tmpReq);
15368
16379
  let request = new UpdateTemplateShrinkRequest({ });
@@ -15413,11 +16424,24 @@ export default class Client extends OpenApi {
15413
16424
  return $tea.cast<UpdateTemplateResponse>(await this.callApi(params, req, runtime), new UpdateTemplateResponse({}));
15414
16425
  }
15415
16426
 
16427
+ /**
16428
+ * @summary Updates the information about an existing template.
16429
+ *
16430
+ * @param request UpdateTemplateRequest
16431
+ * @return UpdateTemplateResponse
16432
+ */
15416
16433
  async updateTemplate(request: UpdateTemplateRequest): Promise<UpdateTemplateResponse> {
15417
16434
  let runtime = new $Util.RuntimeOptions({ });
15418
16435
  return await this.updateTemplateWithOptions(request, runtime);
15419
16436
  }
15420
16437
 
16438
+ /**
16439
+ * @summary Check whether a template is valid.
16440
+ *
16441
+ * @param request ValidateTemplateContentRequest
16442
+ * @param runtime runtime options for this request RuntimeOptions
16443
+ * @return ValidateTemplateContentResponse
16444
+ */
15421
16445
  async validateTemplateContentWithOptions(request: ValidateTemplateContentRequest, runtime: $Util.RuntimeOptions): Promise<ValidateTemplateContentResponse> {
15422
16446
  Util.validateModel(request);
15423
16447
  let query = { };
@@ -15450,6 +16474,12 @@ export default class Client extends OpenApi {
15450
16474
  return $tea.cast<ValidateTemplateContentResponse>(await this.callApi(params, req, runtime), new ValidateTemplateContentResponse({}));
15451
16475
  }
15452
16476
 
16477
+ /**
16478
+ * @summary Check whether a template is valid.
16479
+ *
16480
+ * @param request ValidateTemplateContentRequest
16481
+ * @return ValidateTemplateContentResponse
16482
+ */
15453
16483
  async validateTemplateContent(request: ValidateTemplateContentRequest): Promise<ValidateTemplateContentResponse> {
15454
16484
  let runtime = new $Util.RuntimeOptions({ });
15455
16485
  return await this.validateTemplateContentWithOptions(request, runtime);