@alicloud/esa20240910 2.18.0 → 2.18.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 +355 -371
- package/dist/client.js +153 -154
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +434 -435
package/src/client.ts
CHANGED
|
@@ -458,6 +458,29 @@ export class WafRuleConfigRateLimit extends $dara.Model {
|
|
|
458
458
|
}
|
|
459
459
|
}
|
|
460
460
|
|
|
461
|
+
export class WafRuleConfigSecurityLevel extends $dara.Model {
|
|
462
|
+
value?: string;
|
|
463
|
+
static names(): { [key: string]: string } {
|
|
464
|
+
return {
|
|
465
|
+
value: 'Value',
|
|
466
|
+
};
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
static types(): { [key: string]: any } {
|
|
470
|
+
return {
|
|
471
|
+
value: 'string',
|
|
472
|
+
};
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
validate() {
|
|
476
|
+
super.validate();
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
constructor(map?: { [key: string]: any }) {
|
|
480
|
+
super(map);
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
|
|
461
484
|
export class WafRuleMatch2CriteriaCriteriaCriteria extends $dara.Model {
|
|
462
485
|
convertToLower?: boolean;
|
|
463
486
|
matchOperator?: string;
|
|
@@ -5591,7 +5614,7 @@ export class DescribePurgeTasksResponseBodyTasks extends $dara.Model {
|
|
|
5591
5614
|
export class GetCertificateResponseBodyResultDCV extends $dara.Model {
|
|
5592
5615
|
/**
|
|
5593
5616
|
* @remarks
|
|
5594
|
-
* DCV ID.
|
|
5617
|
+
* The DCV ID.
|
|
5595
5618
|
*
|
|
5596
5619
|
* @example
|
|
5597
5620
|
* bababf7cdd1546a2ad04c0def1f4c980
|
|
@@ -5599,7 +5622,7 @@ export class GetCertificateResponseBodyResultDCV extends $dara.Model {
|
|
|
5599
5622
|
id?: string;
|
|
5600
5623
|
/**
|
|
5601
5624
|
* @remarks
|
|
5602
|
-
* DCV name.
|
|
5625
|
+
* The DCV name. It is a TXT record name if Type is DNS or URL if Type is HTTP.
|
|
5603
5626
|
*
|
|
5604
5627
|
* @example
|
|
5605
5628
|
* http://www.example.com/.well-known/acme-challenge/pH20CqwS5L3ZnvkhI436DCzadKFuG7QcUcvB_4KsAow
|
|
@@ -5607,7 +5630,7 @@ export class GetCertificateResponseBodyResultDCV extends $dara.Model {
|
|
|
5607
5630
|
key?: string;
|
|
5608
5631
|
/**
|
|
5609
5632
|
* @remarks
|
|
5610
|
-
*
|
|
5633
|
+
* The verification status.
|
|
5611
5634
|
*
|
|
5612
5635
|
* @example
|
|
5613
5636
|
* pending
|
|
@@ -5615,7 +5638,7 @@ export class GetCertificateResponseBodyResultDCV extends $dara.Model {
|
|
|
5615
5638
|
status?: string;
|
|
5616
5639
|
/**
|
|
5617
5640
|
* @remarks
|
|
5618
|
-
* DCV type.
|
|
5641
|
+
* The DCV type. Valid values: DNS and HTTP.
|
|
5619
5642
|
*
|
|
5620
5643
|
* @example
|
|
5621
5644
|
* HTTP
|
|
@@ -5623,7 +5646,7 @@ export class GetCertificateResponseBodyResultDCV extends $dara.Model {
|
|
|
5623
5646
|
type?: string;
|
|
5624
5647
|
/**
|
|
5625
5648
|
* @remarks
|
|
5626
|
-
* DCV content.
|
|
5649
|
+
* The DCV content.
|
|
5627
5650
|
*
|
|
5628
5651
|
* @example
|
|
5629
5652
|
* pH20CqwS5L3ZnvkhI436DCzadKFuG7QcUcvB_4KsAow.KfzYo4LH3EgOt7a73G-RqZkbR0eYtLfEUmtmqGmr4FQ
|
|
@@ -5661,7 +5684,7 @@ export class GetCertificateResponseBodyResultDCV extends $dara.Model {
|
|
|
5661
5684
|
export class GetCertificateResponseBodyResult extends $dara.Model {
|
|
5662
5685
|
/**
|
|
5663
5686
|
* @remarks
|
|
5664
|
-
*
|
|
5687
|
+
* The error code returned for certificate application.
|
|
5665
5688
|
*
|
|
5666
5689
|
* @example
|
|
5667
5690
|
* 2
|
|
@@ -5669,7 +5692,7 @@ export class GetCertificateResponseBodyResult extends $dara.Model {
|
|
|
5669
5692
|
applyCode?: number;
|
|
5670
5693
|
/**
|
|
5671
5694
|
* @remarks
|
|
5672
|
-
*
|
|
5695
|
+
* The error message returned for certificate application.
|
|
5673
5696
|
*
|
|
5674
5697
|
* @example
|
|
5675
5698
|
* canceled
|
|
@@ -5701,7 +5724,7 @@ export class GetCertificateResponseBodyResult extends $dara.Model {
|
|
|
5701
5724
|
createTime?: string;
|
|
5702
5725
|
/**
|
|
5703
5726
|
* @remarks
|
|
5704
|
-
* DCV information.
|
|
5727
|
+
* The Domain Control Validation (DCV) information.
|
|
5705
5728
|
*/
|
|
5706
5729
|
DCV?: GetCertificateResponseBodyResultDCV[];
|
|
5707
5730
|
/**
|
|
@@ -5955,6 +5978,7 @@ export class GetClientCaCertificateResponseBodyResult extends $dara.Model {
|
|
|
5955
5978
|
* 2024-03-05 18:24:04
|
|
5956
5979
|
*/
|
|
5957
5980
|
createTime?: string;
|
|
5981
|
+
fingerprintSha256?: string;
|
|
5958
5982
|
/**
|
|
5959
5983
|
* @remarks
|
|
5960
5984
|
* The certificate ID.
|
|
@@ -6011,6 +6035,7 @@ export class GetClientCaCertificateResponseBodyResult extends $dara.Model {
|
|
|
6011
6035
|
* www.example.com,*.example.com
|
|
6012
6036
|
*/
|
|
6013
6037
|
SAN?: string;
|
|
6038
|
+
serialNumber?: string;
|
|
6014
6039
|
/**
|
|
6015
6040
|
* @remarks
|
|
6016
6041
|
* The signature algorithm of the certificate.
|
|
@@ -6047,6 +6072,7 @@ export class GetClientCaCertificateResponseBodyResult extends $dara.Model {
|
|
|
6047
6072
|
return {
|
|
6048
6073
|
commonName: 'CommonName',
|
|
6049
6074
|
createTime: 'CreateTime',
|
|
6075
|
+
fingerprintSha256: 'FingerprintSha256',
|
|
6050
6076
|
id: 'Id',
|
|
6051
6077
|
issuer: 'Issuer',
|
|
6052
6078
|
name: 'Name',
|
|
@@ -6054,6 +6080,7 @@ export class GetClientCaCertificateResponseBodyResult extends $dara.Model {
|
|
|
6054
6080
|
notBefore: 'NotBefore',
|
|
6055
6081
|
pubkeyAlgorithm: 'PubkeyAlgorithm',
|
|
6056
6082
|
SAN: 'SAN',
|
|
6083
|
+
serialNumber: 'SerialNumber',
|
|
6057
6084
|
signatureAlgorithm: 'SignatureAlgorithm',
|
|
6058
6085
|
status: 'Status',
|
|
6059
6086
|
type: 'Type',
|
|
@@ -6065,6 +6092,7 @@ export class GetClientCaCertificateResponseBodyResult extends $dara.Model {
|
|
|
6065
6092
|
return {
|
|
6066
6093
|
commonName: 'string',
|
|
6067
6094
|
createTime: 'string',
|
|
6095
|
+
fingerprintSha256: 'string',
|
|
6068
6096
|
id: 'string',
|
|
6069
6097
|
issuer: 'string',
|
|
6070
6098
|
name: 'string',
|
|
@@ -6072,6 +6100,7 @@ export class GetClientCaCertificateResponseBodyResult extends $dara.Model {
|
|
|
6072
6100
|
notBefore: 'string',
|
|
6073
6101
|
pubkeyAlgorithm: 'string',
|
|
6074
6102
|
SAN: 'string',
|
|
6103
|
+
serialNumber: 'string',
|
|
6075
6104
|
signatureAlgorithm: 'string',
|
|
6076
6105
|
status: 'string',
|
|
6077
6106
|
type: 'string',
|
|
@@ -6113,6 +6142,7 @@ export class GetClientCertificateResponseBodyResult extends $dara.Model {
|
|
|
6113
6142
|
* 2024-06-24 07:48:51
|
|
6114
6143
|
*/
|
|
6115
6144
|
createTime?: string;
|
|
6145
|
+
fingerprintSha256?: string;
|
|
6116
6146
|
/**
|
|
6117
6147
|
* @remarks
|
|
6118
6148
|
* The certificate ID.
|
|
@@ -6169,6 +6199,7 @@ export class GetClientCertificateResponseBodyResult extends $dara.Model {
|
|
|
6169
6199
|
* www.example.com,*.example.com
|
|
6170
6200
|
*/
|
|
6171
6201
|
SAN?: string;
|
|
6202
|
+
serialNumber?: string;
|
|
6172
6203
|
/**
|
|
6173
6204
|
* @remarks
|
|
6174
6205
|
* The signature algorithm of the certificate.
|
|
@@ -6206,6 +6237,7 @@ export class GetClientCertificateResponseBodyResult extends $dara.Model {
|
|
|
6206
6237
|
CACertificateId: 'CACertificateId',
|
|
6207
6238
|
commonName: 'CommonName',
|
|
6208
6239
|
createTime: 'CreateTime',
|
|
6240
|
+
fingerprintSha256: 'FingerprintSha256',
|
|
6209
6241
|
id: 'Id',
|
|
6210
6242
|
issuer: 'Issuer',
|
|
6211
6243
|
name: 'Name',
|
|
@@ -6213,6 +6245,7 @@ export class GetClientCertificateResponseBodyResult extends $dara.Model {
|
|
|
6213
6245
|
notBefore: 'NotBefore',
|
|
6214
6246
|
pubkeyAlgorithm: 'PubkeyAlgorithm',
|
|
6215
6247
|
SAN: 'SAN',
|
|
6248
|
+
serialNumber: 'SerialNumber',
|
|
6216
6249
|
signatureAlgorithm: 'SignatureAlgorithm',
|
|
6217
6250
|
status: 'Status',
|
|
6218
6251
|
type: 'Type',
|
|
@@ -6225,6 +6258,7 @@ export class GetClientCertificateResponseBodyResult extends $dara.Model {
|
|
|
6225
6258
|
CACertificateId: 'string',
|
|
6226
6259
|
commonName: 'string',
|
|
6227
6260
|
createTime: 'string',
|
|
6261
|
+
fingerprintSha256: 'string',
|
|
6228
6262
|
id: 'string',
|
|
6229
6263
|
issuer: 'string',
|
|
6230
6264
|
name: 'string',
|
|
@@ -6232,6 +6266,7 @@ export class GetClientCertificateResponseBodyResult extends $dara.Model {
|
|
|
6232
6266
|
notBefore: 'string',
|
|
6233
6267
|
pubkeyAlgorithm: 'string',
|
|
6234
6268
|
SAN: 'string',
|
|
6269
|
+
serialNumber: 'string',
|
|
6235
6270
|
signatureAlgorithm: 'string',
|
|
6236
6271
|
status: 'string',
|
|
6237
6272
|
type: 'string',
|
|
@@ -7509,7 +7544,7 @@ export class GetKvAccountResponseBodyNamespaceList extends $dara.Model {
|
|
|
7509
7544
|
export class GetLoadBalancerResponseBodyAdaptiveRouting extends $dara.Model {
|
|
7510
7545
|
/**
|
|
7511
7546
|
* @remarks
|
|
7512
|
-
* Whether to
|
|
7547
|
+
* Whether to failover across pools.
|
|
7513
7548
|
*
|
|
7514
7549
|
* - true: Yes.
|
|
7515
7550
|
* - false: No.
|
|
@@ -8978,56 +9013,6 @@ export class GetRecordResponseBodyRecordModel extends $dara.Model {
|
|
|
8978
9013
|
}
|
|
8979
9014
|
}
|
|
8980
9015
|
|
|
8981
|
-
export class GetRoutineResponseBodyCodeVersions extends $dara.Model {
|
|
8982
|
-
/**
|
|
8983
|
-
* @remarks
|
|
8984
|
-
* The description of the code version.
|
|
8985
|
-
*
|
|
8986
|
-
* @example
|
|
8987
|
-
* test ver code desc
|
|
8988
|
-
*/
|
|
8989
|
-
codeDescription?: string;
|
|
8990
|
-
/**
|
|
8991
|
-
* @remarks
|
|
8992
|
-
* The code version.
|
|
8993
|
-
*
|
|
8994
|
-
* @example
|
|
8995
|
-
* 1710120201067203242
|
|
8996
|
-
*/
|
|
8997
|
-
codeVersion?: string;
|
|
8998
|
-
/**
|
|
8999
|
-
* @remarks
|
|
9000
|
-
* The time when the code version was created.
|
|
9001
|
-
*
|
|
9002
|
-
* @example
|
|
9003
|
-
* 2024-03-11T01:23:21Z
|
|
9004
|
-
*/
|
|
9005
|
-
createTime?: string;
|
|
9006
|
-
static names(): { [key: string]: string } {
|
|
9007
|
-
return {
|
|
9008
|
-
codeDescription: 'CodeDescription',
|
|
9009
|
-
codeVersion: 'CodeVersion',
|
|
9010
|
-
createTime: 'CreateTime',
|
|
9011
|
-
};
|
|
9012
|
-
}
|
|
9013
|
-
|
|
9014
|
-
static types(): { [key: string]: any } {
|
|
9015
|
-
return {
|
|
9016
|
-
codeDescription: 'string',
|
|
9017
|
-
codeVersion: 'string',
|
|
9018
|
-
createTime: 'string',
|
|
9019
|
-
};
|
|
9020
|
-
}
|
|
9021
|
-
|
|
9022
|
-
validate() {
|
|
9023
|
-
super.validate();
|
|
9024
|
-
}
|
|
9025
|
-
|
|
9026
|
-
constructor(map?: { [key: string]: any }) {
|
|
9027
|
-
super(map);
|
|
9028
|
-
}
|
|
9029
|
-
}
|
|
9030
|
-
|
|
9031
9016
|
export class GetRoutineResponseBodyEnvs extends $dara.Model {
|
|
9032
9017
|
/**
|
|
9033
9018
|
* @remarks
|
|
@@ -9098,129 +9083,6 @@ export class GetRoutineResponseBodyEnvs extends $dara.Model {
|
|
|
9098
9083
|
}
|
|
9099
9084
|
}
|
|
9100
9085
|
|
|
9101
|
-
export class GetRoutineResponseBodyRelatedRecords extends $dara.Model {
|
|
9102
|
-
/**
|
|
9103
|
-
* @remarks
|
|
9104
|
-
* The record ID.
|
|
9105
|
-
*
|
|
9106
|
-
* @example
|
|
9107
|
-
* 509348423011904
|
|
9108
|
-
*/
|
|
9109
|
-
recordId?: number;
|
|
9110
|
-
/**
|
|
9111
|
-
* @remarks
|
|
9112
|
-
* The record name.
|
|
9113
|
-
*
|
|
9114
|
-
* @example
|
|
9115
|
-
* test-record-1.example.com
|
|
9116
|
-
*/
|
|
9117
|
-
recordName?: string;
|
|
9118
|
-
/**
|
|
9119
|
-
* @remarks
|
|
9120
|
-
* The website ID.
|
|
9121
|
-
*
|
|
9122
|
-
* @example
|
|
9123
|
-
* 54362329990032
|
|
9124
|
-
*/
|
|
9125
|
-
siteId?: number;
|
|
9126
|
-
/**
|
|
9127
|
-
* @remarks
|
|
9128
|
-
* The website name.
|
|
9129
|
-
*
|
|
9130
|
-
* @example
|
|
9131
|
-
* example.com
|
|
9132
|
-
*/
|
|
9133
|
-
siteName?: string;
|
|
9134
|
-
static names(): { [key: string]: string } {
|
|
9135
|
-
return {
|
|
9136
|
-
recordId: 'RecordId',
|
|
9137
|
-
recordName: 'RecordName',
|
|
9138
|
-
siteId: 'SiteId',
|
|
9139
|
-
siteName: 'SiteName',
|
|
9140
|
-
};
|
|
9141
|
-
}
|
|
9142
|
-
|
|
9143
|
-
static types(): { [key: string]: any } {
|
|
9144
|
-
return {
|
|
9145
|
-
recordId: 'number',
|
|
9146
|
-
recordName: 'string',
|
|
9147
|
-
siteId: 'number',
|
|
9148
|
-
siteName: 'string',
|
|
9149
|
-
};
|
|
9150
|
-
}
|
|
9151
|
-
|
|
9152
|
-
validate() {
|
|
9153
|
-
super.validate();
|
|
9154
|
-
}
|
|
9155
|
-
|
|
9156
|
-
constructor(map?: { [key: string]: any }) {
|
|
9157
|
-
super(map);
|
|
9158
|
-
}
|
|
9159
|
-
}
|
|
9160
|
-
|
|
9161
|
-
export class GetRoutineResponseBodyRelatedRoutes extends $dara.Model {
|
|
9162
|
-
byPass?: string;
|
|
9163
|
-
/**
|
|
9164
|
-
* @remarks
|
|
9165
|
-
* The route.
|
|
9166
|
-
*
|
|
9167
|
-
* @example
|
|
9168
|
-
* *.example.com/path1*
|
|
9169
|
-
*/
|
|
9170
|
-
route?: string;
|
|
9171
|
-
/**
|
|
9172
|
-
* @remarks
|
|
9173
|
-
* The route ID.
|
|
9174
|
-
*
|
|
9175
|
-
* @example
|
|
9176
|
-
* d501cb8a2c951f32922d260040780c06
|
|
9177
|
-
*/
|
|
9178
|
-
routeId?: string;
|
|
9179
|
-
/**
|
|
9180
|
-
* @remarks
|
|
9181
|
-
* The website ID.
|
|
9182
|
-
*
|
|
9183
|
-
* @example
|
|
9184
|
-
* 54362329990032
|
|
9185
|
-
*/
|
|
9186
|
-
siteId?: number;
|
|
9187
|
-
/**
|
|
9188
|
-
* @remarks
|
|
9189
|
-
* The website name.
|
|
9190
|
-
*
|
|
9191
|
-
* @example
|
|
9192
|
-
* example.com
|
|
9193
|
-
*/
|
|
9194
|
-
siteName?: string;
|
|
9195
|
-
static names(): { [key: string]: string } {
|
|
9196
|
-
return {
|
|
9197
|
-
byPass: 'ByPass',
|
|
9198
|
-
route: 'Route',
|
|
9199
|
-
routeId: 'RouteId',
|
|
9200
|
-
siteId: 'SiteId',
|
|
9201
|
-
siteName: 'SiteName',
|
|
9202
|
-
};
|
|
9203
|
-
}
|
|
9204
|
-
|
|
9205
|
-
static types(): { [key: string]: any } {
|
|
9206
|
-
return {
|
|
9207
|
-
byPass: 'string',
|
|
9208
|
-
route: 'string',
|
|
9209
|
-
routeId: 'string',
|
|
9210
|
-
siteId: 'number',
|
|
9211
|
-
siteName: 'string',
|
|
9212
|
-
};
|
|
9213
|
-
}
|
|
9214
|
-
|
|
9215
|
-
validate() {
|
|
9216
|
-
super.validate();
|
|
9217
|
-
}
|
|
9218
|
-
|
|
9219
|
-
constructor(map?: { [key: string]: any }) {
|
|
9220
|
-
super(map);
|
|
9221
|
-
}
|
|
9222
|
-
}
|
|
9223
|
-
|
|
9224
9086
|
export class GetRoutineUserInfoResponseBodyRoutines extends $dara.Model {
|
|
9225
9087
|
/**
|
|
9226
9088
|
* @remarks
|
|
@@ -9598,6 +9460,7 @@ export class GetWafFilterResponseBodyFilterFieldsLogics extends $dara.Model {
|
|
|
9598
9460
|
* 1
|
|
9599
9461
|
*/
|
|
9600
9462
|
attributes?: number;
|
|
9463
|
+
enable?: boolean;
|
|
9601
9464
|
/**
|
|
9602
9465
|
* @remarks
|
|
9603
9466
|
* The type of the value input box. Valid values:
|
|
@@ -9611,6 +9474,7 @@ export class GetWafFilterResponseBodyFilterFieldsLogics extends $dara.Model {
|
|
|
9611
9474
|
* input:single
|
|
9612
9475
|
*/
|
|
9613
9476
|
kind?: string;
|
|
9477
|
+
minPlan?: string;
|
|
9614
9478
|
/**
|
|
9615
9479
|
* @remarks
|
|
9616
9480
|
* Indicates whether the match result is inverted.
|
|
@@ -9661,7 +9525,9 @@ export class GetWafFilterResponseBodyFilterFieldsLogics extends $dara.Model {
|
|
|
9661
9525
|
static names(): { [key: string]: string } {
|
|
9662
9526
|
return {
|
|
9663
9527
|
attributes: 'Attributes',
|
|
9528
|
+
enable: 'Enable',
|
|
9664
9529
|
kind: 'Kind',
|
|
9530
|
+
minPlan: 'MinPlan',
|
|
9665
9531
|
negative: 'Negative',
|
|
9666
9532
|
operator: 'Operator',
|
|
9667
9533
|
symbol: 'Symbol',
|
|
@@ -9674,7 +9540,9 @@ export class GetWafFilterResponseBodyFilterFieldsLogics extends $dara.Model {
|
|
|
9674
9540
|
static types(): { [key: string]: any } {
|
|
9675
9541
|
return {
|
|
9676
9542
|
attributes: 'number',
|
|
9543
|
+
enable: 'boolean',
|
|
9677
9544
|
kind: 'string',
|
|
9545
|
+
minPlan: 'string',
|
|
9678
9546
|
negative: 'boolean',
|
|
9679
9547
|
operator: 'string',
|
|
9680
9548
|
symbol: 'string',
|
|
@@ -9777,6 +9645,7 @@ export class GetWafFilterResponseBodyFilterFieldsSelector extends $dara.Model {
|
|
|
9777
9645
|
}
|
|
9778
9646
|
|
|
9779
9647
|
export class GetWafFilterResponseBodyFilterFields extends $dara.Model {
|
|
9648
|
+
enable?: boolean;
|
|
9780
9649
|
/**
|
|
9781
9650
|
* @remarks
|
|
9782
9651
|
* The field for matched objects in the system.
|
|
@@ -9798,6 +9667,7 @@ export class GetWafFilterResponseBodyFilterFields extends $dara.Model {
|
|
|
9798
9667
|
* The logical conditions.
|
|
9799
9668
|
*/
|
|
9800
9669
|
logics?: GetWafFilterResponseBodyFilterFieldsLogics[];
|
|
9670
|
+
minPlan?: string;
|
|
9801
9671
|
/**
|
|
9802
9672
|
* @remarks
|
|
9803
9673
|
* The selector, which defines how to select a matched object.
|
|
@@ -9821,9 +9691,11 @@ export class GetWafFilterResponseBodyFilterFields extends $dara.Model {
|
|
|
9821
9691
|
subTip?: string;
|
|
9822
9692
|
static names(): { [key: string]: string } {
|
|
9823
9693
|
return {
|
|
9694
|
+
enable: 'Enable',
|
|
9824
9695
|
key: 'Key',
|
|
9825
9696
|
label: 'Label',
|
|
9826
9697
|
logics: 'Logics',
|
|
9698
|
+
minPlan: 'MinPlan',
|
|
9827
9699
|
selector: 'Selector',
|
|
9828
9700
|
sub: 'Sub',
|
|
9829
9701
|
subTip: 'SubTip',
|
|
@@ -9832,9 +9704,11 @@ export class GetWafFilterResponseBodyFilterFields extends $dara.Model {
|
|
|
9832
9704
|
|
|
9833
9705
|
static types(): { [key: string]: any } {
|
|
9834
9706
|
return {
|
|
9707
|
+
enable: 'boolean',
|
|
9835
9708
|
key: 'string',
|
|
9836
9709
|
label: 'string',
|
|
9837
9710
|
logics: { 'type': 'array', 'itemType': GetWafFilterResponseBodyFilterFieldsLogics },
|
|
9711
|
+
minPlan: 'string',
|
|
9838
9712
|
selector: GetWafFilterResponseBodyFilterFieldsSelector,
|
|
9839
9713
|
sub: 'boolean',
|
|
9840
9714
|
subTip: 'string',
|
|
@@ -10216,11 +10090,12 @@ export class ListCacheReserveInstancesResponseBodyInstanceInfo extends $dara.Mod
|
|
|
10216
10090
|
instanceId?: string;
|
|
10217
10091
|
/**
|
|
10218
10092
|
* @remarks
|
|
10219
|
-
*
|
|
10220
|
-
*
|
|
10221
|
-
*
|
|
10222
|
-
*
|
|
10223
|
-
*
|
|
10093
|
+
* The status of the cache reserve instance. Valid values:
|
|
10094
|
+
*
|
|
10095
|
+
* * **online**: The instance is in service.
|
|
10096
|
+
* * **offline**: The instance has expired within an allowable period. In this state, it is unavailable.
|
|
10097
|
+
* * **disable**: The instance has been released.
|
|
10098
|
+
* * **overdue**: The instance has been stopped due to overdue payments.
|
|
10224
10099
|
*
|
|
10225
10100
|
* @example
|
|
10226
10101
|
* online
|
|
@@ -10582,7 +10457,7 @@ export class ListCacheRulesResponseBodyConfigs extends $dara.Model {
|
|
|
10582
10457
|
export class ListCertificatesResponseBodyResultDCV extends $dara.Model {
|
|
10583
10458
|
/**
|
|
10584
10459
|
* @remarks
|
|
10585
|
-
* DCV ID.
|
|
10460
|
+
* The DCV ID.
|
|
10586
10461
|
*
|
|
10587
10462
|
* @example
|
|
10588
10463
|
* bababf7cdd1546a2ad04c0def1f4****
|
|
@@ -10590,7 +10465,7 @@ export class ListCertificatesResponseBodyResultDCV extends $dara.Model {
|
|
|
10590
10465
|
id?: string;
|
|
10591
10466
|
/**
|
|
10592
10467
|
* @remarks
|
|
10593
|
-
* DCV name.
|
|
10468
|
+
* The DCV name. It is a TXT record name if Type is DNS or URL if Type is HTTP.
|
|
10594
10469
|
*
|
|
10595
10470
|
* @example
|
|
10596
10471
|
* http://www.example.com/.well-known/acme-challenge/pH20CqwS5L3ZnvkhI436DCzadKFuG7QcUcvB_4KsAow
|
|
@@ -10598,7 +10473,7 @@ export class ListCertificatesResponseBodyResultDCV extends $dara.Model {
|
|
|
10598
10473
|
key?: string;
|
|
10599
10474
|
/**
|
|
10600
10475
|
* @remarks
|
|
10601
|
-
*
|
|
10476
|
+
* The verification status.
|
|
10602
10477
|
*
|
|
10603
10478
|
* @example
|
|
10604
10479
|
* pending
|
|
@@ -10606,7 +10481,7 @@ export class ListCertificatesResponseBodyResultDCV extends $dara.Model {
|
|
|
10606
10481
|
status?: string;
|
|
10607
10482
|
/**
|
|
10608
10483
|
* @remarks
|
|
10609
|
-
* DCV type.
|
|
10484
|
+
* The DCV type. Valid values: DNS and HTTP.
|
|
10610
10485
|
*
|
|
10611
10486
|
* @example
|
|
10612
10487
|
* HTTP
|
|
@@ -10614,7 +10489,7 @@ export class ListCertificatesResponseBodyResultDCV extends $dara.Model {
|
|
|
10614
10489
|
type?: string;
|
|
10615
10490
|
/**
|
|
10616
10491
|
* @remarks
|
|
10617
|
-
* DCV content.
|
|
10492
|
+
* The DCV content.
|
|
10618
10493
|
*
|
|
10619
10494
|
* @example
|
|
10620
10495
|
* pH20CqwS5L3ZnvkhI436DCzadKFuG7QcUcvB_4KsAow.KfzYo4LH3EgOt7a73G-RqZkbR0eYtLfEUmtmqGmr4FQ
|
|
@@ -10652,7 +10527,7 @@ export class ListCertificatesResponseBodyResultDCV extends $dara.Model {
|
|
|
10652
10527
|
export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
10653
10528
|
/**
|
|
10654
10529
|
* @remarks
|
|
10655
|
-
*
|
|
10530
|
+
* The error code returned for certificate application.
|
|
10656
10531
|
*
|
|
10657
10532
|
* @example
|
|
10658
10533
|
* 2
|
|
@@ -10660,7 +10535,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10660
10535
|
applyCode?: number;
|
|
10661
10536
|
/**
|
|
10662
10537
|
* @remarks
|
|
10663
|
-
*
|
|
10538
|
+
* The error message returned for certificate application.
|
|
10664
10539
|
*
|
|
10665
10540
|
* @example
|
|
10666
10541
|
* canceled
|
|
@@ -10668,7 +10543,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10668
10543
|
applyMessage?: string;
|
|
10669
10544
|
/**
|
|
10670
10545
|
* @remarks
|
|
10671
|
-
*
|
|
10546
|
+
* The certificate ID on Certificate Management Service.
|
|
10672
10547
|
*
|
|
10673
10548
|
* @example
|
|
10674
10549
|
* 30000569
|
|
@@ -10676,7 +10551,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10676
10551
|
casId?: string;
|
|
10677
10552
|
/**
|
|
10678
10553
|
* @remarks
|
|
10679
|
-
* Common
|
|
10554
|
+
* The Common Name of the certificate.
|
|
10680
10555
|
*
|
|
10681
10556
|
* @example
|
|
10682
10557
|
* www.example.com
|
|
@@ -10684,7 +10559,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10684
10559
|
commonName?: string;
|
|
10685
10560
|
/**
|
|
10686
10561
|
* @remarks
|
|
10687
|
-
*
|
|
10562
|
+
* The time when the certificate was created.
|
|
10688
10563
|
*
|
|
10689
10564
|
* @example
|
|
10690
10565
|
* 2022-06-24 07:48:51
|
|
@@ -10692,12 +10567,12 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10692
10567
|
createTime?: string;
|
|
10693
10568
|
/**
|
|
10694
10569
|
* @remarks
|
|
10695
|
-
* DCV information.
|
|
10570
|
+
* The Domain Control Validation (DCV) information.
|
|
10696
10571
|
*/
|
|
10697
10572
|
DCV?: ListCertificatesResponseBodyResultDCV[];
|
|
10698
10573
|
/**
|
|
10699
10574
|
* @remarks
|
|
10700
|
-
*
|
|
10575
|
+
* The SHA-256 fingerprint of the certificate.
|
|
10701
10576
|
*
|
|
10702
10577
|
* @example
|
|
10703
10578
|
* 1dc5fc9af4eead2570c70d94b416130baeb6d4429b51fd3557379588456a****
|
|
@@ -10705,7 +10580,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10705
10580
|
fingerprintSha256?: string;
|
|
10706
10581
|
/**
|
|
10707
10582
|
* @remarks
|
|
10708
|
-
*
|
|
10583
|
+
* The certificate ID on ESA.
|
|
10709
10584
|
*
|
|
10710
10585
|
* @example
|
|
10711
10586
|
* baba39055622c008b90285a8838e****
|
|
@@ -10713,7 +10588,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10713
10588
|
id?: string;
|
|
10714
10589
|
/**
|
|
10715
10590
|
* @remarks
|
|
10716
|
-
*
|
|
10591
|
+
* The certificate authority (CA) that issued the certificate.
|
|
10717
10592
|
*
|
|
10718
10593
|
* @example
|
|
10719
10594
|
* GlobalSign nv-sa
|
|
@@ -10721,7 +10596,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10721
10596
|
issuer?: string;
|
|
10722
10597
|
/**
|
|
10723
10598
|
* @remarks
|
|
10724
|
-
* Common
|
|
10599
|
+
* The Common Name of the certificate issuer.
|
|
10725
10600
|
*
|
|
10726
10601
|
* @example
|
|
10727
10602
|
* GlobalSign Organization Validation CA - SHA256 - G3
|
|
@@ -10729,7 +10604,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10729
10604
|
issuerCN?: string;
|
|
10730
10605
|
/**
|
|
10731
10606
|
* @remarks
|
|
10732
|
-
*
|
|
10607
|
+
* The certificate name.
|
|
10733
10608
|
*
|
|
10734
10609
|
* @example
|
|
10735
10610
|
* yourCertName
|
|
@@ -10737,7 +10612,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10737
10612
|
name?: string;
|
|
10738
10613
|
/**
|
|
10739
10614
|
* @remarks
|
|
10740
|
-
*
|
|
10615
|
+
* The time when the certificate expires.
|
|
10741
10616
|
*
|
|
10742
10617
|
* @example
|
|
10743
10618
|
* 2024-03-31 02:08:00
|
|
@@ -10745,7 +10620,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10745
10620
|
notAfter?: string;
|
|
10746
10621
|
/**
|
|
10747
10622
|
* @remarks
|
|
10748
|
-
*
|
|
10623
|
+
* The time when the certificate takes effect.
|
|
10749
10624
|
*
|
|
10750
10625
|
* @example
|
|
10751
10626
|
* 2023-03-31 02:08:00
|
|
@@ -10753,7 +10628,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10753
10628
|
notBefore?: string;
|
|
10754
10629
|
/**
|
|
10755
10630
|
* @remarks
|
|
10756
|
-
*
|
|
10631
|
+
* The public key algorithm of the certificate.
|
|
10757
10632
|
*
|
|
10758
10633
|
* @example
|
|
10759
10634
|
* RSA
|
|
@@ -10761,7 +10636,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10761
10636
|
pubAlg?: string;
|
|
10762
10637
|
/**
|
|
10763
10638
|
* @remarks
|
|
10764
|
-
*
|
|
10639
|
+
* The region where the certificate is stored.
|
|
10765
10640
|
*
|
|
10766
10641
|
* @example
|
|
10767
10642
|
* cn-hangzhou
|
|
@@ -10769,7 +10644,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10769
10644
|
region?: string;
|
|
10770
10645
|
/**
|
|
10771
10646
|
* @remarks
|
|
10772
|
-
* Subject Alternative Name of the certificate.
|
|
10647
|
+
* The Subject Alternative Name (SAN) of the certificate.
|
|
10773
10648
|
*
|
|
10774
10649
|
* @example
|
|
10775
10650
|
* www.example.com,*.example.com
|
|
@@ -10777,7 +10652,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10777
10652
|
SAN?: string;
|
|
10778
10653
|
/**
|
|
10779
10654
|
* @remarks
|
|
10780
|
-
*
|
|
10655
|
+
* The serial number of the certificate.
|
|
10781
10656
|
*
|
|
10782
10657
|
* @example
|
|
10783
10658
|
* babab022c5e9b27bf9c64d7f4b16****
|
|
@@ -10785,7 +10660,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10785
10660
|
serialNumber?: string;
|
|
10786
10661
|
/**
|
|
10787
10662
|
* @remarks
|
|
10788
|
-
*
|
|
10663
|
+
* The signature algorithm of the certificate.
|
|
10789
10664
|
*
|
|
10790
10665
|
* @example
|
|
10791
10666
|
* SHA256-RSA
|
|
@@ -10793,14 +10668,15 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10793
10668
|
sigAlg?: string;
|
|
10794
10669
|
/**
|
|
10795
10670
|
* @remarks
|
|
10796
|
-
*
|
|
10797
|
-
*
|
|
10798
|
-
*
|
|
10799
|
-
*
|
|
10800
|
-
*
|
|
10801
|
-
*
|
|
10802
|
-
*
|
|
10803
|
-
*
|
|
10671
|
+
* The certificate status.
|
|
10672
|
+
*
|
|
10673
|
+
* * OK
|
|
10674
|
+
* * Expired
|
|
10675
|
+
* * Expiring
|
|
10676
|
+
* * Issued
|
|
10677
|
+
* * Applying
|
|
10678
|
+
* * ApplyFailed
|
|
10679
|
+
* * Canceled
|
|
10804
10680
|
*
|
|
10805
10681
|
* @example
|
|
10806
10682
|
* OK
|
|
@@ -10808,10 +10684,11 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10808
10684
|
status?: string;
|
|
10809
10685
|
/**
|
|
10810
10686
|
* @remarks
|
|
10811
|
-
*
|
|
10812
|
-
*
|
|
10813
|
-
*
|
|
10814
|
-
*
|
|
10687
|
+
* The certificate type.
|
|
10688
|
+
*
|
|
10689
|
+
* * cas: certificate that is purchased by using Certificate Management Service
|
|
10690
|
+
* * upload: custom certificate that you upload
|
|
10691
|
+
* * free: free certificate
|
|
10815
10692
|
*
|
|
10816
10693
|
* @example
|
|
10817
10694
|
* free
|
|
@@ -10819,7 +10696,7 @@ export class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10819
10696
|
type?: string;
|
|
10820
10697
|
/**
|
|
10821
10698
|
* @remarks
|
|
10822
|
-
*
|
|
10699
|
+
* The time when the certificate was updated.
|
|
10823
10700
|
*
|
|
10824
10701
|
* @example
|
|
10825
10702
|
* 2023-04-20 06:18:42
|
|
@@ -10906,6 +10783,7 @@ export class ListClientCaCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10906
10783
|
* 2024-06-24 07:48:51
|
|
10907
10784
|
*/
|
|
10908
10785
|
createTime?: string;
|
|
10786
|
+
fingerprintSha256?: string;
|
|
10909
10787
|
/**
|
|
10910
10788
|
* @remarks
|
|
10911
10789
|
* The certificate ID.
|
|
@@ -10962,6 +10840,7 @@ export class ListClientCaCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10962
10840
|
* www.example.com,*.example.com
|
|
10963
10841
|
*/
|
|
10964
10842
|
SAN?: string;
|
|
10843
|
+
serialNumber?: string;
|
|
10965
10844
|
/**
|
|
10966
10845
|
* @remarks
|
|
10967
10846
|
* The signature algorithm of the certificate.
|
|
@@ -10998,6 +10877,7 @@ export class ListClientCaCertificatesResponseBodyResult extends $dara.Model {
|
|
|
10998
10877
|
return {
|
|
10999
10878
|
commonName: 'CommonName',
|
|
11000
10879
|
createTime: 'CreateTime',
|
|
10880
|
+
fingerprintSha256: 'FingerprintSha256',
|
|
11001
10881
|
id: 'Id',
|
|
11002
10882
|
issuer: 'Issuer',
|
|
11003
10883
|
name: 'Name',
|
|
@@ -11005,6 +10885,7 @@ export class ListClientCaCertificatesResponseBodyResult extends $dara.Model {
|
|
|
11005
10885
|
notBefore: 'NotBefore',
|
|
11006
10886
|
pubkeyAlgorithm: 'PubkeyAlgorithm',
|
|
11007
10887
|
SAN: 'SAN',
|
|
10888
|
+
serialNumber: 'SerialNumber',
|
|
11008
10889
|
signatureAlgorithm: 'SignatureAlgorithm',
|
|
11009
10890
|
status: 'Status',
|
|
11010
10891
|
type: 'Type',
|
|
@@ -11016,6 +10897,7 @@ export class ListClientCaCertificatesResponseBodyResult extends $dara.Model {
|
|
|
11016
10897
|
return {
|
|
11017
10898
|
commonName: 'string',
|
|
11018
10899
|
createTime: 'string',
|
|
10900
|
+
fingerprintSha256: 'string',
|
|
11019
10901
|
id: 'string',
|
|
11020
10902
|
issuer: 'string',
|
|
11021
10903
|
name: 'string',
|
|
@@ -11023,6 +10905,7 @@ export class ListClientCaCertificatesResponseBodyResult extends $dara.Model {
|
|
|
11023
10905
|
notBefore: 'string',
|
|
11024
10906
|
pubkeyAlgorithm: 'string',
|
|
11025
10907
|
SAN: 'string',
|
|
10908
|
+
serialNumber: 'string',
|
|
11026
10909
|
signatureAlgorithm: 'string',
|
|
11027
10910
|
status: 'string',
|
|
11028
10911
|
type: 'string',
|
|
@@ -11064,6 +10947,7 @@ export class ListClientCertificatesResponseBodyResult extends $dara.Model {
|
|
|
11064
10947
|
* 2024-06-24 07:48:51
|
|
11065
10948
|
*/
|
|
11066
10949
|
createTime?: string;
|
|
10950
|
+
fingerprintSha256?: string;
|
|
11067
10951
|
/**
|
|
11068
10952
|
* @remarks
|
|
11069
10953
|
* The certificate ID.
|
|
@@ -11120,6 +11004,7 @@ export class ListClientCertificatesResponseBodyResult extends $dara.Model {
|
|
|
11120
11004
|
* www.example.com,*.example.com
|
|
11121
11005
|
*/
|
|
11122
11006
|
SAN?: string;
|
|
11007
|
+
serialNumber?: string;
|
|
11123
11008
|
/**
|
|
11124
11009
|
* @remarks
|
|
11125
11010
|
* The signature algorithm of the certificate.
|
|
@@ -11157,6 +11042,7 @@ export class ListClientCertificatesResponseBodyResult extends $dara.Model {
|
|
|
11157
11042
|
CACertificateId: 'CACertificateId',
|
|
11158
11043
|
commonName: 'CommonName',
|
|
11159
11044
|
createTime: 'CreateTime',
|
|
11045
|
+
fingerprintSha256: 'FingerprintSha256',
|
|
11160
11046
|
id: 'Id',
|
|
11161
11047
|
issuer: 'Issuer',
|
|
11162
11048
|
name: 'Name',
|
|
@@ -11164,6 +11050,7 @@ export class ListClientCertificatesResponseBodyResult extends $dara.Model {
|
|
|
11164
11050
|
notBefore: 'NotBefore',
|
|
11165
11051
|
pubkeyAlgorithm: 'PubkeyAlgorithm',
|
|
11166
11052
|
SAN: 'SAN',
|
|
11053
|
+
serialNumber: 'SerialNumber',
|
|
11167
11054
|
signatureAlgorithm: 'SignatureAlgorithm',
|
|
11168
11055
|
status: 'Status',
|
|
11169
11056
|
type: 'Type',
|
|
@@ -11176,6 +11063,7 @@ export class ListClientCertificatesResponseBodyResult extends $dara.Model {
|
|
|
11176
11063
|
CACertificateId: 'string',
|
|
11177
11064
|
commonName: 'string',
|
|
11178
11065
|
createTime: 'string',
|
|
11066
|
+
fingerprintSha256: 'string',
|
|
11179
11067
|
id: 'string',
|
|
11180
11068
|
issuer: 'string',
|
|
11181
11069
|
name: 'string',
|
|
@@ -11183,6 +11071,7 @@ export class ListClientCertificatesResponseBodyResult extends $dara.Model {
|
|
|
11183
11071
|
notBefore: 'string',
|
|
11184
11072
|
pubkeyAlgorithm: 'string',
|
|
11185
11073
|
SAN: 'string',
|
|
11074
|
+
serialNumber: 'string',
|
|
11186
11075
|
signatureAlgorithm: 'string',
|
|
11187
11076
|
status: 'string',
|
|
11188
11077
|
type: 'string',
|
|
@@ -13770,7 +13659,7 @@ export class ListLoadBalancerRegionsResponseBodyRegions extends $dara.Model {
|
|
|
13770
13659
|
export class ListLoadBalancersResponseBodyLoadBalancersAdaptiveRouting extends $dara.Model {
|
|
13771
13660
|
/**
|
|
13772
13661
|
* @remarks
|
|
13773
|
-
* Whether to
|
|
13662
|
+
* Whether to failover across pools.
|
|
13774
13663
|
*
|
|
13775
13664
|
* - true: Yes.
|
|
13776
13665
|
* - false: No.
|
|
@@ -14272,7 +14161,7 @@ export class ListLoadBalancersResponseBodyLoadBalancers extends $dara.Model {
|
|
|
14272
14161
|
* Session persistence, with values:
|
|
14273
14162
|
* - off: Not enabled.
|
|
14274
14163
|
* - ip: Session persistence by IP.
|
|
14275
|
-
* - cookie:
|
|
14164
|
+
* - cookie: Session persistence by cookie.
|
|
14276
14165
|
*
|
|
14277
14166
|
* @example
|
|
14278
14167
|
* ip
|
|
@@ -15089,6 +14978,7 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15089
14978
|
* 4433
|
|
15090
14979
|
*/
|
|
15091
14980
|
originHttpsPort?: string;
|
|
14981
|
+
originMtls?: string;
|
|
15092
14982
|
/**
|
|
15093
14983
|
* @remarks
|
|
15094
14984
|
* Protocol used for the origin request. Value range:
|
|
@@ -15108,6 +14998,7 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15108
14998
|
* origin.example.com
|
|
15109
14999
|
*/
|
|
15110
15000
|
originSni?: string;
|
|
15001
|
+
originVerify?: string;
|
|
15111
15002
|
/**
|
|
15112
15003
|
* @remarks
|
|
15113
15004
|
* Use range slicing to download files from the origin. The value range is:
|
|
@@ -15169,8 +15060,10 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15169
15060
|
originHost: 'OriginHost',
|
|
15170
15061
|
originHttpPort: 'OriginHttpPort',
|
|
15171
15062
|
originHttpsPort: 'OriginHttpsPort',
|
|
15063
|
+
originMtls: 'OriginMtls',
|
|
15172
15064
|
originScheme: 'OriginScheme',
|
|
15173
15065
|
originSni: 'OriginSni',
|
|
15066
|
+
originVerify: 'OriginVerify',
|
|
15174
15067
|
range: 'Range',
|
|
15175
15068
|
rule: 'Rule',
|
|
15176
15069
|
ruleEnable: 'RuleEnable',
|
|
@@ -15188,8 +15081,10 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15188
15081
|
originHost: 'string',
|
|
15189
15082
|
originHttpPort: 'string',
|
|
15190
15083
|
originHttpsPort: 'string',
|
|
15084
|
+
originMtls: 'string',
|
|
15191
15085
|
originScheme: 'string',
|
|
15192
15086
|
originSni: 'string',
|
|
15087
|
+
originVerify: 'string',
|
|
15193
15088
|
range: 'string',
|
|
15194
15089
|
rule: 'string',
|
|
15195
15090
|
ruleEnable: 'string',
|
|
@@ -15955,6 +15850,7 @@ export class ListRewriteUrlRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15955
15850
|
* The query string rewrite method. Valid values:
|
|
15956
15851
|
*
|
|
15957
15852
|
* * static
|
|
15853
|
+
* * dynamic
|
|
15958
15854
|
*
|
|
15959
15855
|
* @example
|
|
15960
15856
|
* static
|
|
@@ -15965,6 +15861,7 @@ export class ListRewriteUrlRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15965
15861
|
* The path rewrite method. Valid values:
|
|
15966
15862
|
*
|
|
15967
15863
|
* * static
|
|
15864
|
+
* * dynamic
|
|
15968
15865
|
*
|
|
15969
15866
|
* @example
|
|
15970
15867
|
* static
|
|
@@ -16244,6 +16141,7 @@ export class ListScheduledPreloadJobsResponseBodyJobs extends $dara.Model {
|
|
|
16244
16141
|
* invalid domain:test.com
|
|
16245
16142
|
*/
|
|
16246
16143
|
errorInfo?: string;
|
|
16144
|
+
executionCount?: number;
|
|
16247
16145
|
/**
|
|
16248
16146
|
* @remarks
|
|
16249
16147
|
* The URL of the OSS object that stores a list of URLs that failed the conditional check for prefetching.
|
|
@@ -16330,6 +16228,7 @@ export class ListScheduledPreloadJobsResponseBodyJobs extends $dara.Model {
|
|
|
16330
16228
|
createdAt: 'CreatedAt',
|
|
16331
16229
|
domains: 'Domains',
|
|
16332
16230
|
errorInfo: 'ErrorInfo',
|
|
16231
|
+
executionCount: 'ExecutionCount',
|
|
16333
16232
|
failedFileOss: 'FailedFileOss',
|
|
16334
16233
|
fileId: 'FileId',
|
|
16335
16234
|
id: 'Id',
|
|
@@ -16349,6 +16248,7 @@ export class ListScheduledPreloadJobsResponseBodyJobs extends $dara.Model {
|
|
|
16349
16248
|
createdAt: 'string',
|
|
16350
16249
|
domains: 'string',
|
|
16351
16250
|
errorInfo: 'string',
|
|
16251
|
+
executionCount: 'number',
|
|
16352
16252
|
failedFileOss: 'string',
|
|
16353
16253
|
fileId: 'string',
|
|
16354
16254
|
id: 'string',
|
|
@@ -18421,7 +18321,7 @@ export class UpdateHttpResponseHeaderModificationRuleRequestResponseHeaderModifi
|
|
|
18421
18321
|
export class UpdateLoadBalancerRequestAdaptiveRouting extends $dara.Model {
|
|
18422
18322
|
/**
|
|
18423
18323
|
* @remarks
|
|
18424
|
-
* Whether to
|
|
18324
|
+
* Whether to failover across pools.
|
|
18425
18325
|
*
|
|
18426
18326
|
* - true: Yes.
|
|
18427
18327
|
* - false: No.
|
|
@@ -19421,6 +19321,7 @@ export class WafRuleConfig extends $dara.Model {
|
|
|
19421
19321
|
name?: string;
|
|
19422
19322
|
notes?: string;
|
|
19423
19323
|
rateLimit?: WafRuleConfigRateLimit;
|
|
19324
|
+
securityLevel?: WafRuleConfigSecurityLevel;
|
|
19424
19325
|
sigchl?: string[];
|
|
19425
19326
|
status?: string;
|
|
19426
19327
|
timer?: WafTimer;
|
|
@@ -19440,6 +19341,7 @@ export class WafRuleConfig extends $dara.Model {
|
|
|
19440
19341
|
name: 'Name',
|
|
19441
19342
|
notes: 'Notes',
|
|
19442
19343
|
rateLimit: 'RateLimit',
|
|
19344
|
+
securityLevel: 'SecurityLevel',
|
|
19443
19345
|
sigchl: 'Sigchl',
|
|
19444
19346
|
status: 'Status',
|
|
19445
19347
|
timer: 'Timer',
|
|
@@ -19462,6 +19364,7 @@ export class WafRuleConfig extends $dara.Model {
|
|
|
19462
19364
|
name: 'string',
|
|
19463
19365
|
notes: 'string',
|
|
19464
19366
|
rateLimit: WafRuleConfigRateLimit,
|
|
19367
|
+
securityLevel: WafRuleConfigSecurityLevel,
|
|
19465
19368
|
sigchl: { 'type': 'array', 'itemType': 'string' },
|
|
19466
19369
|
status: 'string',
|
|
19467
19370
|
timer: WafTimer,
|
|
@@ -19486,6 +19389,9 @@ export class WafRuleConfig extends $dara.Model {
|
|
|
19486
19389
|
if(this.rateLimit && typeof (this.rateLimit as any).validate === 'function') {
|
|
19487
19390
|
(this.rateLimit as any).validate();
|
|
19488
19391
|
}
|
|
19392
|
+
if(this.securityLevel && typeof (this.securityLevel as any).validate === 'function') {
|
|
19393
|
+
(this.securityLevel as any).validate();
|
|
19394
|
+
}
|
|
19489
19395
|
if(Array.isArray(this.sigchl)) {
|
|
19490
19396
|
$dara.Model.validateArray(this.sigchl);
|
|
19491
19397
|
}
|
|
@@ -20109,7 +20015,7 @@ export class ApplyCertificateRequest extends $dara.Model {
|
|
|
20109
20015
|
siteId?: number;
|
|
20110
20016
|
/**
|
|
20111
20017
|
* @remarks
|
|
20112
|
-
*
|
|
20018
|
+
* The certificate type. Valid values: lets_encrypt, digicert_single, and digicert_wildcard.
|
|
20113
20019
|
*
|
|
20114
20020
|
* @example
|
|
20115
20021
|
* lets_encrypt
|
|
@@ -25391,7 +25297,7 @@ export class CreateLoadBalancerRequest extends $dara.Model {
|
|
|
25391
25297
|
* Session persistence, with values:
|
|
25392
25298
|
* - off: Not enabled.
|
|
25393
25299
|
* - ip: Session persistence by IP.
|
|
25394
|
-
* - cookie:
|
|
25300
|
+
* - cookie: Session persistence by cookie.
|
|
25395
25301
|
*
|
|
25396
25302
|
* @example
|
|
25397
25303
|
* ip
|
|
@@ -25614,7 +25520,7 @@ export class CreateLoadBalancerShrinkRequest extends $dara.Model {
|
|
|
25614
25520
|
* Session persistence, with values:
|
|
25615
25521
|
* - off: Not enabled.
|
|
25616
25522
|
* - ip: Session persistence by IP.
|
|
25617
|
-
* - cookie:
|
|
25523
|
+
* - cookie: Session persistence by cookie.
|
|
25618
25524
|
*
|
|
25619
25525
|
* @example
|
|
25620
25526
|
* ip
|
|
@@ -26327,6 +26233,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
26327
26233
|
* 4433
|
|
26328
26234
|
*/
|
|
26329
26235
|
originHttpsPort?: string;
|
|
26236
|
+
originMtls?: string;
|
|
26330
26237
|
/**
|
|
26331
26238
|
* @remarks
|
|
26332
26239
|
* Protocol used for the origin request. Possible values:
|
|
@@ -26346,6 +26253,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
26346
26253
|
* origin.example.com
|
|
26347
26254
|
*/
|
|
26348
26255
|
originSni?: string;
|
|
26256
|
+
originVerify?: string;
|
|
26349
26257
|
/**
|
|
26350
26258
|
* @remarks
|
|
26351
26259
|
* Use range chunking for downloading files from the origin. Possible values:
|
|
@@ -26407,8 +26315,10 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
26407
26315
|
originHost: 'OriginHost',
|
|
26408
26316
|
originHttpPort: 'OriginHttpPort',
|
|
26409
26317
|
originHttpsPort: 'OriginHttpsPort',
|
|
26318
|
+
originMtls: 'OriginMtls',
|
|
26410
26319
|
originScheme: 'OriginScheme',
|
|
26411
26320
|
originSni: 'OriginSni',
|
|
26321
|
+
originVerify: 'OriginVerify',
|
|
26412
26322
|
range: 'Range',
|
|
26413
26323
|
rule: 'Rule',
|
|
26414
26324
|
ruleEnable: 'RuleEnable',
|
|
@@ -26424,8 +26334,10 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
26424
26334
|
originHost: 'string',
|
|
26425
26335
|
originHttpPort: 'string',
|
|
26426
26336
|
originHttpsPort: 'string',
|
|
26337
|
+
originMtls: 'string',
|
|
26427
26338
|
originScheme: 'string',
|
|
26428
26339
|
originSni: 'string',
|
|
26340
|
+
originVerify: 'string',
|
|
26429
26341
|
range: 'string',
|
|
26430
26342
|
rule: 'string',
|
|
26431
26343
|
ruleEnable: 'string',
|
|
@@ -26703,8 +26615,8 @@ export class CreateRecordRequest extends $dara.Model {
|
|
|
26703
26615
|
* @remarks
|
|
26704
26616
|
* The origin host policy. This policy takes effect when the record type is CNAME. You can set the policy in two modes:
|
|
26705
26617
|
*
|
|
26706
|
-
* *
|
|
26707
|
-
* *
|
|
26618
|
+
* * follow_hostname: Follow the host record.
|
|
26619
|
+
* * follow_origin_domain: match the origin\\"s domain name.
|
|
26708
26620
|
*
|
|
26709
26621
|
* @example
|
|
26710
26622
|
* follow_origin_domain
|
|
@@ -26864,8 +26776,8 @@ export class CreateRecordShrinkRequest extends $dara.Model {
|
|
|
26864
26776
|
* @remarks
|
|
26865
26777
|
* The origin host policy. This policy takes effect when the record type is CNAME. You can set the policy in two modes:
|
|
26866
26778
|
*
|
|
26867
|
-
* *
|
|
26868
|
-
* *
|
|
26779
|
+
* * follow_hostname: Follow the host record.
|
|
26780
|
+
* * follow_origin_domain: match the origin\\"s domain name.
|
|
26869
26781
|
*
|
|
26870
26782
|
* @example
|
|
26871
26783
|
* follow_origin_domain
|
|
@@ -27275,6 +27187,7 @@ export class CreateRewriteUrlRuleRequest extends $dara.Model {
|
|
|
27275
27187
|
* Query string rewrite type. Value range:
|
|
27276
27188
|
*
|
|
27277
27189
|
* - static: Static mode.
|
|
27190
|
+
* - dynamic:Dynamic mode.
|
|
27278
27191
|
*
|
|
27279
27192
|
* @example
|
|
27280
27193
|
* static
|
|
@@ -27288,6 +27201,7 @@ export class CreateRewriteUrlRuleRequest extends $dara.Model {
|
|
|
27288
27201
|
* URI rewrite type. Value range:
|
|
27289
27202
|
*
|
|
27290
27203
|
* - static: Static mode.
|
|
27204
|
+
* - dynamic:Dynamic mode.
|
|
27291
27205
|
*
|
|
27292
27206
|
* @example
|
|
27293
27207
|
* static
|
|
@@ -27484,8 +27398,6 @@ export class CreateRoutineRequest extends $dara.Model {
|
|
|
27484
27398
|
* @remarks
|
|
27485
27399
|
* The specification of the routine.
|
|
27486
27400
|
*
|
|
27487
|
-
* This parameter is required.
|
|
27488
|
-
*
|
|
27489
27401
|
* @example
|
|
27490
27402
|
* 5ms
|
|
27491
27403
|
*/
|
|
@@ -29045,7 +28957,7 @@ export class CreateSiteDeliveryTaskResponseBody extends $dara.Model {
|
|
|
29045
28957
|
* @example
|
|
29046
28958
|
* 123456****
|
|
29047
28959
|
*/
|
|
29048
|
-
siteId?:
|
|
28960
|
+
siteId?: number;
|
|
29049
28961
|
/**
|
|
29050
28962
|
* @remarks
|
|
29051
28963
|
* The name of the delivery task.
|
|
@@ -29067,7 +28979,7 @@ export class CreateSiteDeliveryTaskResponseBody extends $dara.Model {
|
|
|
29067
28979
|
return {
|
|
29068
28980
|
dataCenter: 'string',
|
|
29069
28981
|
requestId: 'string',
|
|
29070
|
-
siteId: '
|
|
28982
|
+
siteId: 'number',
|
|
29071
28983
|
taskName: 'string',
|
|
29072
28984
|
};
|
|
29073
28985
|
}
|
|
@@ -30611,7 +30523,7 @@ export class CreateWaitingRoomRuleResponse extends $dara.Model {
|
|
|
30611
30523
|
export class DeactivateVersionManagementRequest extends $dara.Model {
|
|
30612
30524
|
/**
|
|
30613
30525
|
* @remarks
|
|
30614
|
-
*
|
|
30526
|
+
* The website ID, which can be obtained by calling the [ListSites](~~ListSites~~) operation.
|
|
30615
30527
|
*
|
|
30616
30528
|
* This parameter is required.
|
|
30617
30529
|
*
|
|
@@ -30643,7 +30555,7 @@ export class DeactivateVersionManagementRequest extends $dara.Model {
|
|
|
30643
30555
|
export class DeactivateVersionManagementResponseBody extends $dara.Model {
|
|
30644
30556
|
/**
|
|
30645
30557
|
* @remarks
|
|
30646
|
-
*
|
|
30558
|
+
* The request ID.
|
|
30647
30559
|
*
|
|
30648
30560
|
* @example
|
|
30649
30561
|
* D61E4801-EAFF-4A63-AAE1-FBF6CE1CFD1C
|
|
@@ -30708,7 +30620,7 @@ export class DeactivateVersionManagementResponse extends $dara.Model {
|
|
|
30708
30620
|
export class DeleteCacheRuleRequest extends $dara.Model {
|
|
30709
30621
|
/**
|
|
30710
30622
|
* @remarks
|
|
30711
|
-
* ConfigId of the configuration, which can be obtained by calling the [ListCacheRules](
|
|
30623
|
+
* ConfigId of the configuration, which can be obtained by calling the [ListCacheRules](https://help.aliyun.com/document_detail/2866985.html) interface.
|
|
30712
30624
|
*
|
|
30713
30625
|
* This parameter is required.
|
|
30714
30626
|
*
|
|
@@ -32631,7 +32543,7 @@ export class DeleteListResponse extends $dara.Model {
|
|
|
32631
32543
|
export class DeleteLoadBalancerRequest extends $dara.Model {
|
|
32632
32544
|
/**
|
|
32633
32545
|
* @remarks
|
|
32634
|
-
* The ID of the load balancer, used to uniquely identify the load balancer to be queried. This ID is returned directly upon creation of the load balancer and can also be obtained through the [ListLoadBalancers](
|
|
32546
|
+
* The ID of the load balancer, used to uniquely identify the load balancer to be queried. This ID is returned directly upon creation of the load balancer and can also be obtained through the [ListLoadBalancers](https://help.aliyun.com/document_detail/2868897.html) interface for querying all load balancers under a site.
|
|
32635
32547
|
*
|
|
32636
32548
|
* This parameter is required.
|
|
32637
32549
|
*
|
|
@@ -32740,7 +32652,7 @@ export class DeleteLoadBalancerResponse extends $dara.Model {
|
|
|
32740
32652
|
export class DeleteNetworkOptimizationRequest extends $dara.Model {
|
|
32741
32653
|
/**
|
|
32742
32654
|
* @remarks
|
|
32743
|
-
* ConfigId of the configuration, which can be obtained by calling the
|
|
32655
|
+
* ConfigId of the configuration, which can be obtained by calling the ListNetworkOptimizations.
|
|
32744
32656
|
*
|
|
32745
32657
|
* This parameter is required.
|
|
32746
32658
|
*
|
|
@@ -32849,7 +32761,7 @@ export class DeleteNetworkOptimizationResponse extends $dara.Model {
|
|
|
32849
32761
|
export class DeleteOriginPoolRequest extends $dara.Model {
|
|
32850
32762
|
/**
|
|
32851
32763
|
* @remarks
|
|
32852
|
-
* The ID of the origin address pool, which can be obtained by calling the [ListOriginPools](
|
|
32764
|
+
* The ID of the origin address pool, which can be obtained by calling the [ListOriginPools](https://help.aliyun.com/document_detail/2863947.html) API.
|
|
32853
32765
|
*
|
|
32854
32766
|
* This parameter is required.
|
|
32855
32767
|
*
|
|
@@ -33055,7 +32967,7 @@ export class DeleteOriginProtectionResponse extends $dara.Model {
|
|
|
33055
32967
|
export class DeleteOriginRuleRequest extends $dara.Model {
|
|
33056
32968
|
/**
|
|
33057
32969
|
* @remarks
|
|
33058
|
-
* ConfigId of the configuration, which can be obtained by calling the [ListOriginRules](
|
|
32970
|
+
* ConfigId of the configuration, which can be obtained by calling the [ListOriginRules](https://help.aliyun.com/document_detail/2866989.html) interface.
|
|
33059
32971
|
*
|
|
33060
32972
|
* This parameter is required.
|
|
33061
32973
|
*
|
|
@@ -36621,6 +36533,9 @@ export class DescribePurgeTasksResponse extends $dara.Model {
|
|
|
36621
36533
|
|
|
36622
36534
|
export class DescribeRatePlanInstanceStatusRequest extends $dara.Model {
|
|
36623
36535
|
/**
|
|
36536
|
+
* @remarks
|
|
36537
|
+
* The instance ID, which can be obtained by calling the [ListUserRatePlanInstances](~~ListUserRatePlanInstances~~) operation.
|
|
36538
|
+
*
|
|
36624
36539
|
* @example
|
|
36625
36540
|
* xcdn-91fknmb80f0g***
|
|
36626
36541
|
*/
|
|
@@ -36648,18 +36563,32 @@ export class DescribeRatePlanInstanceStatusRequest extends $dara.Model {
|
|
|
36648
36563
|
|
|
36649
36564
|
export class DescribeRatePlanInstanceStatusResponseBody extends $dara.Model {
|
|
36650
36565
|
/**
|
|
36566
|
+
* @remarks
|
|
36567
|
+
* The instance ID.
|
|
36568
|
+
*
|
|
36651
36569
|
* @example
|
|
36652
36570
|
* xcdn-91fknmb80f0g***
|
|
36653
36571
|
*/
|
|
36654
36572
|
instanceId?: string;
|
|
36655
36573
|
/**
|
|
36574
|
+
* @remarks
|
|
36575
|
+
* The instance status. Valid values:
|
|
36576
|
+
*
|
|
36577
|
+
* * running: The instance is running.
|
|
36578
|
+
* * renewing: The instance is being renewed.
|
|
36579
|
+
* * upgrading: The configuration of the instance is being upgraded.
|
|
36580
|
+
* * releasePrepaidService: The instance is released due to expiration.
|
|
36581
|
+
* * creating: The instance is being created.
|
|
36582
|
+
* * downgrading: The configuration of the instance is being downgraded.
|
|
36583
|
+
* * ceasePrepaidService: The instance has expired.
|
|
36584
|
+
*
|
|
36656
36585
|
* @example
|
|
36657
36586
|
* running
|
|
36658
36587
|
*/
|
|
36659
36588
|
instanceStatus?: string;
|
|
36660
36589
|
/**
|
|
36661
36590
|
* @remarks
|
|
36662
|
-
*
|
|
36591
|
+
* The request ID.
|
|
36663
36592
|
*
|
|
36664
36593
|
* @example
|
|
36665
36594
|
* 60423A7F-A83D-1E24-B80E-86DD25790759
|
|
@@ -37911,7 +37840,7 @@ export class GetCertificateResponseBody extends $dara.Model {
|
|
|
37911
37840
|
requestId?: string;
|
|
37912
37841
|
/**
|
|
37913
37842
|
* @remarks
|
|
37914
|
-
*
|
|
37843
|
+
* The certificate information.
|
|
37915
37844
|
*/
|
|
37916
37845
|
result?: GetCertificateResponseBodyResult;
|
|
37917
37846
|
/**
|
|
@@ -38169,7 +38098,7 @@ export class GetCertificateQuotaResponse extends $dara.Model {
|
|
|
38169
38098
|
export class GetClientCaCertificateRequest extends $dara.Model {
|
|
38170
38099
|
/**
|
|
38171
38100
|
* @remarks
|
|
38172
|
-
* The certificate ID, which can be obtained by calling the [ListClientCaCertificates](
|
|
38101
|
+
* The certificate ID, which can be obtained by calling the [ListClientCaCertificates](https://help.aliyun.com/document_detail/2860651.html) operation.
|
|
38173
38102
|
*
|
|
38174
38103
|
* This parameter is required.
|
|
38175
38104
|
*
|
|
@@ -38179,7 +38108,7 @@ export class GetClientCaCertificateRequest extends $dara.Model {
|
|
|
38179
38108
|
id?: string;
|
|
38180
38109
|
/**
|
|
38181
38110
|
* @remarks
|
|
38182
|
-
* The website ID, which can be obtained by calling the [ListSites](
|
|
38111
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
38183
38112
|
*
|
|
38184
38113
|
* This parameter is required.
|
|
38185
38114
|
*
|
|
@@ -39180,6 +39109,9 @@ export class GetEdgeContainerAppResponse extends $dara.Model {
|
|
|
39180
39109
|
|
|
39181
39110
|
export class GetEdgeContainerAppLogRiverRequest extends $dara.Model {
|
|
39182
39111
|
/**
|
|
39112
|
+
* @remarks
|
|
39113
|
+
* The application ID, which can be obtained by calling the [ListEdgeContainerApps](~~ListEdgeContainerApps~~) operation.
|
|
39114
|
+
*
|
|
39183
39115
|
* @example
|
|
39184
39116
|
* app-880688675****88
|
|
39185
39117
|
*/
|
|
@@ -39207,15 +39139,25 @@ export class GetEdgeContainerAppLogRiverRequest extends $dara.Model {
|
|
|
39207
39139
|
|
|
39208
39140
|
export class GetEdgeContainerAppLogRiverResponseBody extends $dara.Model {
|
|
39209
39141
|
/**
|
|
39142
|
+
* @remarks
|
|
39143
|
+
* The log path of the container. It must be an absolute path that starts with a forward slash (/). You can use asterisks (\\*) and question marks (?) as wildcards.
|
|
39144
|
+
*
|
|
39210
39145
|
* @example
|
|
39211
39146
|
* /root/hello.log
|
|
39212
39147
|
*/
|
|
39213
39148
|
path?: string;
|
|
39214
39149
|
/**
|
|
39150
|
+
* @remarks
|
|
39151
|
+
* The request ID.
|
|
39152
|
+
*
|
|
39215
39153
|
* @example
|
|
39216
39154
|
* 0AEDAF20-4DDF-4165-8750-47FF9C1929C9
|
|
39217
39155
|
*/
|
|
39218
39156
|
requestId?: string;
|
|
39157
|
+
/**
|
|
39158
|
+
* @remarks
|
|
39159
|
+
* Indicates whether the standard output of the container is collected.
|
|
39160
|
+
*/
|
|
39219
39161
|
stdout?: boolean;
|
|
39220
39162
|
static names(): { [key: string]: string } {
|
|
39221
39163
|
return {
|
|
@@ -41083,7 +41025,7 @@ export class GetHttpsBasicConfigurationResponse extends $dara.Model {
|
|
|
41083
41025
|
export class GetIPv6Request extends $dara.Model {
|
|
41084
41026
|
/**
|
|
41085
41027
|
* @remarks
|
|
41086
|
-
*
|
|
41028
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
41087
41029
|
*
|
|
41088
41030
|
* This parameter is required.
|
|
41089
41031
|
*
|
|
@@ -41115,9 +41057,10 @@ export class GetIPv6Request extends $dara.Model {
|
|
|
41115
41057
|
export class GetIPv6ResponseBody extends $dara.Model {
|
|
41116
41058
|
/**
|
|
41117
41059
|
* @remarks
|
|
41118
|
-
* IPv6
|
|
41119
|
-
*
|
|
41120
|
-
*
|
|
41060
|
+
* Indicates whether IPv6 is enabled. Valid values:
|
|
41061
|
+
*
|
|
41062
|
+
* * **on**
|
|
41063
|
+
* * **off**
|
|
41121
41064
|
*
|
|
41122
41065
|
* @example
|
|
41123
41066
|
* on
|
|
@@ -41125,7 +41068,7 @@ export class GetIPv6ResponseBody extends $dara.Model {
|
|
|
41125
41068
|
enable?: string;
|
|
41126
41069
|
/**
|
|
41127
41070
|
* @remarks
|
|
41128
|
-
*
|
|
41071
|
+
* The request ID.
|
|
41129
41072
|
*
|
|
41130
41073
|
* @example
|
|
41131
41074
|
* 156A6B-677B1A-4297B7-9187B7-2B44792
|
|
@@ -42006,7 +41949,7 @@ export class GetListResponse extends $dara.Model {
|
|
|
42006
41949
|
export class GetLoadBalancerRequest extends $dara.Model {
|
|
42007
41950
|
/**
|
|
42008
41951
|
* @remarks
|
|
42009
|
-
* The ID of the load balancer, used to uniquely identify the load balancer to be queried. This ID is returned directly when the load balancer is created, or it can be obtained through the [ListLoadBalancers](
|
|
41952
|
+
* The ID of the load balancer, used to uniquely identify the load balancer to be queried. This ID is returned directly when the load balancer is created, or it can be obtained through the [ListLoadBalancers](https://help.aliyun.com/document_detail/2868897.html) interface for querying all load balancers under a site.
|
|
42010
41953
|
*
|
|
42011
41954
|
* This parameter is required.
|
|
42012
41955
|
*
|
|
@@ -42145,7 +42088,7 @@ export class GetLoadBalancerResponseBody extends $dara.Model {
|
|
|
42145
42088
|
* Session persistence, with values:
|
|
42146
42089
|
* - off: Not enabled.
|
|
42147
42090
|
* - ip: Session persistence by IP.
|
|
42148
|
-
* - cookie:
|
|
42091
|
+
* - cookie: Session persistence by cookie.
|
|
42149
42092
|
*
|
|
42150
42093
|
* @example
|
|
42151
42094
|
* ip
|
|
@@ -42299,7 +42242,7 @@ export class GetLoadBalancerResponse extends $dara.Model {
|
|
|
42299
42242
|
export class GetManagedTransformRequest extends $dara.Model {
|
|
42300
42243
|
/**
|
|
42301
42244
|
* @remarks
|
|
42302
|
-
*
|
|
42245
|
+
* Site ID, which can be obtained by calling [ListSites](https://help.aliyun.com/document_detail/2850189.html).
|
|
42303
42246
|
*
|
|
42304
42247
|
* This parameter is required.
|
|
42305
42248
|
*
|
|
@@ -42309,7 +42252,7 @@ export class GetManagedTransformRequest extends $dara.Model {
|
|
|
42309
42252
|
siteId?: number;
|
|
42310
42253
|
/**
|
|
42311
42254
|
* @remarks
|
|
42312
|
-
* The version number of the
|
|
42255
|
+
* The version number of the site. For sites with version management enabled, you can use this parameter to specify the effective version of the configuration, defaulting to version 0.
|
|
42313
42256
|
*
|
|
42314
42257
|
* @example
|
|
42315
42258
|
* 0
|
|
@@ -42341,10 +42284,9 @@ export class GetManagedTransformRequest extends $dara.Model {
|
|
|
42341
42284
|
export class GetManagedTransformResponseBody extends $dara.Model {
|
|
42342
42285
|
/**
|
|
42343
42286
|
* @remarks
|
|
42344
|
-
*
|
|
42345
|
-
*
|
|
42346
|
-
*
|
|
42347
|
-
* * off
|
|
42287
|
+
* Add visitor geolocation header. Value range:
|
|
42288
|
+
* - on: Enable.
|
|
42289
|
+
* - off: Disable.
|
|
42348
42290
|
*
|
|
42349
42291
|
* @example
|
|
42350
42292
|
* on
|
|
@@ -42352,10 +42294,9 @@ export class GetManagedTransformResponseBody extends $dara.Model {
|
|
|
42352
42294
|
addClientGeolocationHeader?: string;
|
|
42353
42295
|
/**
|
|
42354
42296
|
* @remarks
|
|
42355
|
-
*
|
|
42356
|
-
*
|
|
42357
|
-
*
|
|
42358
|
-
* * off
|
|
42297
|
+
* Add the "ali-real-client-ip" header containing the real client IP. Value range:
|
|
42298
|
+
* - on: Enable.
|
|
42299
|
+
* - off: Disable.
|
|
42359
42300
|
*
|
|
42360
42301
|
* @example
|
|
42361
42302
|
* on
|
|
@@ -42363,7 +42304,7 @@ export class GetManagedTransformResponseBody extends $dara.Model {
|
|
|
42363
42304
|
addRealClientIpHeader?: string;
|
|
42364
42305
|
/**
|
|
42365
42306
|
* @remarks
|
|
42366
|
-
*
|
|
42307
|
+
* Request ID.
|
|
42367
42308
|
*
|
|
42368
42309
|
* @example
|
|
42369
42310
|
* 04F0F334-1335-436C-A1D7-6C044FE73368
|
|
@@ -42371,7 +42312,7 @@ export class GetManagedTransformResponseBody extends $dara.Model {
|
|
|
42371
42312
|
requestId?: string;
|
|
42372
42313
|
/**
|
|
42373
42314
|
* @remarks
|
|
42374
|
-
* The version number of the
|
|
42315
|
+
* The version number of the site. For sites with version management enabled, this parameter can be used to specify the site version for which the configuration takes effect, defaulting to version 0.
|
|
42375
42316
|
*
|
|
42376
42317
|
* @example
|
|
42377
42318
|
* 0
|
|
@@ -42442,7 +42383,7 @@ export class GetManagedTransformResponse extends $dara.Model {
|
|
|
42442
42383
|
export class GetNetworkOptimizationRequest extends $dara.Model {
|
|
42443
42384
|
/**
|
|
42444
42385
|
* @remarks
|
|
42445
|
-
* ConfigId of the configuration, which can be obtained by calling the
|
|
42386
|
+
* ConfigId of the configuration, which can be obtained by calling the ListNetworkOptimizations.
|
|
42446
42387
|
*
|
|
42447
42388
|
* This parameter is required.
|
|
42448
42389
|
*
|
|
@@ -43146,6 +43087,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
43146
43087
|
* 4433
|
|
43147
43088
|
*/
|
|
43148
43089
|
originHttpsPort?: string;
|
|
43090
|
+
originMtls?: string;
|
|
43149
43091
|
/**
|
|
43150
43092
|
* @remarks
|
|
43151
43093
|
* Protocol used for the origin request. Value range:
|
|
@@ -43166,6 +43108,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
43166
43108
|
* origin.example.com
|
|
43167
43109
|
*/
|
|
43168
43110
|
originSni?: string;
|
|
43111
|
+
originVerify?: string;
|
|
43169
43112
|
/**
|
|
43170
43113
|
* @remarks
|
|
43171
43114
|
* Use range chunking method for origin download. Value range:
|
|
@@ -43236,8 +43179,10 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
43236
43179
|
originHost: 'OriginHost',
|
|
43237
43180
|
originHttpPort: 'OriginHttpPort',
|
|
43238
43181
|
originHttpsPort: 'OriginHttpsPort',
|
|
43182
|
+
originMtls: 'OriginMtls',
|
|
43239
43183
|
originScheme: 'OriginScheme',
|
|
43240
43184
|
originSni: 'OriginSni',
|
|
43185
|
+
originVerify: 'OriginVerify',
|
|
43241
43186
|
range: 'Range',
|
|
43242
43187
|
requestId: 'RequestId',
|
|
43243
43188
|
rule: 'Rule',
|
|
@@ -43256,8 +43201,10 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
43256
43201
|
originHost: 'string',
|
|
43257
43202
|
originHttpPort: 'string',
|
|
43258
43203
|
originHttpsPort: 'string',
|
|
43204
|
+
originMtls: 'string',
|
|
43259
43205
|
originScheme: 'string',
|
|
43260
43206
|
originSni: 'string',
|
|
43207
|
+
originVerify: 'string',
|
|
43261
43208
|
range: 'string',
|
|
43262
43209
|
requestId: 'string',
|
|
43263
43210
|
rule: 'string',
|
|
@@ -44155,6 +44102,7 @@ export class GetRewriteUrlRuleResponseBody extends $dara.Model {
|
|
|
44155
44102
|
* The query string rewrite method. Valid value:
|
|
44156
44103
|
*
|
|
44157
44104
|
* * static
|
|
44105
|
+
* * dynamic
|
|
44158
44106
|
*
|
|
44159
44107
|
* @example
|
|
44160
44108
|
* static
|
|
@@ -44165,6 +44113,7 @@ export class GetRewriteUrlRuleResponseBody extends $dara.Model {
|
|
|
44165
44113
|
* The path rewrite method. Valid value:
|
|
44166
44114
|
*
|
|
44167
44115
|
* * static
|
|
44116
|
+
* * dynamic
|
|
44168
44117
|
*
|
|
44169
44118
|
* @example
|
|
44170
44119
|
* static
|
|
@@ -44332,11 +44281,6 @@ export class GetRoutineRequest extends $dara.Model {
|
|
|
44332
44281
|
}
|
|
44333
44282
|
|
|
44334
44283
|
export class GetRoutineResponseBody extends $dara.Model {
|
|
44335
|
-
/**
|
|
44336
|
-
* @remarks
|
|
44337
|
-
* The code versions.
|
|
44338
|
-
*/
|
|
44339
|
-
codeVersions?: GetRoutineResponseBodyCodeVersions[];
|
|
44340
44284
|
/**
|
|
44341
44285
|
* @remarks
|
|
44342
44286
|
* The time when the routine was created.
|
|
@@ -44366,16 +44310,6 @@ export class GetRoutineResponseBody extends $dara.Model {
|
|
|
44366
44310
|
* The information about the environments.
|
|
44367
44311
|
*/
|
|
44368
44312
|
envs?: GetRoutineResponseBodyEnvs[];
|
|
44369
|
-
/**
|
|
44370
|
-
* @remarks
|
|
44371
|
-
* The records associated with the routine.
|
|
44372
|
-
*/
|
|
44373
|
-
relatedRecords?: GetRoutineResponseBodyRelatedRecords[];
|
|
44374
|
-
/**
|
|
44375
|
-
* @remarks
|
|
44376
|
-
* The routes associated with the routine.
|
|
44377
|
-
*/
|
|
44378
|
-
relatedRoutes?: GetRoutineResponseBodyRelatedRoutes[];
|
|
44379
44313
|
/**
|
|
44380
44314
|
* @remarks
|
|
44381
44315
|
* The request ID.
|
|
@@ -44386,43 +44320,28 @@ export class GetRoutineResponseBody extends $dara.Model {
|
|
|
44386
44320
|
requestId?: string;
|
|
44387
44321
|
static names(): { [key: string]: string } {
|
|
44388
44322
|
return {
|
|
44389
|
-
codeVersions: 'CodeVersions',
|
|
44390
44323
|
createTime: 'CreateTime',
|
|
44391
44324
|
defaultRelatedRecord: 'DefaultRelatedRecord',
|
|
44392
44325
|
description: 'Description',
|
|
44393
44326
|
envs: 'Envs',
|
|
44394
|
-
relatedRecords: 'RelatedRecords',
|
|
44395
|
-
relatedRoutes: 'RelatedRoutes',
|
|
44396
44327
|
requestId: 'RequestId',
|
|
44397
44328
|
};
|
|
44398
44329
|
}
|
|
44399
44330
|
|
|
44400
44331
|
static types(): { [key: string]: any } {
|
|
44401
44332
|
return {
|
|
44402
|
-
codeVersions: { 'type': 'array', 'itemType': GetRoutineResponseBodyCodeVersions },
|
|
44403
44333
|
createTime: 'string',
|
|
44404
44334
|
defaultRelatedRecord: 'string',
|
|
44405
44335
|
description: 'string',
|
|
44406
44336
|
envs: { 'type': 'array', 'itemType': GetRoutineResponseBodyEnvs },
|
|
44407
|
-
relatedRecords: { 'type': 'array', 'itemType': GetRoutineResponseBodyRelatedRecords },
|
|
44408
|
-
relatedRoutes: { 'type': 'array', 'itemType': GetRoutineResponseBodyRelatedRoutes },
|
|
44409
44337
|
requestId: 'string',
|
|
44410
44338
|
};
|
|
44411
44339
|
}
|
|
44412
44340
|
|
|
44413
44341
|
validate() {
|
|
44414
|
-
if(Array.isArray(this.codeVersions)) {
|
|
44415
|
-
$dara.Model.validateArray(this.codeVersions);
|
|
44416
|
-
}
|
|
44417
44342
|
if(Array.isArray(this.envs)) {
|
|
44418
44343
|
$dara.Model.validateArray(this.envs);
|
|
44419
44344
|
}
|
|
44420
|
-
if(Array.isArray(this.relatedRecords)) {
|
|
44421
|
-
$dara.Model.validateArray(this.relatedRecords);
|
|
44422
|
-
}
|
|
44423
|
-
if(Array.isArray(this.relatedRoutes)) {
|
|
44424
|
-
$dara.Model.validateArray(this.relatedRoutes);
|
|
44425
|
-
}
|
|
44426
44345
|
super.validate();
|
|
44427
44346
|
}
|
|
44428
44347
|
|
|
@@ -45849,7 +45768,7 @@ export class GetSiteLogDeliveryQuotaResponse extends $dara.Model {
|
|
|
45849
45768
|
export class GetSiteNameExclusiveRequest extends $dara.Model {
|
|
45850
45769
|
/**
|
|
45851
45770
|
* @remarks
|
|
45852
|
-
*
|
|
45771
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
45853
45772
|
*
|
|
45854
45773
|
* This parameter is required.
|
|
45855
45774
|
*
|
|
@@ -45881,10 +45800,10 @@ export class GetSiteNameExclusiveRequest extends $dara.Model {
|
|
|
45881
45800
|
export class GetSiteNameExclusiveResponseBody extends $dara.Model {
|
|
45882
45801
|
/**
|
|
45883
45802
|
* @remarks
|
|
45884
|
-
*
|
|
45803
|
+
* Indicates whether site hold is enabled. Valid values:
|
|
45885
45804
|
*
|
|
45886
|
-
*
|
|
45887
|
-
*
|
|
45805
|
+
* * on
|
|
45806
|
+
* * off
|
|
45888
45807
|
*
|
|
45889
45808
|
* @example
|
|
45890
45809
|
* on
|
|
@@ -45892,7 +45811,7 @@ export class GetSiteNameExclusiveResponseBody extends $dara.Model {
|
|
|
45892
45811
|
enable?: string;
|
|
45893
45812
|
/**
|
|
45894
45813
|
* @remarks
|
|
45895
|
-
*
|
|
45814
|
+
* The request ID.
|
|
45896
45815
|
*
|
|
45897
45816
|
* @example
|
|
45898
45817
|
* 35C66C7B-671H-4297-9187-2C4477247A78
|
|
@@ -45959,7 +45878,7 @@ export class GetSiteNameExclusiveResponse extends $dara.Model {
|
|
|
45959
45878
|
export class GetSitePauseRequest extends $dara.Model {
|
|
45960
45879
|
/**
|
|
45961
45880
|
* @remarks
|
|
45962
|
-
*
|
|
45881
|
+
* The website ID, which can be obtained by calling the [ListSites](~~ListSites~~) operation.
|
|
45963
45882
|
*
|
|
45964
45883
|
* This parameter is required.
|
|
45965
45884
|
*
|
|
@@ -45991,9 +45910,10 @@ export class GetSitePauseRequest extends $dara.Model {
|
|
|
45991
45910
|
export class GetSitePauseResponseBody extends $dara.Model {
|
|
45992
45911
|
/**
|
|
45993
45912
|
* @remarks
|
|
45994
|
-
* Indicates whether
|
|
45995
|
-
*
|
|
45996
|
-
*
|
|
45913
|
+
* Indicates whether ESA is paused on the website. Valid values:
|
|
45914
|
+
*
|
|
45915
|
+
* * true
|
|
45916
|
+
* * false
|
|
45997
45917
|
*
|
|
45998
45918
|
* @example
|
|
45999
45919
|
* true
|
|
@@ -46001,7 +45921,7 @@ export class GetSitePauseResponseBody extends $dara.Model {
|
|
|
46001
45921
|
paused?: boolean;
|
|
46002
45922
|
/**
|
|
46003
45923
|
* @remarks
|
|
46004
|
-
*
|
|
45924
|
+
* The request ID.
|
|
46005
45925
|
*
|
|
46006
45926
|
* @example
|
|
46007
45927
|
* EEEBE525-F576-1196-8DAF-2D70CA3F4D2F
|
|
@@ -47104,9 +47024,10 @@ export class ListCacheReserveInstancesRequest extends $dara.Model {
|
|
|
47104
47024
|
pageSize?: number;
|
|
47105
47025
|
/**
|
|
47106
47026
|
* @remarks
|
|
47107
|
-
*
|
|
47108
|
-
*
|
|
47109
|
-
*
|
|
47027
|
+
* The criterion by which you want to sort the queried instances. Valid values:
|
|
47028
|
+
*
|
|
47029
|
+
* * **ExpireTime**
|
|
47030
|
+
* * **CreateTime**
|
|
47110
47031
|
*
|
|
47111
47032
|
* @example
|
|
47112
47033
|
* ExpireTime
|
|
@@ -47114,9 +47035,10 @@ export class ListCacheReserveInstancesRequest extends $dara.Model {
|
|
|
47114
47035
|
sortBy?: string;
|
|
47115
47036
|
/**
|
|
47116
47037
|
* @remarks
|
|
47117
|
-
*
|
|
47118
|
-
*
|
|
47119
|
-
*
|
|
47038
|
+
* The order by which you want to sort the queried instances. Valid values:
|
|
47039
|
+
*
|
|
47040
|
+
* * **asc**
|
|
47041
|
+
* * **desc**
|
|
47120
47042
|
*
|
|
47121
47043
|
* @example
|
|
47122
47044
|
* desc
|
|
@@ -47124,12 +47046,12 @@ export class ListCacheReserveInstancesRequest extends $dara.Model {
|
|
|
47124
47046
|
sortOrder?: string;
|
|
47125
47047
|
/**
|
|
47126
47048
|
* @remarks
|
|
47127
|
-
*
|
|
47049
|
+
* The status of the cache reserve instance. Valid values:
|
|
47128
47050
|
*
|
|
47129
|
-
*
|
|
47130
|
-
*
|
|
47131
|
-
*
|
|
47132
|
-
*
|
|
47051
|
+
* * **online**: The instance is in service.
|
|
47052
|
+
* * **offline**: The instance has expired within an allowable period. In this state, it is unavailable.
|
|
47053
|
+
* * **disable**: The instance has been released.
|
|
47054
|
+
* * **overdue**: The instance has been stopped due to overdue payments.
|
|
47133
47055
|
*
|
|
47134
47056
|
* @example
|
|
47135
47057
|
* online
|
|
@@ -47172,7 +47094,7 @@ export class ListCacheReserveInstancesRequest extends $dara.Model {
|
|
|
47172
47094
|
export class ListCacheReserveInstancesResponseBody extends $dara.Model {
|
|
47173
47095
|
/**
|
|
47174
47096
|
* @remarks
|
|
47175
|
-
*
|
|
47097
|
+
* The cache reserve instances.
|
|
47176
47098
|
*/
|
|
47177
47099
|
instanceInfo?: ListCacheReserveInstancesResponseBodyInstanceInfo[];
|
|
47178
47100
|
/**
|
|
@@ -47498,7 +47420,7 @@ export class ListCacheRulesResponse extends $dara.Model {
|
|
|
47498
47420
|
export class ListCertificatesRequest extends $dara.Model {
|
|
47499
47421
|
/**
|
|
47500
47422
|
* @remarks
|
|
47501
|
-
*
|
|
47423
|
+
* The keyword that is used for the search.
|
|
47502
47424
|
*
|
|
47503
47425
|
* @example
|
|
47504
47426
|
* example
|
|
@@ -47506,7 +47428,7 @@ export class ListCertificatesRequest extends $dara.Model {
|
|
|
47506
47428
|
keyword?: string;
|
|
47507
47429
|
/**
|
|
47508
47430
|
* @remarks
|
|
47509
|
-
*
|
|
47431
|
+
* The page number.
|
|
47510
47432
|
*
|
|
47511
47433
|
* @example
|
|
47512
47434
|
* 3
|
|
@@ -47514,7 +47436,7 @@ export class ListCertificatesRequest extends $dara.Model {
|
|
|
47514
47436
|
pageNumber?: number;
|
|
47515
47437
|
/**
|
|
47516
47438
|
* @remarks
|
|
47517
|
-
*
|
|
47439
|
+
* The number of entries per page.
|
|
47518
47440
|
*
|
|
47519
47441
|
* @example
|
|
47520
47442
|
* 10
|
|
@@ -47522,7 +47444,7 @@ export class ListCertificatesRequest extends $dara.Model {
|
|
|
47522
47444
|
pageSize?: number;
|
|
47523
47445
|
/**
|
|
47524
47446
|
* @remarks
|
|
47525
|
-
*
|
|
47447
|
+
* The website ID, which can be obtained by calling the [ListSites](~~ListSites~~) operation.
|
|
47526
47448
|
*
|
|
47527
47449
|
* This parameter is required.
|
|
47528
47450
|
*
|
|
@@ -47532,7 +47454,7 @@ export class ListCertificatesRequest extends $dara.Model {
|
|
|
47532
47454
|
siteId?: number;
|
|
47533
47455
|
/**
|
|
47534
47456
|
* @remarks
|
|
47535
|
-
*
|
|
47457
|
+
* Specifies whether to return only valid certificates.
|
|
47536
47458
|
*
|
|
47537
47459
|
* @example
|
|
47538
47460
|
* 1
|
|
@@ -47570,7 +47492,7 @@ export class ListCertificatesRequest extends $dara.Model {
|
|
|
47570
47492
|
export class ListCertificatesResponseBody extends $dara.Model {
|
|
47571
47493
|
/**
|
|
47572
47494
|
* @remarks
|
|
47573
|
-
*
|
|
47495
|
+
* The page number.
|
|
47574
47496
|
*
|
|
47575
47497
|
* @example
|
|
47576
47498
|
* 1
|
|
@@ -47578,7 +47500,7 @@ export class ListCertificatesResponseBody extends $dara.Model {
|
|
|
47578
47500
|
pageNumber?: number;
|
|
47579
47501
|
/**
|
|
47580
47502
|
* @remarks
|
|
47581
|
-
*
|
|
47503
|
+
* The number of entries per page.
|
|
47582
47504
|
*
|
|
47583
47505
|
* @example
|
|
47584
47506
|
* 20
|
|
@@ -47586,7 +47508,7 @@ export class ListCertificatesResponseBody extends $dara.Model {
|
|
|
47586
47508
|
pageSize?: number;
|
|
47587
47509
|
/**
|
|
47588
47510
|
* @remarks
|
|
47589
|
-
*
|
|
47511
|
+
* The request ID.
|
|
47590
47512
|
*
|
|
47591
47513
|
* @example
|
|
47592
47514
|
* 15C66C7B-671A-4297-9187-2C4477247A74
|
|
@@ -47594,12 +47516,12 @@ export class ListCertificatesResponseBody extends $dara.Model {
|
|
|
47594
47516
|
requestId?: string;
|
|
47595
47517
|
/**
|
|
47596
47518
|
* @remarks
|
|
47597
|
-
*
|
|
47519
|
+
* The queried certificates.
|
|
47598
47520
|
*/
|
|
47599
47521
|
result?: ListCertificatesResponseBodyResult[];
|
|
47600
47522
|
/**
|
|
47601
47523
|
* @remarks
|
|
47602
|
-
*
|
|
47524
|
+
* The website ID.
|
|
47603
47525
|
*
|
|
47604
47526
|
* @example
|
|
47605
47527
|
* 1234567890123
|
|
@@ -47607,7 +47529,7 @@ export class ListCertificatesResponseBody extends $dara.Model {
|
|
|
47607
47529
|
siteId?: number;
|
|
47608
47530
|
/**
|
|
47609
47531
|
* @remarks
|
|
47610
|
-
*
|
|
47532
|
+
* The website name.
|
|
47611
47533
|
*
|
|
47612
47534
|
* @example
|
|
47613
47535
|
* example.com
|
|
@@ -47615,7 +47537,7 @@ export class ListCertificatesResponseBody extends $dara.Model {
|
|
|
47615
47537
|
siteName?: string;
|
|
47616
47538
|
/**
|
|
47617
47539
|
* @remarks
|
|
47618
|
-
*
|
|
47540
|
+
* The total number of entries returned.
|
|
47619
47541
|
*
|
|
47620
47542
|
* @example
|
|
47621
47543
|
* 10
|
|
@@ -51294,7 +51216,7 @@ export class ListListsResponse extends $dara.Model {
|
|
|
51294
51216
|
export class ListLoadBalancerOriginStatusRequest extends $dara.Model {
|
|
51295
51217
|
/**
|
|
51296
51218
|
* @remarks
|
|
51297
|
-
* Load balancer ID. When querying multiple load balancers, separate the IDs with commas. A maximum of 100 load balancer IDs can be passed at once. Load balancer IDs can be obtained by calling the [ListLoadBalancers](
|
|
51219
|
+
* Load balancer ID. When querying multiple load balancers, separate the IDs with commas. A maximum of 100 load balancer IDs can be passed at once. Load balancer IDs can be obtained by calling the [ListLoadBalancers](https://help.aliyun.com/document_detail/2868897.html) interface.
|
|
51298
51220
|
*
|
|
51299
51221
|
* This parameter is required.
|
|
51300
51222
|
*
|
|
@@ -56964,7 +56886,7 @@ export class PurchaseRatePlanRequest extends $dara.Model {
|
|
|
56964
56886
|
amount?: number;
|
|
56965
56887
|
/**
|
|
56966
56888
|
* @remarks
|
|
56967
|
-
*
|
|
56889
|
+
* Specifies whether to enable auto payment.
|
|
56968
56890
|
*
|
|
56969
56891
|
* @example
|
|
56970
56892
|
* true
|
|
@@ -56982,9 +56904,10 @@ export class PurchaseRatePlanRequest extends $dara.Model {
|
|
|
56982
56904
|
autoRenew?: boolean;
|
|
56983
56905
|
/**
|
|
56984
56906
|
* @remarks
|
|
56985
|
-
*
|
|
56986
|
-
*
|
|
56987
|
-
*
|
|
56907
|
+
* The billing method. Valid values:
|
|
56908
|
+
*
|
|
56909
|
+
* * PREPAY: subscription.
|
|
56910
|
+
* * POSTPAY: pay-as-you-go.
|
|
56988
56911
|
*
|
|
56989
56912
|
* @example
|
|
56990
56913
|
* PREPAY
|
|
@@ -56992,10 +56915,11 @@ export class PurchaseRatePlanRequest extends $dara.Model {
|
|
|
56992
56915
|
chargeType?: string;
|
|
56993
56916
|
/**
|
|
56994
56917
|
* @remarks
|
|
56995
|
-
*
|
|
56996
|
-
*
|
|
56997
|
-
*
|
|
56998
|
-
*
|
|
56918
|
+
* The service location. Valid values:
|
|
56919
|
+
*
|
|
56920
|
+
* * domestic: the Chinese mainland.
|
|
56921
|
+
* * global: global.
|
|
56922
|
+
* * overseas: outside the Chinese mainland.
|
|
56999
56923
|
*
|
|
57000
56924
|
* @example
|
|
57001
56925
|
* domestic
|
|
@@ -57035,9 +56959,10 @@ export class PurchaseRatePlanRequest extends $dara.Model {
|
|
|
57035
56959
|
siteName?: string;
|
|
57036
56960
|
/**
|
|
57037
56961
|
* @remarks
|
|
57038
|
-
*
|
|
57039
|
-
*
|
|
57040
|
-
*
|
|
56962
|
+
* The DNS setup option for the website. Valid values:
|
|
56963
|
+
*
|
|
56964
|
+
* * NS
|
|
56965
|
+
* * CNAME
|
|
57041
56966
|
*
|
|
57042
56967
|
* @example
|
|
57043
56968
|
* CNAME
|
|
@@ -58654,6 +58579,7 @@ export class SetClientCertificateHostnamesShrinkRequest extends $dara.Model {
|
|
|
58654
58579
|
}
|
|
58655
58580
|
|
|
58656
58581
|
export class SetClientCertificateHostnamesResponseBody extends $dara.Model {
|
|
58582
|
+
hostnames?: string[];
|
|
58657
58583
|
/**
|
|
58658
58584
|
* @remarks
|
|
58659
58585
|
* The ID of the client CA certificate.
|
|
@@ -58688,6 +58614,7 @@ export class SetClientCertificateHostnamesResponseBody extends $dara.Model {
|
|
|
58688
58614
|
siteName?: string;
|
|
58689
58615
|
static names(): { [key: string]: string } {
|
|
58690
58616
|
return {
|
|
58617
|
+
hostnames: 'Hostnames',
|
|
58691
58618
|
id: 'Id',
|
|
58692
58619
|
requestId: 'RequestId',
|
|
58693
58620
|
siteId: 'SiteId',
|
|
@@ -58697,6 +58624,7 @@ export class SetClientCertificateHostnamesResponseBody extends $dara.Model {
|
|
|
58697
58624
|
|
|
58698
58625
|
static types(): { [key: string]: any } {
|
|
58699
58626
|
return {
|
|
58627
|
+
hostnames: { 'type': 'array', 'itemType': 'string' },
|
|
58700
58628
|
id: 'string',
|
|
58701
58629
|
requestId: 'string',
|
|
58702
58630
|
siteId: 'number',
|
|
@@ -58705,6 +58633,9 @@ export class SetClientCertificateHostnamesResponseBody extends $dara.Model {
|
|
|
58705
58633
|
}
|
|
58706
58634
|
|
|
58707
58635
|
validate() {
|
|
58636
|
+
if(Array.isArray(this.hostnames)) {
|
|
58637
|
+
$dara.Model.validateArray(this.hostnames);
|
|
58638
|
+
}
|
|
58708
58639
|
super.validate();
|
|
58709
58640
|
}
|
|
58710
58641
|
|
|
@@ -59938,9 +59869,10 @@ export class UpdateCacheRuleResponse extends $dara.Model {
|
|
|
59938
59869
|
export class UpdateCacheTagRequest extends $dara.Model {
|
|
59939
59870
|
/**
|
|
59940
59871
|
* @remarks
|
|
59941
|
-
*
|
|
59942
|
-
*
|
|
59943
|
-
*
|
|
59872
|
+
* Specifies whether to ignore case sensitivity. Valid values:
|
|
59873
|
+
*
|
|
59874
|
+
* * on
|
|
59875
|
+
* * off
|
|
59944
59876
|
*
|
|
59945
59877
|
* @example
|
|
59946
59878
|
* on
|
|
@@ -59948,7 +59880,7 @@ export class UpdateCacheTagRequest extends $dara.Model {
|
|
|
59948
59880
|
caseInsensitive?: string;
|
|
59949
59881
|
/**
|
|
59950
59882
|
* @remarks
|
|
59951
|
-
*
|
|
59883
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
59952
59884
|
*
|
|
59953
59885
|
* This parameter is required.
|
|
59954
59886
|
*
|
|
@@ -59958,7 +59890,7 @@ export class UpdateCacheTagRequest extends $dara.Model {
|
|
|
59958
59890
|
siteId?: number;
|
|
59959
59891
|
/**
|
|
59960
59892
|
* @remarks
|
|
59961
|
-
* The version number of the
|
|
59893
|
+
* The version number of the website configurations. You can use this parameter to specify a version of your website to apply the feature settings. By default, version 0 is used.
|
|
59962
59894
|
*
|
|
59963
59895
|
* @example
|
|
59964
59896
|
* 1
|
|
@@ -59966,7 +59898,7 @@ export class UpdateCacheTagRequest extends $dara.Model {
|
|
|
59966
59898
|
siteVersion?: number;
|
|
59967
59899
|
/**
|
|
59968
59900
|
* @remarks
|
|
59969
|
-
*
|
|
59901
|
+
* The name of the custom cache tag.
|
|
59970
59902
|
*
|
|
59971
59903
|
* @example
|
|
59972
59904
|
* example
|
|
@@ -60002,7 +59934,7 @@ export class UpdateCacheTagRequest extends $dara.Model {
|
|
|
60002
59934
|
export class UpdateCacheTagResponseBody extends $dara.Model {
|
|
60003
59935
|
/**
|
|
60004
59936
|
* @remarks
|
|
60005
|
-
*
|
|
59937
|
+
* The request ID.
|
|
60006
59938
|
*
|
|
60007
59939
|
* @example
|
|
60008
59940
|
* CB1A380B-09F0-41BB-280B-72F8FD6DA2FE
|
|
@@ -60371,6 +60303,8 @@ export class UpdateCustomScenePolicyRequest extends $dara.Model {
|
|
|
60371
60303
|
* @remarks
|
|
60372
60304
|
* The IDs of the websites that you want to associate with the policy. Separate multiple IDs with commas (,).
|
|
60373
60305
|
*
|
|
60306
|
+
* This parameter is required.
|
|
60307
|
+
*
|
|
60374
60308
|
* @example
|
|
60375
60309
|
* 123456****
|
|
60376
60310
|
*/
|
|
@@ -60574,10 +60508,10 @@ export class UpdateCustomScenePolicyResponse extends $dara.Model {
|
|
|
60574
60508
|
export class UpdateDevelopmentModeRequest extends $dara.Model {
|
|
60575
60509
|
/**
|
|
60576
60510
|
* @remarks
|
|
60577
|
-
*
|
|
60511
|
+
* Specifies whether to enable Development Mode. Valid values:
|
|
60578
60512
|
*
|
|
60579
|
-
*
|
|
60580
|
-
*
|
|
60513
|
+
* * on
|
|
60514
|
+
* * off
|
|
60581
60515
|
*
|
|
60582
60516
|
* This parameter is required.
|
|
60583
60517
|
*
|
|
@@ -60587,7 +60521,7 @@ export class UpdateDevelopmentModeRequest extends $dara.Model {
|
|
|
60587
60521
|
enable?: string;
|
|
60588
60522
|
/**
|
|
60589
60523
|
* @remarks
|
|
60590
|
-
*
|
|
60524
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
60591
60525
|
*
|
|
60592
60526
|
* This parameter is required.
|
|
60593
60527
|
*
|
|
@@ -60621,7 +60555,7 @@ export class UpdateDevelopmentModeRequest extends $dara.Model {
|
|
|
60621
60555
|
export class UpdateDevelopmentModeResponseBody extends $dara.Model {
|
|
60622
60556
|
/**
|
|
60623
60557
|
* @remarks
|
|
60624
|
-
*
|
|
60558
|
+
* The request ID.
|
|
60625
60559
|
*
|
|
60626
60560
|
* @example
|
|
60627
60561
|
* 65C66B7B-671A-8297-9187-2R5477247B76
|
|
@@ -60685,16 +60619,25 @@ export class UpdateDevelopmentModeResponse extends $dara.Model {
|
|
|
60685
60619
|
|
|
60686
60620
|
export class UpdateEdgeContainerAppLogRiverRequest extends $dara.Model {
|
|
60687
60621
|
/**
|
|
60622
|
+
* @remarks
|
|
60623
|
+
* The application ID, which can be obtained by calling the [ListEdgeContainerApps](https://help.aliyun.com/document_detail/2852396.html) operation.
|
|
60624
|
+
*
|
|
60688
60625
|
* @example
|
|
60689
60626
|
* app-88068867578379****
|
|
60690
60627
|
*/
|
|
60691
60628
|
appId?: string;
|
|
60692
60629
|
/**
|
|
60630
|
+
* @remarks
|
|
60631
|
+
* The log path of the container.
|
|
60632
|
+
*
|
|
60693
60633
|
* @example
|
|
60694
60634
|
* /root/hello.log
|
|
60695
60635
|
*/
|
|
60696
60636
|
path?: string;
|
|
60697
60637
|
/**
|
|
60638
|
+
* @remarks
|
|
60639
|
+
* Specifies whether to collect the standard output of the container.
|
|
60640
|
+
*
|
|
60698
60641
|
* @example
|
|
60699
60642
|
* true
|
|
60700
60643
|
*/
|
|
@@ -60726,16 +60669,25 @@ export class UpdateEdgeContainerAppLogRiverRequest extends $dara.Model {
|
|
|
60726
60669
|
|
|
60727
60670
|
export class UpdateEdgeContainerAppLogRiverResponseBody extends $dara.Model {
|
|
60728
60671
|
/**
|
|
60672
|
+
* @remarks
|
|
60673
|
+
* The log path of the container.
|
|
60674
|
+
*
|
|
60729
60675
|
* @example
|
|
60730
60676
|
* /root/hello.log
|
|
60731
60677
|
*/
|
|
60732
60678
|
path?: string;
|
|
60733
60679
|
/**
|
|
60680
|
+
* @remarks
|
|
60681
|
+
* The request ID.
|
|
60682
|
+
*
|
|
60734
60683
|
* @example
|
|
60735
60684
|
* 42DE97FA-45D2-5615-9A31-55D9EC0D7563
|
|
60736
60685
|
*/
|
|
60737
60686
|
requestId?: string;
|
|
60738
60687
|
/**
|
|
60688
|
+
* @remarks
|
|
60689
|
+
* Indicates whether the standard output of the container is collected.
|
|
60690
|
+
*
|
|
60739
60691
|
* @example
|
|
60740
60692
|
* true
|
|
60741
60693
|
*/
|
|
@@ -61794,10 +61746,10 @@ export class UpdateHttpsBasicConfigurationResponse extends $dara.Model {
|
|
|
61794
61746
|
export class UpdateIPv6Request extends $dara.Model {
|
|
61795
61747
|
/**
|
|
61796
61748
|
* @remarks
|
|
61797
|
-
*
|
|
61749
|
+
* Specifies whether to enable IPv6. Valid values:
|
|
61798
61750
|
*
|
|
61799
|
-
*
|
|
61800
|
-
*
|
|
61751
|
+
* * **on**
|
|
61752
|
+
* * **off**
|
|
61801
61753
|
*
|
|
61802
61754
|
* This parameter is required.
|
|
61803
61755
|
*
|
|
@@ -61807,7 +61759,7 @@ export class UpdateIPv6Request extends $dara.Model {
|
|
|
61807
61759
|
enable?: string;
|
|
61808
61760
|
/**
|
|
61809
61761
|
* @remarks
|
|
61810
|
-
*
|
|
61762
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
61811
61763
|
*
|
|
61812
61764
|
* This parameter is required.
|
|
61813
61765
|
*
|
|
@@ -61841,7 +61793,7 @@ export class UpdateIPv6Request extends $dara.Model {
|
|
|
61841
61793
|
export class UpdateIPv6ResponseBody extends $dara.Model {
|
|
61842
61794
|
/**
|
|
61843
61795
|
* @remarks
|
|
61844
|
-
*
|
|
61796
|
+
* The request ID.
|
|
61845
61797
|
*
|
|
61846
61798
|
* @example
|
|
61847
61799
|
* 15C66C7B-671A-4297-9187-2C4477247A74
|
|
@@ -62265,7 +62217,7 @@ export class UpdateListResponse extends $dara.Model {
|
|
|
62265
62217
|
export class UpdateLoadBalancerRequest extends $dara.Model {
|
|
62266
62218
|
/**
|
|
62267
62219
|
* @remarks
|
|
62268
|
-
*
|
|
62220
|
+
* Cross-pool fallback configuration.
|
|
62269
62221
|
*/
|
|
62270
62222
|
adaptiveRouting?: UpdateLoadBalancerRequestAdaptiveRouting;
|
|
62271
62223
|
/**
|
|
@@ -62302,7 +62254,7 @@ export class UpdateLoadBalancerRequest extends $dara.Model {
|
|
|
62302
62254
|
fallbackPool?: number;
|
|
62303
62255
|
/**
|
|
62304
62256
|
* @remarks
|
|
62305
|
-
* Load balancer ID, which can be obtained by calling the [ListLoadBalancers](
|
|
62257
|
+
* Load balancer ID, which can be obtained by calling the [ListLoadBalancers](https://help.aliyun.com/document_detail/2868897.html) interface.
|
|
62306
62258
|
*
|
|
62307
62259
|
* This parameter is required.
|
|
62308
62260
|
*
|
|
@@ -62349,7 +62301,7 @@ export class UpdateLoadBalancerRequest extends $dara.Model {
|
|
|
62349
62301
|
* Session persistence, with values:
|
|
62350
62302
|
* - off: Not enabled.
|
|
62351
62303
|
* - ip: Session persistence by IP.
|
|
62352
|
-
* - cookie:
|
|
62304
|
+
* - cookie: Session persistence by cookie.
|
|
62353
62305
|
*
|
|
62354
62306
|
* @example
|
|
62355
62307
|
* ip
|
|
@@ -62456,7 +62408,7 @@ export class UpdateLoadBalancerRequest extends $dara.Model {
|
|
|
62456
62408
|
export class UpdateLoadBalancerShrinkRequest extends $dara.Model {
|
|
62457
62409
|
/**
|
|
62458
62410
|
* @remarks
|
|
62459
|
-
*
|
|
62411
|
+
* Cross-pool fallback configuration.
|
|
62460
62412
|
*/
|
|
62461
62413
|
adaptiveRoutingShrink?: string;
|
|
62462
62414
|
/**
|
|
@@ -62493,7 +62445,7 @@ export class UpdateLoadBalancerShrinkRequest extends $dara.Model {
|
|
|
62493
62445
|
fallbackPool?: number;
|
|
62494
62446
|
/**
|
|
62495
62447
|
* @remarks
|
|
62496
|
-
* Load balancer ID, which can be obtained by calling the [ListLoadBalancers](
|
|
62448
|
+
* Load balancer ID, which can be obtained by calling the [ListLoadBalancers](https://help.aliyun.com/document_detail/2868897.html) interface.
|
|
62497
62449
|
*
|
|
62498
62450
|
* This parameter is required.
|
|
62499
62451
|
*
|
|
@@ -62540,7 +62492,7 @@ export class UpdateLoadBalancerShrinkRequest extends $dara.Model {
|
|
|
62540
62492
|
* Session persistence, with values:
|
|
62541
62493
|
* - off: Not enabled.
|
|
62542
62494
|
* - ip: Session persistence by IP.
|
|
62543
|
-
* - cookie:
|
|
62495
|
+
* - cookie: Session persistence by cookie.
|
|
62544
62496
|
*
|
|
62545
62497
|
* @example
|
|
62546
62498
|
* ip
|
|
@@ -62697,9 +62649,10 @@ export class UpdateLoadBalancerResponse extends $dara.Model {
|
|
|
62697
62649
|
export class UpdateManagedTransformRequest extends $dara.Model {
|
|
62698
62650
|
/**
|
|
62699
62651
|
* @remarks
|
|
62700
|
-
*
|
|
62701
|
-
*
|
|
62702
|
-
*
|
|
62652
|
+
* Specifies whether to include the header that indicates the geographical location of a client in an origin request. Valid values:
|
|
62653
|
+
*
|
|
62654
|
+
* * on
|
|
62655
|
+
* * off
|
|
62703
62656
|
*
|
|
62704
62657
|
* @example
|
|
62705
62658
|
* on
|
|
@@ -62707,9 +62660,10 @@ export class UpdateManagedTransformRequest extends $dara.Model {
|
|
|
62707
62660
|
addClientGeolocationHeader?: string;
|
|
62708
62661
|
/**
|
|
62709
62662
|
* @remarks
|
|
62710
|
-
*
|
|
62711
|
-
*
|
|
62712
|
-
*
|
|
62663
|
+
* Specifies whether to include the "ali-real-client-ip" header that indicates the client\\"s real IP address in an origin request. Valid values:
|
|
62664
|
+
*
|
|
62665
|
+
* * on
|
|
62666
|
+
* * off
|
|
62713
62667
|
*
|
|
62714
62668
|
* @example
|
|
62715
62669
|
* on
|
|
@@ -62717,7 +62671,7 @@ export class UpdateManagedTransformRequest extends $dara.Model {
|
|
|
62717
62671
|
addRealClientIpHeader?: string;
|
|
62718
62672
|
/**
|
|
62719
62673
|
* @remarks
|
|
62720
|
-
*
|
|
62674
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
62721
62675
|
*
|
|
62722
62676
|
* This parameter is required.
|
|
62723
62677
|
*
|
|
@@ -62727,7 +62681,7 @@ export class UpdateManagedTransformRequest extends $dara.Model {
|
|
|
62727
62681
|
siteId?: number;
|
|
62728
62682
|
/**
|
|
62729
62683
|
* @remarks
|
|
62730
|
-
* The version number of the
|
|
62684
|
+
* The version number of the website. You can use this parameter to specify a version of your website to apply the feature settings. By default, version 0 is used.
|
|
62731
62685
|
*
|
|
62732
62686
|
* @example
|
|
62733
62687
|
* 0
|
|
@@ -62763,7 +62717,7 @@ export class UpdateManagedTransformRequest extends $dara.Model {
|
|
|
62763
62717
|
export class UpdateManagedTransformResponseBody extends $dara.Model {
|
|
62764
62718
|
/**
|
|
62765
62719
|
* @remarks
|
|
62766
|
-
*
|
|
62720
|
+
* The request ID.
|
|
62767
62721
|
*
|
|
62768
62722
|
* @example
|
|
62769
62723
|
* CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
|
|
@@ -63038,7 +62992,7 @@ export class UpdateOriginPoolRequest extends $dara.Model {
|
|
|
63038
62992
|
enabled?: boolean;
|
|
63039
62993
|
/**
|
|
63040
62994
|
* @remarks
|
|
63041
|
-
* The ID of the origin pool, which can be obtained by calling the [ListOriginPools](
|
|
62995
|
+
* The ID of the origin pool, which can be obtained by calling the [ListOriginPools](https://help.aliyun.com/document_detail/2863947.html) interface.
|
|
63042
62996
|
*
|
|
63043
62997
|
* This parameter is required.
|
|
63044
62998
|
*
|
|
@@ -63105,7 +63059,7 @@ export class UpdateOriginPoolShrinkRequest extends $dara.Model {
|
|
|
63105
63059
|
enabled?: boolean;
|
|
63106
63060
|
/**
|
|
63107
63061
|
* @remarks
|
|
63108
|
-
* The ID of the origin pool, which can be obtained by calling the [ListOriginPools](
|
|
63062
|
+
* The ID of the origin pool, which can be obtained by calling the [ListOriginPools](https://help.aliyun.com/document_detail/2863947.html) interface.
|
|
63109
63063
|
*
|
|
63110
63064
|
* This parameter is required.
|
|
63111
63065
|
*
|
|
@@ -63482,6 +63436,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
63482
63436
|
* 4433
|
|
63483
63437
|
*/
|
|
63484
63438
|
originHttpsPort?: string;
|
|
63439
|
+
originMtls?: string;
|
|
63485
63440
|
/**
|
|
63486
63441
|
* @remarks
|
|
63487
63442
|
* Protocol used for the origin request. Possible values:
|
|
@@ -63501,6 +63456,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
63501
63456
|
* origin.example.com
|
|
63502
63457
|
*/
|
|
63503
63458
|
originSni?: string;
|
|
63459
|
+
originVerify?: string;
|
|
63504
63460
|
/**
|
|
63505
63461
|
* @remarks
|
|
63506
63462
|
* Use range chunked transfer to download files from the origin. Possible values:
|
|
@@ -63555,8 +63511,10 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
63555
63511
|
originHost: 'OriginHost',
|
|
63556
63512
|
originHttpPort: 'OriginHttpPort',
|
|
63557
63513
|
originHttpsPort: 'OriginHttpsPort',
|
|
63514
|
+
originMtls: 'OriginMtls',
|
|
63558
63515
|
originScheme: 'OriginScheme',
|
|
63559
63516
|
originSni: 'OriginSni',
|
|
63517
|
+
originVerify: 'OriginVerify',
|
|
63560
63518
|
range: 'Range',
|
|
63561
63519
|
rule: 'Rule',
|
|
63562
63520
|
ruleEnable: 'RuleEnable',
|
|
@@ -63572,8 +63530,10 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
63572
63530
|
originHost: 'string',
|
|
63573
63531
|
originHttpPort: 'string',
|
|
63574
63532
|
originHttpsPort: 'string',
|
|
63533
|
+
originMtls: 'string',
|
|
63575
63534
|
originScheme: 'string',
|
|
63576
63535
|
originSni: 'string',
|
|
63536
|
+
originVerify: 'string',
|
|
63577
63537
|
range: 'string',
|
|
63578
63538
|
rule: 'string',
|
|
63579
63539
|
ruleEnable: 'string',
|
|
@@ -63805,6 +63765,13 @@ export class UpdatePageResponse extends $dara.Model {
|
|
|
63805
63765
|
}
|
|
63806
63766
|
|
|
63807
63767
|
export class UpdateRatePlanSpecRequest extends $dara.Model {
|
|
63768
|
+
/**
|
|
63769
|
+
* @remarks
|
|
63770
|
+
* Specifies whether to enable auto payment.
|
|
63771
|
+
*
|
|
63772
|
+
* @example
|
|
63773
|
+
* true
|
|
63774
|
+
*/
|
|
63808
63775
|
autoPay?: boolean;
|
|
63809
63776
|
/**
|
|
63810
63777
|
* @example
|
|
@@ -63817,6 +63784,12 @@ export class UpdateRatePlanSpecRequest extends $dara.Model {
|
|
|
63817
63784
|
*/
|
|
63818
63785
|
instanceId?: string;
|
|
63819
63786
|
/**
|
|
63787
|
+
* @remarks
|
|
63788
|
+
* The specification update type. Valid values:
|
|
63789
|
+
*
|
|
63790
|
+
* * DOWNGRADE
|
|
63791
|
+
* * UPGRADE
|
|
63792
|
+
*
|
|
63820
63793
|
* @example
|
|
63821
63794
|
* UPGRADE
|
|
63822
63795
|
*/
|
|
@@ -64490,6 +64463,7 @@ export class UpdateRewriteUrlRuleRequest extends $dara.Model {
|
|
|
64490
64463
|
* Query string rewrite type. Value range:
|
|
64491
64464
|
*
|
|
64492
64465
|
* - static: Static mode.
|
|
64466
|
+
* - dynamic: Dynamic mode.
|
|
64493
64467
|
*
|
|
64494
64468
|
* @example
|
|
64495
64469
|
* static
|
|
@@ -64500,6 +64474,7 @@ export class UpdateRewriteUrlRuleRequest extends $dara.Model {
|
|
|
64500
64474
|
* URI rewrite type. Value range:
|
|
64501
64475
|
*
|
|
64502
64476
|
* - static: Static mode.
|
|
64477
|
+
* - dynamic: Dynamic mode.
|
|
64503
64478
|
*
|
|
64504
64479
|
* @example
|
|
64505
64480
|
* static
|
|
@@ -65670,10 +65645,10 @@ export class UpdateSiteDeliveryTaskStatusResponse extends $dara.Model {
|
|
|
65670
65645
|
export class UpdateSiteNameExclusiveRequest extends $dara.Model {
|
|
65671
65646
|
/**
|
|
65672
65647
|
* @remarks
|
|
65673
|
-
*
|
|
65648
|
+
* Specifies whether to enable site hold. Valid values:
|
|
65674
65649
|
*
|
|
65675
|
-
*
|
|
65676
|
-
*
|
|
65650
|
+
* * on
|
|
65651
|
+
* * off
|
|
65677
65652
|
*
|
|
65678
65653
|
* This parameter is required.
|
|
65679
65654
|
*
|
|
@@ -65683,7 +65658,7 @@ export class UpdateSiteNameExclusiveRequest extends $dara.Model {
|
|
|
65683
65658
|
enable?: string;
|
|
65684
65659
|
/**
|
|
65685
65660
|
* @remarks
|
|
65686
|
-
*
|
|
65661
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
65687
65662
|
*
|
|
65688
65663
|
* This parameter is required.
|
|
65689
65664
|
*
|
|
@@ -65717,7 +65692,7 @@ export class UpdateSiteNameExclusiveRequest extends $dara.Model {
|
|
|
65717
65692
|
export class UpdateSiteNameExclusiveResponseBody extends $dara.Model {
|
|
65718
65693
|
/**
|
|
65719
65694
|
* @remarks
|
|
65720
|
-
*
|
|
65695
|
+
* The request ID.
|
|
65721
65696
|
*
|
|
65722
65697
|
* @example
|
|
65723
65698
|
* 0AEDAF20-4DDF-4165-8750-47FF9C1929C9
|
|
@@ -65782,9 +65757,10 @@ export class UpdateSiteNameExclusiveResponse extends $dara.Model {
|
|
|
65782
65757
|
export class UpdateSitePauseRequest extends $dara.Model {
|
|
65783
65758
|
/**
|
|
65784
65759
|
* @remarks
|
|
65785
|
-
*
|
|
65786
|
-
*
|
|
65787
|
-
*
|
|
65760
|
+
* Specifies whether to temporarily pause ESA on the website. If you set this parameter to true, all requests to the domains in your DNS records go directly to your origin server. Valid values:
|
|
65761
|
+
*
|
|
65762
|
+
* * true
|
|
65763
|
+
* * false
|
|
65788
65764
|
*
|
|
65789
65765
|
* This parameter is required.
|
|
65790
65766
|
*
|
|
@@ -65794,7 +65770,7 @@ export class UpdateSitePauseRequest extends $dara.Model {
|
|
|
65794
65770
|
paused?: boolean;
|
|
65795
65771
|
/**
|
|
65796
65772
|
* @remarks
|
|
65797
|
-
* The
|
|
65773
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
65798
65774
|
*
|
|
65799
65775
|
* This parameter is required.
|
|
65800
65776
|
*
|
|
@@ -65828,7 +65804,7 @@ export class UpdateSitePauseRequest extends $dara.Model {
|
|
|
65828
65804
|
export class UpdateSitePauseResponseBody extends $dara.Model {
|
|
65829
65805
|
/**
|
|
65830
65806
|
* @remarks
|
|
65831
|
-
*
|
|
65807
|
+
* The request ID.
|
|
65832
65808
|
*
|
|
65833
65809
|
* @example
|
|
65834
65810
|
* 6abd807e-ed2a-44de-ac54-ac38a62472e6
|
|
@@ -66000,11 +65976,12 @@ export class UpdateSiteVanityNSResponse extends $dara.Model {
|
|
|
66000
65976
|
export class UpdateTieredCacheRequest extends $dara.Model {
|
|
66001
65977
|
/**
|
|
66002
65978
|
* @remarks
|
|
66003
|
-
*
|
|
66004
|
-
*
|
|
66005
|
-
*
|
|
66006
|
-
*
|
|
66007
|
-
*
|
|
65979
|
+
* The tiered cache architecture mode. Valid values:
|
|
65980
|
+
*
|
|
65981
|
+
* * edge: edge tiered cache.
|
|
65982
|
+
* * edge_smart: edge tiered cache + smart tiered cache.
|
|
65983
|
+
* * edge_regional: edge tiered cache + regional tiered cache.
|
|
65984
|
+
* * edge_regional_smart: edge tiered cache + regional tiered cache + smart tiered cache.
|
|
66008
65985
|
*
|
|
66009
65986
|
* This parameter is required.
|
|
66010
65987
|
*
|
|
@@ -66014,7 +65991,7 @@ export class UpdateTieredCacheRequest extends $dara.Model {
|
|
|
66014
65991
|
cacheArchitectureMode?: string;
|
|
66015
65992
|
/**
|
|
66016
65993
|
* @remarks
|
|
66017
|
-
*
|
|
65994
|
+
* The website ID, which can be obtained by calling the [ListSites](https://help.aliyun.com/document_detail/2850189.html) operation.
|
|
66018
65995
|
*
|
|
66019
65996
|
* This parameter is required.
|
|
66020
65997
|
*
|
|
@@ -66048,7 +66025,7 @@ export class UpdateTieredCacheRequest extends $dara.Model {
|
|
|
66048
66025
|
export class UpdateTieredCacheResponseBody extends $dara.Model {
|
|
66049
66026
|
/**
|
|
66050
66027
|
* @remarks
|
|
66051
|
-
*
|
|
66028
|
+
* The request ID.
|
|
66052
66029
|
*
|
|
66053
66030
|
* @example
|
|
66054
66031
|
* 15C66C7B-671A-4297-9187-2C4477247A74
|
|
@@ -67929,7 +67906,7 @@ export default class Client extends OpenApi {
|
|
|
67929
67906
|
}
|
|
67930
67907
|
|
|
67931
67908
|
/**
|
|
67932
|
-
* Activates
|
|
67909
|
+
* Activates the client based on the certificate ID.
|
|
67933
67910
|
*
|
|
67934
67911
|
* @param request - ActivateClientCertificateRequest
|
|
67935
67912
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -67961,7 +67938,7 @@ export default class Client extends OpenApi {
|
|
|
67961
67938
|
}
|
|
67962
67939
|
|
|
67963
67940
|
/**
|
|
67964
|
-
* Activates
|
|
67941
|
+
* Activates the client based on the certificate ID.
|
|
67965
67942
|
*
|
|
67966
67943
|
* @param request - ActivateClientCertificateRequest
|
|
67967
67944
|
* @returns ActivateClientCertificateResponse
|
|
@@ -68019,7 +67996,7 @@ export default class Client extends OpenApi {
|
|
|
68019
67996
|
}
|
|
68020
67997
|
|
|
68021
67998
|
/**
|
|
68022
|
-
*
|
|
67999
|
+
* Applies for a free SSL certificate.
|
|
68023
68000
|
*
|
|
68024
68001
|
* @param request - ApplyCertificateRequest
|
|
68025
68002
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -68051,7 +68028,7 @@ export default class Client extends OpenApi {
|
|
|
68051
68028
|
}
|
|
68052
68029
|
|
|
68053
68030
|
/**
|
|
68054
|
-
*
|
|
68031
|
+
* Applies for a free SSL certificate.
|
|
68055
68032
|
*
|
|
68056
68033
|
* @param request - ApplyCertificateRequest
|
|
68057
68034
|
* @returns ApplyCertificateResponse
|
|
@@ -70463,6 +70440,10 @@ export default class Client extends OpenApi {
|
|
|
70463
70440
|
query["OriginHttpsPort"] = request.originHttpsPort;
|
|
70464
70441
|
}
|
|
70465
70442
|
|
|
70443
|
+
if (!$dara.isNull(request.originMtls)) {
|
|
70444
|
+
query["OriginMtls"] = request.originMtls;
|
|
70445
|
+
}
|
|
70446
|
+
|
|
70466
70447
|
if (!$dara.isNull(request.originScheme)) {
|
|
70467
70448
|
query["OriginScheme"] = request.originScheme;
|
|
70468
70449
|
}
|
|
@@ -70471,6 +70452,10 @@ export default class Client extends OpenApi {
|
|
|
70471
70452
|
query["OriginSni"] = request.originSni;
|
|
70472
70453
|
}
|
|
70473
70454
|
|
|
70455
|
+
if (!$dara.isNull(request.originVerify)) {
|
|
70456
|
+
query["OriginVerify"] = request.originVerify;
|
|
70457
|
+
}
|
|
70458
|
+
|
|
70474
70459
|
if (!$dara.isNull(request.range)) {
|
|
70475
70460
|
query["Range"] = request.range;
|
|
70476
70461
|
}
|
|
@@ -71876,10 +71861,10 @@ export default class Client extends OpenApi {
|
|
|
71876
71861
|
}
|
|
71877
71862
|
|
|
71878
71863
|
/**
|
|
71879
|
-
*
|
|
71864
|
+
* Disables version management for a website.
|
|
71880
71865
|
*
|
|
71881
71866
|
* @remarks
|
|
71882
|
-
*
|
|
71867
|
+
* You can disable version management only when the default environment and version 0 exist.
|
|
71883
71868
|
*
|
|
71884
71869
|
* @param request - DeactivateVersionManagementRequest
|
|
71885
71870
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -71915,10 +71900,10 @@ export default class Client extends OpenApi {
|
|
|
71915
71900
|
}
|
|
71916
71901
|
|
|
71917
71902
|
/**
|
|
71918
|
-
*
|
|
71903
|
+
* Disables version management for a website.
|
|
71919
71904
|
*
|
|
71920
71905
|
* @remarks
|
|
71921
|
-
*
|
|
71906
|
+
* You can disable version management only when the default environment and version 0 exist.
|
|
71922
71907
|
*
|
|
71923
71908
|
* @param request - DeactivateVersionManagementRequest
|
|
71924
71909
|
* @returns DeactivateVersionManagementResponse
|
|
@@ -74323,7 +74308,10 @@ export default class Client extends OpenApi {
|
|
|
74323
74308
|
}
|
|
74324
74309
|
|
|
74325
74310
|
/**
|
|
74326
|
-
*
|
|
74311
|
+
* Queries the status of an instance that uses a plan.
|
|
74312
|
+
*
|
|
74313
|
+
* @remarks
|
|
74314
|
+
* You can query the status of an instance after you purchase a plan for the instance.
|
|
74327
74315
|
*
|
|
74328
74316
|
* @param request - DescribeRatePlanInstanceStatusRequest
|
|
74329
74317
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -74359,7 +74347,10 @@ export default class Client extends OpenApi {
|
|
|
74359
74347
|
}
|
|
74360
74348
|
|
|
74361
74349
|
/**
|
|
74362
|
-
*
|
|
74350
|
+
* Queries the status of an instance that uses a plan.
|
|
74351
|
+
*
|
|
74352
|
+
* @remarks
|
|
74353
|
+
* You can query the status of an instance after you purchase a plan for the instance.
|
|
74363
74354
|
*
|
|
74364
74355
|
* @param request - DescribeRatePlanInstanceStatusRequest
|
|
74365
74356
|
* @returns DescribeRatePlanInstanceStatusResponse
|
|
@@ -74570,7 +74561,7 @@ export default class Client extends OpenApi {
|
|
|
74570
74561
|
}
|
|
74571
74562
|
|
|
74572
74563
|
/**
|
|
74573
|
-
*
|
|
74564
|
+
* Queries the available specifications of cache reserve instances.
|
|
74574
74565
|
*
|
|
74575
74566
|
* @param request - GetCacheReserveSpecificationRequest
|
|
74576
74567
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -74598,7 +74589,7 @@ export default class Client extends OpenApi {
|
|
|
74598
74589
|
}
|
|
74599
74590
|
|
|
74600
74591
|
/**
|
|
74601
|
-
*
|
|
74592
|
+
* Queries the available specifications of cache reserve instances.
|
|
74602
74593
|
* @returns GetCacheReserveSpecificationResponse
|
|
74603
74594
|
*/
|
|
74604
74595
|
async getCacheReserveSpecification(): Promise<GetCacheReserveSpecificationResponse> {
|
|
@@ -75084,7 +75075,7 @@ export default class Client extends OpenApi {
|
|
|
75084
75075
|
}
|
|
75085
75076
|
|
|
75086
75077
|
/**
|
|
75087
|
-
*
|
|
75078
|
+
* Queries the log collection configuration of a containerized application.
|
|
75088
75079
|
*
|
|
75089
75080
|
* @param request - GetEdgeContainerAppLogRiverRequest
|
|
75090
75081
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -75116,7 +75107,7 @@ export default class Client extends OpenApi {
|
|
|
75116
75107
|
}
|
|
75117
75108
|
|
|
75118
75109
|
/**
|
|
75119
|
-
*
|
|
75110
|
+
* Queries the log collection configuration of a containerized application.
|
|
75120
75111
|
*
|
|
75121
75112
|
* @param request - GetEdgeContainerAppLogRiverRequest
|
|
75122
75113
|
* @returns GetEdgeContainerAppLogRiverResponse
|
|
@@ -75569,7 +75560,7 @@ export default class Client extends OpenApi {
|
|
|
75569
75560
|
}
|
|
75570
75561
|
|
|
75571
75562
|
/**
|
|
75572
|
-
*
|
|
75563
|
+
* Queries the IPv6 configuration of a website.
|
|
75573
75564
|
*
|
|
75574
75565
|
* @param request - GetIPv6Request
|
|
75575
75566
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -75601,7 +75592,7 @@ export default class Client extends OpenApi {
|
|
|
75601
75592
|
}
|
|
75602
75593
|
|
|
75603
75594
|
/**
|
|
75604
|
-
*
|
|
75595
|
+
* Queries the IPv6 configuration of a website.
|
|
75605
75596
|
*
|
|
75606
75597
|
* @param request - GetIPv6Request
|
|
75607
75598
|
* @returns GetIPv6Response
|
|
@@ -75874,7 +75865,7 @@ export default class Client extends OpenApi {
|
|
|
75874
75865
|
}
|
|
75875
75866
|
|
|
75876
75867
|
/**
|
|
75877
|
-
* Query
|
|
75868
|
+
* Query Managed Transform Configuration
|
|
75878
75869
|
*
|
|
75879
75870
|
* @param request - GetManagedTransformRequest
|
|
75880
75871
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -75906,7 +75897,7 @@ export default class Client extends OpenApi {
|
|
|
75906
75897
|
}
|
|
75907
75898
|
|
|
75908
75899
|
/**
|
|
75909
|
-
* Query
|
|
75900
|
+
* Query Managed Transform Configuration
|
|
75910
75901
|
*
|
|
75911
75902
|
* @param request - GetManagedTransformRequest
|
|
75912
75903
|
* @returns GetManagedTransformResponse
|
|
@@ -76860,7 +76851,7 @@ export default class Client extends OpenApi {
|
|
|
76860
76851
|
}
|
|
76861
76852
|
|
|
76862
76853
|
/**
|
|
76863
|
-
*
|
|
76854
|
+
* Queries the site hold configuration of a website. After you enable site hold, other accounts cannot add your website domain or its subdomains to ESA.
|
|
76864
76855
|
*
|
|
76865
76856
|
* @param request - GetSiteNameExclusiveRequest
|
|
76866
76857
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -76892,7 +76883,7 @@ export default class Client extends OpenApi {
|
|
|
76892
76883
|
}
|
|
76893
76884
|
|
|
76894
76885
|
/**
|
|
76895
|
-
*
|
|
76886
|
+
* Queries the site hold configuration of a website. After you enable site hold, other accounts cannot add your website domain or its subdomains to ESA.
|
|
76896
76887
|
*
|
|
76897
76888
|
* @param request - GetSiteNameExclusiveRequest
|
|
76898
76889
|
* @returns GetSiteNameExclusiveResponse
|
|
@@ -76903,7 +76894,7 @@ export default class Client extends OpenApi {
|
|
|
76903
76894
|
}
|
|
76904
76895
|
|
|
76905
76896
|
/**
|
|
76906
|
-
*
|
|
76897
|
+
* Queries the ESA proxy configuration of a website.
|
|
76907
76898
|
*
|
|
76908
76899
|
* @param request - GetSitePauseRequest
|
|
76909
76900
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -76935,7 +76926,7 @@ export default class Client extends OpenApi {
|
|
|
76935
76926
|
}
|
|
76936
76927
|
|
|
76937
76928
|
/**
|
|
76938
|
-
*
|
|
76929
|
+
* Queries the ESA proxy configuration of a website.
|
|
76939
76930
|
*
|
|
76940
76931
|
* @param request - GetSitePauseRequest
|
|
76941
76932
|
* @returns GetSitePauseResponse
|
|
@@ -77418,7 +77409,7 @@ export default class Client extends OpenApi {
|
|
|
77418
77409
|
}
|
|
77419
77410
|
|
|
77420
77411
|
/**
|
|
77421
|
-
*
|
|
77412
|
+
* Lists certificates of a website.
|
|
77422
77413
|
*
|
|
77423
77414
|
* @param request - ListCertificatesRequest
|
|
77424
77415
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -77450,7 +77441,7 @@ export default class Client extends OpenApi {
|
|
|
77450
77441
|
}
|
|
77451
77442
|
|
|
77452
77443
|
/**
|
|
77453
|
-
*
|
|
77444
|
+
* Lists certificates of a website.
|
|
77454
77445
|
*
|
|
77455
77446
|
* @param request - ListCertificatesRequest
|
|
77456
77447
|
* @returns ListCertificatesResponse
|
|
@@ -81110,7 +81101,7 @@ export default class Client extends OpenApi {
|
|
|
81110
81101
|
}
|
|
81111
81102
|
|
|
81112
81103
|
/**
|
|
81113
|
-
*
|
|
81104
|
+
* Modifies the cache tag configuration of your website. You can call this operation when you need to specify tags in the Cache-Tag response header to use the purge by cache tag feature.
|
|
81114
81105
|
*
|
|
81115
81106
|
* @param request - UpdateCacheTagRequest
|
|
81116
81107
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81158,7 +81149,7 @@ export default class Client extends OpenApi {
|
|
|
81158
81149
|
}
|
|
81159
81150
|
|
|
81160
81151
|
/**
|
|
81161
|
-
*
|
|
81152
|
+
* Modifies the cache tag configuration of your website. You can call this operation when you need to specify tags in the Cache-Tag response header to use the purge by cache tag feature.
|
|
81162
81153
|
*
|
|
81163
81154
|
* @param request - UpdateCacheTagRequest
|
|
81164
81155
|
* @returns UpdateCacheTagResponse
|
|
@@ -81362,7 +81353,7 @@ export default class Client extends OpenApi {
|
|
|
81362
81353
|
}
|
|
81363
81354
|
|
|
81364
81355
|
/**
|
|
81365
|
-
*
|
|
81356
|
+
* Modifies the development mode configuration of your website. If you enable Development Mode, all requests bypass caching components on POPs and are redirected to the origin server. This allows clients to retrieve the most recent resources on the origin server.
|
|
81366
81357
|
*
|
|
81367
81358
|
* @param request - UpdateDevelopmentModeRequest
|
|
81368
81359
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81402,7 +81393,7 @@ export default class Client extends OpenApi {
|
|
|
81402
81393
|
}
|
|
81403
81394
|
|
|
81404
81395
|
/**
|
|
81405
|
-
*
|
|
81396
|
+
* Modifies the development mode configuration of your website. If you enable Development Mode, all requests bypass caching components on POPs and are redirected to the origin server. This allows clients to retrieve the most recent resources on the origin server.
|
|
81406
81397
|
*
|
|
81407
81398
|
* @param request - UpdateDevelopmentModeRequest
|
|
81408
81399
|
* @returns UpdateDevelopmentModeResponse
|
|
@@ -81413,7 +81404,7 @@ export default class Client extends OpenApi {
|
|
|
81413
81404
|
}
|
|
81414
81405
|
|
|
81415
81406
|
/**
|
|
81416
|
-
*
|
|
81407
|
+
* Updates the log collection configuration of a containerized application.
|
|
81417
81408
|
*
|
|
81418
81409
|
* @param request - UpdateEdgeContainerAppLogRiverRequest
|
|
81419
81410
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81457,7 +81448,7 @@ export default class Client extends OpenApi {
|
|
|
81457
81448
|
}
|
|
81458
81449
|
|
|
81459
81450
|
/**
|
|
81460
|
-
*
|
|
81451
|
+
* Updates the log collection configuration of a containerized application.
|
|
81461
81452
|
*
|
|
81462
81453
|
* @param request - UpdateEdgeContainerAppLogRiverRequest
|
|
81463
81454
|
* @returns UpdateEdgeContainerAppLogRiverResponse
|
|
@@ -81820,7 +81811,7 @@ export default class Client extends OpenApi {
|
|
|
81820
81811
|
}
|
|
81821
81812
|
|
|
81822
81813
|
/**
|
|
81823
|
-
*
|
|
81814
|
+
* Modifies the IPv6 configuration of a website.
|
|
81824
81815
|
*
|
|
81825
81816
|
* @param request - UpdateIPv6Request
|
|
81826
81817
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81860,7 +81851,7 @@ export default class Client extends OpenApi {
|
|
|
81860
81851
|
}
|
|
81861
81852
|
|
|
81862
81853
|
/**
|
|
81863
|
-
*
|
|
81854
|
+
* Modifies the IPv6 configuration of a website.
|
|
81864
81855
|
*
|
|
81865
81856
|
* @param request - UpdateIPv6Request
|
|
81866
81857
|
* @returns UpdateIPv6Response
|
|
@@ -82134,7 +82125,7 @@ export default class Client extends OpenApi {
|
|
|
82134
82125
|
}
|
|
82135
82126
|
|
|
82136
82127
|
/**
|
|
82137
|
-
*
|
|
82128
|
+
* Modifies the configuration of managed transforms for your website.
|
|
82138
82129
|
*
|
|
82139
82130
|
* @param request - UpdateManagedTransformRequest
|
|
82140
82131
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -82182,7 +82173,7 @@ export default class Client extends OpenApi {
|
|
|
82182
82173
|
}
|
|
82183
82174
|
|
|
82184
82175
|
/**
|
|
82185
|
-
*
|
|
82176
|
+
* Modifies the configuration of managed transforms for your website.
|
|
82186
82177
|
*
|
|
82187
82178
|
* @param request - UpdateManagedTransformRequest
|
|
82188
82179
|
* @returns UpdateManagedTransformResponse
|
|
@@ -82468,6 +82459,10 @@ export default class Client extends OpenApi {
|
|
|
82468
82459
|
query["OriginHttpsPort"] = request.originHttpsPort;
|
|
82469
82460
|
}
|
|
82470
82461
|
|
|
82462
|
+
if (!$dara.isNull(request.originMtls)) {
|
|
82463
|
+
query["OriginMtls"] = request.originMtls;
|
|
82464
|
+
}
|
|
82465
|
+
|
|
82471
82466
|
if (!$dara.isNull(request.originScheme)) {
|
|
82472
82467
|
query["OriginScheme"] = request.originScheme;
|
|
82473
82468
|
}
|
|
@@ -82476,6 +82471,10 @@ export default class Client extends OpenApi {
|
|
|
82476
82471
|
query["OriginSni"] = request.originSni;
|
|
82477
82472
|
}
|
|
82478
82473
|
|
|
82474
|
+
if (!$dara.isNull(request.originVerify)) {
|
|
82475
|
+
query["OriginVerify"] = request.originVerify;
|
|
82476
|
+
}
|
|
82477
|
+
|
|
82479
82478
|
if (!$dara.isNull(request.range)) {
|
|
82480
82479
|
query["Range"] = request.range;
|
|
82481
82480
|
}
|
|
@@ -83332,7 +83331,7 @@ export default class Client extends OpenApi {
|
|
|
83332
83331
|
}
|
|
83333
83332
|
|
|
83334
83333
|
/**
|
|
83335
|
-
*
|
|
83334
|
+
* Modifies the site hold configuration of a website. After you enable site hold, other accounts cannot add your website domain or its subdomains to ESA.
|
|
83336
83335
|
*
|
|
83337
83336
|
* @param request - UpdateSiteNameExclusiveRequest
|
|
83338
83337
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -83372,7 +83371,7 @@ export default class Client extends OpenApi {
|
|
|
83372
83371
|
}
|
|
83373
83372
|
|
|
83374
83373
|
/**
|
|
83375
|
-
*
|
|
83374
|
+
* Modifies the site hold configuration of a website. After you enable site hold, other accounts cannot add your website domain or its subdomains to ESA.
|
|
83376
83375
|
*
|
|
83377
83376
|
* @param request - UpdateSiteNameExclusiveRequest
|
|
83378
83377
|
* @returns UpdateSiteNameExclusiveResponse
|
|
@@ -83383,7 +83382,7 @@ export default class Client extends OpenApi {
|
|
|
83383
83382
|
}
|
|
83384
83383
|
|
|
83385
83384
|
/**
|
|
83386
|
-
*
|
|
83385
|
+
* Modifies the ESA proxy configuration of a website.
|
|
83387
83386
|
*
|
|
83388
83387
|
* @param request - UpdateSitePauseRequest
|
|
83389
83388
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -83423,7 +83422,7 @@ export default class Client extends OpenApi {
|
|
|
83423
83422
|
}
|
|
83424
83423
|
|
|
83425
83424
|
/**
|
|
83426
|
-
*
|
|
83425
|
+
* Modifies the ESA proxy configuration of a website.
|
|
83427
83426
|
*
|
|
83428
83427
|
* @param request - UpdateSitePauseRequest
|
|
83429
83428
|
* @returns UpdateSitePauseResponse
|
|
@@ -83485,7 +83484,7 @@ export default class Client extends OpenApi {
|
|
|
83485
83484
|
}
|
|
83486
83485
|
|
|
83487
83486
|
/**
|
|
83488
|
-
*
|
|
83487
|
+
* Modifies the tiered cache configuration of your website.
|
|
83489
83488
|
*
|
|
83490
83489
|
* @param request - UpdateTieredCacheRequest
|
|
83491
83490
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -83525,7 +83524,7 @@ export default class Client extends OpenApi {
|
|
|
83525
83524
|
}
|
|
83526
83525
|
|
|
83527
83526
|
/**
|
|
83528
|
-
*
|
|
83527
|
+
* Modifies the tiered cache configuration of your website.
|
|
83529
83528
|
*
|
|
83530
83529
|
* @param request - UpdateTieredCacheRequest
|
|
83531
83530
|
* @returns UpdateTieredCacheResponse
|