@alicloud/esa20240910 2.8.1 → 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 +276 -10
- package/dist/client.js +137 -14
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +346 -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
|
*/
|
|
@@ -17415,6 +17504,8 @@ export declare class ResetScheduledPreloadJobResponse extends $tea.Model {
|
|
|
17415
17504
|
export declare class RevokeClientCertificateRequest extends $tea.Model {
|
|
17416
17505
|
/**
|
|
17417
17506
|
* @remarks
|
|
17507
|
+
* The certificate ID.
|
|
17508
|
+
*
|
|
17418
17509
|
* This parameter is required.
|
|
17419
17510
|
*
|
|
17420
17511
|
* @example
|
|
@@ -17423,6 +17514,8 @@ export declare class RevokeClientCertificateRequest extends $tea.Model {
|
|
|
17423
17514
|
id?: string;
|
|
17424
17515
|
/**
|
|
17425
17516
|
* @remarks
|
|
17517
|
+
* The website ID.
|
|
17518
|
+
*
|
|
17426
17519
|
* This parameter is required.
|
|
17427
17520
|
*
|
|
17428
17521
|
* @example
|
|
@@ -17441,21 +17534,33 @@ export declare class RevokeClientCertificateRequest extends $tea.Model {
|
|
|
17441
17534
|
}
|
|
17442
17535
|
export declare class RevokeClientCertificateResponseBody extends $tea.Model {
|
|
17443
17536
|
/**
|
|
17537
|
+
* @remarks
|
|
17538
|
+
* The certificate ID.
|
|
17539
|
+
*
|
|
17444
17540
|
* @example
|
|
17445
17541
|
* baba39055622c008b90285a8838ed09a
|
|
17446
17542
|
*/
|
|
17447
17543
|
id?: string;
|
|
17448
17544
|
/**
|
|
17545
|
+
* @remarks
|
|
17546
|
+
* The request ID.
|
|
17547
|
+
*
|
|
17449
17548
|
* @example
|
|
17450
17549
|
* 15C66C7B-671A-4297-9187-2C4477247A123425345
|
|
17451
17550
|
*/
|
|
17452
17551
|
requestId?: string;
|
|
17453
17552
|
/**
|
|
17553
|
+
* @remarks
|
|
17554
|
+
* The website ID.
|
|
17555
|
+
*
|
|
17454
17556
|
* @example
|
|
17455
17557
|
* 1234567890123
|
|
17456
17558
|
*/
|
|
17457
17559
|
siteId?: number;
|
|
17458
17560
|
/**
|
|
17561
|
+
* @remarks
|
|
17562
|
+
* The website name.
|
|
17563
|
+
*
|
|
17459
17564
|
* @example
|
|
17460
17565
|
* example.com
|
|
17461
17566
|
*/
|
|
@@ -21590,6 +21695,85 @@ export declare class WafSiteSettingsAddSecurityHeaders extends $tea.Model {
|
|
|
21590
21695
|
[key: string]: any;
|
|
21591
21696
|
});
|
|
21592
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
|
+
}
|
|
21593
21777
|
export declare class WafSiteSettingsClientIpIdentifier extends $tea.Model {
|
|
21594
21778
|
headers?: string[];
|
|
21595
21779
|
mode?: string;
|
|
@@ -24480,71 +24664,113 @@ export declare class GetClientCaCertificateResponseBodyResult extends $tea.Model
|
|
|
24480
24664
|
}
|
|
24481
24665
|
export declare class GetClientCertificateResponseBodyResult extends $tea.Model {
|
|
24482
24666
|
/**
|
|
24667
|
+
* @remarks
|
|
24668
|
+
* The ID of the CA certificate.
|
|
24669
|
+
*
|
|
24483
24670
|
* @example
|
|
24484
24671
|
* babab9db65ee5efcca9f3d41d4b50d66
|
|
24485
24672
|
*/
|
|
24486
24673
|
CACertificateId?: string;
|
|
24487
24674
|
/**
|
|
24675
|
+
* @remarks
|
|
24676
|
+
* The Common Name of the certificate.
|
|
24677
|
+
*
|
|
24488
24678
|
* @example
|
|
24489
24679
|
* www.example.com
|
|
24490
24680
|
*/
|
|
24491
24681
|
commonName?: string;
|
|
24492
24682
|
/**
|
|
24683
|
+
* @remarks
|
|
24684
|
+
* The time when the certificate was created.
|
|
24685
|
+
*
|
|
24493
24686
|
* @example
|
|
24494
24687
|
* 2024-06-24 07:48:51
|
|
24495
24688
|
*/
|
|
24496
24689
|
createTime?: string;
|
|
24497
24690
|
/**
|
|
24691
|
+
* @remarks
|
|
24692
|
+
* The certificate ID.
|
|
24693
|
+
*
|
|
24498
24694
|
* @example
|
|
24499
24695
|
* baba39055622c008b90285a8838ed09a
|
|
24500
24696
|
*/
|
|
24501
24697
|
id?: string;
|
|
24502
24698
|
/**
|
|
24699
|
+
* @remarks
|
|
24700
|
+
* The certificate authority (CA) that issued the certificate.
|
|
24701
|
+
*
|
|
24503
24702
|
* @example
|
|
24504
24703
|
* GlobalSign nv-sa
|
|
24505
24704
|
*/
|
|
24506
24705
|
issuer?: string;
|
|
24507
24706
|
/**
|
|
24707
|
+
* @remarks
|
|
24708
|
+
* The certificate name.
|
|
24709
|
+
*
|
|
24508
24710
|
* @example
|
|
24509
24711
|
* yourCertName
|
|
24510
24712
|
*/
|
|
24511
24713
|
name?: string;
|
|
24512
24714
|
/**
|
|
24715
|
+
* @remarks
|
|
24716
|
+
* The time when the certificate expires.
|
|
24717
|
+
*
|
|
24513
24718
|
* @example
|
|
24514
24719
|
* 2024-03-31 02:08:00
|
|
24515
24720
|
*/
|
|
24516
24721
|
notAfter?: string;
|
|
24517
24722
|
/**
|
|
24723
|
+
* @remarks
|
|
24724
|
+
* The time when the certificate takes effect.
|
|
24725
|
+
*
|
|
24518
24726
|
* @example
|
|
24519
24727
|
* 2023-03-31 02:08:00
|
|
24520
24728
|
*/
|
|
24521
24729
|
notBefore?: string;
|
|
24522
24730
|
/**
|
|
24731
|
+
* @remarks
|
|
24732
|
+
* The public-key algorithm of the certificate.
|
|
24733
|
+
*
|
|
24523
24734
|
* @example
|
|
24524
24735
|
* RSA
|
|
24525
24736
|
*/
|
|
24526
24737
|
pubkeyAlgorithm?: string;
|
|
24527
24738
|
/**
|
|
24739
|
+
* @remarks
|
|
24740
|
+
* The Subject Alternative Name (SAN) of the certificate.
|
|
24741
|
+
*
|
|
24528
24742
|
* @example
|
|
24529
24743
|
* www.example.com,*.example.com
|
|
24530
24744
|
*/
|
|
24531
24745
|
SAN?: string;
|
|
24532
24746
|
/**
|
|
24747
|
+
* @remarks
|
|
24748
|
+
* The signature algorithm of the certificate.
|
|
24749
|
+
*
|
|
24533
24750
|
* @example
|
|
24534
24751
|
* SHA256-RSA
|
|
24535
24752
|
*/
|
|
24536
24753
|
signatureAlgorithm?: string;
|
|
24537
24754
|
/**
|
|
24755
|
+
* @remarks
|
|
24756
|
+
* The certificate status.
|
|
24757
|
+
*
|
|
24538
24758
|
* @example
|
|
24539
24759
|
* active
|
|
24540
24760
|
*/
|
|
24541
24761
|
status?: string;
|
|
24542
24762
|
/**
|
|
24763
|
+
* @remarks
|
|
24764
|
+
* The certificate type.
|
|
24765
|
+
*
|
|
24543
24766
|
* @example
|
|
24544
24767
|
* dcdn
|
|
24545
24768
|
*/
|
|
24546
24769
|
type?: string;
|
|
24547
24770
|
/**
|
|
24771
|
+
* @remarks
|
|
24772
|
+
* The time when the certificate was updated.
|
|
24773
|
+
*
|
|
24548
24774
|
* @example
|
|
24549
24775
|
* 2024-09-22 05:33:13
|
|
24550
24776
|
*/
|
|
@@ -26759,66 +26985,105 @@ export declare class ListCacheReserveInstancesResponseBodyInstanceInfo extends $
|
|
|
26759
26985
|
}
|
|
26760
26986
|
export declare class ListClientCaCertificatesResponseBodyResult extends $tea.Model {
|
|
26761
26987
|
/**
|
|
26988
|
+
* @remarks
|
|
26989
|
+
* The Common Name of the certificate.
|
|
26990
|
+
*
|
|
26762
26991
|
* @example
|
|
26763
26992
|
* www.example.com
|
|
26764
26993
|
*/
|
|
26765
26994
|
commonName?: string;
|
|
26766
26995
|
/**
|
|
26996
|
+
* @remarks
|
|
26997
|
+
* The time when the certificate was created.
|
|
26998
|
+
*
|
|
26767
26999
|
* @example
|
|
26768
27000
|
* 2024-06-24 07:48:51
|
|
26769
27001
|
*/
|
|
26770
27002
|
createTime?: string;
|
|
26771
27003
|
/**
|
|
27004
|
+
* @remarks
|
|
27005
|
+
* The certificate ID.
|
|
27006
|
+
*
|
|
26772
27007
|
* @example
|
|
26773
27008
|
* babab9db65ee5efcca9f3d41d4b5****
|
|
26774
27009
|
*/
|
|
26775
27010
|
id?: string;
|
|
26776
27011
|
/**
|
|
27012
|
+
* @remarks
|
|
27013
|
+
* The CA that issued the certificate.
|
|
27014
|
+
*
|
|
26777
27015
|
* @example
|
|
26778
27016
|
* GlobalSign nv-sa
|
|
26779
27017
|
*/
|
|
26780
27018
|
issuer?: string;
|
|
26781
27019
|
/**
|
|
27020
|
+
* @remarks
|
|
27021
|
+
* The certificate name.
|
|
27022
|
+
*
|
|
26782
27023
|
* @example
|
|
26783
27024
|
* yourCertName
|
|
26784
27025
|
*/
|
|
26785
27026
|
name?: string;
|
|
26786
27027
|
/**
|
|
27028
|
+
* @remarks
|
|
27029
|
+
* The time when the certificate expires.
|
|
27030
|
+
*
|
|
26787
27031
|
* @example
|
|
26788
27032
|
* 2024-03-31 02:08:00
|
|
26789
27033
|
*/
|
|
26790
27034
|
notAfter?: string;
|
|
26791
27035
|
/**
|
|
27036
|
+
* @remarks
|
|
27037
|
+
* The time when the certificate takes effect.
|
|
27038
|
+
*
|
|
26792
27039
|
* @example
|
|
26793
27040
|
* 2023-03-31 02:08:00
|
|
26794
27041
|
*/
|
|
26795
27042
|
notBefore?: string;
|
|
26796
27043
|
/**
|
|
27044
|
+
* @remarks
|
|
27045
|
+
* The public-key algorithm of the certificate.
|
|
27046
|
+
*
|
|
26797
27047
|
* @example
|
|
26798
27048
|
* RSA
|
|
26799
27049
|
*/
|
|
26800
27050
|
pubkeyAlgorithm?: string;
|
|
26801
27051
|
/**
|
|
27052
|
+
* @remarks
|
|
27053
|
+
* The Subject Alternative Name (SAN) of the certificate.
|
|
27054
|
+
*
|
|
26802
27055
|
* @example
|
|
26803
27056
|
* www.example.com,*.example.com
|
|
26804
27057
|
*/
|
|
26805
27058
|
SAN?: string;
|
|
26806
27059
|
/**
|
|
27060
|
+
* @remarks
|
|
27061
|
+
* The signature algorithm of the certificate.
|
|
27062
|
+
*
|
|
26807
27063
|
* @example
|
|
26808
27064
|
* SHA256-RSA
|
|
26809
27065
|
*/
|
|
26810
27066
|
signatureAlgorithm?: string;
|
|
26811
27067
|
/**
|
|
27068
|
+
* @remarks
|
|
27069
|
+
* The certificate status.
|
|
27070
|
+
*
|
|
26812
27071
|
* @example
|
|
26813
27072
|
* OK
|
|
26814
27073
|
*/
|
|
26815
27074
|
status?: string;
|
|
26816
27075
|
/**
|
|
27076
|
+
* @remarks
|
|
27077
|
+
* The certificate type.
|
|
27078
|
+
*
|
|
26817
27079
|
* @example
|
|
26818
27080
|
* upload
|
|
26819
27081
|
*/
|
|
26820
27082
|
type?: string;
|
|
26821
27083
|
/**
|
|
27084
|
+
* @remarks
|
|
27085
|
+
* The time when the certificate was updated.
|
|
27086
|
+
*
|
|
26822
27087
|
* @example
|
|
26823
27088
|
* 2024-07-20 06:18:42
|
|
26824
27089
|
*/
|
|
@@ -29505,6 +29770,7 @@ export declare class ListWafPhasesResponseBodyPhases extends $tea.Model {
|
|
|
29505
29770
|
});
|
|
29506
29771
|
}
|
|
29507
29772
|
export declare class ListWafRulesRequestQueryArgs extends $tea.Model {
|
|
29773
|
+
configValueLike?: string;
|
|
29508
29774
|
/**
|
|
29509
29775
|
* @remarks
|
|
29510
29776
|
* Specifies whether to sort the returned data in descending order.
|
|
@@ -31402,7 +31668,7 @@ export default class Client extends OpenApi {
|
|
|
31402
31668
|
*/
|
|
31403
31669
|
createWaitingRoomRule(request: CreateWaitingRoomRuleRequest): Promise<CreateWaitingRoomRuleResponse>;
|
|
31404
31670
|
/**
|
|
31405
|
-
*
|
|
31671
|
+
* Deletes a certificate for a website.
|
|
31406
31672
|
*
|
|
31407
31673
|
* @param request - DeleteCertificateRequest
|
|
31408
31674
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -31410,14 +31676,14 @@ export default class Client extends OpenApi {
|
|
|
31410
31676
|
*/
|
|
31411
31677
|
deleteCertificateWithOptions(request: DeleteCertificateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCertificateResponse>;
|
|
31412
31678
|
/**
|
|
31413
|
-
*
|
|
31679
|
+
* Deletes a certificate for a website.
|
|
31414
31680
|
*
|
|
31415
31681
|
* @param request - DeleteCertificateRequest
|
|
31416
31682
|
* @returns DeleteCertificateResponse
|
|
31417
31683
|
*/
|
|
31418
31684
|
deleteCertificate(request: DeleteCertificateRequest): Promise<DeleteCertificateResponse>;
|
|
31419
31685
|
/**
|
|
31420
|
-
*
|
|
31686
|
+
* Deletes a client CA certificate.
|
|
31421
31687
|
*
|
|
31422
31688
|
* @param request - DeleteClientCaCertificateRequest
|
|
31423
31689
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -31425,7 +31691,7 @@ export default class Client extends OpenApi {
|
|
|
31425
31691
|
*/
|
|
31426
31692
|
deleteClientCaCertificateWithOptions(request: DeleteClientCaCertificateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteClientCaCertificateResponse>;
|
|
31427
31693
|
/**
|
|
31428
|
-
*
|
|
31694
|
+
* Deletes a client CA certificate.
|
|
31429
31695
|
*
|
|
31430
31696
|
* @param request - DeleteClientCaCertificateRequest
|
|
31431
31697
|
* @returns DeleteClientCaCertificateResponse
|
|
@@ -32025,7 +32291,7 @@ export default class Client extends OpenApi {
|
|
|
32025
32291
|
*/
|
|
32026
32292
|
getClientCaCertificate(request: GetClientCaCertificateRequest): Promise<GetClientCaCertificateResponse>;
|
|
32027
32293
|
/**
|
|
32028
|
-
*
|
|
32294
|
+
* Queries information about a client certificate.
|
|
32029
32295
|
*
|
|
32030
32296
|
* @param request - GetClientCertificateRequest
|
|
32031
32297
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -32033,7 +32299,7 @@ export default class Client extends OpenApi {
|
|
|
32033
32299
|
*/
|
|
32034
32300
|
getClientCertificateWithOptions(request: GetClientCertificateRequest, runtime: $Util.RuntimeOptions): Promise<GetClientCertificateResponse>;
|
|
32035
32301
|
/**
|
|
32036
|
-
*
|
|
32302
|
+
* Queries information about a client certificate.
|
|
32037
32303
|
*
|
|
32038
32304
|
* @param request - GetClientCertificateRequest
|
|
32039
32305
|
* @returns GetClientCertificateResponse
|
|
@@ -32669,7 +32935,7 @@ export default class Client extends OpenApi {
|
|
|
32669
32935
|
*/
|
|
32670
32936
|
listCiphers(request: ListCiphersRequest): Promise<ListCiphersResponse>;
|
|
32671
32937
|
/**
|
|
32672
|
-
*
|
|
32938
|
+
* Queries a list of client certificate authority (CA) certificates for a website.
|
|
32673
32939
|
*
|
|
32674
32940
|
* @param request - ListClientCaCertificatesRequest
|
|
32675
32941
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -32677,7 +32943,7 @@ export default class Client extends OpenApi {
|
|
|
32677
32943
|
*/
|
|
32678
32944
|
listClientCaCertificatesWithOptions(request: ListClientCaCertificatesRequest, runtime: $Util.RuntimeOptions): Promise<ListClientCaCertificatesResponse>;
|
|
32679
32945
|
/**
|
|
32680
|
-
*
|
|
32946
|
+
* Queries a list of client certificate authority (CA) certificates for a website.
|
|
32681
32947
|
*
|
|
32682
32948
|
* @param request - ListClientCaCertificatesRequest
|
|
32683
32949
|
* @returns ListClientCaCertificatesResponse
|
|
@@ -33427,7 +33693,7 @@ export default class Client extends OpenApi {
|
|
|
33427
33693
|
*/
|
|
33428
33694
|
resetScheduledPreloadJob(request: ResetScheduledPreloadJobRequest): Promise<ResetScheduledPreloadJobResponse>;
|
|
33429
33695
|
/**
|
|
33430
|
-
*
|
|
33696
|
+
* Revokes an activated client certificate.
|
|
33431
33697
|
*
|
|
33432
33698
|
* @param request - RevokeClientCertificateRequest
|
|
33433
33699
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -33435,7 +33701,7 @@ export default class Client extends OpenApi {
|
|
|
33435
33701
|
*/
|
|
33436
33702
|
revokeClientCertificateWithOptions(request: RevokeClientCertificateRequest, runtime: $Util.RuntimeOptions): Promise<RevokeClientCertificateResponse>;
|
|
33437
33703
|
/**
|
|
33438
|
-
*
|
|
33704
|
+
* Revokes an activated client certificate.
|
|
33439
33705
|
*
|
|
33440
33706
|
* @param request - RevokeClientCertificateRequest
|
|
33441
33707
|
* @returns RevokeClientCertificateResponse
|