@alicloud/esa20240910 2.11.0 → 2.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.d.ts CHANGED
@@ -8315,6 +8315,58 @@ export declare class ListHttpsBasicConfigurationsResponseBodyConfigs extends $da
8315
8315
  [key: string]: any;
8316
8316
  });
8317
8317
  }
8318
+ export declare class ListImageTransformsResponseBodyConfigs extends $dara.Model {
8319
+ /**
8320
+ * @example
8321
+ * 395386449776640
8322
+ */
8323
+ configId?: number;
8324
+ /**
8325
+ * @example
8326
+ * global
8327
+ */
8328
+ configType?: string;
8329
+ /**
8330
+ * @example
8331
+ * on
8332
+ */
8333
+ enable?: string;
8334
+ /**
8335
+ * @example
8336
+ * (http.request.uri.path.file_name eq \\"jpg\\")
8337
+ */
8338
+ rule?: string;
8339
+ /**
8340
+ * @example
8341
+ * on
8342
+ */
8343
+ ruleEnable?: string;
8344
+ /**
8345
+ * @example
8346
+ * test
8347
+ */
8348
+ ruleName?: string;
8349
+ /**
8350
+ * @example
8351
+ * 1
8352
+ */
8353
+ sequence?: number;
8354
+ /**
8355
+ * @example
8356
+ * 1
8357
+ */
8358
+ siteVersion?: number;
8359
+ static names(): {
8360
+ [key: string]: string;
8361
+ };
8362
+ static types(): {
8363
+ [key: string]: any;
8364
+ };
8365
+ validate(): void;
8366
+ constructor(map?: {
8367
+ [key: string]: any;
8368
+ });
8369
+ }
8318
8370
  export declare class ListInstanceQuotasResponseBodyQuotas extends $dara.Model {
8319
8371
  /**
8320
8372
  * @remarks
@@ -9065,6 +9117,78 @@ export declare class ListManagedRulesGroupsResponseBodyManagedRulesGroups extend
9065
9117
  [key: string]: any;
9066
9118
  });
9067
9119
  }
9120
+ export declare class ListNetworkOptimizationsResponseBodyConfigs extends $dara.Model {
9121
+ /**
9122
+ * @example
9123
+ * 395386449776640
9124
+ */
9125
+ configId?: number;
9126
+ /**
9127
+ * @example
9128
+ * global
9129
+ */
9130
+ configType?: string;
9131
+ /**
9132
+ * @example
9133
+ * on
9134
+ */
9135
+ grpc?: string;
9136
+ /**
9137
+ * @example
9138
+ * on
9139
+ */
9140
+ http2Origin?: string;
9141
+ /**
9142
+ * @example
9143
+ * (http.host eq \\"video.example.com\\")
9144
+ */
9145
+ rule?: string;
9146
+ /**
9147
+ * @example
9148
+ * on
9149
+ */
9150
+ ruleEnable?: string;
9151
+ /**
9152
+ * @example
9153
+ * rule_example
9154
+ */
9155
+ ruleName?: string;
9156
+ /**
9157
+ * @example
9158
+ * 1
9159
+ */
9160
+ sequence?: number;
9161
+ /**
9162
+ * @example
9163
+ * 1
9164
+ */
9165
+ siteVersion?: number;
9166
+ /**
9167
+ * @example
9168
+ * on
9169
+ */
9170
+ smartRouting?: string;
9171
+ /**
9172
+ * @example
9173
+ * 500
9174
+ */
9175
+ uploadMaxFilesize?: string;
9176
+ /**
9177
+ * @example
9178
+ * on
9179
+ */
9180
+ websocket?: string;
9181
+ static names(): {
9182
+ [key: string]: string;
9183
+ };
9184
+ static types(): {
9185
+ [key: string]: any;
9186
+ };
9187
+ validate(): void;
9188
+ constructor(map?: {
9189
+ [key: string]: any;
9190
+ });
9191
+ }
9068
9192
  export declare class ListOriginPoolsResponseBodyOriginPoolsOriginsAuthConf extends $dara.Model {
9069
9193
  accessKey?: string;
9070
9194
  authType?: string;
@@ -11398,7 +11522,24 @@ export declare class ListWaitingRoomsResponseBodyWaitingRooms extends $dara.Mode
11398
11522
  [key: string]: any;
11399
11523
  });
11400
11524
  }
11525
+ export declare class PurgeCachesRequestContentCacheKeys extends $dara.Model {
11526
+ headers?: {
11527
+ [key: string]: string;
11528
+ };
11529
+ url?: string;
11530
+ static names(): {
11531
+ [key: string]: string;
11532
+ };
11533
+ static types(): {
11534
+ [key: string]: any;
11535
+ };
11536
+ validate(): void;
11537
+ constructor(map?: {
11538
+ [key: string]: any;
11539
+ });
11540
+ }
11401
11541
  export declare class PurgeCachesRequestContent extends $dara.Model {
11542
+ cacheKeys?: PurgeCachesRequestContentCacheKeys[];
11402
11543
  /**
11403
11544
  * @remarks
11404
11545
  * The cache tags that are used to purge the cache. This parameter is required if Type is set to cachetag.
@@ -15176,6 +15317,90 @@ export declare class CreateHttpsBasicConfigurationResponse extends $dara.Model {
15176
15317
  [key: string]: any;
15177
15318
  });
15178
15319
  }
15320
+ export declare class CreateImageTransformRequest extends $dara.Model {
15321
+ /**
15322
+ * @example
15323
+ * on
15324
+ */
15325
+ enable?: string;
15326
+ /**
15327
+ * @example
15328
+ * (http.request.uri.path.file_name eq \\"jpg\\")
15329
+ */
15330
+ rule?: string;
15331
+ /**
15332
+ * @example
15333
+ * on
15334
+ */
15335
+ ruleEnable?: string;
15336
+ /**
15337
+ * @example
15338
+ * test
15339
+ */
15340
+ ruleName?: string;
15341
+ /**
15342
+ * @remarks
15343
+ * This parameter is required.
15344
+ *
15345
+ * @example
15346
+ * 123456****
15347
+ */
15348
+ siteId?: number;
15349
+ /**
15350
+ * @example
15351
+ * 0
15352
+ */
15353
+ siteVersion?: number;
15354
+ static names(): {
15355
+ [key: string]: string;
15356
+ };
15357
+ static types(): {
15358
+ [key: string]: any;
15359
+ };
15360
+ validate(): void;
15361
+ constructor(map?: {
15362
+ [key: string]: any;
15363
+ });
15364
+ }
15365
+ export declare class CreateImageTransformResponseBody extends $dara.Model {
15366
+ /**
15367
+ * @example
15368
+ * 352816096987136
15369
+ */
15370
+ configId?: number;
15371
+ /**
15372
+ * @example
15373
+ * 0AEDAF20-4DDF-4165-8750-47FF9C1929C9
15374
+ */
15375
+ requestId?: string;
15376
+ static names(): {
15377
+ [key: string]: string;
15378
+ };
15379
+ static types(): {
15380
+ [key: string]: any;
15381
+ };
15382
+ validate(): void;
15383
+ constructor(map?: {
15384
+ [key: string]: any;
15385
+ });
15386
+ }
15387
+ export declare class CreateImageTransformResponse extends $dara.Model {
15388
+ headers?: {
15389
+ [key: string]: string;
15390
+ };
15391
+ statusCode?: number;
15392
+ body?: CreateImageTransformResponseBody;
15393
+ static names(): {
15394
+ [key: string]: string;
15395
+ };
15396
+ static types(): {
15397
+ [key: string]: any;
15398
+ };
15399
+ validate(): void;
15400
+ constructor(map?: {
15401
+ [key: string]: any;
15402
+ });
15403
+ }
15179
15404
  export declare class CreateKvNamespaceRequest extends $dara.Model {
15180
15405
  /**
15181
15406
  * @remarks
@@ -15424,17 +15649,26 @@ export declare class CreateLoadBalancerRequest extends $dara.Model {
15424
15649
  */
15425
15650
  adaptiveRouting?: CreateLoadBalancerRequestAdaptiveRouting;
15426
15651
  /**
15652
+ * @remarks
15653
+ * This parameter is required.
15654
+ *
15427
15655
  * @example
15428
15656
  * {"AL,MO": [92298024898****],"CN-SH,CN-SX,CN-SC":[92304347804****,92843536908****]}
15429
15657
  */
15430
15658
  defaultPools?: number[];
15431
15659
  description?: string;
15432
15660
  /**
15661
+ * @remarks
15662
+ * This parameter is required.
15663
+ *
15433
15664
  * @example
15434
15665
  * 123
15435
15666
  */
15436
15667
  fallbackPool?: number;
15437
15668
  /**
15669
+ * @remarks
15670
+ * This parameter is required.
15671
+ *
15438
15672
  * @example
15439
15673
  * order
15440
15674
  */
@@ -15474,6 +15708,9 @@ export declare class CreateLoadBalancerRequest extends $dara.Model {
15474
15708
  */
15475
15709
  siteId?: number;
15476
15710
  /**
15711
+ * @remarks
15712
+ * This parameter is required.
15713
+ *
15477
15714
  * @example
15478
15715
  * ip
15479
15716
  */
@@ -15498,17 +15735,26 @@ export declare class CreateLoadBalancerShrinkRequest extends $dara.Model {
15498
15735
  */
15499
15736
  adaptiveRoutingShrink?: string;
15500
15737
  /**
15738
+ * @remarks
15739
+ * This parameter is required.
15740
+ *
15501
15741
  * @example
15502
15742
  * {"AL,MO": [92298024898****],"CN-SH,CN-SX,CN-SC":[92304347804****,92843536908****]}
15503
15743
  */
15504
15744
  defaultPoolsShrink?: string;
15505
15745
  description?: string;
15506
15746
  /**
15747
+ * @remarks
15748
+ * This parameter is required.
15749
+ *
15507
15750
  * @example
15508
15751
  * 123
15509
15752
  */
15510
15753
  fallbackPool?: number;
15511
15754
  /**
15755
+ * @remarks
15756
+ * This parameter is required.
15757
+ *
15512
15758
  * @example
15513
15759
  * order
15514
15760
  */
@@ -15548,6 +15794,9 @@ export declare class CreateLoadBalancerShrinkRequest extends $dara.Model {
15548
15794
  */
15549
15795
  siteId?: number;
15550
15796
  /**
15797
+ * @remarks
15798
+ * This parameter is required.
15799
+ *
15551
15800
  * @example
15552
15801
  * ip
15553
15802
  */
@@ -15607,6 +15856,110 @@ export declare class CreateLoadBalancerResponse extends $dara.Model {
15607
15856
  [key: string]: any;
15608
15857
  });
15609
15858
  }
15859
+ export declare class CreateNetworkOptimizationRequest extends $dara.Model {
15860
+ /**
15861
+ * @example
15862
+ * on
15863
+ */
15864
+ grpc?: string;
15865
+ /**
15866
+ * @example
15867
+ * on
15868
+ */
15869
+ http2Origin?: string;
15870
+ /**
15871
+ * @example
15872
+ * (http.host eq \\"video.example.com\\")
15873
+ */
15874
+ rule?: string;
15875
+ /**
15876
+ * @example
15877
+ * on
15878
+ */
15879
+ ruleEnable?: string;
15880
+ /**
15881
+ * @example
15882
+ * rule_example
15883
+ */
15884
+ ruleName?: string;
15885
+ /**
15886
+ * @remarks
15887
+ * This parameter is required.
15888
+ *
15889
+ * @example
15890
+ * 340035003106221
15891
+ */
15892
+ siteId?: number;
15893
+ /**
15894
+ * @example
15895
+ * 1
15896
+ */
15897
+ siteVersion?: number;
15898
+ /**
15899
+ * @example
15900
+ * on
15901
+ */
15902
+ smartRouting?: string;
15903
+ /**
15904
+ * @example
15905
+ * 100
15906
+ */
15907
+ uploadMaxFilesize?: string;
15908
+ /**
15909
+ * @example
15910
+ * on
15911
+ */
15912
+ websocket?: string;
15913
+ static names(): {
15914
+ [key: string]: string;
15915
+ };
15916
+ static types(): {
15917
+ [key: string]: any;
15918
+ };
15919
+ validate(): void;
15920
+ constructor(map?: {
15921
+ [key: string]: any;
15922
+ });
15923
+ }
15924
+ export declare class CreateNetworkOptimizationResponseBody extends $dara.Model {
15925
+ /**
15926
+ * @example
15927
+ * 352816096987136
15928
+ */
15929
+ configId?: number;
15930
+ /**
15931
+ * @example
15932
+ * 04F0F334-1335-436C-A1D7-6C044FE73368
15933
+ */
15934
+ requestId?: string;
15935
+ static names(): {
15936
+ [key: string]: string;
15937
+ };
15938
+ static types(): {
15939
+ [key: string]: any;
15940
+ };
15941
+ validate(): void;
15942
+ constructor(map?: {
15943
+ [key: string]: any;
15944
+ });
15945
+ }
15946
+ export declare class CreateNetworkOptimizationResponse extends $dara.Model {
15947
+ headers?: {
15948
+ [key: string]: string;
15949
+ };
15950
+ statusCode?: number;
15951
+ body?: CreateNetworkOptimizationResponseBody;
15952
+ static names(): {
15953
+ [key: string]: string;
15954
+ };
15955
+ static types(): {
15956
+ [key: string]: any;
15957
+ };
15958
+ validate(): void;
15959
+ constructor(map?: {
15960
+ [key: string]: any;
15961
+ });
15962
+ }
15610
15963
  export declare class CreateOriginPoolRequest extends $dara.Model {
15611
15964
  enabled?: boolean;
15612
15965
  /**
@@ -19664,6 +20017,75 @@ export declare class DeleteHttpsBasicConfigurationResponse extends $dara.Model {
19664
20017
  [key: string]: any;
19665
20018
  });
19666
20019
  }
20020
+ export declare class DeleteImageTransformRequest extends $dara.Model {
20021
+ /**
20022
+ * @remarks
20023
+ * The configuration ID, which can be obtained by calling the [ListImageTransforms](~~ListImageTransforms~~) operation.
20024
+ *
20025
+ * This parameter is required.
20026
+ *
20027
+ * @example
20028
+ * 352816096987136
20029
+ */
20030
+ configId?: number;
20031
+ /**
20032
+ * @remarks
20033
+ * The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
20034
+ *
20035
+ * This parameter is required.
20036
+ *
20037
+ * @example
20038
+ * 123456****
20039
+ */
20040
+ siteId?: number;
20041
+ static names(): {
20042
+ [key: string]: string;
20043
+ };
20044
+ static types(): {
20045
+ [key: string]: any;
20046
+ };
20047
+ validate(): void;
20048
+ constructor(map?: {
20049
+ [key: string]: any;
20050
+ });
20051
+ }
20052
+ export declare class DeleteImageTransformResponseBody extends $dara.Model {
20053
+ /**
20054
+ * @remarks
20055
+ * The request ID.
20056
+ *
20057
+ * @example
20058
+ * 15C66C7B-671A-4297-9187-2C4477247A74
20059
+ */
20060
+ requestId?: string;
20061
+ static names(): {
20062
+ [key: string]: string;
20063
+ };
20064
+ static types(): {
20065
+ [key: string]: any;
20066
+ };
20067
+ validate(): void;
20068
+ constructor(map?: {
20069
+ [key: string]: any;
20070
+ });
20071
+ }
20072
+ export declare class DeleteImageTransformResponse extends $dara.Model {
20073
+ headers?: {
20074
+ [key: string]: string;
20075
+ };
20076
+ statusCode?: number;
20077
+ body?: DeleteImageTransformResponseBody;
20078
+ static names(): {
20079
+ [key: string]: string;
20080
+ };
20081
+ static types(): {
20082
+ [key: string]: any;
20083
+ };
20084
+ validate(): void;
20085
+ constructor(map?: {
20086
+ [key: string]: any;
20087
+ });
20088
+ }
19667
20089
  export declare class DeleteKvRequest extends $dara.Model {
19668
20090
  /**
19669
20091
  * @remarks
@@ -19910,6 +20332,68 @@ export declare class DeleteLoadBalancerResponse extends $dara.Model {
19910
20332
  [key: string]: any;
19911
20333
  });
19912
20334
  }
20335
+ export declare class DeleteNetworkOptimizationRequest extends $dara.Model {
20336
+ /**
20337
+ * @remarks
20338
+ * This parameter is required.
20339
+ *
20340
+ * @example
20341
+ * 352816**********
20342
+ */
20343
+ configId?: number;
20344
+ /**
20345
+ * @remarks
20346
+ * This parameter is required.
20347
+ *
20348
+ * @example
20349
+ * 123456****
20350
+ */
20351
+ siteId?: number;
20352
+ static names(): {
20353
+ [key: string]: string;
20354
+ };
20355
+ static types(): {
20356
+ [key: string]: any;
20357
+ };
20358
+ validate(): void;
20359
+ constructor(map?: {
20360
+ [key: string]: any;
20361
+ });
20362
+ }
20363
+ export declare class DeleteNetworkOptimizationResponseBody extends $dara.Model {
20364
+ /**
20365
+ * @example
20366
+ * 04F0F334-1335-436C-A1D7-6C044FE73368
20367
+ */
20368
+ requestId?: string;
20369
+ static names(): {
20370
+ [key: string]: string;
20371
+ };
20372
+ static types(): {
20373
+ [key: string]: any;
20374
+ };
20375
+ validate(): void;
20376
+ constructor(map?: {
20377
+ [key: string]: any;
20378
+ });
20379
+ }
20380
+ export declare class DeleteNetworkOptimizationResponse extends $dara.Model {
20381
+ headers?: {
20382
+ [key: string]: string;
20383
+ };
20384
+ statusCode?: number;
20385
+ body?: DeleteNetworkOptimizationResponseBody;
20386
+ static names(): {
20387
+ [key: string]: string;
20388
+ };
20389
+ static types(): {
20390
+ [key: string]: any;
20391
+ };
20392
+ validate(): void;
20393
+ constructor(map?: {
20394
+ [key: string]: any;
20395
+ });
20396
+ }
19913
20397
  export declare class DeleteOriginPoolRequest extends $dara.Model {
19914
20398
  /**
19915
20399
  * @remarks
@@ -24742,6 +25226,148 @@ export declare class GetIPv6Response extends $dara.Model {
24742
25226
  [key: string]: any;
24743
25227
  });
24744
25228
  }
25229
+ export declare class GetImageTransformRequest extends $dara.Model {
25230
+ /**
25231
+ * @remarks
25232
+ * The configuration ID, which can be obtained by calling the [ListImageTransforms](~~ListImageTransforms~~) operation.
25233
+ *
25234
+ * This parameter is required.
25235
+ *
25236
+ * @example
25237
+ * 352816096987136
25238
+ */
25239
+ configId?: number;
25240
+ /**
25241
+ * @remarks
25242
+ * The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
25243
+ *
25244
+ * This parameter is required.
25245
+ *
25246
+ * @example
25247
+ * 123456****
25248
+ */
25249
+ siteId?: number;
25250
+ static names(): {
25251
+ [key: string]: string;
25252
+ };
25253
+ static types(): {
25254
+ [key: string]: any;
25255
+ };
25256
+ validate(): void;
25257
+ constructor(map?: {
25258
+ [key: string]: any;
25259
+ });
25260
+ }
25261
+ export declare class GetImageTransformResponseBody extends $dara.Model {
25262
+ /**
25263
+ * @remarks
25264
+ * The configuration ID.
25265
+ *
25266
+ * @example
25267
+ * 352816096987136
25268
+ */
25269
+ configId?: number;
25270
+ /**
25271
+ * @remarks
25272
+ * The configuration type. Valid values:
25273
+ *
25274
+ * * global: global configuration.
25275
+ * * rule: rule configuration.
25276
+ *
25277
+ * @example
25278
+ * global
25279
+ */
25280
+ configType?: string;
25281
+ /**
25282
+ * @remarks
25283
+ * Indicates whether the image transformations feature is enabled. Valid values:
25284
+ *
25285
+ * * on
25286
+ * * off
25287
+ *
25288
+ * @example
25289
+ * on
25290
+ */
25291
+ enable?: string;
25292
+ /**
25293
+ * @remarks
25294
+ * The request ID.
25295
+ *
25296
+ * @example
25297
+ * CB1A380B-09F0-41BB-280B-72F8FD6DA2FE
25298
+ */
25299
+ requestId?: string;
25300
+ /**
25301
+ * @remarks
25302
+ * The rule content, which is a policy or conditional expression.
25303
+ *
25304
+ * @example
25305
+ * (http.request.uri.path.file_name eq \\"jpg\\")
25306
+ */
25307
+ rule?: string;
25308
+ /**
25309
+ * @remarks
25310
+ * Indicates whether the rule is enabled. Valid values:
25311
+ *
25312
+ * * **on**
25313
+ * * **off**
25314
+ *
25315
+ * @example
25316
+ * on
25317
+ */
25318
+ ruleEnable?: string;
25319
+ /**
25320
+ * @remarks
25321
+ * The rule name.
25322
+ *
25323
+ * @example
25324
+ * test
25325
+ */
25326
+ ruleName?: string;
25327
+ /**
25328
+ * @remarks
25329
+ * The order in which the rule is executed.
25330
+ *
25331
+ * @example
25332
+ * 2
25333
+ */
25334
+ sequence?: number;
25335
+ /**
25336
+ * @remarks
25337
+ * The version number of the website.
25338
+ *
25339
+ * @example
25340
+ * 0
25341
+ */
25342
+ siteVersion?: number;
25343
+ static names(): {
25344
+ [key: string]: string;
25345
+ };
25346
+ static types(): {
25347
+ [key: string]: any;
25348
+ };
25349
+ validate(): void;
25350
+ constructor(map?: {
25351
+ [key: string]: any;
25352
+ });
25353
+ }
25354
+ export declare class GetImageTransformResponse extends $dara.Model {
25355
+ headers?: {
25356
+ [key: string]: string;
25357
+ };
25358
+ statusCode?: number;
25359
+ body?: GetImageTransformResponseBody;
25360
+ static names(): {
25361
+ [key: string]: string;
25362
+ };
25363
+ static types(): {
25364
+ [key: string]: any;
25365
+ };
25366
+ validate(): void;
25367
+ constructor(map?: {
25368
+ [key: string]: any;
25369
+ });
25370
+ }
24745
25371
  export declare class GetKvRequest extends $dara.Model {
24746
25372
  /**
24747
25373
  * @remarks
@@ -25402,6 +26028,128 @@ export declare class GetManagedTransformResponse extends $dara.Model {
25402
26028
  [key: string]: any;
25403
26029
  });
25404
26030
  }
26031
+ export declare class GetNetworkOptimizationRequest extends $dara.Model {
26032
+ /**
26033
+ * @remarks
26034
+ * This parameter is required.
26035
+ *
26036
+ * @example
26037
+ * 35281609698****
26038
+ */
26039
+ configId?: number;
26040
+ /**
26041
+ * @remarks
26042
+ * This parameter is required.
26043
+ *
26044
+ * @example
26045
+ * 12312312213212
26046
+ */
26047
+ siteId?: number;
26048
+ static names(): {
26049
+ [key: string]: string;
26050
+ };
26051
+ static types(): {
26052
+ [key: string]: any;
26053
+ };
26054
+ validate(): void;
26055
+ constructor(map?: {
26056
+ [key: string]: any;
26057
+ });
26058
+ }
26059
+ export declare class GetNetworkOptimizationResponseBody extends $dara.Model {
26060
+ /**
26061
+ * @example
26062
+ * 35281609698****
26063
+ */
26064
+ configId?: number;
26065
+ /**
26066
+ * @example
26067
+ * global
26068
+ */
26069
+ configType?: string;
26070
+ /**
26071
+ * @example
26072
+ * on
26073
+ */
26074
+ grpc?: string;
26075
+ /**
26076
+ * @example
26077
+ * on
26078
+ */
26079
+ http2Origin?: string;
26080
+ /**
26081
+ * @example
26082
+ * C370DAF1-C838-4288-A1A0-9A87633D248E
26083
+ */
26084
+ requestId?: string;
26085
+ /**
26086
+ * @example
26087
+ * (http.host eq \\"video.example.com\\")
26088
+ */
26089
+ rule?: string;
26090
+ /**
26091
+ * @example
26092
+ * on
26093
+ */
26094
+ ruleEnable?: string;
26095
+ /**
26096
+ * @example
26097
+ * rule_example
26098
+ */
26099
+ ruleName?: string;
26100
+ /**
26101
+ * @example
26102
+ * 2
26103
+ */
26104
+ sequence?: number;
26105
+ /**
26106
+ * @example
26107
+ * 1
26108
+ */
26109
+ siteVersion?: number;
26110
+ /**
26111
+ * @example
26112
+ * on
26113
+ */
26114
+ smartRouting?: string;
26115
+ /**
26116
+ * @example
26117
+ * 500
26118
+ */
26119
+ uploadMaxFilesize?: string;
26120
+ /**
26121
+ * @example
26122
+ * on
26123
+ */
26124
+ websocket?: string;
26125
+ static names(): {
26126
+ [key: string]: string;
26127
+ };
26128
+ static types(): {
26129
+ [key: string]: any;
26130
+ };
26131
+ validate(): void;
26132
+ constructor(map?: {
26133
+ [key: string]: any;
26134
+ });
26135
+ }
26136
+ export declare class GetNetworkOptimizationResponse extends $dara.Model {
26137
+ headers?: {
26138
+ [key: string]: string;
26139
+ };
26140
+ statusCode?: number;
26141
+ body?: GetNetworkOptimizationResponseBody;
26142
+ static names(): {
26143
+ [key: string]: string;
26144
+ };
26145
+ static types(): {
26146
+ [key: string]: any;
26147
+ };
26148
+ validate(): void;
26149
+ constructor(map?: {
26150
+ [key: string]: any;
26151
+ });
26152
+ }
25405
26153
  export declare class GetOriginPoolRequest extends $dara.Model {
25406
26154
  /**
25407
26155
  * @remarks
@@ -27476,6 +28224,65 @@ export declare class GetSiteNameExclusiveResponse extends $dara.Model {
27476
28224
  [key: string]: any;
27477
28225
  });
27478
28226
  }
28227
+ export declare class GetSitePauseRequest extends $dara.Model {
28228
+ /**
28229
+ * @remarks
28230
+ * This parameter is required.
28231
+ *
28232
+ * @example
28233
+ * 123456****
28234
+ */
28235
+ siteId?: number;
28236
+ static names(): {
28237
+ [key: string]: string;
28238
+ };
28239
+ static types(): {
28240
+ [key: string]: any;
28241
+ };
28242
+ validate(): void;
28243
+ constructor(map?: {
28244
+ [key: string]: any;
28245
+ });
28246
+ }
28247
+ export declare class GetSitePauseResponseBody extends $dara.Model {
28248
+ /**
28249
+ * @example
28250
+ * true
28251
+ */
28252
+ paused?: boolean;
28253
+ /**
28254
+ * @example
28255
+ * EEEBE525-F576-1196-8DAF-2D70CA3F4D2F
28256
+ */
28257
+ requestId?: string;
28258
+ static names(): {
28259
+ [key: string]: string;
28260
+ };
28261
+ static types(): {
28262
+ [key: string]: any;
28263
+ };
28264
+ validate(): void;
28265
+ constructor(map?: {
28266
+ [key: string]: any;
28267
+ });
28268
+ }
28269
+ export declare class GetSitePauseResponse extends $dara.Model {
28270
+ headers?: {
28271
+ [key: string]: string;
28272
+ };
28273
+ statusCode?: number;
28274
+ body?: GetSitePauseResponseBody;
28275
+ static names(): {
28276
+ [key: string]: string;
28277
+ };
28278
+ static types(): {
28279
+ [key: string]: any;
28280
+ };
28281
+ validate(): void;
28282
+ constructor(map?: {
28283
+ [key: string]: any;
28284
+ });
28285
+ }
27479
28286
  export declare class GetSiteWafSettingsRequest extends $dara.Model {
27480
28287
  path?: string;
27481
28288
  /**
@@ -30094,6 +30901,111 @@ export declare class ListHttpsBasicConfigurationsResponse extends $dara.Model {
30094
30901
  [key: string]: any;
30095
30902
  });
30096
30903
  }
30904
+ export declare class ListImageTransformsRequest extends $dara.Model {
30905
+ /**
30906
+ * @example
30907
+ * 352816096987136
30908
+ */
30909
+ configId?: number;
30910
+ /**
30911
+ * @example
30912
+ * global
30913
+ */
30914
+ configType?: string;
30915
+ /**
30916
+ * @example
30917
+ * 1
30918
+ */
30919
+ pageNumber?: number;
30920
+ /**
30921
+ * @example
30922
+ * 20
30923
+ */
30924
+ pageSize?: number;
30925
+ /**
30926
+ * @example
30927
+ * test1
30928
+ */
30929
+ ruleName?: string;
30930
+ /**
30931
+ * @remarks
30932
+ * This parameter is required.
30933
+ *
30934
+ * @example
30935
+ * 123456****
30936
+ */
30937
+ siteId?: number;
30938
+ /**
30939
+ * @example
30940
+ * 1
30941
+ */
30942
+ siteVersion?: number;
30943
+ static names(): {
30944
+ [key: string]: string;
30945
+ };
30946
+ static types(): {
30947
+ [key: string]: any;
30948
+ };
30949
+ validate(): void;
30950
+ constructor(map?: {
30951
+ [key: string]: any;
30952
+ });
30953
+ }
30954
+ export declare class ListImageTransformsResponseBody extends $dara.Model {
30955
+ configs?: ListImageTransformsResponseBodyConfigs[];
30956
+ /**
30957
+ * @example
30958
+ * 1
30959
+ */
30960
+ pageNumber?: number;
30961
+ /**
30962
+ * @example
30963
+ * 10
30964
+ */
30965
+ pageSize?: number;
30966
+ /**
30967
+ * @example
30968
+ * CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
30969
+ */
30970
+ requestId?: string;
30971
+ /**
30972
+ * @example
30973
+ * 16
30974
+ */
30975
+ totalCount?: number;
30976
+ /**
30977
+ * @example
30978
+ * 2
30979
+ */
30980
+ totalPage?: number;
30981
+ static names(): {
30982
+ [key: string]: string;
30983
+ };
30984
+ static types(): {
30985
+ [key: string]: any;
30986
+ };
30987
+ validate(): void;
30988
+ constructor(map?: {
30989
+ [key: string]: any;
30990
+ });
30991
+ }
30992
+ export declare class ListImageTransformsResponse extends $dara.Model {
30993
+ headers?: {
30994
+ [key: string]: string;
30995
+ };
30996
+ statusCode?: number;
30997
+ body?: ListImageTransformsResponseBody;
30998
+ static names(): {
30999
+ [key: string]: string;
31000
+ };
31001
+ static types(): {
31002
+ [key: string]: any;
31003
+ };
31004
+ validate(): void;
31005
+ constructor(map?: {
31006
+ [key: string]: any;
31007
+ });
31008
+ }
30097
31009
  export declare class ListInstanceQuotasRequest extends $dara.Model {
30098
31010
  /**
30099
31011
  * @remarks
@@ -31018,6 +31930,111 @@ export declare class ListManagedRulesGroupsResponse extends $dara.Model {
31018
31930
  [key: string]: any;
31019
31931
  });
31020
31932
  }
31933
+ export declare class ListNetworkOptimizationsRequest extends $dara.Model {
31934
+ /**
31935
+ * @example
31936
+ * 3528160969****
31937
+ */
31938
+ configId?: number;
31939
+ /**
31940
+ * @example
31941
+ * global
31942
+ */
31943
+ configType?: string;
31944
+ /**
31945
+ * @example
31946
+ * 1
31947
+ */
31948
+ pageNumber?: number;
31949
+ /**
31950
+ * @example
31951
+ * 20
31952
+ */
31953
+ pageSize?: number;
31954
+ /**
31955
+ * @example
31956
+ * test
31957
+ */
31958
+ ruleName?: string;
31959
+ /**
31960
+ * @remarks
31961
+ * This parameter is required.
31962
+ *
31963
+ * @example
31964
+ * 1231231221****
31965
+ */
31966
+ siteId?: number;
31967
+ /**
31968
+ * @example
31969
+ * 1
31970
+ */
31971
+ siteVersion?: number;
31972
+ static names(): {
31973
+ [key: string]: string;
31974
+ };
31975
+ static types(): {
31976
+ [key: string]: any;
31977
+ };
31978
+ validate(): void;
31979
+ constructor(map?: {
31980
+ [key: string]: any;
31981
+ });
31982
+ }
31983
+ export declare class ListNetworkOptimizationsResponseBody extends $dara.Model {
31984
+ configs?: ListNetworkOptimizationsResponseBodyConfigs[];
31985
+ /**
31986
+ * @example
31987
+ * 1
31988
+ */
31989
+ pageNumber?: number;
31990
+ /**
31991
+ * @example
31992
+ * 10
31993
+ */
31994
+ pageSize?: number;
31995
+ /**
31996
+ * @example
31997
+ * EEEBE525-F576-1196-8DAF-2D70CA3F4D2F
31998
+ */
31999
+ requestId?: string;
32000
+ /**
32001
+ * @example
32002
+ * 100
32003
+ */
32004
+ totalCount?: number;
32005
+ /**
32006
+ * @example
32007
+ * 2
32008
+ */
32009
+ totalPage?: number;
32010
+ static names(): {
32011
+ [key: string]: string;
32012
+ };
32013
+ static types(): {
32014
+ [key: string]: any;
32015
+ };
32016
+ validate(): void;
32017
+ constructor(map?: {
32018
+ [key: string]: any;
32019
+ });
32020
+ }
32021
+ export declare class ListNetworkOptimizationsResponse extends $dara.Model {
32022
+ headers?: {
32023
+ [key: string]: string;
32024
+ };
32025
+ statusCode?: number;
32026
+ body?: ListNetworkOptimizationsResponseBody;
32027
+ static names(): {
32028
+ [key: string]: string;
32029
+ };
32030
+ static types(): {
32031
+ [key: string]: any;
32032
+ };
32033
+ validate(): void;
32034
+ constructor(map?: {
32035
+ [key: string]: any;
32036
+ });
32037
+ }
31021
32038
  export declare class ListOriginPoolsRequest extends $dara.Model {
31022
32039
  matchType?: string;
31023
32040
  name?: string;
@@ -36931,6 +37948,88 @@ export declare class UpdateIPv6Response extends $dara.Model {
36931
37948
  [key: string]: any;
36932
37949
  });
36933
37950
  }
37951
+ export declare class UpdateImageTransformRequest extends $dara.Model {
37952
+ /**
37953
+ * @remarks
37954
+ * This parameter is required.
37955
+ *
37956
+ * @example
37957
+ * 352816096987136
37958
+ */
37959
+ configId?: number;
37960
+ /**
37961
+ * @example
37962
+ * on
37963
+ */
37964
+ enable?: string;
37965
+ /**
37966
+ * @example
37967
+ * (http.request.uri.path.file_name eq \\"jpg\\")
37968
+ */
37969
+ rule?: string;
37970
+ /**
37971
+ * @example
37972
+ * on
37973
+ */
37974
+ ruleEnable?: string;
37975
+ /**
37976
+ * @example
37977
+ * test
37978
+ */
37979
+ ruleName?: string;
37980
+ /**
37981
+ * @remarks
37982
+ * This parameter is required.
37983
+ *
37984
+ * @example
37985
+ * 1234567890123
37986
+ */
37987
+ siteId?: number;
37988
+ static names(): {
37989
+ [key: string]: string;
37990
+ };
37991
+ static types(): {
37992
+ [key: string]: any;
37993
+ };
37994
+ validate(): void;
37995
+ constructor(map?: {
37996
+ [key: string]: any;
37997
+ });
37998
+ }
37999
+ export declare class UpdateImageTransformResponseBody extends $dara.Model {
38000
+ /**
38001
+ * @example
38002
+ * 04F0F334-1335-436C-A1D7-6C044FE73368
38003
+ */
38004
+ requestId?: string;
38005
+ static names(): {
38006
+ [key: string]: string;
38007
+ };
38008
+ static types(): {
38009
+ [key: string]: any;
38010
+ };
38011
+ validate(): void;
38012
+ constructor(map?: {
38013
+ [key: string]: any;
38014
+ });
38015
+ }
38016
+ export declare class UpdateImageTransformResponse extends $dara.Model {
38017
+ headers?: {
38018
+ [key: string]: string;
38019
+ };
38020
+ statusCode?: number;
38021
+ body?: UpdateImageTransformResponseBody;
38022
+ static names(): {
38023
+ [key: string]: string;
38024
+ };
38025
+ static types(): {
38026
+ [key: string]: any;
38027
+ };
38028
+ validate(): void;
38029
+ constructor(map?: {
38030
+ [key: string]: any;
38031
+ });
38032
+ }
36934
38033
  export declare class UpdateKvNamespaceRequest extends $dara.Model {
36935
38034
  /**
36936
38035
  * @remarks
@@ -37262,79 +38361,151 @@ export declare class UpdateLoadBalancerRequest extends $dara.Model {
37262
38361
  [key: string]: any;
37263
38362
  });
37264
38363
  }
37265
- export declare class UpdateLoadBalancerShrinkRequest extends $dara.Model {
37266
- adaptiveRoutingShrink?: string;
37267
- defaultPoolsShrink?: string;
37268
- description?: string;
37269
- /**
37270
- * @example
37271
- * 96228666776****
37272
- */
37273
- fallbackPool?: number;
38364
+ export declare class UpdateLoadBalancerShrinkRequest extends $dara.Model {
38365
+ adaptiveRoutingShrink?: string;
38366
+ defaultPoolsShrink?: string;
38367
+ description?: string;
38368
+ /**
38369
+ * @example
38370
+ * 96228666776****
38371
+ */
38372
+ fallbackPool?: number;
38373
+ /**
38374
+ * @remarks
38375
+ * This parameter is required.
38376
+ *
38377
+ * @example
38378
+ * 95913670174****
38379
+ */
38380
+ id?: number;
38381
+ monitorShrink?: string;
38382
+ randomSteeringShrink?: string;
38383
+ /**
38384
+ * @example
38385
+ * {
38386
+ * "ENAM": [
38387
+ * 12345678****
38388
+ * ],
38389
+ * "WNAM": [
38390
+ * 23456789****,
38391
+ * 23456789****
38392
+ * ]
38393
+ * }
38394
+ */
38395
+ regionPools?: any;
38396
+ /**
38397
+ * **if can be null:**
38398
+ * false
38399
+ */
38400
+ rulesShrink?: string;
38401
+ /**
38402
+ * @remarks
38403
+ * Session persistence. Valid values:
38404
+ *
38405
+ * * off:disables session persistence.
38406
+ * * ip: enables session persistence by IP address.
38407
+ * * cookie: disables session persistence.
38408
+ *
38409
+ * @example
38410
+ * ip
38411
+ */
38412
+ sessionAffinity?: string;
38413
+ sessionAffinityAttributesShrink?: string;
38414
+ /**
38415
+ * @remarks
38416
+ * This parameter is required.
38417
+ *
38418
+ * @example
38419
+ * UpdateLoadBalancer
38420
+ */
38421
+ siteId?: number;
38422
+ /**
38423
+ * @example
38424
+ * order
38425
+ */
38426
+ steeringPolicy?: string;
38427
+ /**
38428
+ * @example
38429
+ * {"AL,MO": [92298024898****],"CN-SH,CN-SX,CN-SC":[92304347804****,92843536908****]}
38430
+ */
38431
+ subRegionPools?: any;
38432
+ /**
38433
+ * @example
38434
+ * 300
38435
+ */
38436
+ ttl?: number;
38437
+ static names(): {
38438
+ [key: string]: string;
38439
+ };
38440
+ static types(): {
38441
+ [key: string]: any;
38442
+ };
38443
+ validate(): void;
38444
+ constructor(map?: {
38445
+ [key: string]: any;
38446
+ });
38447
+ }
38448
+ export declare class UpdateLoadBalancerResponseBody extends $dara.Model {
37274
38449
  /**
37275
38450
  * @remarks
37276
- * This parameter is required.
38451
+ * Id of the request
37277
38452
  *
37278
38453
  * @example
37279
- * 95913670174****
38454
+ * EEEBE525-F576-1196-8DAF-2D70CA3F4D2F
37280
38455
  */
37281
- id?: number;
37282
- monitorShrink?: string;
37283
- randomSteeringShrink?: string;
38456
+ requestId?: string;
38457
+ static names(): {
38458
+ [key: string]: string;
38459
+ };
38460
+ static types(): {
38461
+ [key: string]: any;
38462
+ };
38463
+ validate(): void;
38464
+ constructor(map?: {
38465
+ [key: string]: any;
38466
+ });
38467
+ }
38468
+ export declare class UpdateLoadBalancerResponse extends $dara.Model {
38469
+ headers?: {
38470
+ [key: string]: string;
38471
+ };
38472
+ statusCode?: number;
38473
+ body?: UpdateLoadBalancerResponseBody;
38474
+ static names(): {
38475
+ [key: string]: string;
38476
+ };
38477
+ static types(): {
38478
+ [key: string]: any;
38479
+ };
38480
+ validate(): void;
38481
+ constructor(map?: {
38482
+ [key: string]: any;
38483
+ });
38484
+ }
38485
+ export declare class UpdateManagedTransformRequest extends $dara.Model {
37284
38486
  /**
37285
38487
  * @example
37286
- * {
37287
- * "ENAM": [
37288
- * 12345678****
37289
- * ],
37290
- * "WNAM": [
37291
- * 23456789****,
37292
- * 23456789****
37293
- * ]
37294
- * }
37295
- */
37296
- regionPools?: any;
37297
- /**
37298
- * **if can be null:**
37299
- * false
38488
+ * on
37300
38489
  */
37301
- rulesShrink?: string;
38490
+ addClientGeolocationHeader?: string;
37302
38491
  /**
37303
- * @remarks
37304
- * Session persistence. Valid values:
37305
- *
37306
- * * off:disables session persistence.
37307
- * * ip: enables session persistence by IP address.
37308
- * * cookie: disables session persistence.
37309
- *
37310
38492
  * @example
37311
- * ip
38493
+ * on
37312
38494
  */
37313
- sessionAffinity?: string;
37314
- sessionAffinityAttributesShrink?: string;
38495
+ addRealClientIpHeader?: string;
37315
38496
  /**
37316
38497
  * @remarks
37317
38498
  * This parameter is required.
37318
38499
  *
37319
38500
  * @example
37320
- * UpdateLoadBalancer
38501
+ * 123456****
37321
38502
  */
37322
38503
  siteId?: number;
37323
38504
  /**
37324
38505
  * @example
37325
- * order
37326
- */
37327
- steeringPolicy?: string;
37328
- /**
37329
- * @example
37330
- * {"AL,MO": [92298024898****],"CN-SH,CN-SX,CN-SC":[92304347804****,92843536908****]}
37331
- */
37332
- subRegionPools?: any;
37333
- /**
37334
- * @example
37335
- * 300
38506
+ * 0
37336
38507
  */
37337
- ttl?: number;
38508
+ siteVersion?: number;
37338
38509
  static names(): {
37339
38510
  [key: string]: string;
37340
38511
  };
@@ -37346,13 +38517,10 @@ export declare class UpdateLoadBalancerShrinkRequest extends $dara.Model {
37346
38517
  [key: string]: any;
37347
38518
  });
37348
38519
  }
37349
- export declare class UpdateLoadBalancerResponseBody extends $dara.Model {
38520
+ export declare class UpdateManagedTransformResponseBody extends $dara.Model {
37350
38521
  /**
37351
- * @remarks
37352
- * Id of the request
37353
- *
37354
38522
  * @example
37355
- * EEEBE525-F576-1196-8DAF-2D70CA3F4D2F
38523
+ * CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
37356
38524
  */
37357
38525
  requestId?: string;
37358
38526
  static names(): {
@@ -37366,12 +38534,12 @@ export declare class UpdateLoadBalancerResponseBody extends $dara.Model {
37366
38534
  [key: string]: any;
37367
38535
  });
37368
38536
  }
37369
- export declare class UpdateLoadBalancerResponse extends $dara.Model {
38537
+ export declare class UpdateManagedTransformResponse extends $dara.Model {
37370
38538
  headers?: {
37371
38539
  [key: string]: string;
37372
38540
  };
37373
38541
  statusCode?: number;
37374
- body?: UpdateLoadBalancerResponseBody;
38542
+ body?: UpdateManagedTransformResponseBody;
37375
38543
  static names(): {
37376
38544
  [key: string]: string;
37377
38545
  };
@@ -37383,17 +38551,40 @@ export declare class UpdateLoadBalancerResponse extends $dara.Model {
37383
38551
  [key: string]: any;
37384
38552
  });
37385
38553
  }
37386
- export declare class UpdateManagedTransformRequest extends $dara.Model {
38554
+ export declare class UpdateNetworkOptimizationRequest extends $dara.Model {
38555
+ /**
38556
+ * @remarks
38557
+ * This parameter is required.
38558
+ *
38559
+ * @example
38560
+ * 352816096987136
38561
+ */
38562
+ configId?: number;
37387
38563
  /**
37388
38564
  * @example
37389
38565
  * on
37390
38566
  */
37391
- addClientGeolocationHeader?: string;
38567
+ grpc?: string;
37392
38568
  /**
37393
38569
  * @example
37394
38570
  * on
37395
38571
  */
37396
- addRealClientIpHeader?: string;
38572
+ http2Origin?: string;
38573
+ /**
38574
+ * @example
38575
+ * (http.host eq \\"video.example.com\\")
38576
+ */
38577
+ rule?: string;
38578
+ /**
38579
+ * @example
38580
+ * on
38581
+ */
38582
+ ruleEnable?: string;
38583
+ /**
38584
+ * @example
38585
+ * rule_example
38586
+ */
38587
+ ruleName?: string;
37397
38588
  /**
37398
38589
  * @remarks
37399
38590
  * This parameter is required.
@@ -37404,9 +38595,19 @@ export declare class UpdateManagedTransformRequest extends $dara.Model {
37404
38595
  siteId?: number;
37405
38596
  /**
37406
38597
  * @example
37407
- * 0
38598
+ * on
37408
38599
  */
37409
- siteVersion?: number;
38600
+ smartRouting?: string;
38601
+ /**
38602
+ * @example
38603
+ * 100
38604
+ */
38605
+ uploadMaxFilesize?: string;
38606
+ /**
38607
+ * @example
38608
+ * on
38609
+ */
38610
+ websocket?: string;
37410
38611
  static names(): {
37411
38612
  [key: string]: string;
37412
38613
  };
@@ -37418,7 +38619,7 @@ export declare class UpdateManagedTransformRequest extends $dara.Model {
37418
38619
  [key: string]: any;
37419
38620
  });
37420
38621
  }
37421
- export declare class UpdateManagedTransformResponseBody extends $dara.Model {
38622
+ export declare class UpdateNetworkOptimizationResponseBody extends $dara.Model {
37422
38623
  /**
37423
38624
  * @example
37424
38625
  * CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
@@ -37435,12 +38636,12 @@ export declare class UpdateManagedTransformResponseBody extends $dara.Model {
37435
38636
  [key: string]: any;
37436
38637
  });
37437
38638
  }
37438
- export declare class UpdateManagedTransformResponse extends $dara.Model {
38639
+ export declare class UpdateNetworkOptimizationResponse extends $dara.Model {
37439
38640
  headers?: {
37440
38641
  [key: string]: string;
37441
38642
  };
37442
38643
  statusCode?: number;
37443
- body?: UpdateManagedTransformResponseBody;
38644
+ body?: UpdateNetworkOptimizationResponseBody;
37444
38645
  static names(): {
37445
38646
  [key: string]: string;
37446
38647
  };
@@ -39061,6 +40262,68 @@ export declare class UpdateSiteNameExclusiveResponse extends $dara.Model {
39061
40262
  [key: string]: any;
39062
40263
  });
39063
40264
  }
40265
+ export declare class UpdateSitePauseRequest extends $dara.Model {
40266
+ /**
40267
+ * @remarks
40268
+ * This parameter is required.
40269
+ *
40270
+ * @example
40271
+ * true
40272
+ */
40273
+ paused?: boolean;
40274
+ /**
40275
+ * @remarks
40276
+ * This parameter is required.
40277
+ *
40278
+ * @example
40279
+ * 123456****
40280
+ */
40281
+ siteId?: number;
40282
+ static names(): {
40283
+ [key: string]: string;
40284
+ };
40285
+ static types(): {
40286
+ [key: string]: any;
40287
+ };
40288
+ validate(): void;
40289
+ constructor(map?: {
40290
+ [key: string]: any;
40291
+ });
40292
+ }
40293
+ export declare class UpdateSitePauseResponseBody extends $dara.Model {
40294
+ /**
40295
+ * @example
40296
+ * 6abd807e-ed2a-44de-ac54-ac38a62472e6
40297
+ */
40298
+ requestId?: string;
40299
+ static names(): {
40300
+ [key: string]: string;
40301
+ };
40302
+ static types(): {
40303
+ [key: string]: any;
40304
+ };
40305
+ validate(): void;
40306
+ constructor(map?: {
40307
+ [key: string]: any;
40308
+ });
40309
+ }
40310
+ export declare class UpdateSitePauseResponse extends $dara.Model {
40311
+ headers?: {
40312
+ [key: string]: string;
40313
+ };
40314
+ statusCode?: number;
40315
+ body?: UpdateSitePauseResponseBody;
40316
+ static names(): {
40317
+ [key: string]: string;
40318
+ };
40319
+ static types(): {
40320
+ [key: string]: any;
40321
+ };
40322
+ validate(): void;
40323
+ constructor(map?: {
40324
+ [key: string]: any;
40325
+ });
40326
+ }
39064
40327
  export declare class UpdateSiteVanityNSRequest extends $dara.Model {
39065
40328
  /**
39066
40329
  * @remarks
@@ -41000,6 +42263,21 @@ export default class Client extends OpenApi {
41000
42263
  * @returns CreateHttpsBasicConfigurationResponse
41001
42264
  */
41002
42265
  createHttpsBasicConfiguration(request: CreateHttpsBasicConfigurationRequest): Promise<CreateHttpsBasicConfigurationResponse>;
42266
+ /**
42267
+ * 新增站点图片转换配置
42268
+ *
42269
+ * @param request - CreateImageTransformRequest
42270
+ * @param runtime - runtime options for this request RuntimeOptions
42271
+ * @returns CreateImageTransformResponse
42272
+ */
42273
+ createImageTransformWithOptions(request: CreateImageTransformRequest, runtime: $dara.RuntimeOptions): Promise<CreateImageTransformResponse>;
42274
+ /**
42275
+ * 新增站点图片转换配置
42276
+ *
42277
+ * @param request - CreateImageTransformRequest
42278
+ * @returns CreateImageTransformResponse
42279
+ */
42280
+ createImageTransform(request: CreateImageTransformRequest): Promise<CreateImageTransformResponse>;
41003
42281
  /**
41004
42282
  * Create a namespace in your Alibaba Cloud account.
41005
42283
  *
@@ -41045,6 +42323,21 @@ export default class Client extends OpenApi {
41045
42323
  * @returns CreateLoadBalancerResponse
41046
42324
  */
41047
42325
  createLoadBalancer(request: CreateLoadBalancerRequest): Promise<CreateLoadBalancerResponse>;
42326
+ /**
42327
+ * 新增站点网络优化配置
42328
+ *
42329
+ * @param request - CreateNetworkOptimizationRequest
42330
+ * @param runtime - runtime options for this request RuntimeOptions
42331
+ * @returns CreateNetworkOptimizationResponse
42332
+ */
42333
+ createNetworkOptimizationWithOptions(request: CreateNetworkOptimizationRequest, runtime: $dara.RuntimeOptions): Promise<CreateNetworkOptimizationResponse>;
42334
+ /**
42335
+ * 新增站点网络优化配置
42336
+ *
42337
+ * @param request - CreateNetworkOptimizationRequest
42338
+ * @returns CreateNetworkOptimizationResponse
42339
+ */
42340
+ createNetworkOptimization(request: CreateNetworkOptimizationRequest): Promise<CreateNetworkOptimizationResponse>;
41048
42341
  /**
41049
42342
  * 新增源地址池
41050
42343
  *
@@ -41580,6 +42873,21 @@ export default class Client extends OpenApi {
41580
42873
  * @returns DeleteHttpsBasicConfigurationResponse
41581
42874
  */
41582
42875
  deleteHttpsBasicConfiguration(request: DeleteHttpsBasicConfigurationRequest): Promise<DeleteHttpsBasicConfigurationResponse>;
42876
+ /**
42877
+ * Deletes the configuration of image transformations for a website.
42878
+ *
42879
+ * @param request - DeleteImageTransformRequest
42880
+ * @param runtime - runtime options for this request RuntimeOptions
42881
+ * @returns DeleteImageTransformResponse
42882
+ */
42883
+ deleteImageTransformWithOptions(request: DeleteImageTransformRequest, runtime: $dara.RuntimeOptions): Promise<DeleteImageTransformResponse>;
42884
+ /**
42885
+ * Deletes the configuration of image transformations for a website.
42886
+ *
42887
+ * @param request - DeleteImageTransformRequest
42888
+ * @returns DeleteImageTransformResponse
42889
+ */
42890
+ deleteImageTransform(request: DeleteImageTransformRequest): Promise<DeleteImageTransformResponse>;
41583
42891
  /**
41584
42892
  * Deletes a key-value pair from a namespace.
41585
42893
  *
@@ -41640,6 +42948,21 @@ export default class Client extends OpenApi {
41640
42948
  * @returns DeleteLoadBalancerResponse
41641
42949
  */
41642
42950
  deleteLoadBalancer(request: DeleteLoadBalancerRequest): Promise<DeleteLoadBalancerResponse>;
42951
+ /**
42952
+ * 删除网络优化配置
42953
+ *
42954
+ * @param request - DeleteNetworkOptimizationRequest
42955
+ * @param runtime - runtime options for this request RuntimeOptions
42956
+ * @returns DeleteNetworkOptimizationResponse
42957
+ */
42958
+ deleteNetworkOptimizationWithOptions(request: DeleteNetworkOptimizationRequest, runtime: $dara.RuntimeOptions): Promise<DeleteNetworkOptimizationResponse>;
42959
+ /**
42960
+ * 删除网络优化配置
42961
+ *
42962
+ * @param request - DeleteNetworkOptimizationRequest
42963
+ * @returns DeleteNetworkOptimizationResponse
42964
+ */
42965
+ deleteNetworkOptimization(request: DeleteNetworkOptimizationRequest): Promise<DeleteNetworkOptimizationResponse>;
41643
42966
  /**
41644
42967
  * 删除源地址池
41645
42968
  *
@@ -42473,6 +43796,21 @@ export default class Client extends OpenApi {
42473
43796
  * @returns GetIPv6Response
42474
43797
  */
42475
43798
  getIPv6(request: GetIPv6Request): Promise<GetIPv6Response>;
43799
+ /**
43800
+ * Queries the configuration of image transformations for a website.
43801
+ *
43802
+ * @param request - GetImageTransformRequest
43803
+ * @param runtime - runtime options for this request RuntimeOptions
43804
+ * @returns GetImageTransformResponse
43805
+ */
43806
+ getImageTransformWithOptions(request: GetImageTransformRequest, runtime: $dara.RuntimeOptions): Promise<GetImageTransformResponse>;
43807
+ /**
43808
+ * Queries the configuration of image transformations for a website.
43809
+ *
43810
+ * @param request - GetImageTransformRequest
43811
+ * @returns GetImageTransformResponse
43812
+ */
43813
+ getImageTransform(request: GetImageTransformRequest): Promise<GetImageTransformResponse>;
42476
43814
  /**
42477
43815
  * Queries the value of a key in a key-value pair.
42478
43816
  *
@@ -42561,6 +43899,21 @@ export default class Client extends OpenApi {
42561
43899
  * @returns GetManagedTransformResponse
42562
43900
  */
42563
43901
  getManagedTransform(request: GetManagedTransformRequest): Promise<GetManagedTransformResponse>;
43902
+ /**
43903
+ * 查询单条网络优化配置
43904
+ *
43905
+ * @param request - GetNetworkOptimizationRequest
43906
+ * @param runtime - runtime options for this request RuntimeOptions
43907
+ * @returns GetNetworkOptimizationResponse
43908
+ */
43909
+ getNetworkOptimizationWithOptions(request: GetNetworkOptimizationRequest, runtime: $dara.RuntimeOptions): Promise<GetNetworkOptimizationResponse>;
43910
+ /**
43911
+ * 查询单条网络优化配置
43912
+ *
43913
+ * @param request - GetNetworkOptimizationRequest
43914
+ * @returns GetNetworkOptimizationResponse
43915
+ */
43916
+ getNetworkOptimization(request: GetNetworkOptimizationRequest): Promise<GetNetworkOptimizationResponse>;
42564
43917
  /**
42565
43918
  * 查询特定源地址池
42566
43919
  *
@@ -42908,6 +44261,21 @@ export default class Client extends OpenApi {
42908
44261
  * @returns GetSiteNameExclusiveResponse
42909
44262
  */
42910
44263
  getSiteNameExclusive(request: GetSiteNameExclusiveRequest): Promise<GetSiteNameExclusiveResponse>;
44264
+ /**
44265
+ * 查询站点暂停配置
44266
+ *
44267
+ * @param request - GetSitePauseRequest
44268
+ * @param runtime - runtime options for this request RuntimeOptions
44269
+ * @returns GetSitePauseResponse
44270
+ */
44271
+ getSitePauseWithOptions(request: GetSitePauseRequest, runtime: $dara.RuntimeOptions): Promise<GetSitePauseResponse>;
44272
+ /**
44273
+ * 查询站点暂停配置
44274
+ *
44275
+ * @param request - GetSitePauseRequest
44276
+ * @returns GetSitePauseResponse
44277
+ */
44278
+ getSitePause(request: GetSitePauseRequest): Promise<GetSitePauseResponse>;
42911
44279
  /**
42912
44280
  * Queries the Web Application Firewall (WAF) configurations of a website.
42913
44281
  *
@@ -43301,6 +44669,21 @@ export default class Client extends OpenApi {
43301
44669
  * @returns ListHttpsBasicConfigurationsResponse
43302
44670
  */
43303
44671
  listHttpsBasicConfigurations(request: ListHttpsBasicConfigurationsRequest): Promise<ListHttpsBasicConfigurationsResponse>;
44672
+ /**
44673
+ * 查询多条站点图片转换配置
44674
+ *
44675
+ * @param request - ListImageTransformsRequest
44676
+ * @param runtime - runtime options for this request RuntimeOptions
44677
+ * @returns ListImageTransformsResponse
44678
+ */
44679
+ listImageTransformsWithOptions(request: ListImageTransformsRequest, runtime: $dara.RuntimeOptions): Promise<ListImageTransformsResponse>;
44680
+ /**
44681
+ * 查询多条站点图片转换配置
44682
+ *
44683
+ * @param request - ListImageTransformsRequest
44684
+ * @returns ListImageTransformsResponse
44685
+ */
44686
+ listImageTransforms(request: ListImageTransformsRequest): Promise<ListImageTransformsResponse>;
43304
44687
  /**
43305
44688
  * Queries the quota details in a subscription plan.
43306
44689
  *
@@ -43427,6 +44810,21 @@ export default class Client extends OpenApi {
43427
44810
  * @returns ListManagedRulesGroupsResponse
43428
44811
  */
43429
44812
  listManagedRulesGroups(request: ListManagedRulesGroupsRequest): Promise<ListManagedRulesGroupsResponse>;
44813
+ /**
44814
+ * 查询多条网络优化配置
44815
+ *
44816
+ * @param request - ListNetworkOptimizationsRequest
44817
+ * @param runtime - runtime options for this request RuntimeOptions
44818
+ * @returns ListNetworkOptimizationsResponse
44819
+ */
44820
+ listNetworkOptimizationsWithOptions(request: ListNetworkOptimizationsRequest, runtime: $dara.RuntimeOptions): Promise<ListNetworkOptimizationsResponse>;
44821
+ /**
44822
+ * 查询多条网络优化配置
44823
+ *
44824
+ * @param request - ListNetworkOptimizationsRequest
44825
+ * @returns ListNetworkOptimizationsResponse
44826
+ */
44827
+ listNetworkOptimizations(request: ListNetworkOptimizationsRequest): Promise<ListNetworkOptimizationsResponse>;
43430
44828
  /**
43431
44829
  * 查询源地址池列表
43432
44830
  *
@@ -44295,6 +45693,21 @@ export default class Client extends OpenApi {
44295
45693
  * @returns UpdateIPv6Response
44296
45694
  */
44297
45695
  updateIPv6(request: UpdateIPv6Request): Promise<UpdateIPv6Response>;
45696
+ /**
45697
+ * 修改站点图片转换配置
45698
+ *
45699
+ * @param request - UpdateImageTransformRequest
45700
+ * @param runtime - runtime options for this request RuntimeOptions
45701
+ * @returns UpdateImageTransformResponse
45702
+ */
45703
+ updateImageTransformWithOptions(request: UpdateImageTransformRequest, runtime: $dara.RuntimeOptions): Promise<UpdateImageTransformResponse>;
45704
+ /**
45705
+ * 修改站点图片转换配置
45706
+ *
45707
+ * @param request - UpdateImageTransformRequest
45708
+ * @returns UpdateImageTransformResponse
45709
+ */
45710
+ updateImageTransform(request: UpdateImageTransformRequest): Promise<UpdateImageTransformResponse>;
44298
45711
  /**
44299
45712
  * Updates the name of a namespace in Edge KV.
44300
45713
  *
@@ -44355,6 +45768,21 @@ export default class Client extends OpenApi {
44355
45768
  * @returns UpdateManagedTransformResponse
44356
45769
  */
44357
45770
  updateManagedTransform(request: UpdateManagedTransformRequest): Promise<UpdateManagedTransformResponse>;
45771
+ /**
45772
+ * 修改网络优化配置
45773
+ *
45774
+ * @param request - UpdateNetworkOptimizationRequest
45775
+ * @param runtime - runtime options for this request RuntimeOptions
45776
+ * @returns UpdateNetworkOptimizationResponse
45777
+ */
45778
+ updateNetworkOptimizationWithOptions(request: UpdateNetworkOptimizationRequest, runtime: $dara.RuntimeOptions): Promise<UpdateNetworkOptimizationResponse>;
45779
+ /**
45780
+ * 修改网络优化配置
45781
+ *
45782
+ * @param request - UpdateNetworkOptimizationRequest
45783
+ * @returns UpdateNetworkOptimizationResponse
45784
+ */
45785
+ updateNetworkOptimization(request: UpdateNetworkOptimizationRequest): Promise<UpdateNetworkOptimizationResponse>;
44358
45786
  /**
44359
45787
  * 修改监视器
44360
45788
  *
@@ -44623,6 +46051,21 @@ export default class Client extends OpenApi {
44623
46051
  * @returns UpdateSiteNameExclusiveResponse
44624
46052
  */
44625
46053
  updateSiteNameExclusive(request: UpdateSiteNameExclusiveRequest): Promise<UpdateSiteNameExclusiveResponse>;
46054
+ /**
46055
+ * 修改站点暂停配置
46056
+ *
46057
+ * @param request - UpdateSitePauseRequest
46058
+ * @param runtime - runtime options for this request RuntimeOptions
46059
+ * @returns UpdateSitePauseResponse
46060
+ */
46061
+ updateSitePauseWithOptions(request: UpdateSitePauseRequest, runtime: $dara.RuntimeOptions): Promise<UpdateSitePauseResponse>;
46062
+ /**
46063
+ * 修改站点暂停配置
46064
+ *
46065
+ * @param request - UpdateSitePauseRequest
46066
+ * @returns UpdateSitePauseResponse
46067
+ */
46068
+ updateSitePause(request: UpdateSitePauseRequest): Promise<UpdateSitePauseResponse>;
44626
46069
  /**
44627
46070
  * Updates the custom nameserver names for a single website.
44628
46071
  *