@alicloud/esa20240910 2.8.0 → 2.8.2
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 +280 -10
- package/dist/client.js +137 -14
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +350 -10
package/dist/client.d.ts
CHANGED
|
@@ -63,11 +63,13 @@ export declare class WafRuleConfig extends $tea.Model {
|
|
|
63
63
|
managedRulesets?: WafRuleConfigManagedRulesets[];
|
|
64
64
|
match?: WafRuleMatch;
|
|
65
65
|
name?: string;
|
|
66
|
+
notes?: string;
|
|
66
67
|
rateLimit?: WafRuleConfigRateLimit;
|
|
67
68
|
sigchl?: string[];
|
|
68
69
|
status?: string;
|
|
69
70
|
timer?: WafTimer;
|
|
70
71
|
type?: string;
|
|
72
|
+
value?: string;
|
|
71
73
|
static names(): {
|
|
72
74
|
[key: string]: string;
|
|
73
75
|
};
|
|
@@ -117,6 +119,7 @@ export declare class WafRuleMatch2 extends $tea.Model {
|
|
|
117
119
|
export declare class WafSiteSettings extends $tea.Model {
|
|
118
120
|
addBotProtectionHeaders?: WafSiteSettingsAddBotProtectionHeaders;
|
|
119
121
|
addSecurityHeaders?: WafSiteSettingsAddSecurityHeaders;
|
|
122
|
+
botManagement?: WafSiteSettingsBotManagement;
|
|
120
123
|
clientIpIdentifier?: WafSiteSettingsClientIpIdentifier;
|
|
121
124
|
securityLevel?: WafSiteSettingsSecurityLevel;
|
|
122
125
|
static names(): {
|
|
@@ -5504,6 +5507,8 @@ export declare class CreateWaitingRoomRuleResponse extends $tea.Model {
|
|
|
5504
5507
|
export declare class DeleteCertificateRequest extends $tea.Model {
|
|
5505
5508
|
/**
|
|
5506
5509
|
* @remarks
|
|
5510
|
+
* The certificate ID.
|
|
5511
|
+
*
|
|
5507
5512
|
* This parameter is required.
|
|
5508
5513
|
*
|
|
5509
5514
|
* @example
|
|
@@ -5512,6 +5517,8 @@ export declare class DeleteCertificateRequest extends $tea.Model {
|
|
|
5512
5517
|
id?: string;
|
|
5513
5518
|
/**
|
|
5514
5519
|
* @remarks
|
|
5520
|
+
* The website ID, which can be obtained by calling the [ListSites](~~ListSites~~) operation.
|
|
5521
|
+
*
|
|
5515
5522
|
* This parameter is required.
|
|
5516
5523
|
*
|
|
5517
5524
|
* @example
|
|
@@ -5530,21 +5537,33 @@ export declare class DeleteCertificateRequest extends $tea.Model {
|
|
|
5530
5537
|
}
|
|
5531
5538
|
export declare class DeleteCertificateResponseBody extends $tea.Model {
|
|
5532
5539
|
/**
|
|
5540
|
+
* @remarks
|
|
5541
|
+
* The certificate ID.
|
|
5542
|
+
*
|
|
5533
5543
|
* @example
|
|
5534
5544
|
* babaded901474b9693acf530e0fb1d95
|
|
5535
5545
|
*/
|
|
5536
5546
|
id?: string;
|
|
5537
5547
|
/**
|
|
5548
|
+
* @remarks
|
|
5549
|
+
* The request ID.
|
|
5550
|
+
*
|
|
5538
5551
|
* @example
|
|
5539
5552
|
* F32C57AA-7BF8-49AE-A2CC-9F42390F5A19
|
|
5540
5553
|
*/
|
|
5541
5554
|
requestId?: string;
|
|
5542
5555
|
/**
|
|
5556
|
+
* @remarks
|
|
5557
|
+
* The website ID.
|
|
5558
|
+
*
|
|
5543
5559
|
* @example
|
|
5544
5560
|
* 1234567890123
|
|
5545
5561
|
*/
|
|
5546
5562
|
siteId?: number;
|
|
5547
5563
|
/**
|
|
5564
|
+
* @remarks
|
|
5565
|
+
* The website name.
|
|
5566
|
+
*
|
|
5548
5567
|
* @example
|
|
5549
5568
|
* example.com
|
|
5550
5569
|
*/
|
|
@@ -5578,6 +5597,8 @@ export declare class DeleteCertificateResponse extends $tea.Model {
|
|
|
5578
5597
|
export declare class DeleteClientCaCertificateRequest extends $tea.Model {
|
|
5579
5598
|
/**
|
|
5580
5599
|
* @remarks
|
|
5600
|
+
* The certificate ID.
|
|
5601
|
+
*
|
|
5581
5602
|
* This parameter is required.
|
|
5582
5603
|
*
|
|
5583
5604
|
* @example
|
|
@@ -5586,6 +5607,8 @@ export declare class DeleteClientCaCertificateRequest extends $tea.Model {
|
|
|
5586
5607
|
id?: string;
|
|
5587
5608
|
/**
|
|
5588
5609
|
* @remarks
|
|
5610
|
+
* The website ID.
|
|
5611
|
+
*
|
|
5589
5612
|
* This parameter is required.
|
|
5590
5613
|
*
|
|
5591
5614
|
* @example
|
|
@@ -5604,21 +5627,33 @@ export declare class DeleteClientCaCertificateRequest extends $tea.Model {
|
|
|
5604
5627
|
}
|
|
5605
5628
|
export declare class DeleteClientCaCertificateResponseBody extends $tea.Model {
|
|
5606
5629
|
/**
|
|
5630
|
+
* @remarks
|
|
5631
|
+
* The certificate ID.
|
|
5632
|
+
*
|
|
5607
5633
|
* @example
|
|
5608
5634
|
* baba39055622c008b90285a8838ed09a
|
|
5609
5635
|
*/
|
|
5610
5636
|
id?: string;
|
|
5611
5637
|
/**
|
|
5638
|
+
* @remarks
|
|
5639
|
+
* The request ID.
|
|
5640
|
+
*
|
|
5612
5641
|
* @example
|
|
5613
5642
|
* CB1A380B-09F0-41BB-280B-72F8FD6DA2FE
|
|
5614
5643
|
*/
|
|
5615
5644
|
requestId?: string;
|
|
5616
5645
|
/**
|
|
5646
|
+
* @remarks
|
|
5647
|
+
* The website ID.
|
|
5648
|
+
*
|
|
5617
5649
|
* @example
|
|
5618
5650
|
* 1234567890123
|
|
5619
5651
|
*/
|
|
5620
5652
|
siteId?: number;
|
|
5621
5653
|
/**
|
|
5654
|
+
* @remarks
|
|
5655
|
+
* The website name.
|
|
5656
|
+
*
|
|
5622
5657
|
* @example
|
|
5623
5658
|
* example.com
|
|
5624
5659
|
*/
|
|
@@ -8557,6 +8592,8 @@ export declare class GetClientCaCertificateResponse extends $tea.Model {
|
|
|
8557
8592
|
export declare class GetClientCertificateRequest extends $tea.Model {
|
|
8558
8593
|
/**
|
|
8559
8594
|
* @remarks
|
|
8595
|
+
* The certificate ID.
|
|
8596
|
+
*
|
|
8560
8597
|
* This parameter is required.
|
|
8561
8598
|
*
|
|
8562
8599
|
* @example
|
|
@@ -8565,6 +8602,8 @@ export declare class GetClientCertificateRequest extends $tea.Model {
|
|
|
8565
8602
|
id?: string;
|
|
8566
8603
|
/**
|
|
8567
8604
|
* @remarks
|
|
8605
|
+
* The website ID.
|
|
8606
|
+
*
|
|
8568
8607
|
* This parameter is required.
|
|
8569
8608
|
*
|
|
8570
8609
|
* @example
|
|
@@ -8583,27 +8622,46 @@ export declare class GetClientCertificateRequest extends $tea.Model {
|
|
|
8583
8622
|
}
|
|
8584
8623
|
export declare class GetClientCertificateResponseBody extends $tea.Model {
|
|
8585
8624
|
/**
|
|
8625
|
+
* @remarks
|
|
8626
|
+
* The certificate content.
|
|
8627
|
+
*
|
|
8586
8628
|
* @example
|
|
8587
8629
|
* -----BEGIN CERTIFICATE-----
|
|
8588
8630
|
*/
|
|
8589
8631
|
certificate?: string;
|
|
8590
8632
|
/**
|
|
8633
|
+
* @remarks
|
|
8634
|
+
* The request ID.
|
|
8635
|
+
*
|
|
8591
8636
|
* @example
|
|
8592
8637
|
* 0AEDAF20-4DDF-4165-8750-47FF9C1929C9
|
|
8593
8638
|
*/
|
|
8594
8639
|
requestId?: string;
|
|
8640
|
+
/**
|
|
8641
|
+
* @remarks
|
|
8642
|
+
* The certificate information.
|
|
8643
|
+
*/
|
|
8595
8644
|
result?: GetClientCertificateResponseBodyResult;
|
|
8596
8645
|
/**
|
|
8646
|
+
* @remarks
|
|
8647
|
+
* The website ID.
|
|
8648
|
+
*
|
|
8597
8649
|
* @example
|
|
8598
8650
|
* 1234567890123
|
|
8599
8651
|
*/
|
|
8600
8652
|
siteId?: number;
|
|
8601
8653
|
/**
|
|
8654
|
+
* @remarks
|
|
8655
|
+
* The website name.
|
|
8656
|
+
*
|
|
8602
8657
|
* @example
|
|
8603
8658
|
* example.com
|
|
8604
8659
|
*/
|
|
8605
8660
|
siteName?: string;
|
|
8606
8661
|
/**
|
|
8662
|
+
* @remarks
|
|
8663
|
+
* The certificate status.
|
|
8664
|
+
*
|
|
8607
8665
|
* @example
|
|
8608
8666
|
* active
|
|
8609
8667
|
*/
|
|
@@ -11108,6 +11166,7 @@ export declare class GetSiteLogDeliveryQuotaResponse extends $tea.Model {
|
|
|
11108
11166
|
});
|
|
11109
11167
|
}
|
|
11110
11168
|
export declare class GetSiteWafSettingsRequest extends $tea.Model {
|
|
11169
|
+
path?: string;
|
|
11111
11170
|
/**
|
|
11112
11171
|
* @remarks
|
|
11113
11172
|
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
@@ -12130,17 +12189,25 @@ export declare class ListCiphersResponse extends $tea.Model {
|
|
|
12130
12189
|
}
|
|
12131
12190
|
export declare class ListClientCaCertificatesRequest extends $tea.Model {
|
|
12132
12191
|
/**
|
|
12192
|
+
* @remarks
|
|
12193
|
+
* The page number. Valid values: 1 to 500.
|
|
12194
|
+
*
|
|
12133
12195
|
* @example
|
|
12134
12196
|
* 1
|
|
12135
12197
|
*/
|
|
12136
12198
|
pageNumber?: number;
|
|
12137
12199
|
/**
|
|
12200
|
+
* @remarks
|
|
12201
|
+
* The number of entries per page. Default value: 20. Valid values: 1 to 100.
|
|
12202
|
+
*
|
|
12138
12203
|
* @example
|
|
12139
12204
|
* 20
|
|
12140
12205
|
*/
|
|
12141
12206
|
pageSize?: number;
|
|
12142
12207
|
/**
|
|
12143
12208
|
* @remarks
|
|
12209
|
+
* The website ID, which can be obtained by calling the [ListSites](~~ListSites~~) operation.
|
|
12210
|
+
*
|
|
12144
12211
|
* This parameter is required.
|
|
12145
12212
|
*
|
|
12146
12213
|
* @example
|
|
@@ -12159,32 +12226,54 @@ export declare class ListClientCaCertificatesRequest extends $tea.Model {
|
|
|
12159
12226
|
}
|
|
12160
12227
|
export declare class ListClientCaCertificatesResponseBody extends $tea.Model {
|
|
12161
12228
|
/**
|
|
12229
|
+
* @remarks
|
|
12230
|
+
* The page number.
|
|
12231
|
+
*
|
|
12162
12232
|
* @example
|
|
12163
12233
|
* 1
|
|
12164
12234
|
*/
|
|
12165
12235
|
pageNumber?: number;
|
|
12166
12236
|
/**
|
|
12237
|
+
* @remarks
|
|
12238
|
+
* The number of entries per page.
|
|
12239
|
+
*
|
|
12167
12240
|
* @example
|
|
12168
12241
|
* 20
|
|
12169
12242
|
*/
|
|
12170
12243
|
pageSize?: number;
|
|
12171
12244
|
/**
|
|
12245
|
+
* @remarks
|
|
12246
|
+
* The request ID.
|
|
12247
|
+
*
|
|
12172
12248
|
* @example
|
|
12173
12249
|
* F61CDR30-E83C-4FDA-BF73-9A94CDD44229
|
|
12174
12250
|
*/
|
|
12175
12251
|
requestId?: string;
|
|
12252
|
+
/**
|
|
12253
|
+
* @remarks
|
|
12254
|
+
* The queried client CA certificates.
|
|
12255
|
+
*/
|
|
12176
12256
|
result?: ListClientCaCertificatesResponseBodyResult[];
|
|
12177
12257
|
/**
|
|
12258
|
+
* @remarks
|
|
12259
|
+
* The website ID.
|
|
12260
|
+
*
|
|
12178
12261
|
* @example
|
|
12179
12262
|
* 1234567890123
|
|
12180
12263
|
*/
|
|
12181
12264
|
siteId?: number;
|
|
12182
12265
|
/**
|
|
12266
|
+
* @remarks
|
|
12267
|
+
* The website name.
|
|
12268
|
+
*
|
|
12183
12269
|
* @example
|
|
12184
12270
|
* example.com
|
|
12185
12271
|
*/
|
|
12186
12272
|
siteName?: string;
|
|
12187
12273
|
/**
|
|
12274
|
+
* @remarks
|
|
12275
|
+
* The total number of entries.
|
|
12276
|
+
*
|
|
12188
12277
|
* @example
|
|
12189
12278
|
* 16
|
|
12190
12279
|
*/
|
|
@@ -16803,6 +16892,8 @@ export declare class PurgeCachesRequest extends $tea.Model {
|
|
|
16803
16892
|
* @remarks
|
|
16804
16893
|
* The website ID. You can call the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation to obtain the ID.
|
|
16805
16894
|
*
|
|
16895
|
+
* This parameter is required.
|
|
16896
|
+
*
|
|
16806
16897
|
* @example
|
|
16807
16898
|
* 123456789****
|
|
16808
16899
|
*/
|
|
@@ -16865,6 +16956,8 @@ export declare class PurgeCachesShrinkRequest extends $tea.Model {
|
|
|
16865
16956
|
* @remarks
|
|
16866
16957
|
* The website ID. You can call the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation to obtain the ID.
|
|
16867
16958
|
*
|
|
16959
|
+
* This parameter is required.
|
|
16960
|
+
*
|
|
16868
16961
|
* @example
|
|
16869
16962
|
* 123456789****
|
|
16870
16963
|
*/
|
|
@@ -17411,6 +17504,8 @@ export declare class ResetScheduledPreloadJobResponse extends $tea.Model {
|
|
|
17411
17504
|
export declare class RevokeClientCertificateRequest extends $tea.Model {
|
|
17412
17505
|
/**
|
|
17413
17506
|
* @remarks
|
|
17507
|
+
* The certificate ID.
|
|
17508
|
+
*
|
|
17414
17509
|
* This parameter is required.
|
|
17415
17510
|
*
|
|
17416
17511
|
* @example
|
|
@@ -17419,6 +17514,8 @@ export declare class RevokeClientCertificateRequest extends $tea.Model {
|
|
|
17419
17514
|
id?: string;
|
|
17420
17515
|
/**
|
|
17421
17516
|
* @remarks
|
|
17517
|
+
* The website ID.
|
|
17518
|
+
*
|
|
17422
17519
|
* This parameter is required.
|
|
17423
17520
|
*
|
|
17424
17521
|
* @example
|
|
@@ -17437,21 +17534,33 @@ export declare class RevokeClientCertificateRequest extends $tea.Model {
|
|
|
17437
17534
|
}
|
|
17438
17535
|
export declare class RevokeClientCertificateResponseBody extends $tea.Model {
|
|
17439
17536
|
/**
|
|
17537
|
+
* @remarks
|
|
17538
|
+
* The certificate ID.
|
|
17539
|
+
*
|
|
17440
17540
|
* @example
|
|
17441
17541
|
* baba39055622c008b90285a8838ed09a
|
|
17442
17542
|
*/
|
|
17443
17543
|
id?: string;
|
|
17444
17544
|
/**
|
|
17545
|
+
* @remarks
|
|
17546
|
+
* The request ID.
|
|
17547
|
+
*
|
|
17445
17548
|
* @example
|
|
17446
17549
|
* 15C66C7B-671A-4297-9187-2C4477247A123425345
|
|
17447
17550
|
*/
|
|
17448
17551
|
requestId?: string;
|
|
17449
17552
|
/**
|
|
17553
|
+
* @remarks
|
|
17554
|
+
* The website ID.
|
|
17555
|
+
*
|
|
17450
17556
|
* @example
|
|
17451
17557
|
* 1234567890123
|
|
17452
17558
|
*/
|
|
17453
17559
|
siteId?: number;
|
|
17454
17560
|
/**
|
|
17561
|
+
* @remarks
|
|
17562
|
+
* The website name.
|
|
17563
|
+
*
|
|
17455
17564
|
* @example
|
|
17456
17565
|
* example.com
|
|
17457
17566
|
*/
|
|
@@ -21586,6 +21695,85 @@ export declare class WafSiteSettingsAddSecurityHeaders extends $tea.Model {
|
|
|
21586
21695
|
[key: string]: any;
|
|
21587
21696
|
});
|
|
21588
21697
|
}
|
|
21698
|
+
export declare class WafSiteSettingsBotManagementDefiniteBots extends $tea.Model {
|
|
21699
|
+
action?: string;
|
|
21700
|
+
id?: number;
|
|
21701
|
+
static names(): {
|
|
21702
|
+
[key: string]: string;
|
|
21703
|
+
};
|
|
21704
|
+
static types(): {
|
|
21705
|
+
[key: string]: any;
|
|
21706
|
+
};
|
|
21707
|
+
constructor(map?: {
|
|
21708
|
+
[key: string]: any;
|
|
21709
|
+
});
|
|
21710
|
+
}
|
|
21711
|
+
export declare class WafSiteSettingsBotManagementEffectOnStatic extends $tea.Model {
|
|
21712
|
+
enable?: boolean;
|
|
21713
|
+
static names(): {
|
|
21714
|
+
[key: string]: string;
|
|
21715
|
+
};
|
|
21716
|
+
static types(): {
|
|
21717
|
+
[key: string]: any;
|
|
21718
|
+
};
|
|
21719
|
+
constructor(map?: {
|
|
21720
|
+
[key: string]: any;
|
|
21721
|
+
});
|
|
21722
|
+
}
|
|
21723
|
+
export declare class WafSiteSettingsBotManagementJSDetection extends $tea.Model {
|
|
21724
|
+
enable?: boolean;
|
|
21725
|
+
static names(): {
|
|
21726
|
+
[key: string]: string;
|
|
21727
|
+
};
|
|
21728
|
+
static types(): {
|
|
21729
|
+
[key: string]: any;
|
|
21730
|
+
};
|
|
21731
|
+
constructor(map?: {
|
|
21732
|
+
[key: string]: any;
|
|
21733
|
+
});
|
|
21734
|
+
}
|
|
21735
|
+
export declare class WafSiteSettingsBotManagementLikelyBots extends $tea.Model {
|
|
21736
|
+
action?: string;
|
|
21737
|
+
id?: number;
|
|
21738
|
+
static names(): {
|
|
21739
|
+
[key: string]: string;
|
|
21740
|
+
};
|
|
21741
|
+
static types(): {
|
|
21742
|
+
[key: string]: any;
|
|
21743
|
+
};
|
|
21744
|
+
constructor(map?: {
|
|
21745
|
+
[key: string]: any;
|
|
21746
|
+
});
|
|
21747
|
+
}
|
|
21748
|
+
export declare class WafSiteSettingsBotManagementVerifiedBots extends $tea.Model {
|
|
21749
|
+
action?: string;
|
|
21750
|
+
id?: number;
|
|
21751
|
+
static names(): {
|
|
21752
|
+
[key: string]: string;
|
|
21753
|
+
};
|
|
21754
|
+
static types(): {
|
|
21755
|
+
[key: string]: any;
|
|
21756
|
+
};
|
|
21757
|
+
constructor(map?: {
|
|
21758
|
+
[key: string]: any;
|
|
21759
|
+
});
|
|
21760
|
+
}
|
|
21761
|
+
export declare class WafSiteSettingsBotManagement extends $tea.Model {
|
|
21762
|
+
definiteBots?: WafSiteSettingsBotManagementDefiniteBots;
|
|
21763
|
+
effectOnStatic?: WafSiteSettingsBotManagementEffectOnStatic;
|
|
21764
|
+
JSDetection?: WafSiteSettingsBotManagementJSDetection;
|
|
21765
|
+
likelyBots?: WafSiteSettingsBotManagementLikelyBots;
|
|
21766
|
+
verifiedBots?: WafSiteSettingsBotManagementVerifiedBots;
|
|
21767
|
+
static names(): {
|
|
21768
|
+
[key: string]: string;
|
|
21769
|
+
};
|
|
21770
|
+
static types(): {
|
|
21771
|
+
[key: string]: any;
|
|
21772
|
+
};
|
|
21773
|
+
constructor(map?: {
|
|
21774
|
+
[key: string]: any;
|
|
21775
|
+
});
|
|
21776
|
+
}
|
|
21589
21777
|
export declare class WafSiteSettingsClientIpIdentifier extends $tea.Model {
|
|
21590
21778
|
headers?: string[];
|
|
21591
21779
|
mode?: string;
|
|
@@ -24476,71 +24664,113 @@ export declare class GetClientCaCertificateResponseBodyResult extends $tea.Model
|
|
|
24476
24664
|
}
|
|
24477
24665
|
export declare class GetClientCertificateResponseBodyResult extends $tea.Model {
|
|
24478
24666
|
/**
|
|
24667
|
+
* @remarks
|
|
24668
|
+
* The ID of the CA certificate.
|
|
24669
|
+
*
|
|
24479
24670
|
* @example
|
|
24480
24671
|
* babab9db65ee5efcca9f3d41d4b50d66
|
|
24481
24672
|
*/
|
|
24482
24673
|
CACertificateId?: string;
|
|
24483
24674
|
/**
|
|
24675
|
+
* @remarks
|
|
24676
|
+
* The Common Name of the certificate.
|
|
24677
|
+
*
|
|
24484
24678
|
* @example
|
|
24485
24679
|
* www.example.com
|
|
24486
24680
|
*/
|
|
24487
24681
|
commonName?: string;
|
|
24488
24682
|
/**
|
|
24683
|
+
* @remarks
|
|
24684
|
+
* The time when the certificate was created.
|
|
24685
|
+
*
|
|
24489
24686
|
* @example
|
|
24490
24687
|
* 2024-06-24 07:48:51
|
|
24491
24688
|
*/
|
|
24492
24689
|
createTime?: string;
|
|
24493
24690
|
/**
|
|
24691
|
+
* @remarks
|
|
24692
|
+
* The certificate ID.
|
|
24693
|
+
*
|
|
24494
24694
|
* @example
|
|
24495
24695
|
* baba39055622c008b90285a8838ed09a
|
|
24496
24696
|
*/
|
|
24497
24697
|
id?: string;
|
|
24498
24698
|
/**
|
|
24699
|
+
* @remarks
|
|
24700
|
+
* The certificate authority (CA) that issued the certificate.
|
|
24701
|
+
*
|
|
24499
24702
|
* @example
|
|
24500
24703
|
* GlobalSign nv-sa
|
|
24501
24704
|
*/
|
|
24502
24705
|
issuer?: string;
|
|
24503
24706
|
/**
|
|
24707
|
+
* @remarks
|
|
24708
|
+
* The certificate name.
|
|
24709
|
+
*
|
|
24504
24710
|
* @example
|
|
24505
24711
|
* yourCertName
|
|
24506
24712
|
*/
|
|
24507
24713
|
name?: string;
|
|
24508
24714
|
/**
|
|
24715
|
+
* @remarks
|
|
24716
|
+
* The time when the certificate expires.
|
|
24717
|
+
*
|
|
24509
24718
|
* @example
|
|
24510
24719
|
* 2024-03-31 02:08:00
|
|
24511
24720
|
*/
|
|
24512
24721
|
notAfter?: string;
|
|
24513
24722
|
/**
|
|
24723
|
+
* @remarks
|
|
24724
|
+
* The time when the certificate takes effect.
|
|
24725
|
+
*
|
|
24514
24726
|
* @example
|
|
24515
24727
|
* 2023-03-31 02:08:00
|
|
24516
24728
|
*/
|
|
24517
24729
|
notBefore?: string;
|
|
24518
24730
|
/**
|
|
24731
|
+
* @remarks
|
|
24732
|
+
* The public-key algorithm of the certificate.
|
|
24733
|
+
*
|
|
24519
24734
|
* @example
|
|
24520
24735
|
* RSA
|
|
24521
24736
|
*/
|
|
24522
24737
|
pubkeyAlgorithm?: string;
|
|
24523
24738
|
/**
|
|
24739
|
+
* @remarks
|
|
24740
|
+
* The Subject Alternative Name (SAN) of the certificate.
|
|
24741
|
+
*
|
|
24524
24742
|
* @example
|
|
24525
24743
|
* www.example.com,*.example.com
|
|
24526
24744
|
*/
|
|
24527
24745
|
SAN?: string;
|
|
24528
24746
|
/**
|
|
24747
|
+
* @remarks
|
|
24748
|
+
* The signature algorithm of the certificate.
|
|
24749
|
+
*
|
|
24529
24750
|
* @example
|
|
24530
24751
|
* SHA256-RSA
|
|
24531
24752
|
*/
|
|
24532
24753
|
signatureAlgorithm?: string;
|
|
24533
24754
|
/**
|
|
24755
|
+
* @remarks
|
|
24756
|
+
* The certificate status.
|
|
24757
|
+
*
|
|
24534
24758
|
* @example
|
|
24535
24759
|
* active
|
|
24536
24760
|
*/
|
|
24537
24761
|
status?: string;
|
|
24538
24762
|
/**
|
|
24763
|
+
* @remarks
|
|
24764
|
+
* The certificate type.
|
|
24765
|
+
*
|
|
24539
24766
|
* @example
|
|
24540
24767
|
* dcdn
|
|
24541
24768
|
*/
|
|
24542
24769
|
type?: string;
|
|
24543
24770
|
/**
|
|
24771
|
+
* @remarks
|
|
24772
|
+
* The time when the certificate was updated.
|
|
24773
|
+
*
|
|
24544
24774
|
* @example
|
|
24545
24775
|
* 2024-09-22 05:33:13
|
|
24546
24776
|
*/
|
|
@@ -26755,66 +26985,105 @@ export declare class ListCacheReserveInstancesResponseBodyInstanceInfo extends $
|
|
|
26755
26985
|
}
|
|
26756
26986
|
export declare class ListClientCaCertificatesResponseBodyResult extends $tea.Model {
|
|
26757
26987
|
/**
|
|
26988
|
+
* @remarks
|
|
26989
|
+
* The Common Name of the certificate.
|
|
26990
|
+
*
|
|
26758
26991
|
* @example
|
|
26759
26992
|
* www.example.com
|
|
26760
26993
|
*/
|
|
26761
26994
|
commonName?: string;
|
|
26762
26995
|
/**
|
|
26996
|
+
* @remarks
|
|
26997
|
+
* The time when the certificate was created.
|
|
26998
|
+
*
|
|
26763
26999
|
* @example
|
|
26764
27000
|
* 2024-06-24 07:48:51
|
|
26765
27001
|
*/
|
|
26766
27002
|
createTime?: string;
|
|
26767
27003
|
/**
|
|
27004
|
+
* @remarks
|
|
27005
|
+
* The certificate ID.
|
|
27006
|
+
*
|
|
26768
27007
|
* @example
|
|
26769
27008
|
* babab9db65ee5efcca9f3d41d4b5****
|
|
26770
27009
|
*/
|
|
26771
27010
|
id?: string;
|
|
26772
27011
|
/**
|
|
27012
|
+
* @remarks
|
|
27013
|
+
* The CA that issued the certificate.
|
|
27014
|
+
*
|
|
26773
27015
|
* @example
|
|
26774
27016
|
* GlobalSign nv-sa
|
|
26775
27017
|
*/
|
|
26776
27018
|
issuer?: string;
|
|
26777
27019
|
/**
|
|
27020
|
+
* @remarks
|
|
27021
|
+
* The certificate name.
|
|
27022
|
+
*
|
|
26778
27023
|
* @example
|
|
26779
27024
|
* yourCertName
|
|
26780
27025
|
*/
|
|
26781
27026
|
name?: string;
|
|
26782
27027
|
/**
|
|
27028
|
+
* @remarks
|
|
27029
|
+
* The time when the certificate expires.
|
|
27030
|
+
*
|
|
26783
27031
|
* @example
|
|
26784
27032
|
* 2024-03-31 02:08:00
|
|
26785
27033
|
*/
|
|
26786
27034
|
notAfter?: string;
|
|
26787
27035
|
/**
|
|
27036
|
+
* @remarks
|
|
27037
|
+
* The time when the certificate takes effect.
|
|
27038
|
+
*
|
|
26788
27039
|
* @example
|
|
26789
27040
|
* 2023-03-31 02:08:00
|
|
26790
27041
|
*/
|
|
26791
27042
|
notBefore?: string;
|
|
26792
27043
|
/**
|
|
27044
|
+
* @remarks
|
|
27045
|
+
* The public-key algorithm of the certificate.
|
|
27046
|
+
*
|
|
26793
27047
|
* @example
|
|
26794
27048
|
* RSA
|
|
26795
27049
|
*/
|
|
26796
27050
|
pubkeyAlgorithm?: string;
|
|
26797
27051
|
/**
|
|
27052
|
+
* @remarks
|
|
27053
|
+
* The Subject Alternative Name (SAN) of the certificate.
|
|
27054
|
+
*
|
|
26798
27055
|
* @example
|
|
26799
27056
|
* www.example.com,*.example.com
|
|
26800
27057
|
*/
|
|
26801
27058
|
SAN?: string;
|
|
26802
27059
|
/**
|
|
27060
|
+
* @remarks
|
|
27061
|
+
* The signature algorithm of the certificate.
|
|
27062
|
+
*
|
|
26803
27063
|
* @example
|
|
26804
27064
|
* SHA256-RSA
|
|
26805
27065
|
*/
|
|
26806
27066
|
signatureAlgorithm?: string;
|
|
26807
27067
|
/**
|
|
27068
|
+
* @remarks
|
|
27069
|
+
* The certificate status.
|
|
27070
|
+
*
|
|
26808
27071
|
* @example
|
|
26809
27072
|
* OK
|
|
26810
27073
|
*/
|
|
26811
27074
|
status?: string;
|
|
26812
27075
|
/**
|
|
27076
|
+
* @remarks
|
|
27077
|
+
* The certificate type.
|
|
27078
|
+
*
|
|
26813
27079
|
* @example
|
|
26814
27080
|
* upload
|
|
26815
27081
|
*/
|
|
26816
27082
|
type?: string;
|
|
26817
27083
|
/**
|
|
27084
|
+
* @remarks
|
|
27085
|
+
* The time when the certificate was updated.
|
|
27086
|
+
*
|
|
26818
27087
|
* @example
|
|
26819
27088
|
* 2024-07-20 06:18:42
|
|
26820
27089
|
*/
|
|
@@ -29501,6 +29770,7 @@ export declare class ListWafPhasesResponseBodyPhases extends $tea.Model {
|
|
|
29501
29770
|
});
|
|
29502
29771
|
}
|
|
29503
29772
|
export declare class ListWafRulesRequestQueryArgs extends $tea.Model {
|
|
29773
|
+
configValueLike?: string;
|
|
29504
29774
|
/**
|
|
29505
29775
|
* @remarks
|
|
29506
29776
|
* Specifies whether to sort the returned data in descending order.
|
|
@@ -31398,7 +31668,7 @@ export default class Client extends OpenApi {
|
|
|
31398
31668
|
*/
|
|
31399
31669
|
createWaitingRoomRule(request: CreateWaitingRoomRuleRequest): Promise<CreateWaitingRoomRuleResponse>;
|
|
31400
31670
|
/**
|
|
31401
|
-
*
|
|
31671
|
+
* Deletes a certificate for a website.
|
|
31402
31672
|
*
|
|
31403
31673
|
* @param request - DeleteCertificateRequest
|
|
31404
31674
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -31406,14 +31676,14 @@ export default class Client extends OpenApi {
|
|
|
31406
31676
|
*/
|
|
31407
31677
|
deleteCertificateWithOptions(request: DeleteCertificateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCertificateResponse>;
|
|
31408
31678
|
/**
|
|
31409
|
-
*
|
|
31679
|
+
* Deletes a certificate for a website.
|
|
31410
31680
|
*
|
|
31411
31681
|
* @param request - DeleteCertificateRequest
|
|
31412
31682
|
* @returns DeleteCertificateResponse
|
|
31413
31683
|
*/
|
|
31414
31684
|
deleteCertificate(request: DeleteCertificateRequest): Promise<DeleteCertificateResponse>;
|
|
31415
31685
|
/**
|
|
31416
|
-
*
|
|
31686
|
+
* Deletes a client CA certificate.
|
|
31417
31687
|
*
|
|
31418
31688
|
* @param request - DeleteClientCaCertificateRequest
|
|
31419
31689
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -31421,7 +31691,7 @@ export default class Client extends OpenApi {
|
|
|
31421
31691
|
*/
|
|
31422
31692
|
deleteClientCaCertificateWithOptions(request: DeleteClientCaCertificateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteClientCaCertificateResponse>;
|
|
31423
31693
|
/**
|
|
31424
|
-
*
|
|
31694
|
+
* Deletes a client CA certificate.
|
|
31425
31695
|
*
|
|
31426
31696
|
* @param request - DeleteClientCaCertificateRequest
|
|
31427
31697
|
* @returns DeleteClientCaCertificateResponse
|
|
@@ -32021,7 +32291,7 @@ export default class Client extends OpenApi {
|
|
|
32021
32291
|
*/
|
|
32022
32292
|
getClientCaCertificate(request: GetClientCaCertificateRequest): Promise<GetClientCaCertificateResponse>;
|
|
32023
32293
|
/**
|
|
32024
|
-
*
|
|
32294
|
+
* Queries information about a client certificate.
|
|
32025
32295
|
*
|
|
32026
32296
|
* @param request - GetClientCertificateRequest
|
|
32027
32297
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -32029,7 +32299,7 @@ export default class Client extends OpenApi {
|
|
|
32029
32299
|
*/
|
|
32030
32300
|
getClientCertificateWithOptions(request: GetClientCertificateRequest, runtime: $Util.RuntimeOptions): Promise<GetClientCertificateResponse>;
|
|
32031
32301
|
/**
|
|
32032
|
-
*
|
|
32302
|
+
* Queries information about a client certificate.
|
|
32033
32303
|
*
|
|
32034
32304
|
* @param request - GetClientCertificateRequest
|
|
32035
32305
|
* @returns GetClientCertificateResponse
|
|
@@ -32665,7 +32935,7 @@ export default class Client extends OpenApi {
|
|
|
32665
32935
|
*/
|
|
32666
32936
|
listCiphers(request: ListCiphersRequest): Promise<ListCiphersResponse>;
|
|
32667
32937
|
/**
|
|
32668
|
-
*
|
|
32938
|
+
* Queries a list of client certificate authority (CA) certificates for a website.
|
|
32669
32939
|
*
|
|
32670
32940
|
* @param request - ListClientCaCertificatesRequest
|
|
32671
32941
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -32673,7 +32943,7 @@ export default class Client extends OpenApi {
|
|
|
32673
32943
|
*/
|
|
32674
32944
|
listClientCaCertificatesWithOptions(request: ListClientCaCertificatesRequest, runtime: $Util.RuntimeOptions): Promise<ListClientCaCertificatesResponse>;
|
|
32675
32945
|
/**
|
|
32676
|
-
*
|
|
32946
|
+
* Queries a list of client certificate authority (CA) certificates for a website.
|
|
32677
32947
|
*
|
|
32678
32948
|
* @param request - ListClientCaCertificatesRequest
|
|
32679
32949
|
* @returns ListClientCaCertificatesResponse
|
|
@@ -33423,7 +33693,7 @@ export default class Client extends OpenApi {
|
|
|
33423
33693
|
*/
|
|
33424
33694
|
resetScheduledPreloadJob(request: ResetScheduledPreloadJobRequest): Promise<ResetScheduledPreloadJobResponse>;
|
|
33425
33695
|
/**
|
|
33426
|
-
*
|
|
33696
|
+
* Revokes an activated client certificate.
|
|
33427
33697
|
*
|
|
33428
33698
|
* @param request - RevokeClientCertificateRequest
|
|
33429
33699
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -33431,7 +33701,7 @@ export default class Client extends OpenApi {
|
|
|
33431
33701
|
*/
|
|
33432
33702
|
revokeClientCertificateWithOptions(request: RevokeClientCertificateRequest, runtime: $Util.RuntimeOptions): Promise<RevokeClientCertificateResponse>;
|
|
33433
33703
|
/**
|
|
33434
|
-
*
|
|
33704
|
+
* Revokes an activated client certificate.
|
|
33435
33705
|
*
|
|
33436
33706
|
* @param request - RevokeClientCertificateRequest
|
|
33437
33707
|
* @returns RevokeClientCertificateResponse
|