@alicloud/eas20210701 6.0.0 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +227 -12
- package/dist/client.js +19 -12
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +235 -12
package/dist/client.d.ts
CHANGED
|
@@ -269,6 +269,10 @@ export declare class Service extends $tea.Model {
|
|
|
269
269
|
});
|
|
270
270
|
}
|
|
271
271
|
export declare class CloneServiceRequest extends $tea.Model {
|
|
272
|
+
/**
|
|
273
|
+
* @remarks
|
|
274
|
+
* The label of the service to be cloned.
|
|
275
|
+
*/
|
|
272
276
|
labels?: {
|
|
273
277
|
[key: string]: string;
|
|
274
278
|
};
|
|
@@ -291,6 +295,10 @@ export declare class CloneServiceRequest extends $tea.Model {
|
|
|
291
295
|
});
|
|
292
296
|
}
|
|
293
297
|
export declare class CloneServiceShrinkRequest extends $tea.Model {
|
|
298
|
+
/**
|
|
299
|
+
* @remarks
|
|
300
|
+
* The label of the service to be cloned.
|
|
301
|
+
*/
|
|
294
302
|
labelsShrink?: string;
|
|
295
303
|
/**
|
|
296
304
|
* @remarks
|
|
@@ -429,8 +437,15 @@ export declare class CommitServiceResponse extends $tea.Model {
|
|
|
429
437
|
});
|
|
430
438
|
}
|
|
431
439
|
export declare class CreateAclPolicyRequest extends $tea.Model {
|
|
440
|
+
/**
|
|
441
|
+
* @remarks
|
|
442
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
443
|
+
*/
|
|
432
444
|
aclPolicyList?: CreateAclPolicyRequestAclPolicyList[];
|
|
433
445
|
/**
|
|
446
|
+
* @remarks
|
|
447
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
448
|
+
*
|
|
434
449
|
* @example
|
|
435
450
|
* vpc-uf66uio7md****
|
|
436
451
|
*/
|
|
@@ -446,8 +461,15 @@ export declare class CreateAclPolicyRequest extends $tea.Model {
|
|
|
446
461
|
});
|
|
447
462
|
}
|
|
448
463
|
export declare class CreateAclPolicyShrinkRequest extends $tea.Model {
|
|
464
|
+
/**
|
|
465
|
+
* @remarks
|
|
466
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
467
|
+
*/
|
|
449
468
|
aclPolicyListShrink?: string;
|
|
450
469
|
/**
|
|
470
|
+
* @remarks
|
|
471
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
472
|
+
*
|
|
451
473
|
* @example
|
|
452
474
|
* vpc-uf66uio7md****
|
|
453
475
|
*/
|
|
@@ -464,16 +486,25 @@ export declare class CreateAclPolicyShrinkRequest extends $tea.Model {
|
|
|
464
486
|
}
|
|
465
487
|
export declare class CreateAclPolicyResponseBody extends $tea.Model {
|
|
466
488
|
/**
|
|
489
|
+
* @remarks
|
|
490
|
+
* The private gateway ID.
|
|
491
|
+
*
|
|
467
492
|
* @example
|
|
468
493
|
* gw-1uhcqmsc7x22******
|
|
469
494
|
*/
|
|
470
495
|
gatewayId?: string;
|
|
471
496
|
/**
|
|
497
|
+
* @remarks
|
|
498
|
+
* The returned message.
|
|
499
|
+
*
|
|
472
500
|
* @example
|
|
473
501
|
* Successfully add acl policy for gateway
|
|
474
502
|
*/
|
|
475
503
|
message?: string;
|
|
476
504
|
/**
|
|
505
|
+
* @remarks
|
|
506
|
+
* The request ID.
|
|
507
|
+
*
|
|
477
508
|
* @example
|
|
478
509
|
* 40325405-579C-4D82****
|
|
479
510
|
*/
|
|
@@ -1919,8 +1950,15 @@ export declare class CreateServiceMirrorResponse extends $tea.Model {
|
|
|
1919
1950
|
});
|
|
1920
1951
|
}
|
|
1921
1952
|
export declare class DeleteAclPolicyRequest extends $tea.Model {
|
|
1953
|
+
/**
|
|
1954
|
+
* @remarks
|
|
1955
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
1956
|
+
*/
|
|
1922
1957
|
aclPolicyList?: DeleteAclPolicyRequestAclPolicyList[];
|
|
1923
1958
|
/**
|
|
1959
|
+
* @remarks
|
|
1960
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
1961
|
+
*
|
|
1924
1962
|
* @example
|
|
1925
1963
|
* vpc-uf66uio7md****
|
|
1926
1964
|
*/
|
|
@@ -1936,8 +1974,15 @@ export declare class DeleteAclPolicyRequest extends $tea.Model {
|
|
|
1936
1974
|
});
|
|
1937
1975
|
}
|
|
1938
1976
|
export declare class DeleteAclPolicyShrinkRequest extends $tea.Model {
|
|
1977
|
+
/**
|
|
1978
|
+
* @remarks
|
|
1979
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway.
|
|
1980
|
+
*/
|
|
1939
1981
|
aclPolicyListShrink?: string;
|
|
1940
1982
|
/**
|
|
1983
|
+
* @remarks
|
|
1984
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
1985
|
+
*
|
|
1941
1986
|
* @example
|
|
1942
1987
|
* vpc-uf66uio7md****
|
|
1943
1988
|
*/
|
|
@@ -1954,16 +1999,25 @@ export declare class DeleteAclPolicyShrinkRequest extends $tea.Model {
|
|
|
1954
1999
|
}
|
|
1955
2000
|
export declare class DeleteAclPolicyResponseBody extends $tea.Model {
|
|
1956
2001
|
/**
|
|
2002
|
+
* @remarks
|
|
2003
|
+
* The private gateway ID.
|
|
2004
|
+
*
|
|
1957
2005
|
* @example
|
|
1958
2006
|
* gw-1uhcqmsc7x22******
|
|
1959
2007
|
*/
|
|
1960
2008
|
gatewayId?: string;
|
|
1961
2009
|
/**
|
|
2010
|
+
* @remarks
|
|
2011
|
+
* The returned message.
|
|
2012
|
+
*
|
|
1962
2013
|
* @example
|
|
1963
2014
|
* Successfully delete acl policy for gateway
|
|
1964
2015
|
*/
|
|
1965
2016
|
message?: string;
|
|
1966
2017
|
/**
|
|
2018
|
+
* @remarks
|
|
2019
|
+
* The request ID.
|
|
2020
|
+
*
|
|
1967
2021
|
* @example
|
|
1968
2022
|
* 40325405-579C-4D82****
|
|
1969
2023
|
*/
|
|
@@ -4216,6 +4270,9 @@ export declare class DevelopServiceResponse extends $tea.Model {
|
|
|
4216
4270
|
}
|
|
4217
4271
|
export declare class ListAclPolicyRequest extends $tea.Model {
|
|
4218
4272
|
/**
|
|
4273
|
+
* @remarks
|
|
4274
|
+
* The ID of the virtual private cloud (VPC). For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
4275
|
+
*
|
|
4219
4276
|
* @example
|
|
4220
4277
|
* vpc-uf66uio7md****
|
|
4221
4278
|
*/
|
|
@@ -4232,13 +4289,27 @@ export declare class ListAclPolicyRequest extends $tea.Model {
|
|
|
4232
4289
|
}
|
|
4233
4290
|
export declare class ListAclPolicyResponseBody extends $tea.Model {
|
|
4234
4291
|
/**
|
|
4292
|
+
* @remarks
|
|
4293
|
+
* The private gateway ID.
|
|
4294
|
+
*
|
|
4235
4295
|
* @example
|
|
4236
4296
|
* gw-1uhcqmsc7x22******
|
|
4237
4297
|
*/
|
|
4238
4298
|
gatewayId?: string;
|
|
4299
|
+
/**
|
|
4300
|
+
* @remarks
|
|
4301
|
+
* The access control policies of the private gateway over the Internet.
|
|
4302
|
+
*/
|
|
4239
4303
|
internetAclPolicyList?: ListAclPolicyResponseBodyInternetAclPolicyList[];
|
|
4304
|
+
/**
|
|
4305
|
+
* @remarks
|
|
4306
|
+
* The access control policies of the private gateway over the internal network.
|
|
4307
|
+
*/
|
|
4240
4308
|
intranetVpcAclPolicyList?: ListAclPolicyResponseBodyIntranetVpcAclPolicyList[];
|
|
4241
4309
|
/**
|
|
4310
|
+
* @remarks
|
|
4311
|
+
* The request ID.
|
|
4312
|
+
*
|
|
4242
4313
|
* @example
|
|
4243
4314
|
* 40325405-579C-4D82****
|
|
4244
4315
|
*/
|
|
@@ -4378,21 +4449,33 @@ export declare class ListBenchmarkTaskResponse extends $tea.Model {
|
|
|
4378
4449
|
}
|
|
4379
4450
|
export declare class ListGatewayRequest extends $tea.Model {
|
|
4380
4451
|
/**
|
|
4452
|
+
* @remarks
|
|
4453
|
+
* The private gateway ID. To obtain the private gateway ID, see the private_gateway_id parameter in the response parameters of the ListResources operation.
|
|
4454
|
+
*
|
|
4381
4455
|
* @example
|
|
4382
4456
|
* gw-1uhcqmsc7x22******
|
|
4383
4457
|
*/
|
|
4384
4458
|
gatewayId?: string;
|
|
4385
4459
|
/**
|
|
4460
|
+
* @remarks
|
|
4461
|
+
* The private gateway alias.
|
|
4462
|
+
*
|
|
4386
4463
|
* @example
|
|
4387
4464
|
* mygateway1
|
|
4388
4465
|
*/
|
|
4389
4466
|
gatewayName?: string;
|
|
4390
4467
|
/**
|
|
4468
|
+
* @remarks
|
|
4469
|
+
* The page number. Default value: 1.
|
|
4470
|
+
*
|
|
4391
4471
|
* @example
|
|
4392
4472
|
* 1
|
|
4393
4473
|
*/
|
|
4394
4474
|
pageNumber?: number;
|
|
4395
4475
|
/**
|
|
4476
|
+
* @remarks
|
|
4477
|
+
* The number of entries per page. Default value: 100.
|
|
4478
|
+
*
|
|
4396
4479
|
* @example
|
|
4397
4480
|
* 100
|
|
4398
4481
|
*/
|
|
@@ -4408,23 +4491,39 @@ export declare class ListGatewayRequest extends $tea.Model {
|
|
|
4408
4491
|
});
|
|
4409
4492
|
}
|
|
4410
4493
|
export declare class ListGatewayResponseBody extends $tea.Model {
|
|
4494
|
+
/**
|
|
4495
|
+
* @remarks
|
|
4496
|
+
* The private gateways.
|
|
4497
|
+
*/
|
|
4411
4498
|
gateways?: ListGatewayResponseBodyGateways[];
|
|
4412
4499
|
/**
|
|
4500
|
+
* @remarks
|
|
4501
|
+
* The page number.
|
|
4502
|
+
*
|
|
4413
4503
|
* @example
|
|
4414
4504
|
* 1
|
|
4415
4505
|
*/
|
|
4416
4506
|
pageNumber?: number;
|
|
4417
4507
|
/**
|
|
4508
|
+
* @remarks
|
|
4509
|
+
* The number of entries per page.
|
|
4510
|
+
*
|
|
4418
4511
|
* @example
|
|
4419
4512
|
* 100
|
|
4420
4513
|
*/
|
|
4421
4514
|
pageSize?: number;
|
|
4422
4515
|
/**
|
|
4516
|
+
* @remarks
|
|
4517
|
+
* The request ID.
|
|
4518
|
+
*
|
|
4423
4519
|
* @example
|
|
4424
4520
|
* 40325405-579C-4D82****
|
|
4425
4521
|
*/
|
|
4426
4522
|
requestId?: string;
|
|
4427
4523
|
/**
|
|
4524
|
+
* @remarks
|
|
4525
|
+
* The total number of private gateways returned.
|
|
4526
|
+
*
|
|
4428
4527
|
* @example
|
|
4429
4528
|
* 5
|
|
4430
4529
|
*/
|
|
@@ -5757,6 +5856,7 @@ export declare class ListServicesRequest extends $tea.Model {
|
|
|
5757
5856
|
* eas-r-hd0qwy8cxxxx
|
|
5758
5857
|
*/
|
|
5759
5858
|
resourceName?: string;
|
|
5859
|
+
role?: string;
|
|
5760
5860
|
/**
|
|
5761
5861
|
* @remarks
|
|
5762
5862
|
* The service name.
|
|
@@ -6081,6 +6181,7 @@ export declare class ListServicesShrinkRequest extends $tea.Model {
|
|
|
6081
6181
|
* eas-r-hd0qwy8cxxxx
|
|
6082
6182
|
*/
|
|
6083
6183
|
resourceName?: string;
|
|
6184
|
+
role?: string;
|
|
6084
6185
|
/**
|
|
6085
6186
|
* @remarks
|
|
6086
6187
|
* The service name.
|
|
@@ -6389,8 +6490,15 @@ export declare class ListServicesResponse extends $tea.Model {
|
|
|
6389
6490
|
});
|
|
6390
6491
|
}
|
|
6391
6492
|
export declare class ListTenantAddonsResponseBody extends $tea.Model {
|
|
6493
|
+
/**
|
|
6494
|
+
* @remarks
|
|
6495
|
+
* The information about the plug-in.
|
|
6496
|
+
*/
|
|
6392
6497
|
addons?: ListTenantAddonsResponseBodyAddons[];
|
|
6393
6498
|
/**
|
|
6499
|
+
* @remarks
|
|
6500
|
+
* The request ID.
|
|
6501
|
+
*
|
|
6394
6502
|
* @example
|
|
6395
6503
|
* 40325405-579C-4D82****
|
|
6396
6504
|
*/
|
|
@@ -6423,11 +6531,17 @@ export declare class ListTenantAddonsResponse extends $tea.Model {
|
|
|
6423
6531
|
}
|
|
6424
6532
|
export declare class ReinstallTenantAddonResponseBody extends $tea.Model {
|
|
6425
6533
|
/**
|
|
6534
|
+
* @remarks
|
|
6535
|
+
* The returned message.
|
|
6536
|
+
*
|
|
6426
6537
|
* @example
|
|
6427
6538
|
* Addon prometheus_discovery is successfully reinstalled
|
|
6428
6539
|
*/
|
|
6429
6540
|
message?: string;
|
|
6430
6541
|
/**
|
|
6542
|
+
* @remarks
|
|
6543
|
+
* The request ID.
|
|
6544
|
+
*
|
|
6431
6545
|
* @example
|
|
6432
6546
|
* 40325405-579C-4D82****
|
|
6433
6547
|
*/
|
|
@@ -7875,11 +7989,17 @@ export declare class ServiceLabels extends $tea.Model {
|
|
|
7875
7989
|
}
|
|
7876
7990
|
export declare class CreateAclPolicyRequestAclPolicyList extends $tea.Model {
|
|
7877
7991
|
/**
|
|
7992
|
+
* @remarks
|
|
7993
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway.
|
|
7994
|
+
*
|
|
7878
7995
|
* @example
|
|
7879
7996
|
* default
|
|
7880
7997
|
*/
|
|
7881
7998
|
comment?: string;
|
|
7882
7999
|
/**
|
|
8000
|
+
* @remarks
|
|
8001
|
+
* The IP CIDR block in the VPC that can access the private gateway.
|
|
8002
|
+
*
|
|
7883
8003
|
* @example
|
|
7884
8004
|
* 10.23.XX.XX/32
|
|
7885
8005
|
*/
|
|
@@ -8166,11 +8286,17 @@ export declare class CreateServiceCronScalerRequestScaleJobs extends $tea.Model
|
|
|
8166
8286
|
}
|
|
8167
8287
|
export declare class DeleteAclPolicyRequestAclPolicyList extends $tea.Model {
|
|
8168
8288
|
/**
|
|
8289
|
+
* @remarks
|
|
8290
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway.
|
|
8291
|
+
*
|
|
8169
8292
|
* @example
|
|
8170
8293
|
* default
|
|
8171
8294
|
*/
|
|
8172
8295
|
comment?: string;
|
|
8173
8296
|
/**
|
|
8297
|
+
* @remarks
|
|
8298
|
+
* The IP CIDR block in the VPC that can access the private gateway.
|
|
8299
|
+
*
|
|
8174
8300
|
* @example
|
|
8175
8301
|
* 10.23.XX.XX/32
|
|
8176
8302
|
*/
|
|
@@ -8479,7 +8605,21 @@ export declare class DescribeSpotDiscountHistoryResponseBodySpotDiscounts extend
|
|
|
8479
8605
|
});
|
|
8480
8606
|
}
|
|
8481
8607
|
export declare class ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList extends $tea.Model {
|
|
8608
|
+
/**
|
|
8609
|
+
* @remarks
|
|
8610
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway over the Internet.
|
|
8611
|
+
*
|
|
8612
|
+
* @example
|
|
8613
|
+
* default
|
|
8614
|
+
*/
|
|
8482
8615
|
comment?: string;
|
|
8616
|
+
/**
|
|
8617
|
+
* @remarks
|
|
8618
|
+
* The IP CIDR block in the VPC that can access the private gateway over the Internet.
|
|
8619
|
+
*
|
|
8620
|
+
* @example
|
|
8621
|
+
* 10.23.XX.XX/32
|
|
8622
|
+
*/
|
|
8483
8623
|
entry?: string;
|
|
8484
8624
|
static names(): {
|
|
8485
8625
|
[key: string]: string;
|
|
@@ -8492,6 +8632,10 @@ export declare class ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList
|
|
|
8492
8632
|
});
|
|
8493
8633
|
}
|
|
8494
8634
|
export declare class ListAclPolicyResponseBodyInternetAclPolicyList extends $tea.Model {
|
|
8635
|
+
/**
|
|
8636
|
+
* @remarks
|
|
8637
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway over the Internet.
|
|
8638
|
+
*/
|
|
8495
8639
|
aclPolicyList?: ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList[];
|
|
8496
8640
|
static names(): {
|
|
8497
8641
|
[key: string]: string;
|
|
@@ -8504,7 +8648,21 @@ export declare class ListAclPolicyResponseBodyInternetAclPolicyList extends $tea
|
|
|
8504
8648
|
});
|
|
8505
8649
|
}
|
|
8506
8650
|
export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList extends $tea.Model {
|
|
8651
|
+
/**
|
|
8652
|
+
* @remarks
|
|
8653
|
+
* The comment on the IP CIDR block in the VPC that can access the private gateway over the internal network.
|
|
8654
|
+
*
|
|
8655
|
+
* @example
|
|
8656
|
+
* Test Entry
|
|
8657
|
+
*/
|
|
8507
8658
|
comment?: string;
|
|
8659
|
+
/**
|
|
8660
|
+
* @remarks
|
|
8661
|
+
* The IP CIDR block in the VPC that can access the private gateway over the internal network.
|
|
8662
|
+
*
|
|
8663
|
+
* @example
|
|
8664
|
+
* 192.168.XX.XX/24
|
|
8665
|
+
*/
|
|
8508
8666
|
entry?: string;
|
|
8509
8667
|
static names(): {
|
|
8510
8668
|
[key: string]: string;
|
|
@@ -8517,8 +8675,15 @@ export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyL
|
|
|
8517
8675
|
});
|
|
8518
8676
|
}
|
|
8519
8677
|
export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyList extends $tea.Model {
|
|
8678
|
+
/**
|
|
8679
|
+
* @remarks
|
|
8680
|
+
* The whitelisted IP CIDR blocks in the VPC that can access the private gateway over the internal network.
|
|
8681
|
+
*/
|
|
8520
8682
|
aclPolicyList?: ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList[];
|
|
8521
8683
|
/**
|
|
8684
|
+
* @remarks
|
|
8685
|
+
* The VPC ID. For more information about how to obtain the VPC ID, see DescribeVpcs.
|
|
8686
|
+
*
|
|
8522
8687
|
* @example
|
|
8523
8688
|
* vpc-uf66uio7md****
|
|
8524
8689
|
*/
|
|
@@ -8692,56 +8857,99 @@ export declare class ListBenchmarkTaskResponseBodyTasks extends $tea.Model {
|
|
|
8692
8857
|
}
|
|
8693
8858
|
export declare class ListGatewayResponseBodyGateways extends $tea.Model {
|
|
8694
8859
|
/**
|
|
8860
|
+
* @remarks
|
|
8861
|
+
* The time when the private gateway was created. The time is displayed in UTC.
|
|
8862
|
+
*
|
|
8695
8863
|
* @example
|
|
8696
8864
|
* 2020-05-19T14:19:42Z
|
|
8697
8865
|
*/
|
|
8698
8866
|
createTime?: string;
|
|
8699
8867
|
/**
|
|
8868
|
+
* @remarks
|
|
8869
|
+
* The private gateway ID.
|
|
8870
|
+
*
|
|
8700
8871
|
* @example
|
|
8701
8872
|
* gw-1uhcqmsc7x22******
|
|
8702
8873
|
*/
|
|
8703
8874
|
gatewayId?: string;
|
|
8704
8875
|
/**
|
|
8876
|
+
* @remarks
|
|
8877
|
+
* The private gateway alias.
|
|
8878
|
+
*
|
|
8705
8879
|
* @example
|
|
8706
8880
|
* mygateway1
|
|
8707
8881
|
*/
|
|
8708
8882
|
gatewayName?: string;
|
|
8709
8883
|
/**
|
|
8884
|
+
* @remarks
|
|
8885
|
+
* The type of instances used for the private gateway.
|
|
8886
|
+
*
|
|
8710
8887
|
* @example
|
|
8711
8888
|
* 2c4g
|
|
8712
8889
|
*/
|
|
8713
8890
|
instanceType?: string;
|
|
8714
8891
|
/**
|
|
8892
|
+
* @remarks
|
|
8893
|
+
* The public endpoint.
|
|
8894
|
+
*
|
|
8715
8895
|
* @example
|
|
8716
8896
|
* gw-1uhcqmsc7x22******-1801786532******.cn-wulanchabu.pai-eas.aliyuncs.com
|
|
8717
8897
|
*/
|
|
8718
8898
|
internetDomain?: string;
|
|
8719
8899
|
/**
|
|
8900
|
+
* @remarks
|
|
8901
|
+
* Indicates whether Internet access is enabled.
|
|
8902
|
+
*
|
|
8720
8903
|
* @example
|
|
8721
8904
|
* true
|
|
8722
8905
|
*/
|
|
8723
8906
|
internetEnabled?: boolean;
|
|
8724
8907
|
/**
|
|
8908
|
+
* @remarks
|
|
8909
|
+
* The internal endpoint.
|
|
8910
|
+
*
|
|
8725
8911
|
* @example
|
|
8726
8912
|
* gw-1uhcqmsc7x22******-1801786532******-vpc.cn-wulanchabu.pai-eas.aliyuncs.com
|
|
8727
8913
|
*/
|
|
8728
8914
|
intranetDomain?: string;
|
|
8729
8915
|
/**
|
|
8916
|
+
* @remarks
|
|
8917
|
+
* Indicates whether it is the default private gateway.
|
|
8918
|
+
*
|
|
8730
8919
|
* @example
|
|
8731
8920
|
* true
|
|
8732
8921
|
*/
|
|
8733
8922
|
isDefault?: boolean;
|
|
8734
8923
|
/**
|
|
8924
|
+
* @remarks
|
|
8925
|
+
* The number of nodes in the private gateway.
|
|
8926
|
+
*
|
|
8735
8927
|
* @example
|
|
8736
8928
|
* 2
|
|
8737
8929
|
*/
|
|
8738
8930
|
replicas?: number;
|
|
8739
8931
|
/**
|
|
8932
|
+
* @remarks
|
|
8933
|
+
* The state of the private gateway.
|
|
8934
|
+
*
|
|
8935
|
+
* Valid values:
|
|
8936
|
+
*
|
|
8937
|
+
* * Creating
|
|
8938
|
+
* * Stopped
|
|
8939
|
+
* * Failed
|
|
8940
|
+
* * Running
|
|
8941
|
+
* * Deleted
|
|
8942
|
+
* * Deleting
|
|
8943
|
+
* * Waiting
|
|
8944
|
+
*
|
|
8740
8945
|
* @example
|
|
8741
8946
|
* Running
|
|
8742
8947
|
*/
|
|
8743
8948
|
status?: string;
|
|
8744
8949
|
/**
|
|
8950
|
+
* @remarks
|
|
8951
|
+
* The time when the private gateway was updated. The time is displayed in UTC.
|
|
8952
|
+
*
|
|
8745
8953
|
* @example
|
|
8746
8954
|
* 2021-02-24T11:52:17Z
|
|
8747
8955
|
*/
|
|
@@ -8908,10 +9116,17 @@ export declare class ListServiceVersionsResponseBodyVersions extends $tea.Model
|
|
|
8908
9116
|
});
|
|
8909
9117
|
}
|
|
8910
9118
|
export declare class ListTenantAddonsResponseBodyAddons extends $tea.Model {
|
|
9119
|
+
/**
|
|
9120
|
+
* @remarks
|
|
9121
|
+
* The attributes of the plug-in.
|
|
9122
|
+
*/
|
|
8911
9123
|
attributes?: {
|
|
8912
9124
|
[key: string]: string;
|
|
8913
9125
|
};
|
|
8914
9126
|
/**
|
|
9127
|
+
* @remarks
|
|
9128
|
+
* The name of the plug-in.
|
|
9129
|
+
*
|
|
8915
9130
|
* @example
|
|
8916
9131
|
* prometheus_discovery
|
|
8917
9132
|
*/
|
|
@@ -9213,7 +9428,7 @@ export default class Client extends OpenApi {
|
|
|
9213
9428
|
*/
|
|
9214
9429
|
commitService(ClusterId: string, ServiceName: string): Promise<CommitServiceResponse>;
|
|
9215
9430
|
/**
|
|
9216
|
-
*
|
|
9431
|
+
* Creates an access control list (ACL) for a private gateway. The IP CIDR blocks added to the ACL can access the private gateway.
|
|
9217
9432
|
*
|
|
9218
9433
|
* @param tmpReq - CreateAclPolicyRequest
|
|
9219
9434
|
* @param headers - map
|
|
@@ -9224,7 +9439,7 @@ export default class Client extends OpenApi {
|
|
|
9224
9439
|
[key: string]: string;
|
|
9225
9440
|
}, runtime: $Util.RuntimeOptions): Promise<CreateAclPolicyResponse>;
|
|
9226
9441
|
/**
|
|
9227
|
-
*
|
|
9442
|
+
* Creates an access control list (ACL) for a private gateway. The IP CIDR blocks added to the ACL can access the private gateway.
|
|
9228
9443
|
*
|
|
9229
9444
|
* @param request - CreateAclPolicyRequest
|
|
9230
9445
|
* @returns CreateAclPolicyResponse
|
|
@@ -9441,7 +9656,7 @@ export default class Client extends OpenApi {
|
|
|
9441
9656
|
*/
|
|
9442
9657
|
createServiceMirror(ClusterId: string, ServiceName: string, request: CreateServiceMirrorRequest): Promise<CreateServiceMirrorResponse>;
|
|
9443
9658
|
/**
|
|
9444
|
-
*
|
|
9659
|
+
* Deletes an access control list (ACL) for a private gateway. The IP CIDR block that is deleted from the ACL cannot access the private gateway.
|
|
9445
9660
|
*
|
|
9446
9661
|
* @param tmpReq - DeleteAclPolicyRequest
|
|
9447
9662
|
* @param headers - map
|
|
@@ -9452,7 +9667,7 @@ export default class Client extends OpenApi {
|
|
|
9452
9667
|
[key: string]: string;
|
|
9453
9668
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteAclPolicyResponse>;
|
|
9454
9669
|
/**
|
|
9455
|
-
*
|
|
9670
|
+
* Deletes an access control list (ACL) for a private gateway. The IP CIDR block that is deleted from the ACL cannot access the private gateway.
|
|
9456
9671
|
*
|
|
9457
9672
|
* @param request - DeleteAclPolicyRequest
|
|
9458
9673
|
* @returns DeleteAclPolicyResponse
|
|
@@ -9936,7 +10151,7 @@ export default class Client extends OpenApi {
|
|
|
9936
10151
|
*/
|
|
9937
10152
|
developService(ClusterId: string, ServiceName: string, request: DevelopServiceRequest): Promise<DevelopServiceResponse>;
|
|
9938
10153
|
/**
|
|
9939
|
-
*
|
|
10154
|
+
* Queries access control lists (ACLs) created for a private gateway.
|
|
9940
10155
|
*
|
|
9941
10156
|
* @param request - ListAclPolicyRequest
|
|
9942
10157
|
* @param headers - map
|
|
@@ -9947,7 +10162,7 @@ export default class Client extends OpenApi {
|
|
|
9947
10162
|
[key: string]: string;
|
|
9948
10163
|
}, runtime: $Util.RuntimeOptions): Promise<ListAclPolicyResponse>;
|
|
9949
10164
|
/**
|
|
9950
|
-
*
|
|
10165
|
+
* Queries access control lists (ACLs) created for a private gateway.
|
|
9951
10166
|
*
|
|
9952
10167
|
* @param request - ListAclPolicyRequest
|
|
9953
10168
|
* @returns ListAclPolicyResponse
|
|
@@ -9972,7 +10187,7 @@ export default class Client extends OpenApi {
|
|
|
9972
10187
|
*/
|
|
9973
10188
|
listBenchmarkTask(request: ListBenchmarkTaskRequest): Promise<ListBenchmarkTaskResponse>;
|
|
9974
10189
|
/**
|
|
9975
|
-
*
|
|
10190
|
+
* Queries a list of private gateways.
|
|
9976
10191
|
*
|
|
9977
10192
|
* @param request - ListGatewayRequest
|
|
9978
10193
|
* @param headers - map
|
|
@@ -9983,7 +10198,7 @@ export default class Client extends OpenApi {
|
|
|
9983
10198
|
[key: string]: string;
|
|
9984
10199
|
}, runtime: $Util.RuntimeOptions): Promise<ListGatewayResponse>;
|
|
9985
10200
|
/**
|
|
9986
|
-
*
|
|
10201
|
+
* Queries a list of private gateways.
|
|
9987
10202
|
*
|
|
9988
10203
|
* @param request - ListGatewayRequest
|
|
9989
10204
|
* @returns ListGatewayResponse
|
|
@@ -10168,7 +10383,7 @@ export default class Client extends OpenApi {
|
|
|
10168
10383
|
*/
|
|
10169
10384
|
listServices(request: ListServicesRequest): Promise<ListServicesResponse>;
|
|
10170
10385
|
/**
|
|
10171
|
-
*
|
|
10386
|
+
* Queries a list of tenant plug-ins.
|
|
10172
10387
|
*
|
|
10173
10388
|
* @param headers - map
|
|
10174
10389
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -10178,12 +10393,12 @@ export default class Client extends OpenApi {
|
|
|
10178
10393
|
[key: string]: string;
|
|
10179
10394
|
}, runtime: $Util.RuntimeOptions): Promise<ListTenantAddonsResponse>;
|
|
10180
10395
|
/**
|
|
10181
|
-
*
|
|
10396
|
+
* Queries a list of tenant plug-ins.
|
|
10182
10397
|
* @returns ListTenantAddonsResponse
|
|
10183
10398
|
*/
|
|
10184
10399
|
listTenantAddons(): Promise<ListTenantAddonsResponse>;
|
|
10185
10400
|
/**
|
|
10186
|
-
*
|
|
10401
|
+
* Updates the information about a tenant plug-in.
|
|
10187
10402
|
*
|
|
10188
10403
|
* @param headers - map
|
|
10189
10404
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -10193,7 +10408,7 @@ export default class Client extends OpenApi {
|
|
|
10193
10408
|
[key: string]: string;
|
|
10194
10409
|
}, runtime: $Util.RuntimeOptions): Promise<ReinstallTenantAddonResponse>;
|
|
10195
10410
|
/**
|
|
10196
|
-
*
|
|
10411
|
+
* Updates the information about a tenant plug-in.
|
|
10197
10412
|
* @returns ReinstallTenantAddonResponse
|
|
10198
10413
|
*/
|
|
10199
10414
|
reinstallTenantAddon(ClusterId: string, TenantAddonName: string): Promise<ReinstallTenantAddonResponse>;
|