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