@alicloud/sae20190506 1.23.1 → 1.23.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
@@ -1934,6 +1934,37 @@ export class PathConfig extends $tea.Model {
1934
1934
  }
1935
1935
  }
1936
1936
 
1937
+ export class PermissionAssistantApi extends $tea.Model {
1938
+ createTime?: string;
1939
+ id?: number;
1940
+ name?: string;
1941
+ resourceType?: string;
1942
+ updateTime?: string;
1943
+ static names(): { [key: string]: string } {
1944
+ return {
1945
+ createTime: 'createTime',
1946
+ id: 'id',
1947
+ name: 'name',
1948
+ resourceType: 'resourceType',
1949
+ updateTime: 'updateTime',
1950
+ };
1951
+ }
1952
+
1953
+ static types(): { [key: string]: any } {
1954
+ return {
1955
+ createTime: 'string',
1956
+ id: 'number',
1957
+ name: 'string',
1958
+ resourceType: 'string',
1959
+ updateTime: 'string',
1960
+ };
1961
+ }
1962
+
1963
+ constructor(map?: { [key: string]: any }) {
1964
+ super(map);
1965
+ }
1966
+ }
1967
+
1937
1968
  export class PolicyItem extends $tea.Model {
1938
1969
  key?: string;
1939
1970
  operator?: string;
@@ -2325,6 +2356,34 @@ export class StaticsInfo extends $tea.Model {
2325
2356
  }
2326
2357
  }
2327
2358
 
2359
+ export class Submenu extends $tea.Model {
2360
+ items?: SubmenuItems[];
2361
+ submenuDesc?: string;
2362
+ submenuType?: string;
2363
+ submenus?: Submenu[];
2364
+ static names(): { [key: string]: string } {
2365
+ return {
2366
+ items: 'Items',
2367
+ submenuDesc: 'SubmenuDesc',
2368
+ submenuType: 'SubmenuType',
2369
+ submenus: 'Submenus',
2370
+ };
2371
+ }
2372
+
2373
+ static types(): { [key: string]: any } {
2374
+ return {
2375
+ items: { 'type': 'array', 'itemType': SubmenuItems },
2376
+ submenuDesc: 'string',
2377
+ submenuType: 'string',
2378
+ submenus: { 'type': 'array', 'itemType': Submenu },
2379
+ };
2380
+ }
2381
+
2382
+ constructor(map?: { [key: string]: any }) {
2383
+ super(map);
2384
+ }
2385
+ }
2386
+
2328
2387
  export class TLSConfig extends $tea.Model {
2329
2388
  cipherSuites?: string[];
2330
2389
  maxVersion?: string;
@@ -5401,6 +5460,8 @@ export class DeployApplicationResponse extends $tea.Model {
5401
5460
 
5402
5461
  export class DescribeAppServiceDetailRequest extends $tea.Model {
5403
5462
  appId?: string;
5463
+ nacosInstanceId?: string;
5464
+ nacosNamespaceId?: string;
5404
5465
  serviceGroup?: string;
5405
5466
  serviceName?: string;
5406
5467
  serviceType?: string;
@@ -5408,6 +5469,8 @@ export class DescribeAppServiceDetailRequest extends $tea.Model {
5408
5469
  static names(): { [key: string]: string } {
5409
5470
  return {
5410
5471
  appId: 'AppId',
5472
+ nacosInstanceId: 'NacosInstanceId',
5473
+ nacosNamespaceId: 'NacosNamespaceId',
5411
5474
  serviceGroup: 'ServiceGroup',
5412
5475
  serviceName: 'ServiceName',
5413
5476
  serviceType: 'ServiceType',
@@ -5418,6 +5481,8 @@ export class DescribeAppServiceDetailRequest extends $tea.Model {
5418
5481
  static types(): { [key: string]: any } {
5419
5482
  return {
5420
5483
  appId: 'string',
5484
+ nacosInstanceId: 'string',
5485
+ nacosNamespaceId: 'string',
5421
5486
  serviceGroup: 'string',
5422
5487
  serviceName: 'string',
5423
5488
  serviceType: 'string',
@@ -12839,6 +12904,34 @@ export class SourceCodeAccountOrganizations extends $tea.Model {
12839
12904
  }
12840
12905
  }
12841
12906
 
12907
+ export class SubmenuItems extends $tea.Model {
12908
+ defaultSelected?: boolean;
12909
+ itemDesc?: string;
12910
+ itemType?: string;
12911
+ relatingItems?: string[];
12912
+ static names(): { [key: string]: string } {
12913
+ return {
12914
+ defaultSelected: 'DefaultSelected',
12915
+ itemDesc: 'ItemDesc',
12916
+ itemType: 'ItemType',
12917
+ relatingItems: 'RelatingItems',
12918
+ };
12919
+ }
12920
+
12921
+ static types(): { [key: string]: any } {
12922
+ return {
12923
+ defaultSelected: 'boolean',
12924
+ itemDesc: 'string',
12925
+ itemType: 'string',
12926
+ relatingItems: { 'type': 'array', 'itemType': 'string' },
12927
+ };
12928
+ }
12929
+
12930
+ constructor(map?: { [key: string]: any }) {
12931
+ super(map);
12932
+ }
12933
+ }
12934
+
12842
12935
  export class AbortAndRollbackChangeOrderResponseBodyData extends $tea.Model {
12843
12936
  changeOrderId?: string;
12844
12937
  static names(): { [key: string]: string } {
@@ -13482,6 +13575,9 @@ export class DescribeAppServiceDetailResponseBodyData extends $tea.Model {
13482
13575
  metadata?: { [key: string]: any };
13483
13576
  methods?: DescribeAppServiceDetailResponseBodyDataMethods[];
13484
13577
  serviceName?: string;
13578
+ servicePorts?: number[];
13579
+ serviceProtocol?: string;
13580
+ serviceTags?: string[];
13485
13581
  serviceType?: string;
13486
13582
  springApplicationName?: string;
13487
13583
  version?: string;
@@ -13493,6 +13589,9 @@ export class DescribeAppServiceDetailResponseBodyData extends $tea.Model {
13493
13589
  metadata: 'Metadata',
13494
13590
  methods: 'Methods',
13495
13591
  serviceName: 'ServiceName',
13592
+ servicePorts: 'ServicePorts',
13593
+ serviceProtocol: 'ServiceProtocol',
13594
+ serviceTags: 'ServiceTags',
13496
13595
  serviceType: 'ServiceType',
13497
13596
  springApplicationName: 'SpringApplicationName',
13498
13597
  version: 'Version',
@@ -13507,6 +13606,9 @@ export class DescribeAppServiceDetailResponseBodyData extends $tea.Model {
13507
13606
  metadata: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
13508
13607
  methods: { 'type': 'array', 'itemType': DescribeAppServiceDetailResponseBodyDataMethods },
13509
13608
  serviceName: 'string',
13609
+ servicePorts: { 'type': 'array', 'itemType': 'number' },
13610
+ serviceProtocol: 'string',
13611
+ serviceTags: { 'type': 'array', 'itemType': 'string' },
13510
13612
  serviceType: 'string',
13511
13613
  springApplicationName: 'string',
13512
13614
  version: 'string',
@@ -18619,6 +18721,14 @@ export default class Client extends OpenApi {
18619
18721
  return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
18620
18722
  }
18621
18723
 
18724
+ /**
18725
+ * @summary ba386059-69b1-4e65-b1e5-0682d9fa\\*\\*\\*\\*
18726
+ *
18727
+ * @param request AbortAndRollbackChangeOrderRequest
18728
+ * @param headers map
18729
+ * @param runtime runtime options for this request RuntimeOptions
18730
+ * @return AbortAndRollbackChangeOrderResponse
18731
+ */
18622
18732
  async abortAndRollbackChangeOrderWithOptions(request: AbortAndRollbackChangeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<AbortAndRollbackChangeOrderResponse> {
18623
18733
  Util.validateModel(request);
18624
18734
  let query : {[key: string ]: any} = { };
@@ -18644,12 +18754,24 @@ export default class Client extends OpenApi {
18644
18754
  return $tea.cast<AbortAndRollbackChangeOrderResponse>(await this.callApi(params, req, runtime), new AbortAndRollbackChangeOrderResponse({}));
18645
18755
  }
18646
18756
 
18757
+ /**
18758
+ * @summary ba386059-69b1-4e65-b1e5-0682d9fa\\*\\*\\*\\*
18759
+ *
18760
+ * @param request AbortAndRollbackChangeOrderRequest
18761
+ * @return AbortAndRollbackChangeOrderResponse
18762
+ */
18647
18763
  async abortAndRollbackChangeOrder(request: AbortAndRollbackChangeOrderRequest): Promise<AbortAndRollbackChangeOrderResponse> {
18648
18764
  let runtime = new $Util.RuntimeOptions({ });
18649
18765
  let headers : {[key: string ]: string} = { };
18650
18766
  return await this.abortAndRollbackChangeOrderWithOptions(request, headers, runtime);
18651
18767
  }
18652
18768
 
18769
+ /**
18770
+ * @param request AbortChangeOrderRequest
18771
+ * @param headers map
18772
+ * @param runtime runtime options for this request RuntimeOptions
18773
+ * @return AbortChangeOrderResponse
18774
+ */
18653
18775
  async abortChangeOrderWithOptions(request: AbortChangeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<AbortChangeOrderResponse> {
18654
18776
  Util.validateModel(request);
18655
18777
  let query : {[key: string ]: any} = { };
@@ -18675,12 +18797,24 @@ export default class Client extends OpenApi {
18675
18797
  return $tea.cast<AbortChangeOrderResponse>(await this.callApi(params, req, runtime), new AbortChangeOrderResponse({}));
18676
18798
  }
18677
18799
 
18800
+ /**
18801
+ * @param request AbortChangeOrderRequest
18802
+ * @return AbortChangeOrderResponse
18803
+ */
18678
18804
  async abortChangeOrder(request: AbortChangeOrderRequest): Promise<AbortChangeOrderResponse> {
18679
18805
  let runtime = new $Util.RuntimeOptions({ });
18680
18806
  let headers : {[key: string ]: string} = { };
18681
18807
  return await this.abortChangeOrderWithOptions(request, headers, runtime);
18682
18808
  }
18683
18809
 
18810
+ /**
18811
+ * @summary cn-shanghai
18812
+ *
18813
+ * @param request BatchStartApplicationsRequest
18814
+ * @param headers map
18815
+ * @param runtime runtime options for this request RuntimeOptions
18816
+ * @return BatchStartApplicationsResponse
18817
+ */
18684
18818
  async batchStartApplicationsWithOptions(request: BatchStartApplicationsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchStartApplicationsResponse> {
18685
18819
  Util.validateModel(request);
18686
18820
  let query : {[key: string ]: any} = { };
@@ -18714,12 +18848,24 @@ export default class Client extends OpenApi {
18714
18848
  return $tea.cast<BatchStartApplicationsResponse>(await this.callApi(params, req, runtime), new BatchStartApplicationsResponse({}));
18715
18849
  }
18716
18850
 
18851
+ /**
18852
+ * @summary cn-shanghai
18853
+ *
18854
+ * @param request BatchStartApplicationsRequest
18855
+ * @return BatchStartApplicationsResponse
18856
+ */
18717
18857
  async batchStartApplications(request: BatchStartApplicationsRequest): Promise<BatchStartApplicationsResponse> {
18718
18858
  let runtime = new $Util.RuntimeOptions({ });
18719
18859
  let headers : {[key: string ]: string} = { };
18720
18860
  return await this.batchStartApplicationsWithOptions(request, headers, runtime);
18721
18861
  }
18722
18862
 
18863
+ /**
18864
+ * @param request BatchStopApplicationsRequest
18865
+ * @param headers map
18866
+ * @param runtime runtime options for this request RuntimeOptions
18867
+ * @return BatchStopApplicationsResponse
18868
+ */
18723
18869
  async batchStopApplicationsWithOptions(request: BatchStopApplicationsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BatchStopApplicationsResponse> {
18724
18870
  Util.validateModel(request);
18725
18871
  let query : {[key: string ]: any} = { };
@@ -18753,12 +18899,22 @@ export default class Client extends OpenApi {
18753
18899
  return $tea.cast<BatchStopApplicationsResponse>(await this.callApi(params, req, runtime), new BatchStopApplicationsResponse({}));
18754
18900
  }
18755
18901
 
18902
+ /**
18903
+ * @param request BatchStopApplicationsRequest
18904
+ * @return BatchStopApplicationsResponse
18905
+ */
18756
18906
  async batchStopApplications(request: BatchStopApplicationsRequest): Promise<BatchStopApplicationsResponse> {
18757
18907
  let runtime = new $Util.RuntimeOptions({ });
18758
18908
  let headers : {[key: string ]: string} = { };
18759
18909
  return await this.batchStopApplicationsWithOptions(request, headers, runtime);
18760
18910
  }
18761
18911
 
18912
+ /**
18913
+ * @param request BindSlbRequest
18914
+ * @param headers map
18915
+ * @param runtime runtime options for this request RuntimeOptions
18916
+ * @return BindSlbResponse
18917
+ */
18762
18918
  async bindSlbWithOptions(request: BindSlbRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BindSlbResponse> {
18763
18919
  Util.validateModel(request);
18764
18920
  let query : {[key: string ]: any} = { };
@@ -18800,12 +18956,22 @@ export default class Client extends OpenApi {
18800
18956
  return $tea.cast<BindSlbResponse>(await this.callApi(params, req, runtime), new BindSlbResponse({}));
18801
18957
  }
18802
18958
 
18959
+ /**
18960
+ * @param request BindSlbRequest
18961
+ * @return BindSlbResponse
18962
+ */
18803
18963
  async bindSlb(request: BindSlbRequest): Promise<BindSlbResponse> {
18804
18964
  let runtime = new $Util.RuntimeOptions({ });
18805
18965
  let headers : {[key: string ]: string} = { };
18806
18966
  return await this.bindSlbWithOptions(request, headers, runtime);
18807
18967
  }
18808
18968
 
18969
+ /**
18970
+ * @param request ConfirmPipelineBatchRequest
18971
+ * @param headers map
18972
+ * @param runtime runtime options for this request RuntimeOptions
18973
+ * @return ConfirmPipelineBatchResponse
18974
+ */
18809
18975
  async confirmPipelineBatchWithOptions(request: ConfirmPipelineBatchRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ConfirmPipelineBatchResponse> {
18810
18976
  Util.validateModel(request);
18811
18977
  let query : {[key: string ]: any} = { };
@@ -18835,12 +19001,22 @@ export default class Client extends OpenApi {
18835
19001
  return $tea.cast<ConfirmPipelineBatchResponse>(await this.callApi(params, req, runtime), new ConfirmPipelineBatchResponse({}));
18836
19002
  }
18837
19003
 
19004
+ /**
19005
+ * @param request ConfirmPipelineBatchRequest
19006
+ * @return ConfirmPipelineBatchResponse
19007
+ */
18838
19008
  async confirmPipelineBatch(request: ConfirmPipelineBatchRequest): Promise<ConfirmPipelineBatchResponse> {
18839
19009
  let runtime = new $Util.RuntimeOptions({ });
18840
19010
  let headers : {[key: string ]: string} = { };
18841
19011
  return await this.confirmPipelineBatchWithOptions(request, headers, runtime);
18842
19012
  }
18843
19013
 
19014
+ /**
19015
+ * @param request CreateApplicationRequest
19016
+ * @param headers map
19017
+ * @param runtime runtime options for this request RuntimeOptions
19018
+ * @return CreateApplicationResponse
19019
+ */
18844
19020
  async createApplicationWithOptions(request: CreateApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateApplicationResponse> {
18845
19021
  Util.validateModel(request);
18846
19022
  let query : {[key: string ]: any} = { };
@@ -19096,6 +19272,10 @@ export default class Client extends OpenApi {
19096
19272
  return $tea.cast<CreateApplicationResponse>(await this.callApi(params, req, runtime), new CreateApplicationResponse({}));
19097
19273
  }
19098
19274
 
19275
+ /**
19276
+ * @param request CreateApplicationRequest
19277
+ * @return CreateApplicationResponse
19278
+ */
19099
19279
  async createApplication(request: CreateApplicationRequest): Promise<CreateApplicationResponse> {
19100
19280
  let runtime = new $Util.RuntimeOptions({ });
19101
19281
  let headers : {[key: string ]: string} = { };
@@ -19103,16 +19283,18 @@ export default class Client extends OpenApi {
19103
19283
  }
19104
19284
 
19105
19285
  /**
19106
- * The HTTP status code. Take note of the following rules:
19107
- * * **2xx**: The call was successful.
19108
- * * **3xx**: The call was redirected.
19109
- * * **4xx**: The call failed.
19110
- * * **5xx**: A server error occurred.
19111
- *
19112
- * @param request CreateApplicationScalingRuleRequest
19113
- * @param headers map
19114
- * @param runtime runtime options for this request RuntimeOptions
19115
- * @return CreateApplicationScalingRuleResponse
19286
+ * @summary Null
19287
+ *
19288
+ * @description The HTTP status code. Take note of the following rules:
19289
+ * * **2xx**: The call was successful.
19290
+ * * **3xx**: The call was redirected.
19291
+ * * **4xx**: The call failed.
19292
+ * * **5xx**: A server error occurred.
19293
+ *
19294
+ * @param request CreateApplicationScalingRuleRequest
19295
+ * @param headers map
19296
+ * @param runtime runtime options for this request RuntimeOptions
19297
+ * @return CreateApplicationScalingRuleResponse
19116
19298
  */
19117
19299
  async createApplicationScalingRuleWithOptions(request: CreateApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateApplicationScalingRuleResponse> {
19118
19300
  Util.validateModel(request);
@@ -19168,14 +19350,16 @@ export default class Client extends OpenApi {
19168
19350
  }
19169
19351
 
19170
19352
  /**
19171
- * The HTTP status code. Take note of the following rules:
19172
- * * **2xx**: The call was successful.
19173
- * * **3xx**: The call was redirected.
19174
- * * **4xx**: The call failed.
19175
- * * **5xx**: A server error occurred.
19176
- *
19177
- * @param request CreateApplicationScalingRuleRequest
19178
- * @return CreateApplicationScalingRuleResponse
19353
+ * @summary Null
19354
+ *
19355
+ * @description The HTTP status code. Take note of the following rules:
19356
+ * * **2xx**: The call was successful.
19357
+ * * **3xx**: The call was redirected.
19358
+ * * **4xx**: The call failed.
19359
+ * * **5xx**: A server error occurred.
19360
+ *
19361
+ * @param request CreateApplicationScalingRuleRequest
19362
+ * @return CreateApplicationScalingRuleResponse
19179
19363
  */
19180
19364
  async createApplicationScalingRule(request: CreateApplicationScalingRuleRequest): Promise<CreateApplicationScalingRuleResponse> {
19181
19365
  let runtime = new $Util.RuntimeOptions({ });
@@ -19183,6 +19367,14 @@ export default class Client extends OpenApi {
19183
19367
  return await this.createApplicationScalingRuleWithOptions(request, headers, runtime);
19184
19368
  }
19185
19369
 
19370
+ /**
19371
+ * @summary name
19372
+ *
19373
+ * @param request CreateConfigMapRequest
19374
+ * @param headers map
19375
+ * @param runtime runtime options for this request RuntimeOptions
19376
+ * @return CreateConfigMapResponse
19377
+ */
19186
19378
  async createConfigMapWithOptions(request: CreateConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateConfigMapResponse> {
19187
19379
  Util.validateModel(request);
19188
19380
  let query : {[key: string ]: any} = { };
@@ -19222,6 +19414,12 @@ export default class Client extends OpenApi {
19222
19414
  return $tea.cast<CreateConfigMapResponse>(await this.callApi(params, req, runtime), new CreateConfigMapResponse({}));
19223
19415
  }
19224
19416
 
19417
+ /**
19418
+ * @summary name
19419
+ *
19420
+ * @param request CreateConfigMapRequest
19421
+ * @return CreateConfigMapResponse
19422
+ */
19225
19423
  async createConfigMap(request: CreateConfigMapRequest): Promise<CreateConfigMapResponse> {
19226
19424
  let runtime = new $Util.RuntimeOptions({ });
19227
19425
  let headers : {[key: string ]: string} = { };
@@ -19229,12 +19427,14 @@ export default class Client extends OpenApi {
19229
19427
  }
19230
19428
 
19231
19429
  /**
19232
- * > You can configure only one canary release rule for each application.
19233
- *
19234
- * @param request CreateGreyTagRouteRequest
19235
- * @param headers map
19236
- * @param runtime runtime options for this request RuntimeOptions
19237
- * @return CreateGreyTagRouteResponse
19430
+ * @summary Creates a canary release rule for a Spring Cloud or Dubbo application.
19431
+ *
19432
+ * @description > You can configure only one canary release rule for each application.
19433
+ *
19434
+ * @param request CreateGreyTagRouteRequest
19435
+ * @param headers map
19436
+ * @param runtime runtime options for this request RuntimeOptions
19437
+ * @return CreateGreyTagRouteResponse
19238
19438
  */
19239
19439
  async createGreyTagRouteWithOptions(request: CreateGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateGreyTagRouteResponse> {
19240
19440
  Util.validateModel(request);
@@ -19282,10 +19482,12 @@ export default class Client extends OpenApi {
19282
19482
  }
19283
19483
 
19284
19484
  /**
19285
- * > You can configure only one canary release rule for each application.
19286
- *
19287
- * @param request CreateGreyTagRouteRequest
19288
- * @return CreateGreyTagRouteResponse
19485
+ * @summary Creates a canary release rule for a Spring Cloud or Dubbo application.
19486
+ *
19487
+ * @description > You can configure only one canary release rule for each application.
19488
+ *
19489
+ * @param request CreateGreyTagRouteRequest
19490
+ * @return CreateGreyTagRouteResponse
19289
19491
  */
19290
19492
  async createGreyTagRoute(request: CreateGreyTagRouteRequest): Promise<CreateGreyTagRouteResponse> {
19291
19493
  let runtime = new $Util.RuntimeOptions({ });
@@ -19293,6 +19495,14 @@ export default class Client extends OpenApi {
19293
19495
  return await this.createGreyTagRouteWithOptions(request, headers, runtime);
19294
19496
  }
19295
19497
 
19498
+ /**
19499
+ * @summary {"appId":"395b60e4-0550-458d-9c54-a265d036\\*\\*\\*\\*","containerPort":8080}
19500
+ *
19501
+ * @param request CreateIngressRequest
19502
+ * @param headers map
19503
+ * @param runtime runtime options for this request RuntimeOptions
19504
+ * @return CreateIngressResponse
19505
+ */
19296
19506
  async createIngressWithOptions(request: CreateIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateIngressResponse> {
19297
19507
  Util.validateModel(request);
19298
19508
  let query : {[key: string ]: any} = { };
@@ -19356,12 +19566,26 @@ export default class Client extends OpenApi {
19356
19566
  return $tea.cast<CreateIngressResponse>(await this.callApi(params, req, runtime), new CreateIngressResponse({}));
19357
19567
  }
19358
19568
 
19569
+ /**
19570
+ * @summary {"appId":"395b60e4-0550-458d-9c54-a265d036\\*\\*\\*\\*","containerPort":8080}
19571
+ *
19572
+ * @param request CreateIngressRequest
19573
+ * @return CreateIngressResponse
19574
+ */
19359
19575
  async createIngress(request: CreateIngressRequest): Promise<CreateIngressResponse> {
19360
19576
  let runtime = new $Util.RuntimeOptions({ });
19361
19577
  let headers : {[key: string ]: string} = { };
19362
19578
  return await this.createIngressWithOptions(request, headers, runtime);
19363
19579
  }
19364
19580
 
19581
+ /**
19582
+ * @summary Updates a job template.
19583
+ *
19584
+ * @param request CreateJobRequest
19585
+ * @param headers map
19586
+ * @param runtime runtime options for this request RuntimeOptions
19587
+ * @return CreateJobResponse
19588
+ */
19365
19589
  async createJobWithOptions(request: CreateJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateJobResponse> {
19366
19590
  Util.validateModel(request);
19367
19591
  let query : {[key: string ]: any} = { };
@@ -19601,12 +19825,26 @@ export default class Client extends OpenApi {
19601
19825
  return $tea.cast<CreateJobResponse>(await this.callApi(params, req, runtime), new CreateJobResponse({}));
19602
19826
  }
19603
19827
 
19828
+ /**
19829
+ * @summary Updates a job template.
19830
+ *
19831
+ * @param request CreateJobRequest
19832
+ * @return CreateJobResponse
19833
+ */
19604
19834
  async createJob(request: CreateJobRequest): Promise<CreateJobResponse> {
19605
19835
  let runtime = new $Util.RuntimeOptions({ });
19606
19836
  let headers : {[key: string ]: string} = { };
19607
19837
  return await this.createJobWithOptions(request, headers, runtime);
19608
19838
  }
19609
19839
 
19840
+ /**
19841
+ * @summary desc
19842
+ *
19843
+ * @param request CreateNamespaceRequest
19844
+ * @param headers map
19845
+ * @param runtime runtime options for this request RuntimeOptions
19846
+ * @return CreateNamespaceResponse
19847
+ */
19610
19848
  async createNamespaceWithOptions(request: CreateNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateNamespaceResponse> {
19611
19849
  Util.validateModel(request);
19612
19850
  let query : {[key: string ]: any} = { };
@@ -19648,12 +19886,26 @@ export default class Client extends OpenApi {
19648
19886
  return $tea.cast<CreateNamespaceResponse>(await this.callApi(params, req, runtime), new CreateNamespaceResponse({}));
19649
19887
  }
19650
19888
 
19889
+ /**
19890
+ * @summary desc
19891
+ *
19892
+ * @param request CreateNamespaceRequest
19893
+ * @return CreateNamespaceResponse
19894
+ */
19651
19895
  async createNamespace(request: CreateNamespaceRequest): Promise<CreateNamespaceResponse> {
19652
19896
  let runtime = new $Util.RuntimeOptions({ });
19653
19897
  let headers : {[key: string ]: string} = { };
19654
19898
  return await this.createNamespaceWithOptions(request, headers, runtime);
19655
19899
  }
19656
19900
 
19901
+ /**
19902
+ * @summary Null
19903
+ *
19904
+ * @param tmpReq CreateSecretRequest
19905
+ * @param headers map
19906
+ * @param runtime runtime options for this request RuntimeOptions
19907
+ * @return CreateSecretResponse
19908
+ */
19657
19909
  async createSecretWithOptions(tmpReq: CreateSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateSecretResponse> {
19658
19910
  Util.validateModel(tmpReq);
19659
19911
  let request = new CreateSecretShrinkRequest({ });
@@ -19697,12 +19949,24 @@ export default class Client extends OpenApi {
19697
19949
  return $tea.cast<CreateSecretResponse>(await this.callApi(params, req, runtime), new CreateSecretResponse({}));
19698
19950
  }
19699
19951
 
19952
+ /**
19953
+ * @summary Null
19954
+ *
19955
+ * @param request CreateSecretRequest
19956
+ * @return CreateSecretResponse
19957
+ */
19700
19958
  async createSecret(request: CreateSecretRequest): Promise<CreateSecretResponse> {
19701
19959
  let runtime = new $Util.RuntimeOptions({ });
19702
19960
  let headers : {[key: string ]: string} = { };
19703
19961
  return await this.createSecretWithOptions(request, headers, runtime);
19704
19962
  }
19705
19963
 
19964
+ /**
19965
+ * @param request DeleteApplicationRequest
19966
+ * @param headers map
19967
+ * @param runtime runtime options for this request RuntimeOptions
19968
+ * @return DeleteApplicationResponse
19969
+ */
19706
19970
  async deleteApplicationWithOptions(request: DeleteApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationResponse> {
19707
19971
  Util.validateModel(request);
19708
19972
  let query : {[key: string ]: any} = { };
@@ -19728,12 +19992,24 @@ export default class Client extends OpenApi {
19728
19992
  return $tea.cast<DeleteApplicationResponse>(await this.callApi(params, req, runtime), new DeleteApplicationResponse({}));
19729
19993
  }
19730
19994
 
19995
+ /**
19996
+ * @param request DeleteApplicationRequest
19997
+ * @return DeleteApplicationResponse
19998
+ */
19731
19999
  async deleteApplication(request: DeleteApplicationRequest): Promise<DeleteApplicationResponse> {
19732
20000
  let runtime = new $Util.RuntimeOptions({ });
19733
20001
  let headers : {[key: string ]: string} = { };
19734
20002
  return await this.deleteApplicationWithOptions(request, headers, runtime);
19735
20003
  }
19736
20004
 
20005
+ /**
20006
+ * @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
20007
+ *
20008
+ * @param request DeleteApplicationScalingRuleRequest
20009
+ * @param headers map
20010
+ * @param runtime runtime options for this request RuntimeOptions
20011
+ * @return DeleteApplicationScalingRuleResponse
20012
+ */
19737
20013
  async deleteApplicationScalingRuleWithOptions(request: DeleteApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationScalingRuleResponse> {
19738
20014
  Util.validateModel(request);
19739
20015
  let query : {[key: string ]: any} = { };
@@ -19763,12 +20039,24 @@ export default class Client extends OpenApi {
19763
20039
  return $tea.cast<DeleteApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new DeleteApplicationScalingRuleResponse({}));
19764
20040
  }
19765
20041
 
20042
+ /**
20043
+ * @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
20044
+ *
20045
+ * @param request DeleteApplicationScalingRuleRequest
20046
+ * @return DeleteApplicationScalingRuleResponse
20047
+ */
19766
20048
  async deleteApplicationScalingRule(request: DeleteApplicationScalingRuleRequest): Promise<DeleteApplicationScalingRuleResponse> {
19767
20049
  let runtime = new $Util.RuntimeOptions({ });
19768
20050
  let headers : {[key: string ]: string} = { };
19769
20051
  return await this.deleteApplicationScalingRuleWithOptions(request, headers, runtime);
19770
20052
  }
19771
20053
 
20054
+ /**
20055
+ * @param request DeleteConfigMapRequest
20056
+ * @param headers map
20057
+ * @param runtime runtime options for this request RuntimeOptions
20058
+ * @return DeleteConfigMapResponse
20059
+ */
19772
20060
  async deleteConfigMapWithOptions(request: DeleteConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteConfigMapResponse> {
19773
20061
  Util.validateModel(request);
19774
20062
  let query : {[key: string ]: any} = { };
@@ -19794,12 +20082,24 @@ export default class Client extends OpenApi {
19794
20082
  return $tea.cast<DeleteConfigMapResponse>(await this.callApi(params, req, runtime), new DeleteConfigMapResponse({}));
19795
20083
  }
19796
20084
 
20085
+ /**
20086
+ * @param request DeleteConfigMapRequest
20087
+ * @return DeleteConfigMapResponse
20088
+ */
19797
20089
  async deleteConfigMap(request: DeleteConfigMapRequest): Promise<DeleteConfigMapResponse> {
19798
20090
  let runtime = new $Util.RuntimeOptions({ });
19799
20091
  let headers : {[key: string ]: string} = { };
19800
20092
  return await this.deleteConfigMapWithOptions(request, headers, runtime);
19801
20093
  }
19802
20094
 
20095
+ /**
20096
+ * @summary 1
20097
+ *
20098
+ * @param request DeleteGreyTagRouteRequest
20099
+ * @param headers map
20100
+ * @param runtime runtime options for this request RuntimeOptions
20101
+ * @return DeleteGreyTagRouteResponse
20102
+ */
19803
20103
  async deleteGreyTagRouteWithOptions(request: DeleteGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteGreyTagRouteResponse> {
19804
20104
  Util.validateModel(request);
19805
20105
  let query : {[key: string ]: any} = { };
@@ -19825,12 +20125,26 @@ export default class Client extends OpenApi {
19825
20125
  return $tea.cast<DeleteGreyTagRouteResponse>(await this.callApi(params, req, runtime), new DeleteGreyTagRouteResponse({}));
19826
20126
  }
19827
20127
 
20128
+ /**
20129
+ * @summary 1
20130
+ *
20131
+ * @param request DeleteGreyTagRouteRequest
20132
+ * @return DeleteGreyTagRouteResponse
20133
+ */
19828
20134
  async deleteGreyTagRoute(request: DeleteGreyTagRouteRequest): Promise<DeleteGreyTagRouteResponse> {
19829
20135
  let runtime = new $Util.RuntimeOptions({ });
19830
20136
  let headers : {[key: string ]: string} = { };
19831
20137
  return await this.deleteGreyTagRouteWithOptions(request, headers, runtime);
19832
20138
  }
19833
20139
 
20140
+ /**
20141
+ * @summary Deletes a job.
20142
+ *
20143
+ * @param request DeleteHistoryJobRequest
20144
+ * @param headers map
20145
+ * @param runtime runtime options for this request RuntimeOptions
20146
+ * @return DeleteHistoryJobResponse
20147
+ */
19834
20148
  async deleteHistoryJobWithOptions(request: DeleteHistoryJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteHistoryJobResponse> {
19835
20149
  Util.validateModel(request);
19836
20150
  let query : {[key: string ]: any} = { };
@@ -19860,12 +20174,24 @@ export default class Client extends OpenApi {
19860
20174
  return $tea.cast<DeleteHistoryJobResponse>(await this.callApi(params, req, runtime), new DeleteHistoryJobResponse({}));
19861
20175
  }
19862
20176
 
20177
+ /**
20178
+ * @summary Deletes a job.
20179
+ *
20180
+ * @param request DeleteHistoryJobRequest
20181
+ * @return DeleteHistoryJobResponse
20182
+ */
19863
20183
  async deleteHistoryJob(request: DeleteHistoryJobRequest): Promise<DeleteHistoryJobResponse> {
19864
20184
  let runtime = new $Util.RuntimeOptions({ });
19865
20185
  let headers : {[key: string ]: string} = { };
19866
20186
  return await this.deleteHistoryJobWithOptions(request, headers, runtime);
19867
20187
  }
19868
20188
 
20189
+ /**
20190
+ * @param request DeleteIngressRequest
20191
+ * @param headers map
20192
+ * @param runtime runtime options for this request RuntimeOptions
20193
+ * @return DeleteIngressResponse
20194
+ */
19869
20195
  async deleteIngressWithOptions(request: DeleteIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteIngressResponse> {
19870
20196
  Util.validateModel(request);
19871
20197
  let query : {[key: string ]: any} = { };
@@ -19891,12 +20217,24 @@ export default class Client extends OpenApi {
19891
20217
  return $tea.cast<DeleteIngressResponse>(await this.callApi(params, req, runtime), new DeleteIngressResponse({}));
19892
20218
  }
19893
20219
 
20220
+ /**
20221
+ * @param request DeleteIngressRequest
20222
+ * @return DeleteIngressResponse
20223
+ */
19894
20224
  async deleteIngress(request: DeleteIngressRequest): Promise<DeleteIngressResponse> {
19895
20225
  let runtime = new $Util.RuntimeOptions({ });
19896
20226
  let headers : {[key: string ]: string} = { };
19897
20227
  return await this.deleteIngressWithOptions(request, headers, runtime);
19898
20228
  }
19899
20229
 
20230
+ /**
20231
+ * @summary Deletes a job template.
20232
+ *
20233
+ * @param request DeleteJobRequest
20234
+ * @param headers map
20235
+ * @param runtime runtime options for this request RuntimeOptions
20236
+ * @return DeleteJobResponse
20237
+ */
19900
20238
  async deleteJobWithOptions(request: DeleteJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteJobResponse> {
19901
20239
  Util.validateModel(request);
19902
20240
  let query : {[key: string ]: any} = { };
@@ -19922,12 +20260,24 @@ export default class Client extends OpenApi {
19922
20260
  return $tea.cast<DeleteJobResponse>(await this.callApi(params, req, runtime), new DeleteJobResponse({}));
19923
20261
  }
19924
20262
 
20263
+ /**
20264
+ * @summary Deletes a job template.
20265
+ *
20266
+ * @param request DeleteJobRequest
20267
+ * @return DeleteJobResponse
20268
+ */
19925
20269
  async deleteJob(request: DeleteJobRequest): Promise<DeleteJobResponse> {
19926
20270
  let runtime = new $Util.RuntimeOptions({ });
19927
20271
  let headers : {[key: string ]: string} = { };
19928
20272
  return await this.deleteJobWithOptions(request, headers, runtime);
19929
20273
  }
19930
20274
 
20275
+ /**
20276
+ * @param request DeleteNamespaceRequest
20277
+ * @param headers map
20278
+ * @param runtime runtime options for this request RuntimeOptions
20279
+ * @return DeleteNamespaceResponse
20280
+ */
19931
20281
  async deleteNamespaceWithOptions(request: DeleteNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteNamespaceResponse> {
19932
20282
  Util.validateModel(request);
19933
20283
  let query : {[key: string ]: any} = { };
@@ -19957,12 +20307,24 @@ export default class Client extends OpenApi {
19957
20307
  return $tea.cast<DeleteNamespaceResponse>(await this.callApi(params, req, runtime), new DeleteNamespaceResponse({}));
19958
20308
  }
19959
20309
 
20310
+ /**
20311
+ * @param request DeleteNamespaceRequest
20312
+ * @return DeleteNamespaceResponse
20313
+ */
19960
20314
  async deleteNamespace(request: DeleteNamespaceRequest): Promise<DeleteNamespaceResponse> {
19961
20315
  let runtime = new $Util.RuntimeOptions({ });
19962
20316
  let headers : {[key: string ]: string} = { };
19963
20317
  return await this.deleteNamespaceWithOptions(request, headers, runtime);
19964
20318
  }
19965
20319
 
20320
+ /**
20321
+ * @summary Deletes a Secret.
20322
+ *
20323
+ * @param request DeleteSecretRequest
20324
+ * @param headers map
20325
+ * @param runtime runtime options for this request RuntimeOptions
20326
+ * @return DeleteSecretResponse
20327
+ */
19966
20328
  async deleteSecretWithOptions(request: DeleteSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteSecretResponse> {
19967
20329
  Util.validateModel(request);
19968
20330
  let query : {[key: string ]: any} = { };
@@ -19992,12 +20354,26 @@ export default class Client extends OpenApi {
19992
20354
  return $tea.cast<DeleteSecretResponse>(await this.callApi(params, req, runtime), new DeleteSecretResponse({}));
19993
20355
  }
19994
20356
 
20357
+ /**
20358
+ * @summary Deletes a Secret.
20359
+ *
20360
+ * @param request DeleteSecretRequest
20361
+ * @return DeleteSecretResponse
20362
+ */
19995
20363
  async deleteSecret(request: DeleteSecretRequest): Promise<DeleteSecretResponse> {
19996
20364
  let runtime = new $Util.RuntimeOptions({ });
19997
20365
  let headers : {[key: string ]: string} = { };
19998
20366
  return await this.deleteSecretWithOptions(request, headers, runtime);
19999
20367
  }
20000
20368
 
20369
+ /**
20370
+ * @summary Deploys an application.
20371
+ *
20372
+ * @param request DeployApplicationRequest
20373
+ * @param headers map
20374
+ * @param runtime runtime options for this request RuntimeOptions
20375
+ * @return DeployApplicationResponse
20376
+ */
20001
20377
  async deployApplicationWithOptions(request: DeployApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeployApplicationResponse> {
20002
20378
  Util.validateModel(request);
20003
20379
  let query : {[key: string ]: any} = { };
@@ -20253,12 +20629,26 @@ export default class Client extends OpenApi {
20253
20629
  return $tea.cast<DeployApplicationResponse>(await this.callApi(params, req, runtime), new DeployApplicationResponse({}));
20254
20630
  }
20255
20631
 
20632
+ /**
20633
+ * @summary Deploys an application.
20634
+ *
20635
+ * @param request DeployApplicationRequest
20636
+ * @return DeployApplicationResponse
20637
+ */
20256
20638
  async deployApplication(request: DeployApplicationRequest): Promise<DeployApplicationResponse> {
20257
20639
  let runtime = new $Util.RuntimeOptions({ });
20258
20640
  let headers : {[key: string ]: string} = { };
20259
20641
  return await this.deployApplicationWithOptions(request, headers, runtime);
20260
20642
  }
20261
20643
 
20644
+ /**
20645
+ * @summary Queries the metadata details of the service of an application.
20646
+ *
20647
+ * @param request DescribeAppServiceDetailRequest
20648
+ * @param headers map
20649
+ * @param runtime runtime options for this request RuntimeOptions
20650
+ * @return DescribeAppServiceDetailResponse
20651
+ */
20262
20652
  async describeAppServiceDetailWithOptions(request: DescribeAppServiceDetailRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeAppServiceDetailResponse> {
20263
20653
  Util.validateModel(request);
20264
20654
  let query : {[key: string ]: any} = { };
@@ -20266,6 +20656,14 @@ export default class Client extends OpenApi {
20266
20656
  query["AppId"] = request.appId;
20267
20657
  }
20268
20658
 
20659
+ if (!Util.isUnset(request.nacosInstanceId)) {
20660
+ query["NacosInstanceId"] = request.nacosInstanceId;
20661
+ }
20662
+
20663
+ if (!Util.isUnset(request.nacosNamespaceId)) {
20664
+ query["NacosNamespaceId"] = request.nacosNamespaceId;
20665
+ }
20666
+
20269
20667
  if (!Util.isUnset(request.serviceGroup)) {
20270
20668
  query["ServiceGroup"] = request.serviceGroup;
20271
20669
  }
@@ -20300,12 +20698,24 @@ export default class Client extends OpenApi {
20300
20698
  return $tea.cast<DescribeAppServiceDetailResponse>(await this.callApi(params, req, runtime), new DescribeAppServiceDetailResponse({}));
20301
20699
  }
20302
20700
 
20701
+ /**
20702
+ * @summary Queries the metadata details of the service of an application.
20703
+ *
20704
+ * @param request DescribeAppServiceDetailRequest
20705
+ * @return DescribeAppServiceDetailResponse
20706
+ */
20303
20707
  async describeAppServiceDetail(request: DescribeAppServiceDetailRequest): Promise<DescribeAppServiceDetailResponse> {
20304
20708
  let runtime = new $Util.RuntimeOptions({ });
20305
20709
  let headers : {[key: string ]: string} = { };
20306
20710
  return await this.describeAppServiceDetailWithOptions(request, headers, runtime);
20307
20711
  }
20308
20712
 
20713
+ /**
20714
+ * @param request DescribeApplicationConfigRequest
20715
+ * @param headers map
20716
+ * @param runtime runtime options for this request RuntimeOptions
20717
+ * @return DescribeApplicationConfigResponse
20718
+ */
20309
20719
  async describeApplicationConfigWithOptions(request: DescribeApplicationConfigRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationConfigResponse> {
20310
20720
  Util.validateModel(request);
20311
20721
  let query : {[key: string ]: any} = { };
@@ -20335,12 +20745,22 @@ export default class Client extends OpenApi {
20335
20745
  return $tea.cast<DescribeApplicationConfigResponse>(await this.callApi(params, req, runtime), new DescribeApplicationConfigResponse({}));
20336
20746
  }
20337
20747
 
20748
+ /**
20749
+ * @param request DescribeApplicationConfigRequest
20750
+ * @return DescribeApplicationConfigResponse
20751
+ */
20338
20752
  async describeApplicationConfig(request: DescribeApplicationConfigRequest): Promise<DescribeApplicationConfigResponse> {
20339
20753
  let runtime = new $Util.RuntimeOptions({ });
20340
20754
  let headers : {[key: string ]: string} = { };
20341
20755
  return await this.describeApplicationConfigWithOptions(request, headers, runtime);
20342
20756
  }
20343
20757
 
20758
+ /**
20759
+ * @param request DescribeApplicationGroupsRequest
20760
+ * @param headers map
20761
+ * @param runtime runtime options for this request RuntimeOptions
20762
+ * @return DescribeApplicationGroupsResponse
20763
+ */
20344
20764
  async describeApplicationGroupsWithOptions(request: DescribeApplicationGroupsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationGroupsResponse> {
20345
20765
  Util.validateModel(request);
20346
20766
  let query : {[key: string ]: any} = { };
@@ -20374,12 +20794,22 @@ export default class Client extends OpenApi {
20374
20794
  return $tea.cast<DescribeApplicationGroupsResponse>(await this.callApi(params, req, runtime), new DescribeApplicationGroupsResponse({}));
20375
20795
  }
20376
20796
 
20797
+ /**
20798
+ * @param request DescribeApplicationGroupsRequest
20799
+ * @return DescribeApplicationGroupsResponse
20800
+ */
20377
20801
  async describeApplicationGroups(request: DescribeApplicationGroupsRequest): Promise<DescribeApplicationGroupsResponse> {
20378
20802
  let runtime = new $Util.RuntimeOptions({ });
20379
20803
  let headers : {[key: string ]: string} = { };
20380
20804
  return await this.describeApplicationGroupsWithOptions(request, headers, runtime);
20381
20805
  }
20382
20806
 
20807
+ /**
20808
+ * @param request DescribeApplicationImageRequest
20809
+ * @param headers map
20810
+ * @param runtime runtime options for this request RuntimeOptions
20811
+ * @return DescribeApplicationImageResponse
20812
+ */
20383
20813
  async describeApplicationImageWithOptions(request: DescribeApplicationImageRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationImageResponse> {
20384
20814
  Util.validateModel(request);
20385
20815
  let query : {[key: string ]: any} = { };
@@ -20409,12 +20839,24 @@ export default class Client extends OpenApi {
20409
20839
  return $tea.cast<DescribeApplicationImageResponse>(await this.callApi(params, req, runtime), new DescribeApplicationImageResponse({}));
20410
20840
  }
20411
20841
 
20842
+ /**
20843
+ * @param request DescribeApplicationImageRequest
20844
+ * @return DescribeApplicationImageResponse
20845
+ */
20412
20846
  async describeApplicationImage(request: DescribeApplicationImageRequest): Promise<DescribeApplicationImageResponse> {
20413
20847
  let runtime = new $Util.RuntimeOptions({ });
20414
20848
  let headers : {[key: string ]: string} = { };
20415
20849
  return await this.describeApplicationImageWithOptions(request, headers, runtime);
20416
20850
  }
20417
20851
 
20852
+ /**
20853
+ * @summary Queries application instances.
20854
+ *
20855
+ * @param request DescribeApplicationInstancesRequest
20856
+ * @param headers map
20857
+ * @param runtime runtime options for this request RuntimeOptions
20858
+ * @return DescribeApplicationInstancesResponse
20859
+ */
20418
20860
  async describeApplicationInstancesWithOptions(request: DescribeApplicationInstancesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationInstancesResponse> {
20419
20861
  Util.validateModel(request);
20420
20862
  let query : {[key: string ]: any} = { };
@@ -20456,12 +20898,26 @@ export default class Client extends OpenApi {
20456
20898
  return $tea.cast<DescribeApplicationInstancesResponse>(await this.callApi(params, req, runtime), new DescribeApplicationInstancesResponse({}));
20457
20899
  }
20458
20900
 
20901
+ /**
20902
+ * @summary Queries application instances.
20903
+ *
20904
+ * @param request DescribeApplicationInstancesRequest
20905
+ * @return DescribeApplicationInstancesResponse
20906
+ */
20459
20907
  async describeApplicationInstances(request: DescribeApplicationInstancesRequest): Promise<DescribeApplicationInstancesResponse> {
20460
20908
  let runtime = new $Util.RuntimeOptions({ });
20461
20909
  let headers : {[key: string ]: string} = { };
20462
20910
  return await this.describeApplicationInstancesWithOptions(request, headers, runtime);
20463
20911
  }
20464
20912
 
20913
+ /**
20914
+ * @summary Queries a specified auto scaling policy of an application.
20915
+ *
20916
+ * @param request DescribeApplicationScalingRuleRequest
20917
+ * @param headers map
20918
+ * @param runtime runtime options for this request RuntimeOptions
20919
+ * @return DescribeApplicationScalingRuleResponse
20920
+ */
20465
20921
  async describeApplicationScalingRuleWithOptions(request: DescribeApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationScalingRuleResponse> {
20466
20922
  Util.validateModel(request);
20467
20923
  let query : {[key: string ]: any} = { };
@@ -20491,12 +20947,26 @@ export default class Client extends OpenApi {
20491
20947
  return $tea.cast<DescribeApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new DescribeApplicationScalingRuleResponse({}));
20492
20948
  }
20493
20949
 
20950
+ /**
20951
+ * @summary Queries a specified auto scaling policy of an application.
20952
+ *
20953
+ * @param request DescribeApplicationScalingRuleRequest
20954
+ * @return DescribeApplicationScalingRuleResponse
20955
+ */
20494
20956
  async describeApplicationScalingRule(request: DescribeApplicationScalingRuleRequest): Promise<DescribeApplicationScalingRuleResponse> {
20495
20957
  let runtime = new $Util.RuntimeOptions({ });
20496
20958
  let headers : {[key: string ]: string} = { };
20497
20959
  return await this.describeApplicationScalingRuleWithOptions(request, headers, runtime);
20498
20960
  }
20499
20961
 
20962
+ /**
20963
+ * @summary Queries the auto scaling policies of an application.
20964
+ *
20965
+ * @param request DescribeApplicationScalingRulesRequest
20966
+ * @param headers map
20967
+ * @param runtime runtime options for this request RuntimeOptions
20968
+ * @return DescribeApplicationScalingRulesResponse
20969
+ */
20500
20970
  async describeApplicationScalingRulesWithOptions(request: DescribeApplicationScalingRulesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationScalingRulesResponse> {
20501
20971
  Util.validateModel(request);
20502
20972
  let query : {[key: string ]: any} = { };
@@ -20522,12 +20992,26 @@ export default class Client extends OpenApi {
20522
20992
  return $tea.cast<DescribeApplicationScalingRulesResponse>(await this.callApi(params, req, runtime), new DescribeApplicationScalingRulesResponse({}));
20523
20993
  }
20524
20994
 
20995
+ /**
20996
+ * @summary Queries the auto scaling policies of an application.
20997
+ *
20998
+ * @param request DescribeApplicationScalingRulesRequest
20999
+ * @return DescribeApplicationScalingRulesResponse
21000
+ */
20525
21001
  async describeApplicationScalingRules(request: DescribeApplicationScalingRulesRequest): Promise<DescribeApplicationScalingRulesResponse> {
20526
21002
  let runtime = new $Util.RuntimeOptions({ });
20527
21003
  let headers : {[key: string ]: string} = { };
20528
21004
  return await this.describeApplicationScalingRulesWithOptions(request, headers, runtime);
20529
21005
  }
20530
21006
 
21007
+ /**
21008
+ * @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
21009
+ *
21010
+ * @param request DescribeApplicationSlbsRequest
21011
+ * @param headers map
21012
+ * @param runtime runtime options for this request RuntimeOptions
21013
+ * @return DescribeApplicationSlbsResponse
21014
+ */
20531
21015
  async describeApplicationSlbsWithOptions(request: DescribeApplicationSlbsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationSlbsResponse> {
20532
21016
  Util.validateModel(request);
20533
21017
  let query : {[key: string ]: any} = { };
@@ -20553,12 +21037,24 @@ export default class Client extends OpenApi {
20553
21037
  return $tea.cast<DescribeApplicationSlbsResponse>(await this.callApi(params, req, runtime), new DescribeApplicationSlbsResponse({}));
20554
21038
  }
20555
21039
 
21040
+ /**
21041
+ * @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
21042
+ *
21043
+ * @param request DescribeApplicationSlbsRequest
21044
+ * @return DescribeApplicationSlbsResponse
21045
+ */
20556
21046
  async describeApplicationSlbs(request: DescribeApplicationSlbsRequest): Promise<DescribeApplicationSlbsResponse> {
20557
21047
  let runtime = new $Util.RuntimeOptions({ });
20558
21048
  let headers : {[key: string ]: string} = { };
20559
21049
  return await this.describeApplicationSlbsWithOptions(request, headers, runtime);
20560
21050
  }
20561
21051
 
21052
+ /**
21053
+ * @param request DescribeApplicationStatusRequest
21054
+ * @param headers map
21055
+ * @param runtime runtime options for this request RuntimeOptions
21056
+ * @return DescribeApplicationStatusResponse
21057
+ */
20562
21058
  async describeApplicationStatusWithOptions(request: DescribeApplicationStatusRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeApplicationStatusResponse> {
20563
21059
  Util.validateModel(request);
20564
21060
  let query : {[key: string ]: any} = { };
@@ -20584,12 +21080,22 @@ export default class Client extends OpenApi {
20584
21080
  return $tea.cast<DescribeApplicationStatusResponse>(await this.callApi(params, req, runtime), new DescribeApplicationStatusResponse({}));
20585
21081
  }
20586
21082
 
21083
+ /**
21084
+ * @param request DescribeApplicationStatusRequest
21085
+ * @return DescribeApplicationStatusResponse
21086
+ */
20587
21087
  async describeApplicationStatus(request: DescribeApplicationStatusRequest): Promise<DescribeApplicationStatusResponse> {
20588
21088
  let runtime = new $Util.RuntimeOptions({ });
20589
21089
  let headers : {[key: string ]: string} = { };
20590
21090
  return await this.describeApplicationStatusWithOptions(request, headers, runtime);
20591
21091
  }
20592
21092
 
21093
+ /**
21094
+ * @param request DescribeChangeOrderRequest
21095
+ * @param headers map
21096
+ * @param runtime runtime options for this request RuntimeOptions
21097
+ * @return DescribeChangeOrderResponse
21098
+ */
20593
21099
  async describeChangeOrderWithOptions(request: DescribeChangeOrderRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeChangeOrderResponse> {
20594
21100
  Util.validateModel(request);
20595
21101
  let query : {[key: string ]: any} = { };
@@ -20615,12 +21121,22 @@ export default class Client extends OpenApi {
20615
21121
  return $tea.cast<DescribeChangeOrderResponse>(await this.callApi(params, req, runtime), new DescribeChangeOrderResponse({}));
20616
21122
  }
20617
21123
 
21124
+ /**
21125
+ * @param request DescribeChangeOrderRequest
21126
+ * @return DescribeChangeOrderResponse
21127
+ */
20618
21128
  async describeChangeOrder(request: DescribeChangeOrderRequest): Promise<DescribeChangeOrderResponse> {
20619
21129
  let runtime = new $Util.RuntimeOptions({ });
20620
21130
  let headers : {[key: string ]: string} = { };
20621
21131
  return await this.describeChangeOrderWithOptions(request, headers, runtime);
20622
21132
  }
20623
21133
 
21134
+ /**
21135
+ * @param request DescribeComponentsRequest
21136
+ * @param headers map
21137
+ * @param runtime runtime options for this request RuntimeOptions
21138
+ * @return DescribeComponentsResponse
21139
+ */
20624
21140
  async describeComponentsWithOptions(request: DescribeComponentsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeComponentsResponse> {
20625
21141
  Util.validateModel(request);
20626
21142
  let query : {[key: string ]: any} = { };
@@ -20650,12 +21166,22 @@ export default class Client extends OpenApi {
20650
21166
  return $tea.cast<DescribeComponentsResponse>(await this.callApi(params, req, runtime), new DescribeComponentsResponse({}));
20651
21167
  }
20652
21168
 
21169
+ /**
21170
+ * @param request DescribeComponentsRequest
21171
+ * @return DescribeComponentsResponse
21172
+ */
20653
21173
  async describeComponents(request: DescribeComponentsRequest): Promise<DescribeComponentsResponse> {
20654
21174
  let runtime = new $Util.RuntimeOptions({ });
20655
21175
  let headers : {[key: string ]: string} = { };
20656
21176
  return await this.describeComponentsWithOptions(request, headers, runtime);
20657
21177
  }
20658
21178
 
21179
+ /**
21180
+ * @param request DescribeConfigMapRequest
21181
+ * @param headers map
21182
+ * @param runtime runtime options for this request RuntimeOptions
21183
+ * @return DescribeConfigMapResponse
21184
+ */
20659
21185
  async describeConfigMapWithOptions(request: DescribeConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeConfigMapResponse> {
20660
21186
  Util.validateModel(request);
20661
21187
  let query : {[key: string ]: any} = { };
@@ -20681,12 +21207,22 @@ export default class Client extends OpenApi {
20681
21207
  return $tea.cast<DescribeConfigMapResponse>(await this.callApi(params, req, runtime), new DescribeConfigMapResponse({}));
20682
21208
  }
20683
21209
 
21210
+ /**
21211
+ * @param request DescribeConfigMapRequest
21212
+ * @return DescribeConfigMapResponse
21213
+ */
20684
21214
  async describeConfigMap(request: DescribeConfigMapRequest): Promise<DescribeConfigMapResponse> {
20685
21215
  let runtime = new $Util.RuntimeOptions({ });
20686
21216
  let headers : {[key: string ]: string} = { };
20687
21217
  return await this.describeConfigMapWithOptions(request, headers, runtime);
20688
21218
  }
20689
21219
 
21220
+ /**
21221
+ * @param request DescribeConfigurationPriceRequest
21222
+ * @param headers map
21223
+ * @param runtime runtime options for this request RuntimeOptions
21224
+ * @return DescribeConfigurationPriceResponse
21225
+ */
20690
21226
  async describeConfigurationPriceWithOptions(request: DescribeConfigurationPriceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeConfigurationPriceResponse> {
20691
21227
  Util.validateModel(request);
20692
21228
  let query : {[key: string ]: any} = { };
@@ -20720,12 +21256,21 @@ export default class Client extends OpenApi {
20720
21256
  return $tea.cast<DescribeConfigurationPriceResponse>(await this.callApi(params, req, runtime), new DescribeConfigurationPriceResponse({}));
20721
21257
  }
20722
21258
 
21259
+ /**
21260
+ * @param request DescribeConfigurationPriceRequest
21261
+ * @return DescribeConfigurationPriceResponse
21262
+ */
20723
21263
  async describeConfigurationPrice(request: DescribeConfigurationPriceRequest): Promise<DescribeConfigurationPriceResponse> {
20724
21264
  let runtime = new $Util.RuntimeOptions({ });
20725
21265
  let headers : {[key: string ]: string} = { };
20726
21266
  return await this.describeConfigurationPriceWithOptions(request, headers, runtime);
20727
21267
  }
20728
21268
 
21269
+ /**
21270
+ * @param headers map
21271
+ * @param runtime runtime options for this request RuntimeOptions
21272
+ * @return DescribeEdasContainersResponse
21273
+ */
20729
21274
  async describeEdasContainersWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeEdasContainersResponse> {
20730
21275
  let req = new $OpenApi.OpenApiRequest({
20731
21276
  headers: headers,
@@ -20744,12 +21289,23 @@ export default class Client extends OpenApi {
20744
21289
  return $tea.cast<DescribeEdasContainersResponse>(await this.callApi(params, req, runtime), new DescribeEdasContainersResponse({}));
20745
21290
  }
20746
21291
 
21292
+ /**
21293
+ * @return DescribeEdasContainersResponse
21294
+ */
20747
21295
  async describeEdasContainers(): Promise<DescribeEdasContainersResponse> {
20748
21296
  let runtime = new $Util.RuntimeOptions({ });
20749
21297
  let headers : {[key: string ]: string} = { };
20750
21298
  return await this.describeEdasContainersWithOptions(headers, runtime);
20751
21299
  }
20752
21300
 
21301
+ /**
21302
+ * @summary Queries the details of a canary release rule based on the specified rule ID.
21303
+ *
21304
+ * @param request DescribeGreyTagRouteRequest
21305
+ * @param headers map
21306
+ * @param runtime runtime options for this request RuntimeOptions
21307
+ * @return DescribeGreyTagRouteResponse
21308
+ */
20753
21309
  async describeGreyTagRouteWithOptions(request: DescribeGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeGreyTagRouteResponse> {
20754
21310
  Util.validateModel(request);
20755
21311
  let query : {[key: string ]: any} = { };
@@ -20775,12 +21331,24 @@ export default class Client extends OpenApi {
20775
21331
  return $tea.cast<DescribeGreyTagRouteResponse>(await this.callApi(params, req, runtime), new DescribeGreyTagRouteResponse({}));
20776
21332
  }
20777
21333
 
21334
+ /**
21335
+ * @summary Queries the details of a canary release rule based on the specified rule ID.
21336
+ *
21337
+ * @param request DescribeGreyTagRouteRequest
21338
+ * @return DescribeGreyTagRouteResponse
21339
+ */
20778
21340
  async describeGreyTagRoute(request: DescribeGreyTagRouteRequest): Promise<DescribeGreyTagRouteResponse> {
20779
21341
  let runtime = new $Util.RuntimeOptions({ });
20780
21342
  let headers : {[key: string ]: string} = { };
20781
21343
  return await this.describeGreyTagRouteWithOptions(request, headers, runtime);
20782
21344
  }
20783
21345
 
21346
+ /**
21347
+ * @param request DescribeIngressRequest
21348
+ * @param headers map
21349
+ * @param runtime runtime options for this request RuntimeOptions
21350
+ * @return DescribeIngressResponse
21351
+ */
20784
21352
  async describeIngressWithOptions(request: DescribeIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeIngressResponse> {
20785
21353
  Util.validateModel(request);
20786
21354
  let query : {[key: string ]: any} = { };
@@ -20806,12 +21374,22 @@ export default class Client extends OpenApi {
20806
21374
  return $tea.cast<DescribeIngressResponse>(await this.callApi(params, req, runtime), new DescribeIngressResponse({}));
20807
21375
  }
20808
21376
 
21377
+ /**
21378
+ * @param request DescribeIngressRequest
21379
+ * @return DescribeIngressResponse
21380
+ */
20809
21381
  async describeIngress(request: DescribeIngressRequest): Promise<DescribeIngressResponse> {
20810
21382
  let runtime = new $Util.RuntimeOptions({ });
20811
21383
  let headers : {[key: string ]: string} = { };
20812
21384
  return await this.describeIngressWithOptions(request, headers, runtime);
20813
21385
  }
20814
21386
 
21387
+ /**
21388
+ * @param request DescribeInstanceLogRequest
21389
+ * @param headers map
21390
+ * @param runtime runtime options for this request RuntimeOptions
21391
+ * @return DescribeInstanceLogResponse
21392
+ */
20815
21393
  async describeInstanceLogWithOptions(request: DescribeInstanceLogRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceLogResponse> {
20816
21394
  Util.validateModel(request);
20817
21395
  let query : {[key: string ]: any} = { };
@@ -20837,12 +21415,21 @@ export default class Client extends OpenApi {
20837
21415
  return $tea.cast<DescribeInstanceLogResponse>(await this.callApi(params, req, runtime), new DescribeInstanceLogResponse({}));
20838
21416
  }
20839
21417
 
21418
+ /**
21419
+ * @param request DescribeInstanceLogRequest
21420
+ * @return DescribeInstanceLogResponse
21421
+ */
20840
21422
  async describeInstanceLog(request: DescribeInstanceLogRequest): Promise<DescribeInstanceLogResponse> {
20841
21423
  let runtime = new $Util.RuntimeOptions({ });
20842
21424
  let headers : {[key: string ]: string} = { };
20843
21425
  return await this.describeInstanceLogWithOptions(request, headers, runtime);
20844
21426
  }
20845
21427
 
21428
+ /**
21429
+ * @param headers map
21430
+ * @param runtime runtime options for this request RuntimeOptions
21431
+ * @return DescribeInstanceSpecificationsResponse
21432
+ */
20846
21433
  async describeInstanceSpecificationsWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceSpecificationsResponse> {
20847
21434
  let req = new $OpenApi.OpenApiRequest({
20848
21435
  headers: headers,
@@ -20861,12 +21448,23 @@ export default class Client extends OpenApi {
20861
21448
  return $tea.cast<DescribeInstanceSpecificationsResponse>(await this.callApi(params, req, runtime), new DescribeInstanceSpecificationsResponse({}));
20862
21449
  }
20863
21450
 
21451
+ /**
21452
+ * @return DescribeInstanceSpecificationsResponse
21453
+ */
20864
21454
  async describeInstanceSpecifications(): Promise<DescribeInstanceSpecificationsResponse> {
20865
21455
  let runtime = new $Util.RuntimeOptions({ });
20866
21456
  let headers : {[key: string ]: string} = { };
20867
21457
  return await this.describeInstanceSpecificationsWithOptions(headers, runtime);
20868
21458
  }
20869
21459
 
21460
+ /**
21461
+ * @summary Queries the configurations of a job template.
21462
+ *
21463
+ * @param request DescribeJobRequest
21464
+ * @param headers map
21465
+ * @param runtime runtime options for this request RuntimeOptions
21466
+ * @return DescribeJobResponse
21467
+ */
20870
21468
  async describeJobWithOptions(request: DescribeJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeJobResponse> {
20871
21469
  Util.validateModel(request);
20872
21470
  let query : {[key: string ]: any} = { };
@@ -20896,12 +21494,26 @@ export default class Client extends OpenApi {
20896
21494
  return $tea.cast<DescribeJobResponse>(await this.callApi(params, req, runtime), new DescribeJobResponse({}));
20897
21495
  }
20898
21496
 
21497
+ /**
21498
+ * @summary Queries the configurations of a job template.
21499
+ *
21500
+ * @param request DescribeJobRequest
21501
+ * @return DescribeJobResponse
21502
+ */
20899
21503
  async describeJob(request: DescribeJobRequest): Promise<DescribeJobResponse> {
20900
21504
  let runtime = new $Util.RuntimeOptions({ });
20901
21505
  let headers : {[key: string ]: string} = { };
20902
21506
  return await this.describeJobWithOptions(request, headers, runtime);
20903
21507
  }
20904
21508
 
21509
+ /**
21510
+ * @summary Query the information about jobs.
21511
+ *
21512
+ * @param request DescribeJobHistoryRequest
21513
+ * @param headers map
21514
+ * @param runtime runtime options for this request RuntimeOptions
21515
+ * @return DescribeJobHistoryResponse
21516
+ */
20905
21517
  async describeJobHistoryWithOptions(request: DescribeJobHistoryRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeJobHistoryResponse> {
20906
21518
  Util.validateModel(request);
20907
21519
  let query : {[key: string ]: any} = { };
@@ -20939,12 +21551,26 @@ export default class Client extends OpenApi {
20939
21551
  return $tea.cast<DescribeJobHistoryResponse>(await this.callApi(params, req, runtime), new DescribeJobHistoryResponse({}));
20940
21552
  }
20941
21553
 
21554
+ /**
21555
+ * @summary Query the information about jobs.
21556
+ *
21557
+ * @param request DescribeJobHistoryRequest
21558
+ * @return DescribeJobHistoryResponse
21559
+ */
20942
21560
  async describeJobHistory(request: DescribeJobHistoryRequest): Promise<DescribeJobHistoryResponse> {
20943
21561
  let runtime = new $Util.RuntimeOptions({ });
20944
21562
  let headers : {[key: string ]: string} = { };
20945
21563
  return await this.describeJobHistoryWithOptions(request, headers, runtime);
20946
21564
  }
20947
21565
 
21566
+ /**
21567
+ * @summary Queries the status of a job.
21568
+ *
21569
+ * @param request DescribeJobStatusRequest
21570
+ * @param headers map
21571
+ * @param runtime runtime options for this request RuntimeOptions
21572
+ * @return DescribeJobStatusResponse
21573
+ */
20948
21574
  async describeJobStatusWithOptions(request: DescribeJobStatusRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeJobStatusResponse> {
20949
21575
  Util.validateModel(request);
20950
21576
  let query : {[key: string ]: any} = { };
@@ -20974,12 +21600,26 @@ export default class Client extends OpenApi {
20974
21600
  return $tea.cast<DescribeJobStatusResponse>(await this.callApi(params, req, runtime), new DescribeJobStatusResponse({}));
20975
21601
  }
20976
21602
 
21603
+ /**
21604
+ * @summary Queries the status of a job.
21605
+ *
21606
+ * @param request DescribeJobStatusRequest
21607
+ * @return DescribeJobStatusResponse
21608
+ */
20977
21609
  async describeJobStatus(request: DescribeJobStatusRequest): Promise<DescribeJobStatusResponse> {
20978
21610
  let runtime = new $Util.RuntimeOptions({ });
20979
21611
  let headers : {[key: string ]: string} = { };
20980
21612
  return await this.describeJobStatusWithOptions(request, headers, runtime);
20981
21613
  }
20982
21614
 
21615
+ /**
21616
+ * @summary Queries the details of a namespace.
21617
+ *
21618
+ * @param request DescribeNamespaceRequest
21619
+ * @param headers map
21620
+ * @param runtime runtime options for this request RuntimeOptions
21621
+ * @return DescribeNamespaceResponse
21622
+ */
20983
21623
  async describeNamespaceWithOptions(request: DescribeNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceResponse> {
20984
21624
  Util.validateModel(request);
20985
21625
  let query : {[key: string ]: any} = { };
@@ -21009,12 +21649,24 @@ export default class Client extends OpenApi {
21009
21649
  return $tea.cast<DescribeNamespaceResponse>(await this.callApi(params, req, runtime), new DescribeNamespaceResponse({}));
21010
21650
  }
21011
21651
 
21652
+ /**
21653
+ * @summary Queries the details of a namespace.
21654
+ *
21655
+ * @param request DescribeNamespaceRequest
21656
+ * @return DescribeNamespaceResponse
21657
+ */
21012
21658
  async describeNamespace(request: DescribeNamespaceRequest): Promise<DescribeNamespaceResponse> {
21013
21659
  let runtime = new $Util.RuntimeOptions({ });
21014
21660
  let headers : {[key: string ]: string} = { };
21015
21661
  return await this.describeNamespaceWithOptions(request, headers, runtime);
21016
21662
  }
21017
21663
 
21664
+ /**
21665
+ * @param request DescribeNamespaceListRequest
21666
+ * @param headers map
21667
+ * @param runtime runtime options for this request RuntimeOptions
21668
+ * @return DescribeNamespaceListResponse
21669
+ */
21018
21670
  async describeNamespaceListWithOptions(request: DescribeNamespaceListRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceListResponse> {
21019
21671
  Util.validateModel(request);
21020
21672
  let query : {[key: string ]: any} = { };
@@ -21044,12 +21696,22 @@ export default class Client extends OpenApi {
21044
21696
  return $tea.cast<DescribeNamespaceListResponse>(await this.callApi(params, req, runtime), new DescribeNamespaceListResponse({}));
21045
21697
  }
21046
21698
 
21699
+ /**
21700
+ * @param request DescribeNamespaceListRequest
21701
+ * @return DescribeNamespaceListResponse
21702
+ */
21047
21703
  async describeNamespaceList(request: DescribeNamespaceListRequest): Promise<DescribeNamespaceListResponse> {
21048
21704
  let runtime = new $Util.RuntimeOptions({ });
21049
21705
  let headers : {[key: string ]: string} = { };
21050
21706
  return await this.describeNamespaceListWithOptions(request, headers, runtime);
21051
21707
  }
21052
21708
 
21709
+ /**
21710
+ * @param request DescribeNamespaceResourcesRequest
21711
+ * @param headers map
21712
+ * @param runtime runtime options for this request RuntimeOptions
21713
+ * @return DescribeNamespaceResourcesResponse
21714
+ */
21053
21715
  async describeNamespaceResourcesWithOptions(request: DescribeNamespaceResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceResourcesResponse> {
21054
21716
  Util.validateModel(request);
21055
21717
  let query : {[key: string ]: any} = { };
@@ -21079,12 +21741,24 @@ export default class Client extends OpenApi {
21079
21741
  return $tea.cast<DescribeNamespaceResourcesResponse>(await this.callApi(params, req, runtime), new DescribeNamespaceResourcesResponse({}));
21080
21742
  }
21081
21743
 
21744
+ /**
21745
+ * @param request DescribeNamespaceResourcesRequest
21746
+ * @return DescribeNamespaceResourcesResponse
21747
+ */
21082
21748
  async describeNamespaceResources(request: DescribeNamespaceResourcesRequest): Promise<DescribeNamespaceResourcesResponse> {
21083
21749
  let runtime = new $Util.RuntimeOptions({ });
21084
21750
  let headers : {[key: string ]: string} = { };
21085
21751
  return await this.describeNamespaceResourcesWithOptions(request, headers, runtime);
21086
21752
  }
21087
21753
 
21754
+ /**
21755
+ * @summary Queries the details of namespaces.
21756
+ *
21757
+ * @param request DescribeNamespacesRequest
21758
+ * @param headers map
21759
+ * @param runtime runtime options for this request RuntimeOptions
21760
+ * @return DescribeNamespacesResponse
21761
+ */
21088
21762
  async describeNamespacesWithOptions(request: DescribeNamespacesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeNamespacesResponse> {
21089
21763
  Util.validateModel(request);
21090
21764
  let query : {[key: string ]: any} = { };
@@ -21114,12 +21788,26 @@ export default class Client extends OpenApi {
21114
21788
  return $tea.cast<DescribeNamespacesResponse>(await this.callApi(params, req, runtime), new DescribeNamespacesResponse({}));
21115
21789
  }
21116
21790
 
21791
+ /**
21792
+ * @summary Queries the details of namespaces.
21793
+ *
21794
+ * @param request DescribeNamespacesRequest
21795
+ * @return DescribeNamespacesResponse
21796
+ */
21117
21797
  async describeNamespaces(request: DescribeNamespacesRequest): Promise<DescribeNamespacesResponse> {
21118
21798
  let runtime = new $Util.RuntimeOptions({ });
21119
21799
  let headers : {[key: string ]: string} = { };
21120
21800
  return await this.describeNamespacesWithOptions(request, headers, runtime);
21121
21801
  }
21122
21802
 
21803
+ /**
21804
+ * @summary Queries the information of a batch.
21805
+ *
21806
+ * @param request DescribePipelineRequest
21807
+ * @param headers map
21808
+ * @param runtime runtime options for this request RuntimeOptions
21809
+ * @return DescribePipelineResponse
21810
+ */
21123
21811
  async describePipelineWithOptions(request: DescribePipelineRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribePipelineResponse> {
21124
21812
  Util.validateModel(request);
21125
21813
  let query : {[key: string ]: any} = { };
@@ -21145,12 +21833,25 @@ export default class Client extends OpenApi {
21145
21833
  return $tea.cast<DescribePipelineResponse>(await this.callApi(params, req, runtime), new DescribePipelineResponse({}));
21146
21834
  }
21147
21835
 
21836
+ /**
21837
+ * @summary Queries the information of a batch.
21838
+ *
21839
+ * @param request DescribePipelineRequest
21840
+ * @return DescribePipelineResponse
21841
+ */
21148
21842
  async describePipeline(request: DescribePipelineRequest): Promise<DescribePipelineResponse> {
21149
21843
  let runtime = new $Util.RuntimeOptions({ });
21150
21844
  let headers : {[key: string ]: string} = { };
21151
21845
  return await this.describePipelineWithOptions(request, headers, runtime);
21152
21846
  }
21153
21847
 
21848
+ /**
21849
+ * @summary Queries available regions.
21850
+ *
21851
+ * @param headers map
21852
+ * @param runtime runtime options for this request RuntimeOptions
21853
+ * @return DescribeRegionsResponse
21854
+ */
21154
21855
  async describeRegionsWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
21155
21856
  let req = new $OpenApi.OpenApiRequest({
21156
21857
  headers: headers,
@@ -21169,12 +21870,25 @@ export default class Client extends OpenApi {
21169
21870
  return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
21170
21871
  }
21171
21872
 
21873
+ /**
21874
+ * @summary Queries available regions.
21875
+ *
21876
+ * @return DescribeRegionsResponse
21877
+ */
21172
21878
  async describeRegions(): Promise<DescribeRegionsResponse> {
21173
21879
  let runtime = new $Util.RuntimeOptions({ });
21174
21880
  let headers : {[key: string ]: string} = { };
21175
21881
  return await this.describeRegionsWithOptions(headers, runtime);
21176
21882
  }
21177
21883
 
21884
+ /**
21885
+ * @summary Queries the details of a Secret instance.
21886
+ *
21887
+ * @param request DescribeSecretRequest
21888
+ * @param headers map
21889
+ * @param runtime runtime options for this request RuntimeOptions
21890
+ * @return DescribeSecretResponse
21891
+ */
21178
21892
  async describeSecretWithOptions(request: DescribeSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeSecretResponse> {
21179
21893
  Util.validateModel(request);
21180
21894
  let query : {[key: string ]: any} = { };
@@ -21204,12 +21918,24 @@ export default class Client extends OpenApi {
21204
21918
  return $tea.cast<DescribeSecretResponse>(await this.callApi(params, req, runtime), new DescribeSecretResponse({}));
21205
21919
  }
21206
21920
 
21921
+ /**
21922
+ * @summary Queries the details of a Secret instance.
21923
+ *
21924
+ * @param request DescribeSecretRequest
21925
+ * @return DescribeSecretResponse
21926
+ */
21207
21927
  async describeSecret(request: DescribeSecretRequest): Promise<DescribeSecretResponse> {
21208
21928
  let runtime = new $Util.RuntimeOptions({ });
21209
21929
  let headers : {[key: string ]: string} = { };
21210
21930
  return await this.describeSecretWithOptions(request, headers, runtime);
21211
21931
  }
21212
21932
 
21933
+ /**
21934
+ * @param request DisableApplicationScalingRuleRequest
21935
+ * @param headers map
21936
+ * @param runtime runtime options for this request RuntimeOptions
21937
+ * @return DisableApplicationScalingRuleResponse
21938
+ */
21213
21939
  async disableApplicationScalingRuleWithOptions(request: DisableApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DisableApplicationScalingRuleResponse> {
21214
21940
  Util.validateModel(request);
21215
21941
  let query : {[key: string ]: any} = { };
@@ -21239,12 +21965,24 @@ export default class Client extends OpenApi {
21239
21965
  return $tea.cast<DisableApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new DisableApplicationScalingRuleResponse({}));
21240
21966
  }
21241
21967
 
21968
+ /**
21969
+ * @param request DisableApplicationScalingRuleRequest
21970
+ * @return DisableApplicationScalingRuleResponse
21971
+ */
21242
21972
  async disableApplicationScalingRule(request: DisableApplicationScalingRuleRequest): Promise<DisableApplicationScalingRuleResponse> {
21243
21973
  let runtime = new $Util.RuntimeOptions({ });
21244
21974
  let headers : {[key: string ]: string} = { };
21245
21975
  return await this.disableApplicationScalingRuleWithOptions(request, headers, runtime);
21246
21976
  }
21247
21977
 
21978
+ /**
21979
+ * @summary Enables an auto scaling policy for an application.
21980
+ *
21981
+ * @param request EnableApplicationScalingRuleRequest
21982
+ * @param headers map
21983
+ * @param runtime runtime options for this request RuntimeOptions
21984
+ * @return EnableApplicationScalingRuleResponse
21985
+ */
21248
21986
  async enableApplicationScalingRuleWithOptions(request: EnableApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<EnableApplicationScalingRuleResponse> {
21249
21987
  Util.validateModel(request);
21250
21988
  let query : {[key: string ]: any} = { };
@@ -21274,12 +22012,24 @@ export default class Client extends OpenApi {
21274
22012
  return $tea.cast<EnableApplicationScalingRuleResponse>(await this.callApi(params, req, runtime), new EnableApplicationScalingRuleResponse({}));
21275
22013
  }
21276
22014
 
22015
+ /**
22016
+ * @summary Enables an auto scaling policy for an application.
22017
+ *
22018
+ * @param request EnableApplicationScalingRuleRequest
22019
+ * @return EnableApplicationScalingRuleResponse
22020
+ */
21277
22021
  async enableApplicationScalingRule(request: EnableApplicationScalingRuleRequest): Promise<EnableApplicationScalingRuleResponse> {
21278
22022
  let runtime = new $Util.RuntimeOptions({ });
21279
22023
  let headers : {[key: string ]: string} = { };
21280
22024
  return await this.enableApplicationScalingRuleWithOptions(request, headers, runtime);
21281
22025
  }
21282
22026
 
22027
+ /**
22028
+ * @param request ExecJobRequest
22029
+ * @param headers map
22030
+ * @param runtime runtime options for this request RuntimeOptions
22031
+ * @return ExecJobResponse
22032
+ */
21283
22033
  async execJobWithOptions(request: ExecJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ExecJobResponse> {
21284
22034
  Util.validateModel(request);
21285
22035
  let query : {[key: string ]: any} = { };
@@ -21341,12 +22091,24 @@ export default class Client extends OpenApi {
21341
22091
  return $tea.cast<ExecJobResponse>(await this.callApi(params, req, runtime), new ExecJobResponse({}));
21342
22092
  }
21343
22093
 
22094
+ /**
22095
+ * @param request ExecJobRequest
22096
+ * @return ExecJobResponse
22097
+ */
21344
22098
  async execJob(request: ExecJobRequest): Promise<ExecJobResponse> {
21345
22099
  let runtime = new $Util.RuntimeOptions({ });
21346
22100
  let headers : {[key: string ]: string} = { };
21347
22101
  return await this.execJobWithOptions(request, headers, runtime);
21348
22102
  }
21349
22103
 
22104
+ /**
22105
+ * @summary Queries the top N applications in Application Monitoring.
22106
+ *
22107
+ * @param request GetArmsTopNMetricRequest
22108
+ * @param headers map
22109
+ * @param runtime runtime options for this request RuntimeOptions
22110
+ * @return GetArmsTopNMetricResponse
22111
+ */
21350
22112
  async getArmsTopNMetricWithOptions(request: GetArmsTopNMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetArmsTopNMetricResponse> {
21351
22113
  Util.validateModel(request);
21352
22114
  let query : {[key: string ]: any} = { };
@@ -21396,12 +22158,26 @@ export default class Client extends OpenApi {
21396
22158
  return $tea.cast<GetArmsTopNMetricResponse>(await this.callApi(params, req, runtime), new GetArmsTopNMetricResponse({}));
21397
22159
  }
21398
22160
 
22161
+ /**
22162
+ * @summary Queries the top N applications in Application Monitoring.
22163
+ *
22164
+ * @param request GetArmsTopNMetricRequest
22165
+ * @return GetArmsTopNMetricResponse
22166
+ */
21399
22167
  async getArmsTopNMetric(request: GetArmsTopNMetricRequest): Promise<GetArmsTopNMetricResponse> {
21400
22168
  let runtime = new $Util.RuntimeOptions({ });
21401
22169
  let headers : {[key: string ]: string} = { };
21402
22170
  return await this.getArmsTopNMetricWithOptions(request, headers, runtime);
21403
22171
  }
21404
22172
 
22173
+ /**
22174
+ * @summary Queries the top N applications in which abnormal instances exist. The applications are sorted by the total number of abnormal instances.
22175
+ *
22176
+ * @param request GetAvailabilityMetricRequest
22177
+ * @param headers map
22178
+ * @param runtime runtime options for this request RuntimeOptions
22179
+ * @return GetAvailabilityMetricResponse
22180
+ */
21405
22181
  async getAvailabilityMetricWithOptions(request: GetAvailabilityMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetAvailabilityMetricResponse> {
21406
22182
  Util.validateModel(request);
21407
22183
  let query : {[key: string ]: any} = { };
@@ -21439,12 +22215,26 @@ export default class Client extends OpenApi {
21439
22215
  return $tea.cast<GetAvailabilityMetricResponse>(await this.callApi(params, req, runtime), new GetAvailabilityMetricResponse({}));
21440
22216
  }
21441
22217
 
22218
+ /**
22219
+ * @summary Queries the top N applications in which abnormal instances exist. The applications are sorted by the total number of abnormal instances.
22220
+ *
22221
+ * @param request GetAvailabilityMetricRequest
22222
+ * @return GetAvailabilityMetricResponse
22223
+ */
21442
22224
  async getAvailabilityMetric(request: GetAvailabilityMetricRequest): Promise<GetAvailabilityMetricResponse> {
21443
22225
  let runtime = new $Util.RuntimeOptions({ });
21444
22226
  let headers : {[key: string ]: string} = { };
21445
22227
  return await this.getAvailabilityMetricWithOptions(request, headers, runtime);
21446
22228
  }
21447
22229
 
22230
+ /**
22231
+ * @summary Queries top N applications in abnormal change orders.
22232
+ *
22233
+ * @param request GetChangeOrderMetricRequest
22234
+ * @param headers map
22235
+ * @param runtime runtime options for this request RuntimeOptions
22236
+ * @return GetChangeOrderMetricResponse
22237
+ */
21448
22238
  async getChangeOrderMetricWithOptions(request: GetChangeOrderMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetChangeOrderMetricResponse> {
21449
22239
  Util.validateModel(request);
21450
22240
  let query : {[key: string ]: any} = { };
@@ -21490,12 +22280,26 @@ export default class Client extends OpenApi {
21490
22280
  return $tea.cast<GetChangeOrderMetricResponse>(await this.callApi(params, req, runtime), new GetChangeOrderMetricResponse({}));
21491
22281
  }
21492
22282
 
22283
+ /**
22284
+ * @summary Queries top N applications in abnormal change orders.
22285
+ *
22286
+ * @param request GetChangeOrderMetricRequest
22287
+ * @return GetChangeOrderMetricResponse
22288
+ */
21493
22289
  async getChangeOrderMetric(request: GetChangeOrderMetricRequest): Promise<GetChangeOrderMetricResponse> {
21494
22290
  let runtime = new $Util.RuntimeOptions({ });
21495
22291
  let headers : {[key: string ]: string} = { };
21496
22292
  return await this.getChangeOrderMetricWithOptions(request, headers, runtime);
21497
22293
  }
21498
22294
 
22295
+ /**
22296
+ * @summary Queries the top N applications in which auto scaling takes effect.
22297
+ *
22298
+ * @param request GetScaleAppMetricRequest
22299
+ * @param headers map
22300
+ * @param runtime runtime options for this request RuntimeOptions
22301
+ * @return GetScaleAppMetricResponse
22302
+ */
21499
22303
  async getScaleAppMetricWithOptions(request: GetScaleAppMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetScaleAppMetricResponse> {
21500
22304
  Util.validateModel(request);
21501
22305
  let query : {[key: string ]: any} = { };
@@ -21533,12 +22337,26 @@ export default class Client extends OpenApi {
21533
22337
  return $tea.cast<GetScaleAppMetricResponse>(await this.callApi(params, req, runtime), new GetScaleAppMetricResponse({}));
21534
22338
  }
21535
22339
 
22340
+ /**
22341
+ * @summary Queries the top N applications in which auto scaling takes effect.
22342
+ *
22343
+ * @param request GetScaleAppMetricRequest
22344
+ * @return GetScaleAppMetricResponse
22345
+ */
21536
22346
  async getScaleAppMetric(request: GetScaleAppMetricRequest): Promise<GetScaleAppMetricResponse> {
21537
22347
  let runtime = new $Util.RuntimeOptions({ });
21538
22348
  let headers : {[key: string ]: string} = { };
21539
22349
  return await this.getScaleAppMetricWithOptions(request, headers, runtime);
21540
22350
  }
21541
22351
 
22352
+ /**
22353
+ * @summary Queries the top N applications in which Warning events occur.
22354
+ *
22355
+ * @param request GetWarningEventMetricRequest
22356
+ * @param headers map
22357
+ * @param runtime runtime options for this request RuntimeOptions
22358
+ * @return GetWarningEventMetricResponse
22359
+ */
21542
22360
  async getWarningEventMetricWithOptions(request: GetWarningEventMetricRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetWarningEventMetricResponse> {
21543
22361
  Util.validateModel(request);
21544
22362
  let query : {[key: string ]: any} = { };
@@ -21584,12 +22402,26 @@ export default class Client extends OpenApi {
21584
22402
  return $tea.cast<GetWarningEventMetricResponse>(await this.callApi(params, req, runtime), new GetWarningEventMetricResponse({}));
21585
22403
  }
21586
22404
 
22405
+ /**
22406
+ * @summary Queries the top N applications in which Warning events occur.
22407
+ *
22408
+ * @param request GetWarningEventMetricRequest
22409
+ * @return GetWarningEventMetricResponse
22410
+ */
21587
22411
  async getWarningEventMetric(request: GetWarningEventMetricRequest): Promise<GetWarningEventMetricResponse> {
21588
22412
  let runtime = new $Util.RuntimeOptions({ });
21589
22413
  let headers : {[key: string ]: string} = { };
21590
22414
  return await this.getWarningEventMetricWithOptions(request, headers, runtime);
21591
22415
  }
21592
22416
 
22417
+ /**
22418
+ * @summary Queries the events that occurred in an application.
22419
+ *
22420
+ * @param request ListAppEventsRequest
22421
+ * @param headers map
22422
+ * @param runtime runtime options for this request RuntimeOptions
22423
+ * @return ListAppEventsResponse
22424
+ */
21593
22425
  async listAppEventsWithOptions(request: ListAppEventsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListAppEventsResponse> {
21594
22426
  Util.validateModel(request);
21595
22427
  let query : {[key: string ]: any} = { };
@@ -21643,12 +22475,26 @@ export default class Client extends OpenApi {
21643
22475
  return $tea.cast<ListAppEventsResponse>(await this.callApi(params, req, runtime), new ListAppEventsResponse({}));
21644
22476
  }
21645
22477
 
22478
+ /**
22479
+ * @summary Queries the events that occurred in an application.
22480
+ *
22481
+ * @param request ListAppEventsRequest
22482
+ * @return ListAppEventsResponse
22483
+ */
21646
22484
  async listAppEvents(request: ListAppEventsRequest): Promise<ListAppEventsResponse> {
21647
22485
  let runtime = new $Util.RuntimeOptions({ });
21648
22486
  let headers : {[key: string ]: string} = { };
21649
22487
  return await this.listAppEventsWithOptions(request, headers, runtime);
21650
22488
  }
21651
22489
 
22490
+ /**
22491
+ * @summary 6dcc8c9e-d3da-478a-a066-86dcf820\\*\\*\\*\\*
22492
+ *
22493
+ * @param request ListAppServicesPageRequest
22494
+ * @param headers map
22495
+ * @param runtime runtime options for this request RuntimeOptions
22496
+ * @return ListAppServicesPageResponse
22497
+ */
21652
22498
  async listAppServicesPageWithOptions(request: ListAppServicesPageRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListAppServicesPageResponse> {
21653
22499
  Util.validateModel(request);
21654
22500
  let query : {[key: string ]: any} = { };
@@ -21686,12 +22532,26 @@ export default class Client extends OpenApi {
21686
22532
  return $tea.cast<ListAppServicesPageResponse>(await this.callApi(params, req, runtime), new ListAppServicesPageResponse({}));
21687
22533
  }
21688
22534
 
22535
+ /**
22536
+ * @summary 6dcc8c9e-d3da-478a-a066-86dcf820\\*\\*\\*\\*
22537
+ *
22538
+ * @param request ListAppServicesPageRequest
22539
+ * @return ListAppServicesPageResponse
22540
+ */
21689
22541
  async listAppServicesPage(request: ListAppServicesPageRequest): Promise<ListAppServicesPageResponse> {
21690
22542
  let runtime = new $Util.RuntimeOptions({ });
21691
22543
  let headers : {[key: string ]: string} = { };
21692
22544
  return await this.listAppServicesPageWithOptions(request, headers, runtime);
21693
22545
  }
21694
22546
 
22547
+ /**
22548
+ * @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
22549
+ *
22550
+ * @param request ListAppVersionsRequest
22551
+ * @param headers map
22552
+ * @param runtime runtime options for this request RuntimeOptions
22553
+ * @return ListAppVersionsResponse
22554
+ */
21695
22555
  async listAppVersionsWithOptions(request: ListAppVersionsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListAppVersionsResponse> {
21696
22556
  Util.validateModel(request);
21697
22557
  let query : {[key: string ]: any} = { };
@@ -21717,12 +22577,26 @@ export default class Client extends OpenApi {
21717
22577
  return $tea.cast<ListAppVersionsResponse>(await this.callApi(params, req, runtime), new ListAppVersionsResponse({}));
21718
22578
  }
21719
22579
 
22580
+ /**
22581
+ * @summary 7171a6ca-d1cd-4928-8642-7d5cfe69\\*\\*\\*\\*
22582
+ *
22583
+ * @param request ListAppVersionsRequest
22584
+ * @return ListAppVersionsResponse
22585
+ */
21720
22586
  async listAppVersions(request: ListAppVersionsRequest): Promise<ListAppVersionsResponse> {
21721
22587
  let runtime = new $Util.RuntimeOptions({ });
21722
22588
  let headers : {[key: string ]: string} = { };
21723
22589
  return await this.listAppVersionsWithOptions(request, headers, runtime);
21724
22590
  }
21725
22591
 
22592
+ /**
22593
+ * @summary The ID of the namespace.
22594
+ *
22595
+ * @param request ListApplicationsRequest
22596
+ * @param headers map
22597
+ * @param runtime runtime options for this request RuntimeOptions
22598
+ * @return ListApplicationsResponse
22599
+ */
21726
22600
  async listApplicationsWithOptions(request: ListApplicationsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListApplicationsResponse> {
21727
22601
  Util.validateModel(request);
21728
22602
  let query : {[key: string ]: any} = { };
@@ -21784,12 +22658,24 @@ export default class Client extends OpenApi {
21784
22658
  return $tea.cast<ListApplicationsResponse>(await this.callApi(params, req, runtime), new ListApplicationsResponse({}));
21785
22659
  }
21786
22660
 
22661
+ /**
22662
+ * @summary The ID of the namespace.
22663
+ *
22664
+ * @param request ListApplicationsRequest
22665
+ * @return ListApplicationsResponse
22666
+ */
21787
22667
  async listApplications(request: ListApplicationsRequest): Promise<ListApplicationsResponse> {
21788
22668
  let runtime = new $Util.RuntimeOptions({ });
21789
22669
  let headers : {[key: string ]: string} = { };
21790
22670
  return await this.listApplicationsWithOptions(request, headers, runtime);
21791
22671
  }
21792
22672
 
22673
+ /**
22674
+ * @param request ListChangeOrdersRequest
22675
+ * @param headers map
22676
+ * @param runtime runtime options for this request RuntimeOptions
22677
+ * @return ListChangeOrdersResponse
22678
+ */
21793
22679
  async listChangeOrdersWithOptions(request: ListChangeOrdersRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListChangeOrdersResponse> {
21794
22680
  Util.validateModel(request);
21795
22681
  let query : {[key: string ]: any} = { };
@@ -21835,12 +22721,24 @@ export default class Client extends OpenApi {
21835
22721
  return $tea.cast<ListChangeOrdersResponse>(await this.callApi(params, req, runtime), new ListChangeOrdersResponse({}));
21836
22722
  }
21837
22723
 
22724
+ /**
22725
+ * @param request ListChangeOrdersRequest
22726
+ * @return ListChangeOrdersResponse
22727
+ */
21838
22728
  async listChangeOrders(request: ListChangeOrdersRequest): Promise<ListChangeOrdersResponse> {
21839
22729
  let runtime = new $Util.RuntimeOptions({ });
21840
22730
  let headers : {[key: string ]: string} = { };
21841
22731
  return await this.listChangeOrdersWithOptions(request, headers, runtime);
21842
22732
  }
21843
22733
 
22734
+ /**
22735
+ * @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
22736
+ *
22737
+ * @param request ListConsumedServicesRequest
22738
+ * @param headers map
22739
+ * @param runtime runtime options for this request RuntimeOptions
22740
+ * @return ListConsumedServicesResponse
22741
+ */
21844
22742
  async listConsumedServicesWithOptions(request: ListConsumedServicesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListConsumedServicesResponse> {
21845
22743
  Util.validateModel(request);
21846
22744
  let query : {[key: string ]: any} = { };
@@ -21866,6 +22764,12 @@ export default class Client extends OpenApi {
21866
22764
  return $tea.cast<ListConsumedServicesResponse>(await this.callApi(params, req, runtime), new ListConsumedServicesResponse({}));
21867
22765
  }
21868
22766
 
22767
+ /**
22768
+ * @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
22769
+ *
22770
+ * @param request ListConsumedServicesRequest
22771
+ * @return ListConsumedServicesResponse
22772
+ */
21869
22773
  async listConsumedServices(request: ListConsumedServicesRequest): Promise<ListConsumedServicesResponse> {
21870
22774
  let runtime = new $Util.RuntimeOptions({ });
21871
22775
  let headers : {[key: string ]: string} = { };
@@ -21873,12 +22777,14 @@ export default class Client extends OpenApi {
21873
22777
  }
21874
22778
 
21875
22779
  /**
21876
- * > You can configure only one canary release rule for each application.
21877
- *
21878
- * @param request ListGreyTagRouteRequest
21879
- * @param headers map
21880
- * @param runtime runtime options for this request RuntimeOptions
21881
- * @return ListGreyTagRouteResponse
22780
+ * @summary Queries the details of a canary release rule based on an application ID.
22781
+ *
22782
+ * @description > You can configure only one canary release rule for each application.
22783
+ *
22784
+ * @param request ListGreyTagRouteRequest
22785
+ * @param headers map
22786
+ * @param runtime runtime options for this request RuntimeOptions
22787
+ * @return ListGreyTagRouteResponse
21882
22788
  */
21883
22789
  async listGreyTagRouteWithOptions(request: ListGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListGreyTagRouteResponse> {
21884
22790
  Util.validateModel(request);
@@ -21906,10 +22812,12 @@ export default class Client extends OpenApi {
21906
22812
  }
21907
22813
 
21908
22814
  /**
21909
- * > You can configure only one canary release rule for each application.
21910
- *
21911
- * @param request ListGreyTagRouteRequest
21912
- * @return ListGreyTagRouteResponse
22815
+ * @summary Queries the details of a canary release rule based on an application ID.
22816
+ *
22817
+ * @description > You can configure only one canary release rule for each application.
22818
+ *
22819
+ * @param request ListGreyTagRouteRequest
22820
+ * @return ListGreyTagRouteResponse
21913
22821
  */
21914
22822
  async listGreyTagRoute(request: ListGreyTagRouteRequest): Promise<ListGreyTagRouteResponse> {
21915
22823
  let runtime = new $Util.RuntimeOptions({ });
@@ -21917,6 +22825,16 @@ export default class Client extends OpenApi {
21917
22825
  return await this.listGreyTagRouteWithOptions(request, headers, runtime);
21918
22826
  }
21919
22827
 
22828
+ /**
22829
+ * @summary The returned message.
22830
+ * * **success** is returned when the request succeeds.
22831
+ * * An error code is returned when the request fails.
22832
+ *
22833
+ * @param request ListIngressesRequest
22834
+ * @param headers map
22835
+ * @param runtime runtime options for this request RuntimeOptions
22836
+ * @return ListIngressesResponse
22837
+ */
21920
22838
  async listIngressesWithOptions(request: ListIngressesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListIngressesResponse> {
21921
22839
  Util.validateModel(request);
21922
22840
  let query : {[key: string ]: any} = { };
@@ -21946,12 +22864,28 @@ export default class Client extends OpenApi {
21946
22864
  return $tea.cast<ListIngressesResponse>(await this.callApi(params, req, runtime), new ListIngressesResponse({}));
21947
22865
  }
21948
22866
 
22867
+ /**
22868
+ * @summary The returned message.
22869
+ * * **success** is returned when the request succeeds.
22870
+ * * An error code is returned when the request fails.
22871
+ *
22872
+ * @param request ListIngressesRequest
22873
+ * @return ListIngressesResponse
22874
+ */
21949
22875
  async listIngresses(request: ListIngressesRequest): Promise<ListIngressesResponse> {
21950
22876
  let runtime = new $Util.RuntimeOptions({ });
21951
22877
  let headers : {[key: string ]: string} = { };
21952
22878
  return await this.listIngressesWithOptions(request, headers, runtime);
21953
22879
  }
21954
22880
 
22881
+ /**
22882
+ * @summary Queries the information about job templates.
22883
+ *
22884
+ * @param request ListJobsRequest
22885
+ * @param headers map
22886
+ * @param runtime runtime options for this request RuntimeOptions
22887
+ * @return ListJobsResponse
22888
+ */
21955
22889
  async listJobsWithOptions(request: ListJobsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListJobsResponse> {
21956
22890
  Util.validateModel(request);
21957
22891
  let query : {[key: string ]: any} = { };
@@ -22013,12 +22947,26 @@ export default class Client extends OpenApi {
22013
22947
  return $tea.cast<ListJobsResponse>(await this.callApi(params, req, runtime), new ListJobsResponse({}));
22014
22948
  }
22015
22949
 
22950
+ /**
22951
+ * @summary Queries the information about job templates.
22952
+ *
22953
+ * @param request ListJobsRequest
22954
+ * @return ListJobsResponse
22955
+ */
22016
22956
  async listJobs(request: ListJobsRequest): Promise<ListJobsResponse> {
22017
22957
  let runtime = new $Util.RuntimeOptions({ });
22018
22958
  let headers : {[key: string ]: string} = { };
22019
22959
  return await this.listJobsWithOptions(request, headers, runtime);
22020
22960
  }
22021
22961
 
22962
+ /**
22963
+ * @summary 56f77b65-788d-442a-9885-7f20d91f\\*\\*\\*\\*
22964
+ *
22965
+ * @param request ListLogConfigsRequest
22966
+ * @param headers map
22967
+ * @param runtime runtime options for this request RuntimeOptions
22968
+ * @return ListLogConfigsResponse
22969
+ */
22022
22970
  async listLogConfigsWithOptions(request: ListLogConfigsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListLogConfigsResponse> {
22023
22971
  Util.validateModel(request);
22024
22972
  let query : {[key: string ]: any} = { };
@@ -22052,12 +23000,24 @@ export default class Client extends OpenApi {
22052
23000
  return $tea.cast<ListLogConfigsResponse>(await this.callApi(params, req, runtime), new ListLogConfigsResponse({}));
22053
23001
  }
22054
23002
 
23003
+ /**
23004
+ * @summary 56f77b65-788d-442a-9885-7f20d91f\\*\\*\\*\\*
23005
+ *
23006
+ * @param request ListLogConfigsRequest
23007
+ * @return ListLogConfigsResponse
23008
+ */
22055
23009
  async listLogConfigs(request: ListLogConfigsRequest): Promise<ListLogConfigsResponse> {
22056
23010
  let runtime = new $Util.RuntimeOptions({ });
22057
23011
  let headers : {[key: string ]: string} = { };
22058
23012
  return await this.listLogConfigsWithOptions(request, headers, runtime);
22059
23013
  }
22060
23014
 
23015
+ /**
23016
+ * @param request ListNamespaceChangeOrdersRequest
23017
+ * @param headers map
23018
+ * @param runtime runtime options for this request RuntimeOptions
23019
+ * @return ListNamespaceChangeOrdersResponse
23020
+ */
22061
23021
  async listNamespaceChangeOrdersWithOptions(request: ListNamespaceChangeOrdersRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListNamespaceChangeOrdersResponse> {
22062
23022
  Util.validateModel(request);
22063
23023
  let query : {[key: string ]: any} = { };
@@ -22103,12 +23063,24 @@ export default class Client extends OpenApi {
22103
23063
  return $tea.cast<ListNamespaceChangeOrdersResponse>(await this.callApi(params, req, runtime), new ListNamespaceChangeOrdersResponse({}));
22104
23064
  }
22105
23065
 
23066
+ /**
23067
+ * @param request ListNamespaceChangeOrdersRequest
23068
+ * @return ListNamespaceChangeOrdersResponse
23069
+ */
22106
23070
  async listNamespaceChangeOrders(request: ListNamespaceChangeOrdersRequest): Promise<ListNamespaceChangeOrdersResponse> {
22107
23071
  let runtime = new $Util.RuntimeOptions({ });
22108
23072
  let headers : {[key: string ]: string} = { };
22109
23073
  return await this.listNamespaceChangeOrdersWithOptions(request, headers, runtime);
22110
23074
  }
22111
23075
 
23076
+ /**
23077
+ * @summary Queries the ConfigMap instances in a namespace.
23078
+ *
23079
+ * @param request ListNamespacedConfigMapsRequest
23080
+ * @param headers map
23081
+ * @param runtime runtime options for this request RuntimeOptions
23082
+ * @return ListNamespacedConfigMapsResponse
23083
+ */
22112
23084
  async listNamespacedConfigMapsWithOptions(request: ListNamespacedConfigMapsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListNamespacedConfigMapsResponse> {
22113
23085
  Util.validateModel(request);
22114
23086
  let query : {[key: string ]: any} = { };
@@ -22134,12 +23106,26 @@ export default class Client extends OpenApi {
22134
23106
  return $tea.cast<ListNamespacedConfigMapsResponse>(await this.callApi(params, req, runtime), new ListNamespacedConfigMapsResponse({}));
22135
23107
  }
22136
23108
 
23109
+ /**
23110
+ * @summary Queries the ConfigMap instances in a namespace.
23111
+ *
23112
+ * @param request ListNamespacedConfigMapsRequest
23113
+ * @return ListNamespacedConfigMapsResponse
23114
+ */
22137
23115
  async listNamespacedConfigMaps(request: ListNamespacedConfigMapsRequest): Promise<ListNamespacedConfigMapsResponse> {
22138
23116
  let runtime = new $Util.RuntimeOptions({ });
22139
23117
  let headers : {[key: string ]: string} = { };
22140
23118
  return await this.listNamespacedConfigMapsWithOptions(request, headers, runtime);
22141
23119
  }
22142
23120
 
23121
+ /**
23122
+ * @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
23123
+ *
23124
+ * @param request ListPublishedServicesRequest
23125
+ * @param headers map
23126
+ * @param runtime runtime options for this request RuntimeOptions
23127
+ * @return ListPublishedServicesResponse
23128
+ */
22143
23129
  async listPublishedServicesWithOptions(request: ListPublishedServicesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListPublishedServicesResponse> {
22144
23130
  Util.validateModel(request);
22145
23131
  let query : {[key: string ]: any} = { };
@@ -22165,12 +23151,26 @@ export default class Client extends OpenApi {
22165
23151
  return $tea.cast<ListPublishedServicesResponse>(await this.callApi(params, req, runtime), new ListPublishedServicesResponse({}));
22166
23152
  }
22167
23153
 
23154
+ /**
23155
+ * @summary b2a8a925-477a-4ed7-b825-d5e22500\\*\\*\\*\\*
23156
+ *
23157
+ * @param request ListPublishedServicesRequest
23158
+ * @return ListPublishedServicesResponse
23159
+ */
22168
23160
  async listPublishedServices(request: ListPublishedServicesRequest): Promise<ListPublishedServicesResponse> {
22169
23161
  let runtime = new $Util.RuntimeOptions({ });
22170
23162
  let headers : {[key: string ]: string} = { };
22171
23163
  return await this.listPublishedServicesWithOptions(request, headers, runtime);
22172
23164
  }
22173
23165
 
23166
+ /**
23167
+ * @summary Queries the information about Secrets in a namespace.
23168
+ *
23169
+ * @param request ListSecretsRequest
23170
+ * @param headers map
23171
+ * @param runtime runtime options for this request RuntimeOptions
23172
+ * @return ListSecretsResponse
23173
+ */
22174
23174
  async listSecretsWithOptions(request: ListSecretsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListSecretsResponse> {
22175
23175
  Util.validateModel(request);
22176
23176
  let query : {[key: string ]: any} = { };
@@ -22196,12 +23196,26 @@ export default class Client extends OpenApi {
22196
23196
  return $tea.cast<ListSecretsResponse>(await this.callApi(params, req, runtime), new ListSecretsResponse({}));
22197
23197
  }
22198
23198
 
23199
+ /**
23200
+ * @summary Queries the information about Secrets in a namespace.
23201
+ *
23202
+ * @param request ListSecretsRequest
23203
+ * @return ListSecretsResponse
23204
+ */
22199
23205
  async listSecrets(request: ListSecretsRequest): Promise<ListSecretsResponse> {
22200
23206
  let runtime = new $Util.RuntimeOptions({ });
22201
23207
  let headers : {[key: string ]: string} = { };
22202
23208
  return await this.listSecretsWithOptions(request, headers, runtime);
22203
23209
  }
22204
23210
 
23211
+ /**
23212
+ * @summary Queries the mapping relationships between applications and tags.
23213
+ *
23214
+ * @param request ListTagResourcesRequest
23215
+ * @param headers map
23216
+ * @param runtime runtime options for this request RuntimeOptions
23217
+ * @return ListTagResourcesResponse
23218
+ */
22205
23219
  async listTagResourcesWithOptions(request: ListTagResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse> {
22206
23220
  Util.validateModel(request);
22207
23221
  let query : {[key: string ]: any} = { };
@@ -22243,6 +23257,12 @@ export default class Client extends OpenApi {
22243
23257
  return $tea.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
22244
23258
  }
22245
23259
 
23260
+ /**
23261
+ * @summary Queries the mapping relationships between applications and tags.
23262
+ *
23263
+ * @param request ListTagResourcesRequest
23264
+ * @return ListTagResourcesResponse
23265
+ */
22246
23266
  async listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse> {
22247
23267
  let runtime = new $Util.RuntimeOptions({ });
22248
23268
  let headers : {[key: string ]: string} = { };
@@ -22250,11 +23270,13 @@ export default class Client extends OpenApi {
22250
23270
  }
22251
23271
 
22252
23272
  /**
22253
- * > Make sure that your account balance is greater than 0. Otherwise, the SAE service cannot be activated.
22254
- *
22255
- * @param headers map
22256
- * @param runtime runtime options for this request RuntimeOptions
22257
- * @return OpenSaeServiceResponse
23273
+ * @summary Activates the Serverless App Engine (SAE) service for free.
23274
+ *
23275
+ * @description > Make sure that your account balance is greater than 0. Otherwise, the SAE service cannot be activated.
23276
+ *
23277
+ * @param headers map
23278
+ * @param runtime runtime options for this request RuntimeOptions
23279
+ * @return OpenSaeServiceResponse
22258
23280
  */
22259
23281
  async openSaeServiceWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<OpenSaeServiceResponse> {
22260
23282
  let req = new $OpenApi.OpenApiRequest({
@@ -22275,9 +23297,11 @@ export default class Client extends OpenApi {
22275
23297
  }
22276
23298
 
22277
23299
  /**
22278
- * > Make sure that your account balance is greater than 0. Otherwise, the SAE service cannot be activated.
22279
- *
22280
- * @return OpenSaeServiceResponse
23300
+ * @summary Activates the Serverless App Engine (SAE) service for free.
23301
+ *
23302
+ * @description > Make sure that your account balance is greater than 0. Otherwise, the SAE service cannot be activated.
23303
+ *
23304
+ * @return OpenSaeServiceResponse
22281
23305
  */
22282
23306
  async openSaeService(): Promise<OpenSaeServiceResponse> {
22283
23307
  let runtime = new $Util.RuntimeOptions({ });
@@ -22285,6 +23309,14 @@ export default class Client extends OpenApi {
22285
23309
  return await this.openSaeServiceWithOptions(headers, runtime);
22286
23310
  }
22287
23311
 
23312
+ /**
23313
+ * @summary Queries the resource usage of an application.
23314
+ *
23315
+ * @param request QueryResourceStaticsRequest
23316
+ * @param headers map
23317
+ * @param runtime runtime options for this request RuntimeOptions
23318
+ * @return QueryResourceStaticsResponse
23319
+ */
22288
23320
  async queryResourceStaticsWithOptions(request: QueryResourceStaticsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryResourceStaticsResponse> {
22289
23321
  Util.validateModel(request);
22290
23322
  let query : {[key: string ]: any} = { };
@@ -22310,12 +23342,26 @@ export default class Client extends OpenApi {
22310
23342
  return $tea.cast<QueryResourceStaticsResponse>(await this.callApi(params, req, runtime), new QueryResourceStaticsResponse({}));
22311
23343
  }
22312
23344
 
23345
+ /**
23346
+ * @summary Queries the resource usage of an application.
23347
+ *
23348
+ * @param request QueryResourceStaticsRequest
23349
+ * @return QueryResourceStaticsResponse
23350
+ */
22313
23351
  async queryResourceStatics(request: QueryResourceStaticsRequest): Promise<QueryResourceStaticsResponse> {
22314
23352
  let runtime = new $Util.RuntimeOptions({ });
22315
23353
  let headers : {[key: string ]: string} = { };
22316
23354
  return await this.queryResourceStaticsWithOptions(request, headers, runtime);
22317
23355
  }
22318
23356
 
23357
+ /**
23358
+ * @summary Reduces capacity by instance IDs.
23359
+ *
23360
+ * @param request ReduceApplicationCapacityByInstanceIdsRequest
23361
+ * @param headers map
23362
+ * @param runtime runtime options for this request RuntimeOptions
23363
+ * @return ReduceApplicationCapacityByInstanceIdsResponse
23364
+ */
22319
23365
  async reduceApplicationCapacityByInstanceIdsWithOptions(request: ReduceApplicationCapacityByInstanceIdsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ReduceApplicationCapacityByInstanceIdsResponse> {
22320
23366
  Util.validateModel(request);
22321
23367
  let query : {[key: string ]: any} = { };
@@ -22345,12 +23391,26 @@ export default class Client extends OpenApi {
22345
23391
  return $tea.cast<ReduceApplicationCapacityByInstanceIdsResponse>(await this.callApi(params, req, runtime), new ReduceApplicationCapacityByInstanceIdsResponse({}));
22346
23392
  }
22347
23393
 
23394
+ /**
23395
+ * @summary Reduces capacity by instance IDs.
23396
+ *
23397
+ * @param request ReduceApplicationCapacityByInstanceIdsRequest
23398
+ * @return ReduceApplicationCapacityByInstanceIdsResponse
23399
+ */
22348
23400
  async reduceApplicationCapacityByInstanceIds(request: ReduceApplicationCapacityByInstanceIdsRequest): Promise<ReduceApplicationCapacityByInstanceIdsResponse> {
22349
23401
  let runtime = new $Util.RuntimeOptions({ });
22350
23402
  let headers : {[key: string ]: string} = { };
22351
23403
  return await this.reduceApplicationCapacityByInstanceIdsWithOptions(request, headers, runtime);
22352
23404
  }
22353
23405
 
23406
+ /**
23407
+ * @summary Scales an application.
23408
+ *
23409
+ * @param request RescaleApplicationRequest
23410
+ * @param headers map
23411
+ * @param runtime runtime options for this request RuntimeOptions
23412
+ * @return RescaleApplicationResponse
23413
+ */
22354
23414
  async rescaleApplicationWithOptions(request: RescaleApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RescaleApplicationResponse> {
22355
23415
  Util.validateModel(request);
22356
23416
  let query : {[key: string ]: any} = { };
@@ -22392,12 +23452,26 @@ export default class Client extends OpenApi {
22392
23452
  return $tea.cast<RescaleApplicationResponse>(await this.callApi(params, req, runtime), new RescaleApplicationResponse({}));
22393
23453
  }
22394
23454
 
23455
+ /**
23456
+ * @summary Scales an application.
23457
+ *
23458
+ * @param request RescaleApplicationRequest
23459
+ * @return RescaleApplicationResponse
23460
+ */
22395
23461
  async rescaleApplication(request: RescaleApplicationRequest): Promise<RescaleApplicationResponse> {
22396
23462
  let runtime = new $Util.RuntimeOptions({ });
22397
23463
  let headers : {[key: string ]: string} = { };
22398
23464
  return await this.rescaleApplicationWithOptions(request, headers, runtime);
22399
23465
  }
22400
23466
 
23467
+ /**
23468
+ * @summary Changes the instance specifications of an application.
23469
+ *
23470
+ * @param request RescaleApplicationVerticallyRequest
23471
+ * @param headers map
23472
+ * @param runtime runtime options for this request RuntimeOptions
23473
+ * @return RescaleApplicationVerticallyResponse
23474
+ */
22401
23475
  async rescaleApplicationVerticallyWithOptions(request: RescaleApplicationVerticallyRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RescaleApplicationVerticallyResponse> {
22402
23476
  Util.validateModel(request);
22403
23477
  let query : {[key: string ]: any} = { };
@@ -22431,12 +23505,26 @@ export default class Client extends OpenApi {
22431
23505
  return $tea.cast<RescaleApplicationVerticallyResponse>(await this.callApi(params, req, runtime), new RescaleApplicationVerticallyResponse({}));
22432
23506
  }
22433
23507
 
23508
+ /**
23509
+ * @summary Changes the instance specifications of an application.
23510
+ *
23511
+ * @param request RescaleApplicationVerticallyRequest
23512
+ * @return RescaleApplicationVerticallyResponse
23513
+ */
22434
23514
  async rescaleApplicationVertically(request: RescaleApplicationVerticallyRequest): Promise<RescaleApplicationVerticallyResponse> {
22435
23515
  let runtime = new $Util.RuntimeOptions({ });
22436
23516
  let headers : {[key: string ]: string} = { };
22437
23517
  return await this.rescaleApplicationVerticallyWithOptions(request, headers, runtime);
22438
23518
  }
22439
23519
 
23520
+ /**
23521
+ * @summary Restarts an application.
23522
+ *
23523
+ * @param request RestartApplicationRequest
23524
+ * @param headers map
23525
+ * @param runtime runtime options for this request RuntimeOptions
23526
+ * @return RestartApplicationResponse
23527
+ */
22440
23528
  async restartApplicationWithOptions(request: RestartApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RestartApplicationResponse> {
22441
23529
  Util.validateModel(request);
22442
23530
  let query : {[key: string ]: any} = { };
@@ -22474,12 +23562,26 @@ export default class Client extends OpenApi {
22474
23562
  return $tea.cast<RestartApplicationResponse>(await this.callApi(params, req, runtime), new RestartApplicationResponse({}));
22475
23563
  }
22476
23564
 
23565
+ /**
23566
+ * @summary Restarts an application.
23567
+ *
23568
+ * @param request RestartApplicationRequest
23569
+ * @return RestartApplicationResponse
23570
+ */
22477
23571
  async restartApplication(request: RestartApplicationRequest): Promise<RestartApplicationResponse> {
22478
23572
  let runtime = new $Util.RuntimeOptions({ });
22479
23573
  let headers : {[key: string ]: string} = { };
22480
23574
  return await this.restartApplicationWithOptions(request, headers, runtime);
22481
23575
  }
22482
23576
 
23577
+ /**
23578
+ * @summary Restarts one or more instances in an application.
23579
+ *
23580
+ * @param request RestartInstancesRequest
23581
+ * @param headers map
23582
+ * @param runtime runtime options for this request RuntimeOptions
23583
+ * @return RestartInstancesResponse
23584
+ */
22483
23585
  async restartInstancesWithOptions(request: RestartInstancesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RestartInstancesResponse> {
22484
23586
  Util.validateModel(request);
22485
23587
  let query : {[key: string ]: any} = { };
@@ -22509,12 +23611,26 @@ export default class Client extends OpenApi {
22509
23611
  return $tea.cast<RestartInstancesResponse>(await this.callApi(params, req, runtime), new RestartInstancesResponse({}));
22510
23612
  }
22511
23613
 
23614
+ /**
23615
+ * @summary Restarts one or more instances in an application.
23616
+ *
23617
+ * @param request RestartInstancesRequest
23618
+ * @return RestartInstancesResponse
23619
+ */
22512
23620
  async restartInstances(request: RestartInstancesRequest): Promise<RestartInstancesResponse> {
22513
23621
  let runtime = new $Util.RuntimeOptions({ });
22514
23622
  let headers : {[key: string ]: string} = { };
22515
23623
  return await this.restartInstancesWithOptions(request, headers, runtime);
22516
23624
  }
22517
23625
 
23626
+ /**
23627
+ * @summary Rolls back an application.
23628
+ *
23629
+ * @param request RollbackApplicationRequest
23630
+ * @param headers map
23631
+ * @param runtime runtime options for this request RuntimeOptions
23632
+ * @return RollbackApplicationResponse
23633
+ */
22518
23634
  async rollbackApplicationWithOptions(request: RollbackApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RollbackApplicationResponse> {
22519
23635
  Util.validateModel(request);
22520
23636
  let query : {[key: string ]: any} = { };
@@ -22564,12 +23680,26 @@ export default class Client extends OpenApi {
22564
23680
  return $tea.cast<RollbackApplicationResponse>(await this.callApi(params, req, runtime), new RollbackApplicationResponse({}));
22565
23681
  }
22566
23682
 
23683
+ /**
23684
+ * @summary Rolls back an application.
23685
+ *
23686
+ * @param request RollbackApplicationRequest
23687
+ * @return RollbackApplicationResponse
23688
+ */
22567
23689
  async rollbackApplication(request: RollbackApplicationRequest): Promise<RollbackApplicationResponse> {
22568
23690
  let runtime = new $Util.RuntimeOptions({ });
22569
23691
  let headers : {[key: string ]: string} = { };
22570
23692
  return await this.rollbackApplicationWithOptions(request, headers, runtime);
22571
23693
  }
22572
23694
 
23695
+ /**
23696
+ * @summary Starts an application.
23697
+ *
23698
+ * @param request StartApplicationRequest
23699
+ * @param headers map
23700
+ * @param runtime runtime options for this request RuntimeOptions
23701
+ * @return StartApplicationResponse
23702
+ */
22573
23703
  async startApplicationWithOptions(request: StartApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<StartApplicationResponse> {
22574
23704
  Util.validateModel(request);
22575
23705
  let query : {[key: string ]: any} = { };
@@ -22595,12 +23725,26 @@ export default class Client extends OpenApi {
22595
23725
  return $tea.cast<StartApplicationResponse>(await this.callApi(params, req, runtime), new StartApplicationResponse({}));
22596
23726
  }
22597
23727
 
23728
+ /**
23729
+ * @summary Starts an application.
23730
+ *
23731
+ * @param request StartApplicationRequest
23732
+ * @return StartApplicationResponse
23733
+ */
22598
23734
  async startApplication(request: StartApplicationRequest): Promise<StartApplicationResponse> {
22599
23735
  let runtime = new $Util.RuntimeOptions({ });
22600
23736
  let headers : {[key: string ]: string} = { };
22601
23737
  return await this.startApplicationWithOptions(request, headers, runtime);
22602
23738
  }
22603
23739
 
23740
+ /**
23741
+ * @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
23742
+ *
23743
+ * @param request StopApplicationRequest
23744
+ * @param headers map
23745
+ * @param runtime runtime options for this request RuntimeOptions
23746
+ * @return StopApplicationResponse
23747
+ */
22604
23748
  async stopApplicationWithOptions(request: StopApplicationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<StopApplicationResponse> {
22605
23749
  Util.validateModel(request);
22606
23750
  let query : {[key: string ]: any} = { };
@@ -22626,12 +23770,26 @@ export default class Client extends OpenApi {
22626
23770
  return $tea.cast<StopApplicationResponse>(await this.callApi(params, req, runtime), new StopApplicationResponse({}));
22627
23771
  }
22628
23772
 
23773
+ /**
23774
+ * @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
23775
+ *
23776
+ * @param request StopApplicationRequest
23777
+ * @return StopApplicationResponse
23778
+ */
22629
23779
  async stopApplication(request: StopApplicationRequest): Promise<StopApplicationResponse> {
22630
23780
  let runtime = new $Util.RuntimeOptions({ });
22631
23781
  let headers : {[key: string ]: string} = { };
22632
23782
  return await this.stopApplicationWithOptions(request, headers, runtime);
22633
23783
  }
22634
23784
 
23785
+ /**
23786
+ * @summary Suspends a job.
23787
+ *
23788
+ * @param request SuspendJobRequest
23789
+ * @param headers map
23790
+ * @param runtime runtime options for this request RuntimeOptions
23791
+ * @return SuspendJobResponse
23792
+ */
22635
23793
  async suspendJobWithOptions(request: SuspendJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<SuspendJobResponse> {
22636
23794
  Util.validateModel(request);
22637
23795
  let query : {[key: string ]: any} = { };
@@ -22661,12 +23819,26 @@ export default class Client extends OpenApi {
22661
23819
  return $tea.cast<SuspendJobResponse>(await this.callApi(params, req, runtime), new SuspendJobResponse({}));
22662
23820
  }
22663
23821
 
23822
+ /**
23823
+ * @summary Suspends a job.
23824
+ *
23825
+ * @param request SuspendJobRequest
23826
+ * @return SuspendJobResponse
23827
+ */
22664
23828
  async suspendJob(request: SuspendJobRequest): Promise<SuspendJobResponse> {
22665
23829
  let runtime = new $Util.RuntimeOptions({ });
22666
23830
  let headers : {[key: string ]: string} = { };
22667
23831
  return await this.suspendJobWithOptions(request, headers, runtime);
22668
23832
  }
22669
23833
 
23834
+ /**
23835
+ * @summary cn-beijing
23836
+ *
23837
+ * @param request TagResourcesRequest
23838
+ * @param headers map
23839
+ * @param runtime runtime options for this request RuntimeOptions
23840
+ * @return TagResourcesResponse
23841
+ */
22670
23842
  async tagResourcesWithOptions(request: TagResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse> {
22671
23843
  Util.validateModel(request);
22672
23844
  let body : {[key: string ]: any} = { };
@@ -22704,12 +23876,26 @@ export default class Client extends OpenApi {
22704
23876
  return $tea.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
22705
23877
  }
22706
23878
 
23879
+ /**
23880
+ * @summary cn-beijing
23881
+ *
23882
+ * @param request TagResourcesRequest
23883
+ * @return TagResourcesResponse
23884
+ */
22707
23885
  async tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse> {
22708
23886
  let runtime = new $Util.RuntimeOptions({ });
22709
23887
  let headers : {[key: string ]: string} = { };
22710
23888
  return await this.tagResourcesWithOptions(request, headers, runtime);
22711
23889
  }
22712
23890
 
23891
+ /**
23892
+ * @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
23893
+ *
23894
+ * @param request UnbindSlbRequest
23895
+ * @param headers map
23896
+ * @param runtime runtime options for this request RuntimeOptions
23897
+ * @return UnbindSlbResponse
23898
+ */
22713
23899
  async unbindSlbWithOptions(request: UnbindSlbRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UnbindSlbResponse> {
22714
23900
  Util.validateModel(request);
22715
23901
  let query : {[key: string ]: any} = { };
@@ -22743,12 +23929,24 @@ export default class Client extends OpenApi {
22743
23929
  return $tea.cast<UnbindSlbResponse>(await this.callApi(params, req, runtime), new UnbindSlbResponse({}));
22744
23930
  }
22745
23931
 
23932
+ /**
23933
+ * @summary 0099b7be-5f5b-4512-a7fc-56049ef1\\*\\*\\*\\*
23934
+ *
23935
+ * @param request UnbindSlbRequest
23936
+ * @return UnbindSlbResponse
23937
+ */
22746
23938
  async unbindSlb(request: UnbindSlbRequest): Promise<UnbindSlbResponse> {
22747
23939
  let runtime = new $Util.RuntimeOptions({ });
22748
23940
  let headers : {[key: string ]: string} = { };
22749
23941
  return await this.unbindSlbWithOptions(request, headers, runtime);
22750
23942
  }
22751
23943
 
23944
+ /**
23945
+ * @param request UntagResourcesRequest
23946
+ * @param headers map
23947
+ * @param runtime runtime options for this request RuntimeOptions
23948
+ * @return UntagResourcesResponse
23949
+ */
22752
23950
  async untagResourcesWithOptions(request: UntagResourcesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse> {
22753
23951
  Util.validateModel(request);
22754
23952
  let query : {[key: string ]: any} = { };
@@ -22790,12 +23988,24 @@ export default class Client extends OpenApi {
22790
23988
  return $tea.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
22791
23989
  }
22792
23990
 
23991
+ /**
23992
+ * @param request UntagResourcesRequest
23993
+ * @return UntagResourcesResponse
23994
+ */
22793
23995
  async untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse> {
22794
23996
  let runtime = new $Util.RuntimeOptions({ });
22795
23997
  let headers : {[key: string ]: string} = { };
22796
23998
  return await this.untagResourcesWithOptions(request, headers, runtime);
22797
23999
  }
22798
24000
 
24001
+ /**
24002
+ * @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
24003
+ *
24004
+ * @param request UpdateAppSecurityGroupRequest
24005
+ * @param headers map
24006
+ * @param runtime runtime options for this request RuntimeOptions
24007
+ * @return UpdateAppSecurityGroupResponse
24008
+ */
22799
24009
  async updateAppSecurityGroupWithOptions(request: UpdateAppSecurityGroupRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateAppSecurityGroupResponse> {
22800
24010
  Util.validateModel(request);
22801
24011
  let query : {[key: string ]: any} = { };
@@ -22825,12 +24035,26 @@ export default class Client extends OpenApi {
22825
24035
  return $tea.cast<UpdateAppSecurityGroupResponse>(await this.callApi(params, req, runtime), new UpdateAppSecurityGroupResponse({}));
22826
24036
  }
22827
24037
 
24038
+ /**
24039
+ * @summary 017f39b8-dfa4-4e16-a84b-1dcee4b1\\*\\*\\*\\*
24040
+ *
24041
+ * @param request UpdateAppSecurityGroupRequest
24042
+ * @return UpdateAppSecurityGroupResponse
24043
+ */
22828
24044
  async updateAppSecurityGroup(request: UpdateAppSecurityGroupRequest): Promise<UpdateAppSecurityGroupResponse> {
22829
24045
  let runtime = new $Util.RuntimeOptions({ });
22830
24046
  let headers : {[key: string ]: string} = { };
22831
24047
  return await this.updateAppSecurityGroupWithOptions(request, headers, runtime);
22832
24048
  }
22833
24049
 
24050
+ /**
24051
+ * @summary 更新应用描述信息
24052
+ *
24053
+ * @param request UpdateApplicationDescriptionRequest
24054
+ * @param headers map
24055
+ * @param runtime runtime options for this request RuntimeOptions
24056
+ * @return UpdateApplicationDescriptionResponse
24057
+ */
22834
24058
  async updateApplicationDescriptionWithOptions(request: UpdateApplicationDescriptionRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationDescriptionResponse> {
22835
24059
  Util.validateModel(request);
22836
24060
  let query : {[key: string ]: any} = { };
@@ -22860,6 +24084,12 @@ export default class Client extends OpenApi {
22860
24084
  return $tea.cast<UpdateApplicationDescriptionResponse>(await this.callApi(params, req, runtime), new UpdateApplicationDescriptionResponse({}));
22861
24085
  }
22862
24086
 
24087
+ /**
24088
+ * @summary 更新应用描述信息
24089
+ *
24090
+ * @param request UpdateApplicationDescriptionRequest
24091
+ * @return UpdateApplicationDescriptionResponse
24092
+ */
22863
24093
  async updateApplicationDescription(request: UpdateApplicationDescriptionRequest): Promise<UpdateApplicationDescriptionResponse> {
22864
24094
  let runtime = new $Util.RuntimeOptions({ });
22865
24095
  let headers : {[key: string ]: string} = { };
@@ -22867,13 +24097,15 @@ export default class Client extends OpenApi {
22867
24097
  }
22868
24098
 
22869
24099
  /**
22870
- * ##
22871
- * If you want to configure more than 50 instances for an application, you must submit a [ticket](https://workorder.console.aliyun.com/#/ticket/createIndex) to add your account to the whitelist.
22872
- *
22873
- * @param request UpdateApplicationScalingRuleRequest
22874
- * @param headers map
22875
- * @param runtime runtime options for this request RuntimeOptions
22876
- * @return UpdateApplicationScalingRuleResponse
24100
+ * @summary Updates the auto scaling policy of an application.
24101
+ *
24102
+ * @description ##
24103
+ * If you want to configure more than 50 instances for an application, you must submit a [ticket](https://workorder.console.aliyun.com/#/ticket/createIndex) to add your account to the whitelist.
24104
+ *
24105
+ * @param request UpdateApplicationScalingRuleRequest
24106
+ * @param headers map
24107
+ * @param runtime runtime options for this request RuntimeOptions
24108
+ * @return UpdateApplicationScalingRuleResponse
22877
24109
  */
22878
24110
  async updateApplicationScalingRuleWithOptions(request: UpdateApplicationScalingRuleRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationScalingRuleResponse> {
22879
24111
  Util.validateModel(request);
@@ -22921,11 +24153,13 @@ export default class Client extends OpenApi {
22921
24153
  }
22922
24154
 
22923
24155
  /**
22924
- * ##
22925
- * If you want to configure more than 50 instances for an application, you must submit a [ticket](https://workorder.console.aliyun.com/#/ticket/createIndex) to add your account to the whitelist.
22926
- *
22927
- * @param request UpdateApplicationScalingRuleRequest
22928
- * @return UpdateApplicationScalingRuleResponse
24156
+ * @summary Updates the auto scaling policy of an application.
24157
+ *
24158
+ * @description ##
24159
+ * If you want to configure more than 50 instances for an application, you must submit a [ticket](https://workorder.console.aliyun.com/#/ticket/createIndex) to add your account to the whitelist.
24160
+ *
24161
+ * @param request UpdateApplicationScalingRuleRequest
24162
+ * @return UpdateApplicationScalingRuleResponse
22929
24163
  */
22930
24164
  async updateApplicationScalingRule(request: UpdateApplicationScalingRuleRequest): Promise<UpdateApplicationScalingRuleResponse> {
22931
24165
  let runtime = new $Util.RuntimeOptions({ });
@@ -22933,6 +24167,12 @@ export default class Client extends OpenApi {
22933
24167
  return await this.updateApplicationScalingRuleWithOptions(request, headers, runtime);
22934
24168
  }
22935
24169
 
24170
+ /**
24171
+ * @param request UpdateApplicationVswitchesRequest
24172
+ * @param headers map
24173
+ * @param runtime runtime options for this request RuntimeOptions
24174
+ * @return UpdateApplicationVswitchesResponse
24175
+ */
22936
24176
  async updateApplicationVswitchesWithOptions(request: UpdateApplicationVswitchesRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationVswitchesResponse> {
22937
24177
  Util.validateModel(request);
22938
24178
  let query : {[key: string ]: any} = { };
@@ -22962,12 +24202,24 @@ export default class Client extends OpenApi {
22962
24202
  return $tea.cast<UpdateApplicationVswitchesResponse>(await this.callApi(params, req, runtime), new UpdateApplicationVswitchesResponse({}));
22963
24203
  }
22964
24204
 
24205
+ /**
24206
+ * @param request UpdateApplicationVswitchesRequest
24207
+ * @return UpdateApplicationVswitchesResponse
24208
+ */
22965
24209
  async updateApplicationVswitches(request: UpdateApplicationVswitchesRequest): Promise<UpdateApplicationVswitchesResponse> {
22966
24210
  let runtime = new $Util.RuntimeOptions({ });
22967
24211
  let headers : {[key: string ]: string} = { };
22968
24212
  return await this.updateApplicationVswitchesWithOptions(request, headers, runtime);
22969
24213
  }
22970
24214
 
24215
+ /**
24216
+ * @summary 1
24217
+ *
24218
+ * @param request UpdateConfigMapRequest
24219
+ * @param headers map
24220
+ * @param runtime runtime options for this request RuntimeOptions
24221
+ * @return UpdateConfigMapResponse
24222
+ */
22971
24223
  async updateConfigMapWithOptions(request: UpdateConfigMapRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateConfigMapResponse> {
22972
24224
  Util.validateModel(request);
22973
24225
  let query : {[key: string ]: any} = { };
@@ -23003,12 +24255,26 @@ export default class Client extends OpenApi {
23003
24255
  return $tea.cast<UpdateConfigMapResponse>(await this.callApi(params, req, runtime), new UpdateConfigMapResponse({}));
23004
24256
  }
23005
24257
 
24258
+ /**
24259
+ * @summary 1
24260
+ *
24261
+ * @param request UpdateConfigMapRequest
24262
+ * @return UpdateConfigMapResponse
24263
+ */
23006
24264
  async updateConfigMap(request: UpdateConfigMapRequest): Promise<UpdateConfigMapResponse> {
23007
24265
  let runtime = new $Util.RuntimeOptions({ });
23008
24266
  let headers : {[key: string ]: string} = { };
23009
24267
  return await this.updateConfigMapWithOptions(request, headers, runtime);
23010
24268
  }
23011
24269
 
24270
+ /**
24271
+ * @summary Updates a canary release rule.
24272
+ *
24273
+ * @param request UpdateGreyTagRouteRequest
24274
+ * @param headers map
24275
+ * @param runtime runtime options for this request RuntimeOptions
24276
+ * @return UpdateGreyTagRouteResponse
24277
+ */
23012
24278
  async updateGreyTagRouteWithOptions(request: UpdateGreyTagRouteRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateGreyTagRouteResponse> {
23013
24279
  Util.validateModel(request);
23014
24280
  let query : {[key: string ]: any} = { };
@@ -23050,12 +24316,24 @@ export default class Client extends OpenApi {
23050
24316
  return $tea.cast<UpdateGreyTagRouteResponse>(await this.callApi(params, req, runtime), new UpdateGreyTagRouteResponse({}));
23051
24317
  }
23052
24318
 
24319
+ /**
24320
+ * @summary Updates a canary release rule.
24321
+ *
24322
+ * @param request UpdateGreyTagRouteRequest
24323
+ * @return UpdateGreyTagRouteResponse
24324
+ */
23053
24325
  async updateGreyTagRoute(request: UpdateGreyTagRouteRequest): Promise<UpdateGreyTagRouteResponse> {
23054
24326
  let runtime = new $Util.RuntimeOptions({ });
23055
24327
  let headers : {[key: string ]: string} = { };
23056
24328
  return await this.updateGreyTagRouteWithOptions(request, headers, runtime);
23057
24329
  }
23058
24330
 
24331
+ /**
24332
+ * @param request UpdateIngressRequest
24333
+ * @param headers map
24334
+ * @param runtime runtime options for this request RuntimeOptions
24335
+ * @return UpdateIngressResponse
24336
+ */
23059
24337
  async updateIngressWithOptions(request: UpdateIngressRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateIngressResponse> {
23060
24338
  Util.validateModel(request);
23061
24339
  let query : {[key: string ]: any} = { };
@@ -23115,12 +24393,24 @@ export default class Client extends OpenApi {
23115
24393
  return $tea.cast<UpdateIngressResponse>(await this.callApi(params, req, runtime), new UpdateIngressResponse({}));
23116
24394
  }
23117
24395
 
24396
+ /**
24397
+ * @param request UpdateIngressRequest
24398
+ * @return UpdateIngressResponse
24399
+ */
23118
24400
  async updateIngress(request: UpdateIngressRequest): Promise<UpdateIngressResponse> {
23119
24401
  let runtime = new $Util.RuntimeOptions({ });
23120
24402
  let headers : {[key: string ]: string} = { };
23121
24403
  return await this.updateIngressWithOptions(request, headers, runtime);
23122
24404
  }
23123
24405
 
24406
+ /**
24407
+ * @summary Updates a job template.
24408
+ *
24409
+ * @param request UpdateJobRequest
24410
+ * @param headers map
24411
+ * @param runtime runtime options for this request RuntimeOptions
24412
+ * @return UpdateJobResponse
24413
+ */
23124
24414
  async updateJobWithOptions(request: UpdateJobRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateJobResponse> {
23125
24415
  Util.validateModel(request);
23126
24416
  let query : {[key: string ]: any} = { };
@@ -23324,12 +24614,26 @@ export default class Client extends OpenApi {
23324
24614
  return $tea.cast<UpdateJobResponse>(await this.callApi(params, req, runtime), new UpdateJobResponse({}));
23325
24615
  }
23326
24616
 
24617
+ /**
24618
+ * @summary Updates a job template.
24619
+ *
24620
+ * @param request UpdateJobRequest
24621
+ * @return UpdateJobResponse
24622
+ */
23327
24623
  async updateJob(request: UpdateJobRequest): Promise<UpdateJobResponse> {
23328
24624
  let runtime = new $Util.RuntimeOptions({ });
23329
24625
  let headers : {[key: string ]: string} = { };
23330
24626
  return await this.updateJobWithOptions(request, headers, runtime);
23331
24627
  }
23332
24628
 
24629
+ /**
24630
+ * @summary Updates the information about a namespace.
24631
+ *
24632
+ * @param request UpdateNamespaceRequest
24633
+ * @param headers map
24634
+ * @param runtime runtime options for this request RuntimeOptions
24635
+ * @return UpdateNamespaceResponse
24636
+ */
23333
24637
  async updateNamespaceWithOptions(request: UpdateNamespaceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateNamespaceResponse> {
23334
24638
  Util.validateModel(request);
23335
24639
  let query : {[key: string ]: any} = { };
@@ -23371,12 +24675,26 @@ export default class Client extends OpenApi {
23371
24675
  return $tea.cast<UpdateNamespaceResponse>(await this.callApi(params, req, runtime), new UpdateNamespaceResponse({}));
23372
24676
  }
23373
24677
 
24678
+ /**
24679
+ * @summary Updates the information about a namespace.
24680
+ *
24681
+ * @param request UpdateNamespaceRequest
24682
+ * @return UpdateNamespaceResponse
24683
+ */
23374
24684
  async updateNamespace(request: UpdateNamespaceRequest): Promise<UpdateNamespaceResponse> {
23375
24685
  let runtime = new $Util.RuntimeOptions({ });
23376
24686
  let headers : {[key: string ]: string} = { };
23377
24687
  return await this.updateNamespaceWithOptions(request, headers, runtime);
23378
24688
  }
23379
24689
 
24690
+ /**
24691
+ * @summary cn-beijing:test
24692
+ *
24693
+ * @param request UpdateNamespaceVpcRequest
24694
+ * @param headers map
24695
+ * @param runtime runtime options for this request RuntimeOptions
24696
+ * @return UpdateNamespaceVpcResponse
24697
+ */
23380
24698
  async updateNamespaceVpcWithOptions(request: UpdateNamespaceVpcRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateNamespaceVpcResponse> {
23381
24699
  Util.validateModel(request);
23382
24700
  let query : {[key: string ]: any} = { };
@@ -23410,12 +24728,30 @@ export default class Client extends OpenApi {
23410
24728
  return $tea.cast<UpdateNamespaceVpcResponse>(await this.callApi(params, req, runtime), new UpdateNamespaceVpcResponse({}));
23411
24729
  }
23412
24730
 
24731
+ /**
24732
+ * @summary cn-beijing:test
24733
+ *
24734
+ * @param request UpdateNamespaceVpcRequest
24735
+ * @return UpdateNamespaceVpcResponse
24736
+ */
23413
24737
  async updateNamespaceVpc(request: UpdateNamespaceVpcRequest): Promise<UpdateNamespaceVpcResponse> {
23414
24738
  let runtime = new $Util.RuntimeOptions({ });
23415
24739
  let headers : {[key: string ]: string} = { };
23416
24740
  return await this.updateNamespaceVpcWithOptions(request, headers, runtime);
23417
24741
  }
23418
24742
 
24743
+ /**
24744
+ * @summary The HTTP status code. Valid values:
24745
+ * * **2xx**: The call was successful.
24746
+ * * **3xx**: The call was redirected.
24747
+ * * **4xx**: The call failed.
24748
+ * * **5xx**: A server error occurred.
24749
+ *
24750
+ * @param tmpReq UpdateSecretRequest
24751
+ * @param headers map
24752
+ * @param runtime runtime options for this request RuntimeOptions
24753
+ * @return UpdateSecretResponse
24754
+ */
23419
24755
  async updateSecretWithOptions(tmpReq: UpdateSecretRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateSecretResponse> {
23420
24756
  Util.validateModel(tmpReq);
23421
24757
  let request = new UpdateSecretShrinkRequest({ });
@@ -23455,6 +24791,16 @@ export default class Client extends OpenApi {
23455
24791
  return $tea.cast<UpdateSecretResponse>(await this.callApi(params, req, runtime), new UpdateSecretResponse({}));
23456
24792
  }
23457
24793
 
24794
+ /**
24795
+ * @summary The HTTP status code. Valid values:
24796
+ * * **2xx**: The call was successful.
24797
+ * * **3xx**: The call was redirected.
24798
+ * * **4xx**: The call failed.
24799
+ * * **5xx**: A server error occurred.
24800
+ *
24801
+ * @param request UpdateSecretRequest
24802
+ * @return UpdateSecretResponse
24803
+ */
23458
24804
  async updateSecret(request: UpdateSecretRequest): Promise<UpdateSecretResponse> {
23459
24805
  let runtime = new $Util.RuntimeOptions({ });
23460
24806
  let headers : {[key: string ]: string} = { };