@alicloud/eas20210701 5.1.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 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
  */
@@ -786,7 +817,7 @@ export declare class CreateBenchmarkTaskResponse extends $tea.Model {
786
817
  export declare class CreateGatewayRequest extends $tea.Model {
787
818
  /**
788
819
  * @remarks
789
- * The name of the resource group.
820
+ * The resource group ID. To obtain a resource group ID, see the ResourceId field in the response of the [ListResources](https://help.aliyun.com/document_detail/412133.html) operation.
790
821
  *
791
822
  * @example
792
823
  * eas-r-4gt8twzwllfo******
@@ -799,28 +830,20 @@ export declare class CreateGatewayRequest extends $tea.Model {
799
830
  * Valid values:
800
831
  *
801
832
  * * true
802
- *
803
- * <!-- -->
804
- *
805
- * <!-- -->
806
- *
807
- * <!-- -->
808
- *
809
833
  * * false
810
834
  *
811
- * <!-- -->
812
- *
813
- * <!-- -->
814
- *
815
- * <!-- -->
816
- *
817
835
  * @example
818
836
  * false
819
837
  */
820
838
  enableInternet?: boolean;
821
839
  /**
822
840
  * @remarks
823
- * Specifies whether to enable internal network access. Default value: true.
841
+ * Specifies whether to enable private access. Default value: true.
842
+ *
843
+ * Valid values:
844
+ *
845
+ * * true
846
+ * * false
824
847
  *
825
848
  * @example
826
849
  * true
@@ -828,7 +851,12 @@ export declare class CreateGatewayRequest extends $tea.Model {
828
851
  enableIntranet?: boolean;
829
852
  /**
830
853
  * @remarks
831
- * The instance type used for the private gateway.
854
+ * The instance type used by the private gateway. Valid values:
855
+ *
856
+ * * 2c4g
857
+ * * 4c8g
858
+ * * 8c16g
859
+ * * 16c32g
832
860
  *
833
861
  * This parameter is required.
834
862
  *
@@ -838,12 +866,19 @@ export declare class CreateGatewayRequest extends $tea.Model {
838
866
  instanceType?: string;
839
867
  /**
840
868
  * @remarks
841
- * The private gateway alias.
869
+ * The alias of the private gateway.
842
870
  *
843
871
  * @example
844
872
  * mygateway1
845
873
  */
846
874
  name?: string;
875
+ /**
876
+ * @remarks
877
+ * The number of nodes in the private gateway.
878
+ *
879
+ * @example
880
+ * 2
881
+ */
847
882
  replicas?: number;
848
883
  static names(): {
849
884
  [key: string]: string;
@@ -1915,8 +1950,15 @@ export declare class CreateServiceMirrorResponse extends $tea.Model {
1915
1950
  });
1916
1951
  }
1917
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
+ */
1918
1957
  aclPolicyList?: DeleteAclPolicyRequestAclPolicyList[];
1919
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
+ *
1920
1962
  * @example
1921
1963
  * vpc-uf66uio7md****
1922
1964
  */
@@ -1932,8 +1974,15 @@ export declare class DeleteAclPolicyRequest extends $tea.Model {
1932
1974
  });
1933
1975
  }
1934
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
+ */
1935
1981
  aclPolicyListShrink?: string;
1936
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
+ *
1937
1986
  * @example
1938
1987
  * vpc-uf66uio7md****
1939
1988
  */
@@ -1950,16 +1999,25 @@ export declare class DeleteAclPolicyShrinkRequest extends $tea.Model {
1950
1999
  }
1951
2000
  export declare class DeleteAclPolicyResponseBody extends $tea.Model {
1952
2001
  /**
2002
+ * @remarks
2003
+ * The private gateway ID.
2004
+ *
1953
2005
  * @example
1954
2006
  * gw-1uhcqmsc7x22******
1955
2007
  */
1956
2008
  gatewayId?: string;
1957
2009
  /**
2010
+ * @remarks
2011
+ * The returned message.
2012
+ *
1958
2013
  * @example
1959
2014
  * Successfully delete acl policy for gateway
1960
2015
  */
1961
2016
  message?: string;
1962
2017
  /**
2018
+ * @remarks
2019
+ * The request ID.
2020
+ *
1963
2021
  * @example
1964
2022
  * 40325405-579C-4D82****
1965
2023
  */
@@ -3042,7 +3100,7 @@ export declare class DescribeGatewayResponseBody extends $tea.Model {
3042
3100
  gatewayId?: string;
3043
3101
  /**
3044
3102
  * @remarks
3045
- * The private gateway alias.
3103
+ * The alias of the private gateway.
3046
3104
  *
3047
3105
  * @example
3048
3106
  * mygateway1
@@ -3050,7 +3108,14 @@ export declare class DescribeGatewayResponseBody extends $tea.Model {
3050
3108
  gatewayName?: string;
3051
3109
  /**
3052
3110
  * @remarks
3053
- * The instance type used for the private gateway.
3111
+ * The instance type used by the private gateway.
3112
+ *
3113
+ * Valid values:
3114
+ *
3115
+ * * 8c16g
3116
+ * * 4c8g
3117
+ * * 2c4g
3118
+ * * 16c32g
3054
3119
  *
3055
3120
  * @example
3056
3121
  * ecs.c6.4xlarge
@@ -3072,6 +3137,21 @@ export declare class DescribeGatewayResponseBody extends $tea.Model {
3072
3137
  * true
3073
3138
  */
3074
3139
  internetEnabled?: boolean;
3140
+ /**
3141
+ * @remarks
3142
+ * Indicates whether Internet access is enabled.
3143
+ *
3144
+ * Valid values:
3145
+ *
3146
+ * * Creating: Internet access is being enabled.
3147
+ * * Failed: Internet access failed to be enabled or deleted.
3148
+ * * Running: Internet access is running.
3149
+ * * Deleted: Internet access is deleted.
3150
+ * * Deleting: Internet access is being deleted.
3151
+ *
3152
+ * @example
3153
+ * Running
3154
+ */
3075
3155
  internetStatus?: string;
3076
3156
  /**
3077
3157
  * @remarks
@@ -3081,7 +3161,21 @@ export declare class DescribeGatewayResponseBody extends $tea.Model {
3081
3161
  * gw-1uhcqmsc7x22******-1801786532******-vpc.cn-hangzhou.pai-eas.aliyuncs.com
3082
3162
  */
3083
3163
  intranetDomain?: string;
3164
+ /**
3165
+ * @remarks
3166
+ * Indicates whether it is the default private gateway.
3167
+ *
3168
+ * @example
3169
+ * true
3170
+ */
3084
3171
  isDefault?: boolean;
3172
+ /**
3173
+ * @remarks
3174
+ * The number of nodes in the private gateway.
3175
+ *
3176
+ * @example
3177
+ * 2
3178
+ */
3085
3179
  replicas?: number;
3086
3180
  /**
3087
3181
  * @remarks
@@ -3093,7 +3187,17 @@ export declare class DescribeGatewayResponseBody extends $tea.Model {
3093
3187
  requestId?: string;
3094
3188
  /**
3095
3189
  * @remarks
3096
- * The state of the private gateway.
3190
+ * The status of the private gateway.
3191
+ *
3192
+ * Valid values:
3193
+ *
3194
+ * * Creating
3195
+ * * Stopped
3196
+ * * Failed
3197
+ * * Running
3198
+ * * Deleted
3199
+ * * Deleting
3200
+ * * Waiting
3097
3201
  *
3098
3202
  * @example
3099
3203
  * PrivateGatewayRunning
@@ -4166,6 +4270,9 @@ export declare class DevelopServiceResponse extends $tea.Model {
4166
4270
  }
4167
4271
  export declare class ListAclPolicyRequest extends $tea.Model {
4168
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
+ *
4169
4276
  * @example
4170
4277
  * vpc-uf66uio7md****
4171
4278
  */
@@ -4182,13 +4289,27 @@ export declare class ListAclPolicyRequest extends $tea.Model {
4182
4289
  }
4183
4290
  export declare class ListAclPolicyResponseBody extends $tea.Model {
4184
4291
  /**
4292
+ * @remarks
4293
+ * The private gateway ID.
4294
+ *
4185
4295
  * @example
4186
4296
  * gw-1uhcqmsc7x22******
4187
4297
  */
4188
4298
  gatewayId?: string;
4299
+ /**
4300
+ * @remarks
4301
+ * The access control policies of the private gateway over the Internet.
4302
+ */
4189
4303
  internetAclPolicyList?: ListAclPolicyResponseBodyInternetAclPolicyList[];
4304
+ /**
4305
+ * @remarks
4306
+ * The access control policies of the private gateway over the internal network.
4307
+ */
4190
4308
  intranetVpcAclPolicyList?: ListAclPolicyResponseBodyIntranetVpcAclPolicyList[];
4191
4309
  /**
4310
+ * @remarks
4311
+ * The request ID.
4312
+ *
4192
4313
  * @example
4193
4314
  * 40325405-579C-4D82****
4194
4315
  */
@@ -4328,21 +4449,33 @@ export declare class ListBenchmarkTaskResponse extends $tea.Model {
4328
4449
  }
4329
4450
  export declare class ListGatewayRequest extends $tea.Model {
4330
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
+ *
4331
4455
  * @example
4332
4456
  * gw-1uhcqmsc7x22******
4333
4457
  */
4334
4458
  gatewayId?: string;
4335
4459
  /**
4460
+ * @remarks
4461
+ * The private gateway alias.
4462
+ *
4336
4463
  * @example
4337
4464
  * mygateway1
4338
4465
  */
4339
4466
  gatewayName?: string;
4340
4467
  /**
4468
+ * @remarks
4469
+ * The page number. Default value: 1.
4470
+ *
4341
4471
  * @example
4342
4472
  * 1
4343
4473
  */
4344
4474
  pageNumber?: number;
4345
4475
  /**
4476
+ * @remarks
4477
+ * The number of entries per page. Default value: 100.
4478
+ *
4346
4479
  * @example
4347
4480
  * 100
4348
4481
  */
@@ -4358,23 +4491,39 @@ export declare class ListGatewayRequest extends $tea.Model {
4358
4491
  });
4359
4492
  }
4360
4493
  export declare class ListGatewayResponseBody extends $tea.Model {
4494
+ /**
4495
+ * @remarks
4496
+ * The private gateways.
4497
+ */
4361
4498
  gateways?: ListGatewayResponseBodyGateways[];
4362
4499
  /**
4500
+ * @remarks
4501
+ * The page number.
4502
+ *
4363
4503
  * @example
4364
4504
  * 1
4365
4505
  */
4366
4506
  pageNumber?: number;
4367
4507
  /**
4508
+ * @remarks
4509
+ * The number of entries per page.
4510
+ *
4368
4511
  * @example
4369
4512
  * 100
4370
4513
  */
4371
4514
  pageSize?: number;
4372
4515
  /**
4516
+ * @remarks
4517
+ * The request ID.
4518
+ *
4373
4519
  * @example
4374
4520
  * 40325405-579C-4D82****
4375
4521
  */
4376
4522
  requestId?: string;
4377
4523
  /**
4524
+ * @remarks
4525
+ * The total number of private gateways returned.
4526
+ *
4378
4527
  * @example
4379
4528
  * 5
4380
4529
  */
@@ -5707,6 +5856,7 @@ export declare class ListServicesRequest extends $tea.Model {
5707
5856
  * eas-r-hd0qwy8cxxxx
5708
5857
  */
5709
5858
  resourceName?: string;
5859
+ role?: string;
5710
5860
  /**
5711
5861
  * @remarks
5712
5862
  * The service name.
@@ -6031,6 +6181,7 @@ export declare class ListServicesShrinkRequest extends $tea.Model {
6031
6181
  * eas-r-hd0qwy8cxxxx
6032
6182
  */
6033
6183
  resourceName?: string;
6184
+ role?: string;
6034
6185
  /**
6035
6186
  * @remarks
6036
6187
  * The service name.
@@ -6339,8 +6490,15 @@ export declare class ListServicesResponse extends $tea.Model {
6339
6490
  });
6340
6491
  }
6341
6492
  export declare class ListTenantAddonsResponseBody extends $tea.Model {
6493
+ /**
6494
+ * @remarks
6495
+ * The information about the plug-in.
6496
+ */
6342
6497
  addons?: ListTenantAddonsResponseBodyAddons[];
6343
6498
  /**
6499
+ * @remarks
6500
+ * The request ID.
6501
+ *
6344
6502
  * @example
6345
6503
  * 40325405-579C-4D82****
6346
6504
  */
@@ -6373,11 +6531,17 @@ export declare class ListTenantAddonsResponse extends $tea.Model {
6373
6531
  }
6374
6532
  export declare class ReinstallTenantAddonResponseBody extends $tea.Model {
6375
6533
  /**
6534
+ * @remarks
6535
+ * The returned message.
6536
+ *
6376
6537
  * @example
6377
6538
  * Addon prometheus_discovery is successfully reinstalled
6378
6539
  */
6379
6540
  message?: string;
6380
6541
  /**
6542
+ * @remarks
6543
+ * The request ID.
6544
+ *
6381
6545
  * @example
6382
6546
  * 40325405-579C-4D82****
6383
6547
  */
@@ -6935,6 +7099,13 @@ export declare class UpdateGatewayRequest extends $tea.Model {
6935
7099
  * ecs.c6.4xlarge
6936
7100
  */
6937
7101
  instanceType?: string;
7102
+ /**
7103
+ * @remarks
7104
+ * Indicates whether it is the default private gateway.
7105
+ *
7106
+ * @example
7107
+ * true
7108
+ */
6938
7109
  isDefault?: boolean;
6939
7110
  /**
6940
7111
  * @remarks
@@ -6944,6 +7115,13 @@ export declare class UpdateGatewayRequest extends $tea.Model {
6944
7115
  * mygateway1
6945
7116
  */
6946
7117
  name?: string;
7118
+ /**
7119
+ * @remarks
7120
+ * The number of nodes in the private gateway.
7121
+ *
7122
+ * @example
7123
+ * 2
7124
+ */
6947
7125
  replicas?: number;
6948
7126
  static names(): {
6949
7127
  [key: string]: string;
@@ -7811,11 +7989,17 @@ export declare class ServiceLabels extends $tea.Model {
7811
7989
  }
7812
7990
  export declare class CreateAclPolicyRequestAclPolicyList extends $tea.Model {
7813
7991
  /**
7992
+ * @remarks
7993
+ * The comment on the IP CIDR block in the VPC that can access the private gateway.
7994
+ *
7814
7995
  * @example
7815
7996
  * default
7816
7997
  */
7817
7998
  comment?: string;
7818
7999
  /**
8000
+ * @remarks
8001
+ * The IP CIDR block in the VPC that can access the private gateway.
8002
+ *
7819
8003
  * @example
7820
8004
  * 10.23.XX.XX/32
7821
8005
  */
@@ -8102,11 +8286,17 @@ export declare class CreateServiceCronScalerRequestScaleJobs extends $tea.Model
8102
8286
  }
8103
8287
  export declare class DeleteAclPolicyRequestAclPolicyList extends $tea.Model {
8104
8288
  /**
8289
+ * @remarks
8290
+ * The comment on the IP CIDR block in the VPC that can access the private gateway.
8291
+ *
8105
8292
  * @example
8106
8293
  * default
8107
8294
  */
8108
8295
  comment?: string;
8109
8296
  /**
8297
+ * @remarks
8298
+ * The IP CIDR block in the VPC that can access the private gateway.
8299
+ *
8110
8300
  * @example
8111
8301
  * 10.23.XX.XX/32
8112
8302
  */
@@ -8414,13 +8604,19 @@ export declare class DescribeSpotDiscountHistoryResponseBodySpotDiscounts extend
8414
8604
  [key: string]: any;
8415
8605
  });
8416
8606
  }
8417
- export declare class ListAclPolicyResponseBodyInternetAclPolicyList extends $tea.Model {
8607
+ export declare class ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList extends $tea.Model {
8418
8608
  /**
8609
+ * @remarks
8610
+ * The comment on the IP CIDR block in the VPC that can access the private gateway over the Internet.
8611
+ *
8419
8612
  * @example
8420
8613
  * default
8421
8614
  */
8422
8615
  comment?: string;
8423
8616
  /**
8617
+ * @remarks
8618
+ * The IP CIDR block in the VPC that can access the private gateway over the Internet.
8619
+ *
8424
8620
  * @example
8425
8621
  * 10.23.XX.XX/32
8426
8622
  */
@@ -8435,13 +8631,35 @@ export declare class ListAclPolicyResponseBodyInternetAclPolicyList extends $tea
8435
8631
  [key: string]: any;
8436
8632
  });
8437
8633
  }
8438
- export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyListIntranetAclPolicyList extends $tea.Model {
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
+ */
8639
+ aclPolicyList?: ListAclPolicyResponseBodyInternetAclPolicyListAclPolicyList[];
8640
+ static names(): {
8641
+ [key: string]: string;
8642
+ };
8643
+ static types(): {
8644
+ [key: string]: any;
8645
+ };
8646
+ constructor(map?: {
8647
+ [key: string]: any;
8648
+ });
8649
+ }
8650
+ export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList extends $tea.Model {
8439
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
+ *
8440
8655
  * @example
8441
8656
  * Test Entry
8442
8657
  */
8443
8658
  comment?: string;
8444
8659
  /**
8660
+ * @remarks
8661
+ * The IP CIDR block in the VPC that can access the private gateway over the internal network.
8662
+ *
8445
8663
  * @example
8446
8664
  * 192.168.XX.XX/24
8447
8665
  */
@@ -8457,8 +8675,15 @@ export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyListIntranetAc
8457
8675
  });
8458
8676
  }
8459
8677
  export declare class ListAclPolicyResponseBodyIntranetVpcAclPolicyList extends $tea.Model {
8460
- intranetAclPolicyList?: ListAclPolicyResponseBodyIntranetVpcAclPolicyListIntranetAclPolicyList[];
8461
8678
  /**
8679
+ * @remarks
8680
+ * The whitelisted IP CIDR blocks in the VPC that can access the private gateway over the internal network.
8681
+ */
8682
+ aclPolicyList?: ListAclPolicyResponseBodyIntranetVpcAclPolicyListAclPolicyList[];
8683
+ /**
8684
+ * @remarks
8685
+ * The VPC ID. For more information about how to obtain the VPC ID, see DescribeVpcs.
8686
+ *
8462
8687
  * @example
8463
8688
  * vpc-uf66uio7md****
8464
8689
  */
@@ -8632,56 +8857,99 @@ export declare class ListBenchmarkTaskResponseBodyTasks extends $tea.Model {
8632
8857
  }
8633
8858
  export declare class ListGatewayResponseBodyGateways extends $tea.Model {
8634
8859
  /**
8860
+ * @remarks
8861
+ * The time when the private gateway was created. The time is displayed in UTC.
8862
+ *
8635
8863
  * @example
8636
8864
  * 2020-05-19T14:19:42Z
8637
8865
  */
8638
8866
  createTime?: string;
8639
8867
  /**
8868
+ * @remarks
8869
+ * The private gateway ID.
8870
+ *
8640
8871
  * @example
8641
8872
  * gw-1uhcqmsc7x22******
8642
8873
  */
8643
8874
  gatewayId?: string;
8644
8875
  /**
8876
+ * @remarks
8877
+ * The private gateway alias.
8878
+ *
8645
8879
  * @example
8646
8880
  * mygateway1
8647
8881
  */
8648
8882
  gatewayName?: string;
8649
8883
  /**
8884
+ * @remarks
8885
+ * The type of instances used for the private gateway.
8886
+ *
8650
8887
  * @example
8651
8888
  * 2c4g
8652
8889
  */
8653
8890
  instanceType?: string;
8654
8891
  /**
8892
+ * @remarks
8893
+ * The public endpoint.
8894
+ *
8655
8895
  * @example
8656
8896
  * gw-1uhcqmsc7x22******-1801786532******.cn-wulanchabu.pai-eas.aliyuncs.com
8657
8897
  */
8658
8898
  internetDomain?: string;
8659
8899
  /**
8900
+ * @remarks
8901
+ * Indicates whether Internet access is enabled.
8902
+ *
8660
8903
  * @example
8661
8904
  * true
8662
8905
  */
8663
8906
  internetEnabled?: boolean;
8664
8907
  /**
8908
+ * @remarks
8909
+ * The internal endpoint.
8910
+ *
8665
8911
  * @example
8666
8912
  * gw-1uhcqmsc7x22******-1801786532******-vpc.cn-wulanchabu.pai-eas.aliyuncs.com
8667
8913
  */
8668
8914
  intranetDomain?: string;
8669
8915
  /**
8916
+ * @remarks
8917
+ * Indicates whether it is the default private gateway.
8918
+ *
8670
8919
  * @example
8671
8920
  * true
8672
8921
  */
8673
8922
  isDefault?: boolean;
8674
8923
  /**
8924
+ * @remarks
8925
+ * The number of nodes in the private gateway.
8926
+ *
8675
8927
  * @example
8676
8928
  * 2
8677
8929
  */
8678
8930
  replicas?: number;
8679
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
+ *
8680
8945
  * @example
8681
8946
  * Running
8682
8947
  */
8683
8948
  status?: string;
8684
8949
  /**
8950
+ * @remarks
8951
+ * The time when the private gateway was updated. The time is displayed in UTC.
8952
+ *
8685
8953
  * @example
8686
8954
  * 2021-02-24T11:52:17Z
8687
8955
  */
@@ -8848,10 +9116,17 @@ export declare class ListServiceVersionsResponseBodyVersions extends $tea.Model
8848
9116
  });
8849
9117
  }
8850
9118
  export declare class ListTenantAddonsResponseBodyAddons extends $tea.Model {
9119
+ /**
9120
+ * @remarks
9121
+ * The attributes of the plug-in.
9122
+ */
8851
9123
  attributes?: {
8852
9124
  [key: string]: string;
8853
9125
  };
8854
9126
  /**
9127
+ * @remarks
9128
+ * The name of the plug-in.
9129
+ *
8855
9130
  * @example
8856
9131
  * prometheus_discovery
8857
9132
  */
@@ -9153,7 +9428,7 @@ export default class Client extends OpenApi {
9153
9428
  */
9154
9429
  commitService(ClusterId: string, ServiceName: string): Promise<CommitServiceResponse>;
9155
9430
  /**
9156
- * 创建网关访问权限ACL Policy
9431
+ * Creates an access control list (ACL) for a private gateway. The IP CIDR blocks added to the ACL can access the private gateway.
9157
9432
  *
9158
9433
  * @param tmpReq - CreateAclPolicyRequest
9159
9434
  * @param headers - map
@@ -9164,7 +9439,7 @@ export default class Client extends OpenApi {
9164
9439
  [key: string]: string;
9165
9440
  }, runtime: $Util.RuntimeOptions): Promise<CreateAclPolicyResponse>;
9166
9441
  /**
9167
- * 创建网关访问权限ACL Policy
9442
+ * Creates an access control list (ACL) for a private gateway. The IP CIDR blocks added to the ACL can access the private gateway.
9168
9443
  *
9169
9444
  * @param request - CreateAclPolicyRequest
9170
9445
  * @returns CreateAclPolicyResponse
@@ -9381,7 +9656,7 @@ export default class Client extends OpenApi {
9381
9656
  */
9382
9657
  createServiceMirror(ClusterId: string, ServiceName: string, request: CreateServiceMirrorRequest): Promise<CreateServiceMirrorResponse>;
9383
9658
  /**
9384
- * 移除网关acl policy entry
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.
9385
9660
  *
9386
9661
  * @param tmpReq - DeleteAclPolicyRequest
9387
9662
  * @param headers - map
@@ -9392,7 +9667,7 @@ export default class Client extends OpenApi {
9392
9667
  [key: string]: string;
9393
9668
  }, runtime: $Util.RuntimeOptions): Promise<DeleteAclPolicyResponse>;
9394
9669
  /**
9395
- * 移除网关acl policy entry
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.
9396
9671
  *
9397
9672
  * @param request - DeleteAclPolicyRequest
9398
9673
  * @returns DeleteAclPolicyResponse
@@ -9876,7 +10151,7 @@ export default class Client extends OpenApi {
9876
10151
  */
9877
10152
  developService(ClusterId: string, ServiceName: string, request: DevelopServiceRequest): Promise<DevelopServiceResponse>;
9878
10153
  /**
9879
- * 查询网关所有ACL Policy
10154
+ * Queries access control lists (ACLs) created for a private gateway.
9880
10155
  *
9881
10156
  * @param request - ListAclPolicyRequest
9882
10157
  * @param headers - map
@@ -9887,7 +10162,7 @@ export default class Client extends OpenApi {
9887
10162
  [key: string]: string;
9888
10163
  }, runtime: $Util.RuntimeOptions): Promise<ListAclPolicyResponse>;
9889
10164
  /**
9890
- * 查询网关所有ACL Policy
10165
+ * Queries access control lists (ACLs) created for a private gateway.
9891
10166
  *
9892
10167
  * @param request - ListAclPolicyRequest
9893
10168
  * @returns ListAclPolicyResponse
@@ -9912,7 +10187,7 @@ export default class Client extends OpenApi {
9912
10187
  */
9913
10188
  listBenchmarkTask(request: ListBenchmarkTaskRequest): Promise<ListBenchmarkTaskResponse>;
9914
10189
  /**
9915
- * 列举gateway
10190
+ * Queries a list of private gateways.
9916
10191
  *
9917
10192
  * @param request - ListGatewayRequest
9918
10193
  * @param headers - map
@@ -9923,7 +10198,7 @@ export default class Client extends OpenApi {
9923
10198
  [key: string]: string;
9924
10199
  }, runtime: $Util.RuntimeOptions): Promise<ListGatewayResponse>;
9925
10200
  /**
9926
- * 列举gateway
10201
+ * Queries a list of private gateways.
9927
10202
  *
9928
10203
  * @param request - ListGatewayRequest
9929
10204
  * @returns ListGatewayResponse
@@ -10108,7 +10383,7 @@ export default class Client extends OpenApi {
10108
10383
  */
10109
10384
  listServices(request: ListServicesRequest): Promise<ListServicesResponse>;
10110
10385
  /**
10111
- * 获取租户配置列表
10386
+ * Queries a list of tenant plug-ins.
10112
10387
  *
10113
10388
  * @param headers - map
10114
10389
  * @param runtime - runtime options for this request RuntimeOptions
@@ -10118,12 +10393,12 @@ export default class Client extends OpenApi {
10118
10393
  [key: string]: string;
10119
10394
  }, runtime: $Util.RuntimeOptions): Promise<ListTenantAddonsResponse>;
10120
10395
  /**
10121
- * 获取租户配置列表
10396
+ * Queries a list of tenant plug-ins.
10122
10397
  * @returns ListTenantAddonsResponse
10123
10398
  */
10124
10399
  listTenantAddons(): Promise<ListTenantAddonsResponse>;
10125
10400
  /**
10126
- * 重置租户配置
10401
+ * Updates the information about a tenant plug-in.
10127
10402
  *
10128
10403
  * @param headers - map
10129
10404
  * @param runtime - runtime options for this request RuntimeOptions
@@ -10133,7 +10408,7 @@ export default class Client extends OpenApi {
10133
10408
  [key: string]: string;
10134
10409
  }, runtime: $Util.RuntimeOptions): Promise<ReinstallTenantAddonResponse>;
10135
10410
  /**
10136
- * 重置租户配置
10411
+ * Updates the information about a tenant plug-in.
10137
10412
  * @returns ReinstallTenantAddonResponse
10138
10413
  */
10139
10414
  reinstallTenantAddon(ClusterId: string, TenantAddonName: string): Promise<ReinstallTenantAddonResponse>;