@alicloud/esa20240910 2.23.0 → 2.24.0
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 +447 -119
- package/dist/client.js +619 -112
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +873 -182
package/dist/client.d.ts
CHANGED
|
@@ -1720,6 +1720,7 @@ export declare class CreateHttpRequestHeaderModificationRuleRequestRequestHeader
|
|
|
1720
1720
|
* add
|
|
1721
1721
|
*/
|
|
1722
1722
|
operation?: string;
|
|
1723
|
+
type?: string;
|
|
1723
1724
|
/**
|
|
1724
1725
|
* @remarks
|
|
1725
1726
|
* Request header value.
|
|
@@ -1764,6 +1765,7 @@ export declare class CreateHttpResponseHeaderModificationRuleRequestResponseHead
|
|
|
1764
1765
|
* add
|
|
1765
1766
|
*/
|
|
1766
1767
|
operation?: string;
|
|
1768
|
+
type?: string;
|
|
1767
1769
|
/**
|
|
1768
1770
|
* @remarks
|
|
1769
1771
|
* Response header value.
|
|
@@ -5510,6 +5512,7 @@ export declare class GetHttpRequestHeaderModificationRuleResponseBodyRequestHead
|
|
|
5510
5512
|
* add
|
|
5511
5513
|
*/
|
|
5512
5514
|
operation?: string;
|
|
5515
|
+
type?: string;
|
|
5513
5516
|
/**
|
|
5514
5517
|
* @remarks
|
|
5515
5518
|
* Request header value.
|
|
@@ -5550,6 +5553,7 @@ export declare class GetHttpResponseHeaderModificationRuleResponseBodyResponseHe
|
|
|
5550
5553
|
* add
|
|
5551
5554
|
*/
|
|
5552
5555
|
operation?: string;
|
|
5556
|
+
type?: string;
|
|
5553
5557
|
/**
|
|
5554
5558
|
* @remarks
|
|
5555
5559
|
* Response header value.
|
|
@@ -7011,14 +7015,6 @@ export declare class GetRoutineResponseBodyEnvs extends $dara.Model {
|
|
|
7011
7015
|
* production
|
|
7012
7016
|
*/
|
|
7013
7017
|
env?: string;
|
|
7014
|
-
/**
|
|
7015
|
-
* @remarks
|
|
7016
|
-
* The specification.
|
|
7017
|
-
*
|
|
7018
|
-
* @example
|
|
7019
|
-
* 5ms
|
|
7020
|
-
*/
|
|
7021
|
-
specName?: string;
|
|
7022
7018
|
static names(): {
|
|
7023
7019
|
[key: string]: string;
|
|
7024
7020
|
};
|
|
@@ -8377,6 +8373,109 @@ export declare class ListCertificatesResponseBodyResult extends $dara.Model {
|
|
|
8377
8373
|
[key: string]: any;
|
|
8378
8374
|
});
|
|
8379
8375
|
}
|
|
8376
|
+
export declare class ListCertificatesByRecordResponseBodyResultCertificates extends $dara.Model {
|
|
8377
|
+
/**
|
|
8378
|
+
* @example
|
|
8379
|
+
* 30000137
|
|
8380
|
+
*/
|
|
8381
|
+
casId?: string;
|
|
8382
|
+
/**
|
|
8383
|
+
* @example
|
|
8384
|
+
* www.example.com
|
|
8385
|
+
*/
|
|
8386
|
+
commonName?: string;
|
|
8387
|
+
/**
|
|
8388
|
+
* @example
|
|
8389
|
+
* 2023-02-28 06:17:11
|
|
8390
|
+
*/
|
|
8391
|
+
createTime?: string;
|
|
8392
|
+
/**
|
|
8393
|
+
* @example
|
|
8394
|
+
* 1dc5fc9af4eead2570c70d94b416130baeb6d4429b51fd3557379588456aca66
|
|
8395
|
+
*/
|
|
8396
|
+
fingerprintSha256?: string;
|
|
8397
|
+
id?: string;
|
|
8398
|
+
/**
|
|
8399
|
+
* @example
|
|
8400
|
+
* GlobalSign nv-sa
|
|
8401
|
+
*/
|
|
8402
|
+
issuer?: string;
|
|
8403
|
+
/**
|
|
8404
|
+
* @example
|
|
8405
|
+
* GlobalSign Organization Validation CA - SHA256 - G3
|
|
8406
|
+
*/
|
|
8407
|
+
issuerCN?: string;
|
|
8408
|
+
name?: string;
|
|
8409
|
+
/**
|
|
8410
|
+
* @example
|
|
8411
|
+
* 2024-02-28 06:17:11
|
|
8412
|
+
*/
|
|
8413
|
+
notAfter?: string;
|
|
8414
|
+
/**
|
|
8415
|
+
* @example
|
|
8416
|
+
* 2023-02-28 06:17:11
|
|
8417
|
+
*/
|
|
8418
|
+
notBefore?: string;
|
|
8419
|
+
/**
|
|
8420
|
+
* @example
|
|
8421
|
+
* RSA
|
|
8422
|
+
*/
|
|
8423
|
+
pubAlg?: string;
|
|
8424
|
+
region?: string;
|
|
8425
|
+
/**
|
|
8426
|
+
* @example
|
|
8427
|
+
* www.example.com,*.example.com
|
|
8428
|
+
*/
|
|
8429
|
+
SAN?: string;
|
|
8430
|
+
/**
|
|
8431
|
+
* @example
|
|
8432
|
+
* baba39055622c008b90285a8838ed09a
|
|
8433
|
+
*/
|
|
8434
|
+
serialNumber?: string;
|
|
8435
|
+
/**
|
|
8436
|
+
* @example
|
|
8437
|
+
* SHA256-RSA
|
|
8438
|
+
*/
|
|
8439
|
+
sigAlg?: string;
|
|
8440
|
+
status?: string;
|
|
8441
|
+
/**
|
|
8442
|
+
* @example
|
|
8443
|
+
* free
|
|
8444
|
+
*/
|
|
8445
|
+
type?: string;
|
|
8446
|
+
/**
|
|
8447
|
+
* @example
|
|
8448
|
+
* 2023-02-28 06:17:11
|
|
8449
|
+
*/
|
|
8450
|
+
updateTime?: string;
|
|
8451
|
+
static names(): {
|
|
8452
|
+
[key: string]: string;
|
|
8453
|
+
};
|
|
8454
|
+
static types(): {
|
|
8455
|
+
[key: string]: any;
|
|
8456
|
+
};
|
|
8457
|
+
validate(): void;
|
|
8458
|
+
constructor(map?: {
|
|
8459
|
+
[key: string]: any;
|
|
8460
|
+
});
|
|
8461
|
+
}
|
|
8462
|
+
export declare class ListCertificatesByRecordResponseBodyResult extends $dara.Model {
|
|
8463
|
+
applylingCount?: number;
|
|
8464
|
+
certificates?: ListCertificatesByRecordResponseBodyResultCertificates[];
|
|
8465
|
+
count?: number;
|
|
8466
|
+
recordName?: string;
|
|
8467
|
+
status?: string;
|
|
8468
|
+
static names(): {
|
|
8469
|
+
[key: string]: string;
|
|
8470
|
+
};
|
|
8471
|
+
static types(): {
|
|
8472
|
+
[key: string]: any;
|
|
8473
|
+
};
|
|
8474
|
+
validate(): void;
|
|
8475
|
+
constructor(map?: {
|
|
8476
|
+
[key: string]: any;
|
|
8477
|
+
});
|
|
8478
|
+
}
|
|
8380
8479
|
export declare class ListClientCaCertificatesResponseBodyResult extends $dara.Model {
|
|
8381
8480
|
/**
|
|
8382
8481
|
* @remarks
|
|
@@ -9521,6 +9620,7 @@ export declare class ListHttpRequestHeaderModificationRulesResponseBodyConfigsRe
|
|
|
9521
9620
|
* add
|
|
9522
9621
|
*/
|
|
9523
9622
|
operation?: string;
|
|
9623
|
+
type?: string;
|
|
9524
9624
|
/**
|
|
9525
9625
|
* @remarks
|
|
9526
9626
|
* The value of the request header.
|
|
@@ -9639,6 +9739,7 @@ export declare class ListHttpResponseHeaderModificationRulesResponseBodyConfigsR
|
|
|
9639
9739
|
* add
|
|
9640
9740
|
*/
|
|
9641
9741
|
operation?: string;
|
|
9742
|
+
type?: string;
|
|
9642
9743
|
/**
|
|
9643
9744
|
* @remarks
|
|
9644
9745
|
* Response header value.
|
|
@@ -12618,26 +12719,27 @@ export declare class ListRewriteUrlRulesResponseBodyConfigs extends $dara.Model
|
|
|
12618
12719
|
[key: string]: any;
|
|
12619
12720
|
});
|
|
12620
12721
|
}
|
|
12621
|
-
export declare class
|
|
12722
|
+
export declare class ListRoutineRelatedRecordsResponseBodyRelatedRecords extends $dara.Model {
|
|
12622
12723
|
/**
|
|
12623
|
-
* @remarks
|
|
12624
|
-
* Indicates whether the specification is available. Valid values:
|
|
12625
|
-
*
|
|
12626
|
-
* * true
|
|
12627
|
-
* * false
|
|
12628
|
-
*
|
|
12629
12724
|
* @example
|
|
12630
|
-
*
|
|
12725
|
+
* 509348423011904
|
|
12631
12726
|
*/
|
|
12632
|
-
|
|
12727
|
+
recordId?: number;
|
|
12728
|
+
/**
|
|
12729
|
+
* @example
|
|
12730
|
+
* test-record-1.example.com
|
|
12731
|
+
*/
|
|
12732
|
+
recordName?: string;
|
|
12633
12733
|
/**
|
|
12634
|
-
* @remarks
|
|
12635
|
-
* The specification name.
|
|
12636
|
-
*
|
|
12637
12734
|
* @example
|
|
12638
|
-
*
|
|
12735
|
+
* 54362329990032
|
|
12639
12736
|
*/
|
|
12640
|
-
|
|
12737
|
+
siteId?: number;
|
|
12738
|
+
/**
|
|
12739
|
+
* @example
|
|
12740
|
+
* example.com
|
|
12741
|
+
*/
|
|
12742
|
+
siteName?: string;
|
|
12641
12743
|
static names(): {
|
|
12642
12744
|
[key: string]: string;
|
|
12643
12745
|
};
|
|
@@ -12699,7 +12801,7 @@ export declare class ListRoutineRoutesResponseBodyConfigs extends $dara.Model {
|
|
|
12699
12801
|
* @example
|
|
12700
12802
|
* 554889455535696
|
|
12701
12803
|
*/
|
|
12702
|
-
siteId?:
|
|
12804
|
+
siteId?: number;
|
|
12703
12805
|
/**
|
|
12704
12806
|
* @example
|
|
12705
12807
|
* test.com
|
|
@@ -13618,6 +13720,21 @@ export declare class ListUserRatePlanInstancesResponseBodyInstanceInfo extends $
|
|
|
13618
13720
|
[key: string]: any;
|
|
13619
13721
|
});
|
|
13620
13722
|
}
|
|
13723
|
+
export declare class ListUserRoutinesResponseBodyRoutines extends $dara.Model {
|
|
13724
|
+
createTime?: string;
|
|
13725
|
+
description?: string;
|
|
13726
|
+
routineName?: string;
|
|
13727
|
+
static names(): {
|
|
13728
|
+
[key: string]: string;
|
|
13729
|
+
};
|
|
13730
|
+
static types(): {
|
|
13731
|
+
[key: string]: any;
|
|
13732
|
+
};
|
|
13733
|
+
validate(): void;
|
|
13734
|
+
constructor(map?: {
|
|
13735
|
+
[key: string]: any;
|
|
13736
|
+
});
|
|
13737
|
+
}
|
|
13621
13738
|
export declare class ListWafManagedRulesRequestQueryArgs extends $dara.Model {
|
|
13622
13739
|
/**
|
|
13623
13740
|
* @remarks
|
|
@@ -14071,6 +14188,7 @@ export declare class ListWafRulesetsResponseBodyRulesets extends $dara.Model {
|
|
|
14071
14188
|
});
|
|
14072
14189
|
}
|
|
14073
14190
|
export declare class ListWafTemplateRulesRequestQueryArgs extends $dara.Model {
|
|
14191
|
+
kinds?: string[];
|
|
14074
14192
|
/**
|
|
14075
14193
|
* @remarks
|
|
14076
14194
|
* Rule type.
|
|
@@ -14790,6 +14908,7 @@ export declare class UpdateHttpRequestHeaderModificationRuleRequestRequestHeader
|
|
|
14790
14908
|
* add
|
|
14791
14909
|
*/
|
|
14792
14910
|
operation?: string;
|
|
14911
|
+
type?: string;
|
|
14793
14912
|
/**
|
|
14794
14913
|
* @remarks
|
|
14795
14914
|
* Request header value.
|
|
@@ -14833,6 +14952,7 @@ export declare class UpdateHttpResponseHeaderModificationRuleRequestResponseHead
|
|
|
14833
14952
|
* add
|
|
14834
14953
|
*/
|
|
14835
14954
|
operation?: string;
|
|
14955
|
+
type?: string;
|
|
14836
14956
|
/**
|
|
14837
14957
|
* @remarks
|
|
14838
14958
|
* Response header value.
|
|
@@ -21523,14 +21643,6 @@ export declare class CreateRoutineRequest extends $dara.Model {
|
|
|
21523
21643
|
* test-routine1
|
|
21524
21644
|
*/
|
|
21525
21645
|
name?: string;
|
|
21526
|
-
/**
|
|
21527
|
-
* @remarks
|
|
21528
|
-
* The specification of the routine.
|
|
21529
|
-
*
|
|
21530
|
-
* @example
|
|
21531
|
-
* 5ms
|
|
21532
|
-
*/
|
|
21533
|
-
specName?: string;
|
|
21534
21646
|
static names(): {
|
|
21535
21647
|
[key: string]: string;
|
|
21536
21648
|
};
|
|
@@ -31243,6 +31355,82 @@ export declare class GetEdgeContainerTerminalResponse extends $dara.Model {
|
|
|
31243
31355
|
[key: string]: any;
|
|
31244
31356
|
});
|
|
31245
31357
|
}
|
|
31358
|
+
export declare class GetErServiceRequest extends $dara.Model {
|
|
31359
|
+
ownerId?: number;
|
|
31360
|
+
securityToken?: string;
|
|
31361
|
+
static names(): {
|
|
31362
|
+
[key: string]: string;
|
|
31363
|
+
};
|
|
31364
|
+
static types(): {
|
|
31365
|
+
[key: string]: any;
|
|
31366
|
+
};
|
|
31367
|
+
validate(): void;
|
|
31368
|
+
constructor(map?: {
|
|
31369
|
+
[key: string]: any;
|
|
31370
|
+
});
|
|
31371
|
+
}
|
|
31372
|
+
export declare class GetErServiceResponseBody extends $dara.Model {
|
|
31373
|
+
/**
|
|
31374
|
+
* @remarks
|
|
31375
|
+
* The billing mode. Valid values:
|
|
31376
|
+
*
|
|
31377
|
+
* * er_paymode: billed for customers on the China site.
|
|
31378
|
+
* * er_freemode: free for customers on the China site.
|
|
31379
|
+
* * er_paymodeintl: billed for customers on the International site.
|
|
31380
|
+
* * err_freemodeintl: free for customers on the International site
|
|
31381
|
+
*
|
|
31382
|
+
* @example
|
|
31383
|
+
* er_paymode
|
|
31384
|
+
*/
|
|
31385
|
+
planName?: string;
|
|
31386
|
+
/**
|
|
31387
|
+
* @remarks
|
|
31388
|
+
* The request ID.
|
|
31389
|
+
*
|
|
31390
|
+
* @example
|
|
31391
|
+
* CB1A380B-09F0-41BB-A198-72F8FD6DA2FE
|
|
31392
|
+
*/
|
|
31393
|
+
requestId?: string;
|
|
31394
|
+
/**
|
|
31395
|
+
* @remarks
|
|
31396
|
+
* The service status. Valid values:
|
|
31397
|
+
*
|
|
31398
|
+
* * Creating
|
|
31399
|
+
* * Running
|
|
31400
|
+
* * NotOpened
|
|
31401
|
+
*
|
|
31402
|
+
* @example
|
|
31403
|
+
* Running
|
|
31404
|
+
*/
|
|
31405
|
+
status?: string;
|
|
31406
|
+
static names(): {
|
|
31407
|
+
[key: string]: string;
|
|
31408
|
+
};
|
|
31409
|
+
static types(): {
|
|
31410
|
+
[key: string]: any;
|
|
31411
|
+
};
|
|
31412
|
+
validate(): void;
|
|
31413
|
+
constructor(map?: {
|
|
31414
|
+
[key: string]: any;
|
|
31415
|
+
});
|
|
31416
|
+
}
|
|
31417
|
+
export declare class GetErServiceResponse extends $dara.Model {
|
|
31418
|
+
headers?: {
|
|
31419
|
+
[key: string]: string;
|
|
31420
|
+
};
|
|
31421
|
+
statusCode?: number;
|
|
31422
|
+
body?: GetErServiceResponseBody;
|
|
31423
|
+
static names(): {
|
|
31424
|
+
[key: string]: string;
|
|
31425
|
+
};
|
|
31426
|
+
static types(): {
|
|
31427
|
+
[key: string]: any;
|
|
31428
|
+
};
|
|
31429
|
+
validate(): void;
|
|
31430
|
+
constructor(map?: {
|
|
31431
|
+
[key: string]: any;
|
|
31432
|
+
});
|
|
31433
|
+
}
|
|
31246
31434
|
export declare class GetHttpRequestHeaderModificationRuleRequest extends $dara.Model {
|
|
31247
31435
|
/**
|
|
31248
31436
|
* @remarks
|
|
@@ -37255,6 +37443,67 @@ export declare class ListCertificatesResponse extends $dara.Model {
|
|
|
37255
37443
|
[key: string]: any;
|
|
37256
37444
|
});
|
|
37257
37445
|
}
|
|
37446
|
+
export declare class ListCertificatesByRecordRequest extends $dara.Model {
|
|
37447
|
+
detail?: boolean;
|
|
37448
|
+
/**
|
|
37449
|
+
* @remarks
|
|
37450
|
+
* This parameter is required.
|
|
37451
|
+
*/
|
|
37452
|
+
recordName?: string;
|
|
37453
|
+
/**
|
|
37454
|
+
* @remarks
|
|
37455
|
+
* This parameter is required.
|
|
37456
|
+
*
|
|
37457
|
+
* @example
|
|
37458
|
+
* 1234567890123
|
|
37459
|
+
*/
|
|
37460
|
+
siteId?: number;
|
|
37461
|
+
validOnly?: boolean;
|
|
37462
|
+
static names(): {
|
|
37463
|
+
[key: string]: string;
|
|
37464
|
+
};
|
|
37465
|
+
static types(): {
|
|
37466
|
+
[key: string]: any;
|
|
37467
|
+
};
|
|
37468
|
+
validate(): void;
|
|
37469
|
+
constructor(map?: {
|
|
37470
|
+
[key: string]: any;
|
|
37471
|
+
});
|
|
37472
|
+
}
|
|
37473
|
+
export declare class ListCertificatesByRecordResponseBody extends $dara.Model {
|
|
37474
|
+
requestId?: string;
|
|
37475
|
+
result?: ListCertificatesByRecordResponseBodyResult[];
|
|
37476
|
+
siteId?: number;
|
|
37477
|
+
siteName?: string;
|
|
37478
|
+
totalCount?: number;
|
|
37479
|
+
static names(): {
|
|
37480
|
+
[key: string]: string;
|
|
37481
|
+
};
|
|
37482
|
+
static types(): {
|
|
37483
|
+
[key: string]: any;
|
|
37484
|
+
};
|
|
37485
|
+
validate(): void;
|
|
37486
|
+
constructor(map?: {
|
|
37487
|
+
[key: string]: any;
|
|
37488
|
+
});
|
|
37489
|
+
}
|
|
37490
|
+
export declare class ListCertificatesByRecordResponse extends $dara.Model {
|
|
37491
|
+
headers?: {
|
|
37492
|
+
[key: string]: string;
|
|
37493
|
+
};
|
|
37494
|
+
statusCode?: number;
|
|
37495
|
+
body?: ListCertificatesByRecordResponseBody;
|
|
37496
|
+
static names(): {
|
|
37497
|
+
[key: string]: string;
|
|
37498
|
+
};
|
|
37499
|
+
static types(): {
|
|
37500
|
+
[key: string]: any;
|
|
37501
|
+
};
|
|
37502
|
+
validate(): void;
|
|
37503
|
+
constructor(map?: {
|
|
37504
|
+
[key: string]: any;
|
|
37505
|
+
});
|
|
37506
|
+
}
|
|
37258
37507
|
export declare class ListCiphersRequest extends $dara.Model {
|
|
37259
37508
|
/**
|
|
37260
37509
|
* @remarks
|
|
@@ -41485,20 +41734,63 @@ export declare class ListRoutineCanaryAreasResponse extends $dara.Model {
|
|
|
41485
41734
|
[key: string]: any;
|
|
41486
41735
|
});
|
|
41487
41736
|
}
|
|
41488
|
-
export declare class
|
|
41737
|
+
export declare class ListRoutineRelatedRecordsRequest extends $dara.Model {
|
|
41489
41738
|
/**
|
|
41490
41739
|
* @remarks
|
|
41491
|
-
*
|
|
41740
|
+
* This parameter is required.
|
|
41492
41741
|
*
|
|
41493
41742
|
* @example
|
|
41494
|
-
*
|
|
41743
|
+
* test
|
|
41744
|
+
*/
|
|
41745
|
+
name?: string;
|
|
41746
|
+
/**
|
|
41747
|
+
* @example
|
|
41748
|
+
* 1
|
|
41749
|
+
*/
|
|
41750
|
+
pageNumber?: number;
|
|
41751
|
+
/**
|
|
41752
|
+
* @example
|
|
41753
|
+
* 20
|
|
41754
|
+
*/
|
|
41755
|
+
pageSize?: number;
|
|
41756
|
+
/**
|
|
41757
|
+
* @example
|
|
41758
|
+
* hello
|
|
41759
|
+
*/
|
|
41760
|
+
searchKeyWord?: string;
|
|
41761
|
+
static names(): {
|
|
41762
|
+
[key: string]: string;
|
|
41763
|
+
};
|
|
41764
|
+
static types(): {
|
|
41765
|
+
[key: string]: any;
|
|
41766
|
+
};
|
|
41767
|
+
validate(): void;
|
|
41768
|
+
constructor(map?: {
|
|
41769
|
+
[key: string]: any;
|
|
41770
|
+
});
|
|
41771
|
+
}
|
|
41772
|
+
export declare class ListRoutineRelatedRecordsResponseBody extends $dara.Model {
|
|
41773
|
+
/**
|
|
41774
|
+
* @example
|
|
41775
|
+
* 1
|
|
41776
|
+
*/
|
|
41777
|
+
pageNumber?: number;
|
|
41778
|
+
/**
|
|
41779
|
+
* @example
|
|
41780
|
+
* 20
|
|
41781
|
+
*/
|
|
41782
|
+
pageSize?: number;
|
|
41783
|
+
relatedRecords?: ListRoutineRelatedRecordsResponseBodyRelatedRecords[];
|
|
41784
|
+
/**
|
|
41785
|
+
* @example
|
|
41786
|
+
* 15C66C7B-671A-4297-9187-2C4477247A74
|
|
41495
41787
|
*/
|
|
41496
41788
|
requestId?: string;
|
|
41497
41789
|
/**
|
|
41498
|
-
* @
|
|
41499
|
-
*
|
|
41790
|
+
* @example
|
|
41791
|
+
* 16
|
|
41500
41792
|
*/
|
|
41501
|
-
|
|
41793
|
+
totalCount?: number;
|
|
41502
41794
|
static names(): {
|
|
41503
41795
|
[key: string]: string;
|
|
41504
41796
|
};
|
|
@@ -41510,12 +41802,12 @@ export declare class ListRoutineOptionalSpecsResponseBody extends $dara.Model {
|
|
|
41510
41802
|
[key: string]: any;
|
|
41511
41803
|
});
|
|
41512
41804
|
}
|
|
41513
|
-
export declare class
|
|
41805
|
+
export declare class ListRoutineRelatedRecordsResponse extends $dara.Model {
|
|
41514
41806
|
headers?: {
|
|
41515
41807
|
[key: string]: string;
|
|
41516
41808
|
};
|
|
41517
41809
|
statusCode?: number;
|
|
41518
|
-
body?:
|
|
41810
|
+
body?: ListRoutineRelatedRecordsResponseBody;
|
|
41519
41811
|
static names(): {
|
|
41520
41812
|
[key: string]: string;
|
|
41521
41813
|
};
|
|
@@ -42798,6 +43090,65 @@ export declare class ListUserRatePlanInstancesResponse extends $dara.Model {
|
|
|
42798
43090
|
[key: string]: any;
|
|
42799
43091
|
});
|
|
42800
43092
|
}
|
|
43093
|
+
export declare class ListUserRoutinesRequest extends $dara.Model {
|
|
43094
|
+
/**
|
|
43095
|
+
* @example
|
|
43096
|
+
* ListUserRoutines
|
|
43097
|
+
*/
|
|
43098
|
+
pageNumber?: number;
|
|
43099
|
+
pageSize?: number;
|
|
43100
|
+
searchKeyWord?: string;
|
|
43101
|
+
static names(): {
|
|
43102
|
+
[key: string]: string;
|
|
43103
|
+
};
|
|
43104
|
+
static types(): {
|
|
43105
|
+
[key: string]: any;
|
|
43106
|
+
};
|
|
43107
|
+
validate(): void;
|
|
43108
|
+
constructor(map?: {
|
|
43109
|
+
[key: string]: any;
|
|
43110
|
+
});
|
|
43111
|
+
}
|
|
43112
|
+
export declare class ListUserRoutinesResponseBody extends $dara.Model {
|
|
43113
|
+
pageNumber?: number;
|
|
43114
|
+
pageSize?: number;
|
|
43115
|
+
quotaRoutineNumber?: number;
|
|
43116
|
+
/**
|
|
43117
|
+
* @remarks
|
|
43118
|
+
* Id of the request
|
|
43119
|
+
*/
|
|
43120
|
+
requestId?: string;
|
|
43121
|
+
routines?: ListUserRoutinesResponseBodyRoutines[];
|
|
43122
|
+
totalCount?: number;
|
|
43123
|
+
usedRoutineNumber?: number;
|
|
43124
|
+
static names(): {
|
|
43125
|
+
[key: string]: string;
|
|
43126
|
+
};
|
|
43127
|
+
static types(): {
|
|
43128
|
+
[key: string]: any;
|
|
43129
|
+
};
|
|
43130
|
+
validate(): void;
|
|
43131
|
+
constructor(map?: {
|
|
43132
|
+
[key: string]: any;
|
|
43133
|
+
});
|
|
43134
|
+
}
|
|
43135
|
+
export declare class ListUserRoutinesResponse extends $dara.Model {
|
|
43136
|
+
headers?: {
|
|
43137
|
+
[key: string]: string;
|
|
43138
|
+
};
|
|
43139
|
+
statusCode?: number;
|
|
43140
|
+
body?: ListUserRoutinesResponseBody;
|
|
43141
|
+
static names(): {
|
|
43142
|
+
[key: string]: string;
|
|
43143
|
+
};
|
|
43144
|
+
static types(): {
|
|
43145
|
+
[key: string]: any;
|
|
43146
|
+
};
|
|
43147
|
+
validate(): void;
|
|
43148
|
+
constructor(map?: {
|
|
43149
|
+
[key: string]: any;
|
|
43150
|
+
});
|
|
43151
|
+
}
|
|
42801
43152
|
export declare class ListWafManagedRulesRequest extends $dara.Model {
|
|
42802
43153
|
/**
|
|
42803
43154
|
* @remarks
|
|
@@ -44289,72 +44640,6 @@ export declare class PublishEdgeContainerAppVersionResponse extends $dara.Model
|
|
|
44289
44640
|
});
|
|
44290
44641
|
}
|
|
44291
44642
|
export declare class PublishRoutineCodeVersionRequest extends $dara.Model {
|
|
44292
|
-
/**
|
|
44293
|
-
* @remarks
|
|
44294
|
-
* The regions for canary release.
|
|
44295
|
-
*/
|
|
44296
|
-
canaryAreaList?: string[];
|
|
44297
|
-
/**
|
|
44298
|
-
* @remarks
|
|
44299
|
-
* The version number for canary release.
|
|
44300
|
-
*
|
|
44301
|
-
* @example
|
|
44302
|
-
* 1710120201067203242
|
|
44303
|
-
*/
|
|
44304
|
-
canaryCodeVersion?: string;
|
|
44305
|
-
/**
|
|
44306
|
-
* @remarks
|
|
44307
|
-
* The code version to be released.
|
|
44308
|
-
*
|
|
44309
|
-
* @example
|
|
44310
|
-
* 1710120201067203242
|
|
44311
|
-
*/
|
|
44312
|
-
codeVersion?: string;
|
|
44313
|
-
/**
|
|
44314
|
-
* @remarks
|
|
44315
|
-
* The environment name.
|
|
44316
|
-
*
|
|
44317
|
-
* This parameter is required.
|
|
44318
|
-
*
|
|
44319
|
-
* @example
|
|
44320
|
-
* production
|
|
44321
|
-
*/
|
|
44322
|
-
env?: string;
|
|
44323
|
-
/**
|
|
44324
|
-
* @remarks
|
|
44325
|
-
* The routine name.
|
|
44326
|
-
*
|
|
44327
|
-
* This parameter is required.
|
|
44328
|
-
*
|
|
44329
|
-
* @example
|
|
44330
|
-
* PublishRoutineCodeVersion
|
|
44331
|
-
*/
|
|
44332
|
-
name?: string;
|
|
44333
|
-
static names(): {
|
|
44334
|
-
[key: string]: string;
|
|
44335
|
-
};
|
|
44336
|
-
static types(): {
|
|
44337
|
-
[key: string]: any;
|
|
44338
|
-
};
|
|
44339
|
-
validate(): void;
|
|
44340
|
-
constructor(map?: {
|
|
44341
|
-
[key: string]: any;
|
|
44342
|
-
});
|
|
44343
|
-
}
|
|
44344
|
-
export declare class PublishRoutineCodeVersionShrinkRequest extends $dara.Model {
|
|
44345
|
-
/**
|
|
44346
|
-
* @remarks
|
|
44347
|
-
* The regions for canary release.
|
|
44348
|
-
*/
|
|
44349
|
-
canaryAreaListShrink?: string;
|
|
44350
|
-
/**
|
|
44351
|
-
* @remarks
|
|
44352
|
-
* The version number for canary release.
|
|
44353
|
-
*
|
|
44354
|
-
* @example
|
|
44355
|
-
* 1710120201067203242
|
|
44356
|
-
*/
|
|
44357
|
-
canaryCodeVersion?: string;
|
|
44358
44643
|
/**
|
|
44359
44644
|
* @remarks
|
|
44360
44645
|
* The code version to be released.
|
|
@@ -45471,6 +45756,7 @@ export declare class RollbackEdgeContainerAppVersionRequest extends $dara.Model
|
|
|
45471
45756
|
* app-88068867578379****
|
|
45472
45757
|
*/
|
|
45473
45758
|
appId?: string;
|
|
45759
|
+
percentage?: number;
|
|
45474
45760
|
/**
|
|
45475
45761
|
* @remarks
|
|
45476
45762
|
* The remarks.
|
|
@@ -45479,6 +45765,7 @@ export declare class RollbackEdgeContainerAppVersionRequest extends $dara.Model
|
|
|
45479
45765
|
* test rollback app
|
|
45480
45766
|
*/
|
|
45481
45767
|
remarks?: string;
|
|
45768
|
+
usedPercent?: boolean;
|
|
45482
45769
|
/**
|
|
45483
45770
|
* @remarks
|
|
45484
45771
|
* The ID of version that you want to roll back.
|
|
@@ -55889,6 +56176,21 @@ export default class Client extends OpenApi {
|
|
|
55889
56176
|
* @returns GetEdgeContainerTerminalResponse
|
|
55890
56177
|
*/
|
|
55891
56178
|
getEdgeContainerTerminal(request: GetEdgeContainerTerminalRequest): Promise<GetEdgeContainerTerminalResponse>;
|
|
56179
|
+
/**
|
|
56180
|
+
* Checks the status of Edge Routine.
|
|
56181
|
+
*
|
|
56182
|
+
* @param request - GetErServiceRequest
|
|
56183
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
56184
|
+
* @returns GetErServiceResponse
|
|
56185
|
+
*/
|
|
56186
|
+
getErServiceWithOptions(request: GetErServiceRequest, runtime: $dara.RuntimeOptions): Promise<GetErServiceResponse>;
|
|
56187
|
+
/**
|
|
56188
|
+
* Checks the status of Edge Routine.
|
|
56189
|
+
*
|
|
56190
|
+
* @param request - GetErServiceRequest
|
|
56191
|
+
* @returns GetErServiceResponse
|
|
56192
|
+
*/
|
|
56193
|
+
getErService(request: GetErServiceRequest): Promise<GetErServiceResponse>;
|
|
55892
56194
|
/**
|
|
55893
56195
|
* Query HTTP Request Header Rule Details
|
|
55894
56196
|
*
|
|
@@ -56734,6 +57036,21 @@ export default class Client extends OpenApi {
|
|
|
56734
57036
|
* @returns ListCertificatesResponse
|
|
56735
57037
|
*/
|
|
56736
57038
|
listCertificates(request: ListCertificatesRequest): Promise<ListCertificatesResponse>;
|
|
57039
|
+
/**
|
|
57040
|
+
* 查询匹配记录名的站点证书列表
|
|
57041
|
+
*
|
|
57042
|
+
* @param request - ListCertificatesByRecordRequest
|
|
57043
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
57044
|
+
* @returns ListCertificatesByRecordResponse
|
|
57045
|
+
*/
|
|
57046
|
+
listCertificatesByRecordWithOptions(request: ListCertificatesByRecordRequest, runtime: $dara.RuntimeOptions): Promise<ListCertificatesByRecordResponse>;
|
|
57047
|
+
/**
|
|
57048
|
+
* 查询匹配记录名的站点证书列表
|
|
57049
|
+
*
|
|
57050
|
+
* @param request - ListCertificatesByRecordRequest
|
|
57051
|
+
* @returns ListCertificatesByRecordResponse
|
|
57052
|
+
*/
|
|
57053
|
+
listCertificatesByRecord(request: ListCertificatesByRecordRequest): Promise<ListCertificatesByRecordResponse>;
|
|
56737
57054
|
/**
|
|
56738
57055
|
* Query TLS Cipher Suite List
|
|
56739
57056
|
*
|
|
@@ -57258,24 +57575,20 @@ export default class Client extends OpenApi {
|
|
|
57258
57575
|
*/
|
|
57259
57576
|
listRoutineCanaryAreas(): Promise<ListRoutineCanaryAreasResponse>;
|
|
57260
57577
|
/**
|
|
57261
|
-
*
|
|
57578
|
+
* 查询函数关联域名列表
|
|
57262
57579
|
*
|
|
57263
|
-
* @
|
|
57264
|
-
* You can call this operation to query the specifications that you can select for a routine.
|
|
57265
|
-
*
|
|
57266
|
-
* @param request - ListRoutineOptionalSpecsRequest
|
|
57580
|
+
* @param request - ListRoutineRelatedRecordsRequest
|
|
57267
57581
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
57268
|
-
* @returns
|
|
57582
|
+
* @returns ListRoutineRelatedRecordsResponse
|
|
57269
57583
|
*/
|
|
57270
|
-
|
|
57584
|
+
listRoutineRelatedRecordsWithOptions(request: ListRoutineRelatedRecordsRequest, runtime: $dara.RuntimeOptions): Promise<ListRoutineRelatedRecordsResponse>;
|
|
57271
57585
|
/**
|
|
57272
|
-
*
|
|
57586
|
+
* 查询函数关联域名列表
|
|
57273
57587
|
*
|
|
57274
|
-
* @
|
|
57275
|
-
*
|
|
57276
|
-
* @returns ListRoutineOptionalSpecsResponse
|
|
57588
|
+
* @param request - ListRoutineRelatedRecordsRequest
|
|
57589
|
+
* @returns ListRoutineRelatedRecordsResponse
|
|
57277
57590
|
*/
|
|
57278
|
-
|
|
57591
|
+
listRoutineRelatedRecords(request: ListRoutineRelatedRecordsRequest): Promise<ListRoutineRelatedRecordsResponse>;
|
|
57279
57592
|
/**
|
|
57280
57593
|
* 查询边缘程序的函数路由列表
|
|
57281
57594
|
*
|
|
@@ -57426,6 +57739,21 @@ export default class Client extends OpenApi {
|
|
|
57426
57739
|
* @returns ListUserRatePlanInstancesResponse
|
|
57427
57740
|
*/
|
|
57428
57741
|
listUserRatePlanInstances(request: ListUserRatePlanInstancesRequest): Promise<ListUserRatePlanInstancesResponse>;
|
|
57742
|
+
/**
|
|
57743
|
+
* 查询用户的Routine列表
|
|
57744
|
+
*
|
|
57745
|
+
* @param request - ListUserRoutinesRequest
|
|
57746
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
57747
|
+
* @returns ListUserRoutinesResponse
|
|
57748
|
+
*/
|
|
57749
|
+
listUserRoutinesWithOptions(request: ListUserRoutinesRequest, runtime: $dara.RuntimeOptions): Promise<ListUserRoutinesResponse>;
|
|
57750
|
+
/**
|
|
57751
|
+
* 查询用户的Routine列表
|
|
57752
|
+
*
|
|
57753
|
+
* @param request - ListUserRoutinesRequest
|
|
57754
|
+
* @returns ListUserRoutinesResponse
|
|
57755
|
+
*/
|
|
57756
|
+
listUserRoutines(request: ListUserRoutinesRequest): Promise<ListUserRoutinesResponse>;
|
|
57429
57757
|
/**
|
|
57430
57758
|
* List WAF Managed Rules
|
|
57431
57759
|
*
|
|
@@ -57612,11 +57940,11 @@ export default class Client extends OpenApi {
|
|
|
57612
57940
|
/**
|
|
57613
57941
|
* Releases a code version of a routine to the staging, canary, or production environment. You can specify the regions where the canary environment is deployed to release your code.
|
|
57614
57942
|
*
|
|
57615
|
-
* @param
|
|
57943
|
+
* @param request - PublishRoutineCodeVersionRequest
|
|
57616
57944
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
57617
57945
|
* @returns PublishRoutineCodeVersionResponse
|
|
57618
57946
|
*/
|
|
57619
|
-
publishRoutineCodeVersionWithOptions(
|
|
57947
|
+
publishRoutineCodeVersionWithOptions(request: PublishRoutineCodeVersionRequest, runtime: $dara.RuntimeOptions): Promise<PublishRoutineCodeVersionResponse>;
|
|
57620
57948
|
/**
|
|
57621
57949
|
* Releases a code version of a routine to the staging, canary, or production environment. You can specify the regions where the canary environment is deployed to release your code.
|
|
57622
57950
|
*
|