@alicloud/cloudapi20160714 2.2.3 → 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 +62 -17
- package/dist/client.js +154 -85
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +200 -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
|
}
|
|
@@ -12718,11 +12769,13 @@ export class BatchAbolishApisRequestApi extends $tea.Model {
|
|
|
12718
12769
|
apiUid?: string;
|
|
12719
12770
|
groupId?: string;
|
|
12720
12771
|
stageId?: string;
|
|
12772
|
+
stageName?: string;
|
|
12721
12773
|
static names(): { [key: string]: string } {
|
|
12722
12774
|
return {
|
|
12723
12775
|
apiUid: 'ApiUid',
|
|
12724
12776
|
groupId: 'GroupId',
|
|
12725
12777
|
stageId: 'StageId',
|
|
12778
|
+
stageName: 'StageName',
|
|
12726
12779
|
};
|
|
12727
12780
|
}
|
|
12728
12781
|
|
|
@@ -12731,6 +12784,7 @@ export class BatchAbolishApisRequestApi extends $tea.Model {
|
|
|
12731
12784
|
apiUid: 'string',
|
|
12732
12785
|
groupId: 'string',
|
|
12733
12786
|
stageId: 'string',
|
|
12787
|
+
stageName: 'string',
|
|
12734
12788
|
};
|
|
12735
12789
|
}
|
|
12736
12790
|
|
|
@@ -15588,7 +15642,9 @@ export class DescribeApisRequestTag extends $tea.Model {
|
|
|
15588
15642
|
|
|
15589
15643
|
export class DescribeApisResponseBodyApiSummarysApiSummary extends $tea.Model {
|
|
15590
15644
|
apiId?: string;
|
|
15645
|
+
apiMethod?: string;
|
|
15591
15646
|
apiName?: string;
|
|
15647
|
+
apiPath?: string;
|
|
15592
15648
|
createdTime?: string;
|
|
15593
15649
|
description?: string;
|
|
15594
15650
|
groupId?: string;
|
|
@@ -15599,7 +15655,9 @@ export class DescribeApisResponseBodyApiSummarysApiSummary extends $tea.Model {
|
|
|
15599
15655
|
static names(): { [key: string]: string } {
|
|
15600
15656
|
return {
|
|
15601
15657
|
apiId: 'ApiId',
|
|
15658
|
+
apiMethod: 'ApiMethod',
|
|
15602
15659
|
apiName: 'ApiName',
|
|
15660
|
+
apiPath: 'ApiPath',
|
|
15603
15661
|
createdTime: 'CreatedTime',
|
|
15604
15662
|
description: 'Description',
|
|
15605
15663
|
groupId: 'GroupId',
|
|
@@ -15613,7 +15671,9 @@ export class DescribeApisResponseBodyApiSummarysApiSummary extends $tea.Model {
|
|
|
15613
15671
|
static types(): { [key: string]: any } {
|
|
15614
15672
|
return {
|
|
15615
15673
|
apiId: 'string',
|
|
15674
|
+
apiMethod: 'string',
|
|
15616
15675
|
apiName: 'string',
|
|
15676
|
+
apiPath: 'string',
|
|
15617
15677
|
createdTime: 'string',
|
|
15618
15678
|
description: 'string',
|
|
15619
15679
|
groupId: 'string',
|
|
@@ -16370,6 +16430,7 @@ export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfi
|
|
|
16370
16430
|
vpcAccessId?: string;
|
|
16371
16431
|
vpcId?: string;
|
|
16372
16432
|
vpcScheme?: string;
|
|
16433
|
+
vpcTargetHostName?: string;
|
|
16373
16434
|
static names(): { [key: string]: string } {
|
|
16374
16435
|
return {
|
|
16375
16436
|
instanceId: 'InstanceId',
|
|
@@ -16378,6 +16439,7 @@ export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfi
|
|
|
16378
16439
|
vpcAccessId: 'VpcAccessId',
|
|
16379
16440
|
vpcId: 'VpcId',
|
|
16380
16441
|
vpcScheme: 'VpcScheme',
|
|
16442
|
+
vpcTargetHostName: 'VpcTargetHostName',
|
|
16381
16443
|
};
|
|
16382
16444
|
}
|
|
16383
16445
|
|
|
@@ -16389,6 +16451,7 @@ export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfi
|
|
|
16389
16451
|
vpcAccessId: 'string',
|
|
16390
16452
|
vpcId: 'string',
|
|
16391
16453
|
vpcScheme: 'string',
|
|
16454
|
+
vpcTargetHostName: 'string',
|
|
16392
16455
|
};
|
|
16393
16456
|
}
|
|
16394
16457
|
|
|
@@ -17275,7 +17338,9 @@ export class DescribeDeployedApisRequestTag extends $tea.Model {
|
|
|
17275
17338
|
|
|
17276
17339
|
export class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem extends $tea.Model {
|
|
17277
17340
|
apiId?: string;
|
|
17341
|
+
apiMethod?: string;
|
|
17278
17342
|
apiName?: string;
|
|
17343
|
+
apiPath?: string;
|
|
17279
17344
|
deployedTime?: string;
|
|
17280
17345
|
description?: string;
|
|
17281
17346
|
groupId?: string;
|
|
@@ -17286,7 +17351,9 @@ export class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem extends
|
|
|
17286
17351
|
static names(): { [key: string]: string } {
|
|
17287
17352
|
return {
|
|
17288
17353
|
apiId: 'ApiId',
|
|
17354
|
+
apiMethod: 'ApiMethod',
|
|
17289
17355
|
apiName: 'ApiName',
|
|
17356
|
+
apiPath: 'ApiPath',
|
|
17290
17357
|
deployedTime: 'DeployedTime',
|
|
17291
17358
|
description: 'Description',
|
|
17292
17359
|
groupId: 'GroupId',
|
|
@@ -17300,7 +17367,9 @@ export class DescribeDeployedApisResponseBodyDeployedApisDeployedApiItem extends
|
|
|
17300
17367
|
static types(): { [key: string]: any } {
|
|
17301
17368
|
return {
|
|
17302
17369
|
apiId: 'string',
|
|
17370
|
+
apiMethod: 'string',
|
|
17303
17371
|
apiName: 'string',
|
|
17372
|
+
apiPath: 'string',
|
|
17304
17373
|
deployedTime: 'string',
|
|
17305
17374
|
description: 'string',
|
|
17306
17375
|
groupId: 'string',
|
|
@@ -17470,6 +17539,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $te
|
|
|
17470
17539
|
aclType?: string;
|
|
17471
17540
|
classicEgressAddress?: string;
|
|
17472
17541
|
createdTime?: string;
|
|
17542
|
+
egressAddressChangeNotify?: boolean;
|
|
17473
17543
|
egressIpv6Enable?: boolean;
|
|
17474
17544
|
expiredTime?: string;
|
|
17475
17545
|
httpsPolicies?: string;
|
|
@@ -17501,6 +17571,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $te
|
|
|
17501
17571
|
aclType: 'AclType',
|
|
17502
17572
|
classicEgressAddress: 'ClassicEgressAddress',
|
|
17503
17573
|
createdTime: 'CreatedTime',
|
|
17574
|
+
egressAddressChangeNotify: 'EgressAddressChangeNotify',
|
|
17504
17575
|
egressIpv6Enable: 'EgressIpv6Enable',
|
|
17505
17576
|
expiredTime: 'ExpiredTime',
|
|
17506
17577
|
httpsPolicies: 'HttpsPolicies',
|
|
@@ -17535,6 +17606,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $te
|
|
|
17535
17606
|
aclType: 'string',
|
|
17536
17607
|
classicEgressAddress: 'string',
|
|
17537
17608
|
createdTime: 'string',
|
|
17609
|
+
egressAddressChangeNotify: 'boolean',
|
|
17538
17610
|
egressIpv6Enable: 'boolean',
|
|
17539
17611
|
expiredTime: 'string',
|
|
17540
17612
|
httpsPolicies: 'string',
|
|
@@ -22066,10 +22138,18 @@ export default class Client extends OpenApi {
|
|
|
22066
22138
|
query["ApiId"] = request.apiId;
|
|
22067
22139
|
}
|
|
22068
22140
|
|
|
22141
|
+
if (!Util.isUnset(request.apiMethod)) {
|
|
22142
|
+
query["ApiMethod"] = request.apiMethod;
|
|
22143
|
+
}
|
|
22144
|
+
|
|
22069
22145
|
if (!Util.isUnset(request.apiName)) {
|
|
22070
22146
|
query["ApiName"] = request.apiName;
|
|
22071
22147
|
}
|
|
22072
22148
|
|
|
22149
|
+
if (!Util.isUnset(request.apiPath)) {
|
|
22150
|
+
query["ApiPath"] = request.apiPath;
|
|
22151
|
+
}
|
|
22152
|
+
|
|
22073
22153
|
if (!Util.isUnset(request.catalogId)) {
|
|
22074
22154
|
query["CatalogId"] = request.catalogId;
|
|
22075
22155
|
}
|
|
@@ -22098,6 +22178,10 @@ export default class Client extends OpenApi {
|
|
|
22098
22178
|
query["Tag"] = request.tag;
|
|
22099
22179
|
}
|
|
22100
22180
|
|
|
22181
|
+
if (!Util.isUnset(request.unDeployed)) {
|
|
22182
|
+
query["UnDeployed"] = request.unDeployed;
|
|
22183
|
+
}
|
|
22184
|
+
|
|
22101
22185
|
if (!Util.isUnset(request.visibility)) {
|
|
22102
22186
|
query["Visibility"] = request.visibility;
|
|
22103
22187
|
}
|
|
@@ -22794,10 +22878,18 @@ export default class Client extends OpenApi {
|
|
|
22794
22878
|
query["ApiId"] = request.apiId;
|
|
22795
22879
|
}
|
|
22796
22880
|
|
|
22881
|
+
if (!Util.isUnset(request.apiMethod)) {
|
|
22882
|
+
query["ApiMethod"] = request.apiMethod;
|
|
22883
|
+
}
|
|
22884
|
+
|
|
22797
22885
|
if (!Util.isUnset(request.apiName)) {
|
|
22798
22886
|
query["ApiName"] = request.apiName;
|
|
22799
22887
|
}
|
|
22800
22888
|
|
|
22889
|
+
if (!Util.isUnset(request.apiPath)) {
|
|
22890
|
+
query["ApiPath"] = request.apiPath;
|
|
22891
|
+
}
|
|
22892
|
+
|
|
22801
22893
|
if (!Util.isUnset(request.enableTagAuth)) {
|
|
22802
22894
|
query["EnableTagAuth"] = request.enableTagAuth;
|
|
22803
22895
|
}
|
|
@@ -23695,10 +23787,6 @@ export default class Client extends OpenApi {
|
|
|
23695
23787
|
query["GroupId"] = request.groupId;
|
|
23696
23788
|
}
|
|
23697
23789
|
|
|
23698
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
23699
|
-
query["SecurityToken"] = request.securityToken;
|
|
23700
|
-
}
|
|
23701
|
-
|
|
23702
23790
|
if (!Util.isUnset(request.stageName)) {
|
|
23703
23791
|
query["StageName"] = request.stageName;
|
|
23704
23792
|
}
|
|
@@ -23732,10 +23820,6 @@ export default class Client extends OpenApi {
|
|
|
23732
23820
|
query["OperationUid"] = request.operationUid;
|
|
23733
23821
|
}
|
|
23734
23822
|
|
|
23735
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
23736
|
-
query["SecurityToken"] = request.securityToken;
|
|
23737
|
-
}
|
|
23738
|
-
|
|
23739
23823
|
let req = new $OpenApi.OpenApiRequest({
|
|
23740
23824
|
query: OpenApiUtil.query(query),
|
|
23741
23825
|
});
|
|
@@ -23765,10 +23849,6 @@ export default class Client extends OpenApi {
|
|
|
23765
23849
|
query["OperationUid"] = request.operationUid;
|
|
23766
23850
|
}
|
|
23767
23851
|
|
|
23768
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
23769
|
-
query["SecurityToken"] = request.securityToken;
|
|
23770
|
-
}
|
|
23771
|
-
|
|
23772
23852
|
let req = new $OpenApi.OpenApiRequest({
|
|
23773
23853
|
query: OpenApiUtil.query(query),
|
|
23774
23854
|
});
|
|
@@ -23937,10 +24017,6 @@ export default class Client extends OpenApi {
|
|
|
23937
24017
|
query["InstanceId"] = request.instanceId;
|
|
23938
24018
|
}
|
|
23939
24019
|
|
|
23940
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
23941
|
-
query["SecurityToken"] = request.securityToken;
|
|
23942
|
-
}
|
|
23943
|
-
|
|
23944
24020
|
let req = new $OpenApi.OpenApiRequest({
|
|
23945
24021
|
query: OpenApiUtil.query(query),
|
|
23946
24022
|
});
|
|
@@ -24035,10 +24111,6 @@ export default class Client extends OpenApi {
|
|
|
24035
24111
|
query["InstanceId"] = request.instanceId;
|
|
24036
24112
|
}
|
|
24037
24113
|
|
|
24038
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
24039
|
-
query["SecurityToken"] = request.securityToken;
|
|
24040
|
-
}
|
|
24041
|
-
|
|
24042
24114
|
let req = new $OpenApi.OpenApiRequest({
|
|
24043
24115
|
query: OpenApiUtil.query(query),
|
|
24044
24116
|
});
|
|
@@ -24546,6 +24618,59 @@ export default class Client extends OpenApi {
|
|
|
24546
24618
|
return await this.modifyApiGroupWithOptions(request, runtime);
|
|
24547
24619
|
}
|
|
24548
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
|
+
|
|
24549
24674
|
async modifyApiGroupVpcWhitelistWithOptions(request: ModifyApiGroupVpcWhitelistRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupVpcWhitelistResponse> {
|
|
24550
24675
|
Util.validateModel(request);
|
|
24551
24676
|
let query = { };
|
|
@@ -24745,6 +24870,10 @@ export default class Client extends OpenApi {
|
|
|
24745
24870
|
query["ModifyAction"] = request.modifyAction;
|
|
24746
24871
|
}
|
|
24747
24872
|
|
|
24873
|
+
if (!Util.isUnset(request.skipWaitSwitch)) {
|
|
24874
|
+
query["SkipWaitSwitch"] = request.skipWaitSwitch;
|
|
24875
|
+
}
|
|
24876
|
+
|
|
24748
24877
|
if (!Util.isUnset(request.token)) {
|
|
24749
24878
|
query["Token"] = request.token;
|
|
24750
24879
|
}
|
|
@@ -24786,10 +24915,6 @@ export default class Client extends OpenApi {
|
|
|
24786
24915
|
query["IpControlName"] = request.ipControlName;
|
|
24787
24916
|
}
|
|
24788
24917
|
|
|
24789
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
24790
|
-
query["SecurityToken"] = request.securityToken;
|
|
24791
|
-
}
|
|
24792
|
-
|
|
24793
24918
|
let req = new $OpenApi.OpenApiRequest({
|
|
24794
24919
|
query: OpenApiUtil.query(query),
|
|
24795
24920
|
});
|
|
@@ -24995,10 +25120,6 @@ export default class Client extends OpenApi {
|
|
|
24995
25120
|
async modifySignatureWithOptions(request: ModifySignatureRequest, runtime: $Util.RuntimeOptions): Promise<ModifySignatureResponse> {
|
|
24996
25121
|
Util.validateModel(request);
|
|
24997
25122
|
let query = { };
|
|
24998
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
24999
|
-
query["SecurityToken"] = request.securityToken;
|
|
25000
|
-
}
|
|
25001
|
-
|
|
25002
25123
|
if (!Util.isUnset(request.signatureId)) {
|
|
25003
25124
|
query["SignatureId"] = request.signatureId;
|
|
25004
25125
|
}
|
|
@@ -25052,10 +25173,6 @@ export default class Client extends OpenApi {
|
|
|
25052
25173
|
query["Description"] = request.description;
|
|
25053
25174
|
}
|
|
25054
25175
|
|
|
25055
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25056
|
-
query["SecurityToken"] = request.securityToken;
|
|
25057
|
-
}
|
|
25058
|
-
|
|
25059
25176
|
if (!Util.isUnset(request.trafficControlId)) {
|
|
25060
25177
|
query["TrafficControlId"] = request.trafficControlId;
|
|
25061
25178
|
}
|
|
@@ -25126,10 +25243,6 @@ export default class Client extends OpenApi {
|
|
|
25126
25243
|
query["GroupId"] = request.groupId;
|
|
25127
25244
|
}
|
|
25128
25245
|
|
|
25129
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25130
|
-
query["SecurityToken"] = request.securityToken;
|
|
25131
|
-
}
|
|
25132
|
-
|
|
25133
25246
|
let req = new $OpenApi.OpenApiRequest({
|
|
25134
25247
|
query: OpenApiUtil.query(query),
|
|
25135
25248
|
});
|
|
@@ -25163,10 +25276,6 @@ export default class Client extends OpenApi {
|
|
|
25163
25276
|
query["AclId"] = request.aclId;
|
|
25164
25277
|
}
|
|
25165
25278
|
|
|
25166
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25167
|
-
query["SecurityToken"] = request.securityToken;
|
|
25168
|
-
}
|
|
25169
|
-
|
|
25170
25279
|
let req = new $OpenApi.OpenApiRequest({
|
|
25171
25280
|
query: OpenApiUtil.query(query),
|
|
25172
25281
|
});
|
|
@@ -25208,10 +25317,6 @@ export default class Client extends OpenApi {
|
|
|
25208
25317
|
query["GroupId"] = request.groupId;
|
|
25209
25318
|
}
|
|
25210
25319
|
|
|
25211
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25212
|
-
query["SecurityToken"] = request.securityToken;
|
|
25213
|
-
}
|
|
25214
|
-
|
|
25215
25320
|
if (!Util.isUnset(request.stageName)) {
|
|
25216
25321
|
query["StageName"] = request.stageName;
|
|
25217
25322
|
}
|
|
@@ -25339,10 +25444,6 @@ export default class Client extends OpenApi {
|
|
|
25339
25444
|
query["PolicyItemIds"] = request.policyItemIds;
|
|
25340
25445
|
}
|
|
25341
25446
|
|
|
25342
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25343
|
-
query["SecurityToken"] = request.securityToken;
|
|
25344
|
-
}
|
|
25345
|
-
|
|
25346
25447
|
let req = new $OpenApi.OpenApiRequest({
|
|
25347
25448
|
query: OpenApiUtil.query(query),
|
|
25348
25449
|
});
|
|
@@ -25376,10 +25477,6 @@ export default class Client extends OpenApi {
|
|
|
25376
25477
|
query["GroupId"] = request.groupId;
|
|
25377
25478
|
}
|
|
25378
25479
|
|
|
25379
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25380
|
-
query["SecurityToken"] = request.securityToken;
|
|
25381
|
-
}
|
|
25382
|
-
|
|
25383
25480
|
if (!Util.isUnset(request.signatureId)) {
|
|
25384
25481
|
query["SignatureId"] = request.signatureId;
|
|
25385
25482
|
}
|
|
@@ -25421,10 +25518,6 @@ export default class Client extends OpenApi {
|
|
|
25421
25518
|
query["GroupId"] = request.groupId;
|
|
25422
25519
|
}
|
|
25423
25520
|
|
|
25424
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
25425
|
-
query["SecurityToken"] = request.securityToken;
|
|
25426
|
-
}
|
|
25427
|
-
|
|
25428
25521
|
if (!Util.isUnset(request.stageName)) {
|
|
25429
25522
|
query["StageName"] = request.stageName;
|
|
25430
25523
|
}
|
|
@@ -26076,10 +26169,6 @@ export default class Client extends OpenApi {
|
|
|
26076
26169
|
query["GroupId"] = request.groupId;
|
|
26077
26170
|
}
|
|
26078
26171
|
|
|
26079
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
26080
|
-
query["SecurityToken"] = request.securityToken;
|
|
26081
|
-
}
|
|
26082
|
-
|
|
26083
26172
|
if (!Util.isUnset(request.signatureId)) {
|
|
26084
26173
|
query["SignatureId"] = request.signatureId;
|
|
26085
26174
|
}
|
|
@@ -26121,10 +26210,6 @@ export default class Client extends OpenApi {
|
|
|
26121
26210
|
query["GroupId"] = request.groupId;
|
|
26122
26211
|
}
|
|
26123
26212
|
|
|
26124
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
26125
|
-
query["SecurityToken"] = request.securityToken;
|
|
26126
|
-
}
|
|
26127
|
-
|
|
26128
26213
|
if (!Util.isUnset(request.stageName)) {
|
|
26129
26214
|
query["StageName"] = request.stageName;
|
|
26130
26215
|
}
|
|
@@ -26219,10 +26304,6 @@ export default class Client extends OpenApi {
|
|
|
26219
26304
|
query["GroupId"] = request.groupId;
|
|
26220
26305
|
}
|
|
26221
26306
|
|
|
26222
|
-
if (!Util.isUnset(request.securityToken)) {
|
|
26223
|
-
query["SecurityToken"] = request.securityToken;
|
|
26224
|
-
}
|
|
26225
|
-
|
|
26226
26307
|
if (!Util.isUnset(request.wildcardDomainPatterns)) {
|
|
26227
26308
|
query["WildcardDomainPatterns"] = request.wildcardDomainPatterns;
|
|
26228
26309
|
}
|