@alicloud/sae20190506 1.24.8 → 1.25.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.d.ts CHANGED
@@ -1024,6 +1024,7 @@ export declare class ImageConfig extends $tea.Model {
1024
1024
  accelerationType?: string;
1025
1025
  image?: string;
1026
1026
  instanceID?: string;
1027
+ registryConfig?: RegistryConfig;
1027
1028
  static names(): {
1028
1029
  [key: string]: string;
1029
1030
  };
@@ -1844,6 +1845,58 @@ export declare class PublishWebApplicationRevisionInput extends $tea.Model {
1844
1845
  [key: string]: any;
1845
1846
  });
1846
1847
  }
1848
+ export declare class RegistryAuthConfig extends $tea.Model {
1849
+ /**
1850
+ * @example
1851
+ * abc***
1852
+ */
1853
+ password?: string;
1854
+ /**
1855
+ * @example
1856
+ * acs:ram::142xxxx:role/xxxxxx
1857
+ */
1858
+ role?: string;
1859
+ /**
1860
+ * @example
1861
+ * admin
1862
+ */
1863
+ userName?: string;
1864
+ static names(): {
1865
+ [key: string]: string;
1866
+ };
1867
+ static types(): {
1868
+ [key: string]: any;
1869
+ };
1870
+ constructor(map?: {
1871
+ [key: string]: any;
1872
+ });
1873
+ }
1874
+ export declare class RegistryCertConfig extends $tea.Model {
1875
+ insecure?: boolean;
1876
+ rootCaCertBase64?: string;
1877
+ static names(): {
1878
+ [key: string]: string;
1879
+ };
1880
+ static types(): {
1881
+ [key: string]: any;
1882
+ };
1883
+ constructor(map?: {
1884
+ [key: string]: any;
1885
+ });
1886
+ }
1887
+ export declare class RegistryConfig extends $tea.Model {
1888
+ authConfig?: RegistryAuthConfig;
1889
+ certConfig?: RegistryCertConfig;
1890
+ static names(): {
1891
+ [key: string]: string;
1892
+ };
1893
+ static types(): {
1894
+ [key: string]: any;
1895
+ };
1896
+ constructor(map?: {
1897
+ [key: string]: any;
1898
+ });
1899
+ }
1847
1900
  export declare class Revision extends $tea.Model {
1848
1901
  createdTime?: string;
1849
1902
  description?: string;
@@ -3224,7 +3277,7 @@ export declare class BatchStopApplicationsRequest extends $tea.Model {
3224
3277
  * The ID of the request.
3225
3278
  *
3226
3279
  * @example
3227
- * ebf491f0-c1a5-45e2-b2c4-710dbe2a****,ebf491f0-c1a5-45e2-b2c4-71025e2a****
3280
+ * ebf491f0-c1a5-45e2-b2c4-710dbe2a****
3228
3281
  */
3229
3282
  appIds?: string;
3230
3283
  /**
@@ -3721,6 +3774,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
3721
3774
  * 3.5.3
3722
3775
  */
3723
3776
  edasContainerVersion?: string;
3777
+ enableCpuBurst?: boolean;
3724
3778
  enableEbpf?: string;
3725
3779
  enableNewArms?: boolean;
3726
3780
  /**
@@ -4537,17 +4591,34 @@ export declare class CreateGreyTagRouteResponse extends $tea.Model {
4537
4591
  }
4538
4592
  export declare class CreateIngressRequest extends $tea.Model {
4539
4593
  /**
4594
+ * @remarks
4595
+ * The ID of the certificate that is associated with the **CLB** instance.
4596
+ *
4597
+ * * If you set **LoadBalanceType** to **clb**, you can use CertId to configure a certificate for the HTTPS listener.
4598
+ *
4599
+ * For more information about how to manage the SSL certificate IDs that are used by CLB instances, see [Overview](https://help.aliyun.com/document_detail/90792.html).
4600
+ *
4540
4601
  * @example
4541
4602
  * 188077086902****_176993d****_181437****_108724****
4542
4603
  */
4543
4604
  certId?: string;
4544
4605
  /**
4606
+ * @remarks
4607
+ * The IDs of the certificates that are associated with the **ALB** instance.
4608
+ *
4609
+ * * If you set **LoadBalanceType** to **alb**, you can use CertIds to configure multiple certificates for the HTTPS listener. Separate multiple certificate IDs with commas (,).
4610
+ * * The ID of the SSL certificate that is used by an ALB instance can be obtained from Certificate Management Service. For example, if you specify `756***-cn-hangzhou`, `756***` is the certificate ID that is obtained from the service page, and `-cn-hangzhou` is the fixed suffix. For more information, see [Manage certificates](https://help.aliyun.com/document_detail/209076.html).
4611
+ *
4545
4612
  * @example
4546
4613
  * 87***35-cn-hangzhou,812***3-cn-hangzhou
4547
4614
  */
4548
4615
  certIds?: string;
4549
4616
  /**
4550
4617
  * @remarks
4618
+ * Default forwarding rule. Traffic is forwarded to the specified application through a designated port based on the IP address. Parameter descriptions are as follows:
4619
+ * - **appId**: Application ID. - **containerPort**: Application instance port.
4620
+ * > All requests that do not match or do not meet the **Rules** for forwarding will be directed to this specified application.
4621
+ *
4551
4622
  * This parameter is required.
4552
4623
  *
4553
4624
  * @example
@@ -4555,13 +4626,28 @@ export declare class CreateIngressRequest extends $tea.Model {
4555
4626
  */
4556
4627
  defaultRule?: string;
4557
4628
  /**
4629
+ * @remarks
4630
+ * Route rule name.
4631
+ *
4558
4632
  * @example
4559
4633
  * ingress-for-sae-test
4560
4634
  */
4561
4635
  description?: string;
4636
+ /**
4637
+ * @remarks
4638
+ * The timeout period of an idle connection. Unit: seconds. Valid values: 1 to 60.
4639
+ *
4640
+ * If no request is received within the specified timeout period, ALB closes the current connection. When another request is received, ALB establishes a new connection.
4641
+ *
4642
+ * @example
4643
+ * 15
4644
+ */
4562
4645
  idleTimeout?: number;
4563
4646
  /**
4564
4647
  * @remarks
4648
+ * SThe frontend port that is used by the ALB instance.
4649
+ * Valid values: 1 to 65535.
4650
+ *
4565
4651
  * This parameter is required.
4566
4652
  *
4567
4653
  * @example
@@ -4569,35 +4655,77 @@ export declare class CreateIngressRequest extends $tea.Model {
4569
4655
  */
4570
4656
  listenerPort?: number;
4571
4657
  /**
4658
+ * @remarks
4659
+ * Request forwarding protocol. The value description is as follows:
4660
+ * - **HTTP**: Suitable for applications that need to identify data content. - **HTTPS**: Suitable for applications that require encrypted transmission.
4661
+ *
4572
4662
  * @example
4573
4663
  * HTTP
4574
4664
  */
4575
4665
  listenerProtocol?: string;
4576
4666
  /**
4667
+ * @remarks
4668
+ * The type of the SLB instance. The instance type can be specified only when you create a routing rule. You cannot change the instance type when you update the routing rule. Valid values:
4669
+ *
4670
+ * * **clb**
4671
+ * * **alb**
4672
+ *
4577
4673
  * @example
4578
4674
  * clb
4579
4675
  */
4580
4676
  loadBalanceType?: string;
4581
4677
  /**
4582
4678
  * @remarks
4679
+ * The ID of the namespace where the application is located. Currently, cross-namespace applications are not supported.
4680
+ *
4583
4681
  * This parameter is required.
4584
4682
  *
4585
4683
  * @example
4586
4684
  * cn-beijing:sae-test
4587
4685
  */
4588
4686
  namespaceId?: string;
4687
+ /**
4688
+ * @remarks
4689
+ * The timeout period of a request. Unit: seconds. Valid values: 1 to 180.
4690
+ * If no response is received from the backend server within the specified timeout period, ALB returns an HTTP 504 error code to the client.
4691
+ *
4692
+ * @example
4693
+ * 3
4694
+ */
4589
4695
  requestTimeout?: number;
4590
4696
  /**
4591
4697
  * @remarks
4698
+ * The forwarding rules. You can specify a port and an application in a forwarding rule to forward traffic based on the specified domain name and request path. The following list describes the involved parameters:
4699
+ *
4700
+ * * **appId**: the ID of the application.
4701
+ * * **containerPort**: the container port of the application.
4702
+ * * **domain**: the domain name.
4703
+ * * **path**: the request path.
4704
+ * * **backendProtocol**: the backend service protocol. Valid values: http, https, and grpc. Default value: http.
4705
+ * * **rewritePath**: the rewrite path.
4706
+ *
4707
+ * > The path rewrite feature is supported only by ALB instances.
4708
+ *
4592
4709
  * This parameter is required.
4593
4710
  *
4594
4711
  * @example
4595
4712
  * [{"appId":"395b60e4-0550-458d-9c54-a265d036****","containerPort":8080,"domain":"www.sae.site","path":"/path1"},{"appId":"666403ce-d25b-47cf-87fe-497565d2****","containerPort":8080,"domain":"sae.site","path":"/path2"}]
4596
4713
  */
4597
4714
  rules?: string;
4715
+ /**
4716
+ * @remarks
4717
+ * The security policy ID.
4718
+ *
4719
+ * @example
4720
+ * sp-bp1bpn0kn9****
4721
+ */
4598
4722
  securityPolicyId?: string;
4599
4723
  /**
4600
4724
  * @remarks
4725
+ * The Server Load Balancer (SLB) instance that is used by the routing rule.
4726
+ *
4727
+ * > The SLB instance can be a Classic Load Balancer (CLB) instance or an Application Load Balancer (ALB) instance.
4728
+ *
4601
4729
  * This parameter is required.
4602
4730
  *
4603
4731
  * @example
@@ -4616,28 +4744,68 @@ export declare class CreateIngressRequest extends $tea.Model {
4616
4744
  }
4617
4745
  export declare class CreateIngressResponseBody extends $tea.Model {
4618
4746
  /**
4747
+ * @remarks
4748
+ * The HTTP status code. Valid values:
4749
+ *
4750
+ * * **2xx**: The call was successful.
4751
+ * * **3xx**: The call was redirected.
4752
+ * * **4xx**: The call failed.
4753
+ * * **5xx**: A server error occurred.
4754
+ *
4619
4755
  * @example
4620
4756
  * 200
4621
4757
  */
4622
4758
  code?: string;
4759
+ /**
4760
+ * @remarks
4761
+ * The response.
4762
+ */
4623
4763
  data?: CreateIngressResponseBodyData;
4764
+ /**
4765
+ * @remarks
4766
+ * The error code returned. Take note of the following rules:
4767
+ *
4768
+ * * The **ErrorCode** parameter is not returned if the request succeeds.
4769
+ * * If the call fails, the **ErrorCode** parameter is returned. For more information, see the "**Error codes**" section of this topic.
4770
+ *
4771
+ * @example
4772
+ * success
4773
+ */
4624
4774
  errorCode?: string;
4625
4775
  /**
4776
+ * @remarks
4777
+ * The additional information that is returned. Valid values:
4778
+ *
4779
+ * * success: If the call is successful, **success** is returned.
4780
+ * * An error code: If the call fails, an error code is returned.
4781
+ *
4626
4782
  * @example
4627
4783
  * success
4628
4784
  */
4629
4785
  message?: string;
4630
4786
  /**
4787
+ * @remarks
4788
+ * The ID of the request.
4789
+ *
4631
4790
  * @example
4632
4791
  * 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
4633
4792
  */
4634
4793
  requestId?: string;
4635
4794
  /**
4795
+ * @remarks
4796
+ * Indicates whether the Secret is successfully deleted. Valid values:
4797
+ *
4798
+ * * **true**: The instance was deleted.
4799
+ * * **false**: The instance failed to be deleted.
4800
+ *
4636
4801
  * @example
4637
4802
  * true
4638
4803
  */
4639
4804
  success?: boolean;
4640
4805
  /**
4806
+ * @remarks
4807
+ * The ID of the trace. It is used to query the details of a request.
4808
+ *
4641
4809
  * @example
4642
4810
  * 0a98a02315955564772843261e****
4643
4811
  */
@@ -6891,6 +7059,7 @@ export declare class DeployApplicationRequest extends $tea.Model {
6891
7059
  * false
6892
7060
  */
6893
7061
  enableAhas?: string;
7062
+ enableCpuBurst?: boolean;
6894
7063
  /**
6895
7064
  * @remarks
6896
7065
  * Indicates whether canary release rules are enabled. Canary release rules apply only to applications in Spring Cloud and Dubbo frameworks. Take note of the following rules:
@@ -10863,6 +11032,75 @@ export declare class DisableApplicationScalingRuleResponse extends $tea.Model {
10863
11032
  [key: string]: any;
10864
11033
  });
10865
11034
  }
11035
+ export declare class DowngradeApplicationApmServiceRequest extends $tea.Model {
11036
+ /**
11037
+ * @remarks
11038
+ * This parameter is required.
11039
+ *
11040
+ * @example
11041
+ * 017f39b8-dfa4-4e16-a84b-1dcee4b1****
11042
+ */
11043
+ appId?: string;
11044
+ static names(): {
11045
+ [key: string]: string;
11046
+ };
11047
+ static types(): {
11048
+ [key: string]: any;
11049
+ };
11050
+ constructor(map?: {
11051
+ [key: string]: any;
11052
+ });
11053
+ }
11054
+ export declare class DowngradeApplicationApmServiceResponseBody extends $tea.Model {
11055
+ /**
11056
+ * @example
11057
+ * 200
11058
+ */
11059
+ code?: string;
11060
+ data?: DowngradeApplicationApmServiceResponseBodyData;
11061
+ errorCode?: string;
11062
+ /**
11063
+ * @example
11064
+ * success
11065
+ */
11066
+ message?: string;
11067
+ /**
11068
+ * @example
11069
+ * 01CF26C7-00A3-4AA6-BA76-7E95F2A3****
11070
+ */
11071
+ requestId?: string;
11072
+ success?: boolean;
11073
+ /**
11074
+ * @example
11075
+ * 0a98a02315955564772843261e****
11076
+ */
11077
+ traceId?: string;
11078
+ static names(): {
11079
+ [key: string]: string;
11080
+ };
11081
+ static types(): {
11082
+ [key: string]: any;
11083
+ };
11084
+ constructor(map?: {
11085
+ [key: string]: any;
11086
+ });
11087
+ }
11088
+ export declare class DowngradeApplicationApmServiceResponse extends $tea.Model {
11089
+ headers?: {
11090
+ [key: string]: string;
11091
+ };
11092
+ statusCode?: number;
11093
+ body?: DowngradeApplicationApmServiceResponseBody;
11094
+ static names(): {
11095
+ [key: string]: string;
11096
+ };
11097
+ static types(): {
11098
+ [key: string]: any;
11099
+ };
11100
+ constructor(map?: {
11101
+ [key: string]: any;
11102
+ });
11103
+ }
10866
11104
  export declare class EnableApplicationScalingRuleRequest extends $tea.Model {
10867
11105
  /**
10868
11106
  * @remarks
@@ -11093,6 +11331,75 @@ export declare class ExecJobResponse extends $tea.Model {
11093
11331
  [key: string]: any;
11094
11332
  });
11095
11333
  }
11334
+ export declare class GetApplicationRequest extends $tea.Model {
11335
+ /**
11336
+ * @example
11337
+ * 017f39b8-dfa4-4e16-a84b-1dcee4b1****
11338
+ */
11339
+ appId?: string;
11340
+ /**
11341
+ * @example
11342
+ * test
11343
+ */
11344
+ appName?: string;
11345
+ /**
11346
+ * @example
11347
+ * cn-shenzhen
11348
+ */
11349
+ namespaceId?: string;
11350
+ static names(): {
11351
+ [key: string]: string;
11352
+ };
11353
+ static types(): {
11354
+ [key: string]: any;
11355
+ };
11356
+ constructor(map?: {
11357
+ [key: string]: any;
11358
+ });
11359
+ }
11360
+ export declare class GetApplicationResponseBody extends $tea.Model {
11361
+ application?: GetApplicationResponseBodyApplication;
11362
+ /**
11363
+ * @example
11364
+ * success
11365
+ */
11366
+ message?: string;
11367
+ /**
11368
+ * @example
11369
+ * 01CF26C7-00A3-4AA6-BA76-7E95F2A3****
11370
+ */
11371
+ requestId?: string;
11372
+ /**
11373
+ * @example
11374
+ * ac1a0b2215622920113732501e****
11375
+ */
11376
+ traceId?: string;
11377
+ static names(): {
11378
+ [key: string]: string;
11379
+ };
11380
+ static types(): {
11381
+ [key: string]: any;
11382
+ };
11383
+ constructor(map?: {
11384
+ [key: string]: any;
11385
+ });
11386
+ }
11387
+ export declare class GetApplicationResponse extends $tea.Model {
11388
+ headers?: {
11389
+ [key: string]: string;
11390
+ };
11391
+ statusCode?: number;
11392
+ body?: GetApplicationResponseBody;
11393
+ static names(): {
11394
+ [key: string]: string;
11395
+ };
11396
+ static types(): {
11397
+ [key: string]: any;
11398
+ };
11399
+ constructor(map?: {
11400
+ [key: string]: any;
11401
+ });
11402
+ }
11096
11403
  export declare class GetArmsTopNMetricRequest extends $tea.Model {
11097
11404
  /**
11098
11405
  * @remarks
@@ -16706,21 +17013,45 @@ export declare class UpdateGreyTagRouteResponse extends $tea.Model {
16706
17013
  }
16707
17014
  export declare class UpdateIngressRequest extends $tea.Model {
16708
17015
  /**
17016
+ * @remarks
17017
+ * The ID of the certificate that is associated with the Classic Load Balancer (**CLB**) instance.
17018
+ *
17019
+ * * If you set **LoadBalanceType** to **clb**, you can use CertId to configure a certificate for the HTTPS listener.
17020
+ *
17021
+ * For more information about how to manage the SSL certificate IDs that are used by CLB instances, see [Overview](https://help.aliyun.com/document_detail/90792.html).
17022
+ *
16709
17023
  * @example
16710
17024
  * 188077086902****_176993d****_181437****_108724****
16711
17025
  */
16712
17026
  certId?: string;
16713
17027
  /**
17028
+ * @remarks
17029
+ * The IDs of the certificates that are associated with the Application Load Balancer (**ALB**) instance.
17030
+ *
17031
+ * * If you set **LoadBalanceType** to **alb**, you can use CertIds to configure multiple certificates for the HTTPS listener. Separate multiple certificate IDs with commas (,).
17032
+ * * The ID of the SSL certificate that is used by an ALB instance can be obtained from Certificate Management Service. For example, if you specify `756***-cn-hangzhou`, `756***` is the certificate ID that is obtained from the service page, and `-cn-hangzhou` is the fixed suffix. For more information, see [Manage certificates](https://help.aliyun.com/document_detail/209076.html).
17033
+ *
16714
17034
  * @example
16715
17035
  * 87***35-cn-hangzhou,812***3-cn-hangzhou
16716
17036
  */
16717
17037
  certIds?: string;
16718
17038
  /**
17039
+ * @remarks
17040
+ * The default forwarding rule. You can specify a port and an application in the default forwarding rule to forward traffic based on the IP address. The following list describes the involved parameters:
17041
+ *
17042
+ * * **appId**: the ID of the application.
17043
+ * * **containerPort**: the container port of the application.
17044
+ *
17045
+ * > All requests that do not match the forwarding rules specified for Rules are forwarded over the port to the application.
17046
+ *
16719
17047
  * @example
16720
17048
  * {"appId":"395b60e4-0550-458d-9c54-a265d036****","containerPort":8080}
16721
17049
  */
16722
17050
  defaultRule?: string;
16723
17051
  /**
17052
+ * @remarks
17053
+ * The name of the routing rule.
17054
+ *
16724
17055
  * @example
16725
17056
  * ingress-sae-test
16726
17057
  */
@@ -16728,6 +17059,8 @@ export declare class UpdateIngressRequest extends $tea.Model {
16728
17059
  idleTimeout?: number;
16729
17060
  /**
16730
17061
  * @remarks
17062
+ * The ID of the routing rule.
17063
+ *
16731
17064
  * This parameter is required.
16732
17065
  *
16733
17066
  * @example
@@ -16735,22 +17068,42 @@ export declare class UpdateIngressRequest extends $tea.Model {
16735
17068
  */
16736
17069
  ingressId?: number;
16737
17070
  /**
17071
+ * @remarks
17072
+ * The port specified for the Server Load Balancer (SLB) listener. You must specify a vacant port.
17073
+ *
16738
17074
  * @example
16739
17075
  * 443
16740
17076
  */
16741
17077
  listenerPort?: string;
16742
17078
  /**
17079
+ * @remarks
17080
+ * The protocol that is used to forward requests. Valid values:
17081
+ *
17082
+ * * **HTTP**: HTTP is suitable for applications that need to identify the transmitted data.
17083
+ * * **HTTPS**: HTTPS is suitable for applications that require encrypted data transmission.
17084
+ *
16743
17085
  * @example
16744
17086
  * HTTP
16745
17087
  */
16746
17088
  listenerProtocol?: string;
16747
17089
  /**
17090
+ * @remarks
17091
+ * This parameter is discontinued.
17092
+ *
16748
17093
  * @example
16749
17094
  * clb
16750
17095
  */
16751
17096
  loadBalanceType?: string;
16752
17097
  requestTimeout?: number;
16753
17098
  /**
17099
+ * @remarks
17100
+ * The forwarding rules. You can specify a port and an application in a forwarding rule to forward traffic based on the specified domain name and request path. The following list describes the involved parameters:
17101
+ *
17102
+ * * **appId**: the ID of the application.
17103
+ * * **containerPort**: the container port of the application.
17104
+ * * **domain**: the domain name.
17105
+ * * **path**: the request path.
17106
+ *
16754
17107
  * @example
16755
17108
  * [{"appId":"395b60e4-0550-458d-9c54-a265d036****","containerPort":8080,"domain":"www.sae.site","path":"/path1"},{"appId":"666403ce-d25b-47cf-87fe-497565d2****","containerPort":8080,"domain":"sae.site","path":"/path2"}]
16756
17109
  */
@@ -16768,28 +17121,65 @@ export declare class UpdateIngressRequest extends $tea.Model {
16768
17121
  }
16769
17122
  export declare class UpdateIngressResponseBody extends $tea.Model {
16770
17123
  /**
17124
+ * @remarks
17125
+ * The HTTP status code. Valid values:
17126
+ *
17127
+ * * **2xx**: The request was successful.
17128
+ * * **3xx**: The request was redirected.
17129
+ * * **4xx**: The request failed.
17130
+ * * **5xx**: A server error occurred.
17131
+ *
16771
17132
  * @example
16772
17133
  * 200
16773
17134
  */
16774
17135
  code?: string;
17136
+ /**
17137
+ * @remarks
17138
+ * The returned result.
17139
+ */
16775
17140
  data?: UpdateIngressResponseBodyData;
17141
+ /**
17142
+ * @remarks
17143
+ * The error code.
17144
+ *
17145
+ * * If the request was successful, **ErrorCode** is not returned.
17146
+ * * If the request failed, **ErrorCode** is returned. For more information, see the **Error codes** section of this topic.
17147
+ */
16776
17148
  errorCode?: string;
16777
17149
  /**
17150
+ * @remarks
17151
+ * The returned information.
17152
+ *
17153
+ * * If the request was successful, **success** is returned.
17154
+ * * If the request failed, an error code is returned.
17155
+ *
16778
17156
  * @example
16779
17157
  * success
16780
17158
  */
16781
17159
  message?: string;
16782
17160
  /**
17161
+ * @remarks
17162
+ * The request ID.
17163
+ *
16783
17164
  * @example
16784
17165
  * 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
16785
17166
  */
16786
17167
  requestId?: string;
16787
17168
  /**
17169
+ * @remarks
17170
+ * Indicates whether the configurations of the routing rule were updated. Valid values:
17171
+ *
17172
+ * * **true**
17173
+ * * **false**
17174
+ *
16788
17175
  * @example
16789
17176
  * true
16790
17177
  */
16791
17178
  success?: boolean;
16792
17179
  /**
17180
+ * @remarks
17181
+ * The trace ID.
17182
+ *
16793
17183
  * @example
16794
17184
  * 0a98a02315955564772843261e****
16795
17185
  */
@@ -17889,6 +18279,79 @@ export declare class UpdateWebCustomDomainResponse extends $tea.Model {
17889
18279
  [key: string]: any;
17890
18280
  });
17891
18281
  }
18282
+ export declare class UpgradeApplicationApmServiceRequest extends $tea.Model {
18283
+ /**
18284
+ * @remarks
18285
+ * This parameter is required.
18286
+ *
18287
+ * @example
18288
+ * 017f39b8-dfa4-4e16-a84b-1dcee4b1****
18289
+ */
18290
+ appId?: string;
18291
+ static names(): {
18292
+ [key: string]: string;
18293
+ };
18294
+ static types(): {
18295
+ [key: string]: any;
18296
+ };
18297
+ constructor(map?: {
18298
+ [key: string]: any;
18299
+ });
18300
+ }
18301
+ export declare class UpgradeApplicationApmServiceResponseBody extends $tea.Model {
18302
+ /**
18303
+ * @example
18304
+ * 200
18305
+ */
18306
+ code?: string;
18307
+ data?: UpgradeApplicationApmServiceResponseBodyData;
18308
+ /**
18309
+ * @example
18310
+ * success
18311
+ */
18312
+ errorCode?: string;
18313
+ /**
18314
+ * @example
18315
+ * success
18316
+ */
18317
+ message?: string;
18318
+ /**
18319
+ * @example
18320
+ * 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
18321
+ */
18322
+ requestId?: string;
18323
+ success?: boolean;
18324
+ /**
18325
+ * @example
18326
+ * 0a98a02315955564772843261e****
18327
+ */
18328
+ traceId?: string;
18329
+ static names(): {
18330
+ [key: string]: string;
18331
+ };
18332
+ static types(): {
18333
+ [key: string]: any;
18334
+ };
18335
+ constructor(map?: {
18336
+ [key: string]: any;
18337
+ });
18338
+ }
18339
+ export declare class UpgradeApplicationApmServiceResponse extends $tea.Model {
18340
+ headers?: {
18341
+ [key: string]: string;
18342
+ };
18343
+ statusCode?: number;
18344
+ body?: UpgradeApplicationApmServiceResponseBody;
18345
+ static names(): {
18346
+ [key: string]: string;
18347
+ };
18348
+ static types(): {
18349
+ [key: string]: any;
18350
+ };
18351
+ constructor(map?: {
18352
+ [key: string]: any;
18353
+ });
18354
+ }
17892
18355
  export declare class AppStackInstanceEndpoints extends $tea.Model {
17893
18356
  /**
17894
18357
  * @example
@@ -18940,6 +19403,9 @@ export declare class CreateGreyTagRouteResponseBodyData extends $tea.Model {
18940
19403
  }
18941
19404
  export declare class CreateIngressResponseBodyData extends $tea.Model {
18942
19405
  /**
19406
+ * @remarks
19407
+ * The ID of the routing rule.
19408
+ *
18943
19409
  * @example
18944
19410
  * 87
18945
19411
  */
@@ -19710,6 +20176,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
19710
20176
  * true
19711
20177
  */
19712
20178
  enableAhas?: string;
20179
+ enableCpuBurst?: string;
19713
20180
  /**
19714
20181
  * @remarks
19715
20182
  * Indicates whether canary release rules are enabled. Canary release rules apply only to applications in Spring Cloud and Dubbo frameworks. Valid values:
@@ -21739,7 +22206,7 @@ export declare class DescribeApplicationSlbsResponseBodyData extends $tea.Model
21739
22206
  * The ID of the Internet-facing SLB instance.
21740
22207
  *
21741
22208
  * @example
21742
- * 59.74.\*\*.**
22209
+ * ``59.74.**.**``
21743
22210
  */
21744
22211
  internetIp?: string;
21745
22212
  internetSlbChargeType?: string;
@@ -22356,6 +22823,7 @@ export declare class DescribeConfigurationPriceResponseBodyDataBagUsage extends
22356
22823
  * 497570.450009
22357
22824
  */
22358
22825
  cpu?: number;
22826
+ cu?: number;
22359
22827
  /**
22360
22828
  * @example
22361
22829
  * 989802.563546
@@ -24735,7 +25203,7 @@ export declare class DescribePipelineResponseBodyDataStageListTaskList extends $
24735
25203
  * The error message returned when the task could not be executed. If the task is successfully executed, this parameter is not returned.
24736
25204
  *
24737
25205
  * @example
24738
- * EDAS-10022 \\<a target=\\"_blank\\" href=\\"https://help.aliyun.com/knowledge_detail/106573.html#EDAS-10022\\">READINESS check failed during the application startup.\\</a>
25206
+ * EDAS-10022
24739
25207
  */
24740
25208
  errorMessage?: string;
24741
25209
  /**
@@ -25134,6 +25602,22 @@ export declare class DescribeSecretResponseBodyData extends $tea.Model {
25134
25602
  [key: string]: any;
25135
25603
  });
25136
25604
  }
25605
+ export declare class DowngradeApplicationApmServiceResponseBodyData extends $tea.Model {
25606
+ /**
25607
+ * @example
25608
+ * true
25609
+ */
25610
+ status?: boolean;
25611
+ static names(): {
25612
+ [key: string]: string;
25613
+ };
25614
+ static types(): {
25615
+ [key: string]: any;
25616
+ };
25617
+ constructor(map?: {
25618
+ [key: string]: any;
25619
+ });
25620
+ }
25137
25621
  export declare class ExecJobResponseBodyData extends $tea.Model {
25138
25622
  /**
25139
25623
  * @example
@@ -25165,6 +25649,83 @@ export declare class ExecJobResponseBodyData extends $tea.Model {
25165
25649
  [key: string]: any;
25166
25650
  });
25167
25651
  }
25652
+ export declare class GetApplicationResponseBodyApplication extends $tea.Model {
25653
+ appDescription?: string;
25654
+ /**
25655
+ * @example
25656
+ * 443d638a-ef76-47c4-b707-61197d******
25657
+ */
25658
+ appId?: string;
25659
+ /**
25660
+ * @example
25661
+ * test
25662
+ */
25663
+ appName?: string;
25664
+ /**
25665
+ * @example
25666
+ * ee99cce6-1c8e-4bfa-96c3-3e2fa9******
25667
+ */
25668
+ baseAppId?: string;
25669
+ /**
25670
+ * @example
25671
+ * 2000
25672
+ */
25673
+ cpu?: number;
25674
+ /**
25675
+ * @example
25676
+ * i-8ps2o182102o1jv05bys
25677
+ */
25678
+ instances?: number;
25679
+ /**
25680
+ * @example
25681
+ * 4096
25682
+ */
25683
+ mem?: number;
25684
+ /**
25685
+ * @example
25686
+ * true
25687
+ */
25688
+ mseEnabled?: boolean;
25689
+ /**
25690
+ * @example
25691
+ * test
25692
+ */
25693
+ mseNamespaceId?: string;
25694
+ /**
25695
+ * @example
25696
+ * cn-shenzhen
25697
+ */
25698
+ namespaceId?: string;
25699
+ /**
25700
+ * @example
25701
+ * java
25702
+ */
25703
+ programmingLanguage?: string;
25704
+ /**
25705
+ * @example
25706
+ * 1
25707
+ */
25708
+ runningInstances?: number;
25709
+ /**
25710
+ * @example
25711
+ * true
25712
+ */
25713
+ scaleRuleEnabled?: string;
25714
+ /**
25715
+ * @example
25716
+ * timing
25717
+ */
25718
+ scaleRuleType?: string;
25719
+ static names(): {
25720
+ [key: string]: string;
25721
+ };
25722
+ static types(): {
25723
+ [key: string]: any;
25724
+ };
25725
+ constructor(map?: {
25726
+ [key: string]: any;
25727
+ });
25728
+ }
25168
25729
  export declare class GetArmsTopNMetricResponseBodyData extends $tea.Model {
25169
25730
  /**
25170
25731
  * @remarks
@@ -28171,6 +28732,9 @@ export declare class UpdateGreyTagRouteResponseBodyData extends $tea.Model {
28171
28732
  }
28172
28733
  export declare class UpdateIngressResponseBodyData extends $tea.Model {
28173
28734
  /**
28735
+ * @remarks
28736
+ * The ID of the routing rule.
28737
+ *
28174
28738
  * @example
28175
28739
  * 87
28176
28740
  */
@@ -28296,6 +28860,22 @@ export declare class UpdateSecretResponseBodyData extends $tea.Model {
28296
28860
  [key: string]: any;
28297
28861
  });
28298
28862
  }
28863
+ export declare class UpgradeApplicationApmServiceResponseBodyData extends $tea.Model {
28864
+ /**
28865
+ * @example
28866
+ * true
28867
+ */
28868
+ status?: boolean;
28869
+ static names(): {
28870
+ [key: string]: string;
28871
+ };
28872
+ static types(): {
28873
+ [key: string]: any;
28874
+ };
28875
+ constructor(map?: {
28876
+ [key: string]: any;
28877
+ });
28878
+ }
28299
28879
  export default class Client extends OpenApi {
28300
28880
  constructor(config: $OpenApi.Config);
28301
28881
  getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
@@ -28486,7 +29066,7 @@ export default class Client extends OpenApi {
28486
29066
  */
28487
29067
  createGreyTagRoute(request: CreateGreyTagRouteRequest): Promise<CreateGreyTagRouteResponse>;
28488
29068
  /**
28489
- * {"appId":"395b60e4-0550-458d-9c54-a265d036\\*\\*\\*\\*","containerPort":8080}
29069
+ * Creates a routing rule.
28490
29070
  *
28491
29071
  * @param request - CreateIngressRequest
28492
29072
  * @param headers - map
@@ -28497,7 +29077,7 @@ export default class Client extends OpenApi {
28497
29077
  [key: string]: string;
28498
29078
  }, runtime: $Util.RuntimeOptions): Promise<CreateIngressResponse>;
28499
29079
  /**
28500
- * {"appId":"395b60e4-0550-458d-9c54-a265d036\\*\\*\\*\\*","containerPort":8080}
29080
+ * Creates a routing rule.
28501
29081
  *
28502
29082
  * @param request - CreateIngressRequest
28503
29083
  * @returns CreateIngressResponse
@@ -29404,6 +29984,20 @@ export default class Client extends OpenApi {
29404
29984
  * @returns DisableApplicationScalingRuleResponse
29405
29985
  */
29406
29986
  disableApplicationScalingRule(request: DisableApplicationScalingRuleRequest): Promise<DisableApplicationScalingRuleResponse>;
29987
+ /**
29988
+ * @param request - DowngradeApplicationApmServiceRequest
29989
+ * @param headers - map
29990
+ * @param runtime - runtime options for this request RuntimeOptions
29991
+ * @returns DowngradeApplicationApmServiceResponse
29992
+ */
29993
+ downgradeApplicationApmServiceWithOptions(request: DowngradeApplicationApmServiceRequest, headers: {
29994
+ [key: string]: string;
29995
+ }, runtime: $Util.RuntimeOptions): Promise<DowngradeApplicationApmServiceResponse>;
29996
+ /**
29997
+ * @param request - DowngradeApplicationApmServiceRequest
29998
+ * @returns DowngradeApplicationApmServiceResponse
29999
+ */
30000
+ downgradeApplicationApmService(request: DowngradeApplicationApmServiceRequest): Promise<DowngradeApplicationApmServiceResponse>;
29407
30001
  /**
29408
30002
  * Enables an auto scaling policy for an application.
29409
30003
  *
@@ -29436,6 +30030,24 @@ export default class Client extends OpenApi {
29436
30030
  * @returns ExecJobResponse
29437
30031
  */
29438
30032
  execJob(request: ExecJobRequest): Promise<ExecJobResponse>;
30033
+ /**
30034
+ * 查询应用基本信息
30035
+ *
30036
+ * @param request - GetApplicationRequest
30037
+ * @param headers - map
30038
+ * @param runtime - runtime options for this request RuntimeOptions
30039
+ * @returns GetApplicationResponse
30040
+ */
30041
+ getApplicationWithOptions(request: GetApplicationRequest, headers: {
30042
+ [key: string]: string;
30043
+ }, runtime: $Util.RuntimeOptions): Promise<GetApplicationResponse>;
30044
+ /**
30045
+ * 查询应用基本信息
30046
+ *
30047
+ * @param request - GetApplicationRequest
30048
+ * @returns GetApplicationResponse
30049
+ */
30050
+ getApplication(request: GetApplicationRequest): Promise<GetApplicationResponse>;
29439
30051
  /**
29440
30052
  * Queries the top N applications in Application Monitoring.
29441
30053
  *
@@ -30288,6 +30900,8 @@ export default class Client extends OpenApi {
30288
30900
  */
30289
30901
  updateGreyTagRoute(request: UpdateGreyTagRouteRequest): Promise<UpdateGreyTagRouteResponse>;
30290
30902
  /**
30903
+ * Updates the configurations of a routing rule.
30904
+ *
30291
30905
  * @param request - UpdateIngressRequest
30292
30906
  * @param headers - map
30293
30907
  * @param runtime - runtime options for this request RuntimeOptions
@@ -30297,6 +30911,8 @@ export default class Client extends OpenApi {
30297
30911
  [key: string]: string;
30298
30912
  }, runtime: $Util.RuntimeOptions): Promise<UpdateIngressResponse>;
30299
30913
  /**
30914
+ * Updates the configurations of a routing rule.
30915
+ *
30300
30916
  * @param request - UpdateIngressRequest
30301
30917
  * @returns UpdateIngressResponse
30302
30918
  */
@@ -30453,4 +31069,18 @@ export default class Client extends OpenApi {
30453
31069
  * @returns UpdateWebCustomDomainResponse
30454
31070
  */
30455
31071
  updateWebCustomDomain(DomainName: string, request: UpdateWebCustomDomainRequest): Promise<UpdateWebCustomDomainResponse>;
31072
+ /**
31073
+ * @param request - UpgradeApplicationApmServiceRequest
31074
+ * @param headers - map
31075
+ * @param runtime - runtime options for this request RuntimeOptions
31076
+ * @returns UpgradeApplicationApmServiceResponse
31077
+ */
31078
+ upgradeApplicationApmServiceWithOptions(request: UpgradeApplicationApmServiceRequest, headers: {
31079
+ [key: string]: string;
31080
+ }, runtime: $Util.RuntimeOptions): Promise<UpgradeApplicationApmServiceResponse>;
31081
+ /**
31082
+ * @param request - UpgradeApplicationApmServiceRequest
31083
+ * @returns UpgradeApplicationApmServiceResponse
31084
+ */
31085
+ upgradeApplicationApmService(request: UpgradeApplicationApmServiceRequest): Promise<UpgradeApplicationApmServiceResponse>;
30456
31086
  }