@alicloud/sae20190506 1.24.7 → 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 +380 -3
- package/dist/client.js +440 -9
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +669 -3
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
|
|
3227
|
+
* ebf491f0-c1a5-45e2-b2c4-710dbe2a****
|
|
3228
3228
|
*/
|
|
3229
3229
|
appIds?: string;
|
|
3230
3230
|
/**
|
|
@@ -3712,6 +3712,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
|
|
|
3712
3712
|
* true
|
|
3713
3713
|
*/
|
|
3714
3714
|
deploy?: boolean;
|
|
3715
|
+
dotnet?: string;
|
|
3715
3716
|
/**
|
|
3716
3717
|
* @remarks
|
|
3717
3718
|
* 3.5.3
|
|
@@ -3720,6 +3721,7 @@ export declare class CreateApplicationRequest extends $tea.Model {
|
|
|
3720
3721
|
* 3.5.3
|
|
3721
3722
|
*/
|
|
3722
3723
|
edasContainerVersion?: string;
|
|
3724
|
+
enableCpuBurst?: boolean;
|
|
3723
3725
|
enableEbpf?: string;
|
|
3724
3726
|
enableNewArms?: boolean;
|
|
3725
3727
|
/**
|
|
@@ -6870,6 +6872,7 @@ export declare class DeployApplicationRequest extends $tea.Model {
|
|
|
6870
6872
|
* true
|
|
6871
6873
|
*/
|
|
6872
6874
|
deploy?: string;
|
|
6875
|
+
dotnet?: string;
|
|
6873
6876
|
/**
|
|
6874
6877
|
* @remarks
|
|
6875
6878
|
* The version of the container, such as Ali-Tomcat, in which an application developed based on High-speed Service Framework (HSF) is deployed.
|
|
@@ -6889,6 +6892,7 @@ export declare class DeployApplicationRequest extends $tea.Model {
|
|
|
6889
6892
|
* false
|
|
6890
6893
|
*/
|
|
6891
6894
|
enableAhas?: string;
|
|
6895
|
+
enableCpuBurst?: boolean;
|
|
6892
6896
|
/**
|
|
6893
6897
|
* @remarks
|
|
6894
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:
|
|
@@ -10861,6 +10865,75 @@ export declare class DisableApplicationScalingRuleResponse extends $tea.Model {
|
|
|
10861
10865
|
[key: string]: any;
|
|
10862
10866
|
});
|
|
10863
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
|
+
}
|
|
10864
10937
|
export declare class EnableApplicationScalingRuleRequest extends $tea.Model {
|
|
10865
10938
|
/**
|
|
10866
10939
|
* @remarks
|
|
@@ -11091,6 +11164,75 @@ export declare class ExecJobResponse extends $tea.Model {
|
|
|
11091
11164
|
[key: string]: any;
|
|
11092
11165
|
});
|
|
11093
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
|
+
}
|
|
11094
11236
|
export declare class GetArmsTopNMetricRequest extends $tea.Model {
|
|
11095
11237
|
/**
|
|
11096
11238
|
* @remarks
|
|
@@ -14539,6 +14681,9 @@ export declare class RescaleApplicationVerticallyRequest extends $tea.Model {
|
|
|
14539
14681
|
* 2048
|
|
14540
14682
|
*/
|
|
14541
14683
|
memory?: string;
|
|
14684
|
+
autoEnableApplicationScalingRule?: boolean;
|
|
14685
|
+
minReadyInstanceRatio?: number;
|
|
14686
|
+
minReadyInstances?: number;
|
|
14542
14687
|
static names(): {
|
|
14543
14688
|
[key: string]: string;
|
|
14544
14689
|
};
|
|
@@ -17884,6 +18029,79 @@ export declare class UpdateWebCustomDomainResponse extends $tea.Model {
|
|
|
17884
18029
|
[key: string]: any;
|
|
17885
18030
|
});
|
|
17886
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
|
+
}
|
|
17887
18105
|
export declare class AppStackInstanceEndpoints extends $tea.Model {
|
|
17888
18106
|
/**
|
|
17889
18107
|
* @example
|
|
@@ -19685,6 +19903,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
|
|
|
19685
19903
|
* [{"hostName":"test.host.name","ip":"0.0.0.0"}]
|
|
19686
19904
|
*/
|
|
19687
19905
|
customHostAlias?: string;
|
|
19906
|
+
dotnet?: string;
|
|
19688
19907
|
/**
|
|
19689
19908
|
* @remarks
|
|
19690
19909
|
* The version of the container, such as Ali-Tomcat, in which an application developed based on High-speed Service Framework (HSF) is deployed.
|
|
@@ -19704,6 +19923,7 @@ export declare class DescribeApplicationConfigResponseBodyData extends $tea.Mode
|
|
|
19704
19923
|
* true
|
|
19705
19924
|
*/
|
|
19706
19925
|
enableAhas?: string;
|
|
19926
|
+
enableCpuBurst?: string;
|
|
19707
19927
|
/**
|
|
19708
19928
|
* @remarks
|
|
19709
19929
|
* Indicates whether canary release rules are enabled. Canary release rules apply only to applications in Spring Cloud and Dubbo frameworks. Valid values:
|
|
@@ -21733,7 +21953,7 @@ export declare class DescribeApplicationSlbsResponseBodyData extends $tea.Model
|
|
|
21733
21953
|
* The ID of the Internet-facing SLB instance.
|
|
21734
21954
|
*
|
|
21735
21955
|
* @example
|
|
21736
|
-
* 59.74
|
|
21956
|
+
* ``59.74.**.**``
|
|
21737
21957
|
*/
|
|
21738
21958
|
internetIp?: string;
|
|
21739
21959
|
internetSlbChargeType?: string;
|
|
@@ -24729,7 +24949,7 @@ export declare class DescribePipelineResponseBodyDataStageListTaskList extends $
|
|
|
24729
24949
|
* The error message returned when the task could not be executed. If the task is successfully executed, this parameter is not returned.
|
|
24730
24950
|
*
|
|
24731
24951
|
* @example
|
|
24732
|
-
* EDAS-10022
|
|
24952
|
+
* EDAS-10022
|
|
24733
24953
|
*/
|
|
24734
24954
|
errorMessage?: string;
|
|
24735
24955
|
/**
|
|
@@ -25128,6 +25348,22 @@ export declare class DescribeSecretResponseBodyData extends $tea.Model {
|
|
|
25128
25348
|
[key: string]: any;
|
|
25129
25349
|
});
|
|
25130
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
|
+
}
|
|
25131
25367
|
export declare class ExecJobResponseBodyData extends $tea.Model {
|
|
25132
25368
|
/**
|
|
25133
25369
|
* @example
|
|
@@ -25159,6 +25395,83 @@ export declare class ExecJobResponseBodyData extends $tea.Model {
|
|
|
25159
25395
|
[key: string]: any;
|
|
25160
25396
|
});
|
|
25161
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
|
+
}
|
|
25162
25475
|
export declare class GetArmsTopNMetricResponseBodyData extends $tea.Model {
|
|
25163
25476
|
/**
|
|
25164
25477
|
* @remarks
|
|
@@ -25833,6 +26146,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $tea.M
|
|
|
25833
26146
|
* 1000
|
|
25834
26147
|
*/
|
|
25835
26148
|
cpu?: number;
|
|
26149
|
+
imageUrl?: string;
|
|
25836
26150
|
/**
|
|
25837
26151
|
* @remarks
|
|
25838
26152
|
* The number of application instances.
|
|
@@ -25870,6 +26184,7 @@ export declare class ListApplicationsResponseBodyDataApplications extends $tea.M
|
|
|
25870
26184
|
* cn-beijing:demo
|
|
25871
26185
|
*/
|
|
25872
26186
|
namespaceId?: string;
|
|
26187
|
+
packageUrl?: string;
|
|
25873
26188
|
programmingLanguage?: string;
|
|
25874
26189
|
/**
|
|
25875
26190
|
* @remarks
|
|
@@ -28288,6 +28603,22 @@ export declare class UpdateSecretResponseBodyData extends $tea.Model {
|
|
|
28288
28603
|
[key: string]: any;
|
|
28289
28604
|
});
|
|
28290
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
|
+
}
|
|
28291
28622
|
export default class Client extends OpenApi {
|
|
28292
28623
|
constructor(config: $OpenApi.Config);
|
|
28293
28624
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
@@ -29396,6 +29727,20 @@ export default class Client extends OpenApi {
|
|
|
29396
29727
|
* @returns DisableApplicationScalingRuleResponse
|
|
29397
29728
|
*/
|
|
29398
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>;
|
|
29399
29744
|
/**
|
|
29400
29745
|
* Enables an auto scaling policy for an application.
|
|
29401
29746
|
*
|
|
@@ -29428,6 +29773,24 @@ export default class Client extends OpenApi {
|
|
|
29428
29773
|
* @returns ExecJobResponse
|
|
29429
29774
|
*/
|
|
29430
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>;
|
|
29431
29794
|
/**
|
|
29432
29795
|
* Queries the top N applications in Application Monitoring.
|
|
29433
29796
|
*
|
|
@@ -30445,4 +30808,18 @@ export default class Client extends OpenApi {
|
|
|
30445
30808
|
* @returns UpdateWebCustomDomainResponse
|
|
30446
30809
|
*/
|
|
30447
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>;
|
|
30448
30825
|
}
|