@alicloud/esa20240910 2.15.0 → 2.17.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 +727 -55
- package/dist/client.js +443 -29
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +966 -13
package/src/client.ts
CHANGED
|
@@ -4924,6 +4924,82 @@ export class DescribeDDoSL7QpsListResponseBodyDataModule extends $dara.Model {
|
|
|
4924
4924
|
}
|
|
4925
4925
|
}
|
|
4926
4926
|
|
|
4927
|
+
export class DescribeEdgeContainerAppStatsResponseBodyPoints extends $dara.Model {
|
|
4928
|
+
/**
|
|
4929
|
+
* @example
|
|
4930
|
+
* 0.1
|
|
4931
|
+
*/
|
|
4932
|
+
containerCpuUsageSecondsQuotaRate?: number;
|
|
4933
|
+
/**
|
|
4934
|
+
* @example
|
|
4935
|
+
* 2
|
|
4936
|
+
*/
|
|
4937
|
+
containerCpuUsageSecondsTotal?: number;
|
|
4938
|
+
/**
|
|
4939
|
+
* @example
|
|
4940
|
+
* 0
|
|
4941
|
+
*/
|
|
4942
|
+
containerFsReadsBytesAvg?: number;
|
|
4943
|
+
/**
|
|
4944
|
+
* @example
|
|
4945
|
+
* 0
|
|
4946
|
+
*/
|
|
4947
|
+
containerFsWritesBytesAvg?: number;
|
|
4948
|
+
/**
|
|
4949
|
+
* @example
|
|
4950
|
+
* 0.1
|
|
4951
|
+
*/
|
|
4952
|
+
containerMemoryRss?: number;
|
|
4953
|
+
/**
|
|
4954
|
+
* @example
|
|
4955
|
+
* 1
|
|
4956
|
+
*/
|
|
4957
|
+
containerMemoryRssQuotaRate?: number;
|
|
4958
|
+
/**
|
|
4959
|
+
* @example
|
|
4960
|
+
* 100
|
|
4961
|
+
*/
|
|
4962
|
+
podReadyRate?: number;
|
|
4963
|
+
/**
|
|
4964
|
+
* @example
|
|
4965
|
+
* 2024-01-18T15:04:05Z
|
|
4966
|
+
*/
|
|
4967
|
+
time?: string;
|
|
4968
|
+
static names(): { [key: string]: string } {
|
|
4969
|
+
return {
|
|
4970
|
+
containerCpuUsageSecondsQuotaRate: 'ContainerCpuUsageSecondsQuotaRate',
|
|
4971
|
+
containerCpuUsageSecondsTotal: 'ContainerCpuUsageSecondsTotal',
|
|
4972
|
+
containerFsReadsBytesAvg: 'ContainerFsReadsBytesAvg',
|
|
4973
|
+
containerFsWritesBytesAvg: 'ContainerFsWritesBytesAvg',
|
|
4974
|
+
containerMemoryRss: 'ContainerMemoryRss',
|
|
4975
|
+
containerMemoryRssQuotaRate: 'ContainerMemoryRssQuotaRate',
|
|
4976
|
+
podReadyRate: 'PodReadyRate',
|
|
4977
|
+
time: 'Time',
|
|
4978
|
+
};
|
|
4979
|
+
}
|
|
4980
|
+
|
|
4981
|
+
static types(): { [key: string]: any } {
|
|
4982
|
+
return {
|
|
4983
|
+
containerCpuUsageSecondsQuotaRate: 'number',
|
|
4984
|
+
containerCpuUsageSecondsTotal: 'number',
|
|
4985
|
+
containerFsReadsBytesAvg: 'number',
|
|
4986
|
+
containerFsWritesBytesAvg: 'number',
|
|
4987
|
+
containerMemoryRss: 'number',
|
|
4988
|
+
containerMemoryRssQuotaRate: 'number',
|
|
4989
|
+
podReadyRate: 'number',
|
|
4990
|
+
time: 'string',
|
|
4991
|
+
};
|
|
4992
|
+
}
|
|
4993
|
+
|
|
4994
|
+
validate() {
|
|
4995
|
+
super.validate();
|
|
4996
|
+
}
|
|
4997
|
+
|
|
4998
|
+
constructor(map?: { [key: string]: any }) {
|
|
4999
|
+
super(map);
|
|
5000
|
+
}
|
|
5001
|
+
}
|
|
5002
|
+
|
|
4927
5003
|
export class DescribePreloadTasksResponseBodyTasks extends $dara.Model {
|
|
4928
5004
|
/**
|
|
4929
5005
|
* @remarks
|
|
@@ -8535,6 +8611,7 @@ export class GetSiteResponseBodySiteModel extends $dara.Model {
|
|
|
8535
8611
|
* male1-1.ialicdn.com,female1-1.ialicdn.com
|
|
8536
8612
|
*/
|
|
8537
8613
|
nameServerList?: string;
|
|
8614
|
+
offlineReason?: string;
|
|
8538
8615
|
/**
|
|
8539
8616
|
* @remarks
|
|
8540
8617
|
* The plan name.
|
|
@@ -8633,6 +8710,7 @@ export class GetSiteResponseBodySiteModel extends $dara.Model {
|
|
|
8633
8710
|
createTime: 'CreateTime',
|
|
8634
8711
|
instanceId: 'InstanceId',
|
|
8635
8712
|
nameServerList: 'NameServerList',
|
|
8713
|
+
offlineReason: 'OfflineReason',
|
|
8636
8714
|
planName: 'PlanName',
|
|
8637
8715
|
planSpecName: 'PlanSpecName',
|
|
8638
8716
|
resourceGroupId: 'ResourceGroupId',
|
|
@@ -8655,6 +8733,7 @@ export class GetSiteResponseBodySiteModel extends $dara.Model {
|
|
|
8655
8733
|
createTime: 'string',
|
|
8656
8734
|
instanceId: 'string',
|
|
8657
8735
|
nameServerList: 'string',
|
|
8736
|
+
offlineReason: 'string',
|
|
8658
8737
|
planName: 'string',
|
|
8659
8738
|
planSpecName: 'string',
|
|
8660
8739
|
resourceGroupId: 'string',
|
|
@@ -11441,16 +11520,29 @@ export class ListHttpRequestHeaderModificationRulesResponseBodyConfigs extends $
|
|
|
11441
11520
|
|
|
11442
11521
|
export class ListHttpResponseHeaderModificationRulesResponseBodyConfigsResponseHeaderModification extends $dara.Model {
|
|
11443
11522
|
/**
|
|
11523
|
+
* @remarks
|
|
11524
|
+
* The name of the response header.
|
|
11525
|
+
*
|
|
11444
11526
|
* @example
|
|
11445
11527
|
* headerName
|
|
11446
11528
|
*/
|
|
11447
11529
|
name?: string;
|
|
11448
11530
|
/**
|
|
11531
|
+
* @remarks
|
|
11532
|
+
* The action. Valid values:
|
|
11533
|
+
*
|
|
11534
|
+
* * add: adds a response header.
|
|
11535
|
+
* * del: deletes a response header.
|
|
11536
|
+
* * modify: modifies a response header.
|
|
11537
|
+
*
|
|
11449
11538
|
* @example
|
|
11450
11539
|
* add
|
|
11451
11540
|
*/
|
|
11452
11541
|
operation?: string;
|
|
11453
11542
|
/**
|
|
11543
|
+
* @remarks
|
|
11544
|
+
* The value of the response header.
|
|
11545
|
+
*
|
|
11454
11546
|
* @example
|
|
11455
11547
|
* headerValue
|
|
11456
11548
|
*/
|
|
@@ -11482,37 +11574,68 @@ export class ListHttpResponseHeaderModificationRulesResponseBodyConfigsResponseH
|
|
|
11482
11574
|
|
|
11483
11575
|
export class ListHttpResponseHeaderModificationRulesResponseBodyConfigs extends $dara.Model {
|
|
11484
11576
|
/**
|
|
11577
|
+
* @remarks
|
|
11578
|
+
* The configuration ID.
|
|
11579
|
+
*
|
|
11485
11580
|
* @example
|
|
11486
11581
|
* 35281609698****
|
|
11487
11582
|
*/
|
|
11488
11583
|
configId?: number;
|
|
11489
11584
|
/**
|
|
11585
|
+
* @remarks
|
|
11586
|
+
* The type of the configuration. Valid values:
|
|
11587
|
+
*
|
|
11588
|
+
* * global: global configuration.
|
|
11589
|
+
* * rule: rule configuration.
|
|
11590
|
+
*
|
|
11490
11591
|
* @example
|
|
11491
11592
|
* rule
|
|
11492
11593
|
*/
|
|
11493
11594
|
configType?: string;
|
|
11595
|
+
/**
|
|
11596
|
+
* @remarks
|
|
11597
|
+
* The configurations of modifying response headers. You can add, delete, or modify a response header.
|
|
11598
|
+
*/
|
|
11494
11599
|
responseHeaderModification?: ListHttpResponseHeaderModificationRulesResponseBodyConfigsResponseHeaderModification[];
|
|
11495
11600
|
/**
|
|
11601
|
+
* @remarks
|
|
11602
|
+
* The rule content.
|
|
11603
|
+
*
|
|
11496
11604
|
* @example
|
|
11497
11605
|
* (http.host eq "video.example.com")
|
|
11498
11606
|
*/
|
|
11499
11607
|
rule?: string;
|
|
11500
11608
|
/**
|
|
11609
|
+
* @remarks
|
|
11610
|
+
* Indicates whether the rule is enabled. Valid values:
|
|
11611
|
+
*
|
|
11612
|
+
* * on
|
|
11613
|
+
* * off
|
|
11614
|
+
*
|
|
11501
11615
|
* @example
|
|
11502
11616
|
* on
|
|
11503
11617
|
*/
|
|
11504
11618
|
ruleEnable?: string;
|
|
11505
11619
|
/**
|
|
11620
|
+
* @remarks
|
|
11621
|
+
* The rule name.
|
|
11622
|
+
*
|
|
11506
11623
|
* @example
|
|
11507
11624
|
* rule_example
|
|
11508
11625
|
*/
|
|
11509
11626
|
ruleName?: string;
|
|
11510
11627
|
/**
|
|
11628
|
+
* @remarks
|
|
11629
|
+
* The order in which the rule is executed.
|
|
11630
|
+
*
|
|
11511
11631
|
* @example
|
|
11512
11632
|
* 1
|
|
11513
11633
|
*/
|
|
11514
11634
|
sequence?: number;
|
|
11515
11635
|
/**
|
|
11636
|
+
* @remarks
|
|
11637
|
+
* The version number of the website configurations.
|
|
11638
|
+
*
|
|
11516
11639
|
* @example
|
|
11517
11640
|
* 0
|
|
11518
11641
|
*/
|
|
@@ -11828,41 +11951,74 @@ export class ListHttpsBasicConfigurationsResponseBodyConfigs extends $dara.Model
|
|
|
11828
11951
|
|
|
11829
11952
|
export class ListImageTransformsResponseBodyConfigs extends $dara.Model {
|
|
11830
11953
|
/**
|
|
11954
|
+
* @remarks
|
|
11955
|
+
* The configuration ID,
|
|
11956
|
+
*
|
|
11831
11957
|
* @example
|
|
11832
11958
|
* 395386449776640
|
|
11833
11959
|
*/
|
|
11834
11960
|
configId?: number;
|
|
11835
11961
|
/**
|
|
11962
|
+
* @remarks
|
|
11963
|
+
* The type of the configuration. Valid values:
|
|
11964
|
+
*
|
|
11965
|
+
* * global: global configuration.
|
|
11966
|
+
* * rule: rule configuration.
|
|
11967
|
+
*
|
|
11836
11968
|
* @example
|
|
11837
11969
|
* global
|
|
11838
11970
|
*/
|
|
11839
11971
|
configType?: string;
|
|
11840
11972
|
/**
|
|
11973
|
+
* @remarks
|
|
11974
|
+
* Indicates whether cache reserve is enabled. Indicates whether the task name is valid. Valid values:
|
|
11975
|
+
*
|
|
11976
|
+
* * **on**
|
|
11977
|
+
* * **off**
|
|
11978
|
+
*
|
|
11841
11979
|
* @example
|
|
11842
11980
|
* on
|
|
11843
11981
|
*/
|
|
11844
11982
|
enable?: string;
|
|
11845
11983
|
/**
|
|
11984
|
+
* @remarks
|
|
11985
|
+
* The rule content, which is a policy or conditional expression.
|
|
11986
|
+
*
|
|
11846
11987
|
* @example
|
|
11847
11988
|
* (http.request.uri.path.file_name eq \\"jpg\\")
|
|
11848
11989
|
*/
|
|
11849
11990
|
rule?: string;
|
|
11850
11991
|
/**
|
|
11992
|
+
* @remarks
|
|
11993
|
+
* Indicates whether the rule is enabled. Valid values:
|
|
11994
|
+
*
|
|
11995
|
+
* * on
|
|
11996
|
+
* * off
|
|
11997
|
+
*
|
|
11851
11998
|
* @example
|
|
11852
11999
|
* on
|
|
11853
12000
|
*/
|
|
11854
12001
|
ruleEnable?: string;
|
|
11855
12002
|
/**
|
|
12003
|
+
* @remarks
|
|
12004
|
+
* The rule name.
|
|
12005
|
+
*
|
|
11856
12006
|
* @example
|
|
11857
12007
|
* test
|
|
11858
12008
|
*/
|
|
11859
12009
|
ruleName?: string;
|
|
11860
12010
|
/**
|
|
12011
|
+
* @remarks
|
|
12012
|
+
* The order in which the rule is executed.
|
|
12013
|
+
*
|
|
11861
12014
|
* @example
|
|
11862
12015
|
* 1
|
|
11863
12016
|
*/
|
|
11864
12017
|
sequence?: number;
|
|
11865
12018
|
/**
|
|
12019
|
+
* @remarks
|
|
12020
|
+
* The version number of the website.
|
|
12021
|
+
*
|
|
11866
12022
|
* @example
|
|
11867
12023
|
* 1
|
|
11868
12024
|
*/
|
|
@@ -12142,6 +12298,9 @@ export class ListListsRequestQueryArgs extends $dara.Model {
|
|
|
12142
12298
|
*/
|
|
12143
12299
|
itemLike?: string;
|
|
12144
12300
|
/**
|
|
12301
|
+
* @remarks
|
|
12302
|
+
* The type of the custom list.
|
|
12303
|
+
*
|
|
12145
12304
|
* @example
|
|
12146
12305
|
* ip
|
|
12147
12306
|
*/
|
|
@@ -13982,56 +14141,106 @@ export class ListRecordsResponseBodyRecords extends $dara.Model {
|
|
|
13982
14141
|
|
|
13983
14142
|
export class ListRedirectRulesResponseBodyConfigs extends $dara.Model {
|
|
13984
14143
|
/**
|
|
14144
|
+
* @remarks
|
|
14145
|
+
* The configuration ID.
|
|
14146
|
+
*
|
|
13985
14147
|
* @example
|
|
13986
14148
|
* 35281609698****
|
|
13987
14149
|
*/
|
|
13988
14150
|
configId?: number;
|
|
13989
14151
|
/**
|
|
14152
|
+
* @remarks
|
|
14153
|
+
* The type of the configuration. Valid values:
|
|
14154
|
+
*
|
|
14155
|
+
* * global: global configuration.
|
|
14156
|
+
* * rule: rule configuration.
|
|
14157
|
+
*
|
|
13990
14158
|
* @example
|
|
13991
14159
|
* rule
|
|
13992
14160
|
*/
|
|
13993
14161
|
configType?: string;
|
|
13994
14162
|
/**
|
|
14163
|
+
* @remarks
|
|
14164
|
+
* Indicates whether the feature of retaining the query string is enabled. Valid values:
|
|
14165
|
+
*
|
|
14166
|
+
* * on
|
|
14167
|
+
* * off
|
|
14168
|
+
*
|
|
13995
14169
|
* @example
|
|
13996
14170
|
* on
|
|
13997
14171
|
*/
|
|
13998
14172
|
reserveQueryString?: string;
|
|
13999
14173
|
/**
|
|
14174
|
+
* @remarks
|
|
14175
|
+
* The rule content.
|
|
14176
|
+
*
|
|
14000
14177
|
* @example
|
|
14001
14178
|
* (http.host eq "video.example.com")
|
|
14002
14179
|
*/
|
|
14003
14180
|
rule?: string;
|
|
14004
14181
|
/**
|
|
14182
|
+
* @remarks
|
|
14183
|
+
* Indicates whether the rule is enabled. Valid values:
|
|
14184
|
+
*
|
|
14185
|
+
* * on
|
|
14186
|
+
* * off
|
|
14187
|
+
*
|
|
14005
14188
|
* @example
|
|
14006
14189
|
* on
|
|
14007
14190
|
*/
|
|
14008
14191
|
ruleEnable?: string;
|
|
14009
14192
|
/**
|
|
14193
|
+
* @remarks
|
|
14194
|
+
* The rule name.
|
|
14195
|
+
*
|
|
14010
14196
|
* @example
|
|
14011
14197
|
* rule_example
|
|
14012
14198
|
*/
|
|
14013
14199
|
ruleName?: string;
|
|
14014
14200
|
/**
|
|
14201
|
+
* @remarks
|
|
14202
|
+
* The order in which the rule is executed.
|
|
14203
|
+
*
|
|
14015
14204
|
* @example
|
|
14016
14205
|
* 1
|
|
14017
14206
|
*/
|
|
14018
14207
|
sequence?: number;
|
|
14019
14208
|
/**
|
|
14209
|
+
* @remarks
|
|
14210
|
+
* The version of the website configurations.
|
|
14211
|
+
*
|
|
14020
14212
|
* @example
|
|
14021
14213
|
* 1
|
|
14022
14214
|
*/
|
|
14023
14215
|
siteVersion?: number;
|
|
14024
14216
|
/**
|
|
14217
|
+
* @remarks
|
|
14218
|
+
* The response code that you want to use to indicate URL redirection. Valid values:
|
|
14219
|
+
*
|
|
14220
|
+
* * 301
|
|
14221
|
+
* * 302
|
|
14222
|
+
* * 303
|
|
14223
|
+
* * 307
|
|
14224
|
+
* * 308
|
|
14225
|
+
*
|
|
14025
14226
|
* @example
|
|
14026
14227
|
* 301
|
|
14027
14228
|
*/
|
|
14028
14229
|
statusCode?: string;
|
|
14029
14230
|
/**
|
|
14231
|
+
* @remarks
|
|
14232
|
+
* The destination URL to which requests are redirected.
|
|
14233
|
+
*
|
|
14030
14234
|
* @example
|
|
14031
14235
|
* http://www.exapmle.com/index.html
|
|
14032
14236
|
*/
|
|
14033
14237
|
targetUrl?: string;
|
|
14034
14238
|
/**
|
|
14239
|
+
* @remarks
|
|
14240
|
+
* The redirect type. Valid values:
|
|
14241
|
+
*
|
|
14242
|
+
* * static
|
|
14243
|
+
*
|
|
14035
14244
|
* @example
|
|
14036
14245
|
* static
|
|
14037
14246
|
*/
|
|
@@ -14079,56 +14288,99 @@ export class ListRedirectRulesResponseBodyConfigs extends $dara.Model {
|
|
|
14079
14288
|
|
|
14080
14289
|
export class ListRewriteUrlRulesResponseBodyConfigs extends $dara.Model {
|
|
14081
14290
|
/**
|
|
14291
|
+
* @remarks
|
|
14292
|
+
* The configuration ID.
|
|
14293
|
+
*
|
|
14082
14294
|
* @example
|
|
14083
14295
|
* 39538644977****
|
|
14084
14296
|
*/
|
|
14085
14297
|
configId?: number;
|
|
14086
14298
|
/**
|
|
14299
|
+
* @remarks
|
|
14300
|
+
* The type of the configuration. Valid values:
|
|
14301
|
+
*
|
|
14302
|
+
* * global: global configuration.
|
|
14303
|
+
* * rule: rule configuration.
|
|
14304
|
+
*
|
|
14087
14305
|
* @example
|
|
14088
14306
|
* global
|
|
14089
14307
|
*/
|
|
14090
14308
|
configType?: string;
|
|
14091
14309
|
/**
|
|
14310
|
+
* @remarks
|
|
14311
|
+
* The desired query string to which you want to rewrite the query string in the original request.
|
|
14312
|
+
*
|
|
14092
14313
|
* @example
|
|
14093
14314
|
* example=123
|
|
14094
14315
|
*/
|
|
14095
14316
|
queryString?: string;
|
|
14096
14317
|
/**
|
|
14318
|
+
* @remarks
|
|
14319
|
+
* The query string rewrite method. Valid values:
|
|
14320
|
+
*
|
|
14321
|
+
* * static
|
|
14322
|
+
*
|
|
14097
14323
|
* @example
|
|
14098
14324
|
* static
|
|
14099
14325
|
*/
|
|
14100
14326
|
rewriteQueryStringType?: string;
|
|
14101
14327
|
/**
|
|
14328
|
+
* @remarks
|
|
14329
|
+
* The path rewrite method. Valid values:
|
|
14330
|
+
*
|
|
14331
|
+
* * static
|
|
14332
|
+
*
|
|
14102
14333
|
* @example
|
|
14103
14334
|
* static
|
|
14104
14335
|
*/
|
|
14105
14336
|
rewriteUriType?: string;
|
|
14106
14337
|
/**
|
|
14338
|
+
* @remarks
|
|
14339
|
+
* The rule content.
|
|
14340
|
+
*
|
|
14107
14341
|
* @example
|
|
14108
14342
|
* (http.host eq "video.example.com")
|
|
14109
14343
|
*/
|
|
14110
14344
|
rule?: string;
|
|
14111
14345
|
/**
|
|
14346
|
+
* @remarks
|
|
14347
|
+
* Indicates whether the rule is enabled. Valid values:
|
|
14348
|
+
*
|
|
14349
|
+
* * on
|
|
14350
|
+
* * off
|
|
14351
|
+
*
|
|
14112
14352
|
* @example
|
|
14113
14353
|
* on
|
|
14114
14354
|
*/
|
|
14115
14355
|
ruleEnable?: string;
|
|
14116
14356
|
/**
|
|
14357
|
+
* @remarks
|
|
14358
|
+
* The rule name.
|
|
14359
|
+
*
|
|
14117
14360
|
* @example
|
|
14118
14361
|
* rule_example
|
|
14119
14362
|
*/
|
|
14120
14363
|
ruleName?: string;
|
|
14121
14364
|
/**
|
|
14365
|
+
* @remarks
|
|
14366
|
+
* The order in which the rule is executed.
|
|
14367
|
+
*
|
|
14122
14368
|
* @example
|
|
14123
14369
|
* 1
|
|
14124
14370
|
*/
|
|
14125
14371
|
sequence?: number;
|
|
14126
14372
|
/**
|
|
14373
|
+
* @remarks
|
|
14374
|
+
* The version number of the website configurations.
|
|
14375
|
+
*
|
|
14127
14376
|
* @example
|
|
14128
14377
|
* 0
|
|
14129
14378
|
*/
|
|
14130
14379
|
siteVersion?: number;
|
|
14131
14380
|
/**
|
|
14381
|
+
* @remarks
|
|
14382
|
+
* The desired URI to which you want to rewrite the path in the original request.
|
|
14383
|
+
*
|
|
14132
14384
|
* @example
|
|
14133
14385
|
* /image.example.com/index.html
|
|
14134
14386
|
*/
|
|
@@ -14667,6 +14919,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
14667
14919
|
* male1-1.ialicdn.com,female1-1.ialicdn.com
|
|
14668
14920
|
*/
|
|
14669
14921
|
nameServerList?: string;
|
|
14922
|
+
offlineReason?: string;
|
|
14670
14923
|
/**
|
|
14671
14924
|
* @remarks
|
|
14672
14925
|
* The plan name.
|
|
@@ -14760,6 +15013,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
14760
15013
|
createTime: 'CreateTime',
|
|
14761
15014
|
instanceId: 'InstanceId',
|
|
14762
15015
|
nameServerList: 'NameServerList',
|
|
15016
|
+
offlineReason: 'OfflineReason',
|
|
14763
15017
|
planName: 'PlanName',
|
|
14764
15018
|
planSpecName: 'PlanSpecName',
|
|
14765
15019
|
resourceGroupId: 'ResourceGroupId',
|
|
@@ -14781,6 +15035,7 @@ export class ListSitesResponseBodySites extends $dara.Model {
|
|
|
14781
15035
|
createTime: 'string',
|
|
14782
15036
|
instanceId: 'string',
|
|
14783
15037
|
nameServerList: 'string',
|
|
15038
|
+
offlineReason: 'string',
|
|
14784
15039
|
planName: 'string',
|
|
14785
15040
|
planSpecName: 'string',
|
|
14786
15041
|
resourceGroupId: 'string',
|
|
@@ -20564,7 +20819,7 @@ export class CreateCustomScenePolicyRequest extends $dara.Model {
|
|
|
20564
20819
|
* @remarks
|
|
20565
20820
|
* The time when the policy expires.
|
|
20566
20821
|
*
|
|
20567
|
-
*
|
|
20822
|
+
* The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
20568
20823
|
*
|
|
20569
20824
|
* This parameter is required.
|
|
20570
20825
|
*
|
|
@@ -20594,7 +20849,7 @@ export class CreateCustomScenePolicyRequest extends $dara.Model {
|
|
|
20594
20849
|
* @remarks
|
|
20595
20850
|
* The time when the policy takes effect.
|
|
20596
20851
|
*
|
|
20597
|
-
*
|
|
20852
|
+
* The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
20598
20853
|
*
|
|
20599
20854
|
* This parameter is required.
|
|
20600
20855
|
*
|
|
@@ -31836,7 +32091,7 @@ export class DeleteWaitingRoomRuleResponse extends $dara.Model {
|
|
|
31836
32091
|
export class DescribeCustomScenePoliciesRequest extends $dara.Model {
|
|
31837
32092
|
/**
|
|
31838
32093
|
* @remarks
|
|
31839
|
-
* The page
|
|
32094
|
+
* The number of the page to return. Valid values: **1 to 100000**.
|
|
31840
32095
|
*
|
|
31841
32096
|
* This parameter is required.
|
|
31842
32097
|
*
|
|
@@ -31846,7 +32101,7 @@ export class DescribeCustomScenePoliciesRequest extends $dara.Model {
|
|
|
31846
32101
|
pageNumber?: number;
|
|
31847
32102
|
/**
|
|
31848
32103
|
* @remarks
|
|
31849
|
-
* The number of entries per page. Default value: 10
|
|
32104
|
+
* The number of entries per page. Default value: **10**. Valid values: **5**, **10**, or **20**.
|
|
31850
32105
|
*
|
|
31851
32106
|
* @example
|
|
31852
32107
|
* 10
|
|
@@ -31854,7 +32109,7 @@ export class DescribeCustomScenePoliciesRequest extends $dara.Model {
|
|
|
31854
32109
|
pageSize?: number;
|
|
31855
32110
|
/**
|
|
31856
32111
|
* @remarks
|
|
31857
|
-
* The ID
|
|
32112
|
+
* The rule ID.
|
|
31858
32113
|
*
|
|
31859
32114
|
* @example
|
|
31860
32115
|
* 1234****
|
|
@@ -32527,6 +32782,173 @@ export class DescribeDDoSL7QpsListResponse extends $dara.Model {
|
|
|
32527
32782
|
}
|
|
32528
32783
|
}
|
|
32529
32784
|
|
|
32785
|
+
export class DescribeEdgeContainerAppStatsRequest extends $dara.Model {
|
|
32786
|
+
/**
|
|
32787
|
+
* @remarks
|
|
32788
|
+
* This parameter is required.
|
|
32789
|
+
*
|
|
32790
|
+
* @example
|
|
32791
|
+
* app-xxxx
|
|
32792
|
+
*/
|
|
32793
|
+
app?: string;
|
|
32794
|
+
/**
|
|
32795
|
+
* @example
|
|
32796
|
+
* 2024-09-02T16:04:05Z
|
|
32797
|
+
*/
|
|
32798
|
+
endTime?: string;
|
|
32799
|
+
/**
|
|
32800
|
+
* @remarks
|
|
32801
|
+
* This parameter is required.
|
|
32802
|
+
*
|
|
32803
|
+
* @example
|
|
32804
|
+
* pod_ready_rate
|
|
32805
|
+
*/
|
|
32806
|
+
fields?: string;
|
|
32807
|
+
/**
|
|
32808
|
+
* @example
|
|
32809
|
+
* telecom,unicom,cmcc
|
|
32810
|
+
*/
|
|
32811
|
+
isp?: string;
|
|
32812
|
+
/**
|
|
32813
|
+
* @example
|
|
32814
|
+
* huizhou
|
|
32815
|
+
*/
|
|
32816
|
+
locate?: string;
|
|
32817
|
+
/**
|
|
32818
|
+
* @example
|
|
32819
|
+
* 2024-09-02T15:04:05Z
|
|
32820
|
+
*/
|
|
32821
|
+
startTime?: string;
|
|
32822
|
+
/**
|
|
32823
|
+
* @example
|
|
32824
|
+
* t-xxxx
|
|
32825
|
+
*/
|
|
32826
|
+
tenant?: string;
|
|
32827
|
+
static names(): { [key: string]: string } {
|
|
32828
|
+
return {
|
|
32829
|
+
app: 'App',
|
|
32830
|
+
endTime: 'EndTime',
|
|
32831
|
+
fields: 'Fields',
|
|
32832
|
+
isp: 'Isp',
|
|
32833
|
+
locate: 'Locate',
|
|
32834
|
+
startTime: 'StartTime',
|
|
32835
|
+
tenant: 'Tenant',
|
|
32836
|
+
};
|
|
32837
|
+
}
|
|
32838
|
+
|
|
32839
|
+
static types(): { [key: string]: any } {
|
|
32840
|
+
return {
|
|
32841
|
+
app: 'string',
|
|
32842
|
+
endTime: 'string',
|
|
32843
|
+
fields: 'string',
|
|
32844
|
+
isp: 'string',
|
|
32845
|
+
locate: 'string',
|
|
32846
|
+
startTime: 'string',
|
|
32847
|
+
tenant: 'string',
|
|
32848
|
+
};
|
|
32849
|
+
}
|
|
32850
|
+
|
|
32851
|
+
validate() {
|
|
32852
|
+
super.validate();
|
|
32853
|
+
}
|
|
32854
|
+
|
|
32855
|
+
constructor(map?: { [key: string]: any }) {
|
|
32856
|
+
super(map);
|
|
32857
|
+
}
|
|
32858
|
+
}
|
|
32859
|
+
|
|
32860
|
+
export class DescribeEdgeContainerAppStatsResponseBody extends $dara.Model {
|
|
32861
|
+
cpuUsageSecondsQuotaRateAvg?: number;
|
|
32862
|
+
cpuUsageSecondsTotalAvg?: number;
|
|
32863
|
+
fsReadsBytesAvgAvg?: number;
|
|
32864
|
+
fsWritesBytesAvgAvg?: number;
|
|
32865
|
+
memoryRssAvg?: number;
|
|
32866
|
+
memoryRssQuotaRateAvg?: number;
|
|
32867
|
+
podReadyRateAvg?: number;
|
|
32868
|
+
points?: DescribeEdgeContainerAppStatsResponseBodyPoints[];
|
|
32869
|
+
/**
|
|
32870
|
+
* @remarks
|
|
32871
|
+
* Id of the request
|
|
32872
|
+
*
|
|
32873
|
+
* @example
|
|
32874
|
+
* 35C66C7B-671H-4297-9187-2C4477247A78
|
|
32875
|
+
*/
|
|
32876
|
+
requestId?: string;
|
|
32877
|
+
static names(): { [key: string]: string } {
|
|
32878
|
+
return {
|
|
32879
|
+
cpuUsageSecondsQuotaRateAvg: 'CpuUsageSecondsQuotaRateAvg',
|
|
32880
|
+
cpuUsageSecondsTotalAvg: 'CpuUsageSecondsTotalAvg',
|
|
32881
|
+
fsReadsBytesAvgAvg: 'FsReadsBytesAvgAvg',
|
|
32882
|
+
fsWritesBytesAvgAvg: 'FsWritesBytesAvgAvg',
|
|
32883
|
+
memoryRssAvg: 'MemoryRssAvg',
|
|
32884
|
+
memoryRssQuotaRateAvg: 'MemoryRssQuotaRateAvg',
|
|
32885
|
+
podReadyRateAvg: 'PodReadyRateAvg',
|
|
32886
|
+
points: 'Points',
|
|
32887
|
+
requestId: 'RequestId',
|
|
32888
|
+
};
|
|
32889
|
+
}
|
|
32890
|
+
|
|
32891
|
+
static types(): { [key: string]: any } {
|
|
32892
|
+
return {
|
|
32893
|
+
cpuUsageSecondsQuotaRateAvg: 'number',
|
|
32894
|
+
cpuUsageSecondsTotalAvg: 'number',
|
|
32895
|
+
fsReadsBytesAvgAvg: 'number',
|
|
32896
|
+
fsWritesBytesAvgAvg: 'number',
|
|
32897
|
+
memoryRssAvg: 'number',
|
|
32898
|
+
memoryRssQuotaRateAvg: 'number',
|
|
32899
|
+
podReadyRateAvg: 'number',
|
|
32900
|
+
points: { 'type': 'array', 'itemType': DescribeEdgeContainerAppStatsResponseBodyPoints },
|
|
32901
|
+
requestId: 'string',
|
|
32902
|
+
};
|
|
32903
|
+
}
|
|
32904
|
+
|
|
32905
|
+
validate() {
|
|
32906
|
+
if(Array.isArray(this.points)) {
|
|
32907
|
+
$dara.Model.validateArray(this.points);
|
|
32908
|
+
}
|
|
32909
|
+
super.validate();
|
|
32910
|
+
}
|
|
32911
|
+
|
|
32912
|
+
constructor(map?: { [key: string]: any }) {
|
|
32913
|
+
super(map);
|
|
32914
|
+
}
|
|
32915
|
+
}
|
|
32916
|
+
|
|
32917
|
+
export class DescribeEdgeContainerAppStatsResponse extends $dara.Model {
|
|
32918
|
+
headers?: { [key: string]: string };
|
|
32919
|
+
statusCode?: number;
|
|
32920
|
+
body?: DescribeEdgeContainerAppStatsResponseBody;
|
|
32921
|
+
static names(): { [key: string]: string } {
|
|
32922
|
+
return {
|
|
32923
|
+
headers: 'headers',
|
|
32924
|
+
statusCode: 'statusCode',
|
|
32925
|
+
body: 'body',
|
|
32926
|
+
};
|
|
32927
|
+
}
|
|
32928
|
+
|
|
32929
|
+
static types(): { [key: string]: any } {
|
|
32930
|
+
return {
|
|
32931
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
32932
|
+
statusCode: 'number',
|
|
32933
|
+
body: DescribeEdgeContainerAppStatsResponseBody,
|
|
32934
|
+
};
|
|
32935
|
+
}
|
|
32936
|
+
|
|
32937
|
+
validate() {
|
|
32938
|
+
if(this.headers) {
|
|
32939
|
+
$dara.Model.validateMap(this.headers);
|
|
32940
|
+
}
|
|
32941
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
32942
|
+
(this.body as any).validate();
|
|
32943
|
+
}
|
|
32944
|
+
super.validate();
|
|
32945
|
+
}
|
|
32946
|
+
|
|
32947
|
+
constructor(map?: { [key: string]: any }) {
|
|
32948
|
+
super(map);
|
|
32949
|
+
}
|
|
32950
|
+
}
|
|
32951
|
+
|
|
32530
32952
|
export class DescribeHttpDDoSAttackIntelligentProtectionRequest extends $dara.Model {
|
|
32531
32953
|
/**
|
|
32532
32954
|
* @remarks
|
|
@@ -35616,6 +36038,105 @@ export class GetEdgeContainerAppResponse extends $dara.Model {
|
|
|
35616
36038
|
}
|
|
35617
36039
|
}
|
|
35618
36040
|
|
|
36041
|
+
export class GetEdgeContainerAppLogRiverRequest extends $dara.Model {
|
|
36042
|
+
/**
|
|
36043
|
+
* @example
|
|
36044
|
+
* app-880688675****88
|
|
36045
|
+
*/
|
|
36046
|
+
appId?: string;
|
|
36047
|
+
static names(): { [key: string]: string } {
|
|
36048
|
+
return {
|
|
36049
|
+
appId: 'AppId',
|
|
36050
|
+
};
|
|
36051
|
+
}
|
|
36052
|
+
|
|
36053
|
+
static types(): { [key: string]: any } {
|
|
36054
|
+
return {
|
|
36055
|
+
appId: 'string',
|
|
36056
|
+
};
|
|
36057
|
+
}
|
|
36058
|
+
|
|
36059
|
+
validate() {
|
|
36060
|
+
super.validate();
|
|
36061
|
+
}
|
|
36062
|
+
|
|
36063
|
+
constructor(map?: { [key: string]: any }) {
|
|
36064
|
+
super(map);
|
|
36065
|
+
}
|
|
36066
|
+
}
|
|
36067
|
+
|
|
36068
|
+
export class GetEdgeContainerAppLogRiverResponseBody extends $dara.Model {
|
|
36069
|
+
/**
|
|
36070
|
+
* @example
|
|
36071
|
+
* /root/hello.log
|
|
36072
|
+
*/
|
|
36073
|
+
path?: string;
|
|
36074
|
+
/**
|
|
36075
|
+
* @example
|
|
36076
|
+
* 0AEDAF20-4DDF-4165-8750-47FF9C1929C9
|
|
36077
|
+
*/
|
|
36078
|
+
requestId?: string;
|
|
36079
|
+
stdout?: boolean;
|
|
36080
|
+
static names(): { [key: string]: string } {
|
|
36081
|
+
return {
|
|
36082
|
+
path: 'Path',
|
|
36083
|
+
requestId: 'RequestId',
|
|
36084
|
+
stdout: 'Stdout',
|
|
36085
|
+
};
|
|
36086
|
+
}
|
|
36087
|
+
|
|
36088
|
+
static types(): { [key: string]: any } {
|
|
36089
|
+
return {
|
|
36090
|
+
path: 'string',
|
|
36091
|
+
requestId: 'string',
|
|
36092
|
+
stdout: 'boolean',
|
|
36093
|
+
};
|
|
36094
|
+
}
|
|
36095
|
+
|
|
36096
|
+
validate() {
|
|
36097
|
+
super.validate();
|
|
36098
|
+
}
|
|
36099
|
+
|
|
36100
|
+
constructor(map?: { [key: string]: any }) {
|
|
36101
|
+
super(map);
|
|
36102
|
+
}
|
|
36103
|
+
}
|
|
36104
|
+
|
|
36105
|
+
export class GetEdgeContainerAppLogRiverResponse extends $dara.Model {
|
|
36106
|
+
headers?: { [key: string]: string };
|
|
36107
|
+
statusCode?: number;
|
|
36108
|
+
body?: GetEdgeContainerAppLogRiverResponseBody;
|
|
36109
|
+
static names(): { [key: string]: string } {
|
|
36110
|
+
return {
|
|
36111
|
+
headers: 'headers',
|
|
36112
|
+
statusCode: 'statusCode',
|
|
36113
|
+
body: 'body',
|
|
36114
|
+
};
|
|
36115
|
+
}
|
|
36116
|
+
|
|
36117
|
+
static types(): { [key: string]: any } {
|
|
36118
|
+
return {
|
|
36119
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
36120
|
+
statusCode: 'number',
|
|
36121
|
+
body: GetEdgeContainerAppLogRiverResponseBody,
|
|
36122
|
+
};
|
|
36123
|
+
}
|
|
36124
|
+
|
|
36125
|
+
validate() {
|
|
36126
|
+
if(this.headers) {
|
|
36127
|
+
$dara.Model.validateMap(this.headers);
|
|
36128
|
+
}
|
|
36129
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
36130
|
+
(this.body as any).validate();
|
|
36131
|
+
}
|
|
36132
|
+
super.validate();
|
|
36133
|
+
}
|
|
36134
|
+
|
|
36135
|
+
constructor(map?: { [key: string]: any }) {
|
|
36136
|
+
super(map);
|
|
36137
|
+
}
|
|
36138
|
+
}
|
|
36139
|
+
|
|
35619
36140
|
export class GetEdgeContainerAppStatusRequest extends $dara.Model {
|
|
35620
36141
|
/**
|
|
35621
36142
|
* @remarks
|
|
@@ -45429,32 +45950,54 @@ export class ListHttpRequestHeaderModificationRulesResponse extends $dara.Model
|
|
|
45429
45950
|
|
|
45430
45951
|
export class ListHttpResponseHeaderModificationRulesRequest extends $dara.Model {
|
|
45431
45952
|
/**
|
|
45953
|
+
* @remarks
|
|
45954
|
+
* The configuration ID.
|
|
45955
|
+
*
|
|
45432
45956
|
* @example
|
|
45433
45957
|
* 35281609698****
|
|
45434
45958
|
*/
|
|
45435
45959
|
configId?: number;
|
|
45436
45960
|
/**
|
|
45961
|
+
* @remarks
|
|
45962
|
+
* The configuration type to query. Valid values:
|
|
45963
|
+
*
|
|
45964
|
+
* * global: global configurations.
|
|
45965
|
+
* * rule: queries rule configurations.
|
|
45966
|
+
*
|
|
45967
|
+
* If this parameter is left empty, all configuration types are returned.
|
|
45968
|
+
*
|
|
45437
45969
|
* @example
|
|
45438
45970
|
* rule
|
|
45439
45971
|
*/
|
|
45440
45972
|
configType?: string;
|
|
45441
45973
|
/**
|
|
45974
|
+
* @remarks
|
|
45975
|
+
* The page number. Pages start from page 1.
|
|
45976
|
+
*
|
|
45442
45977
|
* @example
|
|
45443
45978
|
* 1
|
|
45444
45979
|
*/
|
|
45445
45980
|
pageNumber?: number;
|
|
45446
45981
|
/**
|
|
45982
|
+
* @remarks
|
|
45983
|
+
* The number of entries returned on each page. Default value: 500. Valid values: 1 to 500.
|
|
45984
|
+
*
|
|
45447
45985
|
* @example
|
|
45448
45986
|
* 20
|
|
45449
45987
|
*/
|
|
45450
45988
|
pageSize?: number;
|
|
45451
45989
|
/**
|
|
45990
|
+
* @remarks
|
|
45991
|
+
* The rule name.
|
|
45992
|
+
*
|
|
45452
45993
|
* @example
|
|
45453
45994
|
* rule_example
|
|
45454
45995
|
*/
|
|
45455
45996
|
ruleName?: string;
|
|
45456
45997
|
/**
|
|
45457
45998
|
* @remarks
|
|
45999
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
46000
|
+
*
|
|
45458
46001
|
* This parameter is required.
|
|
45459
46002
|
*
|
|
45460
46003
|
* @example
|
|
@@ -45462,6 +46005,9 @@ export class ListHttpResponseHeaderModificationRulesRequest extends $dara.Model
|
|
|
45462
46005
|
*/
|
|
45463
46006
|
siteId?: number;
|
|
45464
46007
|
/**
|
|
46008
|
+
* @remarks
|
|
46009
|
+
* The version number of the website configurations.
|
|
46010
|
+
*
|
|
45465
46011
|
* @example
|
|
45466
46012
|
* 0
|
|
45467
46013
|
*/
|
|
@@ -45500,28 +46046,47 @@ export class ListHttpResponseHeaderModificationRulesRequest extends $dara.Model
|
|
|
45500
46046
|
}
|
|
45501
46047
|
|
|
45502
46048
|
export class ListHttpResponseHeaderModificationRulesResponseBody extends $dara.Model {
|
|
46049
|
+
/**
|
|
46050
|
+
* @remarks
|
|
46051
|
+
* The configuration list of modifying a response header.
|
|
46052
|
+
*/
|
|
45503
46053
|
configs?: ListHttpResponseHeaderModificationRulesResponseBodyConfigs[];
|
|
45504
46054
|
/**
|
|
46055
|
+
* @remarks
|
|
46056
|
+
* The page number.
|
|
46057
|
+
*
|
|
45505
46058
|
* @example
|
|
45506
46059
|
* 1
|
|
45507
46060
|
*/
|
|
45508
46061
|
pageNumber?: number;
|
|
45509
46062
|
/**
|
|
46063
|
+
* @remarks
|
|
46064
|
+
* The number of entries per page.
|
|
46065
|
+
*
|
|
45510
46066
|
* @example
|
|
45511
46067
|
* 20
|
|
45512
46068
|
*/
|
|
45513
46069
|
pageSize?: number;
|
|
45514
46070
|
/**
|
|
46071
|
+
* @remarks
|
|
46072
|
+
* The request ID.
|
|
46073
|
+
*
|
|
45515
46074
|
* @example
|
|
45516
46075
|
* CB1A380B-09F0-41BB-280B-72F8FD6DA2FE
|
|
45517
46076
|
*/
|
|
45518
46077
|
requestId?: string;
|
|
45519
46078
|
/**
|
|
46079
|
+
* @remarks
|
|
46080
|
+
* The total number of entries.
|
|
46081
|
+
*
|
|
45520
46082
|
* @example
|
|
45521
46083
|
* 14
|
|
45522
46084
|
*/
|
|
45523
46085
|
totalCount?: number;
|
|
45524
46086
|
/**
|
|
46087
|
+
* @remarks
|
|
46088
|
+
* The total number of pages returned.
|
|
46089
|
+
*
|
|
45525
46090
|
* @example
|
|
45526
46091
|
* 1
|
|
45527
46092
|
*/
|
|
@@ -45926,32 +46491,54 @@ export class ListHttpsBasicConfigurationsResponse extends $dara.Model {
|
|
|
45926
46491
|
|
|
45927
46492
|
export class ListImageTransformsRequest extends $dara.Model {
|
|
45928
46493
|
/**
|
|
46494
|
+
* @remarks
|
|
46495
|
+
* The configuration ID, which can be obtained by calling the ListImageTransforms operation.[](~~2869056~~)
|
|
46496
|
+
*
|
|
45929
46497
|
* @example
|
|
45930
46498
|
* 352816096987136
|
|
45931
46499
|
*/
|
|
45932
46500
|
configId?: number;
|
|
45933
46501
|
/**
|
|
46502
|
+
* @remarks
|
|
46503
|
+
* The configuration type to query. Valid values:
|
|
46504
|
+
*
|
|
46505
|
+
* * global: global configurations.
|
|
46506
|
+
* * rule: rule configurations.
|
|
46507
|
+
*
|
|
46508
|
+
* This parameter takes effect only when parameter functionName is specified. If this parameter is left empty, all configuration types are returned.
|
|
46509
|
+
*
|
|
45934
46510
|
* @example
|
|
45935
46511
|
* global
|
|
45936
46512
|
*/
|
|
45937
46513
|
configType?: string;
|
|
45938
46514
|
/**
|
|
46515
|
+
* @remarks
|
|
46516
|
+
* The page number. Default value: 1.
|
|
46517
|
+
*
|
|
45939
46518
|
* @example
|
|
45940
46519
|
* 1
|
|
45941
46520
|
*/
|
|
45942
46521
|
pageNumber?: number;
|
|
45943
46522
|
/**
|
|
46523
|
+
* @remarks
|
|
46524
|
+
* The number of entries per page. Maximum value: 500. Default value: 500.
|
|
46525
|
+
*
|
|
45944
46526
|
* @example
|
|
45945
46527
|
* 20
|
|
45946
46528
|
*/
|
|
45947
46529
|
pageSize?: number;
|
|
45948
46530
|
/**
|
|
46531
|
+
* @remarks
|
|
46532
|
+
* The rule name. This parameter takes effect only when parameter functionName is specified.
|
|
46533
|
+
*
|
|
45949
46534
|
* @example
|
|
45950
46535
|
* test1
|
|
45951
46536
|
*/
|
|
45952
46537
|
ruleName?: string;
|
|
45953
46538
|
/**
|
|
45954
46539
|
* @remarks
|
|
46540
|
+
* The website ID. You can call the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation to obtain the ID.
|
|
46541
|
+
*
|
|
45955
46542
|
* This parameter is required.
|
|
45956
46543
|
*
|
|
45957
46544
|
* @example
|
|
@@ -45959,6 +46546,9 @@ export class ListImageTransformsRequest extends $dara.Model {
|
|
|
45959
46546
|
*/
|
|
45960
46547
|
siteId?: number;
|
|
45961
46548
|
/**
|
|
46549
|
+
* @remarks
|
|
46550
|
+
* The version number of the website. You can use this parameter to specify a version of your website to apply the feature settings. By default, version 0 is used.
|
|
46551
|
+
*
|
|
45962
46552
|
* @example
|
|
45963
46553
|
* 1
|
|
45964
46554
|
*/
|
|
@@ -45997,28 +46587,47 @@ export class ListImageTransformsRequest extends $dara.Model {
|
|
|
45997
46587
|
}
|
|
45998
46588
|
|
|
45999
46589
|
export class ListImageTransformsResponseBody extends $dara.Model {
|
|
46590
|
+
/**
|
|
46591
|
+
* @remarks
|
|
46592
|
+
* The configurations.
|
|
46593
|
+
*/
|
|
46000
46594
|
configs?: ListImageTransformsResponseBodyConfigs[];
|
|
46001
46595
|
/**
|
|
46596
|
+
* @remarks
|
|
46597
|
+
* The page number returned.
|
|
46598
|
+
*
|
|
46002
46599
|
* @example
|
|
46003
46600
|
* 1
|
|
46004
46601
|
*/
|
|
46005
46602
|
pageNumber?: number;
|
|
46006
46603
|
/**
|
|
46604
|
+
* @remarks
|
|
46605
|
+
* The number of entries per page. Valid values: **1 to 500**. Default value: **500**.
|
|
46606
|
+
*
|
|
46007
46607
|
* @example
|
|
46008
46608
|
* 10
|
|
46009
46609
|
*/
|
|
46010
46610
|
pageSize?: number;
|
|
46011
46611
|
/**
|
|
46612
|
+
* @remarks
|
|
46613
|
+
* The request ID.
|
|
46614
|
+
*
|
|
46012
46615
|
* @example
|
|
46013
46616
|
* CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
|
|
46014
46617
|
*/
|
|
46015
46618
|
requestId?: string;
|
|
46016
46619
|
/**
|
|
46620
|
+
* @remarks
|
|
46621
|
+
* The total number of records returned.
|
|
46622
|
+
*
|
|
46017
46623
|
* @example
|
|
46018
46624
|
* 16
|
|
46019
46625
|
*/
|
|
46020
46626
|
totalCount?: number;
|
|
46021
46627
|
/**
|
|
46628
|
+
* @remarks
|
|
46629
|
+
* The total number of pages.
|
|
46630
|
+
*
|
|
46022
46631
|
* @example
|
|
46023
46632
|
* 2
|
|
46024
46633
|
*/
|
|
@@ -48356,32 +48965,52 @@ export class ListRecordsResponse extends $dara.Model {
|
|
|
48356
48965
|
|
|
48357
48966
|
export class ListRedirectRulesRequest extends $dara.Model {
|
|
48358
48967
|
/**
|
|
48968
|
+
* @remarks
|
|
48969
|
+
* The configuration ID,
|
|
48970
|
+
*
|
|
48359
48971
|
* @example
|
|
48360
48972
|
* 35281609698****
|
|
48361
48973
|
*/
|
|
48362
48974
|
configId?: number;
|
|
48363
48975
|
/**
|
|
48976
|
+
* @remarks
|
|
48977
|
+
* The type of the configuration. Valid values:
|
|
48978
|
+
*
|
|
48979
|
+
* * global: global configuration.
|
|
48980
|
+
* * rule: rule configuration.
|
|
48981
|
+
*
|
|
48364
48982
|
* @example
|
|
48365
48983
|
* rule
|
|
48366
48984
|
*/
|
|
48367
48985
|
configType?: string;
|
|
48368
48986
|
/**
|
|
48987
|
+
* @remarks
|
|
48988
|
+
* The page number. Pages start from page 1.
|
|
48989
|
+
*
|
|
48369
48990
|
* @example
|
|
48370
48991
|
* 1
|
|
48371
48992
|
*/
|
|
48372
48993
|
pageNumber?: number;
|
|
48373
48994
|
/**
|
|
48995
|
+
* @remarks
|
|
48996
|
+
* The number of entries per page. Default value: **500**. Valid values: **1 to 500**.
|
|
48997
|
+
*
|
|
48374
48998
|
* @example
|
|
48375
48999
|
* 20
|
|
48376
49000
|
*/
|
|
48377
49001
|
pageSize?: number;
|
|
48378
49002
|
/**
|
|
49003
|
+
* @remarks
|
|
49004
|
+
* The rule name.
|
|
49005
|
+
*
|
|
48379
49006
|
* @example
|
|
48380
49007
|
* rule_example
|
|
48381
49008
|
*/
|
|
48382
49009
|
ruleName?: string;
|
|
48383
49010
|
/**
|
|
48384
49011
|
* @remarks
|
|
49012
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
49013
|
+
*
|
|
48385
49014
|
* This parameter is required.
|
|
48386
49015
|
*
|
|
48387
49016
|
* @example
|
|
@@ -48389,6 +49018,9 @@ export class ListRedirectRulesRequest extends $dara.Model {
|
|
|
48389
49018
|
*/
|
|
48390
49019
|
siteId?: number;
|
|
48391
49020
|
/**
|
|
49021
|
+
* @remarks
|
|
49022
|
+
* The version of the website configurations.
|
|
49023
|
+
*
|
|
48392
49024
|
* @example
|
|
48393
49025
|
* 0
|
|
48394
49026
|
*/
|
|
@@ -48427,28 +49059,47 @@ export class ListRedirectRulesRequest extends $dara.Model {
|
|
|
48427
49059
|
}
|
|
48428
49060
|
|
|
48429
49061
|
export class ListRedirectRulesResponseBody extends $dara.Model {
|
|
49062
|
+
/**
|
|
49063
|
+
* @remarks
|
|
49064
|
+
* The configuration list of the the URL redirect rule.
|
|
49065
|
+
*/
|
|
48430
49066
|
configs?: ListRedirectRulesResponseBodyConfigs[];
|
|
48431
49067
|
/**
|
|
49068
|
+
* @remarks
|
|
49069
|
+
* The page number returned.
|
|
49070
|
+
*
|
|
48432
49071
|
* @example
|
|
48433
49072
|
* 1
|
|
48434
49073
|
*/
|
|
48435
49074
|
pageNumber?: number;
|
|
48436
49075
|
/**
|
|
49076
|
+
* @remarks
|
|
49077
|
+
* The number of entries per page.
|
|
49078
|
+
*
|
|
48437
49079
|
* @example
|
|
48438
49080
|
* 20
|
|
48439
49081
|
*/
|
|
48440
49082
|
pageSize?: number;
|
|
48441
49083
|
/**
|
|
49084
|
+
* @remarks
|
|
49085
|
+
* The request ID.
|
|
49086
|
+
*
|
|
48442
49087
|
* @example
|
|
48443
49088
|
* EDBD3EB3-97DA-5465-AEF5-8DCA5DC5E395
|
|
48444
49089
|
*/
|
|
48445
49090
|
requestId?: string;
|
|
48446
49091
|
/**
|
|
49092
|
+
* @remarks
|
|
49093
|
+
* The total number of entries.
|
|
49094
|
+
*
|
|
48447
49095
|
* @example
|
|
48448
49096
|
* 10
|
|
48449
49097
|
*/
|
|
48450
49098
|
totalCount?: number;
|
|
48451
49099
|
/**
|
|
49100
|
+
* @remarks
|
|
49101
|
+
* The total number of pages returned.
|
|
49102
|
+
*
|
|
48452
49103
|
* @example
|
|
48453
49104
|
* 1
|
|
48454
49105
|
*/
|
|
@@ -48524,32 +49175,54 @@ export class ListRedirectRulesResponse extends $dara.Model {
|
|
|
48524
49175
|
|
|
48525
49176
|
export class ListRewriteUrlRulesRequest extends $dara.Model {
|
|
48526
49177
|
/**
|
|
49178
|
+
* @remarks
|
|
49179
|
+
* The configuration ID.
|
|
49180
|
+
*
|
|
48527
49181
|
* @example
|
|
48528
49182
|
* 35281609698****
|
|
48529
49183
|
*/
|
|
48530
49184
|
configId?: number;
|
|
48531
49185
|
/**
|
|
49186
|
+
* @remarks
|
|
49187
|
+
* The configuration type to query. Valid values:
|
|
49188
|
+
*
|
|
49189
|
+
* * global: global configurations.
|
|
49190
|
+
* * rule: rule configurations.
|
|
49191
|
+
*
|
|
49192
|
+
* If this parameter is left empty, all configuration types are returned. This parameter takes effect only when parameter functionName is specified.
|
|
49193
|
+
*
|
|
48532
49194
|
* @example
|
|
48533
49195
|
* global
|
|
48534
49196
|
*/
|
|
48535
49197
|
configType?: string;
|
|
48536
49198
|
/**
|
|
49199
|
+
* @remarks
|
|
49200
|
+
* The page number. Pages start from page 1.
|
|
49201
|
+
*
|
|
48537
49202
|
* @example
|
|
48538
49203
|
* 1
|
|
48539
49204
|
*/
|
|
48540
49205
|
pageNumber?: number;
|
|
48541
49206
|
/**
|
|
49207
|
+
* @remarks
|
|
49208
|
+
* The number of entries per page. Valid values: **1 to 500**. Default value: **500**.
|
|
49209
|
+
*
|
|
48542
49210
|
* @example
|
|
48543
49211
|
* 10
|
|
48544
49212
|
*/
|
|
48545
49213
|
pageSize?: number;
|
|
48546
49214
|
/**
|
|
49215
|
+
* @remarks
|
|
49216
|
+
* The rule name.
|
|
49217
|
+
*
|
|
48547
49218
|
* @example
|
|
48548
49219
|
* rule_example
|
|
48549
49220
|
*/
|
|
48550
49221
|
ruleName?: string;
|
|
48551
49222
|
/**
|
|
48552
49223
|
* @remarks
|
|
49224
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
49225
|
+
*
|
|
48553
49226
|
* This parameter is required.
|
|
48554
49227
|
*
|
|
48555
49228
|
* @example
|
|
@@ -48557,6 +49230,9 @@ export class ListRewriteUrlRulesRequest extends $dara.Model {
|
|
|
48557
49230
|
*/
|
|
48558
49231
|
siteId?: number;
|
|
48559
49232
|
/**
|
|
49233
|
+
* @remarks
|
|
49234
|
+
* The version number of the website configurations. You can use this parameter to specify a version of your website to apply the feature settings. By default, version 0 is used.
|
|
49235
|
+
*
|
|
48560
49236
|
* @example
|
|
48561
49237
|
* 0
|
|
48562
49238
|
*/
|
|
@@ -48595,28 +49271,47 @@ export class ListRewriteUrlRulesRequest extends $dara.Model {
|
|
|
48595
49271
|
}
|
|
48596
49272
|
|
|
48597
49273
|
export class ListRewriteUrlRulesResponseBody extends $dara.Model {
|
|
49274
|
+
/**
|
|
49275
|
+
* @remarks
|
|
49276
|
+
* The URL rewrite configuration list.
|
|
49277
|
+
*/
|
|
48598
49278
|
configs?: ListRewriteUrlRulesResponseBodyConfigs[];
|
|
48599
49279
|
/**
|
|
49280
|
+
* @remarks
|
|
49281
|
+
* The page number returned.
|
|
49282
|
+
*
|
|
48600
49283
|
* @example
|
|
48601
49284
|
* 1
|
|
48602
49285
|
*/
|
|
48603
49286
|
pageNumber?: number;
|
|
48604
49287
|
/**
|
|
49288
|
+
* @remarks
|
|
49289
|
+
* The number of entries per page.
|
|
49290
|
+
*
|
|
48605
49291
|
* @example
|
|
48606
49292
|
* 10
|
|
48607
49293
|
*/
|
|
48608
49294
|
pageSize?: number;
|
|
48609
49295
|
/**
|
|
49296
|
+
* @remarks
|
|
49297
|
+
* The request ID.
|
|
49298
|
+
*
|
|
48610
49299
|
* @example
|
|
48611
49300
|
* CB1A380B-09F0-41BB-280B-72F8FD6DA2FE
|
|
48612
49301
|
*/
|
|
48613
49302
|
requestId?: string;
|
|
48614
49303
|
/**
|
|
49304
|
+
* @remarks
|
|
49305
|
+
* The total number of entries.
|
|
49306
|
+
*
|
|
48615
49307
|
* @example
|
|
48616
49308
|
* 8
|
|
48617
49309
|
*/
|
|
48618
49310
|
totalCount?: number;
|
|
48619
49311
|
/**
|
|
49312
|
+
* @remarks
|
|
49313
|
+
* The total number of pages returned.
|
|
49314
|
+
*
|
|
48620
49315
|
* @example
|
|
48621
49316
|
* 1
|
|
48622
49317
|
*/
|
|
@@ -55754,6 +56449,123 @@ export class UpdateDevelopmentModeResponse extends $dara.Model {
|
|
|
55754
56449
|
}
|
|
55755
56450
|
}
|
|
55756
56451
|
|
|
56452
|
+
export class UpdateEdgeContainerAppLogRiverRequest extends $dara.Model {
|
|
56453
|
+
/**
|
|
56454
|
+
* @example
|
|
56455
|
+
* app-88068867578379****
|
|
56456
|
+
*/
|
|
56457
|
+
appId?: string;
|
|
56458
|
+
/**
|
|
56459
|
+
* @example
|
|
56460
|
+
* /root/hello.log
|
|
56461
|
+
*/
|
|
56462
|
+
path?: string;
|
|
56463
|
+
/**
|
|
56464
|
+
* @example
|
|
56465
|
+
* true
|
|
56466
|
+
*/
|
|
56467
|
+
stdout?: boolean;
|
|
56468
|
+
static names(): { [key: string]: string } {
|
|
56469
|
+
return {
|
|
56470
|
+
appId: 'AppId',
|
|
56471
|
+
path: 'Path',
|
|
56472
|
+
stdout: 'Stdout',
|
|
56473
|
+
};
|
|
56474
|
+
}
|
|
56475
|
+
|
|
56476
|
+
static types(): { [key: string]: any } {
|
|
56477
|
+
return {
|
|
56478
|
+
appId: 'string',
|
|
56479
|
+
path: 'string',
|
|
56480
|
+
stdout: 'boolean',
|
|
56481
|
+
};
|
|
56482
|
+
}
|
|
56483
|
+
|
|
56484
|
+
validate() {
|
|
56485
|
+
super.validate();
|
|
56486
|
+
}
|
|
56487
|
+
|
|
56488
|
+
constructor(map?: { [key: string]: any }) {
|
|
56489
|
+
super(map);
|
|
56490
|
+
}
|
|
56491
|
+
}
|
|
56492
|
+
|
|
56493
|
+
export class UpdateEdgeContainerAppLogRiverResponseBody extends $dara.Model {
|
|
56494
|
+
/**
|
|
56495
|
+
* @example
|
|
56496
|
+
* /root/hello.log
|
|
56497
|
+
*/
|
|
56498
|
+
path?: string;
|
|
56499
|
+
/**
|
|
56500
|
+
* @example
|
|
56501
|
+
* 42DE97FA-45D2-5615-9A31-55D9EC0D7563
|
|
56502
|
+
*/
|
|
56503
|
+
requestId?: string;
|
|
56504
|
+
/**
|
|
56505
|
+
* @example
|
|
56506
|
+
* true
|
|
56507
|
+
*/
|
|
56508
|
+
stdout?: boolean;
|
|
56509
|
+
static names(): { [key: string]: string } {
|
|
56510
|
+
return {
|
|
56511
|
+
path: 'Path',
|
|
56512
|
+
requestId: 'RequestId',
|
|
56513
|
+
stdout: 'Stdout',
|
|
56514
|
+
};
|
|
56515
|
+
}
|
|
56516
|
+
|
|
56517
|
+
static types(): { [key: string]: any } {
|
|
56518
|
+
return {
|
|
56519
|
+
path: 'string',
|
|
56520
|
+
requestId: 'string',
|
|
56521
|
+
stdout: 'boolean',
|
|
56522
|
+
};
|
|
56523
|
+
}
|
|
56524
|
+
|
|
56525
|
+
validate() {
|
|
56526
|
+
super.validate();
|
|
56527
|
+
}
|
|
56528
|
+
|
|
56529
|
+
constructor(map?: { [key: string]: any }) {
|
|
56530
|
+
super(map);
|
|
56531
|
+
}
|
|
56532
|
+
}
|
|
56533
|
+
|
|
56534
|
+
export class UpdateEdgeContainerAppLogRiverResponse extends $dara.Model {
|
|
56535
|
+
headers?: { [key: string]: string };
|
|
56536
|
+
statusCode?: number;
|
|
56537
|
+
body?: UpdateEdgeContainerAppLogRiverResponseBody;
|
|
56538
|
+
static names(): { [key: string]: string } {
|
|
56539
|
+
return {
|
|
56540
|
+
headers: 'headers',
|
|
56541
|
+
statusCode: 'statusCode',
|
|
56542
|
+
body: 'body',
|
|
56543
|
+
};
|
|
56544
|
+
}
|
|
56545
|
+
|
|
56546
|
+
static types(): { [key: string]: any } {
|
|
56547
|
+
return {
|
|
56548
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
56549
|
+
statusCode: 'number',
|
|
56550
|
+
body: UpdateEdgeContainerAppLogRiverResponseBody,
|
|
56551
|
+
};
|
|
56552
|
+
}
|
|
56553
|
+
|
|
56554
|
+
validate() {
|
|
56555
|
+
if(this.headers) {
|
|
56556
|
+
$dara.Model.validateMap(this.headers);
|
|
56557
|
+
}
|
|
56558
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
56559
|
+
(this.body as any).validate();
|
|
56560
|
+
}
|
|
56561
|
+
super.validate();
|
|
56562
|
+
}
|
|
56563
|
+
|
|
56564
|
+
constructor(map?: { [key: string]: any }) {
|
|
56565
|
+
super(map);
|
|
56566
|
+
}
|
|
56567
|
+
}
|
|
56568
|
+
|
|
55757
56569
|
export class UpdateHttpRequestHeaderModificationRuleRequest extends $dara.Model {
|
|
55758
56570
|
/**
|
|
55759
56571
|
* @remarks
|
|
@@ -68324,6 +69136,49 @@ export default class Client extends OpenApi {
|
|
|
68324
69136
|
return await this.describeDDoSL7QpsListWithOptions(request, runtime);
|
|
68325
69137
|
}
|
|
68326
69138
|
|
|
69139
|
+
/**
|
|
69140
|
+
* 将天眼提供给XCDN边缘容器的监控OpenAPI适配成青蓝的OpenAPI
|
|
69141
|
+
*
|
|
69142
|
+
* @param request - DescribeEdgeContainerAppStatsRequest
|
|
69143
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
69144
|
+
* @returns DescribeEdgeContainerAppStatsResponse
|
|
69145
|
+
*/
|
|
69146
|
+
async describeEdgeContainerAppStatsWithOptions(request: DescribeEdgeContainerAppStatsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeEdgeContainerAppStatsResponse> {
|
|
69147
|
+
request.validate();
|
|
69148
|
+
let query = OpenApiUtil.query(request.toMap());
|
|
69149
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
69150
|
+
query: OpenApiUtil.query(query),
|
|
69151
|
+
});
|
|
69152
|
+
let params = new $OpenApiUtil.Params({
|
|
69153
|
+
action: "DescribeEdgeContainerAppStats",
|
|
69154
|
+
version: "2024-09-10",
|
|
69155
|
+
protocol: "HTTPS",
|
|
69156
|
+
pathname: "/",
|
|
69157
|
+
method: "GET",
|
|
69158
|
+
authType: "AK",
|
|
69159
|
+
style: "RPC",
|
|
69160
|
+
reqBodyType: "formData",
|
|
69161
|
+
bodyType: "json",
|
|
69162
|
+
});
|
|
69163
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
69164
|
+
return $dara.cast<DescribeEdgeContainerAppStatsResponse>(await this.callApi(params, req, runtime), new DescribeEdgeContainerAppStatsResponse({}));
|
|
69165
|
+
} else {
|
|
69166
|
+
return $dara.cast<DescribeEdgeContainerAppStatsResponse>(await this.execute(params, req, runtime), new DescribeEdgeContainerAppStatsResponse({}));
|
|
69167
|
+
}
|
|
69168
|
+
|
|
69169
|
+
}
|
|
69170
|
+
|
|
69171
|
+
/**
|
|
69172
|
+
* 将天眼提供给XCDN边缘容器的监控OpenAPI适配成青蓝的OpenAPI
|
|
69173
|
+
*
|
|
69174
|
+
* @param request - DescribeEdgeContainerAppStatsRequest
|
|
69175
|
+
* @returns DescribeEdgeContainerAppStatsResponse
|
|
69176
|
+
*/
|
|
69177
|
+
async describeEdgeContainerAppStats(request: DescribeEdgeContainerAppStatsRequest): Promise<DescribeEdgeContainerAppStatsResponse> {
|
|
69178
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
69179
|
+
return await this.describeEdgeContainerAppStatsWithOptions(request, runtime);
|
|
69180
|
+
}
|
|
69181
|
+
|
|
68327
69182
|
/**
|
|
68328
69183
|
* Queries the configuration of smart HTTP DDoS protection for a website.
|
|
68329
69184
|
*
|
|
@@ -69302,6 +70157,49 @@ export default class Client extends OpenApi {
|
|
|
69302
70157
|
return await this.getEdgeContainerAppWithOptions(request, runtime);
|
|
69303
70158
|
}
|
|
69304
70159
|
|
|
70160
|
+
/**
|
|
70161
|
+
* 获取边缘容器应用日志采集配置
|
|
70162
|
+
*
|
|
70163
|
+
* @param request - GetEdgeContainerAppLogRiverRequest
|
|
70164
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
70165
|
+
* @returns GetEdgeContainerAppLogRiverResponse
|
|
70166
|
+
*/
|
|
70167
|
+
async getEdgeContainerAppLogRiverWithOptions(request: GetEdgeContainerAppLogRiverRequest, runtime: $dara.RuntimeOptions): Promise<GetEdgeContainerAppLogRiverResponse> {
|
|
70168
|
+
request.validate();
|
|
70169
|
+
let query = OpenApiUtil.query(request.toMap());
|
|
70170
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
70171
|
+
query: OpenApiUtil.query(query),
|
|
70172
|
+
});
|
|
70173
|
+
let params = new $OpenApiUtil.Params({
|
|
70174
|
+
action: "GetEdgeContainerAppLogRiver",
|
|
70175
|
+
version: "2024-09-10",
|
|
70176
|
+
protocol: "HTTPS",
|
|
70177
|
+
pathname: "/",
|
|
70178
|
+
method: "GET",
|
|
70179
|
+
authType: "AK",
|
|
70180
|
+
style: "RPC",
|
|
70181
|
+
reqBodyType: "formData",
|
|
70182
|
+
bodyType: "json",
|
|
70183
|
+
});
|
|
70184
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
70185
|
+
return $dara.cast<GetEdgeContainerAppLogRiverResponse>(await this.callApi(params, req, runtime), new GetEdgeContainerAppLogRiverResponse({}));
|
|
70186
|
+
} else {
|
|
70187
|
+
return $dara.cast<GetEdgeContainerAppLogRiverResponse>(await this.execute(params, req, runtime), new GetEdgeContainerAppLogRiverResponse({}));
|
|
70188
|
+
}
|
|
70189
|
+
|
|
70190
|
+
}
|
|
70191
|
+
|
|
70192
|
+
/**
|
|
70193
|
+
* 获取边缘容器应用日志采集配置
|
|
70194
|
+
*
|
|
70195
|
+
* @param request - GetEdgeContainerAppLogRiverRequest
|
|
70196
|
+
* @returns GetEdgeContainerAppLogRiverResponse
|
|
70197
|
+
*/
|
|
70198
|
+
async getEdgeContainerAppLogRiver(request: GetEdgeContainerAppLogRiverRequest): Promise<GetEdgeContainerAppLogRiverResponse> {
|
|
70199
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
70200
|
+
return await this.getEdgeContainerAppLogRiverWithOptions(request, runtime);
|
|
70201
|
+
}
|
|
70202
|
+
|
|
69305
70203
|
/**
|
|
69306
70204
|
* Queries the status information about a containerized application, including the deployment, release, and rollback of the application.
|
|
69307
70205
|
*
|
|
@@ -72128,7 +73026,7 @@ export default class Client extends OpenApi {
|
|
|
72128
73026
|
}
|
|
72129
73027
|
|
|
72130
73028
|
/**
|
|
72131
|
-
*
|
|
73029
|
+
* Queries the configuration details of an HTTP response header modification rule for a website.
|
|
72132
73030
|
*
|
|
72133
73031
|
* @param request - ListHttpResponseHeaderModificationRulesRequest
|
|
72134
73032
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -72160,7 +73058,7 @@ export default class Client extends OpenApi {
|
|
|
72160
73058
|
}
|
|
72161
73059
|
|
|
72162
73060
|
/**
|
|
72163
|
-
*
|
|
73061
|
+
* Queries the configuration details of an HTTP response header modification rule for a website.
|
|
72164
73062
|
*
|
|
72165
73063
|
* @param request - ListHttpResponseHeaderModificationRulesRequest
|
|
72166
73064
|
* @returns ListHttpResponseHeaderModificationRulesResponse
|
|
@@ -72257,7 +73155,7 @@ export default class Client extends OpenApi {
|
|
|
72257
73155
|
}
|
|
72258
73156
|
|
|
72259
73157
|
/**
|
|
72260
|
-
*
|
|
73158
|
+
* Queries the details of image conversion configurations for multiple websites.
|
|
72261
73159
|
*
|
|
72262
73160
|
* @param request - ListImageTransformsRequest
|
|
72263
73161
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -72289,7 +73187,7 @@ export default class Client extends OpenApi {
|
|
|
72289
73187
|
}
|
|
72290
73188
|
|
|
72291
73189
|
/**
|
|
72292
|
-
*
|
|
73190
|
+
* Queries the details of image conversion configurations for multiple websites.
|
|
72293
73191
|
*
|
|
72294
73192
|
* @param request - ListImageTransformsRequest
|
|
72295
73193
|
* @returns ListImageTransformsResponse
|
|
@@ -72915,7 +73813,7 @@ export default class Client extends OpenApi {
|
|
|
72915
73813
|
}
|
|
72916
73814
|
|
|
72917
73815
|
/**
|
|
72918
|
-
*
|
|
73816
|
+
* Queries the configuration details of a URL redirect rule for a website.
|
|
72919
73817
|
*
|
|
72920
73818
|
* @param request - ListRedirectRulesRequest
|
|
72921
73819
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -72947,7 +73845,7 @@ export default class Client extends OpenApi {
|
|
|
72947
73845
|
}
|
|
72948
73846
|
|
|
72949
73847
|
/**
|
|
72950
|
-
*
|
|
73848
|
+
* Queries the configuration details of a URL redirect rule for a website.
|
|
72951
73849
|
*
|
|
72952
73850
|
* @param request - ListRedirectRulesRequest
|
|
72953
73851
|
* @returns ListRedirectRulesResponse
|
|
@@ -72958,7 +73856,7 @@ export default class Client extends OpenApi {
|
|
|
72958
73856
|
}
|
|
72959
73857
|
|
|
72960
73858
|
/**
|
|
72961
|
-
*
|
|
73859
|
+
* Queries the details of rewrite URL configurations.
|
|
72962
73860
|
*
|
|
72963
73861
|
* @param request - ListRewriteUrlRulesRequest
|
|
72964
73862
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -72990,7 +73888,7 @@ export default class Client extends OpenApi {
|
|
|
72990
73888
|
}
|
|
72991
73889
|
|
|
72992
73890
|
/**
|
|
72993
|
-
*
|
|
73891
|
+
* Queries the details of rewrite URL configurations.
|
|
72994
73892
|
*
|
|
72995
73893
|
* @param request - ListRewriteUrlRulesRequest
|
|
72996
73894
|
* @returns ListRewriteUrlRulesResponse
|
|
@@ -75556,6 +76454,61 @@ export default class Client extends OpenApi {
|
|
|
75556
76454
|
return await this.updateDevelopmentModeWithOptions(request, runtime);
|
|
75557
76455
|
}
|
|
75558
76456
|
|
|
76457
|
+
/**
|
|
76458
|
+
* 更新边缘容器应用日志采集配置
|
|
76459
|
+
*
|
|
76460
|
+
* @param request - UpdateEdgeContainerAppLogRiverRequest
|
|
76461
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
76462
|
+
* @returns UpdateEdgeContainerAppLogRiverResponse
|
|
76463
|
+
*/
|
|
76464
|
+
async updateEdgeContainerAppLogRiverWithOptions(request: UpdateEdgeContainerAppLogRiverRequest, runtime: $dara.RuntimeOptions): Promise<UpdateEdgeContainerAppLogRiverResponse> {
|
|
76465
|
+
request.validate();
|
|
76466
|
+
let query = { };
|
|
76467
|
+
if (!$dara.isNull(request.appId)) {
|
|
76468
|
+
query["AppId"] = request.appId;
|
|
76469
|
+
}
|
|
76470
|
+
|
|
76471
|
+
if (!$dara.isNull(request.path)) {
|
|
76472
|
+
query["Path"] = request.path;
|
|
76473
|
+
}
|
|
76474
|
+
|
|
76475
|
+
if (!$dara.isNull(request.stdout)) {
|
|
76476
|
+
query["Stdout"] = request.stdout;
|
|
76477
|
+
}
|
|
76478
|
+
|
|
76479
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
76480
|
+
query: OpenApiUtil.query(query),
|
|
76481
|
+
});
|
|
76482
|
+
let params = new $OpenApiUtil.Params({
|
|
76483
|
+
action: "UpdateEdgeContainerAppLogRiver",
|
|
76484
|
+
version: "2024-09-10",
|
|
76485
|
+
protocol: "HTTPS",
|
|
76486
|
+
pathname: "/",
|
|
76487
|
+
method: "POST",
|
|
76488
|
+
authType: "AK",
|
|
76489
|
+
style: "RPC",
|
|
76490
|
+
reqBodyType: "formData",
|
|
76491
|
+
bodyType: "json",
|
|
76492
|
+
});
|
|
76493
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
76494
|
+
return $dara.cast<UpdateEdgeContainerAppLogRiverResponse>(await this.callApi(params, req, runtime), new UpdateEdgeContainerAppLogRiverResponse({}));
|
|
76495
|
+
} else {
|
|
76496
|
+
return $dara.cast<UpdateEdgeContainerAppLogRiverResponse>(await this.execute(params, req, runtime), new UpdateEdgeContainerAppLogRiverResponse({}));
|
|
76497
|
+
}
|
|
76498
|
+
|
|
76499
|
+
}
|
|
76500
|
+
|
|
76501
|
+
/**
|
|
76502
|
+
* 更新边缘容器应用日志采集配置
|
|
76503
|
+
*
|
|
76504
|
+
* @param request - UpdateEdgeContainerAppLogRiverRequest
|
|
76505
|
+
* @returns UpdateEdgeContainerAppLogRiverResponse
|
|
76506
|
+
*/
|
|
76507
|
+
async updateEdgeContainerAppLogRiver(request: UpdateEdgeContainerAppLogRiverRequest): Promise<UpdateEdgeContainerAppLogRiverResponse> {
|
|
76508
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
76509
|
+
return await this.updateEdgeContainerAppLogRiverWithOptions(request, runtime);
|
|
76510
|
+
}
|
|
76511
|
+
|
|
75559
76512
|
/**
|
|
75560
76513
|
* 修改HTTP请求头规则
|
|
75561
76514
|
*
|