@alicloud/esa20240910 2.22.0 → 2.23.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 +769 -2
- package/dist/client.js +924 -21
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1429 -2
package/src/client.ts
CHANGED
|
@@ -17283,6 +17283,110 @@ export class ListRoutineOptionalSpecsResponseBodySpecs extends $dara.Model {
|
|
|
17283
17283
|
}
|
|
17284
17284
|
}
|
|
17285
17285
|
|
|
17286
|
+
export class ListRoutineRoutesResponseBodyConfigs extends $dara.Model {
|
|
17287
|
+
/**
|
|
17288
|
+
* @example
|
|
17289
|
+
* on
|
|
17290
|
+
*/
|
|
17291
|
+
bypass?: string;
|
|
17292
|
+
/**
|
|
17293
|
+
* @example
|
|
17294
|
+
* 35281609698****
|
|
17295
|
+
*/
|
|
17296
|
+
configId?: number;
|
|
17297
|
+
/**
|
|
17298
|
+
* @example
|
|
17299
|
+
* global
|
|
17300
|
+
*/
|
|
17301
|
+
configType?: string;
|
|
17302
|
+
/**
|
|
17303
|
+
* @example
|
|
17304
|
+
* simple
|
|
17305
|
+
*/
|
|
17306
|
+
mode?: string;
|
|
17307
|
+
/**
|
|
17308
|
+
* @example
|
|
17309
|
+
* on
|
|
17310
|
+
*/
|
|
17311
|
+
routeEnable?: string;
|
|
17312
|
+
/**
|
|
17313
|
+
* @example
|
|
17314
|
+
* test_route
|
|
17315
|
+
*/
|
|
17316
|
+
routeName?: string;
|
|
17317
|
+
/**
|
|
17318
|
+
* @example
|
|
17319
|
+
* test-routine1
|
|
17320
|
+
*/
|
|
17321
|
+
routineName?: string;
|
|
17322
|
+
/**
|
|
17323
|
+
* @example
|
|
17324
|
+
* (http.host eq \\"video.example.com\\")
|
|
17325
|
+
*/
|
|
17326
|
+
rule?: string;
|
|
17327
|
+
/**
|
|
17328
|
+
* @example
|
|
17329
|
+
* 1
|
|
17330
|
+
*/
|
|
17331
|
+
sequence?: number;
|
|
17332
|
+
/**
|
|
17333
|
+
* @example
|
|
17334
|
+
* 554889455535696
|
|
17335
|
+
*/
|
|
17336
|
+
siteId?: string;
|
|
17337
|
+
/**
|
|
17338
|
+
* @example
|
|
17339
|
+
* test.com
|
|
17340
|
+
*/
|
|
17341
|
+
siteName?: string;
|
|
17342
|
+
/**
|
|
17343
|
+
* @example
|
|
17344
|
+
* 1
|
|
17345
|
+
*/
|
|
17346
|
+
siteVersion?: number;
|
|
17347
|
+
static names(): { [key: string]: string } {
|
|
17348
|
+
return {
|
|
17349
|
+
bypass: 'Bypass',
|
|
17350
|
+
configId: 'ConfigId',
|
|
17351
|
+
configType: 'ConfigType',
|
|
17352
|
+
mode: 'Mode',
|
|
17353
|
+
routeEnable: 'RouteEnable',
|
|
17354
|
+
routeName: 'RouteName',
|
|
17355
|
+
routineName: 'RoutineName',
|
|
17356
|
+
rule: 'Rule',
|
|
17357
|
+
sequence: 'Sequence',
|
|
17358
|
+
siteId: 'SiteId',
|
|
17359
|
+
siteName: 'SiteName',
|
|
17360
|
+
siteVersion: 'SiteVersion',
|
|
17361
|
+
};
|
|
17362
|
+
}
|
|
17363
|
+
|
|
17364
|
+
static types(): { [key: string]: any } {
|
|
17365
|
+
return {
|
|
17366
|
+
bypass: 'string',
|
|
17367
|
+
configId: 'number',
|
|
17368
|
+
configType: 'string',
|
|
17369
|
+
mode: 'string',
|
|
17370
|
+
routeEnable: 'string',
|
|
17371
|
+
routeName: 'string',
|
|
17372
|
+
routineName: 'string',
|
|
17373
|
+
rule: 'string',
|
|
17374
|
+
sequence: 'number',
|
|
17375
|
+
siteId: 'string',
|
|
17376
|
+
siteName: 'string',
|
|
17377
|
+
siteVersion: 'number',
|
|
17378
|
+
};
|
|
17379
|
+
}
|
|
17380
|
+
|
|
17381
|
+
validate() {
|
|
17382
|
+
super.validate();
|
|
17383
|
+
}
|
|
17384
|
+
|
|
17385
|
+
constructor(map?: { [key: string]: any }) {
|
|
17386
|
+
super(map);
|
|
17387
|
+
}
|
|
17388
|
+
}
|
|
17389
|
+
|
|
17286
17390
|
export class ListScheduledPreloadExecutionsResponseBodyExecutions extends $dara.Model {
|
|
17287
17391
|
/**
|
|
17288
17392
|
* @remarks
|
|
@@ -17640,6 +17744,96 @@ export class ListSiteDeliveryTasksResponseBodyTasks extends $dara.Model {
|
|
|
17640
17744
|
}
|
|
17641
17745
|
}
|
|
17642
17746
|
|
|
17747
|
+
export class ListSiteRoutesResponseBodyConfigs extends $dara.Model {
|
|
17748
|
+
/**
|
|
17749
|
+
* @example
|
|
17750
|
+
* on
|
|
17751
|
+
*/
|
|
17752
|
+
bypass?: string;
|
|
17753
|
+
/**
|
|
17754
|
+
* @example
|
|
17755
|
+
* 35281609698****
|
|
17756
|
+
*/
|
|
17757
|
+
configId?: number;
|
|
17758
|
+
/**
|
|
17759
|
+
* @example
|
|
17760
|
+
* global
|
|
17761
|
+
*/
|
|
17762
|
+
configType?: string;
|
|
17763
|
+
/**
|
|
17764
|
+
* @example
|
|
17765
|
+
* simple
|
|
17766
|
+
*/
|
|
17767
|
+
mode?: string;
|
|
17768
|
+
/**
|
|
17769
|
+
* @example
|
|
17770
|
+
* on
|
|
17771
|
+
*/
|
|
17772
|
+
routeEnable?: string;
|
|
17773
|
+
/**
|
|
17774
|
+
* @example
|
|
17775
|
+
* test_route
|
|
17776
|
+
*/
|
|
17777
|
+
routeName?: string;
|
|
17778
|
+
/**
|
|
17779
|
+
* @example
|
|
17780
|
+
* test-routine1
|
|
17781
|
+
*/
|
|
17782
|
+
routineName?: string;
|
|
17783
|
+
/**
|
|
17784
|
+
* @example
|
|
17785
|
+
* (http.host eq \\"video.example.com\\")
|
|
17786
|
+
*/
|
|
17787
|
+
rule?: string;
|
|
17788
|
+
/**
|
|
17789
|
+
* @example
|
|
17790
|
+
* 1
|
|
17791
|
+
*/
|
|
17792
|
+
sequence?: number;
|
|
17793
|
+
/**
|
|
17794
|
+
* @example
|
|
17795
|
+
* 1
|
|
17796
|
+
*/
|
|
17797
|
+
siteVersion?: number;
|
|
17798
|
+
static names(): { [key: string]: string } {
|
|
17799
|
+
return {
|
|
17800
|
+
bypass: 'Bypass',
|
|
17801
|
+
configId: 'ConfigId',
|
|
17802
|
+
configType: 'ConfigType',
|
|
17803
|
+
mode: 'Mode',
|
|
17804
|
+
routeEnable: 'RouteEnable',
|
|
17805
|
+
routeName: 'RouteName',
|
|
17806
|
+
routineName: 'RoutineName',
|
|
17807
|
+
rule: 'Rule',
|
|
17808
|
+
sequence: 'Sequence',
|
|
17809
|
+
siteVersion: 'SiteVersion',
|
|
17810
|
+
};
|
|
17811
|
+
}
|
|
17812
|
+
|
|
17813
|
+
static types(): { [key: string]: any } {
|
|
17814
|
+
return {
|
|
17815
|
+
bypass: 'string',
|
|
17816
|
+
configId: 'number',
|
|
17817
|
+
configType: 'string',
|
|
17818
|
+
mode: 'string',
|
|
17819
|
+
routeEnable: 'string',
|
|
17820
|
+
routeName: 'string',
|
|
17821
|
+
routineName: 'string',
|
|
17822
|
+
rule: 'string',
|
|
17823
|
+
sequence: 'number',
|
|
17824
|
+
siteVersion: 'number',
|
|
17825
|
+
};
|
|
17826
|
+
}
|
|
17827
|
+
|
|
17828
|
+
validate() {
|
|
17829
|
+
super.validate();
|
|
17830
|
+
}
|
|
17831
|
+
|
|
17832
|
+
constructor(map?: { [key: string]: any }) {
|
|
17833
|
+
super(map);
|
|
17834
|
+
}
|
|
17835
|
+
}
|
|
17836
|
+
|
|
17643
17837
|
export class ListSitesRequestTagFilter extends $dara.Model {
|
|
17644
17838
|
/**
|
|
17645
17839
|
* @remarks
|
|
@@ -30115,6 +30309,150 @@ export class CreateRoutineRelatedRouteResponse extends $dara.Model {
|
|
|
30115
30309
|
}
|
|
30116
30310
|
}
|
|
30117
30311
|
|
|
30312
|
+
export class CreateRoutineRouteRequest extends $dara.Model {
|
|
30313
|
+
/**
|
|
30314
|
+
* @example
|
|
30315
|
+
* on
|
|
30316
|
+
*/
|
|
30317
|
+
bypass?: string;
|
|
30318
|
+
/**
|
|
30319
|
+
* @example
|
|
30320
|
+
* on
|
|
30321
|
+
*/
|
|
30322
|
+
routeEnable?: string;
|
|
30323
|
+
/**
|
|
30324
|
+
* @example
|
|
30325
|
+
* test_route
|
|
30326
|
+
*/
|
|
30327
|
+
routeName?: string;
|
|
30328
|
+
/**
|
|
30329
|
+
* @remarks
|
|
30330
|
+
* This parameter is required.
|
|
30331
|
+
*
|
|
30332
|
+
* @example
|
|
30333
|
+
* test-routine1
|
|
30334
|
+
*/
|
|
30335
|
+
routineName?: string;
|
|
30336
|
+
/**
|
|
30337
|
+
* @example
|
|
30338
|
+
* (http.host eq \\"video.example.com\\")
|
|
30339
|
+
*/
|
|
30340
|
+
rule?: string;
|
|
30341
|
+
/**
|
|
30342
|
+
* @example
|
|
30343
|
+
* 1
|
|
30344
|
+
*/
|
|
30345
|
+
sequence?: number;
|
|
30346
|
+
/**
|
|
30347
|
+
* @remarks
|
|
30348
|
+
* This parameter is required.
|
|
30349
|
+
*
|
|
30350
|
+
* @example
|
|
30351
|
+
* 123456****
|
|
30352
|
+
*/
|
|
30353
|
+
siteId?: number;
|
|
30354
|
+
static names(): { [key: string]: string } {
|
|
30355
|
+
return {
|
|
30356
|
+
bypass: 'Bypass',
|
|
30357
|
+
routeEnable: 'RouteEnable',
|
|
30358
|
+
routeName: 'RouteName',
|
|
30359
|
+
routineName: 'RoutineName',
|
|
30360
|
+
rule: 'Rule',
|
|
30361
|
+
sequence: 'Sequence',
|
|
30362
|
+
siteId: 'SiteId',
|
|
30363
|
+
};
|
|
30364
|
+
}
|
|
30365
|
+
|
|
30366
|
+
static types(): { [key: string]: any } {
|
|
30367
|
+
return {
|
|
30368
|
+
bypass: 'string',
|
|
30369
|
+
routeEnable: 'string',
|
|
30370
|
+
routeName: 'string',
|
|
30371
|
+
routineName: 'string',
|
|
30372
|
+
rule: 'string',
|
|
30373
|
+
sequence: 'number',
|
|
30374
|
+
siteId: 'number',
|
|
30375
|
+
};
|
|
30376
|
+
}
|
|
30377
|
+
|
|
30378
|
+
validate() {
|
|
30379
|
+
super.validate();
|
|
30380
|
+
}
|
|
30381
|
+
|
|
30382
|
+
constructor(map?: { [key: string]: any }) {
|
|
30383
|
+
super(map);
|
|
30384
|
+
}
|
|
30385
|
+
}
|
|
30386
|
+
|
|
30387
|
+
export class CreateRoutineRouteResponseBody extends $dara.Model {
|
|
30388
|
+
/**
|
|
30389
|
+
* @example
|
|
30390
|
+
* 35281609698****
|
|
30391
|
+
*/
|
|
30392
|
+
configId?: number;
|
|
30393
|
+
/**
|
|
30394
|
+
* @example
|
|
30395
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
30396
|
+
*/
|
|
30397
|
+
requestId?: string;
|
|
30398
|
+
static names(): { [key: string]: string } {
|
|
30399
|
+
return {
|
|
30400
|
+
configId: 'ConfigId',
|
|
30401
|
+
requestId: 'RequestId',
|
|
30402
|
+
};
|
|
30403
|
+
}
|
|
30404
|
+
|
|
30405
|
+
static types(): { [key: string]: any } {
|
|
30406
|
+
return {
|
|
30407
|
+
configId: 'number',
|
|
30408
|
+
requestId: 'string',
|
|
30409
|
+
};
|
|
30410
|
+
}
|
|
30411
|
+
|
|
30412
|
+
validate() {
|
|
30413
|
+
super.validate();
|
|
30414
|
+
}
|
|
30415
|
+
|
|
30416
|
+
constructor(map?: { [key: string]: any }) {
|
|
30417
|
+
super(map);
|
|
30418
|
+
}
|
|
30419
|
+
}
|
|
30420
|
+
|
|
30421
|
+
export class CreateRoutineRouteResponse extends $dara.Model {
|
|
30422
|
+
headers?: { [key: string]: string };
|
|
30423
|
+
statusCode?: number;
|
|
30424
|
+
body?: CreateRoutineRouteResponseBody;
|
|
30425
|
+
static names(): { [key: string]: string } {
|
|
30426
|
+
return {
|
|
30427
|
+
headers: 'headers',
|
|
30428
|
+
statusCode: 'statusCode',
|
|
30429
|
+
body: 'body',
|
|
30430
|
+
};
|
|
30431
|
+
}
|
|
30432
|
+
|
|
30433
|
+
static types(): { [key: string]: any } {
|
|
30434
|
+
return {
|
|
30435
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
30436
|
+
statusCode: 'number',
|
|
30437
|
+
body: CreateRoutineRouteResponseBody,
|
|
30438
|
+
};
|
|
30439
|
+
}
|
|
30440
|
+
|
|
30441
|
+
validate() {
|
|
30442
|
+
if(this.headers) {
|
|
30443
|
+
$dara.Model.validateMap(this.headers);
|
|
30444
|
+
}
|
|
30445
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
30446
|
+
(this.body as any).validate();
|
|
30447
|
+
}
|
|
30448
|
+
super.validate();
|
|
30449
|
+
}
|
|
30450
|
+
|
|
30451
|
+
constructor(map?: { [key: string]: any }) {
|
|
30452
|
+
super(map);
|
|
30453
|
+
}
|
|
30454
|
+
}
|
|
30455
|
+
|
|
30118
30456
|
export class CreateScheduledPreloadExecutionsRequest extends $dara.Model {
|
|
30119
30457
|
/**
|
|
30120
30458
|
* @remarks
|
|
@@ -37013,6 +37351,108 @@ export class DeleteRoutineRelatedRouteResponse extends $dara.Model {
|
|
|
37013
37351
|
}
|
|
37014
37352
|
}
|
|
37015
37353
|
|
|
37354
|
+
export class DeleteRoutineRouteRequest extends $dara.Model {
|
|
37355
|
+
/**
|
|
37356
|
+
* @remarks
|
|
37357
|
+
* This parameter is required.
|
|
37358
|
+
*
|
|
37359
|
+
* @example
|
|
37360
|
+
* 3528160969****
|
|
37361
|
+
*/
|
|
37362
|
+
configId?: number;
|
|
37363
|
+
/**
|
|
37364
|
+
* @remarks
|
|
37365
|
+
* This parameter is required.
|
|
37366
|
+
*
|
|
37367
|
+
* @example
|
|
37368
|
+
* 11223***
|
|
37369
|
+
*/
|
|
37370
|
+
siteId?: number;
|
|
37371
|
+
static names(): { [key: string]: string } {
|
|
37372
|
+
return {
|
|
37373
|
+
configId: 'ConfigId',
|
|
37374
|
+
siteId: 'SiteId',
|
|
37375
|
+
};
|
|
37376
|
+
}
|
|
37377
|
+
|
|
37378
|
+
static types(): { [key: string]: any } {
|
|
37379
|
+
return {
|
|
37380
|
+
configId: 'number',
|
|
37381
|
+
siteId: 'number',
|
|
37382
|
+
};
|
|
37383
|
+
}
|
|
37384
|
+
|
|
37385
|
+
validate() {
|
|
37386
|
+
super.validate();
|
|
37387
|
+
}
|
|
37388
|
+
|
|
37389
|
+
constructor(map?: { [key: string]: any }) {
|
|
37390
|
+
super(map);
|
|
37391
|
+
}
|
|
37392
|
+
}
|
|
37393
|
+
|
|
37394
|
+
export class DeleteRoutineRouteResponseBody extends $dara.Model {
|
|
37395
|
+
/**
|
|
37396
|
+
* @example
|
|
37397
|
+
* 0AEDAF20-4DDF-4165-8750-47FF9C1929C9
|
|
37398
|
+
*/
|
|
37399
|
+
requestId?: string;
|
|
37400
|
+
static names(): { [key: string]: string } {
|
|
37401
|
+
return {
|
|
37402
|
+
requestId: 'RequestId',
|
|
37403
|
+
};
|
|
37404
|
+
}
|
|
37405
|
+
|
|
37406
|
+
static types(): { [key: string]: any } {
|
|
37407
|
+
return {
|
|
37408
|
+
requestId: 'string',
|
|
37409
|
+
};
|
|
37410
|
+
}
|
|
37411
|
+
|
|
37412
|
+
validate() {
|
|
37413
|
+
super.validate();
|
|
37414
|
+
}
|
|
37415
|
+
|
|
37416
|
+
constructor(map?: { [key: string]: any }) {
|
|
37417
|
+
super(map);
|
|
37418
|
+
}
|
|
37419
|
+
}
|
|
37420
|
+
|
|
37421
|
+
export class DeleteRoutineRouteResponse extends $dara.Model {
|
|
37422
|
+
headers?: { [key: string]: string };
|
|
37423
|
+
statusCode?: number;
|
|
37424
|
+
body?: DeleteRoutineRouteResponseBody;
|
|
37425
|
+
static names(): { [key: string]: string } {
|
|
37426
|
+
return {
|
|
37427
|
+
headers: 'headers',
|
|
37428
|
+
statusCode: 'statusCode',
|
|
37429
|
+
body: 'body',
|
|
37430
|
+
};
|
|
37431
|
+
}
|
|
37432
|
+
|
|
37433
|
+
static types(): { [key: string]: any } {
|
|
37434
|
+
return {
|
|
37435
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
37436
|
+
statusCode: 'number',
|
|
37437
|
+
body: DeleteRoutineRouteResponseBody,
|
|
37438
|
+
};
|
|
37439
|
+
}
|
|
37440
|
+
|
|
37441
|
+
validate() {
|
|
37442
|
+
if(this.headers) {
|
|
37443
|
+
$dara.Model.validateMap(this.headers);
|
|
37444
|
+
}
|
|
37445
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
37446
|
+
(this.body as any).validate();
|
|
37447
|
+
}
|
|
37448
|
+
super.validate();
|
|
37449
|
+
}
|
|
37450
|
+
|
|
37451
|
+
constructor(map?: { [key: string]: any }) {
|
|
37452
|
+
super(map);
|
|
37453
|
+
}
|
|
37454
|
+
}
|
|
37455
|
+
|
|
37016
37456
|
export class DeleteScheduledPreloadExecutionRequest extends $dara.Model {
|
|
37017
37457
|
/**
|
|
37018
37458
|
* @remarks
|
|
@@ -48998,6 +49438,178 @@ export class GetRoutineResponse extends $dara.Model {
|
|
|
48998
49438
|
}
|
|
48999
49439
|
}
|
|
49000
49440
|
|
|
49441
|
+
export class GetRoutineRouteRequest extends $dara.Model {
|
|
49442
|
+
/**
|
|
49443
|
+
* @remarks
|
|
49444
|
+
* This parameter is required.
|
|
49445
|
+
*
|
|
49446
|
+
* @example
|
|
49447
|
+
* 35281609698****
|
|
49448
|
+
*/
|
|
49449
|
+
configId?: number;
|
|
49450
|
+
/**
|
|
49451
|
+
* @remarks
|
|
49452
|
+
* This parameter is required.
|
|
49453
|
+
*
|
|
49454
|
+
* @example
|
|
49455
|
+
* 123456****
|
|
49456
|
+
*/
|
|
49457
|
+
siteId?: number;
|
|
49458
|
+
static names(): { [key: string]: string } {
|
|
49459
|
+
return {
|
|
49460
|
+
configId: 'ConfigId',
|
|
49461
|
+
siteId: 'SiteId',
|
|
49462
|
+
};
|
|
49463
|
+
}
|
|
49464
|
+
|
|
49465
|
+
static types(): { [key: string]: any } {
|
|
49466
|
+
return {
|
|
49467
|
+
configId: 'number',
|
|
49468
|
+
siteId: 'number',
|
|
49469
|
+
};
|
|
49470
|
+
}
|
|
49471
|
+
|
|
49472
|
+
validate() {
|
|
49473
|
+
super.validate();
|
|
49474
|
+
}
|
|
49475
|
+
|
|
49476
|
+
constructor(map?: { [key: string]: any }) {
|
|
49477
|
+
super(map);
|
|
49478
|
+
}
|
|
49479
|
+
}
|
|
49480
|
+
|
|
49481
|
+
export class GetRoutineRouteResponseBody extends $dara.Model {
|
|
49482
|
+
/**
|
|
49483
|
+
* @example
|
|
49484
|
+
* on
|
|
49485
|
+
*/
|
|
49486
|
+
bypass?: string;
|
|
49487
|
+
/**
|
|
49488
|
+
* @example
|
|
49489
|
+
* 352816******
|
|
49490
|
+
*/
|
|
49491
|
+
configId?: number;
|
|
49492
|
+
/**
|
|
49493
|
+
* @example
|
|
49494
|
+
* global
|
|
49495
|
+
*/
|
|
49496
|
+
configType?: string;
|
|
49497
|
+
/**
|
|
49498
|
+
* @example
|
|
49499
|
+
* simple
|
|
49500
|
+
*/
|
|
49501
|
+
mode?: string;
|
|
49502
|
+
/**
|
|
49503
|
+
* @example
|
|
49504
|
+
* 36af3fcc-43d0-441c-86b1-428951dc8225
|
|
49505
|
+
*/
|
|
49506
|
+
requestId?: string;
|
|
49507
|
+
/**
|
|
49508
|
+
* @example
|
|
49509
|
+
* on
|
|
49510
|
+
*/
|
|
49511
|
+
routeEnable?: string;
|
|
49512
|
+
/**
|
|
49513
|
+
* @example
|
|
49514
|
+
* test_route
|
|
49515
|
+
*/
|
|
49516
|
+
routeName?: string;
|
|
49517
|
+
/**
|
|
49518
|
+
* @example
|
|
49519
|
+
* test-routine1
|
|
49520
|
+
*/
|
|
49521
|
+
routineName?: string;
|
|
49522
|
+
/**
|
|
49523
|
+
* @example
|
|
49524
|
+
* (http.host eq \\"video.example.com\\")
|
|
49525
|
+
*/
|
|
49526
|
+
rule?: string;
|
|
49527
|
+
/**
|
|
49528
|
+
* @example
|
|
49529
|
+
* 1
|
|
49530
|
+
*/
|
|
49531
|
+
sequence?: number;
|
|
49532
|
+
/**
|
|
49533
|
+
* @example
|
|
49534
|
+
* 0
|
|
49535
|
+
*/
|
|
49536
|
+
siteVersion?: number;
|
|
49537
|
+
static names(): { [key: string]: string } {
|
|
49538
|
+
return {
|
|
49539
|
+
bypass: 'Bypass',
|
|
49540
|
+
configId: 'ConfigId',
|
|
49541
|
+
configType: 'ConfigType',
|
|
49542
|
+
mode: 'Mode',
|
|
49543
|
+
requestId: 'RequestId',
|
|
49544
|
+
routeEnable: 'RouteEnable',
|
|
49545
|
+
routeName: 'RouteName',
|
|
49546
|
+
routineName: 'RoutineName',
|
|
49547
|
+
rule: 'Rule',
|
|
49548
|
+
sequence: 'Sequence',
|
|
49549
|
+
siteVersion: 'SiteVersion',
|
|
49550
|
+
};
|
|
49551
|
+
}
|
|
49552
|
+
|
|
49553
|
+
static types(): { [key: string]: any } {
|
|
49554
|
+
return {
|
|
49555
|
+
bypass: 'string',
|
|
49556
|
+
configId: 'number',
|
|
49557
|
+
configType: 'string',
|
|
49558
|
+
mode: 'string',
|
|
49559
|
+
requestId: 'string',
|
|
49560
|
+
routeEnable: 'string',
|
|
49561
|
+
routeName: 'string',
|
|
49562
|
+
routineName: 'string',
|
|
49563
|
+
rule: 'string',
|
|
49564
|
+
sequence: 'number',
|
|
49565
|
+
siteVersion: 'number',
|
|
49566
|
+
};
|
|
49567
|
+
}
|
|
49568
|
+
|
|
49569
|
+
validate() {
|
|
49570
|
+
super.validate();
|
|
49571
|
+
}
|
|
49572
|
+
|
|
49573
|
+
constructor(map?: { [key: string]: any }) {
|
|
49574
|
+
super(map);
|
|
49575
|
+
}
|
|
49576
|
+
}
|
|
49577
|
+
|
|
49578
|
+
export class GetRoutineRouteResponse extends $dara.Model {
|
|
49579
|
+
headers?: { [key: string]: string };
|
|
49580
|
+
statusCode?: number;
|
|
49581
|
+
body?: GetRoutineRouteResponseBody;
|
|
49582
|
+
static names(): { [key: string]: string } {
|
|
49583
|
+
return {
|
|
49584
|
+
headers: 'headers',
|
|
49585
|
+
statusCode: 'statusCode',
|
|
49586
|
+
body: 'body',
|
|
49587
|
+
};
|
|
49588
|
+
}
|
|
49589
|
+
|
|
49590
|
+
static types(): { [key: string]: any } {
|
|
49591
|
+
return {
|
|
49592
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
49593
|
+
statusCode: 'number',
|
|
49594
|
+
body: GetRoutineRouteResponseBody,
|
|
49595
|
+
};
|
|
49596
|
+
}
|
|
49597
|
+
|
|
49598
|
+
validate() {
|
|
49599
|
+
if(this.headers) {
|
|
49600
|
+
$dara.Model.validateMap(this.headers);
|
|
49601
|
+
}
|
|
49602
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
49603
|
+
(this.body as any).validate();
|
|
49604
|
+
}
|
|
49605
|
+
super.validate();
|
|
49606
|
+
}
|
|
49607
|
+
|
|
49608
|
+
constructor(map?: { [key: string]: any }) {
|
|
49609
|
+
super(map);
|
|
49610
|
+
}
|
|
49611
|
+
}
|
|
49612
|
+
|
|
49001
49613
|
export class GetRoutineStagingCodeUploadInfoRequest extends $dara.Model {
|
|
49002
49614
|
/**
|
|
49003
49615
|
* @remarks
|
|
@@ -51962,7 +52574,7 @@ export class GetWafRuleResponse extends $dara.Model {
|
|
|
51962
52574
|
export class GetWafRulesetRequest extends $dara.Model {
|
|
51963
52575
|
/**
|
|
51964
52576
|
* @remarks
|
|
51965
|
-
* The ID of the WAF ruleset, which can be obtained by calling the
|
|
52577
|
+
* The ID of the WAF ruleset, which can be obtained by calling the ListWafRulesets interface.
|
|
51966
52578
|
*
|
|
51967
52579
|
* @example
|
|
51968
52580
|
* 10000001
|
|
@@ -58979,6 +59591,146 @@ export class ListRoutineOptionalSpecsResponse extends $dara.Model {
|
|
|
58979
59591
|
}
|
|
58980
59592
|
}
|
|
58981
59593
|
|
|
59594
|
+
export class ListRoutineRoutesRequest extends $dara.Model {
|
|
59595
|
+
/**
|
|
59596
|
+
* @example
|
|
59597
|
+
* 1
|
|
59598
|
+
*/
|
|
59599
|
+
pageNumber?: number;
|
|
59600
|
+
/**
|
|
59601
|
+
* @example
|
|
59602
|
+
* 10
|
|
59603
|
+
*/
|
|
59604
|
+
pageSize?: number;
|
|
59605
|
+
/**
|
|
59606
|
+
* @remarks
|
|
59607
|
+
* This parameter is required.
|
|
59608
|
+
*
|
|
59609
|
+
* @example
|
|
59610
|
+
* test-routine1
|
|
59611
|
+
*/
|
|
59612
|
+
routineName?: string;
|
|
59613
|
+
static names(): { [key: string]: string } {
|
|
59614
|
+
return {
|
|
59615
|
+
pageNumber: 'PageNumber',
|
|
59616
|
+
pageSize: 'PageSize',
|
|
59617
|
+
routineName: 'RoutineName',
|
|
59618
|
+
};
|
|
59619
|
+
}
|
|
59620
|
+
|
|
59621
|
+
static types(): { [key: string]: any } {
|
|
59622
|
+
return {
|
|
59623
|
+
pageNumber: 'number',
|
|
59624
|
+
pageSize: 'number',
|
|
59625
|
+
routineName: 'string',
|
|
59626
|
+
};
|
|
59627
|
+
}
|
|
59628
|
+
|
|
59629
|
+
validate() {
|
|
59630
|
+
super.validate();
|
|
59631
|
+
}
|
|
59632
|
+
|
|
59633
|
+
constructor(map?: { [key: string]: any }) {
|
|
59634
|
+
super(map);
|
|
59635
|
+
}
|
|
59636
|
+
}
|
|
59637
|
+
|
|
59638
|
+
export class ListRoutineRoutesResponseBody extends $dara.Model {
|
|
59639
|
+
configs?: ListRoutineRoutesResponseBodyConfigs[];
|
|
59640
|
+
/**
|
|
59641
|
+
* @example
|
|
59642
|
+
* 1
|
|
59643
|
+
*/
|
|
59644
|
+
pageNumber?: number;
|
|
59645
|
+
/**
|
|
59646
|
+
* @example
|
|
59647
|
+
* 20
|
|
59648
|
+
*/
|
|
59649
|
+
pageSize?: number;
|
|
59650
|
+
/**
|
|
59651
|
+
* @example
|
|
59652
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
59653
|
+
*/
|
|
59654
|
+
requestId?: string;
|
|
59655
|
+
/**
|
|
59656
|
+
* @example
|
|
59657
|
+
* 83
|
|
59658
|
+
*/
|
|
59659
|
+
totalCount?: number;
|
|
59660
|
+
/**
|
|
59661
|
+
* @example
|
|
59662
|
+
* 2
|
|
59663
|
+
*/
|
|
59664
|
+
totalPage?: number;
|
|
59665
|
+
static names(): { [key: string]: string } {
|
|
59666
|
+
return {
|
|
59667
|
+
configs: 'Configs',
|
|
59668
|
+
pageNumber: 'PageNumber',
|
|
59669
|
+
pageSize: 'PageSize',
|
|
59670
|
+
requestId: 'RequestId',
|
|
59671
|
+
totalCount: 'TotalCount',
|
|
59672
|
+
totalPage: 'TotalPage',
|
|
59673
|
+
};
|
|
59674
|
+
}
|
|
59675
|
+
|
|
59676
|
+
static types(): { [key: string]: any } {
|
|
59677
|
+
return {
|
|
59678
|
+
configs: { 'type': 'array', 'itemType': ListRoutineRoutesResponseBodyConfigs },
|
|
59679
|
+
pageNumber: 'number',
|
|
59680
|
+
pageSize: 'number',
|
|
59681
|
+
requestId: 'string',
|
|
59682
|
+
totalCount: 'number',
|
|
59683
|
+
totalPage: 'number',
|
|
59684
|
+
};
|
|
59685
|
+
}
|
|
59686
|
+
|
|
59687
|
+
validate() {
|
|
59688
|
+
if(Array.isArray(this.configs)) {
|
|
59689
|
+
$dara.Model.validateArray(this.configs);
|
|
59690
|
+
}
|
|
59691
|
+
super.validate();
|
|
59692
|
+
}
|
|
59693
|
+
|
|
59694
|
+
constructor(map?: { [key: string]: any }) {
|
|
59695
|
+
super(map);
|
|
59696
|
+
}
|
|
59697
|
+
}
|
|
59698
|
+
|
|
59699
|
+
export class ListRoutineRoutesResponse extends $dara.Model {
|
|
59700
|
+
headers?: { [key: string]: string };
|
|
59701
|
+
statusCode?: number;
|
|
59702
|
+
body?: ListRoutineRoutesResponseBody;
|
|
59703
|
+
static names(): { [key: string]: string } {
|
|
59704
|
+
return {
|
|
59705
|
+
headers: 'headers',
|
|
59706
|
+
statusCode: 'statusCode',
|
|
59707
|
+
body: 'body',
|
|
59708
|
+
};
|
|
59709
|
+
}
|
|
59710
|
+
|
|
59711
|
+
static types(): { [key: string]: any } {
|
|
59712
|
+
return {
|
|
59713
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
59714
|
+
statusCode: 'number',
|
|
59715
|
+
body: ListRoutineRoutesResponseBody,
|
|
59716
|
+
};
|
|
59717
|
+
}
|
|
59718
|
+
|
|
59719
|
+
validate() {
|
|
59720
|
+
if(this.headers) {
|
|
59721
|
+
$dara.Model.validateMap(this.headers);
|
|
59722
|
+
}
|
|
59723
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
59724
|
+
(this.body as any).validate();
|
|
59725
|
+
}
|
|
59726
|
+
super.validate();
|
|
59727
|
+
}
|
|
59728
|
+
|
|
59729
|
+
constructor(map?: { [key: string]: any }) {
|
|
59730
|
+
super(map);
|
|
59731
|
+
}
|
|
59732
|
+
}
|
|
59733
|
+
|
|
58982
59734
|
export class ListScheduledPreloadExecutionsRequest extends $dara.Model {
|
|
58983
59735
|
/**
|
|
58984
59736
|
* @remarks
|
|
@@ -59425,6 +60177,167 @@ export class ListSiteDeliveryTasksResponse extends $dara.Model {
|
|
|
59425
60177
|
}
|
|
59426
60178
|
}
|
|
59427
60179
|
|
|
60180
|
+
export class ListSiteRoutesRequest extends $dara.Model {
|
|
60181
|
+
/**
|
|
60182
|
+
* @example
|
|
60183
|
+
* 35281609698****
|
|
60184
|
+
*/
|
|
60185
|
+
configId?: number;
|
|
60186
|
+
/**
|
|
60187
|
+
* @example
|
|
60188
|
+
* global
|
|
60189
|
+
*/
|
|
60190
|
+
configType?: string;
|
|
60191
|
+
/**
|
|
60192
|
+
* @example
|
|
60193
|
+
* 1
|
|
60194
|
+
*/
|
|
60195
|
+
pageNumber?: number;
|
|
60196
|
+
/**
|
|
60197
|
+
* @example
|
|
60198
|
+
* 20
|
|
60199
|
+
*/
|
|
60200
|
+
pageSize?: number;
|
|
60201
|
+
/**
|
|
60202
|
+
* @example
|
|
60203
|
+
* test_route
|
|
60204
|
+
*/
|
|
60205
|
+
routeName?: string;
|
|
60206
|
+
/**
|
|
60207
|
+
* @remarks
|
|
60208
|
+
* This parameter is required.
|
|
60209
|
+
*
|
|
60210
|
+
* @example
|
|
60211
|
+
* 123456****
|
|
60212
|
+
*/
|
|
60213
|
+
siteId?: number;
|
|
60214
|
+
static names(): { [key: string]: string } {
|
|
60215
|
+
return {
|
|
60216
|
+
configId: 'ConfigId',
|
|
60217
|
+
configType: 'ConfigType',
|
|
60218
|
+
pageNumber: 'PageNumber',
|
|
60219
|
+
pageSize: 'PageSize',
|
|
60220
|
+
routeName: 'RouteName',
|
|
60221
|
+
siteId: 'SiteId',
|
|
60222
|
+
};
|
|
60223
|
+
}
|
|
60224
|
+
|
|
60225
|
+
static types(): { [key: string]: any } {
|
|
60226
|
+
return {
|
|
60227
|
+
configId: 'number',
|
|
60228
|
+
configType: 'string',
|
|
60229
|
+
pageNumber: 'number',
|
|
60230
|
+
pageSize: 'number',
|
|
60231
|
+
routeName: 'string',
|
|
60232
|
+
siteId: 'number',
|
|
60233
|
+
};
|
|
60234
|
+
}
|
|
60235
|
+
|
|
60236
|
+
validate() {
|
|
60237
|
+
super.validate();
|
|
60238
|
+
}
|
|
60239
|
+
|
|
60240
|
+
constructor(map?: { [key: string]: any }) {
|
|
60241
|
+
super(map);
|
|
60242
|
+
}
|
|
60243
|
+
}
|
|
60244
|
+
|
|
60245
|
+
export class ListSiteRoutesResponseBody extends $dara.Model {
|
|
60246
|
+
configs?: ListSiteRoutesResponseBodyConfigs[];
|
|
60247
|
+
/**
|
|
60248
|
+
* @example
|
|
60249
|
+
* 1
|
|
60250
|
+
*/
|
|
60251
|
+
pageNumber?: number;
|
|
60252
|
+
/**
|
|
60253
|
+
* @example
|
|
60254
|
+
* 10
|
|
60255
|
+
*/
|
|
60256
|
+
pageSize?: number;
|
|
60257
|
+
/**
|
|
60258
|
+
* @example
|
|
60259
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
60260
|
+
*/
|
|
60261
|
+
requestId?: string;
|
|
60262
|
+
/**
|
|
60263
|
+
* @example
|
|
60264
|
+
* 16
|
|
60265
|
+
*/
|
|
60266
|
+
totalCount?: number;
|
|
60267
|
+
/**
|
|
60268
|
+
* @example
|
|
60269
|
+
* 10
|
|
60270
|
+
*/
|
|
60271
|
+
totalPage?: number;
|
|
60272
|
+
static names(): { [key: string]: string } {
|
|
60273
|
+
return {
|
|
60274
|
+
configs: 'Configs',
|
|
60275
|
+
pageNumber: 'PageNumber',
|
|
60276
|
+
pageSize: 'PageSize',
|
|
60277
|
+
requestId: 'RequestId',
|
|
60278
|
+
totalCount: 'TotalCount',
|
|
60279
|
+
totalPage: 'TotalPage',
|
|
60280
|
+
};
|
|
60281
|
+
}
|
|
60282
|
+
|
|
60283
|
+
static types(): { [key: string]: any } {
|
|
60284
|
+
return {
|
|
60285
|
+
configs: { 'type': 'array', 'itemType': ListSiteRoutesResponseBodyConfigs },
|
|
60286
|
+
pageNumber: 'number',
|
|
60287
|
+
pageSize: 'number',
|
|
60288
|
+
requestId: 'string',
|
|
60289
|
+
totalCount: 'number',
|
|
60290
|
+
totalPage: 'number',
|
|
60291
|
+
};
|
|
60292
|
+
}
|
|
60293
|
+
|
|
60294
|
+
validate() {
|
|
60295
|
+
if(Array.isArray(this.configs)) {
|
|
60296
|
+
$dara.Model.validateArray(this.configs);
|
|
60297
|
+
}
|
|
60298
|
+
super.validate();
|
|
60299
|
+
}
|
|
60300
|
+
|
|
60301
|
+
constructor(map?: { [key: string]: any }) {
|
|
60302
|
+
super(map);
|
|
60303
|
+
}
|
|
60304
|
+
}
|
|
60305
|
+
|
|
60306
|
+
export class ListSiteRoutesResponse extends $dara.Model {
|
|
60307
|
+
headers?: { [key: string]: string };
|
|
60308
|
+
statusCode?: number;
|
|
60309
|
+
body?: ListSiteRoutesResponseBody;
|
|
60310
|
+
static names(): { [key: string]: string } {
|
|
60311
|
+
return {
|
|
60312
|
+
headers: 'headers',
|
|
60313
|
+
statusCode: 'statusCode',
|
|
60314
|
+
body: 'body',
|
|
60315
|
+
};
|
|
60316
|
+
}
|
|
60317
|
+
|
|
60318
|
+
static types(): { [key: string]: any } {
|
|
60319
|
+
return {
|
|
60320
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
60321
|
+
statusCode: 'number',
|
|
60322
|
+
body: ListSiteRoutesResponseBody,
|
|
60323
|
+
};
|
|
60324
|
+
}
|
|
60325
|
+
|
|
60326
|
+
validate() {
|
|
60327
|
+
if(this.headers) {
|
|
60328
|
+
$dara.Model.validateMap(this.headers);
|
|
60329
|
+
}
|
|
60330
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
60331
|
+
(this.body as any).validate();
|
|
60332
|
+
}
|
|
60333
|
+
super.validate();
|
|
60334
|
+
}
|
|
60335
|
+
|
|
60336
|
+
constructor(map?: { [key: string]: any }) {
|
|
60337
|
+
super(map);
|
|
60338
|
+
}
|
|
60339
|
+
}
|
|
60340
|
+
|
|
59428
60341
|
export class ListSitesRequest extends $dara.Model {
|
|
59429
60342
|
/**
|
|
59430
60343
|
* @remarks
|
|
@@ -71633,6 +72546,150 @@ export class UpdateRewriteUrlRuleResponse extends $dara.Model {
|
|
|
71633
72546
|
}
|
|
71634
72547
|
}
|
|
71635
72548
|
|
|
72549
|
+
export class UpdateRoutineRouteRequest extends $dara.Model {
|
|
72550
|
+
/**
|
|
72551
|
+
* @example
|
|
72552
|
+
* on
|
|
72553
|
+
*/
|
|
72554
|
+
bypass?: string;
|
|
72555
|
+
/**
|
|
72556
|
+
* @remarks
|
|
72557
|
+
* This parameter is required.
|
|
72558
|
+
*
|
|
72559
|
+
* @example
|
|
72560
|
+
* 35281609698****
|
|
72561
|
+
*/
|
|
72562
|
+
configId?: number;
|
|
72563
|
+
/**
|
|
72564
|
+
* @example
|
|
72565
|
+
* on
|
|
72566
|
+
*/
|
|
72567
|
+
routeEnable?: string;
|
|
72568
|
+
/**
|
|
72569
|
+
* @example
|
|
72570
|
+
* test_route
|
|
72571
|
+
*/
|
|
72572
|
+
routeName?: string;
|
|
72573
|
+
/**
|
|
72574
|
+
* @example
|
|
72575
|
+
* test-routine1
|
|
72576
|
+
*/
|
|
72577
|
+
routineName?: string;
|
|
72578
|
+
/**
|
|
72579
|
+
* @example
|
|
72580
|
+
* (http.host eq \\"video.example.com\\")
|
|
72581
|
+
*/
|
|
72582
|
+
rule?: string;
|
|
72583
|
+
/**
|
|
72584
|
+
* @example
|
|
72585
|
+
* 1
|
|
72586
|
+
*/
|
|
72587
|
+
sequence?: number;
|
|
72588
|
+
/**
|
|
72589
|
+
* @remarks
|
|
72590
|
+
* This parameter is required.
|
|
72591
|
+
*
|
|
72592
|
+
* @example
|
|
72593
|
+
* 123456******
|
|
72594
|
+
*/
|
|
72595
|
+
siteId?: number;
|
|
72596
|
+
static names(): { [key: string]: string } {
|
|
72597
|
+
return {
|
|
72598
|
+
bypass: 'Bypass',
|
|
72599
|
+
configId: 'ConfigId',
|
|
72600
|
+
routeEnable: 'RouteEnable',
|
|
72601
|
+
routeName: 'RouteName',
|
|
72602
|
+
routineName: 'RoutineName',
|
|
72603
|
+
rule: 'Rule',
|
|
72604
|
+
sequence: 'Sequence',
|
|
72605
|
+
siteId: 'SiteId',
|
|
72606
|
+
};
|
|
72607
|
+
}
|
|
72608
|
+
|
|
72609
|
+
static types(): { [key: string]: any } {
|
|
72610
|
+
return {
|
|
72611
|
+
bypass: 'string',
|
|
72612
|
+
configId: 'number',
|
|
72613
|
+
routeEnable: 'string',
|
|
72614
|
+
routeName: 'string',
|
|
72615
|
+
routineName: 'string',
|
|
72616
|
+
rule: 'string',
|
|
72617
|
+
sequence: 'number',
|
|
72618
|
+
siteId: 'number',
|
|
72619
|
+
};
|
|
72620
|
+
}
|
|
72621
|
+
|
|
72622
|
+
validate() {
|
|
72623
|
+
super.validate();
|
|
72624
|
+
}
|
|
72625
|
+
|
|
72626
|
+
constructor(map?: { [key: string]: any }) {
|
|
72627
|
+
super(map);
|
|
72628
|
+
}
|
|
72629
|
+
}
|
|
72630
|
+
|
|
72631
|
+
export class UpdateRoutineRouteResponseBody extends $dara.Model {
|
|
72632
|
+
/**
|
|
72633
|
+
* @example
|
|
72634
|
+
* 34DCBC8A-****-****-****-6DAA11D7DDBD
|
|
72635
|
+
*/
|
|
72636
|
+
requestId?: string;
|
|
72637
|
+
static names(): { [key: string]: string } {
|
|
72638
|
+
return {
|
|
72639
|
+
requestId: 'RequestId',
|
|
72640
|
+
};
|
|
72641
|
+
}
|
|
72642
|
+
|
|
72643
|
+
static types(): { [key: string]: any } {
|
|
72644
|
+
return {
|
|
72645
|
+
requestId: 'string',
|
|
72646
|
+
};
|
|
72647
|
+
}
|
|
72648
|
+
|
|
72649
|
+
validate() {
|
|
72650
|
+
super.validate();
|
|
72651
|
+
}
|
|
72652
|
+
|
|
72653
|
+
constructor(map?: { [key: string]: any }) {
|
|
72654
|
+
super(map);
|
|
72655
|
+
}
|
|
72656
|
+
}
|
|
72657
|
+
|
|
72658
|
+
export class UpdateRoutineRouteResponse extends $dara.Model {
|
|
72659
|
+
headers?: { [key: string]: string };
|
|
72660
|
+
statusCode?: number;
|
|
72661
|
+
body?: UpdateRoutineRouteResponseBody;
|
|
72662
|
+
static names(): { [key: string]: string } {
|
|
72663
|
+
return {
|
|
72664
|
+
headers: 'headers',
|
|
72665
|
+
statusCode: 'statusCode',
|
|
72666
|
+
body: 'body',
|
|
72667
|
+
};
|
|
72668
|
+
}
|
|
72669
|
+
|
|
72670
|
+
static types(): { [key: string]: any } {
|
|
72671
|
+
return {
|
|
72672
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
72673
|
+
statusCode: 'number',
|
|
72674
|
+
body: UpdateRoutineRouteResponseBody,
|
|
72675
|
+
};
|
|
72676
|
+
}
|
|
72677
|
+
|
|
72678
|
+
validate() {
|
|
72679
|
+
if(this.headers) {
|
|
72680
|
+
$dara.Model.validateMap(this.headers);
|
|
72681
|
+
}
|
|
72682
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
72683
|
+
(this.body as any).validate();
|
|
72684
|
+
}
|
|
72685
|
+
super.validate();
|
|
72686
|
+
}
|
|
72687
|
+
|
|
72688
|
+
constructor(map?: { [key: string]: any }) {
|
|
72689
|
+
super(map);
|
|
72690
|
+
}
|
|
72691
|
+
}
|
|
72692
|
+
|
|
71636
72693
|
export class UpdateScheduledPreloadExecutionRequest extends $dara.Model {
|
|
71637
72694
|
/**
|
|
71638
72695
|
* @remarks
|
|
@@ -73599,7 +74656,7 @@ export class UpdateWafRuleResponse extends $dara.Model {
|
|
|
73599
74656
|
export class UpdateWafRulesetRequest extends $dara.Model {
|
|
73600
74657
|
/**
|
|
73601
74658
|
* @remarks
|
|
73602
|
-
* ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/
|
|
74659
|
+
* ID of the WAF ruleset, which can be obtained by calling the [ListWafRulesets](https://help.aliyun.com/document_detail/2878359.html) interface.
|
|
73603
74660
|
*
|
|
73604
74661
|
* This parameter is required.
|
|
73605
74662
|
*
|
|
@@ -79261,6 +80318,77 @@ export default class Client extends OpenApi {
|
|
|
79261
80318
|
return await this.createRoutineRelatedRouteWithOptions(request, runtime);
|
|
79262
80319
|
}
|
|
79263
80320
|
|
|
80321
|
+
/**
|
|
80322
|
+
* 新增边缘函数路由配置
|
|
80323
|
+
*
|
|
80324
|
+
* @param request - CreateRoutineRouteRequest
|
|
80325
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
80326
|
+
* @returns CreateRoutineRouteResponse
|
|
80327
|
+
*/
|
|
80328
|
+
async createRoutineRouteWithOptions(request: CreateRoutineRouteRequest, runtime: $dara.RuntimeOptions): Promise<CreateRoutineRouteResponse> {
|
|
80329
|
+
request.validate();
|
|
80330
|
+
let query = { };
|
|
80331
|
+
if (!$dara.isNull(request.bypass)) {
|
|
80332
|
+
query["Bypass"] = request.bypass;
|
|
80333
|
+
}
|
|
80334
|
+
|
|
80335
|
+
if (!$dara.isNull(request.routeEnable)) {
|
|
80336
|
+
query["RouteEnable"] = request.routeEnable;
|
|
80337
|
+
}
|
|
80338
|
+
|
|
80339
|
+
if (!$dara.isNull(request.routeName)) {
|
|
80340
|
+
query["RouteName"] = request.routeName;
|
|
80341
|
+
}
|
|
80342
|
+
|
|
80343
|
+
if (!$dara.isNull(request.routineName)) {
|
|
80344
|
+
query["RoutineName"] = request.routineName;
|
|
80345
|
+
}
|
|
80346
|
+
|
|
80347
|
+
if (!$dara.isNull(request.rule)) {
|
|
80348
|
+
query["Rule"] = request.rule;
|
|
80349
|
+
}
|
|
80350
|
+
|
|
80351
|
+
if (!$dara.isNull(request.sequence)) {
|
|
80352
|
+
query["Sequence"] = request.sequence;
|
|
80353
|
+
}
|
|
80354
|
+
|
|
80355
|
+
if (!$dara.isNull(request.siteId)) {
|
|
80356
|
+
query["SiteId"] = request.siteId;
|
|
80357
|
+
}
|
|
80358
|
+
|
|
80359
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
80360
|
+
query: OpenApiUtil.query(query),
|
|
80361
|
+
});
|
|
80362
|
+
let params = new $OpenApiUtil.Params({
|
|
80363
|
+
action: "CreateRoutineRoute",
|
|
80364
|
+
version: "2024-09-10",
|
|
80365
|
+
protocol: "HTTPS",
|
|
80366
|
+
pathname: "/",
|
|
80367
|
+
method: "POST",
|
|
80368
|
+
authType: "AK",
|
|
80369
|
+
style: "RPC",
|
|
80370
|
+
reqBodyType: "formData",
|
|
80371
|
+
bodyType: "json",
|
|
80372
|
+
});
|
|
80373
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
80374
|
+
return $dara.cast<CreateRoutineRouteResponse>(await this.callApi(params, req, runtime), new CreateRoutineRouteResponse({}));
|
|
80375
|
+
} else {
|
|
80376
|
+
return $dara.cast<CreateRoutineRouteResponse>(await this.execute(params, req, runtime), new CreateRoutineRouteResponse({}));
|
|
80377
|
+
}
|
|
80378
|
+
|
|
80379
|
+
}
|
|
80380
|
+
|
|
80381
|
+
/**
|
|
80382
|
+
* 新增边缘函数路由配置
|
|
80383
|
+
*
|
|
80384
|
+
* @param request - CreateRoutineRouteRequest
|
|
80385
|
+
* @returns CreateRoutineRouteResponse
|
|
80386
|
+
*/
|
|
80387
|
+
async createRoutineRoute(request: CreateRoutineRouteRequest): Promise<CreateRoutineRouteResponse> {
|
|
80388
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
80389
|
+
return await this.createRoutineRouteWithOptions(request, runtime);
|
|
80390
|
+
}
|
|
80391
|
+
|
|
79264
80392
|
/**
|
|
79265
80393
|
* Creates scheduled prefetch plans.
|
|
79266
80394
|
*
|
|
@@ -81890,6 +83018,57 @@ export default class Client extends OpenApi {
|
|
|
81890
83018
|
return await this.deleteRoutineRelatedRouteWithOptions(request, runtime);
|
|
81891
83019
|
}
|
|
81892
83020
|
|
|
83021
|
+
/**
|
|
83022
|
+
* 删除边缘函数路由配置
|
|
83023
|
+
*
|
|
83024
|
+
* @param request - DeleteRoutineRouteRequest
|
|
83025
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
83026
|
+
* @returns DeleteRoutineRouteResponse
|
|
83027
|
+
*/
|
|
83028
|
+
async deleteRoutineRouteWithOptions(request: DeleteRoutineRouteRequest, runtime: $dara.RuntimeOptions): Promise<DeleteRoutineRouteResponse> {
|
|
83029
|
+
request.validate();
|
|
83030
|
+
let query = { };
|
|
83031
|
+
if (!$dara.isNull(request.configId)) {
|
|
83032
|
+
query["ConfigId"] = request.configId;
|
|
83033
|
+
}
|
|
83034
|
+
|
|
83035
|
+
if (!$dara.isNull(request.siteId)) {
|
|
83036
|
+
query["SiteId"] = request.siteId;
|
|
83037
|
+
}
|
|
83038
|
+
|
|
83039
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
83040
|
+
query: OpenApiUtil.query(query),
|
|
83041
|
+
});
|
|
83042
|
+
let params = new $OpenApiUtil.Params({
|
|
83043
|
+
action: "DeleteRoutineRoute",
|
|
83044
|
+
version: "2024-09-10",
|
|
83045
|
+
protocol: "HTTPS",
|
|
83046
|
+
pathname: "/",
|
|
83047
|
+
method: "POST",
|
|
83048
|
+
authType: "AK",
|
|
83049
|
+
style: "RPC",
|
|
83050
|
+
reqBodyType: "formData",
|
|
83051
|
+
bodyType: "json",
|
|
83052
|
+
});
|
|
83053
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
83054
|
+
return $dara.cast<DeleteRoutineRouteResponse>(await this.callApi(params, req, runtime), new DeleteRoutineRouteResponse({}));
|
|
83055
|
+
} else {
|
|
83056
|
+
return $dara.cast<DeleteRoutineRouteResponse>(await this.execute(params, req, runtime), new DeleteRoutineRouteResponse({}));
|
|
83057
|
+
}
|
|
83058
|
+
|
|
83059
|
+
}
|
|
83060
|
+
|
|
83061
|
+
/**
|
|
83062
|
+
* 删除边缘函数路由配置
|
|
83063
|
+
*
|
|
83064
|
+
* @param request - DeleteRoutineRouteRequest
|
|
83065
|
+
* @returns DeleteRoutineRouteResponse
|
|
83066
|
+
*/
|
|
83067
|
+
async deleteRoutineRoute(request: DeleteRoutineRouteRequest): Promise<DeleteRoutineRouteResponse> {
|
|
83068
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
83069
|
+
return await this.deleteRoutineRouteWithOptions(request, runtime);
|
|
83070
|
+
}
|
|
83071
|
+
|
|
81893
83072
|
/**
|
|
81894
83073
|
* Deletes a scheduled prefetch plan based on the plan ID.
|
|
81895
83074
|
*
|
|
@@ -85436,6 +86615,57 @@ export default class Client extends OpenApi {
|
|
|
85436
86615
|
return await this.getRoutineWithOptions(request, runtime);
|
|
85437
86616
|
}
|
|
85438
86617
|
|
|
86618
|
+
/**
|
|
86619
|
+
* 查询单条边缘函数路由配置
|
|
86620
|
+
*
|
|
86621
|
+
* @param request - GetRoutineRouteRequest
|
|
86622
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
86623
|
+
* @returns GetRoutineRouteResponse
|
|
86624
|
+
*/
|
|
86625
|
+
async getRoutineRouteWithOptions(request: GetRoutineRouteRequest, runtime: $dara.RuntimeOptions): Promise<GetRoutineRouteResponse> {
|
|
86626
|
+
request.validate();
|
|
86627
|
+
let query = { };
|
|
86628
|
+
if (!$dara.isNull(request.configId)) {
|
|
86629
|
+
query["ConfigId"] = request.configId;
|
|
86630
|
+
}
|
|
86631
|
+
|
|
86632
|
+
if (!$dara.isNull(request.siteId)) {
|
|
86633
|
+
query["SiteId"] = request.siteId;
|
|
86634
|
+
}
|
|
86635
|
+
|
|
86636
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
86637
|
+
query: OpenApiUtil.query(query),
|
|
86638
|
+
});
|
|
86639
|
+
let params = new $OpenApiUtil.Params({
|
|
86640
|
+
action: "GetRoutineRoute",
|
|
86641
|
+
version: "2024-09-10",
|
|
86642
|
+
protocol: "HTTPS",
|
|
86643
|
+
pathname: "/",
|
|
86644
|
+
method: "POST",
|
|
86645
|
+
authType: "AK",
|
|
86646
|
+
style: "RPC",
|
|
86647
|
+
reqBodyType: "formData",
|
|
86648
|
+
bodyType: "json",
|
|
86649
|
+
});
|
|
86650
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
86651
|
+
return $dara.cast<GetRoutineRouteResponse>(await this.callApi(params, req, runtime), new GetRoutineRouteResponse({}));
|
|
86652
|
+
} else {
|
|
86653
|
+
return $dara.cast<GetRoutineRouteResponse>(await this.execute(params, req, runtime), new GetRoutineRouteResponse({}));
|
|
86654
|
+
}
|
|
86655
|
+
|
|
86656
|
+
}
|
|
86657
|
+
|
|
86658
|
+
/**
|
|
86659
|
+
* 查询单条边缘函数路由配置
|
|
86660
|
+
*
|
|
86661
|
+
* @param request - GetRoutineRouteRequest
|
|
86662
|
+
* @returns GetRoutineRouteResponse
|
|
86663
|
+
*/
|
|
86664
|
+
async getRoutineRoute(request: GetRoutineRouteRequest): Promise<GetRoutineRouteResponse> {
|
|
86665
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
86666
|
+
return await this.getRoutineRouteWithOptions(request, runtime);
|
|
86667
|
+
}
|
|
86668
|
+
|
|
85439
86669
|
/**
|
|
85440
86670
|
* Obtains the release information about the routine code that is released to the staging environment. This information can be used to upload the test code to Object Storage Service (OSS).
|
|
85441
86671
|
*
|
|
@@ -88198,6 +89428,61 @@ export default class Client extends OpenApi {
|
|
|
88198
89428
|
return await this.listRoutineOptionalSpecsWithOptions(runtime);
|
|
88199
89429
|
}
|
|
88200
89430
|
|
|
89431
|
+
/**
|
|
89432
|
+
* 查询边缘程序的函数路由列表
|
|
89433
|
+
*
|
|
89434
|
+
* @param request - ListRoutineRoutesRequest
|
|
89435
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
89436
|
+
* @returns ListRoutineRoutesResponse
|
|
89437
|
+
*/
|
|
89438
|
+
async listRoutineRoutesWithOptions(request: ListRoutineRoutesRequest, runtime: $dara.RuntimeOptions): Promise<ListRoutineRoutesResponse> {
|
|
89439
|
+
request.validate();
|
|
89440
|
+
let query = { };
|
|
89441
|
+
if (!$dara.isNull(request.pageNumber)) {
|
|
89442
|
+
query["PageNumber"] = request.pageNumber;
|
|
89443
|
+
}
|
|
89444
|
+
|
|
89445
|
+
if (!$dara.isNull(request.pageSize)) {
|
|
89446
|
+
query["PageSize"] = request.pageSize;
|
|
89447
|
+
}
|
|
89448
|
+
|
|
89449
|
+
if (!$dara.isNull(request.routineName)) {
|
|
89450
|
+
query["RoutineName"] = request.routineName;
|
|
89451
|
+
}
|
|
89452
|
+
|
|
89453
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
89454
|
+
query: OpenApiUtil.query(query),
|
|
89455
|
+
});
|
|
89456
|
+
let params = new $OpenApiUtil.Params({
|
|
89457
|
+
action: "ListRoutineRoutes",
|
|
89458
|
+
version: "2024-09-10",
|
|
89459
|
+
protocol: "HTTPS",
|
|
89460
|
+
pathname: "/",
|
|
89461
|
+
method: "POST",
|
|
89462
|
+
authType: "AK",
|
|
89463
|
+
style: "RPC",
|
|
89464
|
+
reqBodyType: "formData",
|
|
89465
|
+
bodyType: "json",
|
|
89466
|
+
});
|
|
89467
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
89468
|
+
return $dara.cast<ListRoutineRoutesResponse>(await this.callApi(params, req, runtime), new ListRoutineRoutesResponse({}));
|
|
89469
|
+
} else {
|
|
89470
|
+
return $dara.cast<ListRoutineRoutesResponse>(await this.execute(params, req, runtime), new ListRoutineRoutesResponse({}));
|
|
89471
|
+
}
|
|
89472
|
+
|
|
89473
|
+
}
|
|
89474
|
+
|
|
89475
|
+
/**
|
|
89476
|
+
* 查询边缘程序的函数路由列表
|
|
89477
|
+
*
|
|
89478
|
+
* @param request - ListRoutineRoutesRequest
|
|
89479
|
+
* @returns ListRoutineRoutesResponse
|
|
89480
|
+
*/
|
|
89481
|
+
async listRoutineRoutes(request: ListRoutineRoutesRequest): Promise<ListRoutineRoutesResponse> {
|
|
89482
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
89483
|
+
return await this.listRoutineRoutesWithOptions(request, runtime);
|
|
89484
|
+
}
|
|
89485
|
+
|
|
88201
89486
|
/**
|
|
88202
89487
|
* Lists the plans in a scheduled prefetch task by task ID.
|
|
88203
89488
|
*
|
|
@@ -88327,6 +89612,73 @@ export default class Client extends OpenApi {
|
|
|
88327
89612
|
return await this.listSiteDeliveryTasksWithOptions(request, runtime);
|
|
88328
89613
|
}
|
|
88329
89614
|
|
|
89615
|
+
/**
|
|
89616
|
+
* 查询站点的函数路由列表
|
|
89617
|
+
*
|
|
89618
|
+
* @param request - ListSiteRoutesRequest
|
|
89619
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
89620
|
+
* @returns ListSiteRoutesResponse
|
|
89621
|
+
*/
|
|
89622
|
+
async listSiteRoutesWithOptions(request: ListSiteRoutesRequest, runtime: $dara.RuntimeOptions): Promise<ListSiteRoutesResponse> {
|
|
89623
|
+
request.validate();
|
|
89624
|
+
let query = { };
|
|
89625
|
+
if (!$dara.isNull(request.configId)) {
|
|
89626
|
+
query["ConfigId"] = request.configId;
|
|
89627
|
+
}
|
|
89628
|
+
|
|
89629
|
+
if (!$dara.isNull(request.configType)) {
|
|
89630
|
+
query["ConfigType"] = request.configType;
|
|
89631
|
+
}
|
|
89632
|
+
|
|
89633
|
+
if (!$dara.isNull(request.pageNumber)) {
|
|
89634
|
+
query["PageNumber"] = request.pageNumber;
|
|
89635
|
+
}
|
|
89636
|
+
|
|
89637
|
+
if (!$dara.isNull(request.pageSize)) {
|
|
89638
|
+
query["PageSize"] = request.pageSize;
|
|
89639
|
+
}
|
|
89640
|
+
|
|
89641
|
+
if (!$dara.isNull(request.routeName)) {
|
|
89642
|
+
query["RouteName"] = request.routeName;
|
|
89643
|
+
}
|
|
89644
|
+
|
|
89645
|
+
if (!$dara.isNull(request.siteId)) {
|
|
89646
|
+
query["SiteId"] = request.siteId;
|
|
89647
|
+
}
|
|
89648
|
+
|
|
89649
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
89650
|
+
query: OpenApiUtil.query(query),
|
|
89651
|
+
});
|
|
89652
|
+
let params = new $OpenApiUtil.Params({
|
|
89653
|
+
action: "ListSiteRoutes",
|
|
89654
|
+
version: "2024-09-10",
|
|
89655
|
+
protocol: "HTTPS",
|
|
89656
|
+
pathname: "/",
|
|
89657
|
+
method: "POST",
|
|
89658
|
+
authType: "AK",
|
|
89659
|
+
style: "RPC",
|
|
89660
|
+
reqBodyType: "formData",
|
|
89661
|
+
bodyType: "json",
|
|
89662
|
+
});
|
|
89663
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
89664
|
+
return $dara.cast<ListSiteRoutesResponse>(await this.callApi(params, req, runtime), new ListSiteRoutesResponse({}));
|
|
89665
|
+
} else {
|
|
89666
|
+
return $dara.cast<ListSiteRoutesResponse>(await this.execute(params, req, runtime), new ListSiteRoutesResponse({}));
|
|
89667
|
+
}
|
|
89668
|
+
|
|
89669
|
+
}
|
|
89670
|
+
|
|
89671
|
+
/**
|
|
89672
|
+
* 查询站点的函数路由列表
|
|
89673
|
+
*
|
|
89674
|
+
* @param request - ListSiteRoutesRequest
|
|
89675
|
+
* @returns ListSiteRoutesResponse
|
|
89676
|
+
*/
|
|
89677
|
+
async listSiteRoutes(request: ListSiteRoutesRequest): Promise<ListSiteRoutesResponse> {
|
|
89678
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
89679
|
+
return await this.listSiteRoutesWithOptions(request, runtime);
|
|
89680
|
+
}
|
|
89681
|
+
|
|
88330
89682
|
/**
|
|
88331
89683
|
* Queries the information about websites in your account, such as the name, status, and configuration of each website.
|
|
88332
89684
|
*
|
|
@@ -92719,6 +94071,81 @@ export default class Client extends OpenApi {
|
|
|
92719
94071
|
return await this.updateRewriteUrlRuleWithOptions(request, runtime);
|
|
92720
94072
|
}
|
|
92721
94073
|
|
|
94074
|
+
/**
|
|
94075
|
+
* 修改边缘函数路由配置
|
|
94076
|
+
*
|
|
94077
|
+
* @param request - UpdateRoutineRouteRequest
|
|
94078
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
94079
|
+
* @returns UpdateRoutineRouteResponse
|
|
94080
|
+
*/
|
|
94081
|
+
async updateRoutineRouteWithOptions(request: UpdateRoutineRouteRequest, runtime: $dara.RuntimeOptions): Promise<UpdateRoutineRouteResponse> {
|
|
94082
|
+
request.validate();
|
|
94083
|
+
let query = { };
|
|
94084
|
+
if (!$dara.isNull(request.bypass)) {
|
|
94085
|
+
query["Bypass"] = request.bypass;
|
|
94086
|
+
}
|
|
94087
|
+
|
|
94088
|
+
if (!$dara.isNull(request.configId)) {
|
|
94089
|
+
query["ConfigId"] = request.configId;
|
|
94090
|
+
}
|
|
94091
|
+
|
|
94092
|
+
if (!$dara.isNull(request.routeEnable)) {
|
|
94093
|
+
query["RouteEnable"] = request.routeEnable;
|
|
94094
|
+
}
|
|
94095
|
+
|
|
94096
|
+
if (!$dara.isNull(request.routeName)) {
|
|
94097
|
+
query["RouteName"] = request.routeName;
|
|
94098
|
+
}
|
|
94099
|
+
|
|
94100
|
+
if (!$dara.isNull(request.routineName)) {
|
|
94101
|
+
query["RoutineName"] = request.routineName;
|
|
94102
|
+
}
|
|
94103
|
+
|
|
94104
|
+
if (!$dara.isNull(request.rule)) {
|
|
94105
|
+
query["Rule"] = request.rule;
|
|
94106
|
+
}
|
|
94107
|
+
|
|
94108
|
+
if (!$dara.isNull(request.sequence)) {
|
|
94109
|
+
query["Sequence"] = request.sequence;
|
|
94110
|
+
}
|
|
94111
|
+
|
|
94112
|
+
if (!$dara.isNull(request.siteId)) {
|
|
94113
|
+
query["SiteId"] = request.siteId;
|
|
94114
|
+
}
|
|
94115
|
+
|
|
94116
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
94117
|
+
query: OpenApiUtil.query(query),
|
|
94118
|
+
});
|
|
94119
|
+
let params = new $OpenApiUtil.Params({
|
|
94120
|
+
action: "UpdateRoutineRoute",
|
|
94121
|
+
version: "2024-09-10",
|
|
94122
|
+
protocol: "HTTPS",
|
|
94123
|
+
pathname: "/",
|
|
94124
|
+
method: "POST",
|
|
94125
|
+
authType: "AK",
|
|
94126
|
+
style: "RPC",
|
|
94127
|
+
reqBodyType: "formData",
|
|
94128
|
+
bodyType: "json",
|
|
94129
|
+
});
|
|
94130
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
94131
|
+
return $dara.cast<UpdateRoutineRouteResponse>(await this.callApi(params, req, runtime), new UpdateRoutineRouteResponse({}));
|
|
94132
|
+
} else {
|
|
94133
|
+
return $dara.cast<UpdateRoutineRouteResponse>(await this.execute(params, req, runtime), new UpdateRoutineRouteResponse({}));
|
|
94134
|
+
}
|
|
94135
|
+
|
|
94136
|
+
}
|
|
94137
|
+
|
|
94138
|
+
/**
|
|
94139
|
+
* 修改边缘函数路由配置
|
|
94140
|
+
*
|
|
94141
|
+
* @param request - UpdateRoutineRouteRequest
|
|
94142
|
+
* @returns UpdateRoutineRouteResponse
|
|
94143
|
+
*/
|
|
94144
|
+
async updateRoutineRoute(request: UpdateRoutineRouteRequest): Promise<UpdateRoutineRouteResponse> {
|
|
94145
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
94146
|
+
return await this.updateRoutineRouteWithOptions(request, runtime);
|
|
94147
|
+
}
|
|
94148
|
+
|
|
92722
94149
|
/**
|
|
92723
94150
|
* Updates a scheduled prefetch plan based on the plan ID.
|
|
92724
94151
|
*
|