@alicloud/sae20190506 1.24.8 → 1.25.0

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
@@ -3224,7 +3224,7 @@ export declare class BatchStopApplicationsRequest extends $tea.Model {
3224
3224
  * The ID of the request.
3225
3225
  *
3226
3226
  * @example
3227
- * ebf491f0-c1a5-45e2-b2c4-710dbe2a****,ebf491f0-c1a5-45e2-b2c4-71025e2a****
3227
+ * ebf491f0-c1a5-45e2-b2c4-710dbe2a****
3228
3228
  */
3229
3229
  appIds?: string;
3230
3230
  /**
@@ -3721,6 +3721,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
3721
3721
  * 3.5.3
3722
3722
  */
3723
3723
  edasContainerVersion?: string;
3724
+ enableCpuBurst?: boolean;
3724
3725
  enableEbpf?: string;
3725
3726
  enableNewArms?: boolean;
3726
3727
  /**
@@ -6891,6 +6892,7 @@ export declare class DeployApplicationRequest extends $tea.Model {
6891
6892
  * false
6892
6893
  */
6893
6894
  enableAhas?: string;
6895
+ enableCpuBurst?: boolean;
6894
6896
  /**
6895
6897
  * @remarks
6896
6898
  * 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 +10865,75 @@ export declare class DisableApplicationScalingRuleResponse extends $tea.Model {
10863
10865
  [key: string]: any;
10864
10866
  });
10865
10867
  }
10868
+ export declare class DowngradeApplicationApmServiceRequest extends $tea.Model {
10869
+ /**
10870
+ * @remarks
10871
+ * This parameter is required.
10872
+ *
10873
+ * @example
10874
+ * 017f39b8-dfa4-4e16-a84b-1dcee4b1****
10875
+ */
10876
+ appId?: string;
10877
+ static names(): {
10878
+ [key: string]: string;
10879
+ };
10880
+ static types(): {
10881
+ [key: string]: any;
10882
+ };
10883
+ constructor(map?: {
10884
+ [key: string]: any;
10885
+ });
10886
+ }
10887
+ export declare class DowngradeApplicationApmServiceResponseBody extends $tea.Model {
10888
+ /**
10889
+ * @example
10890
+ * 200
10891
+ */
10892
+ code?: string;
10893
+ data?: DowngradeApplicationApmServiceResponseBodyData;
10894
+ errorCode?: string;
10895
+ /**
10896
+ * @example
10897
+ * success
10898
+ */
10899
+ message?: string;
10900
+ /**
10901
+ * @example
10902
+ * 01CF26C7-00A3-4AA6-BA76-7E95F2A3****
10903
+ */
10904
+ requestId?: string;
10905
+ success?: boolean;
10906
+ /**
10907
+ * @example
10908
+ * 0a98a02315955564772843261e****
10909
+ */
10910
+ traceId?: string;
10911
+ static names(): {
10912
+ [key: string]: string;
10913
+ };
10914
+ static types(): {
10915
+ [key: string]: any;
10916
+ };
10917
+ constructor(map?: {
10918
+ [key: string]: any;
10919
+ });
10920
+ }
10921
+ export declare class DowngradeApplicationApmServiceResponse extends $tea.Model {
10922
+ headers?: {
10923
+ [key: string]: string;
10924
+ };
10925
+ statusCode?: number;
10926
+ body?: DowngradeApplicationApmServiceResponseBody;
10927
+ static names(): {
10928
+ [key: string]: string;
10929
+ };
10930
+ static types(): {
10931
+ [key: string]: any;
10932
+ };
10933
+ constructor(map?: {
10934
+ [key: string]: any;
10935
+ });
10936
+ }
10866
10937
  export declare class EnableApplicationScalingRuleRequest extends $tea.Model {
10867
10938
  /**
10868
10939
  * @remarks
@@ -11093,6 +11164,75 @@ export declare class ExecJobResponse extends $tea.Model {
11093
11164
  [key: string]: any;
11094
11165
  });
11095
11166
  }
11167
+ export declare class GetApplicationRequest extends $tea.Model {
11168
+ /**
11169
+ * @example
11170
+ * 017f39b8-dfa4-4e16-a84b-1dcee4b1****
11171
+ */
11172
+ appId?: string;
11173
+ /**
11174
+ * @example
11175
+ * test
11176
+ */
11177
+ appName?: string;
11178
+ /**
11179
+ * @example
11180
+ * cn-shenzhen
11181
+ */
11182
+ namespaceId?: string;
11183
+ static names(): {
11184
+ [key: string]: string;
11185
+ };
11186
+ static types(): {
11187
+ [key: string]: any;
11188
+ };
11189
+ constructor(map?: {
11190
+ [key: string]: any;
11191
+ });
11192
+ }
11193
+ export declare class GetApplicationResponseBody extends $tea.Model {
11194
+ application?: GetApplicationResponseBodyApplication;
11195
+ /**
11196
+ * @example
11197
+ * success
11198
+ */
11199
+ message?: string;
11200
+ /**
11201
+ * @example
11202
+ * 01CF26C7-00A3-4AA6-BA76-7E95F2A3****
11203
+ */
11204
+ requestId?: string;
11205
+ /**
11206
+ * @example
11207
+ * ac1a0b2215622920113732501e****
11208
+ */
11209
+ traceId?: string;
11210
+ static names(): {
11211
+ [key: string]: string;
11212
+ };
11213
+ static types(): {
11214
+ [key: string]: any;
11215
+ };
11216
+ constructor(map?: {
11217
+ [key: string]: any;
11218
+ });
11219
+ }
11220
+ export declare class GetApplicationResponse extends $tea.Model {
11221
+ headers?: {
11222
+ [key: string]: string;
11223
+ };
11224
+ statusCode?: number;
11225
+ body?: GetApplicationResponseBody;
11226
+ static names(): {
11227
+ [key: string]: string;
11228
+ };
11229
+ static types(): {
11230
+ [key: string]: any;
11231
+ };
11232
+ constructor(map?: {
11233
+ [key: string]: any;
11234
+ });
11235
+ }
11096
11236
  export declare class GetArmsTopNMetricRequest extends $tea.Model {
11097
11237
  /**
11098
11238
  * @remarks
@@ -17889,6 +18029,79 @@ export declare class UpdateWebCustomDomainResponse extends $tea.Model {
17889
18029
  [key: string]: any;
17890
18030
  });
17891
18031
  }
18032
+ export declare class UpgradeApplicationApmServiceRequest extends $tea.Model {
18033
+ /**
18034
+ * @remarks
18035
+ * This parameter is required.
18036
+ *
18037
+ * @example
18038
+ * 017f39b8-dfa4-4e16-a84b-1dcee4b1****
18039
+ */
18040
+ appId?: string;
18041
+ static names(): {
18042
+ [key: string]: string;
18043
+ };
18044
+ static types(): {
18045
+ [key: string]: any;
18046
+ };
18047
+ constructor(map?: {
18048
+ [key: string]: any;
18049
+ });
18050
+ }
18051
+ export declare class UpgradeApplicationApmServiceResponseBody extends $tea.Model {
18052
+ /**
18053
+ * @example
18054
+ * 200
18055
+ */
18056
+ code?: string;
18057
+ data?: UpgradeApplicationApmServiceResponseBodyData;
18058
+ /**
18059
+ * @example
18060
+ * success
18061
+ */
18062
+ errorCode?: string;
18063
+ /**
18064
+ * @example
18065
+ * success
18066
+ */
18067
+ message?: string;
18068
+ /**
18069
+ * @example
18070
+ * 91F93257-7A4A-4BD3-9A7E-2F6EAE6D****
18071
+ */
18072
+ requestId?: string;
18073
+ success?: boolean;
18074
+ /**
18075
+ * @example
18076
+ * 0a98a02315955564772843261e****
18077
+ */
18078
+ traceId?: string;
18079
+ static names(): {
18080
+ [key: string]: string;
18081
+ };
18082
+ static types(): {
18083
+ [key: string]: any;
18084
+ };
18085
+ constructor(map?: {
18086
+ [key: string]: any;
18087
+ });
18088
+ }
18089
+ export declare class UpgradeApplicationApmServiceResponse extends $tea.Model {
18090
+ headers?: {
18091
+ [key: string]: string;
18092
+ };
18093
+ statusCode?: number;
18094
+ body?: UpgradeApplicationApmServiceResponseBody;
18095
+ static names(): {
18096
+ [key: string]: string;
18097
+ };
18098
+ static types(): {
18099
+ [key: string]: any;
18100
+ };
18101
+ constructor(map?: {
18102
+ [key: string]: any;
18103
+ });
18104
+ }
17892
18105
  export declare class AppStackInstanceEndpoints extends $tea.Model {
17893
18106
  /**
17894
18107
  * @example
@@ -19710,6 +19923,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
19710
19923
  * true
19711
19924
  */
19712
19925
  enableAhas?: string;
19926
+ enableCpuBurst?: string;
19713
19927
  /**
19714
19928
  * @remarks
19715
19929
  * Indicates whether canary release rules are enabled. Canary release rules apply only to applications in Spring Cloud and Dubbo frameworks. Valid values:
@@ -21739,7 +21953,7 @@ export declare class DescribeApplicationSlbsResponseBodyData extends $tea.Model
21739
21953
  * The ID of the Internet-facing SLB instance.
21740
21954
  *
21741
21955
  * @example
21742
- * 59.74.\*\*.**
21956
+ * ``59.74.**.**``
21743
21957
  */
21744
21958
  internetIp?: string;
21745
21959
  internetSlbChargeType?: string;
@@ -24735,7 +24949,7 @@ export declare class DescribePipelineResponseBodyDataStageListTaskList extends $
24735
24949
  * The error message returned when the task could not be executed. If the task is successfully executed, this parameter is not returned.
24736
24950
  *
24737
24951
  * @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>
24952
+ * EDAS-10022
24739
24953
  */
24740
24954
  errorMessage?: string;
24741
24955
  /**
@@ -25134,6 +25348,22 @@ export declare class DescribeSecretResponseBodyData extends $tea.Model {
25134
25348
  [key: string]: any;
25135
25349
  });
25136
25350
  }
25351
+ export declare class DowngradeApplicationApmServiceResponseBodyData extends $tea.Model {
25352
+ /**
25353
+ * @example
25354
+ * true
25355
+ */
25356
+ status?: boolean;
25357
+ static names(): {
25358
+ [key: string]: string;
25359
+ };
25360
+ static types(): {
25361
+ [key: string]: any;
25362
+ };
25363
+ constructor(map?: {
25364
+ [key: string]: any;
25365
+ });
25366
+ }
25137
25367
  export declare class ExecJobResponseBodyData extends $tea.Model {
25138
25368
  /**
25139
25369
  * @example
@@ -25165,6 +25395,83 @@ export declare class ExecJobResponseBodyData extends $tea.Model {
25165
25395
  [key: string]: any;
25166
25396
  });
25167
25397
  }
25398
+ export declare class GetApplicationResponseBodyApplication extends $tea.Model {
25399
+ appDescription?: string;
25400
+ /**
25401
+ * @example
25402
+ * 443d638a-ef76-47c4-b707-61197d******
25403
+ */
25404
+ appId?: string;
25405
+ /**
25406
+ * @example
25407
+ * test
25408
+ */
25409
+ appName?: string;
25410
+ /**
25411
+ * @example
25412
+ * ee99cce6-1c8e-4bfa-96c3-3e2fa9******
25413
+ */
25414
+ baseAppId?: string;
25415
+ /**
25416
+ * @example
25417
+ * 2000
25418
+ */
25419
+ cpu?: number;
25420
+ /**
25421
+ * @example
25422
+ * i-8ps2o182102o1jv05bys
25423
+ */
25424
+ instances?: number;
25425
+ /**
25426
+ * @example
25427
+ * 4096
25428
+ */
25429
+ mem?: number;
25430
+ /**
25431
+ * @example
25432
+ * true
25433
+ */
25434
+ mseEnabled?: boolean;
25435
+ /**
25436
+ * @example
25437
+ * test
25438
+ */
25439
+ mseNamespaceId?: string;
25440
+ /**
25441
+ * @example
25442
+ * cn-shenzhen
25443
+ */
25444
+ namespaceId?: string;
25445
+ /**
25446
+ * @example
25447
+ * java
25448
+ */
25449
+ programmingLanguage?: string;
25450
+ /**
25451
+ * @example
25452
+ * 1
25453
+ */
25454
+ runningInstances?: number;
25455
+ /**
25456
+ * @example
25457
+ * true
25458
+ */
25459
+ scaleRuleEnabled?: string;
25460
+ /**
25461
+ * @example
25462
+ * timing
25463
+ */
25464
+ scaleRuleType?: string;
25465
+ static names(): {
25466
+ [key: string]: string;
25467
+ };
25468
+ static types(): {
25469
+ [key: string]: any;
25470
+ };
25471
+ constructor(map?: {
25472
+ [key: string]: any;
25473
+ });
25474
+ }
25168
25475
  export declare class GetArmsTopNMetricResponseBodyData extends $tea.Model {
25169
25476
  /**
25170
25477
  * @remarks
@@ -28296,6 +28603,22 @@ export declare class UpdateSecretResponseBodyData extends $tea.Model {
28296
28603
  [key: string]: any;
28297
28604
  });
28298
28605
  }
28606
+ export declare class UpgradeApplicationApmServiceResponseBodyData extends $tea.Model {
28607
+ /**
28608
+ * @example
28609
+ * true
28610
+ */
28611
+ status?: boolean;
28612
+ static names(): {
28613
+ [key: string]: string;
28614
+ };
28615
+ static types(): {
28616
+ [key: string]: any;
28617
+ };
28618
+ constructor(map?: {
28619
+ [key: string]: any;
28620
+ });
28621
+ }
28299
28622
  export default class Client extends OpenApi {
28300
28623
  constructor(config: $OpenApi.Config);
28301
28624
  getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
@@ -29404,6 +29727,20 @@ export default class Client extends OpenApi {
29404
29727
  * @returns DisableApplicationScalingRuleResponse
29405
29728
  */
29406
29729
  disableApplicationScalingRule(request: DisableApplicationScalingRuleRequest): Promise<DisableApplicationScalingRuleResponse>;
29730
+ /**
29731
+ * @param request - DowngradeApplicationApmServiceRequest
29732
+ * @param headers - map
29733
+ * @param runtime - runtime options for this request RuntimeOptions
29734
+ * @returns DowngradeApplicationApmServiceResponse
29735
+ */
29736
+ downgradeApplicationApmServiceWithOptions(request: DowngradeApplicationApmServiceRequest, headers: {
29737
+ [key: string]: string;
29738
+ }, runtime: $Util.RuntimeOptions): Promise<DowngradeApplicationApmServiceResponse>;
29739
+ /**
29740
+ * @param request - DowngradeApplicationApmServiceRequest
29741
+ * @returns DowngradeApplicationApmServiceResponse
29742
+ */
29743
+ downgradeApplicationApmService(request: DowngradeApplicationApmServiceRequest): Promise<DowngradeApplicationApmServiceResponse>;
29407
29744
  /**
29408
29745
  * Enables an auto scaling policy for an application.
29409
29746
  *
@@ -29436,6 +29773,24 @@ export default class Client extends OpenApi {
29436
29773
  * @returns ExecJobResponse
29437
29774
  */
29438
29775
  execJob(request: ExecJobRequest): Promise<ExecJobResponse>;
29776
+ /**
29777
+ * 查询应用基本信息
29778
+ *
29779
+ * @param request - GetApplicationRequest
29780
+ * @param headers - map
29781
+ * @param runtime - runtime options for this request RuntimeOptions
29782
+ * @returns GetApplicationResponse
29783
+ */
29784
+ getApplicationWithOptions(request: GetApplicationRequest, headers: {
29785
+ [key: string]: string;
29786
+ }, runtime: $Util.RuntimeOptions): Promise<GetApplicationResponse>;
29787
+ /**
29788
+ * 查询应用基本信息
29789
+ *
29790
+ * @param request - GetApplicationRequest
29791
+ * @returns GetApplicationResponse
29792
+ */
29793
+ getApplication(request: GetApplicationRequest): Promise<GetApplicationResponse>;
29439
29794
  /**
29440
29795
  * Queries the top N applications in Application Monitoring.
29441
29796
  *
@@ -30453,4 +30808,18 @@ export default class Client extends OpenApi {
30453
30808
  * @returns UpdateWebCustomDomainResponse
30454
30809
  */
30455
30810
  updateWebCustomDomain(DomainName: string, request: UpdateWebCustomDomainRequest): Promise<UpdateWebCustomDomainResponse>;
30811
+ /**
30812
+ * @param request - UpgradeApplicationApmServiceRequest
30813
+ * @param headers - map
30814
+ * @param runtime - runtime options for this request RuntimeOptions
30815
+ * @returns UpgradeApplicationApmServiceResponse
30816
+ */
30817
+ upgradeApplicationApmServiceWithOptions(request: UpgradeApplicationApmServiceRequest, headers: {
30818
+ [key: string]: string;
30819
+ }, runtime: $Util.RuntimeOptions): Promise<UpgradeApplicationApmServiceResponse>;
30820
+ /**
30821
+ * @param request - UpgradeApplicationApmServiceRequest
30822
+ * @returns UpgradeApplicationApmServiceResponse
30823
+ */
30824
+ upgradeApplicationApmService(request: UpgradeApplicationApmServiceRequest): Promise<UpgradeApplicationApmServiceResponse>;
30456
30825
  }