@alicloud/cloudapi20160714 2.2.5 → 2.2.6
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 +61 -17
- package/dist/client.js +152 -85
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +197 -119
package/src/client.ts
CHANGED
|
@@ -3829,6 +3829,7 @@ export class DescribeApiGroupResponseBody extends $tea.Model {
|
|
|
3829
3829
|
basePath?: string;
|
|
3830
3830
|
billingStatus?: string;
|
|
3831
3831
|
classicVpcSubDomain?: string;
|
|
3832
|
+
cloudMarketCommodity?: boolean;
|
|
3832
3833
|
cmsMonitorGroup?: string;
|
|
3833
3834
|
compatibleFlags?: string;
|
|
3834
3835
|
createdTime?: string;
|
|
@@ -3862,6 +3863,7 @@ export class DescribeApiGroupResponseBody extends $tea.Model {
|
|
|
3862
3863
|
basePath: 'BasePath',
|
|
3863
3864
|
billingStatus: 'BillingStatus',
|
|
3864
3865
|
classicVpcSubDomain: 'ClassicVpcSubDomain',
|
|
3866
|
+
cloudMarketCommodity: 'CloudMarketCommodity',
|
|
3865
3867
|
cmsMonitorGroup: 'CmsMonitorGroup',
|
|
3866
3868
|
compatibleFlags: 'CompatibleFlags',
|
|
3867
3869
|
createdTime: 'CreatedTime',
|
|
@@ -3898,6 +3900,7 @@ export class DescribeApiGroupResponseBody extends $tea.Model {
|
|
|
3898
3900
|
basePath: 'string',
|
|
3899
3901
|
billingStatus: 'string',
|
|
3900
3902
|
classicVpcSubDomain: 'string',
|
|
3903
|
+
cloudMarketCommodity: 'boolean',
|
|
3901
3904
|
cmsMonitorGroup: 'string',
|
|
3902
3905
|
compatibleFlags: 'string',
|
|
3903
3906
|
createdTime: 'string',
|
|
@@ -4996,7 +4999,9 @@ export class DescribeApiTrafficDataResponse extends $tea.Model {
|
|
|
4996
4999
|
|
|
4997
5000
|
export class DescribeApisRequest extends $tea.Model {
|
|
4998
5001
|
apiId?: string;
|
|
5002
|
+
apiMethod?: string;
|
|
4999
5003
|
apiName?: string;
|
|
5004
|
+
apiPath?: string;
|
|
5000
5005
|
catalogId?: string;
|
|
5001
5006
|
enableTagAuth?: boolean;
|
|
5002
5007
|
groupId?: string;
|
|
@@ -5004,11 +5009,14 @@ export class DescribeApisRequest extends $tea.Model {
|
|
|
5004
5009
|
pageSize?: number;
|
|
5005
5010
|
securityToken?: string;
|
|
5006
5011
|
tag?: DescribeApisRequestTag[];
|
|
5012
|
+
unDeployed?: boolean;
|
|
5007
5013
|
visibility?: string;
|
|
5008
5014
|
static names(): { [key: string]: string } {
|
|
5009
5015
|
return {
|
|
5010
5016
|
apiId: 'ApiId',
|
|
5017
|
+
apiMethod: 'ApiMethod',
|
|
5011
5018
|
apiName: 'ApiName',
|
|
5019
|
+
apiPath: 'ApiPath',
|
|
5012
5020
|
catalogId: 'CatalogId',
|
|
5013
5021
|
enableTagAuth: 'EnableTagAuth',
|
|
5014
5022
|
groupId: 'GroupId',
|
|
@@ -5016,6 +5024,7 @@ export class DescribeApisRequest extends $tea.Model {
|
|
|
5016
5024
|
pageSize: 'PageSize',
|
|
5017
5025
|
securityToken: 'SecurityToken',
|
|
5018
5026
|
tag: 'Tag',
|
|
5027
|
+
unDeployed: 'UnDeployed',
|
|
5019
5028
|
visibility: 'Visibility',
|
|
5020
5029
|
};
|
|
5021
5030
|
}
|
|
@@ -5023,7 +5032,9 @@ export class DescribeApisRequest extends $tea.Model {
|
|
|
5023
5032
|
static types(): { [key: string]: any } {
|
|
5024
5033
|
return {
|
|
5025
5034
|
apiId: 'string',
|
|
5035
|
+
apiMethod: 'string',
|
|
5026
5036
|
apiName: 'string',
|
|
5037
|
+
apiPath: 'string',
|
|
5027
5038
|
catalogId: 'string',
|
|
5028
5039
|
enableTagAuth: 'boolean',
|
|
5029
5040
|
groupId: 'string',
|
|
@@ -5031,6 +5042,7 @@ export class DescribeApisRequest extends $tea.Model {
|
|
|
5031
5042
|
pageSize: 'number',
|
|
5032
5043
|
securityToken: 'string',
|
|
5033
5044
|
tag: { 'type': 'array', 'itemType': DescribeApisRequestTag },
|
|
5045
|
+
unDeployed: 'boolean',
|
|
5034
5046
|
visibility: 'string',
|
|
5035
5047
|
};
|
|
5036
5048
|
}
|
|
@@ -6454,7 +6466,9 @@ export class DescribeDeployedApiResponse extends $tea.Model {
|
|
|
6454
6466
|
|
|
6455
6467
|
export class DescribeDeployedApisRequest extends $tea.Model {
|
|
6456
6468
|
apiId?: string;
|
|
6469
|
+
apiMethod?: string;
|
|
6457
6470
|
apiName?: string;
|
|
6471
|
+
apiPath?: string;
|
|
6458
6472
|
enableTagAuth?: boolean;
|
|
6459
6473
|
groupId?: string;
|
|
6460
6474
|
pageNumber?: number;
|
|
@@ -6465,7 +6479,9 @@ export class DescribeDeployedApisRequest extends $tea.Model {
|
|
|
6465
6479
|
static names(): { [key: string]: string } {
|
|
6466
6480
|
return {
|
|
6467
6481
|
apiId: 'ApiId',
|
|
6482
|
+
apiMethod: 'ApiMethod',
|
|
6468
6483
|
apiName: 'ApiName',
|
|
6484
|
+
apiPath: 'ApiPath',
|
|
6469
6485
|
enableTagAuth: 'EnableTagAuth',
|
|
6470
6486
|
groupId: 'GroupId',
|
|
6471
6487
|
pageNumber: 'PageNumber',
|
|
@@ -6479,7 +6495,9 @@ export class DescribeDeployedApisRequest extends $tea.Model {
|
|
|
6479
6495
|
static types(): { [key: string]: any } {
|
|
6480
6496
|
return {
|
|
6481
6497
|
apiId: 'string',
|
|
6498
|
+
apiMethod: 'string',
|
|
6482
6499
|
apiName: 'string',
|
|
6500
|
+
apiPath: 'string',
|
|
6483
6501
|
enableTagAuth: 'boolean',
|
|
6484
6502
|
groupId: 'string',
|
|
6485
6503
|
pageNumber: 'number',
|
|
@@ -8216,13 +8234,11 @@ export class DescribeTrafficControlsResponse extends $tea.Model {
|
|
|
8216
8234
|
export class DescribeTrafficControlsByApiRequest extends $tea.Model {
|
|
8217
8235
|
apiId?: string;
|
|
8218
8236
|
groupId?: string;
|
|
8219
|
-
securityToken?: string;
|
|
8220
8237
|
stageName?: string;
|
|
8221
8238
|
static names(): { [key: string]: string } {
|
|
8222
8239
|
return {
|
|
8223
8240
|
apiId: 'ApiId',
|
|
8224
8241
|
groupId: 'GroupId',
|
|
8225
|
-
securityToken: 'SecurityToken',
|
|
8226
8242
|
stageName: 'StageName',
|
|
8227
8243
|
};
|
|
8228
8244
|
}
|
|
@@ -8231,7 +8247,6 @@ export class DescribeTrafficControlsByApiRequest extends $tea.Model {
|
|
|
8231
8247
|
return {
|
|
8232
8248
|
apiId: 'string',
|
|
8233
8249
|
groupId: 'string',
|
|
8234
|
-
securityToken: 'string',
|
|
8235
8250
|
stageName: 'string',
|
|
8236
8251
|
};
|
|
8237
8252
|
}
|
|
@@ -8290,18 +8305,15 @@ export class DescribeTrafficControlsByApiResponse extends $tea.Model {
|
|
|
8290
8305
|
|
|
8291
8306
|
export class DescribeUpdateBackendTaskRequest extends $tea.Model {
|
|
8292
8307
|
operationUid?: string;
|
|
8293
|
-
securityToken?: string;
|
|
8294
8308
|
static names(): { [key: string]: string } {
|
|
8295
8309
|
return {
|
|
8296
8310
|
operationUid: 'OperationUid',
|
|
8297
|
-
securityToken: 'SecurityToken',
|
|
8298
8311
|
};
|
|
8299
8312
|
}
|
|
8300
8313
|
|
|
8301
8314
|
static types(): { [key: string]: any } {
|
|
8302
8315
|
return {
|
|
8303
8316
|
operationUid: 'string',
|
|
8304
|
-
securityToken: 'string',
|
|
8305
8317
|
};
|
|
8306
8318
|
}
|
|
8307
8319
|
|
|
@@ -8359,18 +8371,15 @@ export class DescribeUpdateBackendTaskResponse extends $tea.Model {
|
|
|
8359
8371
|
|
|
8360
8372
|
export class DescribeUpdateVpcInfoTaskRequest extends $tea.Model {
|
|
8361
8373
|
operationUid?: string;
|
|
8362
|
-
securityToken?: string;
|
|
8363
8374
|
static names(): { [key: string]: string } {
|
|
8364
8375
|
return {
|
|
8365
8376
|
operationUid: 'OperationUid',
|
|
8366
|
-
securityToken: 'SecurityToken',
|
|
8367
8377
|
};
|
|
8368
8378
|
}
|
|
8369
8379
|
|
|
8370
8380
|
static types(): { [key: string]: any } {
|
|
8371
8381
|
return {
|
|
8372
8382
|
operationUid: 'string',
|
|
8373
|
-
securityToken: 'string',
|
|
8374
8383
|
};
|
|
8375
8384
|
}
|
|
8376
8385
|
|
|
@@ -8669,12 +8678,10 @@ export class DetachPluginResponse extends $tea.Model {
|
|
|
8669
8678
|
export class DisableInstanceAccessControlRequest extends $tea.Model {
|
|
8670
8679
|
aclId?: string;
|
|
8671
8680
|
instanceId?: string;
|
|
8672
|
-
securityToken?: string;
|
|
8673
8681
|
static names(): { [key: string]: string } {
|
|
8674
8682
|
return {
|
|
8675
8683
|
aclId: 'AclId',
|
|
8676
8684
|
instanceId: 'InstanceId',
|
|
8677
|
-
securityToken: 'SecurityToken',
|
|
8678
8685
|
};
|
|
8679
8686
|
}
|
|
8680
8687
|
|
|
@@ -8682,7 +8689,6 @@ export class DisableInstanceAccessControlRequest extends $tea.Model {
|
|
|
8682
8689
|
return {
|
|
8683
8690
|
aclId: 'string',
|
|
8684
8691
|
instanceId: 'string',
|
|
8685
|
-
securityToken: 'string',
|
|
8686
8692
|
};
|
|
8687
8693
|
}
|
|
8688
8694
|
|
|
@@ -8866,13 +8872,11 @@ export class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
|
8866
8872
|
aclId?: string;
|
|
8867
8873
|
aclType?: string;
|
|
8868
8874
|
instanceId?: string;
|
|
8869
|
-
securityToken?: string;
|
|
8870
8875
|
static names(): { [key: string]: string } {
|
|
8871
8876
|
return {
|
|
8872
8877
|
aclId: 'AclId',
|
|
8873
8878
|
aclType: 'AclType',
|
|
8874
8879
|
instanceId: 'InstanceId',
|
|
8875
|
-
securityToken: 'SecurityToken',
|
|
8876
8880
|
};
|
|
8877
8881
|
}
|
|
8878
8882
|
|
|
@@ -8881,7 +8885,6 @@ export class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
|
8881
8885
|
aclId: 'string',
|
|
8882
8886
|
aclType: 'string',
|
|
8883
8887
|
instanceId: 'string',
|
|
8884
|
-
securityToken: 'string',
|
|
8885
8888
|
};
|
|
8886
8889
|
}
|
|
8887
8890
|
|
|
@@ -9568,6 +9571,87 @@ export class ModifyApiGroupResponse extends $tea.Model {
|
|
|
9568
9571
|
}
|
|
9569
9572
|
}
|
|
9570
9573
|
|
|
9574
|
+
export class ModifyApiGroupNetworkPolicyRequest extends $tea.Model {
|
|
9575
|
+
groupId?: string;
|
|
9576
|
+
httpsPolicy?: string;
|
|
9577
|
+
internetEnable?: boolean;
|
|
9578
|
+
internetIPV6Enable?: boolean;
|
|
9579
|
+
securityToken?: string;
|
|
9580
|
+
vpcIntranetEnable?: boolean;
|
|
9581
|
+
vpcSlbIntranetEnable?: boolean;
|
|
9582
|
+
static names(): { [key: string]: string } {
|
|
9583
|
+
return {
|
|
9584
|
+
groupId: 'GroupId',
|
|
9585
|
+
httpsPolicy: 'HttpsPolicy',
|
|
9586
|
+
internetEnable: 'InternetEnable',
|
|
9587
|
+
internetIPV6Enable: 'InternetIPV6Enable',
|
|
9588
|
+
securityToken: 'SecurityToken',
|
|
9589
|
+
vpcIntranetEnable: 'VpcIntranetEnable',
|
|
9590
|
+
vpcSlbIntranetEnable: 'VpcSlbIntranetEnable',
|
|
9591
|
+
};
|
|
9592
|
+
}
|
|
9593
|
+
|
|
9594
|
+
static types(): { [key: string]: any } {
|
|
9595
|
+
return {
|
|
9596
|
+
groupId: 'string',
|
|
9597
|
+
httpsPolicy: 'string',
|
|
9598
|
+
internetEnable: 'boolean',
|
|
9599
|
+
internetIPV6Enable: 'boolean',
|
|
9600
|
+
securityToken: 'string',
|
|
9601
|
+
vpcIntranetEnable: 'boolean',
|
|
9602
|
+
vpcSlbIntranetEnable: 'boolean',
|
|
9603
|
+
};
|
|
9604
|
+
}
|
|
9605
|
+
|
|
9606
|
+
constructor(map?: { [key: string]: any }) {
|
|
9607
|
+
super(map);
|
|
9608
|
+
}
|
|
9609
|
+
}
|
|
9610
|
+
|
|
9611
|
+
export class ModifyApiGroupNetworkPolicyResponseBody extends $tea.Model {
|
|
9612
|
+
requestId?: string;
|
|
9613
|
+
static names(): { [key: string]: string } {
|
|
9614
|
+
return {
|
|
9615
|
+
requestId: 'RequestId',
|
|
9616
|
+
};
|
|
9617
|
+
}
|
|
9618
|
+
|
|
9619
|
+
static types(): { [key: string]: any } {
|
|
9620
|
+
return {
|
|
9621
|
+
requestId: 'string',
|
|
9622
|
+
};
|
|
9623
|
+
}
|
|
9624
|
+
|
|
9625
|
+
constructor(map?: { [key: string]: any }) {
|
|
9626
|
+
super(map);
|
|
9627
|
+
}
|
|
9628
|
+
}
|
|
9629
|
+
|
|
9630
|
+
export class ModifyApiGroupNetworkPolicyResponse extends $tea.Model {
|
|
9631
|
+
headers: { [key: string]: string };
|
|
9632
|
+
statusCode: number;
|
|
9633
|
+
body: ModifyApiGroupNetworkPolicyResponseBody;
|
|
9634
|
+
static names(): { [key: string]: string } {
|
|
9635
|
+
return {
|
|
9636
|
+
headers: 'headers',
|
|
9637
|
+
statusCode: 'statusCode',
|
|
9638
|
+
body: 'body',
|
|
9639
|
+
};
|
|
9640
|
+
}
|
|
9641
|
+
|
|
9642
|
+
static types(): { [key: string]: any } {
|
|
9643
|
+
return {
|
|
9644
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9645
|
+
statusCode: 'number',
|
|
9646
|
+
body: ModifyApiGroupNetworkPolicyResponseBody,
|
|
9647
|
+
};
|
|
9648
|
+
}
|
|
9649
|
+
|
|
9650
|
+
constructor(map?: { [key: string]: any }) {
|
|
9651
|
+
super(map);
|
|
9652
|
+
}
|
|
9653
|
+
}
|
|
9654
|
+
|
|
9571
9655
|
export class ModifyApiGroupVpcWhitelistRequest extends $tea.Model {
|
|
9572
9656
|
groupId?: string;
|
|
9573
9657
|
securityToken?: string;
|
|
@@ -9876,6 +9960,7 @@ export class ModifyInstanceSpecRequest extends $tea.Model {
|
|
|
9876
9960
|
instanceId?: string;
|
|
9877
9961
|
instanceSpec?: string;
|
|
9878
9962
|
modifyAction?: string;
|
|
9963
|
+
skipWaitSwitch?: boolean;
|
|
9879
9964
|
token?: string;
|
|
9880
9965
|
static names(): { [key: string]: string } {
|
|
9881
9966
|
return {
|
|
@@ -9883,6 +9968,7 @@ export class ModifyInstanceSpecRequest extends $tea.Model {
|
|
|
9883
9968
|
instanceId: 'InstanceId',
|
|
9884
9969
|
instanceSpec: 'InstanceSpec',
|
|
9885
9970
|
modifyAction: 'ModifyAction',
|
|
9971
|
+
skipWaitSwitch: 'SkipWaitSwitch',
|
|
9886
9972
|
token: 'Token',
|
|
9887
9973
|
};
|
|
9888
9974
|
}
|
|
@@ -9893,6 +9979,7 @@ export class ModifyInstanceSpecRequest extends $tea.Model {
|
|
|
9893
9979
|
instanceId: 'string',
|
|
9894
9980
|
instanceSpec: 'string',
|
|
9895
9981
|
modifyAction: 'string',
|
|
9982
|
+
skipWaitSwitch: 'boolean',
|
|
9896
9983
|
token: 'string',
|
|
9897
9984
|
};
|
|
9898
9985
|
}
|
|
@@ -9950,13 +10037,11 @@ export class ModifyIpControlRequest extends $tea.Model {
|
|
|
9950
10037
|
description?: string;
|
|
9951
10038
|
ipControlId?: string;
|
|
9952
10039
|
ipControlName?: string;
|
|
9953
|
-
securityToken?: string;
|
|
9954
10040
|
static names(): { [key: string]: string } {
|
|
9955
10041
|
return {
|
|
9956
10042
|
description: 'Description',
|
|
9957
10043
|
ipControlId: 'IpControlId',
|
|
9958
10044
|
ipControlName: 'IpControlName',
|
|
9959
|
-
securityToken: 'SecurityToken',
|
|
9960
10045
|
};
|
|
9961
10046
|
}
|
|
9962
10047
|
|
|
@@ -9965,7 +10050,6 @@ export class ModifyIpControlRequest extends $tea.Model {
|
|
|
9965
10050
|
description: 'string',
|
|
9966
10051
|
ipControlId: 'string',
|
|
9967
10052
|
ipControlName: 'string',
|
|
9968
|
-
securityToken: 'string',
|
|
9969
10053
|
};
|
|
9970
10054
|
}
|
|
9971
10055
|
|
|
@@ -10319,14 +10403,12 @@ export class ModifyPluginResponse extends $tea.Model {
|
|
|
10319
10403
|
}
|
|
10320
10404
|
|
|
10321
10405
|
export class ModifySignatureRequest extends $tea.Model {
|
|
10322
|
-
securityToken?: string;
|
|
10323
10406
|
signatureId?: string;
|
|
10324
10407
|
signatureKey?: string;
|
|
10325
10408
|
signatureName?: string;
|
|
10326
10409
|
signatureSecret?: string;
|
|
10327
10410
|
static names(): { [key: string]: string } {
|
|
10328
10411
|
return {
|
|
10329
|
-
securityToken: 'SecurityToken',
|
|
10330
10412
|
signatureId: 'SignatureId',
|
|
10331
10413
|
signatureKey: 'SignatureKey',
|
|
10332
10414
|
signatureName: 'SignatureName',
|
|
@@ -10336,7 +10418,6 @@ export class ModifySignatureRequest extends $tea.Model {
|
|
|
10336
10418
|
|
|
10337
10419
|
static types(): { [key: string]: any } {
|
|
10338
10420
|
return {
|
|
10339
|
-
securityToken: 'string',
|
|
10340
10421
|
signatureId: 'string',
|
|
10341
10422
|
signatureKey: 'string',
|
|
10342
10423
|
signatureName: 'string',
|
|
@@ -10403,7 +10484,6 @@ export class ModifyTrafficControlRequest extends $tea.Model {
|
|
|
10403
10484
|
apiDefault?: number;
|
|
10404
10485
|
appDefault?: number;
|
|
10405
10486
|
description?: string;
|
|
10406
|
-
securityToken?: string;
|
|
10407
10487
|
trafficControlId?: string;
|
|
10408
10488
|
trafficControlName?: string;
|
|
10409
10489
|
trafficControlUnit?: string;
|
|
@@ -10413,7 +10493,6 @@ export class ModifyTrafficControlRequest extends $tea.Model {
|
|
|
10413
10493
|
apiDefault: 'ApiDefault',
|
|
10414
10494
|
appDefault: 'AppDefault',
|
|
10415
10495
|
description: 'Description',
|
|
10416
|
-
securityToken: 'SecurityToken',
|
|
10417
10496
|
trafficControlId: 'TrafficControlId',
|
|
10418
10497
|
trafficControlName: 'TrafficControlName',
|
|
10419
10498
|
trafficControlUnit: 'TrafficControlUnit',
|
|
@@ -10426,7 +10505,6 @@ export class ModifyTrafficControlRequest extends $tea.Model {
|
|
|
10426
10505
|
apiDefault: 'number',
|
|
10427
10506
|
appDefault: 'number',
|
|
10428
10507
|
description: 'string',
|
|
10429
|
-
securityToken: 'string',
|
|
10430
10508
|
trafficControlId: 'string',
|
|
10431
10509
|
trafficControlName: 'string',
|
|
10432
10510
|
trafficControlUnit: 'string',
|
|
@@ -10533,12 +10611,10 @@ export class OpenApiGatewayServiceResponse extends $tea.Model {
|
|
|
10533
10611
|
export class ReactivateDomainRequest extends $tea.Model {
|
|
10534
10612
|
domainName?: string;
|
|
10535
10613
|
groupId?: string;
|
|
10536
|
-
securityToken?: string;
|
|
10537
10614
|
static names(): { [key: string]: string } {
|
|
10538
10615
|
return {
|
|
10539
10616
|
domainName: 'DomainName',
|
|
10540
10617
|
groupId: 'GroupId',
|
|
10541
|
-
securityToken: 'SecurityToken',
|
|
10542
10618
|
};
|
|
10543
10619
|
}
|
|
10544
10620
|
|
|
@@ -10546,7 +10622,6 @@ export class ReactivateDomainRequest extends $tea.Model {
|
|
|
10546
10622
|
return {
|
|
10547
10623
|
domainName: 'string',
|
|
10548
10624
|
groupId: 'string',
|
|
10549
|
-
securityToken: 'string',
|
|
10550
10625
|
};
|
|
10551
10626
|
}
|
|
10552
10627
|
|
|
@@ -10602,12 +10677,10 @@ export class ReactivateDomainResponse extends $tea.Model {
|
|
|
10602
10677
|
export class RemoveAccessControlListEntryRequest extends $tea.Model {
|
|
10603
10678
|
aclEntrys?: string;
|
|
10604
10679
|
aclId?: string;
|
|
10605
|
-
securityToken?: string;
|
|
10606
10680
|
static names(): { [key: string]: string } {
|
|
10607
10681
|
return {
|
|
10608
10682
|
aclEntrys: 'AclEntrys',
|
|
10609
10683
|
aclId: 'AclId',
|
|
10610
|
-
securityToken: 'SecurityToken',
|
|
10611
10684
|
};
|
|
10612
10685
|
}
|
|
10613
10686
|
|
|
@@ -10615,7 +10688,6 @@ export class RemoveAccessControlListEntryRequest extends $tea.Model {
|
|
|
10615
10688
|
return {
|
|
10616
10689
|
aclEntrys: 'string',
|
|
10617
10690
|
aclId: 'string',
|
|
10618
|
-
securityToken: 'string',
|
|
10619
10691
|
};
|
|
10620
10692
|
}
|
|
10621
10693
|
|
|
@@ -10673,7 +10745,6 @@ export class RemoveApisAuthoritiesRequest extends $tea.Model {
|
|
|
10673
10745
|
appId?: number;
|
|
10674
10746
|
description?: string;
|
|
10675
10747
|
groupId?: string;
|
|
10676
|
-
securityToken?: string;
|
|
10677
10748
|
stageName?: string;
|
|
10678
10749
|
static names(): { [key: string]: string } {
|
|
10679
10750
|
return {
|
|
@@ -10681,7 +10752,6 @@ export class RemoveApisAuthoritiesRequest extends $tea.Model {
|
|
|
10681
10752
|
appId: 'AppId',
|
|
10682
10753
|
description: 'Description',
|
|
10683
10754
|
groupId: 'GroupId',
|
|
10684
|
-
securityToken: 'SecurityToken',
|
|
10685
10755
|
stageName: 'StageName',
|
|
10686
10756
|
};
|
|
10687
10757
|
}
|
|
@@ -10692,7 +10762,6 @@ export class RemoveApisAuthoritiesRequest extends $tea.Model {
|
|
|
10692
10762
|
appId: 'number',
|
|
10693
10763
|
description: 'string',
|
|
10694
10764
|
groupId: 'string',
|
|
10695
|
-
securityToken: 'string',
|
|
10696
10765
|
stageName: 'string',
|
|
10697
10766
|
};
|
|
10698
10767
|
}
|
|
@@ -10899,12 +10968,10 @@ export class RemoveIpControlApisResponse extends $tea.Model {
|
|
|
10899
10968
|
export class RemoveIpControlPolicyItemRequest extends $tea.Model {
|
|
10900
10969
|
ipControlId?: string;
|
|
10901
10970
|
policyItemIds?: string;
|
|
10902
|
-
securityToken?: string;
|
|
10903
10971
|
static names(): { [key: string]: string } {
|
|
10904
10972
|
return {
|
|
10905
10973
|
ipControlId: 'IpControlId',
|
|
10906
10974
|
policyItemIds: 'PolicyItemIds',
|
|
10907
|
-
securityToken: 'SecurityToken',
|
|
10908
10975
|
};
|
|
10909
10976
|
}
|
|
10910
10977
|
|
|
@@ -10912,7 +10979,6 @@ export class RemoveIpControlPolicyItemRequest extends $tea.Model {
|
|
|
10912
10979
|
return {
|
|
10913
10980
|
ipControlId: 'string',
|
|
10914
10981
|
policyItemIds: 'string',
|
|
10915
|
-
securityToken: 'string',
|
|
10916
10982
|
};
|
|
10917
10983
|
}
|
|
10918
10984
|
|
|
@@ -10968,14 +11034,12 @@ export class RemoveIpControlPolicyItemResponse extends $tea.Model {
|
|
|
10968
11034
|
export class RemoveSignatureApisRequest extends $tea.Model {
|
|
10969
11035
|
apiIds?: string;
|
|
10970
11036
|
groupId?: string;
|
|
10971
|
-
securityToken?: string;
|
|
10972
11037
|
signatureId?: string;
|
|
10973
11038
|
stageName?: string;
|
|
10974
11039
|
static names(): { [key: string]: string } {
|
|
10975
11040
|
return {
|
|
10976
11041
|
apiIds: 'ApiIds',
|
|
10977
11042
|
groupId: 'GroupId',
|
|
10978
|
-
securityToken: 'SecurityToken',
|
|
10979
11043
|
signatureId: 'SignatureId',
|
|
10980
11044
|
stageName: 'StageName',
|
|
10981
11045
|
};
|
|
@@ -10985,7 +11049,6 @@ export class RemoveSignatureApisRequest extends $tea.Model {
|
|
|
10985
11049
|
return {
|
|
10986
11050
|
apiIds: 'string',
|
|
10987
11051
|
groupId: 'string',
|
|
10988
|
-
securityToken: 'string',
|
|
10989
11052
|
signatureId: 'string',
|
|
10990
11053
|
stageName: 'string',
|
|
10991
11054
|
};
|
|
@@ -11043,14 +11106,12 @@ export class RemoveSignatureApisResponse extends $tea.Model {
|
|
|
11043
11106
|
export class RemoveTrafficControlApisRequest extends $tea.Model {
|
|
11044
11107
|
apiIds?: string;
|
|
11045
11108
|
groupId?: string;
|
|
11046
|
-
securityToken?: string;
|
|
11047
11109
|
stageName?: string;
|
|
11048
11110
|
trafficControlId?: string;
|
|
11049
11111
|
static names(): { [key: string]: string } {
|
|
11050
11112
|
return {
|
|
11051
11113
|
apiIds: 'ApiIds',
|
|
11052
11114
|
groupId: 'GroupId',
|
|
11053
|
-
securityToken: 'SecurityToken',
|
|
11054
11115
|
stageName: 'StageName',
|
|
11055
11116
|
trafficControlId: 'TrafficControlId',
|
|
11056
11117
|
};
|
|
@@ -11060,7 +11121,6 @@ export class RemoveTrafficControlApisRequest extends $tea.Model {
|
|
|
11060
11121
|
return {
|
|
11061
11122
|
apiIds: 'string',
|
|
11062
11123
|
groupId: 'string',
|
|
11063
|
-
securityToken: 'string',
|
|
11064
11124
|
stageName: 'string',
|
|
11065
11125
|
trafficControlId: 'string',
|
|
11066
11126
|
};
|
|
@@ -12189,14 +12249,12 @@ export class SetIpControlApisResponse extends $tea.Model {
|
|
|
12189
12249
|
export class SetSignatureApisRequest extends $tea.Model {
|
|
12190
12250
|
apiIds?: string;
|
|
12191
12251
|
groupId?: string;
|
|
12192
|
-
securityToken?: string;
|
|
12193
12252
|
signatureId?: string;
|
|
12194
12253
|
stageName?: string;
|
|
12195
12254
|
static names(): { [key: string]: string } {
|
|
12196
12255
|
return {
|
|
12197
12256
|
apiIds: 'ApiIds',
|
|
12198
12257
|
groupId: 'GroupId',
|
|
12199
|
-
securityToken: 'SecurityToken',
|
|
12200
12258
|
signatureId: 'SignatureId',
|
|
12201
12259
|
stageName: 'StageName',
|
|
12202
12260
|
};
|
|
@@ -12206,7 +12264,6 @@ export class SetSignatureApisRequest extends $tea.Model {
|
|
|
12206
12264
|
return {
|
|
12207
12265
|
apiIds: 'string',
|
|
12208
12266
|
groupId: 'string',
|
|
12209
|
-
securityToken: 'string',
|
|
12210
12267
|
signatureId: 'string',
|
|
12211
12268
|
stageName: 'string',
|
|
12212
12269
|
};
|
|
@@ -12264,14 +12321,12 @@ export class SetSignatureApisResponse extends $tea.Model {
|
|
|
12264
12321
|
export class SetTrafficControlApisRequest extends $tea.Model {
|
|
12265
12322
|
apiIds?: string;
|
|
12266
12323
|
groupId?: string;
|
|
12267
|
-
securityToken?: string;
|
|
12268
12324
|
stageName?: string;
|
|
12269
12325
|
trafficControlId?: string;
|
|
12270
12326
|
static names(): { [key: string]: string } {
|
|
12271
12327
|
return {
|
|
12272
12328
|
apiIds: 'ApiIds',
|
|
12273
12329
|
groupId: 'GroupId',
|
|
12274
|
-
securityToken: 'SecurityToken',
|
|
12275
12330
|
stageName: 'StageName',
|
|
12276
12331
|
trafficControlId: 'TrafficControlId',
|
|
12277
12332
|
};
|
|
@@ -12281,7 +12336,6 @@ export class SetTrafficControlApisRequest extends $tea.Model {
|
|
|
12281
12336
|
return {
|
|
12282
12337
|
apiIds: 'string',
|
|
12283
12338
|
groupId: 'string',
|
|
12284
|
-
securityToken: 'string',
|
|
12285
12339
|
stageName: 'string',
|
|
12286
12340
|
trafficControlId: 'string',
|
|
12287
12341
|
};
|
|
@@ -12420,13 +12474,11 @@ export class SetVpcAccessResponse extends $tea.Model {
|
|
|
12420
12474
|
export class SetWildcardDomainPatternsRequest extends $tea.Model {
|
|
12421
12475
|
domainName?: string;
|
|
12422
12476
|
groupId?: string;
|
|
12423
|
-
securityToken?: string;
|
|
12424
12477
|
wildcardDomainPatterns?: string;
|
|
12425
12478
|
static names(): { [key: string]: string } {
|
|
12426
12479
|
return {
|
|
12427
12480
|
domainName: 'DomainName',
|
|
12428
12481
|
groupId: 'GroupId',
|
|
12429
|
-
securityToken: 'SecurityToken',
|
|
12430
12482
|
wildcardDomainPatterns: 'WildcardDomainPatterns',
|
|
12431
12483
|
};
|
|
12432
12484
|
}
|
|
@@ -12435,7 +12487,6 @@ export class SetWildcardDomainPatternsRequest extends $tea.Model {
|
|
|
12435
12487
|
return {
|
|
12436
12488
|
domainName: 'string',
|
|
12437
12489
|
groupId: 'string',
|
|
12438
|
-
securityToken: 'string',
|
|
12439
12490
|
wildcardDomainPatterns: 'string',
|
|
12440
12491
|
};
|
|
12441
12492
|
}
|
|
@@ -15591,7 +15642,9 @@ export class DescribeApisRequestTag extends $tea.Model {
|
|
|
15591
15642
|
|
|
15592
15643
|
export class DescribeApisResponseBodyApiSummarysApiSummary extends $tea.Model {
|
|
15593
15644
|
apiId?: string;
|
|
15645
|
+
apiMethod?: string;
|
|
15594
15646
|
apiName?: string;
|
|
15647
|
+
apiPath?: string;
|
|
15595
15648
|
createdTime?: string;
|
|
15596
15649
|
description?: string;
|
|
15597
15650
|
groupId?: string;
|
|
@@ -15602,7 +15655,9 @@ export class DescribeApisResponseBodyApiSummarysApiSummary extends $tea.Model {
|
|
|
15602
15655
|
static names(): { [key: string]: string } {
|
|
15603
15656
|
return {
|
|
15604
15657
|
apiId: 'ApiId',
|
|
15658
|
+
apiMethod: 'ApiMethod',
|
|
15605
15659
|
apiName: 'ApiName',
|
|
15660
|
+
apiPath: 'ApiPath',
|
|
15606
15661
|
createdTime: 'CreatedTime',
|
|
15607
15662
|
description: 'Description',
|
|
15608
15663
|
groupId: 'GroupId',
|
|
@@ -15616,7 +15671,9 @@ export class DescribeApisResponseBodyApiSummarysApiSummary extends $tea.Model {
|
|
|
15616
15671
|
static types(): { [key: string]: any } {
|
|
15617
15672
|
return {
|
|
15618
15673
|
apiId: 'string',
|
|
15674
|
+
apiMethod: 'string',
|
|
15619
15675
|
apiName: 'string',
|
|
15676
|
+
apiPath: 'string',
|
|
15620
15677
|
createdTime: 'string',
|
|
15621
15678
|
description: 'string',
|
|
15622
15679
|
groupId: 'string',
|
|
@@ -16373,6 +16430,7 @@ export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfi
|
|
|
16373
16430
|
vpcAccessId?: string;
|
|
16374
16431
|
vpcId?: string;
|
|
16375
16432
|
vpcScheme?: string;
|
|
16433
|
+
vpcTargetHostName?: string;
|
|
16376
16434
|
static names(): { [key: string]: string } {
|
|
16377
16435
|
return {
|
|
16378
16436
|
instanceId: 'InstanceId',
|
|
@@ -16381,6 +16439,7 @@ export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfi
|
|
|
16381
16439
|
vpcAccessId: 'VpcAccessId',
|
|
16382
16440
|
vpcId: 'VpcId',
|
|
16383
16441
|
vpcScheme: 'VpcScheme',
|
|
16442
|
+
vpcTargetHostName: 'VpcTargetHostName',
|
|
16384
16443
|
};
|
|
16385
16444
|
}
|
|
16386
16445
|
|
|
@@ -16392,6 +16451,7 @@ export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfi
|
|
|
16392
16451
|
vpcAccessId: 'string',
|
|
16393
16452
|
vpcId: 'string',
|
|
16394
16453
|
vpcScheme: 'string',
|
|
16454
|
+
vpcTargetHostName: 'string',
|
|
16395
16455
|
};
|
|
16396
16456
|
}
|
|
16397
16457
|
|
|
@@ -17278,7 +17338,9 @@ export class DescribeDeployedApisRequestTag extends $tea.Model {
|
|
|
17278
17338
|
|
|
17279
17339
|
export class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem extends $tea.Model {
|
|
17280
17340
|
apiId?: string;
|
|
17341
|
+
apiMethod?: string;
|
|
17281
17342
|
apiName?: string;
|
|
17343
|
+
apiPath?: string;
|
|
17282
17344
|
deployedTime?: string;
|
|
17283
17345
|
description?: string;
|
|
17284
17346
|
groupId?: string;
|
|
@@ -17289,7 +17351,9 @@ export class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem extends
|
|
|
17289
17351
|
static names(): { [key: string]: string } {
|
|
17290
17352
|
return {
|
|
17291
17353
|
apiId: 'ApiId',
|
|
17354
|
+
apiMethod: 'ApiMethod',
|
|
17292
17355
|
apiName: 'ApiName',
|
|
17356
|
+
apiPath: 'ApiPath',
|
|
17293
17357
|
deployedTime: 'DeployedTime',
|
|
17294
17358
|
description: 'Description',
|
|
17295
17359
|
groupId: 'GroupId',
|
|
@@ -17303,7 +17367,9 @@ export class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem extends
|
|
|
17303
17367
|
static types(): { [key: string]: any } {
|
|
17304
17368
|
return {
|
|
17305
17369
|
apiId: 'string',
|
|
17370
|
+
apiMethod: 'string',
|
|
17306
17371
|
apiName: 'string',
|
|
17372
|
+
apiPath: 'string',
|
|
17307
17373
|
deployedTime: 'string',
|
|
17308
17374
|
description: 'string',
|
|
17309
17375
|
groupId: 'string',
|
|
@@ -17473,6 +17539,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $te
|
|
|
17473
17539
|
aclType?: string;
|
|
17474
17540
|
classicEgressAddress?: string;
|
|
17475
17541
|
createdTime?: string;
|
|
17542
|
+
egressAddressChangeNotify?: boolean;
|
|
17476
17543
|
egressIpv6Enable?: boolean;
|
|
17477
17544
|
expiredTime?: string;
|
|
17478
17545
|
httpsPolicies?: string;
|
|
@@ -17504,6 +17571,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $te
|
|
|
17504
17571
|
aclType: 'AclType',
|
|
17505
17572
|
classicEgressAddress: 'ClassicEgressAddress',
|
|
17506
17573
|
createdTime: 'CreatedTime',
|
|
17574
|
+
egressAddressChangeNotify: 'EgressAddressChangeNotify',
|
|
17507
17575
|
egressIpv6Enable: 'EgressIpv6Enable',
|
|
17508
17576
|
expiredTime: 'ExpiredTime',
|
|
17509
17577
|
httpsPolicies: 'HttpsPolicies',
|
|
@@ -17538,6 +17606,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $te
|
|
|
17538
17606
|
aclType: 'string',
|
|
17539
17607
|
classicEgressAddress: 'string',
|
|
17540
17608
|
createdTime: 'string',
|
|
17609
|
+
egressAddressChangeNotify: 'boolean',
|
|
17541
17610
|
egressIpv6Enable: 'boolean',
|
|
17542
17611
|
expiredTime: 'string',
|
|
17543
17612
|
httpsPolicies: 'string',
|
|
@@ -22069,10 +22138,18 @@ export default class Client extends OpenApi {
|
|
|
22069
22138
|
query["ApiId"] = request.apiId;
|
|
22070
22139
|
}
|
|
22071
22140
|
|
|
22141
|
+
if (!Util.isUnset(request.apiMethod)) {
|
|
22142
|
+
query["ApiMethod"] = request.apiMethod;
|
|
22143
|
+
}
|
|
22144
|
+
|
|
22072
22145
|
if (!Util.isUnset(request.apiName)) {
|
|
22073
22146
|
query["ApiName"] = request.apiName;
|
|
22074
22147
|
}
|
|
22075
22148
|
|
|
22149
|
+
if (!Util.isUnset(request.apiPath)) {
|
|
22150
|
+
query["ApiPath"] = request.apiPath;
|
|
22151
|
+
}
|
|
22152
|
+
|
|
22076
22153
|
if (!Util.isUnset(request.catalogId)) {
|
|
22077
22154
|
query["CatalogId"] = request.catalogId;
|
|
22078
22155
|
}
|
|
@@ -22101,6 +22178,10 @@ export default class Client extends OpenApi {
|
|
|
22101
22178
|
query["Tag"] = request.tag;
|
|
22102
22179
|
}
|
|
22103
22180
|
|
|
22181
|
+
if (!Util.isUnset(request.unDeployed)) {
|
|
22182
|
+
query["UnDeployed"] = request.unDeployed;
|
|
22183
|
+
}
|
|
22184
|
+
|
|
22104
22185
|
if (!Util.isUnset(request.visibility)) {
|
|
22105
22186
|
query["Visibility"] = request.visibility;
|
|
22106
22187
|
}
|
|
@@ -22797,10 +22878,18 @@ export default class Client extends OpenApi {
|
|
|
22797
22878
|
query["ApiId"] = request.apiId;
|
|
22798
22879
|
}
|
|
22799
22880
|
|
|
22881
|
+
if (!Util.isUnset(request.apiMethod)) {
|
|
22882
|
+
query["ApiMethod"] = request.apiMethod;
|
|
22883
|
+
}
|
|
22884
|
+
|
|
22800
22885
|
if (!Util.isUnset(request.apiName)) {
|
|
22801
22886
|
query["ApiName"] = request.apiName;
|
|
22802
22887
|
}
|
|
22803
22888
|
|
|
22889
|
+
if (!Util.isUnset(request.apiPath)) {
|
|
22890
|
+
query["ApiPath"] = request.apiPath;
|
|
22891
|
+
}
|
|
22892
|
+
|
|
22804
22893
|
if (!Util.isUnset(request.enableTagAuth)) {
|
|
22805
22894
|
query["EnableTagAuth"] = request.enableTagAuth;
|
|
22806
22895
|
}
|
|
@@ -23698,10 +23787,6 @@ export default class Client extends OpenApi {
|
|
|
23698
23787
|
query["GroupId"] = request.groupId;
|
|
23699
23788
|
}
|
|
23700
23789
|
|
|
23701
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
23702
|
-
query["SecurityToken"] = request.securityToken;
|
|
23703
|
-
}
|
|
23704
|
-
|
|
23705
23790
|
if (!Util.isUnset(request.stageName)) {
|
|
23706
23791
|
query["StageName"] = request.stageName;
|
|
23707
23792
|
}
|
|
@@ -23735,10 +23820,6 @@ export default class Client extends OpenApi {
|
|
|
23735
23820
|
query["OperationUid"] = request.operationUid;
|
|
23736
23821
|
}
|
|
23737
23822
|
|
|
23738
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
23739
|
-
query["SecurityToken"] = request.securityToken;
|
|
23740
|
-
}
|
|
23741
|
-
|
|
23742
23823
|
let req = new $OpenApi.OpenApiRequest({
|
|
23743
23824
|
query: OpenApiUtil.query(query),
|
|
23744
23825
|
});
|
|
@@ -23768,10 +23849,6 @@ export default class Client extends OpenApi {
|
|
|
23768
23849
|
query["OperationUid"] = request.operationUid;
|
|
23769
23850
|
}
|
|
23770
23851
|
|
|
23771
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
23772
|
-
query["SecurityToken"] = request.securityToken;
|
|
23773
|
-
}
|
|
23774
|
-
|
|
23775
23852
|
let req = new $OpenApi.OpenApiRequest({
|
|
23776
23853
|
query: OpenApiUtil.query(query),
|
|
23777
23854
|
});
|
|
@@ -23940,10 +24017,6 @@ export default class Client extends OpenApi {
|
|
|
23940
24017
|
query["InstanceId"] = request.instanceId;
|
|
23941
24018
|
}
|
|
23942
24019
|
|
|
23943
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
23944
|
-
query["SecurityToken"] = request.securityToken;
|
|
23945
|
-
}
|
|
23946
|
-
|
|
23947
24020
|
let req = new $OpenApi.OpenApiRequest({
|
|
23948
24021
|
query: OpenApiUtil.query(query),
|
|
23949
24022
|
});
|
|
@@ -24038,10 +24111,6 @@ export default class Client extends OpenApi {
|
|
|
24038
24111
|
query["InstanceId"] = request.instanceId;
|
|
24039
24112
|
}
|
|
24040
24113
|
|
|
24041
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
24042
|
-
query["SecurityToken"] = request.securityToken;
|
|
24043
|
-
}
|
|
24044
|
-
|
|
24045
24114
|
let req = new $OpenApi.OpenApiRequest({
|
|
24046
24115
|
query: OpenApiUtil.query(query),
|
|
24047
24116
|
});
|
|
@@ -24549,6 +24618,59 @@ export default class Client extends OpenApi {
|
|
|
24549
24618
|
return await this.modifyApiGroupWithOptions(request, runtime);
|
|
24550
24619
|
}
|
|
24551
24620
|
|
|
24621
|
+
async modifyApiGroupNetworkPolicyWithOptions(request: ModifyApiGroupNetworkPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupNetworkPolicyResponse> {
|
|
24622
|
+
Util.validateModel(request);
|
|
24623
|
+
let query = { };
|
|
24624
|
+
if (!Util.isUnset(request.groupId)) {
|
|
24625
|
+
query["GroupId"] = request.groupId;
|
|
24626
|
+
}
|
|
24627
|
+
|
|
24628
|
+
if (!Util.isUnset(request.httpsPolicy)) {
|
|
24629
|
+
query["HttpsPolicy"] = request.httpsPolicy;
|
|
24630
|
+
}
|
|
24631
|
+
|
|
24632
|
+
if (!Util.isUnset(request.internetEnable)) {
|
|
24633
|
+
query["InternetEnable"] = request.internetEnable;
|
|
24634
|
+
}
|
|
24635
|
+
|
|
24636
|
+
if (!Util.isUnset(request.internetIPV6Enable)) {
|
|
24637
|
+
query["InternetIPV6Enable"] = request.internetIPV6Enable;
|
|
24638
|
+
}
|
|
24639
|
+
|
|
24640
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
24641
|
+
query["SecurityToken"] = request.securityToken;
|
|
24642
|
+
}
|
|
24643
|
+
|
|
24644
|
+
if (!Util.isUnset(request.vpcIntranetEnable)) {
|
|
24645
|
+
query["VpcIntranetEnable"] = request.vpcIntranetEnable;
|
|
24646
|
+
}
|
|
24647
|
+
|
|
24648
|
+
if (!Util.isUnset(request.vpcSlbIntranetEnable)) {
|
|
24649
|
+
query["VpcSlbIntranetEnable"] = request.vpcSlbIntranetEnable;
|
|
24650
|
+
}
|
|
24651
|
+
|
|
24652
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
24653
|
+
query: OpenApiUtil.query(query),
|
|
24654
|
+
});
|
|
24655
|
+
let params = new $OpenApi.Params({
|
|
24656
|
+
action: "ModifyApiGroupNetworkPolicy",
|
|
24657
|
+
version: "2016-07-14",
|
|
24658
|
+
protocol: "HTTPS",
|
|
24659
|
+
pathname: "/",
|
|
24660
|
+
method: "POST",
|
|
24661
|
+
authType: "AK",
|
|
24662
|
+
style: "RPC",
|
|
24663
|
+
reqBodyType: "formData",
|
|
24664
|
+
bodyType: "json",
|
|
24665
|
+
});
|
|
24666
|
+
return $tea.cast<ModifyApiGroupNetworkPolicyResponse>(await this.callApi(params, req, runtime), new ModifyApiGroupNetworkPolicyResponse({}));
|
|
24667
|
+
}
|
|
24668
|
+
|
|
24669
|
+
async modifyApiGroupNetworkPolicy(request: ModifyApiGroupNetworkPolicyRequest): Promise<ModifyApiGroupNetworkPolicyResponse> {
|
|
24670
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
24671
|
+
return await this.modifyApiGroupNetworkPolicyWithOptions(request, runtime);
|
|
24672
|
+
}
|
|
24673
|
+
|
|
24552
24674
|
async modifyApiGroupVpcWhitelistWithOptions(request: ModifyApiGroupVpcWhitelistRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupVpcWhitelistResponse> {
|
|
24553
24675
|
Util.validateModel(request);
|
|
24554
24676
|
let query = { };
|
|
@@ -24748,6 +24870,10 @@ export default class Client extends OpenApi {
|
|
|
24748
24870
|
query["ModifyAction"] = request.modifyAction;
|
|
24749
24871
|
}
|
|
24750
24872
|
|
|
24873
|
+
if (!Util.isUnset(request.skipWaitSwitch)) {
|
|
24874
|
+
query["SkipWaitSwitch"] = request.skipWaitSwitch;
|
|
24875
|
+
}
|
|
24876
|
+
|
|
24751
24877
|
if (!Util.isUnset(request.token)) {
|
|
24752
24878
|
query["Token"] = request.token;
|
|
24753
24879
|
}
|
|
@@ -24789,10 +24915,6 @@ export default class Client extends OpenApi {
|
|
|
24789
24915
|
query["IpControlName"] = request.ipControlName;
|
|
24790
24916
|
}
|
|
24791
24917
|
|
|
24792
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
24793
|
-
query["SecurityToken"] = request.securityToken;
|
|
24794
|
-
}
|
|
24795
|
-
|
|
24796
24918
|
let req = new $OpenApi.OpenApiRequest({
|
|
24797
24919
|
query: OpenApiUtil.query(query),
|
|
24798
24920
|
});
|
|
@@ -24998,10 +25120,6 @@ export default class Client extends OpenApi {
|
|
|
24998
25120
|
async modifySignatureWithOptions(request: ModifySignatureRequest, runtime: $Util.RuntimeOptions): Promise<ModifySignatureResponse> {
|
|
24999
25121
|
Util.validateModel(request);
|
|
25000
25122
|
let query = { };
|
|
25001
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25002
|
-
query["SecurityToken"] = request.securityToken;
|
|
25003
|
-
}
|
|
25004
|
-
|
|
25005
25123
|
if (!Util.isUnset(request.signatureId)) {
|
|
25006
25124
|
query["SignatureId"] = request.signatureId;
|
|
25007
25125
|
}
|
|
@@ -25055,10 +25173,6 @@ export default class Client extends OpenApi {
|
|
|
25055
25173
|
query["Description"] = request.description;
|
|
25056
25174
|
}
|
|
25057
25175
|
|
|
25058
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25059
|
-
query["SecurityToken"] = request.securityToken;
|
|
25060
|
-
}
|
|
25061
|
-
|
|
25062
25176
|
if (!Util.isUnset(request.trafficControlId)) {
|
|
25063
25177
|
query["TrafficControlId"] = request.trafficControlId;
|
|
25064
25178
|
}
|
|
@@ -25129,10 +25243,6 @@ export default class Client extends OpenApi {
|
|
|
25129
25243
|
query["GroupId"] = request.groupId;
|
|
25130
25244
|
}
|
|
25131
25245
|
|
|
25132
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25133
|
-
query["SecurityToken"] = request.securityToken;
|
|
25134
|
-
}
|
|
25135
|
-
|
|
25136
25246
|
let req = new $OpenApi.OpenApiRequest({
|
|
25137
25247
|
query: OpenApiUtil.query(query),
|
|
25138
25248
|
});
|
|
@@ -25166,10 +25276,6 @@ export default class Client extends OpenApi {
|
|
|
25166
25276
|
query["AclId"] = request.aclId;
|
|
25167
25277
|
}
|
|
25168
25278
|
|
|
25169
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25170
|
-
query["SecurityToken"] = request.securityToken;
|
|
25171
|
-
}
|
|
25172
|
-
|
|
25173
25279
|
let req = new $OpenApi.OpenApiRequest({
|
|
25174
25280
|
query: OpenApiUtil.query(query),
|
|
25175
25281
|
});
|
|
@@ -25211,10 +25317,6 @@ export default class Client extends OpenApi {
|
|
|
25211
25317
|
query["GroupId"] = request.groupId;
|
|
25212
25318
|
}
|
|
25213
25319
|
|
|
25214
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25215
|
-
query["SecurityToken"] = request.securityToken;
|
|
25216
|
-
}
|
|
25217
|
-
|
|
25218
25320
|
if (!Util.isUnset(request.stageName)) {
|
|
25219
25321
|
query["StageName"] = request.stageName;
|
|
25220
25322
|
}
|
|
@@ -25342,10 +25444,6 @@ export default class Client extends OpenApi {
|
|
|
25342
25444
|
query["PolicyItemIds"] = request.policyItemIds;
|
|
25343
25445
|
}
|
|
25344
25446
|
|
|
25345
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25346
|
-
query["SecurityToken"] = request.securityToken;
|
|
25347
|
-
}
|
|
25348
|
-
|
|
25349
25447
|
let req = new $OpenApi.OpenApiRequest({
|
|
25350
25448
|
query: OpenApiUtil.query(query),
|
|
25351
25449
|
});
|
|
@@ -25379,10 +25477,6 @@ export default class Client extends OpenApi {
|
|
|
25379
25477
|
query["GroupId"] = request.groupId;
|
|
25380
25478
|
}
|
|
25381
25479
|
|
|
25382
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25383
|
-
query["SecurityToken"] = request.securityToken;
|
|
25384
|
-
}
|
|
25385
|
-
|
|
25386
25480
|
if (!Util.isUnset(request.signatureId)) {
|
|
25387
25481
|
query["SignatureId"] = request.signatureId;
|
|
25388
25482
|
}
|
|
@@ -25424,10 +25518,6 @@ export default class Client extends OpenApi {
|
|
|
25424
25518
|
query["GroupId"] = request.groupId;
|
|
25425
25519
|
}
|
|
25426
25520
|
|
|
25427
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25428
|
-
query["SecurityToken"] = request.securityToken;
|
|
25429
|
-
}
|
|
25430
|
-
|
|
25431
25521
|
if (!Util.isUnset(request.stageName)) {
|
|
25432
25522
|
query["StageName"] = request.stageName;
|
|
25433
25523
|
}
|
|
@@ -26079,10 +26169,6 @@ export default class Client extends OpenApi {
|
|
|
26079
26169
|
query["GroupId"] = request.groupId;
|
|
26080
26170
|
}
|
|
26081
26171
|
|
|
26082
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
26083
|
-
query["SecurityToken"] = request.securityToken;
|
|
26084
|
-
}
|
|
26085
|
-
|
|
26086
26172
|
if (!Util.isUnset(request.signatureId)) {
|
|
26087
26173
|
query["SignatureId"] = request.signatureId;
|
|
26088
26174
|
}
|
|
@@ -26124,10 +26210,6 @@ export default class Client extends OpenApi {
|
|
|
26124
26210
|
query["GroupId"] = request.groupId;
|
|
26125
26211
|
}
|
|
26126
26212
|
|
|
26127
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
26128
|
-
query["SecurityToken"] = request.securityToken;
|
|
26129
|
-
}
|
|
26130
|
-
|
|
26131
26213
|
if (!Util.isUnset(request.stageName)) {
|
|
26132
26214
|
query["StageName"] = request.stageName;
|
|
26133
26215
|
}
|
|
@@ -26222,10 +26304,6 @@ export default class Client extends OpenApi {
|
|
|
26222
26304
|
query["GroupId"] = request.groupId;
|
|
26223
26305
|
}
|
|
26224
26306
|
|
|
26225
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
26226
|
-
query["SecurityToken"] = request.securityToken;
|
|
26227
|
-
}
|
|
26228
|
-
|
|
26229
26307
|
if (!Util.isUnset(request.wildcardDomainPatterns)) {
|
|
26230
26308
|
query["WildcardDomainPatterns"] = request.wildcardDomainPatterns;
|
|
26231
26309
|
}
|