@alicloud/esa20240910 2.18.0 → 2.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +77 -16
- package/dist/client.js +92 -26
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +133 -17
package/package.json
CHANGED
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;
|
|
@@ -9598,6 +9621,7 @@ export class GetWafFilterResponseBodyFilterFieldsLogics extends $dara.Model {
|
|
|
9598
9621
|
* 1
|
|
9599
9622
|
*/
|
|
9600
9623
|
attributes?: number;
|
|
9624
|
+
enable?: boolean;
|
|
9601
9625
|
/**
|
|
9602
9626
|
* @remarks
|
|
9603
9627
|
* The type of the value input box. Valid values:
|
|
@@ -9611,6 +9635,7 @@ export class GetWafFilterResponseBodyFilterFieldsLogics extends $dara.Model {
|
|
|
9611
9635
|
* input:single
|
|
9612
9636
|
*/
|
|
9613
9637
|
kind?: string;
|
|
9638
|
+
minPlan?: string;
|
|
9614
9639
|
/**
|
|
9615
9640
|
* @remarks
|
|
9616
9641
|
* Indicates whether the match result is inverted.
|
|
@@ -9661,7 +9686,9 @@ export class GetWafFilterResponseBodyFilterFieldsLogics extends $dara.Model {
|
|
|
9661
9686
|
static names(): { [key: string]: string } {
|
|
9662
9687
|
return {
|
|
9663
9688
|
attributes: 'Attributes',
|
|
9689
|
+
enable: 'Enable',
|
|
9664
9690
|
kind: 'Kind',
|
|
9691
|
+
minPlan: 'MinPlan',
|
|
9665
9692
|
negative: 'Negative',
|
|
9666
9693
|
operator: 'Operator',
|
|
9667
9694
|
symbol: 'Symbol',
|
|
@@ -9674,7 +9701,9 @@ export class GetWafFilterResponseBodyFilterFieldsLogics extends $dara.Model {
|
|
|
9674
9701
|
static types(): { [key: string]: any } {
|
|
9675
9702
|
return {
|
|
9676
9703
|
attributes: 'number',
|
|
9704
|
+
enable: 'boolean',
|
|
9677
9705
|
kind: 'string',
|
|
9706
|
+
minPlan: 'string',
|
|
9678
9707
|
negative: 'boolean',
|
|
9679
9708
|
operator: 'string',
|
|
9680
9709
|
symbol: 'string',
|
|
@@ -9777,6 +9806,7 @@ export class GetWafFilterResponseBodyFilterFieldsSelector extends $dara.Model {
|
|
|
9777
9806
|
}
|
|
9778
9807
|
|
|
9779
9808
|
export class GetWafFilterResponseBodyFilterFields extends $dara.Model {
|
|
9809
|
+
enable?: boolean;
|
|
9780
9810
|
/**
|
|
9781
9811
|
* @remarks
|
|
9782
9812
|
* The field for matched objects in the system.
|
|
@@ -9798,6 +9828,7 @@ export class GetWafFilterResponseBodyFilterFields extends $dara.Model {
|
|
|
9798
9828
|
* The logical conditions.
|
|
9799
9829
|
*/
|
|
9800
9830
|
logics?: GetWafFilterResponseBodyFilterFieldsLogics[];
|
|
9831
|
+
minPlan?: string;
|
|
9801
9832
|
/**
|
|
9802
9833
|
* @remarks
|
|
9803
9834
|
* The selector, which defines how to select a matched object.
|
|
@@ -9821,9 +9852,11 @@ export class GetWafFilterResponseBodyFilterFields extends $dara.Model {
|
|
|
9821
9852
|
subTip?: string;
|
|
9822
9853
|
static names(): { [key: string]: string } {
|
|
9823
9854
|
return {
|
|
9855
|
+
enable: 'Enable',
|
|
9824
9856
|
key: 'Key',
|
|
9825
9857
|
label: 'Label',
|
|
9826
9858
|
logics: 'Logics',
|
|
9859
|
+
minPlan: 'MinPlan',
|
|
9827
9860
|
selector: 'Selector',
|
|
9828
9861
|
sub: 'Sub',
|
|
9829
9862
|
subTip: 'SubTip',
|
|
@@ -9832,9 +9865,11 @@ export class GetWafFilterResponseBodyFilterFields extends $dara.Model {
|
|
|
9832
9865
|
|
|
9833
9866
|
static types(): { [key: string]: any } {
|
|
9834
9867
|
return {
|
|
9868
|
+
enable: 'boolean',
|
|
9835
9869
|
key: 'string',
|
|
9836
9870
|
label: 'string',
|
|
9837
9871
|
logics: { 'type': 'array', 'itemType': GetWafFilterResponseBodyFilterFieldsLogics },
|
|
9872
|
+
minPlan: 'string',
|
|
9838
9873
|
selector: GetWafFilterResponseBodyFilterFieldsSelector,
|
|
9839
9874
|
sub: 'boolean',
|
|
9840
9875
|
subTip: 'string',
|
|
@@ -15089,6 +15124,7 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15089
15124
|
* 4433
|
|
15090
15125
|
*/
|
|
15091
15126
|
originHttpsPort?: string;
|
|
15127
|
+
originMtls?: string;
|
|
15092
15128
|
/**
|
|
15093
15129
|
* @remarks
|
|
15094
15130
|
* Protocol used for the origin request. Value range:
|
|
@@ -15108,6 +15144,7 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15108
15144
|
* origin.example.com
|
|
15109
15145
|
*/
|
|
15110
15146
|
originSni?: string;
|
|
15147
|
+
originVerify?: string;
|
|
15111
15148
|
/**
|
|
15112
15149
|
* @remarks
|
|
15113
15150
|
* Use range slicing to download files from the origin. The value range is:
|
|
@@ -15169,8 +15206,10 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15169
15206
|
originHost: 'OriginHost',
|
|
15170
15207
|
originHttpPort: 'OriginHttpPort',
|
|
15171
15208
|
originHttpsPort: 'OriginHttpsPort',
|
|
15209
|
+
originMtls: 'OriginMtls',
|
|
15172
15210
|
originScheme: 'OriginScheme',
|
|
15173
15211
|
originSni: 'OriginSni',
|
|
15212
|
+
originVerify: 'OriginVerify',
|
|
15174
15213
|
range: 'Range',
|
|
15175
15214
|
rule: 'Rule',
|
|
15176
15215
|
ruleEnable: 'RuleEnable',
|
|
@@ -15188,8 +15227,10 @@ export class ListOriginRulesResponseBodyConfigs extends $dara.Model {
|
|
|
15188
15227
|
originHost: 'string',
|
|
15189
15228
|
originHttpPort: 'string',
|
|
15190
15229
|
originHttpsPort: 'string',
|
|
15230
|
+
originMtls: 'string',
|
|
15191
15231
|
originScheme: 'string',
|
|
15192
15232
|
originSni: 'string',
|
|
15233
|
+
originVerify: 'string',
|
|
15193
15234
|
range: 'string',
|
|
15194
15235
|
rule: 'string',
|
|
15195
15236
|
ruleEnable: 'string',
|
|
@@ -19421,6 +19462,7 @@ export class WafRuleConfig extends $dara.Model {
|
|
|
19421
19462
|
name?: string;
|
|
19422
19463
|
notes?: string;
|
|
19423
19464
|
rateLimit?: WafRuleConfigRateLimit;
|
|
19465
|
+
securityLevel?: WafRuleConfigSecurityLevel;
|
|
19424
19466
|
sigchl?: string[];
|
|
19425
19467
|
status?: string;
|
|
19426
19468
|
timer?: WafTimer;
|
|
@@ -19440,6 +19482,7 @@ export class WafRuleConfig extends $dara.Model {
|
|
|
19440
19482
|
name: 'Name',
|
|
19441
19483
|
notes: 'Notes',
|
|
19442
19484
|
rateLimit: 'RateLimit',
|
|
19485
|
+
securityLevel: 'SecurityLevel',
|
|
19443
19486
|
sigchl: 'Sigchl',
|
|
19444
19487
|
status: 'Status',
|
|
19445
19488
|
timer: 'Timer',
|
|
@@ -19462,6 +19505,7 @@ export class WafRuleConfig extends $dara.Model {
|
|
|
19462
19505
|
name: 'string',
|
|
19463
19506
|
notes: 'string',
|
|
19464
19507
|
rateLimit: WafRuleConfigRateLimit,
|
|
19508
|
+
securityLevel: WafRuleConfigSecurityLevel,
|
|
19465
19509
|
sigchl: { 'type': 'array', 'itemType': 'string' },
|
|
19466
19510
|
status: 'string',
|
|
19467
19511
|
timer: WafTimer,
|
|
@@ -19486,6 +19530,9 @@ export class WafRuleConfig extends $dara.Model {
|
|
|
19486
19530
|
if(this.rateLimit && typeof (this.rateLimit as any).validate === 'function') {
|
|
19487
19531
|
(this.rateLimit as any).validate();
|
|
19488
19532
|
}
|
|
19533
|
+
if(this.securityLevel && typeof (this.securityLevel as any).validate === 'function') {
|
|
19534
|
+
(this.securityLevel as any).validate();
|
|
19535
|
+
}
|
|
19489
19536
|
if(Array.isArray(this.sigchl)) {
|
|
19490
19537
|
$dara.Model.validateArray(this.sigchl);
|
|
19491
19538
|
}
|
|
@@ -26327,6 +26374,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
26327
26374
|
* 4433
|
|
26328
26375
|
*/
|
|
26329
26376
|
originHttpsPort?: string;
|
|
26377
|
+
originMtls?: string;
|
|
26330
26378
|
/**
|
|
26331
26379
|
* @remarks
|
|
26332
26380
|
* Protocol used for the origin request. Possible values:
|
|
@@ -26346,6 +26394,7 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
26346
26394
|
* origin.example.com
|
|
26347
26395
|
*/
|
|
26348
26396
|
originSni?: string;
|
|
26397
|
+
originVerify?: string;
|
|
26349
26398
|
/**
|
|
26350
26399
|
* @remarks
|
|
26351
26400
|
* Use range chunking for downloading files from the origin. Possible values:
|
|
@@ -26407,8 +26456,10 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
26407
26456
|
originHost: 'OriginHost',
|
|
26408
26457
|
originHttpPort: 'OriginHttpPort',
|
|
26409
26458
|
originHttpsPort: 'OriginHttpsPort',
|
|
26459
|
+
originMtls: 'OriginMtls',
|
|
26410
26460
|
originScheme: 'OriginScheme',
|
|
26411
26461
|
originSni: 'OriginSni',
|
|
26462
|
+
originVerify: 'OriginVerify',
|
|
26412
26463
|
range: 'Range',
|
|
26413
26464
|
rule: 'Rule',
|
|
26414
26465
|
ruleEnable: 'RuleEnable',
|
|
@@ -26424,8 +26475,10 @@ export class CreateOriginRuleRequest extends $dara.Model {
|
|
|
26424
26475
|
originHost: 'string',
|
|
26425
26476
|
originHttpPort: 'string',
|
|
26426
26477
|
originHttpsPort: 'string',
|
|
26478
|
+
originMtls: 'string',
|
|
26427
26479
|
originScheme: 'string',
|
|
26428
26480
|
originSni: 'string',
|
|
26481
|
+
originVerify: 'string',
|
|
26429
26482
|
range: 'string',
|
|
26430
26483
|
rule: 'string',
|
|
26431
26484
|
ruleEnable: 'string',
|
|
@@ -29045,7 +29098,7 @@ export class CreateSiteDeliveryTaskResponseBody extends $dara.Model {
|
|
|
29045
29098
|
* @example
|
|
29046
29099
|
* 123456****
|
|
29047
29100
|
*/
|
|
29048
|
-
siteId?:
|
|
29101
|
+
siteId?: number;
|
|
29049
29102
|
/**
|
|
29050
29103
|
* @remarks
|
|
29051
29104
|
* The name of the delivery task.
|
|
@@ -29067,7 +29120,7 @@ export class CreateSiteDeliveryTaskResponseBody extends $dara.Model {
|
|
|
29067
29120
|
return {
|
|
29068
29121
|
dataCenter: 'string',
|
|
29069
29122
|
requestId: 'string',
|
|
29070
|
-
siteId: '
|
|
29123
|
+
siteId: 'number',
|
|
29071
29124
|
taskName: 'string',
|
|
29072
29125
|
};
|
|
29073
29126
|
}
|
|
@@ -30708,7 +30761,7 @@ export class DeactivateVersionManagementResponse extends $dara.Model {
|
|
|
30708
30761
|
export class DeleteCacheRuleRequest extends $dara.Model {
|
|
30709
30762
|
/**
|
|
30710
30763
|
* @remarks
|
|
30711
|
-
* ConfigId of the configuration, which can be obtained by calling the [ListCacheRules](
|
|
30764
|
+
* ConfigId of the configuration, which can be obtained by calling the [ListCacheRules](https://help.aliyun.com/document_detail/2866985.html) interface.
|
|
30712
30765
|
*
|
|
30713
30766
|
* This parameter is required.
|
|
30714
30767
|
*
|
|
@@ -32631,7 +32684,7 @@ export class DeleteListResponse extends $dara.Model {
|
|
|
32631
32684
|
export class DeleteLoadBalancerRequest extends $dara.Model {
|
|
32632
32685
|
/**
|
|
32633
32686
|
* @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](
|
|
32687
|
+
* 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
32688
|
*
|
|
32636
32689
|
* This parameter is required.
|
|
32637
32690
|
*
|
|
@@ -32740,7 +32793,7 @@ export class DeleteLoadBalancerResponse extends $dara.Model {
|
|
|
32740
32793
|
export class DeleteNetworkOptimizationRequest extends $dara.Model {
|
|
32741
32794
|
/**
|
|
32742
32795
|
* @remarks
|
|
32743
|
-
* ConfigId of the configuration, which can be obtained by calling the
|
|
32796
|
+
* ConfigId of the configuration, which can be obtained by calling the ListNetworkOptimizations.
|
|
32744
32797
|
*
|
|
32745
32798
|
* This parameter is required.
|
|
32746
32799
|
*
|
|
@@ -32849,7 +32902,7 @@ export class DeleteNetworkOptimizationResponse extends $dara.Model {
|
|
|
32849
32902
|
export class DeleteOriginPoolRequest extends $dara.Model {
|
|
32850
32903
|
/**
|
|
32851
32904
|
* @remarks
|
|
32852
|
-
* The ID of the origin address pool, which can be obtained by calling the [ListOriginPools](
|
|
32905
|
+
* 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
32906
|
*
|
|
32854
32907
|
* This parameter is required.
|
|
32855
32908
|
*
|
|
@@ -33055,7 +33108,7 @@ export class DeleteOriginProtectionResponse extends $dara.Model {
|
|
|
33055
33108
|
export class DeleteOriginRuleRequest extends $dara.Model {
|
|
33056
33109
|
/**
|
|
33057
33110
|
* @remarks
|
|
33058
|
-
* ConfigId of the configuration, which can be obtained by calling the [ListOriginRules](
|
|
33111
|
+
* ConfigId of the configuration, which can be obtained by calling the [ListOriginRules](https://help.aliyun.com/document_detail/2866989.html) interface.
|
|
33059
33112
|
*
|
|
33060
33113
|
* This parameter is required.
|
|
33061
33114
|
*
|
|
@@ -36621,6 +36674,9 @@ export class DescribePurgeTasksResponse extends $dara.Model {
|
|
|
36621
36674
|
|
|
36622
36675
|
export class DescribeRatePlanInstanceStatusRequest extends $dara.Model {
|
|
36623
36676
|
/**
|
|
36677
|
+
* @remarks
|
|
36678
|
+
* Instance ID, obtained from the [ListUserRatePlanInstances](~~ListUserRatePlanInstances~~) API.
|
|
36679
|
+
*
|
|
36624
36680
|
* @example
|
|
36625
36681
|
* xcdn-91fknmb80f0g***
|
|
36626
36682
|
*/
|
|
@@ -36648,18 +36704,31 @@ export class DescribeRatePlanInstanceStatusRequest extends $dara.Model {
|
|
|
36648
36704
|
|
|
36649
36705
|
export class DescribeRatePlanInstanceStatusResponseBody extends $dara.Model {
|
|
36650
36706
|
/**
|
|
36707
|
+
* @remarks
|
|
36708
|
+
* Instance ID.
|
|
36709
|
+
*
|
|
36651
36710
|
* @example
|
|
36652
36711
|
* xcdn-91fknmb80f0g***
|
|
36653
36712
|
*/
|
|
36654
36713
|
instanceId?: string;
|
|
36655
36714
|
/**
|
|
36715
|
+
* @remarks
|
|
36716
|
+
* Instance status, with possible values:
|
|
36717
|
+
* - running: Running
|
|
36718
|
+
* - renewing: Renewing
|
|
36719
|
+
* - upgrading: Upgrading
|
|
36720
|
+
* - releasePrepaidService: Prepaid service released due to expiration
|
|
36721
|
+
* - creating: Creating
|
|
36722
|
+
* - downgrading: Downgrading
|
|
36723
|
+
* - ceasePrepaidService: Prepaid service ceased upon expiration
|
|
36724
|
+
*
|
|
36656
36725
|
* @example
|
|
36657
36726
|
* running
|
|
36658
36727
|
*/
|
|
36659
36728
|
instanceStatus?: string;
|
|
36660
36729
|
/**
|
|
36661
36730
|
* @remarks
|
|
36662
|
-
*
|
|
36731
|
+
* Request ID.
|
|
36663
36732
|
*
|
|
36664
36733
|
* @example
|
|
36665
36734
|
* 60423A7F-A83D-1E24-B80E-86DD25790759
|
|
@@ -42006,7 +42075,7 @@ export class GetListResponse extends $dara.Model {
|
|
|
42006
42075
|
export class GetLoadBalancerRequest extends $dara.Model {
|
|
42007
42076
|
/**
|
|
42008
42077
|
* @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](
|
|
42078
|
+
* 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
42079
|
*
|
|
42011
42080
|
* This parameter is required.
|
|
42012
42081
|
*
|
|
@@ -42442,7 +42511,7 @@ export class GetManagedTransformResponse extends $dara.Model {
|
|
|
42442
42511
|
export class GetNetworkOptimizationRequest extends $dara.Model {
|
|
42443
42512
|
/**
|
|
42444
42513
|
* @remarks
|
|
42445
|
-
* ConfigId of the configuration, which can be obtained by calling the
|
|
42514
|
+
* ConfigId of the configuration, which can be obtained by calling the ListNetworkOptimizations.
|
|
42446
42515
|
*
|
|
42447
42516
|
* This parameter is required.
|
|
42448
42517
|
*
|
|
@@ -43146,6 +43215,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
43146
43215
|
* 4433
|
|
43147
43216
|
*/
|
|
43148
43217
|
originHttpsPort?: string;
|
|
43218
|
+
originMtls?: string;
|
|
43149
43219
|
/**
|
|
43150
43220
|
* @remarks
|
|
43151
43221
|
* Protocol used for the origin request. Value range:
|
|
@@ -43166,6 +43236,7 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
43166
43236
|
* origin.example.com
|
|
43167
43237
|
*/
|
|
43168
43238
|
originSni?: string;
|
|
43239
|
+
originVerify?: string;
|
|
43169
43240
|
/**
|
|
43170
43241
|
* @remarks
|
|
43171
43242
|
* Use range chunking method for origin download. Value range:
|
|
@@ -43236,8 +43307,10 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
43236
43307
|
originHost: 'OriginHost',
|
|
43237
43308
|
originHttpPort: 'OriginHttpPort',
|
|
43238
43309
|
originHttpsPort: 'OriginHttpsPort',
|
|
43310
|
+
originMtls: 'OriginMtls',
|
|
43239
43311
|
originScheme: 'OriginScheme',
|
|
43240
43312
|
originSni: 'OriginSni',
|
|
43313
|
+
originVerify: 'OriginVerify',
|
|
43241
43314
|
range: 'Range',
|
|
43242
43315
|
requestId: 'RequestId',
|
|
43243
43316
|
rule: 'Rule',
|
|
@@ -43256,8 +43329,10 @@ export class GetOriginRuleResponseBody extends $dara.Model {
|
|
|
43256
43329
|
originHost: 'string',
|
|
43257
43330
|
originHttpPort: 'string',
|
|
43258
43331
|
originHttpsPort: 'string',
|
|
43332
|
+
originMtls: 'string',
|
|
43259
43333
|
originScheme: 'string',
|
|
43260
43334
|
originSni: 'string',
|
|
43335
|
+
originVerify: 'string',
|
|
43261
43336
|
range: 'string',
|
|
43262
43337
|
requestId: 'string',
|
|
43263
43338
|
rule: 'string',
|
|
@@ -51294,7 +51369,7 @@ export class ListListsResponse extends $dara.Model {
|
|
|
51294
51369
|
export class ListLoadBalancerOriginStatusRequest extends $dara.Model {
|
|
51295
51370
|
/**
|
|
51296
51371
|
* @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](
|
|
51372
|
+
* 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
51373
|
*
|
|
51299
51374
|
* This parameter is required.
|
|
51300
51375
|
*
|
|
@@ -62302,7 +62377,7 @@ export class UpdateLoadBalancerRequest extends $dara.Model {
|
|
|
62302
62377
|
fallbackPool?: number;
|
|
62303
62378
|
/**
|
|
62304
62379
|
* @remarks
|
|
62305
|
-
* Load balancer ID, which can be obtained by calling the [ListLoadBalancers](
|
|
62380
|
+
* Load balancer ID, which can be obtained by calling the [ListLoadBalancers](https://help.aliyun.com/document_detail/2868897.html) interface.
|
|
62306
62381
|
*
|
|
62307
62382
|
* This parameter is required.
|
|
62308
62383
|
*
|
|
@@ -62493,7 +62568,7 @@ export class UpdateLoadBalancerShrinkRequest extends $dara.Model {
|
|
|
62493
62568
|
fallbackPool?: number;
|
|
62494
62569
|
/**
|
|
62495
62570
|
* @remarks
|
|
62496
|
-
* Load balancer ID, which can be obtained by calling the [ListLoadBalancers](
|
|
62571
|
+
* Load balancer ID, which can be obtained by calling the [ListLoadBalancers](https://help.aliyun.com/document_detail/2868897.html) interface.
|
|
62497
62572
|
*
|
|
62498
62573
|
* This parameter is required.
|
|
62499
62574
|
*
|
|
@@ -63038,7 +63113,7 @@ export class UpdateOriginPoolRequest extends $dara.Model {
|
|
|
63038
63113
|
enabled?: boolean;
|
|
63039
63114
|
/**
|
|
63040
63115
|
* @remarks
|
|
63041
|
-
* The ID of the origin pool, which can be obtained by calling the [ListOriginPools](
|
|
63116
|
+
* The ID of the origin pool, which can be obtained by calling the [ListOriginPools](https://help.aliyun.com/document_detail/2863947.html) interface.
|
|
63042
63117
|
*
|
|
63043
63118
|
* This parameter is required.
|
|
63044
63119
|
*
|
|
@@ -63105,7 +63180,7 @@ export class UpdateOriginPoolShrinkRequest extends $dara.Model {
|
|
|
63105
63180
|
enabled?: boolean;
|
|
63106
63181
|
/**
|
|
63107
63182
|
* @remarks
|
|
63108
|
-
* The ID of the origin pool, which can be obtained by calling the [ListOriginPools](
|
|
63183
|
+
* The ID of the origin pool, which can be obtained by calling the [ListOriginPools](https://help.aliyun.com/document_detail/2863947.html) interface.
|
|
63109
63184
|
*
|
|
63110
63185
|
* This parameter is required.
|
|
63111
63186
|
*
|
|
@@ -63482,6 +63557,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
63482
63557
|
* 4433
|
|
63483
63558
|
*/
|
|
63484
63559
|
originHttpsPort?: string;
|
|
63560
|
+
originMtls?: string;
|
|
63485
63561
|
/**
|
|
63486
63562
|
* @remarks
|
|
63487
63563
|
* Protocol used for the origin request. Possible values:
|
|
@@ -63501,6 +63577,7 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
63501
63577
|
* origin.example.com
|
|
63502
63578
|
*/
|
|
63503
63579
|
originSni?: string;
|
|
63580
|
+
originVerify?: string;
|
|
63504
63581
|
/**
|
|
63505
63582
|
* @remarks
|
|
63506
63583
|
* Use range chunked transfer to download files from the origin. Possible values:
|
|
@@ -63555,8 +63632,10 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
63555
63632
|
originHost: 'OriginHost',
|
|
63556
63633
|
originHttpPort: 'OriginHttpPort',
|
|
63557
63634
|
originHttpsPort: 'OriginHttpsPort',
|
|
63635
|
+
originMtls: 'OriginMtls',
|
|
63558
63636
|
originScheme: 'OriginScheme',
|
|
63559
63637
|
originSni: 'OriginSni',
|
|
63638
|
+
originVerify: 'OriginVerify',
|
|
63560
63639
|
range: 'Range',
|
|
63561
63640
|
rule: 'Rule',
|
|
63562
63641
|
ruleEnable: 'RuleEnable',
|
|
@@ -63572,8 +63651,10 @@ export class UpdateOriginRuleRequest extends $dara.Model {
|
|
|
63572
63651
|
originHost: 'string',
|
|
63573
63652
|
originHttpPort: 'string',
|
|
63574
63653
|
originHttpsPort: 'string',
|
|
63654
|
+
originMtls: 'string',
|
|
63575
63655
|
originScheme: 'string',
|
|
63576
63656
|
originSni: 'string',
|
|
63657
|
+
originVerify: 'string',
|
|
63577
63658
|
range: 'string',
|
|
63578
63659
|
rule: 'string',
|
|
63579
63660
|
ruleEnable: 'string',
|
|
@@ -63805,6 +63886,13 @@ export class UpdatePageResponse extends $dara.Model {
|
|
|
63805
63886
|
}
|
|
63806
63887
|
|
|
63807
63888
|
export class UpdateRatePlanSpecRequest extends $dara.Model {
|
|
63889
|
+
/**
|
|
63890
|
+
* @remarks
|
|
63891
|
+
* Specifies whether to enable auto payment.
|
|
63892
|
+
*
|
|
63893
|
+
* @example
|
|
63894
|
+
* true
|
|
63895
|
+
*/
|
|
63808
63896
|
autoPay?: boolean;
|
|
63809
63897
|
/**
|
|
63810
63898
|
* @example
|
|
@@ -63817,6 +63905,12 @@ export class UpdateRatePlanSpecRequest extends $dara.Model {
|
|
|
63817
63905
|
*/
|
|
63818
63906
|
instanceId?: string;
|
|
63819
63907
|
/**
|
|
63908
|
+
* @remarks
|
|
63909
|
+
* The specification update type. Valid values:
|
|
63910
|
+
*
|
|
63911
|
+
* * DOWNGRADE
|
|
63912
|
+
* * UPGRADE
|
|
63913
|
+
*
|
|
63820
63914
|
* @example
|
|
63821
63915
|
* UPGRADE
|
|
63822
63916
|
*/
|
|
@@ -70463,6 +70557,10 @@ export default class Client extends OpenApi {
|
|
|
70463
70557
|
query["OriginHttpsPort"] = request.originHttpsPort;
|
|
70464
70558
|
}
|
|
70465
70559
|
|
|
70560
|
+
if (!$dara.isNull(request.originMtls)) {
|
|
70561
|
+
query["OriginMtls"] = request.originMtls;
|
|
70562
|
+
}
|
|
70563
|
+
|
|
70466
70564
|
if (!$dara.isNull(request.originScheme)) {
|
|
70467
70565
|
query["OriginScheme"] = request.originScheme;
|
|
70468
70566
|
}
|
|
@@ -70471,6 +70569,10 @@ export default class Client extends OpenApi {
|
|
|
70471
70569
|
query["OriginSni"] = request.originSni;
|
|
70472
70570
|
}
|
|
70473
70571
|
|
|
70572
|
+
if (!$dara.isNull(request.originVerify)) {
|
|
70573
|
+
query["OriginVerify"] = request.originVerify;
|
|
70574
|
+
}
|
|
70575
|
+
|
|
70474
70576
|
if (!$dara.isNull(request.range)) {
|
|
70475
70577
|
query["Range"] = request.range;
|
|
70476
70578
|
}
|
|
@@ -74323,7 +74425,10 @@ export default class Client extends OpenApi {
|
|
|
74323
74425
|
}
|
|
74324
74426
|
|
|
74325
74427
|
/**
|
|
74326
|
-
*
|
|
74428
|
+
* Query Package Instance Status
|
|
74429
|
+
*
|
|
74430
|
+
* @remarks
|
|
74431
|
+
* You can only query the status of a package instance after purchasing and creating it.
|
|
74327
74432
|
*
|
|
74328
74433
|
* @param request - DescribeRatePlanInstanceStatusRequest
|
|
74329
74434
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -74359,7 +74464,10 @@ export default class Client extends OpenApi {
|
|
|
74359
74464
|
}
|
|
74360
74465
|
|
|
74361
74466
|
/**
|
|
74362
|
-
*
|
|
74467
|
+
* Query Package Instance Status
|
|
74468
|
+
*
|
|
74469
|
+
* @remarks
|
|
74470
|
+
* You can only query the status of a package instance after purchasing and creating it.
|
|
74363
74471
|
*
|
|
74364
74472
|
* @param request - DescribeRatePlanInstanceStatusRequest
|
|
74365
74473
|
* @returns DescribeRatePlanInstanceStatusResponse
|
|
@@ -82468,6 +82576,10 @@ export default class Client extends OpenApi {
|
|
|
82468
82576
|
query["OriginHttpsPort"] = request.originHttpsPort;
|
|
82469
82577
|
}
|
|
82470
82578
|
|
|
82579
|
+
if (!$dara.isNull(request.originMtls)) {
|
|
82580
|
+
query["OriginMtls"] = request.originMtls;
|
|
82581
|
+
}
|
|
82582
|
+
|
|
82471
82583
|
if (!$dara.isNull(request.originScheme)) {
|
|
82472
82584
|
query["OriginScheme"] = request.originScheme;
|
|
82473
82585
|
}
|
|
@@ -82476,6 +82588,10 @@ export default class Client extends OpenApi {
|
|
|
82476
82588
|
query["OriginSni"] = request.originSni;
|
|
82477
82589
|
}
|
|
82478
82590
|
|
|
82591
|
+
if (!$dara.isNull(request.originVerify)) {
|
|
82592
|
+
query["OriginVerify"] = request.originVerify;
|
|
82593
|
+
}
|
|
82594
|
+
|
|
82479
82595
|
if (!$dara.isNull(request.range)) {
|
|
82480
82596
|
query["Range"] = request.range;
|
|
82481
82597
|
}
|