@alicloud/esa20240910 2.8.5 → 2.9.1
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 +1840 -182
- package/dist/client.js +1843 -97
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2768 -0
package/dist/client.d.ts
CHANGED
|
@@ -340,6 +340,77 @@ export declare class ActivateClientCertificateResponse extends $tea.Model {
|
|
|
340
340
|
[key: string]: any;
|
|
341
341
|
});
|
|
342
342
|
}
|
|
343
|
+
export declare class ApplyCertificateRequest extends $tea.Model {
|
|
344
|
+
/**
|
|
345
|
+
* @remarks
|
|
346
|
+
* This parameter is required.
|
|
347
|
+
*
|
|
348
|
+
* @example
|
|
349
|
+
* www.example.com,blog.example.com
|
|
350
|
+
*/
|
|
351
|
+
domains?: string;
|
|
352
|
+
/**
|
|
353
|
+
* @remarks
|
|
354
|
+
* This parameter is required.
|
|
355
|
+
*
|
|
356
|
+
* @example
|
|
357
|
+
* 1234567890123
|
|
358
|
+
*/
|
|
359
|
+
siteId?: number;
|
|
360
|
+
type?: string;
|
|
361
|
+
static names(): {
|
|
362
|
+
[key: string]: string;
|
|
363
|
+
};
|
|
364
|
+
static types(): {
|
|
365
|
+
[key: string]: any;
|
|
366
|
+
};
|
|
367
|
+
constructor(map?: {
|
|
368
|
+
[key: string]: any;
|
|
369
|
+
});
|
|
370
|
+
}
|
|
371
|
+
export declare class ApplyCertificateResponseBody extends $tea.Model {
|
|
372
|
+
/**
|
|
373
|
+
* @example
|
|
374
|
+
* 156A6B-677B1A-4297B7-9187B7-2B44792
|
|
375
|
+
*/
|
|
376
|
+
requestId?: string;
|
|
377
|
+
result?: ApplyCertificateResponseBodyResult[];
|
|
378
|
+
/**
|
|
379
|
+
* @example
|
|
380
|
+
* example.com
|
|
381
|
+
*/
|
|
382
|
+
siteName?: string;
|
|
383
|
+
/**
|
|
384
|
+
* @example
|
|
385
|
+
* 2
|
|
386
|
+
*/
|
|
387
|
+
totalCount?: number;
|
|
388
|
+
static names(): {
|
|
389
|
+
[key: string]: string;
|
|
390
|
+
};
|
|
391
|
+
static types(): {
|
|
392
|
+
[key: string]: any;
|
|
393
|
+
};
|
|
394
|
+
constructor(map?: {
|
|
395
|
+
[key: string]: any;
|
|
396
|
+
});
|
|
397
|
+
}
|
|
398
|
+
export declare class ApplyCertificateResponse extends $tea.Model {
|
|
399
|
+
headers?: {
|
|
400
|
+
[key: string]: string;
|
|
401
|
+
};
|
|
402
|
+
statusCode?: number;
|
|
403
|
+
body?: ApplyCertificateResponseBody;
|
|
404
|
+
static names(): {
|
|
405
|
+
[key: string]: string;
|
|
406
|
+
};
|
|
407
|
+
static types(): {
|
|
408
|
+
[key: string]: any;
|
|
409
|
+
};
|
|
410
|
+
constructor(map?: {
|
|
411
|
+
[key: string]: any;
|
|
412
|
+
});
|
|
413
|
+
}
|
|
343
414
|
export declare class BatchCreateRecordsRequest extends $tea.Model {
|
|
344
415
|
/**
|
|
345
416
|
* @remarks
|
|
@@ -2481,6 +2552,91 @@ export declare class CreateListResponse extends $tea.Model {
|
|
|
2481
2552
|
[key: string]: any;
|
|
2482
2553
|
});
|
|
2483
2554
|
}
|
|
2555
|
+
export declare class CreateOriginPoolRequest extends $tea.Model {
|
|
2556
|
+
enabled?: boolean;
|
|
2557
|
+
/**
|
|
2558
|
+
* @remarks
|
|
2559
|
+
* This parameter is required.
|
|
2560
|
+
*
|
|
2561
|
+
* @example
|
|
2562
|
+
* CreateOriginPool
|
|
2563
|
+
*/
|
|
2564
|
+
name?: string;
|
|
2565
|
+
origins?: CreateOriginPoolRequestOrigins[];
|
|
2566
|
+
/**
|
|
2567
|
+
* @remarks
|
|
2568
|
+
* This parameter is required.
|
|
2569
|
+
*/
|
|
2570
|
+
siteId?: number;
|
|
2571
|
+
static names(): {
|
|
2572
|
+
[key: string]: string;
|
|
2573
|
+
};
|
|
2574
|
+
static types(): {
|
|
2575
|
+
[key: string]: any;
|
|
2576
|
+
};
|
|
2577
|
+
constructor(map?: {
|
|
2578
|
+
[key: string]: any;
|
|
2579
|
+
});
|
|
2580
|
+
}
|
|
2581
|
+
export declare class CreateOriginPoolShrinkRequest extends $tea.Model {
|
|
2582
|
+
enabled?: boolean;
|
|
2583
|
+
/**
|
|
2584
|
+
* @remarks
|
|
2585
|
+
* This parameter is required.
|
|
2586
|
+
*
|
|
2587
|
+
* @example
|
|
2588
|
+
* CreateOriginPool
|
|
2589
|
+
*/
|
|
2590
|
+
name?: string;
|
|
2591
|
+
originsShrink?: string;
|
|
2592
|
+
/**
|
|
2593
|
+
* @remarks
|
|
2594
|
+
* This parameter is required.
|
|
2595
|
+
*/
|
|
2596
|
+
siteId?: number;
|
|
2597
|
+
static names(): {
|
|
2598
|
+
[key: string]: string;
|
|
2599
|
+
};
|
|
2600
|
+
static types(): {
|
|
2601
|
+
[key: string]: any;
|
|
2602
|
+
};
|
|
2603
|
+
constructor(map?: {
|
|
2604
|
+
[key: string]: any;
|
|
2605
|
+
});
|
|
2606
|
+
}
|
|
2607
|
+
export declare class CreateOriginPoolResponseBody extends $tea.Model {
|
|
2608
|
+
id?: number;
|
|
2609
|
+
/**
|
|
2610
|
+
* @remarks
|
|
2611
|
+
* Id of the request
|
|
2612
|
+
*/
|
|
2613
|
+
requestId?: string;
|
|
2614
|
+
static names(): {
|
|
2615
|
+
[key: string]: string;
|
|
2616
|
+
};
|
|
2617
|
+
static types(): {
|
|
2618
|
+
[key: string]: any;
|
|
2619
|
+
};
|
|
2620
|
+
constructor(map?: {
|
|
2621
|
+
[key: string]: any;
|
|
2622
|
+
});
|
|
2623
|
+
}
|
|
2624
|
+
export declare class CreateOriginPoolResponse extends $tea.Model {
|
|
2625
|
+
headers?: {
|
|
2626
|
+
[key: string]: string;
|
|
2627
|
+
};
|
|
2628
|
+
statusCode?: number;
|
|
2629
|
+
body?: CreateOriginPoolResponseBody;
|
|
2630
|
+
static names(): {
|
|
2631
|
+
[key: string]: string;
|
|
2632
|
+
};
|
|
2633
|
+
static types(): {
|
|
2634
|
+
[key: string]: any;
|
|
2635
|
+
};
|
|
2636
|
+
constructor(map?: {
|
|
2637
|
+
[key: string]: any;
|
|
2638
|
+
});
|
|
2639
|
+
}
|
|
2484
2640
|
export declare class CreateOriginProtectionRequest extends $tea.Model {
|
|
2485
2641
|
/**
|
|
2486
2642
|
* @remarks
|
|
@@ -4079,6 +4235,7 @@ export declare class CreateUserDeliveryTaskRequest extends $tea.Model {
|
|
|
4079
4235
|
* sls
|
|
4080
4236
|
*/
|
|
4081
4237
|
deliveryType?: string;
|
|
4238
|
+
details?: string;
|
|
4082
4239
|
/**
|
|
4083
4240
|
* @remarks
|
|
4084
4241
|
* The discard rate. Default value: 0.
|
|
@@ -4188,6 +4345,7 @@ export declare class CreateUserDeliveryTaskShrinkRequest extends $tea.Model {
|
|
|
4188
4345
|
* sls
|
|
4189
4346
|
*/
|
|
4190
4347
|
deliveryType?: string;
|
|
4348
|
+
details?: string;
|
|
4191
4349
|
/**
|
|
4192
4350
|
* @remarks
|
|
4193
4351
|
* The discard rate. Default value: 0.
|
|
@@ -5783,6 +5941,62 @@ export declare class DeleteListResponse extends $tea.Model {
|
|
|
5783
5941
|
[key: string]: any;
|
|
5784
5942
|
});
|
|
5785
5943
|
}
|
|
5944
|
+
export declare class DeleteOriginPoolRequest extends $tea.Model {
|
|
5945
|
+
/**
|
|
5946
|
+
* @remarks
|
|
5947
|
+
* This parameter is required.
|
|
5948
|
+
*
|
|
5949
|
+
* @example
|
|
5950
|
+
* DeleteOriginPool
|
|
5951
|
+
*/
|
|
5952
|
+
id?: number;
|
|
5953
|
+
/**
|
|
5954
|
+
* @remarks
|
|
5955
|
+
* This parameter is required.
|
|
5956
|
+
*/
|
|
5957
|
+
siteId?: number;
|
|
5958
|
+
static names(): {
|
|
5959
|
+
[key: string]: string;
|
|
5960
|
+
};
|
|
5961
|
+
static types(): {
|
|
5962
|
+
[key: string]: any;
|
|
5963
|
+
};
|
|
5964
|
+
constructor(map?: {
|
|
5965
|
+
[key: string]: any;
|
|
5966
|
+
});
|
|
5967
|
+
}
|
|
5968
|
+
export declare class DeleteOriginPoolResponseBody extends $tea.Model {
|
|
5969
|
+
/**
|
|
5970
|
+
* @remarks
|
|
5971
|
+
* Id of the request
|
|
5972
|
+
*/
|
|
5973
|
+
requestId?: string;
|
|
5974
|
+
static names(): {
|
|
5975
|
+
[key: string]: string;
|
|
5976
|
+
};
|
|
5977
|
+
static types(): {
|
|
5978
|
+
[key: string]: any;
|
|
5979
|
+
};
|
|
5980
|
+
constructor(map?: {
|
|
5981
|
+
[key: string]: any;
|
|
5982
|
+
});
|
|
5983
|
+
}
|
|
5984
|
+
export declare class DeleteOriginPoolResponse extends $tea.Model {
|
|
5985
|
+
headers?: {
|
|
5986
|
+
[key: string]: string;
|
|
5987
|
+
};
|
|
5988
|
+
statusCode?: number;
|
|
5989
|
+
body?: DeleteOriginPoolResponseBody;
|
|
5990
|
+
static names(): {
|
|
5991
|
+
[key: string]: string;
|
|
5992
|
+
};
|
|
5993
|
+
static types(): {
|
|
5994
|
+
[key: string]: any;
|
|
5995
|
+
};
|
|
5996
|
+
constructor(map?: {
|
|
5997
|
+
[key: string]: any;
|
|
5998
|
+
});
|
|
5999
|
+
}
|
|
5786
6000
|
export declare class DeleteOriginProtectionRequest extends $tea.Model {
|
|
5787
6001
|
/**
|
|
5788
6002
|
* @remarks
|
|
@@ -7030,17 +7244,29 @@ export declare class DescribeDDoSAllEventListResponse extends $tea.Model {
|
|
|
7030
7244
|
[key: string]: any;
|
|
7031
7245
|
});
|
|
7032
7246
|
}
|
|
7033
|
-
export declare class
|
|
7247
|
+
export declare class DescribeDDoSBpsListRequest extends $tea.Model {
|
|
7248
|
+
coverage?: string;
|
|
7249
|
+
/**
|
|
7250
|
+
* @example
|
|
7251
|
+
* 2023-05-18T06:19:42Z
|
|
7252
|
+
*/
|
|
7253
|
+
endTime?: string;
|
|
7034
7254
|
/**
|
|
7035
7255
|
* @remarks
|
|
7036
|
-
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
7037
|
-
*
|
|
7038
7256
|
* This parameter is required.
|
|
7039
7257
|
*
|
|
7040
7258
|
* @example
|
|
7041
|
-
*
|
|
7259
|
+
* 70966210986912
|
|
7042
7260
|
*/
|
|
7043
7261
|
siteId?: number;
|
|
7262
|
+
/**
|
|
7263
|
+
* @remarks
|
|
7264
|
+
* This parameter is required.
|
|
7265
|
+
*
|
|
7266
|
+
* @example
|
|
7267
|
+
* 2023-05-14T17:00:00Z
|
|
7268
|
+
*/
|
|
7269
|
+
startTime?: string;
|
|
7044
7270
|
static names(): {
|
|
7045
7271
|
[key: string]: string;
|
|
7046
7272
|
};
|
|
@@ -7051,47 +7277,31 @@ export declare class DescribeHttpDDoSAttackIntelligentProtectionRequest extends
|
|
|
7051
7277
|
[key: string]: any;
|
|
7052
7278
|
});
|
|
7053
7279
|
}
|
|
7054
|
-
export declare class
|
|
7280
|
+
export declare class DescribeDDoSBpsListResponseBody extends $tea.Model {
|
|
7055
7281
|
/**
|
|
7056
|
-
* @remarks
|
|
7057
|
-
* The mode of smart HTTP DDoS protection. Valid values:
|
|
7058
|
-
*
|
|
7059
|
-
* * **observe**: alert.
|
|
7060
|
-
* * **defense**: block.
|
|
7061
|
-
*
|
|
7062
7282
|
* @example
|
|
7063
|
-
*
|
|
7283
|
+
* 300
|
|
7064
7284
|
*/
|
|
7065
|
-
|
|
7285
|
+
dataInterval?: number;
|
|
7286
|
+
dataModule?: DescribeDDoSBpsListResponseBodyDataModule[];
|
|
7066
7287
|
/**
|
|
7067
|
-
* @remarks
|
|
7068
|
-
* The level of smart HTTP DDoS protection. Valid values:
|
|
7069
|
-
*
|
|
7070
|
-
* * **level0**: very loose.
|
|
7071
|
-
* * **level30**: loose.
|
|
7072
|
-
* * **level60**: normal.
|
|
7073
|
-
* * **level90**: strict.
|
|
7074
|
-
*
|
|
7075
7288
|
* @example
|
|
7076
|
-
*
|
|
7289
|
+
* 2023-05-18T06:19:42Z
|
|
7077
7290
|
*/
|
|
7078
|
-
|
|
7291
|
+
endTime?: string;
|
|
7079
7292
|
/**
|
|
7080
7293
|
* @remarks
|
|
7081
|
-
*
|
|
7294
|
+
* Id of the request
|
|
7082
7295
|
*
|
|
7083
7296
|
* @example
|
|
7084
|
-
*
|
|
7297
|
+
* 156A6B-677B1A-4297B7-9187B7-2B44792
|
|
7085
7298
|
*/
|
|
7086
7299
|
requestId?: string;
|
|
7087
7300
|
/**
|
|
7088
|
-
* @remarks
|
|
7089
|
-
* The website ID.
|
|
7090
|
-
*
|
|
7091
7301
|
* @example
|
|
7092
|
-
*
|
|
7302
|
+
* 2023-05-14T17:00:00Z
|
|
7093
7303
|
*/
|
|
7094
|
-
|
|
7304
|
+
startTime?: string;
|
|
7095
7305
|
static names(): {
|
|
7096
7306
|
[key: string]: string;
|
|
7097
7307
|
};
|
|
@@ -7102,12 +7312,12 @@ export declare class DescribeHttpDDoSAttackIntelligentProtectionResponseBody ext
|
|
|
7102
7312
|
[key: string]: any;
|
|
7103
7313
|
});
|
|
7104
7314
|
}
|
|
7105
|
-
export declare class
|
|
7315
|
+
export declare class DescribeDDoSBpsListResponse extends $tea.Model {
|
|
7106
7316
|
headers?: {
|
|
7107
7317
|
[key: string]: string;
|
|
7108
7318
|
};
|
|
7109
7319
|
statusCode?: number;
|
|
7110
|
-
body?:
|
|
7320
|
+
body?: DescribeDDoSBpsListResponseBody;
|
|
7111
7321
|
static names(): {
|
|
7112
7322
|
[key: string]: string;
|
|
7113
7323
|
};
|
|
@@ -7118,10 +7328,206 @@ export declare class DescribeHttpDDoSAttackIntelligentProtectionResponse extends
|
|
|
7118
7328
|
[key: string]: any;
|
|
7119
7329
|
});
|
|
7120
7330
|
}
|
|
7121
|
-
export declare class
|
|
7331
|
+
export declare class DescribeDDoSL7QpsListRequest extends $tea.Model {
|
|
7332
|
+
/**
|
|
7333
|
+
* @example
|
|
7334
|
+
* 2023-04-19T19:00:00Z
|
|
7335
|
+
*/
|
|
7336
|
+
endTime?: string;
|
|
7122
7337
|
/**
|
|
7123
7338
|
* @remarks
|
|
7124
|
-
*
|
|
7339
|
+
* This parameter is required.
|
|
7340
|
+
*
|
|
7341
|
+
* @example
|
|
7342
|
+
* 300
|
|
7343
|
+
*/
|
|
7344
|
+
interval?: number;
|
|
7345
|
+
/**
|
|
7346
|
+
* @example
|
|
7347
|
+
* 86510927836942****
|
|
7348
|
+
*/
|
|
7349
|
+
recordId?: number;
|
|
7350
|
+
/**
|
|
7351
|
+
* @remarks
|
|
7352
|
+
* This parameter is required.
|
|
7353
|
+
*
|
|
7354
|
+
* @example
|
|
7355
|
+
* 123456****
|
|
7356
|
+
*/
|
|
7357
|
+
siteId?: number;
|
|
7358
|
+
/**
|
|
7359
|
+
* @remarks
|
|
7360
|
+
* A short description of struct
|
|
7361
|
+
*
|
|
7362
|
+
* This parameter is required.
|
|
7363
|
+
*
|
|
7364
|
+
* @example
|
|
7365
|
+
* 2023-04-19T16:00:00Z
|
|
7366
|
+
*/
|
|
7367
|
+
startTime?: string;
|
|
7368
|
+
static names(): {
|
|
7369
|
+
[key: string]: string;
|
|
7370
|
+
};
|
|
7371
|
+
static types(): {
|
|
7372
|
+
[key: string]: any;
|
|
7373
|
+
};
|
|
7374
|
+
constructor(map?: {
|
|
7375
|
+
[key: string]: any;
|
|
7376
|
+
});
|
|
7377
|
+
}
|
|
7378
|
+
export declare class DescribeDDoSL7QpsListResponseBody extends $tea.Model {
|
|
7379
|
+
/**
|
|
7380
|
+
* @example
|
|
7381
|
+
* 300
|
|
7382
|
+
*/
|
|
7383
|
+
dataInterval?: number;
|
|
7384
|
+
dataModule?: DescribeDDoSL7QpsListResponseBodyDataModule[];
|
|
7385
|
+
/**
|
|
7386
|
+
* @example
|
|
7387
|
+
* 2023-04-19T19:00:00Z
|
|
7388
|
+
*/
|
|
7389
|
+
endTime?: string;
|
|
7390
|
+
/**
|
|
7391
|
+
* @example
|
|
7392
|
+
* 86510927836942****
|
|
7393
|
+
*/
|
|
7394
|
+
recordId?: number;
|
|
7395
|
+
/**
|
|
7396
|
+
* @remarks
|
|
7397
|
+
* Id of the request
|
|
7398
|
+
*
|
|
7399
|
+
* @example
|
|
7400
|
+
* 156A6B-677B1A-4297B7-9187B7-2B44792
|
|
7401
|
+
*/
|
|
7402
|
+
requestId?: string;
|
|
7403
|
+
/**
|
|
7404
|
+
* @example
|
|
7405
|
+
* 123456****
|
|
7406
|
+
*/
|
|
7407
|
+
siteId?: number;
|
|
7408
|
+
/**
|
|
7409
|
+
* @example
|
|
7410
|
+
* 2023-04-19T16:00:00Z
|
|
7411
|
+
*/
|
|
7412
|
+
startTime?: string;
|
|
7413
|
+
static names(): {
|
|
7414
|
+
[key: string]: string;
|
|
7415
|
+
};
|
|
7416
|
+
static types(): {
|
|
7417
|
+
[key: string]: any;
|
|
7418
|
+
};
|
|
7419
|
+
constructor(map?: {
|
|
7420
|
+
[key: string]: any;
|
|
7421
|
+
});
|
|
7422
|
+
}
|
|
7423
|
+
export declare class DescribeDDoSL7QpsListResponse extends $tea.Model {
|
|
7424
|
+
headers?: {
|
|
7425
|
+
[key: string]: string;
|
|
7426
|
+
};
|
|
7427
|
+
statusCode?: number;
|
|
7428
|
+
body?: DescribeDDoSL7QpsListResponseBody;
|
|
7429
|
+
static names(): {
|
|
7430
|
+
[key: string]: string;
|
|
7431
|
+
};
|
|
7432
|
+
static types(): {
|
|
7433
|
+
[key: string]: any;
|
|
7434
|
+
};
|
|
7435
|
+
constructor(map?: {
|
|
7436
|
+
[key: string]: any;
|
|
7437
|
+
});
|
|
7438
|
+
}
|
|
7439
|
+
export declare class DescribeHttpDDoSAttackIntelligentProtectionRequest extends $tea.Model {
|
|
7440
|
+
/**
|
|
7441
|
+
* @remarks
|
|
7442
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
7443
|
+
*
|
|
7444
|
+
* This parameter is required.
|
|
7445
|
+
*
|
|
7446
|
+
* @example
|
|
7447
|
+
* 123456****
|
|
7448
|
+
*/
|
|
7449
|
+
siteId?: number;
|
|
7450
|
+
static names(): {
|
|
7451
|
+
[key: string]: string;
|
|
7452
|
+
};
|
|
7453
|
+
static types(): {
|
|
7454
|
+
[key: string]: any;
|
|
7455
|
+
};
|
|
7456
|
+
constructor(map?: {
|
|
7457
|
+
[key: string]: any;
|
|
7458
|
+
});
|
|
7459
|
+
}
|
|
7460
|
+
export declare class DescribeHttpDDoSAttackIntelligentProtectionResponseBody extends $tea.Model {
|
|
7461
|
+
/**
|
|
7462
|
+
* @remarks
|
|
7463
|
+
* The mode of smart HTTP DDoS protection. Valid values:
|
|
7464
|
+
*
|
|
7465
|
+
* * **observe**: alert.
|
|
7466
|
+
* * **defense**: block.
|
|
7467
|
+
*
|
|
7468
|
+
* @example
|
|
7469
|
+
* defense
|
|
7470
|
+
*/
|
|
7471
|
+
aiMode?: string;
|
|
7472
|
+
/**
|
|
7473
|
+
* @remarks
|
|
7474
|
+
* The level of smart HTTP DDoS protection. Valid values:
|
|
7475
|
+
*
|
|
7476
|
+
* * **level0**: very loose.
|
|
7477
|
+
* * **level30**: loose.
|
|
7478
|
+
* * **level60**: normal.
|
|
7479
|
+
* * **level90**: strict.
|
|
7480
|
+
*
|
|
7481
|
+
* @example
|
|
7482
|
+
* level60
|
|
7483
|
+
*/
|
|
7484
|
+
aiTemplate?: string;
|
|
7485
|
+
/**
|
|
7486
|
+
* @remarks
|
|
7487
|
+
* The request ID.
|
|
7488
|
+
*
|
|
7489
|
+
* @example
|
|
7490
|
+
* CB1A380B-09F0-41BB-3C82-72F8FD6DA2FE
|
|
7491
|
+
*/
|
|
7492
|
+
requestId?: string;
|
|
7493
|
+
/**
|
|
7494
|
+
* @remarks
|
|
7495
|
+
* The website ID.
|
|
7496
|
+
*
|
|
7497
|
+
* @example
|
|
7498
|
+
* 123456****
|
|
7499
|
+
*/
|
|
7500
|
+
siteId?: number;
|
|
7501
|
+
static names(): {
|
|
7502
|
+
[key: string]: string;
|
|
7503
|
+
};
|
|
7504
|
+
static types(): {
|
|
7505
|
+
[key: string]: any;
|
|
7506
|
+
};
|
|
7507
|
+
constructor(map?: {
|
|
7508
|
+
[key: string]: any;
|
|
7509
|
+
});
|
|
7510
|
+
}
|
|
7511
|
+
export declare class DescribeHttpDDoSAttackIntelligentProtectionResponse extends $tea.Model {
|
|
7512
|
+
headers?: {
|
|
7513
|
+
[key: string]: string;
|
|
7514
|
+
};
|
|
7515
|
+
statusCode?: number;
|
|
7516
|
+
body?: DescribeHttpDDoSAttackIntelligentProtectionResponseBody;
|
|
7517
|
+
static names(): {
|
|
7518
|
+
[key: string]: string;
|
|
7519
|
+
};
|
|
7520
|
+
static types(): {
|
|
7521
|
+
[key: string]: any;
|
|
7522
|
+
};
|
|
7523
|
+
constructor(map?: {
|
|
7524
|
+
[key: string]: any;
|
|
7525
|
+
});
|
|
7526
|
+
}
|
|
7527
|
+
export declare class DescribeHttpDDoSAttackProtectionRequest extends $tea.Model {
|
|
7528
|
+
/**
|
|
7529
|
+
* @remarks
|
|
7530
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
7125
7531
|
*
|
|
7126
7532
|
* This parameter is required.
|
|
7127
7533
|
*
|
|
@@ -7864,6 +8270,109 @@ export declare class GetCacheReserveSpecificationResponse extends $tea.Model {
|
|
|
7864
8270
|
[key: string]: any;
|
|
7865
8271
|
});
|
|
7866
8272
|
}
|
|
8273
|
+
export declare class GetCertificateRequest extends $tea.Model {
|
|
8274
|
+
/**
|
|
8275
|
+
* @remarks
|
|
8276
|
+
* The certificate ID.
|
|
8277
|
+
*
|
|
8278
|
+
* This parameter is required.
|
|
8279
|
+
*
|
|
8280
|
+
* @example
|
|
8281
|
+
* babaded901474b9693acf530e0fb1d95
|
|
8282
|
+
*/
|
|
8283
|
+
id?: string;
|
|
8284
|
+
/**
|
|
8285
|
+
* @remarks
|
|
8286
|
+
* The website ID, which can be obtained by calling the [ListSites](~~ListSites~~) operation.
|
|
8287
|
+
*
|
|
8288
|
+
* This parameter is required.
|
|
8289
|
+
*
|
|
8290
|
+
* @example
|
|
8291
|
+
* 1234567890123
|
|
8292
|
+
*/
|
|
8293
|
+
siteId?: number;
|
|
8294
|
+
static names(): {
|
|
8295
|
+
[key: string]: string;
|
|
8296
|
+
};
|
|
8297
|
+
static types(): {
|
|
8298
|
+
[key: string]: any;
|
|
8299
|
+
};
|
|
8300
|
+
constructor(map?: {
|
|
8301
|
+
[key: string]: any;
|
|
8302
|
+
});
|
|
8303
|
+
}
|
|
8304
|
+
export declare class GetCertificateResponseBody extends $tea.Model {
|
|
8305
|
+
/**
|
|
8306
|
+
* @remarks
|
|
8307
|
+
* The certificate content.
|
|
8308
|
+
*
|
|
8309
|
+
* @example
|
|
8310
|
+
* -----BEGIN CERTIFICATE-----
|
|
8311
|
+
*/
|
|
8312
|
+
certificate?: string;
|
|
8313
|
+
/**
|
|
8314
|
+
* @remarks
|
|
8315
|
+
* The request ID.
|
|
8316
|
+
*
|
|
8317
|
+
* @example
|
|
8318
|
+
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
8319
|
+
*/
|
|
8320
|
+
requestId?: string;
|
|
8321
|
+
/**
|
|
8322
|
+
* @remarks
|
|
8323
|
+
* The certificate information.
|
|
8324
|
+
*/
|
|
8325
|
+
result?: GetCertificateResponseBodyResult;
|
|
8326
|
+
/**
|
|
8327
|
+
* @remarks
|
|
8328
|
+
* The website ID.
|
|
8329
|
+
*
|
|
8330
|
+
* @example
|
|
8331
|
+
* 1234567890123
|
|
8332
|
+
*/
|
|
8333
|
+
siteId?: number;
|
|
8334
|
+
/**
|
|
8335
|
+
* @remarks
|
|
8336
|
+
* The website name.
|
|
8337
|
+
*
|
|
8338
|
+
* @example
|
|
8339
|
+
* example.com
|
|
8340
|
+
*/
|
|
8341
|
+
siteName?: string;
|
|
8342
|
+
/**
|
|
8343
|
+
* @remarks
|
|
8344
|
+
* The certificate status.
|
|
8345
|
+
*
|
|
8346
|
+
* @example
|
|
8347
|
+
* OK
|
|
8348
|
+
*/
|
|
8349
|
+
status?: string;
|
|
8350
|
+
static names(): {
|
|
8351
|
+
[key: string]: string;
|
|
8352
|
+
};
|
|
8353
|
+
static types(): {
|
|
8354
|
+
[key: string]: any;
|
|
8355
|
+
};
|
|
8356
|
+
constructor(map?: {
|
|
8357
|
+
[key: string]: any;
|
|
8358
|
+
});
|
|
8359
|
+
}
|
|
8360
|
+
export declare class GetCertificateResponse extends $tea.Model {
|
|
8361
|
+
headers?: {
|
|
8362
|
+
[key: string]: string;
|
|
8363
|
+
};
|
|
8364
|
+
statusCode?: number;
|
|
8365
|
+
body?: GetCertificateResponseBody;
|
|
8366
|
+
static names(): {
|
|
8367
|
+
[key: string]: string;
|
|
8368
|
+
};
|
|
8369
|
+
static types(): {
|
|
8370
|
+
[key: string]: any;
|
|
8371
|
+
};
|
|
8372
|
+
constructor(map?: {
|
|
8373
|
+
[key: string]: any;
|
|
8374
|
+
});
|
|
8375
|
+
}
|
|
7867
8376
|
export declare class GetCertificateQuotaRequest extends $tea.Model {
|
|
7868
8377
|
/**
|
|
7869
8378
|
* @remarks
|
|
@@ -9188,6 +9697,70 @@ export declare class GetListResponse extends $tea.Model {
|
|
|
9188
9697
|
[key: string]: any;
|
|
9189
9698
|
});
|
|
9190
9699
|
}
|
|
9700
|
+
export declare class GetOriginPoolRequest extends $tea.Model {
|
|
9701
|
+
/**
|
|
9702
|
+
* @remarks
|
|
9703
|
+
* This parameter is required.
|
|
9704
|
+
*
|
|
9705
|
+
* @example
|
|
9706
|
+
* GetOriginPool
|
|
9707
|
+
*/
|
|
9708
|
+
id?: number;
|
|
9709
|
+
/**
|
|
9710
|
+
* @remarks
|
|
9711
|
+
* This parameter is required.
|
|
9712
|
+
*/
|
|
9713
|
+
siteId?: number;
|
|
9714
|
+
static names(): {
|
|
9715
|
+
[key: string]: string;
|
|
9716
|
+
};
|
|
9717
|
+
static types(): {
|
|
9718
|
+
[key: string]: any;
|
|
9719
|
+
};
|
|
9720
|
+
constructor(map?: {
|
|
9721
|
+
[key: string]: any;
|
|
9722
|
+
});
|
|
9723
|
+
}
|
|
9724
|
+
export declare class GetOriginPoolResponseBody extends $tea.Model {
|
|
9725
|
+
enabled?: boolean;
|
|
9726
|
+
id?: number;
|
|
9727
|
+
name?: string;
|
|
9728
|
+
origins?: GetOriginPoolResponseBodyOrigins[];
|
|
9729
|
+
recordName?: string;
|
|
9730
|
+
referenceLBCount?: number;
|
|
9731
|
+
references?: GetOriginPoolResponseBodyReferences;
|
|
9732
|
+
/**
|
|
9733
|
+
* @remarks
|
|
9734
|
+
* Id of the request
|
|
9735
|
+
*/
|
|
9736
|
+
requestId?: string;
|
|
9737
|
+
siteId?: number;
|
|
9738
|
+
static names(): {
|
|
9739
|
+
[key: string]: string;
|
|
9740
|
+
};
|
|
9741
|
+
static types(): {
|
|
9742
|
+
[key: string]: any;
|
|
9743
|
+
};
|
|
9744
|
+
constructor(map?: {
|
|
9745
|
+
[key: string]: any;
|
|
9746
|
+
});
|
|
9747
|
+
}
|
|
9748
|
+
export declare class GetOriginPoolResponse extends $tea.Model {
|
|
9749
|
+
headers?: {
|
|
9750
|
+
[key: string]: string;
|
|
9751
|
+
};
|
|
9752
|
+
statusCode?: number;
|
|
9753
|
+
body?: GetOriginPoolResponseBody;
|
|
9754
|
+
static names(): {
|
|
9755
|
+
[key: string]: string;
|
|
9756
|
+
};
|
|
9757
|
+
static types(): {
|
|
9758
|
+
[key: string]: any;
|
|
9759
|
+
};
|
|
9760
|
+
constructor(map?: {
|
|
9761
|
+
[key: string]: any;
|
|
9762
|
+
});
|
|
9763
|
+
}
|
|
9191
9764
|
export declare class GetOriginProtectionRequest extends $tea.Model {
|
|
9192
9765
|
/**
|
|
9193
9766
|
* @remarks
|
|
@@ -10764,6 +11337,7 @@ export declare class GetUserDeliveryTaskResponseBody extends $tea.Model {
|
|
|
10764
11337
|
* oss
|
|
10765
11338
|
*/
|
|
10766
11339
|
deliveryType?: string;
|
|
11340
|
+
details?: string;
|
|
10767
11341
|
/**
|
|
10768
11342
|
* @remarks
|
|
10769
11343
|
* The discard rate.
|
|
@@ -11126,61 +11700,172 @@ export declare class ListCacheReserveInstancesRequest extends $tea.Model {
|
|
|
11126
11700
|
* @example
|
|
11127
11701
|
* sp-xcdn-96wblslz****
|
|
11128
11702
|
*/
|
|
11129
|
-
instanceId?: string;
|
|
11703
|
+
instanceId?: string;
|
|
11704
|
+
/**
|
|
11705
|
+
* @remarks
|
|
11706
|
+
* The page number.
|
|
11707
|
+
*
|
|
11708
|
+
* @example
|
|
11709
|
+
* 1
|
|
11710
|
+
*/
|
|
11711
|
+
pageNumber?: number;
|
|
11712
|
+
/**
|
|
11713
|
+
* @remarks
|
|
11714
|
+
* The number of entries per page. Valid values: **1 to 500**. Default value: **500**.
|
|
11715
|
+
*
|
|
11716
|
+
* @example
|
|
11717
|
+
* 20
|
|
11718
|
+
*/
|
|
11719
|
+
pageSize?: number;
|
|
11720
|
+
/**
|
|
11721
|
+
* @remarks
|
|
11722
|
+
* The criterion by which you want to sort the queried instances. Valid values:
|
|
11723
|
+
*
|
|
11724
|
+
* * ExpireTime: sorts the instances by the time when the instances expire.
|
|
11725
|
+
* * CreateTime: sorts the instances by the time when the instances were purchased.
|
|
11726
|
+
*
|
|
11727
|
+
* @example
|
|
11728
|
+
* ExpireTime
|
|
11729
|
+
*/
|
|
11730
|
+
sortBy?: string;
|
|
11731
|
+
/**
|
|
11732
|
+
* @remarks
|
|
11733
|
+
* The order by which you want to sort the queried instances. Valid values:
|
|
11734
|
+
*
|
|
11735
|
+
* * asc: in ascending order.
|
|
11736
|
+
* * desc: in descending order.
|
|
11737
|
+
*
|
|
11738
|
+
* @example
|
|
11739
|
+
* desc
|
|
11740
|
+
*/
|
|
11741
|
+
sortOrder?: string;
|
|
11742
|
+
/**
|
|
11743
|
+
* @remarks
|
|
11744
|
+
* The status of the cache reserve instance. Valid values:
|
|
11745
|
+
*
|
|
11746
|
+
* * online: The instance is in service.
|
|
11747
|
+
* * offline: The instance has expired within an allowable period. In this state, the plan is unavailable.
|
|
11748
|
+
* * disable: The instance is released.
|
|
11749
|
+
* * overdue: The instance is stopped due to overdue payments.
|
|
11750
|
+
*
|
|
11751
|
+
* @example
|
|
11752
|
+
* ListCacheReserveInstances
|
|
11753
|
+
*
|
|
11754
|
+
* **if can be null:**
|
|
11755
|
+
* false
|
|
11756
|
+
*/
|
|
11757
|
+
status?: string;
|
|
11758
|
+
static names(): {
|
|
11759
|
+
[key: string]: string;
|
|
11760
|
+
};
|
|
11761
|
+
static types(): {
|
|
11762
|
+
[key: string]: any;
|
|
11763
|
+
};
|
|
11764
|
+
constructor(map?: {
|
|
11765
|
+
[key: string]: any;
|
|
11766
|
+
});
|
|
11767
|
+
}
|
|
11768
|
+
export declare class ListCacheReserveInstancesResponseBody extends $tea.Model {
|
|
11769
|
+
/**
|
|
11770
|
+
* @remarks
|
|
11771
|
+
* The cache reserve instances.
|
|
11772
|
+
*/
|
|
11773
|
+
instanceInfo?: ListCacheReserveInstancesResponseBodyInstanceInfo[];
|
|
11774
|
+
/**
|
|
11775
|
+
* @remarks
|
|
11776
|
+
* The page number. Default value: **1**.
|
|
11777
|
+
*
|
|
11778
|
+
* @example
|
|
11779
|
+
* 1
|
|
11780
|
+
*/
|
|
11781
|
+
pageNumber?: number;
|
|
11782
|
+
/**
|
|
11783
|
+
* @remarks
|
|
11784
|
+
* The number of entries per page. Default value: **500**. Valid values: **1 to 500**.
|
|
11785
|
+
*
|
|
11786
|
+
* @example
|
|
11787
|
+
* 500
|
|
11788
|
+
*/
|
|
11789
|
+
pageSize?: number;
|
|
11790
|
+
/**
|
|
11791
|
+
* @remarks
|
|
11792
|
+
* The request ID.
|
|
11793
|
+
*
|
|
11794
|
+
* @example
|
|
11795
|
+
* 65C66B7B-671A-8297-9187-2R5477247B76
|
|
11796
|
+
*/
|
|
11797
|
+
requestId?: string;
|
|
11798
|
+
/**
|
|
11799
|
+
* @remarks
|
|
11800
|
+
* The total number of entries returned.
|
|
11801
|
+
*
|
|
11802
|
+
* @example
|
|
11803
|
+
* 16
|
|
11804
|
+
*/
|
|
11805
|
+
totalCount?: number;
|
|
11806
|
+
/**
|
|
11807
|
+
* @remarks
|
|
11808
|
+
* The total number of pages returned.
|
|
11809
|
+
*
|
|
11810
|
+
* @example
|
|
11811
|
+
* 1
|
|
11812
|
+
*/
|
|
11813
|
+
totalPage?: number;
|
|
11814
|
+
static names(): {
|
|
11815
|
+
[key: string]: string;
|
|
11816
|
+
};
|
|
11817
|
+
static types(): {
|
|
11818
|
+
[key: string]: any;
|
|
11819
|
+
};
|
|
11820
|
+
constructor(map?: {
|
|
11821
|
+
[key: string]: any;
|
|
11822
|
+
});
|
|
11823
|
+
}
|
|
11824
|
+
export declare class ListCacheReserveInstancesResponse extends $tea.Model {
|
|
11825
|
+
headers?: {
|
|
11826
|
+
[key: string]: string;
|
|
11827
|
+
};
|
|
11828
|
+
statusCode?: number;
|
|
11829
|
+
body?: ListCacheReserveInstancesResponseBody;
|
|
11830
|
+
static names(): {
|
|
11831
|
+
[key: string]: string;
|
|
11832
|
+
};
|
|
11833
|
+
static types(): {
|
|
11834
|
+
[key: string]: any;
|
|
11835
|
+
};
|
|
11836
|
+
constructor(map?: {
|
|
11837
|
+
[key: string]: any;
|
|
11838
|
+
});
|
|
11839
|
+
}
|
|
11840
|
+
export declare class ListCertificatesRequest extends $tea.Model {
|
|
11841
|
+
/**
|
|
11842
|
+
* @example
|
|
11843
|
+
* example
|
|
11844
|
+
*/
|
|
11845
|
+
keyword?: string;
|
|
11130
11846
|
/**
|
|
11131
|
-
* @remarks
|
|
11132
|
-
* The page number.
|
|
11133
|
-
*
|
|
11134
11847
|
* @example
|
|
11135
|
-
*
|
|
11848
|
+
* 3
|
|
11136
11849
|
*/
|
|
11137
11850
|
pageNumber?: number;
|
|
11138
11851
|
/**
|
|
11139
|
-
* @remarks
|
|
11140
|
-
* The number of entries per page. Valid values: **1 to 500**. Default value: **500**.
|
|
11141
|
-
*
|
|
11142
11852
|
* @example
|
|
11143
|
-
*
|
|
11853
|
+
* 10
|
|
11144
11854
|
*/
|
|
11145
11855
|
pageSize?: number;
|
|
11146
11856
|
/**
|
|
11147
11857
|
* @remarks
|
|
11148
|
-
*
|
|
11149
|
-
*
|
|
11150
|
-
* * ExpireTime: sorts the instances by the time when the instances expire.
|
|
11151
|
-
* * CreateTime: sorts the instances by the time when the instances were purchased.
|
|
11152
|
-
*
|
|
11153
|
-
* @example
|
|
11154
|
-
* ExpireTime
|
|
11155
|
-
*/
|
|
11156
|
-
sortBy?: string;
|
|
11157
|
-
/**
|
|
11158
|
-
* @remarks
|
|
11159
|
-
* The order by which you want to sort the queried instances. Valid values:
|
|
11160
|
-
*
|
|
11161
|
-
* * asc: in ascending order.
|
|
11162
|
-
* * desc: in descending order.
|
|
11858
|
+
* This parameter is required.
|
|
11163
11859
|
*
|
|
11164
11860
|
* @example
|
|
11165
|
-
*
|
|
11861
|
+
* 1234567890123
|
|
11166
11862
|
*/
|
|
11167
|
-
|
|
11863
|
+
siteId?: number;
|
|
11168
11864
|
/**
|
|
11169
|
-
* @remarks
|
|
11170
|
-
* The status of the cache reserve instance. Valid values:
|
|
11171
|
-
*
|
|
11172
|
-
* * online: The instance is in service.
|
|
11173
|
-
* * offline: The instance has expired within an allowable period. In this state, the plan is unavailable.
|
|
11174
|
-
* * disable: The instance is released.
|
|
11175
|
-
* * overdue: The instance is stopped due to overdue payments.
|
|
11176
|
-
*
|
|
11177
11865
|
* @example
|
|
11178
|
-
*
|
|
11179
|
-
*
|
|
11180
|
-
* **if can be null:**
|
|
11181
|
-
* false
|
|
11866
|
+
* 1
|
|
11182
11867
|
*/
|
|
11183
|
-
|
|
11868
|
+
validOnly?: boolean;
|
|
11184
11869
|
static names(): {
|
|
11185
11870
|
[key: string]: string;
|
|
11186
11871
|
};
|
|
@@ -11191,52 +11876,38 @@ export declare class ListCacheReserveInstancesRequest extends $tea.Model {
|
|
|
11191
11876
|
[key: string]: any;
|
|
11192
11877
|
});
|
|
11193
11878
|
}
|
|
11194
|
-
export declare class
|
|
11195
|
-
/**
|
|
11196
|
-
* @remarks
|
|
11197
|
-
* The cache reserve instances.
|
|
11198
|
-
*/
|
|
11199
|
-
instanceInfo?: ListCacheReserveInstancesResponseBodyInstanceInfo[];
|
|
11879
|
+
export declare class ListCertificatesResponseBody extends $tea.Model {
|
|
11200
11880
|
/**
|
|
11201
|
-
* @remarks
|
|
11202
|
-
* The page number. Default value: **1**.
|
|
11203
|
-
*
|
|
11204
11881
|
* @example
|
|
11205
11882
|
* 1
|
|
11206
11883
|
*/
|
|
11207
11884
|
pageNumber?: number;
|
|
11208
11885
|
/**
|
|
11209
|
-
* @remarks
|
|
11210
|
-
* The number of entries per page. Default value: **500**. Valid values: **1 to 500**.
|
|
11211
|
-
*
|
|
11212
11886
|
* @example
|
|
11213
|
-
*
|
|
11887
|
+
* 20
|
|
11214
11888
|
*/
|
|
11215
11889
|
pageSize?: number;
|
|
11216
11890
|
/**
|
|
11217
|
-
* @remarks
|
|
11218
|
-
* The request ID.
|
|
11219
|
-
*
|
|
11220
11891
|
* @example
|
|
11221
|
-
*
|
|
11892
|
+
* 15C66C7B-671A-4297-9187-2C4477247A74
|
|
11222
11893
|
*/
|
|
11223
11894
|
requestId?: string;
|
|
11895
|
+
result?: ListCertificatesResponseBodyResult[];
|
|
11224
11896
|
/**
|
|
11225
|
-
* @remarks
|
|
11226
|
-
* The total number of entries returned.
|
|
11227
|
-
*
|
|
11228
11897
|
* @example
|
|
11229
|
-
*
|
|
11898
|
+
* 1234567890123
|
|
11230
11899
|
*/
|
|
11231
|
-
|
|
11900
|
+
siteId?: number;
|
|
11232
11901
|
/**
|
|
11233
|
-
* @remarks
|
|
11234
|
-
* The total number of pages returned.
|
|
11235
|
-
*
|
|
11236
11902
|
* @example
|
|
11237
|
-
*
|
|
11903
|
+
* example.com
|
|
11238
11904
|
*/
|
|
11239
|
-
|
|
11905
|
+
siteName?: string;
|
|
11906
|
+
/**
|
|
11907
|
+
* @example
|
|
11908
|
+
* 10
|
|
11909
|
+
*/
|
|
11910
|
+
totalCount?: number;
|
|
11240
11911
|
static names(): {
|
|
11241
11912
|
[key: string]: string;
|
|
11242
11913
|
};
|
|
@@ -11247,12 +11918,12 @@ export declare class ListCacheReserveInstancesResponseBody extends $tea.Model {
|
|
|
11247
11918
|
[key: string]: any;
|
|
11248
11919
|
});
|
|
11249
11920
|
}
|
|
11250
|
-
export declare class
|
|
11921
|
+
export declare class ListCertificatesResponse extends $tea.Model {
|
|
11251
11922
|
headers?: {
|
|
11252
11923
|
[key: string]: string;
|
|
11253
11924
|
};
|
|
11254
11925
|
statusCode?: number;
|
|
11255
|
-
body?:
|
|
11926
|
+
body?: ListCertificatesResponseBody;
|
|
11256
11927
|
static names(): {
|
|
11257
11928
|
[key: string]: string;
|
|
11258
11929
|
};
|
|
@@ -13019,6 +13690,64 @@ export declare class ListManagedRulesGroupsResponse extends $tea.Model {
|
|
|
13019
13690
|
[key: string]: any;
|
|
13020
13691
|
});
|
|
13021
13692
|
}
|
|
13693
|
+
export declare class ListOriginPoolsRequest extends $tea.Model {
|
|
13694
|
+
matchType?: string;
|
|
13695
|
+
name?: string;
|
|
13696
|
+
orderBy?: string;
|
|
13697
|
+
/**
|
|
13698
|
+
* @example
|
|
13699
|
+
* ListOriginPools
|
|
13700
|
+
*/
|
|
13701
|
+
pageNumber?: number;
|
|
13702
|
+
pageSize?: number;
|
|
13703
|
+
/**
|
|
13704
|
+
* @remarks
|
|
13705
|
+
* This parameter is required.
|
|
13706
|
+
*/
|
|
13707
|
+
siteId?: number;
|
|
13708
|
+
static names(): {
|
|
13709
|
+
[key: string]: string;
|
|
13710
|
+
};
|
|
13711
|
+
static types(): {
|
|
13712
|
+
[key: string]: any;
|
|
13713
|
+
};
|
|
13714
|
+
constructor(map?: {
|
|
13715
|
+
[key: string]: any;
|
|
13716
|
+
});
|
|
13717
|
+
}
|
|
13718
|
+
export declare class ListOriginPoolsResponseBody extends $tea.Model {
|
|
13719
|
+
originPools?: ListOriginPoolsResponseBodyOriginPools[];
|
|
13720
|
+
pageNumber?: number;
|
|
13721
|
+
pageSize?: number;
|
|
13722
|
+
requestId?: string;
|
|
13723
|
+
totalCount?: number;
|
|
13724
|
+
totalPage?: number;
|
|
13725
|
+
static names(): {
|
|
13726
|
+
[key: string]: string;
|
|
13727
|
+
};
|
|
13728
|
+
static types(): {
|
|
13729
|
+
[key: string]: any;
|
|
13730
|
+
};
|
|
13731
|
+
constructor(map?: {
|
|
13732
|
+
[key: string]: any;
|
|
13733
|
+
});
|
|
13734
|
+
}
|
|
13735
|
+
export declare class ListOriginPoolsResponse extends $tea.Model {
|
|
13736
|
+
headers?: {
|
|
13737
|
+
[key: string]: string;
|
|
13738
|
+
};
|
|
13739
|
+
statusCode?: number;
|
|
13740
|
+
body?: ListOriginPoolsResponseBody;
|
|
13741
|
+
static names(): {
|
|
13742
|
+
[key: string]: string;
|
|
13743
|
+
};
|
|
13744
|
+
static types(): {
|
|
13745
|
+
[key: string]: any;
|
|
13746
|
+
};
|
|
13747
|
+
constructor(map?: {
|
|
13748
|
+
[key: string]: any;
|
|
13749
|
+
});
|
|
13750
|
+
}
|
|
13022
13751
|
export declare class ListPagesRequest extends $tea.Model {
|
|
13023
13752
|
/**
|
|
13024
13753
|
* @remarks
|
|
@@ -17481,6 +18210,91 @@ export declare class UpdateKvNamespaceResponse extends $tea.Model {
|
|
|
17481
18210
|
[key: string]: any;
|
|
17482
18211
|
});
|
|
17483
18212
|
}
|
|
18213
|
+
export declare class UpdateOriginPoolRequest extends $tea.Model {
|
|
18214
|
+
enabled?: boolean;
|
|
18215
|
+
/**
|
|
18216
|
+
* @remarks
|
|
18217
|
+
* This parameter is required.
|
|
18218
|
+
*
|
|
18219
|
+
* @example
|
|
18220
|
+
* UpdateOriginPool
|
|
18221
|
+
*/
|
|
18222
|
+
id?: number;
|
|
18223
|
+
origins?: UpdateOriginPoolRequestOrigins[];
|
|
18224
|
+
/**
|
|
18225
|
+
* @remarks
|
|
18226
|
+
* This parameter is required.
|
|
18227
|
+
*/
|
|
18228
|
+
siteId?: number;
|
|
18229
|
+
static names(): {
|
|
18230
|
+
[key: string]: string;
|
|
18231
|
+
};
|
|
18232
|
+
static types(): {
|
|
18233
|
+
[key: string]: any;
|
|
18234
|
+
};
|
|
18235
|
+
constructor(map?: {
|
|
18236
|
+
[key: string]: any;
|
|
18237
|
+
});
|
|
18238
|
+
}
|
|
18239
|
+
export declare class UpdateOriginPoolShrinkRequest extends $tea.Model {
|
|
18240
|
+
enabled?: boolean;
|
|
18241
|
+
/**
|
|
18242
|
+
* @remarks
|
|
18243
|
+
* This parameter is required.
|
|
18244
|
+
*
|
|
18245
|
+
* @example
|
|
18246
|
+
* UpdateOriginPool
|
|
18247
|
+
*/
|
|
18248
|
+
id?: number;
|
|
18249
|
+
originsShrink?: string;
|
|
18250
|
+
/**
|
|
18251
|
+
* @remarks
|
|
18252
|
+
* This parameter is required.
|
|
18253
|
+
*/
|
|
18254
|
+
siteId?: number;
|
|
18255
|
+
static names(): {
|
|
18256
|
+
[key: string]: string;
|
|
18257
|
+
};
|
|
18258
|
+
static types(): {
|
|
18259
|
+
[key: string]: any;
|
|
18260
|
+
};
|
|
18261
|
+
constructor(map?: {
|
|
18262
|
+
[key: string]: any;
|
|
18263
|
+
});
|
|
18264
|
+
}
|
|
18265
|
+
export declare class UpdateOriginPoolResponseBody extends $tea.Model {
|
|
18266
|
+
id?: number;
|
|
18267
|
+
/**
|
|
18268
|
+
* @remarks
|
|
18269
|
+
* Id of the request
|
|
18270
|
+
*/
|
|
18271
|
+
requestId?: string;
|
|
18272
|
+
static names(): {
|
|
18273
|
+
[key: string]: string;
|
|
18274
|
+
};
|
|
18275
|
+
static types(): {
|
|
18276
|
+
[key: string]: any;
|
|
18277
|
+
};
|
|
18278
|
+
constructor(map?: {
|
|
18279
|
+
[key: string]: any;
|
|
18280
|
+
});
|
|
18281
|
+
}
|
|
18282
|
+
export declare class UpdateOriginPoolResponse extends $tea.Model {
|
|
18283
|
+
headers?: {
|
|
18284
|
+
[key: string]: string;
|
|
18285
|
+
};
|
|
18286
|
+
statusCode?: number;
|
|
18287
|
+
body?: UpdateOriginPoolResponseBody;
|
|
18288
|
+
static names(): {
|
|
18289
|
+
[key: string]: string;
|
|
18290
|
+
};
|
|
18291
|
+
static types(): {
|
|
18292
|
+
[key: string]: any;
|
|
18293
|
+
};
|
|
18294
|
+
constructor(map?: {
|
|
18295
|
+
[key: string]: any;
|
|
18296
|
+
});
|
|
18297
|
+
}
|
|
17484
18298
|
export declare class UpdateOriginProtectionRequest extends $tea.Model {
|
|
17485
18299
|
/**
|
|
17486
18300
|
* @remarks
|
|
@@ -17634,6 +18448,8 @@ export declare class UpdatePageRequest extends $tea.Model {
|
|
|
17634
18448
|
* @remarks
|
|
17635
18449
|
* The description of the custom error page.
|
|
17636
18450
|
*
|
|
18451
|
+
* This parameter is required.
|
|
18452
|
+
*
|
|
17637
18453
|
* @example
|
|
17638
18454
|
* a custom deny page
|
|
17639
18455
|
*/
|
|
@@ -18612,6 +19428,7 @@ export declare class UpdateUserDeliveryTaskRequest extends $tea.Model {
|
|
|
18612
19428
|
* dcdn_log_er
|
|
18613
19429
|
*/
|
|
18614
19430
|
businessType?: string;
|
|
19431
|
+
details?: string;
|
|
18615
19432
|
/**
|
|
18616
19433
|
* @remarks
|
|
18617
19434
|
* The discard rate. Default value: 0.
|
|
@@ -20306,6 +21123,32 @@ export declare class FieldContentValueFieldList extends $tea.Model {
|
|
|
20306
21123
|
[key: string]: any;
|
|
20307
21124
|
});
|
|
20308
21125
|
}
|
|
21126
|
+
export declare class ApplyCertificateResponseBodyResult extends $tea.Model {
|
|
21127
|
+
/**
|
|
21128
|
+
* @example
|
|
21129
|
+
* *.example.com
|
|
21130
|
+
*/
|
|
21131
|
+
domain?: string;
|
|
21132
|
+
/**
|
|
21133
|
+
* @example
|
|
21134
|
+
* 30000478
|
|
21135
|
+
*/
|
|
21136
|
+
id?: string;
|
|
21137
|
+
/**
|
|
21138
|
+
* @example
|
|
21139
|
+
* Applying
|
|
21140
|
+
*/
|
|
21141
|
+
status?: string;
|
|
21142
|
+
static names(): {
|
|
21143
|
+
[key: string]: string;
|
|
21144
|
+
};
|
|
21145
|
+
static types(): {
|
|
21146
|
+
[key: string]: any;
|
|
21147
|
+
};
|
|
21148
|
+
constructor(map?: {
|
|
21149
|
+
[key: string]: any;
|
|
21150
|
+
});
|
|
21151
|
+
}
|
|
20309
21152
|
export declare class BatchCreateRecordsRequestRecordListAuthConf extends $tea.Model {
|
|
20310
21153
|
accessKey?: string;
|
|
20311
21154
|
authType?: string;
|
|
@@ -21426,6 +22269,40 @@ export declare class CreateEdgeContainerAppVersionRequestContainers extends $tea
|
|
|
21426
22269
|
[key: string]: any;
|
|
21427
22270
|
});
|
|
21428
22271
|
}
|
|
22272
|
+
export declare class CreateOriginPoolRequestOriginsAuthConf extends $tea.Model {
|
|
22273
|
+
accessKey?: string;
|
|
22274
|
+
authType?: string;
|
|
22275
|
+
region?: string;
|
|
22276
|
+
secretKey?: string;
|
|
22277
|
+
version?: string;
|
|
22278
|
+
static names(): {
|
|
22279
|
+
[key: string]: string;
|
|
22280
|
+
};
|
|
22281
|
+
static types(): {
|
|
22282
|
+
[key: string]: any;
|
|
22283
|
+
};
|
|
22284
|
+
constructor(map?: {
|
|
22285
|
+
[key: string]: any;
|
|
22286
|
+
});
|
|
22287
|
+
}
|
|
22288
|
+
export declare class CreateOriginPoolRequestOrigins extends $tea.Model {
|
|
22289
|
+
address?: string;
|
|
22290
|
+
authConf?: CreateOriginPoolRequestOriginsAuthConf;
|
|
22291
|
+
enabled?: boolean;
|
|
22292
|
+
header?: any;
|
|
22293
|
+
name?: string;
|
|
22294
|
+
type?: string;
|
|
22295
|
+
weight?: number;
|
|
22296
|
+
static names(): {
|
|
22297
|
+
[key: string]: string;
|
|
22298
|
+
};
|
|
22299
|
+
static types(): {
|
|
22300
|
+
[key: string]: any;
|
|
22301
|
+
};
|
|
22302
|
+
constructor(map?: {
|
|
22303
|
+
[key: string]: any;
|
|
22304
|
+
});
|
|
22305
|
+
}
|
|
21429
22306
|
export declare class CreateRecordRequestAuthConf extends $tea.Model {
|
|
21430
22307
|
/**
|
|
21431
22308
|
* @remarks
|
|
@@ -22819,6 +23696,83 @@ export declare class DescribeDDoSAllEventListResponseBodyDataList extends $tea.M
|
|
|
22819
23696
|
[key: string]: any;
|
|
22820
23697
|
});
|
|
22821
23698
|
}
|
|
23699
|
+
export declare class DescribeDDoSBpsListResponseBodyDataModule extends $tea.Model {
|
|
23700
|
+
/**
|
|
23701
|
+
* @example
|
|
23702
|
+
* 9000000000
|
|
23703
|
+
*/
|
|
23704
|
+
attackBps?: number;
|
|
23705
|
+
/**
|
|
23706
|
+
* @example
|
|
23707
|
+
* 9000000
|
|
23708
|
+
*/
|
|
23709
|
+
attackPps?: number;
|
|
23710
|
+
/**
|
|
23711
|
+
* @example
|
|
23712
|
+
* 1000000000
|
|
23713
|
+
*/
|
|
23714
|
+
normalBps?: number;
|
|
23715
|
+
/**
|
|
23716
|
+
* @example
|
|
23717
|
+
* 1000000
|
|
23718
|
+
*/
|
|
23719
|
+
normalPps?: number;
|
|
23720
|
+
/**
|
|
23721
|
+
* @example
|
|
23722
|
+
* 2023-05-14T17:00:00Z
|
|
23723
|
+
*/
|
|
23724
|
+
timeStamp?: string;
|
|
23725
|
+
/**
|
|
23726
|
+
* @example
|
|
23727
|
+
* 10000000000
|
|
23728
|
+
*/
|
|
23729
|
+
totalBps?: number;
|
|
23730
|
+
/**
|
|
23731
|
+
* @example
|
|
23732
|
+
* 100000000
|
|
23733
|
+
*/
|
|
23734
|
+
totalPps?: number;
|
|
23735
|
+
static names(): {
|
|
23736
|
+
[key: string]: string;
|
|
23737
|
+
};
|
|
23738
|
+
static types(): {
|
|
23739
|
+
[key: string]: any;
|
|
23740
|
+
};
|
|
23741
|
+
constructor(map?: {
|
|
23742
|
+
[key: string]: any;
|
|
23743
|
+
});
|
|
23744
|
+
}
|
|
23745
|
+
export declare class DescribeDDoSL7QpsListResponseBodyDataModule extends $tea.Model {
|
|
23746
|
+
/**
|
|
23747
|
+
* @example
|
|
23748
|
+
* 5
|
|
23749
|
+
*/
|
|
23750
|
+
attack?: number;
|
|
23751
|
+
/**
|
|
23752
|
+
* @example
|
|
23753
|
+
* 4
|
|
23754
|
+
*/
|
|
23755
|
+
normal?: number;
|
|
23756
|
+
/**
|
|
23757
|
+
* @example
|
|
23758
|
+
* 2023-04-19T16:00:00Z
|
|
23759
|
+
*/
|
|
23760
|
+
timeStamp?: string;
|
|
23761
|
+
/**
|
|
23762
|
+
* @example
|
|
23763
|
+
* 9
|
|
23764
|
+
*/
|
|
23765
|
+
total?: number;
|
|
23766
|
+
static names(): {
|
|
23767
|
+
[key: string]: string;
|
|
23768
|
+
};
|
|
23769
|
+
static types(): {
|
|
23770
|
+
[key: string]: any;
|
|
23771
|
+
};
|
|
23772
|
+
constructor(map?: {
|
|
23773
|
+
[key: string]: any;
|
|
23774
|
+
});
|
|
23775
|
+
}
|
|
22822
23776
|
export declare class DescribePreloadTasksResponseBodyTasks extends $tea.Model {
|
|
22823
23777
|
/**
|
|
22824
23778
|
* @remarks
|
|
@@ -22905,55 +23859,260 @@ export declare class DescribePurgeTasksResponseBodyTasks extends $tea.Model {
|
|
|
22905
23859
|
createTime?: string;
|
|
22906
23860
|
/**
|
|
22907
23861
|
* @remarks
|
|
22908
|
-
* The error description returned when the purge task failed.
|
|
23862
|
+
* The error description returned when the purge task failed.
|
|
23863
|
+
*
|
|
23864
|
+
* @example
|
|
23865
|
+
* Internal Error
|
|
23866
|
+
*/
|
|
23867
|
+
description?: string;
|
|
23868
|
+
/**
|
|
23869
|
+
* @remarks
|
|
23870
|
+
* The progress of the task, in percentage.
|
|
23871
|
+
*
|
|
23872
|
+
* @example
|
|
23873
|
+
* 100%
|
|
23874
|
+
*/
|
|
23875
|
+
process?: string;
|
|
23876
|
+
/**
|
|
23877
|
+
* @remarks
|
|
23878
|
+
* The task status.
|
|
23879
|
+
*
|
|
23880
|
+
* * **Complete**: The task is complete.
|
|
23881
|
+
* * **Refreshing**: The task is in progress.
|
|
23882
|
+
* * **Failed**: The task failed.
|
|
23883
|
+
*
|
|
23884
|
+
* @example
|
|
23885
|
+
* Complete
|
|
23886
|
+
*/
|
|
23887
|
+
status?: string;
|
|
23888
|
+
/**
|
|
23889
|
+
* @remarks
|
|
23890
|
+
* The task ID.
|
|
23891
|
+
*
|
|
23892
|
+
* @example
|
|
23893
|
+
* 16346513304
|
|
23894
|
+
*/
|
|
23895
|
+
taskId?: string;
|
|
23896
|
+
/**
|
|
23897
|
+
* @remarks
|
|
23898
|
+
* The type of the purge task. Valid values:
|
|
23899
|
+
*
|
|
23900
|
+
* * **file** (default): purges the cache by file.
|
|
23901
|
+
* * **cachetag**: purges the cache by cache tag.
|
|
23902
|
+
* * **directory**: purges the cache by directory.
|
|
23903
|
+
* * **ignoreParams**: purges the cache by URL with specified parameters ignored.
|
|
23904
|
+
* * **hostname**: purges the cache by hostname.
|
|
23905
|
+
* * **purgeall**: purges all cache.
|
|
23906
|
+
*
|
|
23907
|
+
* @example
|
|
23908
|
+
* file
|
|
23909
|
+
*/
|
|
23910
|
+
type?: string;
|
|
23911
|
+
static names(): {
|
|
23912
|
+
[key: string]: string;
|
|
23913
|
+
};
|
|
23914
|
+
static types(): {
|
|
23915
|
+
[key: string]: any;
|
|
23916
|
+
};
|
|
23917
|
+
constructor(map?: {
|
|
23918
|
+
[key: string]: any;
|
|
23919
|
+
});
|
|
23920
|
+
}
|
|
23921
|
+
export declare class GetCertificateResponseBodyResultDCV extends $tea.Model {
|
|
23922
|
+
/**
|
|
23923
|
+
* @remarks
|
|
23924
|
+
* DCV ID.
|
|
23925
|
+
*
|
|
23926
|
+
* @example
|
|
23927
|
+
* bababf7cdd1546a2ad04c0def1f4c980
|
|
23928
|
+
*/
|
|
23929
|
+
id?: string;
|
|
23930
|
+
/**
|
|
23931
|
+
* @example
|
|
23932
|
+
* http://www.example.com/.well-known/acme-challenge/pH20CqwS5L3ZnvkhI436DCzadKFuG7QcUcvB_4KsAow
|
|
23933
|
+
*/
|
|
23934
|
+
key?: string;
|
|
23935
|
+
/**
|
|
23936
|
+
* @example
|
|
23937
|
+
* pending
|
|
23938
|
+
*/
|
|
23939
|
+
status?: string;
|
|
23940
|
+
/**
|
|
23941
|
+
* @example
|
|
23942
|
+
* HTTP
|
|
23943
|
+
*/
|
|
23944
|
+
type?: string;
|
|
23945
|
+
/**
|
|
23946
|
+
* @example
|
|
23947
|
+
* pH20CqwS5L3ZnvkhI436DCzadKFuG7QcUcvB_4KsAow.KfzYo4LH3EgOt7a73G-RqZkbR0eYtLfEUmtmqGmr4FQ
|
|
23948
|
+
*/
|
|
23949
|
+
value?: string;
|
|
23950
|
+
static names(): {
|
|
23951
|
+
[key: string]: string;
|
|
23952
|
+
};
|
|
23953
|
+
static types(): {
|
|
23954
|
+
[key: string]: any;
|
|
23955
|
+
};
|
|
23956
|
+
constructor(map?: {
|
|
23957
|
+
[key: string]: any;
|
|
23958
|
+
});
|
|
23959
|
+
}
|
|
23960
|
+
export declare class GetCertificateResponseBodyResult extends $tea.Model {
|
|
23961
|
+
/**
|
|
23962
|
+
* @example
|
|
23963
|
+
* 2
|
|
23964
|
+
*/
|
|
23965
|
+
applyCode?: number;
|
|
23966
|
+
/**
|
|
23967
|
+
* @example
|
|
23968
|
+
* canceled
|
|
23969
|
+
*/
|
|
23970
|
+
applyMessage?: string;
|
|
23971
|
+
/**
|
|
23972
|
+
* @remarks
|
|
23973
|
+
* The certificate ID on Certificate Management Service.
|
|
23974
|
+
*
|
|
23975
|
+
* @example
|
|
23976
|
+
* 30000478
|
|
23977
|
+
*/
|
|
23978
|
+
casId?: string;
|
|
23979
|
+
/**
|
|
23980
|
+
* @remarks
|
|
23981
|
+
* The Common Name of the certificate.
|
|
23982
|
+
*
|
|
23983
|
+
* @example
|
|
23984
|
+
* www.example.com
|
|
23985
|
+
*/
|
|
23986
|
+
commonName?: string;
|
|
23987
|
+
/**
|
|
23988
|
+
* @remarks
|
|
23989
|
+
* The time when the certificate was created.
|
|
23990
|
+
*
|
|
23991
|
+
* @example
|
|
23992
|
+
* 2020-05-12 02:00:53
|
|
23993
|
+
*/
|
|
23994
|
+
createTime?: string;
|
|
23995
|
+
DCV?: GetCertificateResponseBodyResultDCV[];
|
|
23996
|
+
/**
|
|
23997
|
+
* @remarks
|
|
23998
|
+
* The SHA-256 fingerprint of the certificate.
|
|
23999
|
+
*
|
|
24000
|
+
* @example
|
|
24001
|
+
* 1dc5fc9af4eead2570c70d94b416130baeb6d4429b51fd3557379588456aca66
|
|
24002
|
+
*/
|
|
24003
|
+
fingerprintSha256?: string;
|
|
24004
|
+
/**
|
|
24005
|
+
* @remarks
|
|
24006
|
+
* The certificate ID on ESA.
|
|
24007
|
+
*
|
|
24008
|
+
* @example
|
|
24009
|
+
* babaded901474b9693acf530e0fb1d95
|
|
24010
|
+
*/
|
|
24011
|
+
id?: string;
|
|
24012
|
+
/**
|
|
24013
|
+
* @remarks
|
|
24014
|
+
* The certificate authority (CA) that issued the certificate.
|
|
24015
|
+
*
|
|
24016
|
+
* @example
|
|
24017
|
+
* DigiCert
|
|
24018
|
+
*/
|
|
24019
|
+
issuer?: string;
|
|
24020
|
+
/**
|
|
24021
|
+
* @remarks
|
|
24022
|
+
* The Common Name of the CA that issued the certificate.
|
|
24023
|
+
*
|
|
24024
|
+
* @example
|
|
24025
|
+
* DigiCert Global Root CA
|
|
24026
|
+
*/
|
|
24027
|
+
issuerCN?: string;
|
|
24028
|
+
/**
|
|
24029
|
+
* @remarks
|
|
24030
|
+
* The certificate name.
|
|
24031
|
+
*
|
|
24032
|
+
* @example
|
|
24033
|
+
* yourCertName
|
|
24034
|
+
*/
|
|
24035
|
+
name?: string;
|
|
24036
|
+
/**
|
|
24037
|
+
* @remarks
|
|
24038
|
+
* The time when the certificate expires.
|
|
24039
|
+
*
|
|
24040
|
+
* @example
|
|
24041
|
+
* 2023-11-26T16:00:00Z
|
|
24042
|
+
*/
|
|
24043
|
+
notAfter?: string;
|
|
24044
|
+
/**
|
|
24045
|
+
* @remarks
|
|
24046
|
+
* The time when the certificate takes effect.
|
|
24047
|
+
*
|
|
24048
|
+
* @example
|
|
24049
|
+
* 2023-11-26T16:00:00Z
|
|
24050
|
+
*/
|
|
24051
|
+
notBefore?: string;
|
|
24052
|
+
/**
|
|
24053
|
+
* @remarks
|
|
24054
|
+
* The public-key algorithm of the certificate.
|
|
24055
|
+
*
|
|
24056
|
+
* @example
|
|
24057
|
+
* ECDSA
|
|
24058
|
+
*/
|
|
24059
|
+
pubAlg?: string;
|
|
24060
|
+
/**
|
|
24061
|
+
* @remarks
|
|
24062
|
+
* The region.
|
|
24063
|
+
*
|
|
24064
|
+
* @example
|
|
24065
|
+
* cn-hangzhou
|
|
24066
|
+
*/
|
|
24067
|
+
region?: string;
|
|
24068
|
+
/**
|
|
24069
|
+
* @remarks
|
|
24070
|
+
* The Subject Alternative Name (SAN) of the certificate.
|
|
24071
|
+
*
|
|
24072
|
+
* @example
|
|
24073
|
+
* www.example.com,*.example.com
|
|
24074
|
+
*/
|
|
24075
|
+
SAN?: string;
|
|
24076
|
+
/**
|
|
24077
|
+
* @remarks
|
|
24078
|
+
* The serial number of the certificate.
|
|
22909
24079
|
*
|
|
22910
24080
|
* @example
|
|
22911
|
-
*
|
|
24081
|
+
* babaded901474b9693acf530e0fb1daa
|
|
22912
24082
|
*/
|
|
22913
|
-
|
|
24083
|
+
serialNumber?: string;
|
|
22914
24084
|
/**
|
|
22915
24085
|
* @remarks
|
|
22916
|
-
* The
|
|
24086
|
+
* The signature algorithm of the certificate.
|
|
22917
24087
|
*
|
|
22918
24088
|
* @example
|
|
22919
|
-
*
|
|
24089
|
+
* ECDSA-SHA1
|
|
22920
24090
|
*/
|
|
22921
|
-
|
|
24091
|
+
sigAlg?: string;
|
|
22922
24092
|
/**
|
|
22923
24093
|
* @remarks
|
|
22924
|
-
* The
|
|
22925
|
-
*
|
|
22926
|
-
* * **Complete**: The task is complete.
|
|
22927
|
-
* * **Refreshing**: The task is in progress.
|
|
22928
|
-
* * **Failed**: The task failed.
|
|
24094
|
+
* The certificate status.
|
|
22929
24095
|
*
|
|
22930
24096
|
* @example
|
|
22931
|
-
*
|
|
24097
|
+
* OK
|
|
22932
24098
|
*/
|
|
22933
24099
|
status?: string;
|
|
22934
24100
|
/**
|
|
22935
24101
|
* @remarks
|
|
22936
|
-
* The
|
|
24102
|
+
* The certificate type.
|
|
22937
24103
|
*
|
|
22938
24104
|
* @example
|
|
22939
|
-
*
|
|
24105
|
+
* free
|
|
22940
24106
|
*/
|
|
22941
|
-
|
|
24107
|
+
type?: string;
|
|
22942
24108
|
/**
|
|
22943
24109
|
* @remarks
|
|
22944
|
-
* The
|
|
22945
|
-
*
|
|
22946
|
-
* * **file** (default): purges the cache by file.
|
|
22947
|
-
* * **cachetag**: purges the cache by cache tag.
|
|
22948
|
-
* * **directory**: purges the cache by directory.
|
|
22949
|
-
* * **ignoreParams**: purges the cache by URL with specified parameters ignored.
|
|
22950
|
-
* * **hostname**: purges the cache by hostname.
|
|
22951
|
-
* * **purgeall**: purges all cache.
|
|
24110
|
+
* The time when the certificate was updated.
|
|
22952
24111
|
*
|
|
22953
24112
|
* @example
|
|
22954
|
-
*
|
|
24113
|
+
* 2022-09-22 05:33:13
|
|
22955
24114
|
*/
|
|
22956
|
-
|
|
24115
|
+
updateTime?: string;
|
|
22957
24116
|
static names(): {
|
|
22958
24117
|
[key: string]: string;
|
|
22959
24118
|
};
|
|
@@ -24047,6 +25206,94 @@ export declare class GetKvAccountResponseBodyNamespaceList extends $tea.Model {
|
|
|
24047
25206
|
[key: string]: any;
|
|
24048
25207
|
});
|
|
24049
25208
|
}
|
|
25209
|
+
export declare class GetOriginPoolResponseBodyOriginsAuthConf extends $tea.Model {
|
|
25210
|
+
accessKey?: string;
|
|
25211
|
+
authType?: string;
|
|
25212
|
+
region?: string;
|
|
25213
|
+
secretKey?: string;
|
|
25214
|
+
version?: string;
|
|
25215
|
+
static names(): {
|
|
25216
|
+
[key: string]: string;
|
|
25217
|
+
};
|
|
25218
|
+
static types(): {
|
|
25219
|
+
[key: string]: any;
|
|
25220
|
+
};
|
|
25221
|
+
constructor(map?: {
|
|
25222
|
+
[key: string]: any;
|
|
25223
|
+
});
|
|
25224
|
+
}
|
|
25225
|
+
export declare class GetOriginPoolResponseBodyOrigins extends $tea.Model {
|
|
25226
|
+
address?: string;
|
|
25227
|
+
authConf?: GetOriginPoolResponseBodyOriginsAuthConf;
|
|
25228
|
+
enabled?: boolean;
|
|
25229
|
+
header?: any;
|
|
25230
|
+
id?: number;
|
|
25231
|
+
name?: string;
|
|
25232
|
+
type?: string;
|
|
25233
|
+
weight?: number;
|
|
25234
|
+
static names(): {
|
|
25235
|
+
[key: string]: string;
|
|
25236
|
+
};
|
|
25237
|
+
static types(): {
|
|
25238
|
+
[key: string]: any;
|
|
25239
|
+
};
|
|
25240
|
+
constructor(map?: {
|
|
25241
|
+
[key: string]: any;
|
|
25242
|
+
});
|
|
25243
|
+
}
|
|
25244
|
+
export declare class GetOriginPoolResponseBodyReferencesDnsRecords extends $tea.Model {
|
|
25245
|
+
id?: number;
|
|
25246
|
+
name?: string;
|
|
25247
|
+
static names(): {
|
|
25248
|
+
[key: string]: string;
|
|
25249
|
+
};
|
|
25250
|
+
static types(): {
|
|
25251
|
+
[key: string]: any;
|
|
25252
|
+
};
|
|
25253
|
+
constructor(map?: {
|
|
25254
|
+
[key: string]: any;
|
|
25255
|
+
});
|
|
25256
|
+
}
|
|
25257
|
+
export declare class GetOriginPoolResponseBodyReferencesIPARecords extends $tea.Model {
|
|
25258
|
+
id?: number;
|
|
25259
|
+
name?: string;
|
|
25260
|
+
static names(): {
|
|
25261
|
+
[key: string]: string;
|
|
25262
|
+
};
|
|
25263
|
+
static types(): {
|
|
25264
|
+
[key: string]: any;
|
|
25265
|
+
};
|
|
25266
|
+
constructor(map?: {
|
|
25267
|
+
[key: string]: any;
|
|
25268
|
+
});
|
|
25269
|
+
}
|
|
25270
|
+
export declare class GetOriginPoolResponseBodyReferencesLoadBalancers extends $tea.Model {
|
|
25271
|
+
id?: number;
|
|
25272
|
+
name?: string;
|
|
25273
|
+
static names(): {
|
|
25274
|
+
[key: string]: string;
|
|
25275
|
+
};
|
|
25276
|
+
static types(): {
|
|
25277
|
+
[key: string]: any;
|
|
25278
|
+
};
|
|
25279
|
+
constructor(map?: {
|
|
25280
|
+
[key: string]: any;
|
|
25281
|
+
});
|
|
25282
|
+
}
|
|
25283
|
+
export declare class GetOriginPoolResponseBodyReferences extends $tea.Model {
|
|
25284
|
+
dnsRecords?: GetOriginPoolResponseBodyReferencesDnsRecords[];
|
|
25285
|
+
IPARecords?: GetOriginPoolResponseBodyReferencesIPARecords[];
|
|
25286
|
+
loadBalancers?: GetOriginPoolResponseBodyReferencesLoadBalancers[];
|
|
25287
|
+
static names(): {
|
|
25288
|
+
[key: string]: string;
|
|
25289
|
+
};
|
|
25290
|
+
static types(): {
|
|
25291
|
+
[key: string]: any;
|
|
25292
|
+
};
|
|
25293
|
+
constructor(map?: {
|
|
25294
|
+
[key: string]: any;
|
|
25295
|
+
});
|
|
25296
|
+
}
|
|
24050
25297
|
export declare class GetOriginProtectionResponseBodyCurrentIPWhitelist extends $tea.Model {
|
|
24051
25298
|
/**
|
|
24052
25299
|
* @remarks
|
|
@@ -25299,84 +26546,204 @@ export declare class GetWafQuotaResponseBodyQuota extends $tea.Model {
|
|
|
25299
26546
|
* @remarks
|
|
25300
26547
|
* The quota information about custom error pages.
|
|
25301
26548
|
*/
|
|
25302
|
-
page?: GetWafQuotaResponseBodyQuotaPage;
|
|
26549
|
+
page?: GetWafQuotaResponseBodyQuotaPage;
|
|
26550
|
+
/**
|
|
26551
|
+
* @remarks
|
|
26552
|
+
* The quota information about scenario-specific policies.
|
|
26553
|
+
*/
|
|
26554
|
+
scenePolicy?: GetWafQuotaResponseBodyQuotaScenePolicy;
|
|
26555
|
+
static names(): {
|
|
26556
|
+
[key: string]: string;
|
|
26557
|
+
};
|
|
26558
|
+
static types(): {
|
|
26559
|
+
[key: string]: any;
|
|
26560
|
+
};
|
|
26561
|
+
constructor(map?: {
|
|
26562
|
+
[key: string]: any;
|
|
26563
|
+
});
|
|
26564
|
+
}
|
|
26565
|
+
export declare class ListCacheReserveInstancesResponseBodyInstanceInfo extends $tea.Model {
|
|
26566
|
+
/**
|
|
26567
|
+
* @remarks
|
|
26568
|
+
* The capacity of the cache reserve instance. Unit: GB.
|
|
26569
|
+
*
|
|
26570
|
+
* @example
|
|
26571
|
+
* 512000
|
|
26572
|
+
*/
|
|
26573
|
+
cacheReserveCapacity?: string;
|
|
26574
|
+
/**
|
|
26575
|
+
* @remarks
|
|
26576
|
+
* The region in which the cache reserve instance resides.
|
|
26577
|
+
*
|
|
26578
|
+
* @example
|
|
26579
|
+
* HK
|
|
26580
|
+
*/
|
|
26581
|
+
cacheReserveRegion?: string;
|
|
26582
|
+
/**
|
|
26583
|
+
* @remarks
|
|
26584
|
+
* The time when the cache reserve instance was purchased.
|
|
26585
|
+
*
|
|
26586
|
+
* @example
|
|
26587
|
+
* 2024-04-12T05:41:51Z
|
|
26588
|
+
*/
|
|
26589
|
+
createTime?: string;
|
|
26590
|
+
/**
|
|
26591
|
+
* @remarks
|
|
26592
|
+
* The subscription period of the cache reserve instance. Unit: months.
|
|
26593
|
+
*
|
|
26594
|
+
* @example
|
|
26595
|
+
* 3
|
|
26596
|
+
*/
|
|
26597
|
+
duration?: number;
|
|
26598
|
+
/**
|
|
26599
|
+
* @remarks
|
|
26600
|
+
* The time when the cache reserve instance expires.
|
|
26601
|
+
*
|
|
26602
|
+
* @example
|
|
26603
|
+
* 2024-10-05T16:00:00Z
|
|
26604
|
+
*/
|
|
26605
|
+
expireTime?: string;
|
|
26606
|
+
/**
|
|
26607
|
+
* @remarks
|
|
26608
|
+
* The ID of the cache reserve instance.
|
|
26609
|
+
*
|
|
26610
|
+
* @example
|
|
26611
|
+
* sp-xcdn-96wblslz****
|
|
26612
|
+
*/
|
|
26613
|
+
instanceId?: string;
|
|
26614
|
+
/**
|
|
26615
|
+
* @remarks
|
|
26616
|
+
* The status of the cache reserve instance. Valid values:
|
|
26617
|
+
*
|
|
26618
|
+
* * online: The instance is in service.
|
|
26619
|
+
* * offline: The instance has expired within an allowable period. In this state, the plan is unavailable.
|
|
26620
|
+
* * disable: The instance is released.
|
|
26621
|
+
* * overdue: The service was stopped due to overdue payments.
|
|
26622
|
+
*
|
|
26623
|
+
* @example
|
|
26624
|
+
* online
|
|
26625
|
+
*/
|
|
26626
|
+
status?: string;
|
|
26627
|
+
static names(): {
|
|
26628
|
+
[key: string]: string;
|
|
26629
|
+
};
|
|
26630
|
+
static types(): {
|
|
26631
|
+
[key: string]: any;
|
|
26632
|
+
};
|
|
26633
|
+
constructor(map?: {
|
|
26634
|
+
[key: string]: any;
|
|
26635
|
+
});
|
|
26636
|
+
}
|
|
26637
|
+
export declare class ListCertificatesResponseBodyResultDCV extends $tea.Model {
|
|
26638
|
+
id?: string;
|
|
26639
|
+
key?: string;
|
|
26640
|
+
status?: string;
|
|
26641
|
+
type?: string;
|
|
26642
|
+
value?: string;
|
|
26643
|
+
static names(): {
|
|
26644
|
+
[key: string]: string;
|
|
26645
|
+
};
|
|
26646
|
+
static types(): {
|
|
26647
|
+
[key: string]: any;
|
|
26648
|
+
};
|
|
26649
|
+
constructor(map?: {
|
|
26650
|
+
[key: string]: any;
|
|
26651
|
+
});
|
|
26652
|
+
}
|
|
26653
|
+
export declare class ListCertificatesResponseBodyResult extends $tea.Model {
|
|
26654
|
+
applyCode?: number;
|
|
26655
|
+
applyMessage?: string;
|
|
26656
|
+
/**
|
|
26657
|
+
* @example
|
|
26658
|
+
* 30000569
|
|
26659
|
+
*/
|
|
26660
|
+
casId?: string;
|
|
26661
|
+
/**
|
|
26662
|
+
* @example
|
|
26663
|
+
* www.example.com
|
|
26664
|
+
*/
|
|
26665
|
+
commonName?: string;
|
|
26666
|
+
/**
|
|
26667
|
+
* @example
|
|
26668
|
+
* 2022-06-24 07:48:51
|
|
26669
|
+
*/
|
|
26670
|
+
createTime?: string;
|
|
26671
|
+
DCV?: ListCertificatesResponseBodyResultDCV[];
|
|
26672
|
+
/**
|
|
26673
|
+
* @example
|
|
26674
|
+
* 1dc5fc9af4eead2570c70d94b416130baeb6d4429b51fd3557379588456a****
|
|
26675
|
+
*/
|
|
26676
|
+
fingerprintSha256?: string;
|
|
26677
|
+
/**
|
|
26678
|
+
* @example
|
|
26679
|
+
* baba39055622c008b90285a8838e****
|
|
26680
|
+
*/
|
|
26681
|
+
id?: string;
|
|
26682
|
+
/**
|
|
26683
|
+
* @example
|
|
26684
|
+
* GlobalSign nv-sa
|
|
26685
|
+
*/
|
|
26686
|
+
issuer?: string;
|
|
26687
|
+
/**
|
|
26688
|
+
* @example
|
|
26689
|
+
* GlobalSign Organization Validation CA - SHA256 - G3
|
|
26690
|
+
*/
|
|
26691
|
+
issuerCN?: string;
|
|
26692
|
+
/**
|
|
26693
|
+
* @example
|
|
26694
|
+
* yourCertName
|
|
26695
|
+
*/
|
|
26696
|
+
name?: string;
|
|
26697
|
+
/**
|
|
26698
|
+
* @example
|
|
26699
|
+
* 2024-03-31 02:08:00
|
|
26700
|
+
*/
|
|
26701
|
+
notAfter?: string;
|
|
26702
|
+
/**
|
|
26703
|
+
* @example
|
|
26704
|
+
* 2023-03-31 02:08:00
|
|
26705
|
+
*/
|
|
26706
|
+
notBefore?: string;
|
|
25303
26707
|
/**
|
|
25304
|
-
* @
|
|
25305
|
-
*
|
|
26708
|
+
* @example
|
|
26709
|
+
* RSA
|
|
25306
26710
|
*/
|
|
25307
|
-
|
|
25308
|
-
static names(): {
|
|
25309
|
-
[key: string]: string;
|
|
25310
|
-
};
|
|
25311
|
-
static types(): {
|
|
25312
|
-
[key: string]: any;
|
|
25313
|
-
};
|
|
25314
|
-
constructor(map?: {
|
|
25315
|
-
[key: string]: any;
|
|
25316
|
-
});
|
|
25317
|
-
}
|
|
25318
|
-
export declare class ListCacheReserveInstancesResponseBodyInstanceInfo extends $tea.Model {
|
|
26711
|
+
pubAlg?: string;
|
|
25319
26712
|
/**
|
|
25320
|
-
* @remarks
|
|
25321
|
-
* The capacity of the cache reserve instance. Unit: GB.
|
|
25322
|
-
*
|
|
25323
26713
|
* @example
|
|
25324
|
-
*
|
|
26714
|
+
* cn-hangzhou
|
|
25325
26715
|
*/
|
|
25326
|
-
|
|
26716
|
+
region?: string;
|
|
25327
26717
|
/**
|
|
25328
|
-
* @remarks
|
|
25329
|
-
* The region in which the cache reserve instance resides.
|
|
25330
|
-
*
|
|
25331
26718
|
* @example
|
|
25332
|
-
*
|
|
26719
|
+
* www.example.com,*.example.com
|
|
25333
26720
|
*/
|
|
25334
|
-
|
|
26721
|
+
SAN?: string;
|
|
25335
26722
|
/**
|
|
25336
|
-
* @remarks
|
|
25337
|
-
* The time when the cache reserve instance was purchased.
|
|
25338
|
-
*
|
|
25339
26723
|
* @example
|
|
25340
|
-
*
|
|
26724
|
+
* babab022c5e9b27bf9c64d7f4b16****
|
|
25341
26725
|
*/
|
|
25342
|
-
|
|
26726
|
+
serialNumber?: string;
|
|
25343
26727
|
/**
|
|
25344
|
-
* @remarks
|
|
25345
|
-
* The subscription period of the cache reserve instance. Unit: months.
|
|
25346
|
-
*
|
|
25347
26728
|
* @example
|
|
25348
|
-
*
|
|
26729
|
+
* SHA256-RSA
|
|
25349
26730
|
*/
|
|
25350
|
-
|
|
26731
|
+
sigAlg?: string;
|
|
25351
26732
|
/**
|
|
25352
|
-
* @remarks
|
|
25353
|
-
* The time when the cache reserve instance expires.
|
|
25354
|
-
*
|
|
25355
26733
|
* @example
|
|
25356
|
-
*
|
|
26734
|
+
* OK
|
|
25357
26735
|
*/
|
|
25358
|
-
|
|
26736
|
+
status?: string;
|
|
25359
26737
|
/**
|
|
25360
|
-
* @remarks
|
|
25361
|
-
* The ID of the cache reserve instance.
|
|
25362
|
-
*
|
|
25363
26738
|
* @example
|
|
25364
|
-
*
|
|
26739
|
+
* free
|
|
25365
26740
|
*/
|
|
25366
|
-
|
|
26741
|
+
type?: string;
|
|
25367
26742
|
/**
|
|
25368
|
-
* @remarks
|
|
25369
|
-
* The status of the cache reserve instance. Valid values:
|
|
25370
|
-
*
|
|
25371
|
-
* * online: The instance is in service.
|
|
25372
|
-
* * offline: The instance has expired within an allowable period. In this state, the plan is unavailable.
|
|
25373
|
-
* * disable: The instance is released.
|
|
25374
|
-
* * overdue: The service was stopped due to overdue payments.
|
|
25375
|
-
*
|
|
25376
26743
|
* @example
|
|
25377
|
-
*
|
|
26744
|
+
* 2023-04-20 06:18:42
|
|
25378
26745
|
*/
|
|
25379
|
-
|
|
26746
|
+
updateTime?: string;
|
|
25380
26747
|
static names(): {
|
|
25381
26748
|
[key: string]: string;
|
|
25382
26749
|
};
|
|
@@ -26763,6 +28130,113 @@ export declare class ListManagedRulesGroupsResponseBodyManagedRulesGroups extend
|
|
|
26763
28130
|
[key: string]: any;
|
|
26764
28131
|
});
|
|
26765
28132
|
}
|
|
28133
|
+
export declare class ListOriginPoolsResponseBodyOriginPoolsOriginsAuthConf extends $tea.Model {
|
|
28134
|
+
accessKey?: string;
|
|
28135
|
+
authType?: string;
|
|
28136
|
+
region?: string;
|
|
28137
|
+
secretKey?: string;
|
|
28138
|
+
version?: string;
|
|
28139
|
+
static names(): {
|
|
28140
|
+
[key: string]: string;
|
|
28141
|
+
};
|
|
28142
|
+
static types(): {
|
|
28143
|
+
[key: string]: any;
|
|
28144
|
+
};
|
|
28145
|
+
constructor(map?: {
|
|
28146
|
+
[key: string]: any;
|
|
28147
|
+
});
|
|
28148
|
+
}
|
|
28149
|
+
export declare class ListOriginPoolsResponseBodyOriginPoolsOrigins extends $tea.Model {
|
|
28150
|
+
address?: string;
|
|
28151
|
+
authConf?: ListOriginPoolsResponseBodyOriginPoolsOriginsAuthConf;
|
|
28152
|
+
enabled?: boolean;
|
|
28153
|
+
header?: any;
|
|
28154
|
+
id?: number;
|
|
28155
|
+
name?: string;
|
|
28156
|
+
type?: string;
|
|
28157
|
+
weight?: number;
|
|
28158
|
+
static names(): {
|
|
28159
|
+
[key: string]: string;
|
|
28160
|
+
};
|
|
28161
|
+
static types(): {
|
|
28162
|
+
[key: string]: any;
|
|
28163
|
+
};
|
|
28164
|
+
constructor(map?: {
|
|
28165
|
+
[key: string]: any;
|
|
28166
|
+
});
|
|
28167
|
+
}
|
|
28168
|
+
export declare class ListOriginPoolsResponseBodyOriginPoolsReferencesDnsRecords extends $tea.Model {
|
|
28169
|
+
id?: number;
|
|
28170
|
+
name?: string;
|
|
28171
|
+
static names(): {
|
|
28172
|
+
[key: string]: string;
|
|
28173
|
+
};
|
|
28174
|
+
static types(): {
|
|
28175
|
+
[key: string]: any;
|
|
28176
|
+
};
|
|
28177
|
+
constructor(map?: {
|
|
28178
|
+
[key: string]: any;
|
|
28179
|
+
});
|
|
28180
|
+
}
|
|
28181
|
+
export declare class ListOriginPoolsResponseBodyOriginPoolsReferencesIPARecords extends $tea.Model {
|
|
28182
|
+
id?: number;
|
|
28183
|
+
name?: string;
|
|
28184
|
+
static names(): {
|
|
28185
|
+
[key: string]: string;
|
|
28186
|
+
};
|
|
28187
|
+
static types(): {
|
|
28188
|
+
[key: string]: any;
|
|
28189
|
+
};
|
|
28190
|
+
constructor(map?: {
|
|
28191
|
+
[key: string]: any;
|
|
28192
|
+
});
|
|
28193
|
+
}
|
|
28194
|
+
export declare class ListOriginPoolsResponseBodyOriginPoolsReferencesLoadBalancers extends $tea.Model {
|
|
28195
|
+
id?: number;
|
|
28196
|
+
name?: string;
|
|
28197
|
+
static names(): {
|
|
28198
|
+
[key: string]: string;
|
|
28199
|
+
};
|
|
28200
|
+
static types(): {
|
|
28201
|
+
[key: string]: any;
|
|
28202
|
+
};
|
|
28203
|
+
constructor(map?: {
|
|
28204
|
+
[key: string]: any;
|
|
28205
|
+
});
|
|
28206
|
+
}
|
|
28207
|
+
export declare class ListOriginPoolsResponseBodyOriginPoolsReferences extends $tea.Model {
|
|
28208
|
+
dnsRecords?: ListOriginPoolsResponseBodyOriginPoolsReferencesDnsRecords[];
|
|
28209
|
+
IPARecords?: ListOriginPoolsResponseBodyOriginPoolsReferencesIPARecords[];
|
|
28210
|
+
loadBalancers?: ListOriginPoolsResponseBodyOriginPoolsReferencesLoadBalancers[];
|
|
28211
|
+
static names(): {
|
|
28212
|
+
[key: string]: string;
|
|
28213
|
+
};
|
|
28214
|
+
static types(): {
|
|
28215
|
+
[key: string]: any;
|
|
28216
|
+
};
|
|
28217
|
+
constructor(map?: {
|
|
28218
|
+
[key: string]: any;
|
|
28219
|
+
});
|
|
28220
|
+
}
|
|
28221
|
+
export declare class ListOriginPoolsResponseBodyOriginPools extends $tea.Model {
|
|
28222
|
+
enabled?: boolean;
|
|
28223
|
+
id?: number;
|
|
28224
|
+
name?: string;
|
|
28225
|
+
origins?: ListOriginPoolsResponseBodyOriginPoolsOrigins[];
|
|
28226
|
+
recordName?: string;
|
|
28227
|
+
referenceLBCount?: number;
|
|
28228
|
+
references?: ListOriginPoolsResponseBodyOriginPoolsReferences;
|
|
28229
|
+
siteId?: number;
|
|
28230
|
+
static names(): {
|
|
28231
|
+
[key: string]: string;
|
|
28232
|
+
};
|
|
28233
|
+
static types(): {
|
|
28234
|
+
[key: string]: any;
|
|
28235
|
+
};
|
|
28236
|
+
constructor(map?: {
|
|
28237
|
+
[key: string]: any;
|
|
28238
|
+
});
|
|
28239
|
+
}
|
|
26766
28240
|
export declare class ListPagesResponseBodyPages extends $tea.Model {
|
|
26767
28241
|
/**
|
|
26768
28242
|
* @remarks
|
|
@@ -28766,6 +30240,40 @@ export declare class PurgeCachesRequestContent extends $tea.Model {
|
|
|
28766
30240
|
[key: string]: any;
|
|
28767
30241
|
});
|
|
28768
30242
|
}
|
|
30243
|
+
export declare class UpdateOriginPoolRequestOriginsAuthConf extends $tea.Model {
|
|
30244
|
+
accessKey?: string;
|
|
30245
|
+
authType?: string;
|
|
30246
|
+
region?: string;
|
|
30247
|
+
secretKey?: string;
|
|
30248
|
+
version?: string;
|
|
30249
|
+
static names(): {
|
|
30250
|
+
[key: string]: string;
|
|
30251
|
+
};
|
|
30252
|
+
static types(): {
|
|
30253
|
+
[key: string]: any;
|
|
30254
|
+
};
|
|
30255
|
+
constructor(map?: {
|
|
30256
|
+
[key: string]: any;
|
|
30257
|
+
});
|
|
30258
|
+
}
|
|
30259
|
+
export declare class UpdateOriginPoolRequestOrigins extends $tea.Model {
|
|
30260
|
+
address?: string;
|
|
30261
|
+
authConf?: UpdateOriginPoolRequestOriginsAuthConf;
|
|
30262
|
+
enabled?: boolean;
|
|
30263
|
+
header?: any;
|
|
30264
|
+
name?: string;
|
|
30265
|
+
type?: string;
|
|
30266
|
+
weight?: number;
|
|
30267
|
+
static names(): {
|
|
30268
|
+
[key: string]: string;
|
|
30269
|
+
};
|
|
30270
|
+
static types(): {
|
|
30271
|
+
[key: string]: any;
|
|
30272
|
+
};
|
|
30273
|
+
constructor(map?: {
|
|
30274
|
+
[key: string]: any;
|
|
30275
|
+
});
|
|
30276
|
+
}
|
|
28769
30277
|
export declare class UpdateRecordRequestAuthConf extends $tea.Model {
|
|
28770
30278
|
/**
|
|
28771
30279
|
* @remarks
|
|
@@ -29013,6 +30521,21 @@ export default class Client extends OpenApi {
|
|
|
29013
30521
|
* @returns ActivateClientCertificateResponse
|
|
29014
30522
|
*/
|
|
29015
30523
|
activateClientCertificate(request: ActivateClientCertificateRequest): Promise<ActivateClientCertificateResponse>;
|
|
30524
|
+
/**
|
|
30525
|
+
* 申请免费证书
|
|
30526
|
+
*
|
|
30527
|
+
* @param request - ApplyCertificateRequest
|
|
30528
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
30529
|
+
* @returns ApplyCertificateResponse
|
|
30530
|
+
*/
|
|
30531
|
+
applyCertificateWithOptions(request: ApplyCertificateRequest, runtime: $Util.RuntimeOptions): Promise<ApplyCertificateResponse>;
|
|
30532
|
+
/**
|
|
30533
|
+
* 申请免费证书
|
|
30534
|
+
*
|
|
30535
|
+
* @param request - ApplyCertificateRequest
|
|
30536
|
+
* @returns ApplyCertificateResponse
|
|
30537
|
+
*/
|
|
30538
|
+
applyCertificate(request: ApplyCertificateRequest): Promise<ApplyCertificateResponse>;
|
|
29016
30539
|
/**
|
|
29017
30540
|
* Adds DNS records of different record types at a time..
|
|
29018
30541
|
*
|
|
@@ -29472,6 +30995,21 @@ export default class Client extends OpenApi {
|
|
|
29472
30995
|
* @returns CreateListResponse
|
|
29473
30996
|
*/
|
|
29474
30997
|
createList(request: CreateListRequest): Promise<CreateListResponse>;
|
|
30998
|
+
/**
|
|
30999
|
+
* 新增源地址池
|
|
31000
|
+
*
|
|
31001
|
+
* @param tmpReq - CreateOriginPoolRequest
|
|
31002
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
31003
|
+
* @returns CreateOriginPoolResponse
|
|
31004
|
+
*/
|
|
31005
|
+
createOriginPoolWithOptions(tmpReq: CreateOriginPoolRequest, runtime: $Util.RuntimeOptions): Promise<CreateOriginPoolResponse>;
|
|
31006
|
+
/**
|
|
31007
|
+
* 新增源地址池
|
|
31008
|
+
*
|
|
31009
|
+
* @param request - CreateOriginPoolRequest
|
|
31010
|
+
* @returns CreateOriginPoolResponse
|
|
31011
|
+
*/
|
|
31012
|
+
createOriginPool(request: CreateOriginPoolRequest): Promise<CreateOriginPoolResponse>;
|
|
29475
31013
|
/**
|
|
29476
31014
|
* Enables origin protection.
|
|
29477
31015
|
*
|
|
@@ -29887,6 +31425,21 @@ export default class Client extends OpenApi {
|
|
|
29887
31425
|
* @returns DeleteListResponse
|
|
29888
31426
|
*/
|
|
29889
31427
|
deleteList(request: DeleteListRequest): Promise<DeleteListResponse>;
|
|
31428
|
+
/**
|
|
31429
|
+
* 删除源地址池
|
|
31430
|
+
*
|
|
31431
|
+
* @param request - DeleteOriginPoolRequest
|
|
31432
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
31433
|
+
* @returns DeleteOriginPoolResponse
|
|
31434
|
+
*/
|
|
31435
|
+
deleteOriginPoolWithOptions(request: DeleteOriginPoolRequest, runtime: $Util.RuntimeOptions): Promise<DeleteOriginPoolResponse>;
|
|
31436
|
+
/**
|
|
31437
|
+
* 删除源地址池
|
|
31438
|
+
*
|
|
31439
|
+
* @param request - DeleteOriginPoolRequest
|
|
31440
|
+
* @returns DeleteOriginPoolResponse
|
|
31441
|
+
*/
|
|
31442
|
+
deleteOriginPool(request: DeleteOriginPoolRequest): Promise<DeleteOriginPoolResponse>;
|
|
29890
31443
|
/**
|
|
29891
31444
|
* Disables origin protection.
|
|
29892
31445
|
*
|
|
@@ -30154,6 +31707,36 @@ export default class Client extends OpenApi {
|
|
|
30154
31707
|
* @returns DescribeDDoSAllEventListResponse
|
|
30155
31708
|
*/
|
|
30156
31709
|
describeDDoSAllEventList(request: DescribeDDoSAllEventListRequest): Promise<DescribeDDoSAllEventListResponse>;
|
|
31710
|
+
/**
|
|
31711
|
+
* 查询DCDN DDoS用户bps、pps数据
|
|
31712
|
+
*
|
|
31713
|
+
* @param request - DescribeDDoSBpsListRequest
|
|
31714
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
31715
|
+
* @returns DescribeDDoSBpsListResponse
|
|
31716
|
+
*/
|
|
31717
|
+
describeDDoSBpsListWithOptions(request: DescribeDDoSBpsListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDDoSBpsListResponse>;
|
|
31718
|
+
/**
|
|
31719
|
+
* 查询DCDN DDoS用户bps、pps数据
|
|
31720
|
+
*
|
|
31721
|
+
* @param request - DescribeDDoSBpsListRequest
|
|
31722
|
+
* @returns DescribeDDoSBpsListResponse
|
|
31723
|
+
*/
|
|
31724
|
+
describeDDoSBpsList(request: DescribeDDoSBpsListRequest): Promise<DescribeDDoSBpsListResponse>;
|
|
31725
|
+
/**
|
|
31726
|
+
* ddos分析七层qps走势图接口
|
|
31727
|
+
*
|
|
31728
|
+
* @param request - DescribeDDoSL7QpsListRequest
|
|
31729
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
31730
|
+
* @returns DescribeDDoSL7QpsListResponse
|
|
31731
|
+
*/
|
|
31732
|
+
describeDDoSL7QpsListWithOptions(request: DescribeDDoSL7QpsListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDDoSL7QpsListResponse>;
|
|
31733
|
+
/**
|
|
31734
|
+
* ddos分析七层qps走势图接口
|
|
31735
|
+
*
|
|
31736
|
+
* @param request - DescribeDDoSL7QpsListRequest
|
|
31737
|
+
* @returns DescribeDDoSL7QpsListResponse
|
|
31738
|
+
*/
|
|
31739
|
+
describeDDoSL7QpsList(request: DescribeDDoSL7QpsListRequest): Promise<DescribeDDoSL7QpsListResponse>;
|
|
30157
31740
|
/**
|
|
30158
31741
|
* Queries the configuration of smart HTTP DDoS protection for a website.
|
|
30159
31742
|
*
|
|
@@ -30300,6 +31883,21 @@ export default class Client extends OpenApi {
|
|
|
30300
31883
|
* @returns GetCacheReserveSpecificationResponse
|
|
30301
31884
|
*/
|
|
30302
31885
|
getCacheReserveSpecification(): Promise<GetCacheReserveSpecificationResponse>;
|
|
31886
|
+
/**
|
|
31887
|
+
* Queries certificate information about a website.
|
|
31888
|
+
*
|
|
31889
|
+
* @param request - GetCertificateRequest
|
|
31890
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
31891
|
+
* @returns GetCertificateResponse
|
|
31892
|
+
*/
|
|
31893
|
+
getCertificateWithOptions(request: GetCertificateRequest, runtime: $Util.RuntimeOptions): Promise<GetCertificateResponse>;
|
|
31894
|
+
/**
|
|
31895
|
+
* Queries certificate information about a website.
|
|
31896
|
+
*
|
|
31897
|
+
* @param request - GetCertificateRequest
|
|
31898
|
+
* @returns GetCertificateResponse
|
|
31899
|
+
*/
|
|
31900
|
+
getCertificate(request: GetCertificateRequest): Promise<GetCertificateResponse>;
|
|
30303
31901
|
/**
|
|
30304
31902
|
* 查询证书quota及用量
|
|
30305
31903
|
*
|
|
@@ -30523,6 +32121,21 @@ export default class Client extends OpenApi {
|
|
|
30523
32121
|
* @returns GetListResponse
|
|
30524
32122
|
*/
|
|
30525
32123
|
getList(request: GetListRequest): Promise<GetListResponse>;
|
|
32124
|
+
/**
|
|
32125
|
+
* 查询特定源地址池
|
|
32126
|
+
*
|
|
32127
|
+
* @param request - GetOriginPoolRequest
|
|
32128
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
32129
|
+
* @returns GetOriginPoolResponse
|
|
32130
|
+
*/
|
|
32131
|
+
getOriginPoolWithOptions(request: GetOriginPoolRequest, runtime: $Util.RuntimeOptions): Promise<GetOriginPoolResponse>;
|
|
32132
|
+
/**
|
|
32133
|
+
* 查询特定源地址池
|
|
32134
|
+
*
|
|
32135
|
+
* @param request - GetOriginPoolRequest
|
|
32136
|
+
* @returns GetOriginPoolResponse
|
|
32137
|
+
*/
|
|
32138
|
+
getOriginPool(request: GetOriginPoolRequest): Promise<GetOriginPoolResponse>;
|
|
30526
32139
|
/**
|
|
30527
32140
|
* Queries the origin protection configurations of a website, including the origin protection, IP convergence, and the status and details of the IP whitelist for origin protection. The details includes the IP whitelist used by the website, the latest IP whitelist, and the differences between them.
|
|
30528
32141
|
*
|
|
@@ -30914,6 +32527,21 @@ export default class Client extends OpenApi {
|
|
|
30914
32527
|
* @returns ListCacheReserveInstancesResponse
|
|
30915
32528
|
*/
|
|
30916
32529
|
listCacheReserveInstances(request: ListCacheReserveInstancesRequest): Promise<ListCacheReserveInstancesResponse>;
|
|
32530
|
+
/**
|
|
32531
|
+
* 查询站点下证书列表
|
|
32532
|
+
*
|
|
32533
|
+
* @param request - ListCertificatesRequest
|
|
32534
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
32535
|
+
* @returns ListCertificatesResponse
|
|
32536
|
+
*/
|
|
32537
|
+
listCertificatesWithOptions(request: ListCertificatesRequest, runtime: $Util.RuntimeOptions): Promise<ListCertificatesResponse>;
|
|
32538
|
+
/**
|
|
32539
|
+
* 查询站点下证书列表
|
|
32540
|
+
*
|
|
32541
|
+
* @param request - ListCertificatesRequest
|
|
32542
|
+
* @returns ListCertificatesResponse
|
|
32543
|
+
*/
|
|
32544
|
+
listCertificates(request: ListCertificatesRequest): Promise<ListCertificatesResponse>;
|
|
30917
32545
|
/**
|
|
30918
32546
|
* 查询TLS密码套件列表
|
|
30919
32547
|
*
|
|
@@ -31149,6 +32777,21 @@ export default class Client extends OpenApi {
|
|
|
31149
32777
|
* @returns ListManagedRulesGroupsResponse
|
|
31150
32778
|
*/
|
|
31151
32779
|
listManagedRulesGroups(request: ListManagedRulesGroupsRequest): Promise<ListManagedRulesGroupsResponse>;
|
|
32780
|
+
/**
|
|
32781
|
+
* 查询源地址池列表
|
|
32782
|
+
*
|
|
32783
|
+
* @param request - ListOriginPoolsRequest
|
|
32784
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
32785
|
+
* @returns ListOriginPoolsResponse
|
|
32786
|
+
*/
|
|
32787
|
+
listOriginPoolsWithOptions(request: ListOriginPoolsRequest, runtime: $Util.RuntimeOptions): Promise<ListOriginPoolsResponse>;
|
|
32788
|
+
/**
|
|
32789
|
+
* 查询源地址池列表
|
|
32790
|
+
*
|
|
32791
|
+
* @param request - ListOriginPoolsRequest
|
|
32792
|
+
* @returns ListOriginPoolsResponse
|
|
32793
|
+
*/
|
|
32794
|
+
listOriginPools(request: ListOriginPoolsRequest): Promise<ListOriginPoolsResponse>;
|
|
31152
32795
|
/**
|
|
31153
32796
|
* Lists all custom error pages that you created. You can define the page number and the number of entries per page to display the response.
|
|
31154
32797
|
*
|
|
@@ -31822,6 +33465,21 @@ export default class Client extends OpenApi {
|
|
|
31822
33465
|
* @returns UpdateKvNamespaceResponse
|
|
31823
33466
|
*/
|
|
31824
33467
|
updateKvNamespace(request: UpdateKvNamespaceRequest): Promise<UpdateKvNamespaceResponse>;
|
|
33468
|
+
/**
|
|
33469
|
+
* 修改监视器
|
|
33470
|
+
*
|
|
33471
|
+
* @param tmpReq - UpdateOriginPoolRequest
|
|
33472
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
33473
|
+
* @returns UpdateOriginPoolResponse
|
|
33474
|
+
*/
|
|
33475
|
+
updateOriginPoolWithOptions(tmpReq: UpdateOriginPoolRequest, runtime: $Util.RuntimeOptions): Promise<UpdateOriginPoolResponse>;
|
|
33476
|
+
/**
|
|
33477
|
+
* 修改监视器
|
|
33478
|
+
*
|
|
33479
|
+
* @param request - UpdateOriginPoolRequest
|
|
33480
|
+
* @returns UpdateOriginPoolResponse
|
|
33481
|
+
*/
|
|
33482
|
+
updateOriginPool(request: UpdateOriginPoolRequest): Promise<UpdateOriginPoolResponse>;
|
|
31825
33483
|
/**
|
|
31826
33484
|
* Enables or disables IP convergence.
|
|
31827
33485
|
*
|