@alicloud/slb20140515 2.0.8 → 2.0.9

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.js CHANGED
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
15
15
  }) : function(o, v) {
16
16
  o["default"] = v;
17
17
  });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
25
35
  var __importDefault = (this && this.__importDefault) || function (mod) {
26
36
  return (mod && mod.__esModule) ? mod : { "default": mod };
27
37
  };
@@ -37,7 +47,6 @@ exports.DescribeVServerGroupsResponseBodyVServerGroups = exports.DescribeVServer
37
47
  exports.UploadServerCertificateResponseBodySubjectAlternativeNames = exports.UploadServerCertificateRequestTag = exports.UploadCACertificateRequestTag = exports.TagResourcesRequestTag = exports.SetVServerGroupAttributeResponseBodyBackendServers = exports.SetVServerGroupAttributeResponseBodyBackendServersBackendServer = exports.SetBackendServersResponseBodyBackendServers = exports.SetBackendServersResponseBodyBackendServersBackendServer = exports.RemoveVServerGroupBackendServersResponseBodyBackendServers = exports.RemoveVServerGroupBackendServersResponseBodyBackendServersBackendServer = exports.RemoveBackendServersResponseBodyBackendServers = exports.RemoveBackendServersResponseBodyBackendServersBackendServer = exports.ModifyVServerGroupBackendServersResponseBodyBackendServers = exports.ModifyVServerGroupBackendServersResponseBodyBackendServersBackendServer = exports.ListTagResourcesResponseBodyTagResources = exports.ListTagResourcesResponseBodyTagResourcesTagResource = exports.ListTagResourcesRequestTag = exports.ListTLSCipherPoliciesResponseBodyTLSCipherPolicies = exports.ListTLSCipherPoliciesResponseBodyTLSCipherPoliciesRelateListeners = exports.DescribeZonesResponseBodyZones = exports.DescribeZonesResponseBodyZonesZone = exports.DescribeZonesResponseBodyZonesZoneSlaveZones = exports.DescribeZonesResponseBodyZonesZoneSlaveZonesSlaveZone = void 0;
38
48
  // This file is auto-generated, don't edit it
39
49
  /**
40
- *
41
50
  */
42
51
  const tea_util_1 = __importStar(require("@alicloud/tea-util")), $Util = tea_util_1;
43
52
  const openapi_client_1 = __importStar(require("@alicloud/openapi-client")), $OpenApi = openapi_client_1;
@@ -10354,15 +10363,16 @@ class Client extends openapi_client_1.default {
10354
10363
  return endpoint_util_1.default.getEndpointRules(productId, regionId, endpointRule, network, suffix);
10355
10364
  }
10356
10365
  /**
10357
- * @summary Adds IP entries to a network access control list (ACL).
10366
+ * Adds IP entries to a network access control list (ACL).
10358
10367
  *
10359
- * @description Each network ACL can contain one or more IP addresses or CIDR blocks. Take note of the following limits on network ACLs:
10368
+ * @remarks
10369
+ * Each network ACL can contain one or more IP addresses or CIDR blocks. Take note of the following limits on network ACLs:
10360
10370
  * * The number of IP entries that can be added to a network ACL with each Alibaba Cloud account at a time: 50
10361
10371
  * * The maximum number of IP entries that each network ACL can contain: 300
10362
10372
  *
10363
- * @param request AddAccessControlListEntryRequest
10364
- * @param runtime runtime options for this request RuntimeOptions
10365
- * @return AddAccessControlListEntryResponse
10373
+ * @param request - AddAccessControlListEntryRequest
10374
+ * @param runtime - runtime options for this request RuntimeOptions
10375
+ * @returns AddAccessControlListEntryResponse
10366
10376
  */
10367
10377
  async addAccessControlListEntryWithOptions(request, runtime) {
10368
10378
  tea_util_1.default.validateModel(request);
@@ -10405,27 +10415,29 @@ class Client extends openapi_client_1.default {
10405
10415
  return $tea.cast(await this.callApi(params, req, runtime), new AddAccessControlListEntryResponse({}));
10406
10416
  }
10407
10417
  /**
10408
- * @summary Adds IP entries to a network access control list (ACL).
10418
+ * Adds IP entries to a network access control list (ACL).
10409
10419
  *
10410
- * @description Each network ACL can contain one or more IP addresses or CIDR blocks. Take note of the following limits on network ACLs:
10420
+ * @remarks
10421
+ * Each network ACL can contain one or more IP addresses or CIDR blocks. Take note of the following limits on network ACLs:
10411
10422
  * * The number of IP entries that can be added to a network ACL with each Alibaba Cloud account at a time: 50
10412
10423
  * * The maximum number of IP entries that each network ACL can contain: 300
10413
10424
  *
10414
- * @param request AddAccessControlListEntryRequest
10415
- * @return AddAccessControlListEntryResponse
10425
+ * @param request - AddAccessControlListEntryRequest
10426
+ * @returns AddAccessControlListEntryResponse
10416
10427
  */
10417
10428
  async addAccessControlListEntry(request) {
10418
10429
  let runtime = new $Util.RuntimeOptions({});
10419
10430
  return await this.addAccessControlListEntryWithOptions(request, runtime);
10420
10431
  }
10421
10432
  /**
10422
- * @summary Adds backend servers.
10433
+ * Adds backend servers.
10423
10434
  *
10424
- * @description > If multiple identical Elastic Compute Service (ECS) instances are specified in a request, only the first ECS instance is added. The other ECS instances are ignored. If the backend server that you add is the same as one of the existing backend servers that are already associated with the listener, an error message is returned.
10435
+ * @remarks
10436
+ * > If multiple identical Elastic Compute Service (ECS) instances are specified in a request, only the first ECS instance is added. The other ECS instances are ignored. If the backend server that you add is the same as one of the existing backend servers that are already associated with the listener, an error message is returned.
10425
10437
  *
10426
- * @param request AddBackendServersRequest
10427
- * @param runtime runtime options for this request RuntimeOptions
10428
- * @return AddBackendServersResponse
10438
+ * @param request - AddBackendServersRequest
10439
+ * @param runtime - runtime options for this request RuntimeOptions
10440
+ * @returns AddBackendServersResponse
10429
10441
  */
10430
10442
  async addBackendServersWithOptions(request, runtime) {
10431
10443
  tea_util_1.default.validateModel(request);
@@ -10468,23 +10480,24 @@ class Client extends openapi_client_1.default {
10468
10480
  return $tea.cast(await this.callApi(params, req, runtime), new AddBackendServersResponse({}));
10469
10481
  }
10470
10482
  /**
10471
- * @summary Adds backend servers.
10483
+ * Adds backend servers.
10472
10484
  *
10473
- * @description > If multiple identical Elastic Compute Service (ECS) instances are specified in a request, only the first ECS instance is added. The other ECS instances are ignored. If the backend server that you add is the same as one of the existing backend servers that are already associated with the listener, an error message is returned.
10485
+ * @remarks
10486
+ * > If multiple identical Elastic Compute Service (ECS) instances are specified in a request, only the first ECS instance is added. The other ECS instances are ignored. If the backend server that you add is the same as one of the existing backend servers that are already associated with the listener, an error message is returned.
10474
10487
  *
10475
- * @param request AddBackendServersRequest
10476
- * @return AddBackendServersResponse
10488
+ * @param request - AddBackendServersRequest
10489
+ * @returns AddBackendServersResponse
10477
10490
  */
10478
10491
  async addBackendServers(request) {
10479
10492
  let runtime = new $Util.RuntimeOptions({});
10480
10493
  return await this.addBackendServersWithOptions(request, runtime);
10481
10494
  }
10482
10495
  /**
10483
- * @summary Adds IP addresses to the whitelist of a listener.
10496
+ * Adds IP addresses to the whitelist of a listener.
10484
10497
  *
10485
- * @param request AddListenerWhiteListItemRequest
10486
- * @param runtime runtime options for this request RuntimeOptions
10487
- * @return AddListenerWhiteListItemResponse
10498
+ * @param request - AddListenerWhiteListItemRequest
10499
+ * @param runtime - runtime options for this request RuntimeOptions
10500
+ * @returns AddListenerWhiteListItemResponse
10488
10501
  */
10489
10502
  async addListenerWhiteListItemWithOptions(request, runtime) {
10490
10503
  tea_util_1.default.validateModel(request);
@@ -10533,26 +10546,29 @@ class Client extends openapi_client_1.default {
10533
10546
  return $tea.cast(await this.callApi(params, req, runtime), new AddListenerWhiteListItemResponse({}));
10534
10547
  }
10535
10548
  /**
10536
- * @summary Adds IP addresses to the whitelist of a listener.
10549
+ * Adds IP addresses to the whitelist of a listener.
10537
10550
  *
10538
- * @param request AddListenerWhiteListItemRequest
10539
- * @return AddListenerWhiteListItemResponse
10551
+ * @param request - AddListenerWhiteListItemRequest
10552
+ * @returns AddListenerWhiteListItemResponse
10540
10553
  */
10541
10554
  async addListenerWhiteListItem(request) {
10542
10555
  let runtime = new $Util.RuntimeOptions({});
10543
10556
  return await this.addListenerWhiteListItemWithOptions(request, runtime);
10544
10557
  }
10545
10558
  /**
10546
- * @description # Limits
10559
+ * Adds tags to an SLB instance.
10560
+ *
10561
+ * @remarks
10562
+ * # Limits
10547
10563
  * Before you call this API, note the following limits:
10548
10564
  * * You can add up to 10 tags to each SLB instance.
10549
10565
  * * You can add up to five pairs of tags at a time.
10550
10566
  * * All the tags and keys added to an SLB instance must be unique.
10551
10567
  * * If you add a tag of which the key is the same as that of an existing tag, but the value is different, the new tag overwrites the existing one.
10552
10568
  *
10553
- * @param request AddTagsRequest
10554
- * @param runtime runtime options for this request RuntimeOptions
10555
- * @return AddTagsResponse
10569
+ * @param request - AddTagsRequest
10570
+ * @param runtime - runtime options for this request RuntimeOptions
10571
+ * @returns AddTagsResponse
10556
10572
  */
10557
10573
  async addTagsWithOptions(request, runtime) {
10558
10574
  tea_util_1.default.validateModel(request);
@@ -10595,26 +10611,29 @@ class Client extends openapi_client_1.default {
10595
10611
  return $tea.cast(await this.callApi(params, req, runtime), new AddTagsResponse({}));
10596
10612
  }
10597
10613
  /**
10598
- * @description # Limits
10614
+ * Adds tags to an SLB instance.
10615
+ *
10616
+ * @remarks
10617
+ * # Limits
10599
10618
  * Before you call this API, note the following limits:
10600
10619
  * * You can add up to 10 tags to each SLB instance.
10601
10620
  * * You can add up to five pairs of tags at a time.
10602
10621
  * * All the tags and keys added to an SLB instance must be unique.
10603
10622
  * * If you add a tag of which the key is the same as that of an existing tag, but the value is different, the new tag overwrites the existing one.
10604
10623
  *
10605
- * @param request AddTagsRequest
10606
- * @return AddTagsResponse
10624
+ * @param request - AddTagsRequest
10625
+ * @returns AddTagsResponse
10607
10626
  */
10608
10627
  async addTags(request) {
10609
10628
  let runtime = new $Util.RuntimeOptions({});
10610
10629
  return await this.addTagsWithOptions(request, runtime);
10611
10630
  }
10612
10631
  /**
10613
- * @summary Adds backend servers to a specified server group.
10632
+ * Adds backend servers to a vServer group.
10614
10633
  *
10615
- * @param request AddVServerGroupBackendServersRequest
10616
- * @param runtime runtime options for this request RuntimeOptions
10617
- * @return AddVServerGroupBackendServersResponse
10634
+ * @param request - AddVServerGroupBackendServersRequest
10635
+ * @param runtime - runtime options for this request RuntimeOptions
10636
+ * @returns AddVServerGroupBackendServersResponse
10618
10637
  */
10619
10638
  async addVServerGroupBackendServersWithOptions(request, runtime) {
10620
10639
  tea_util_1.default.validateModel(request);
@@ -10657,26 +10676,27 @@ class Client extends openapi_client_1.default {
10657
10676
  return $tea.cast(await this.callApi(params, req, runtime), new AddVServerGroupBackendServersResponse({}));
10658
10677
  }
10659
10678
  /**
10660
- * @summary Adds backend servers to a specified server group.
10679
+ * Adds backend servers to a vServer group.
10661
10680
  *
10662
- * @param request AddVServerGroupBackendServersRequest
10663
- * @return AddVServerGroupBackendServersResponse
10681
+ * @param request - AddVServerGroupBackendServersRequest
10682
+ * @returns AddVServerGroupBackendServersResponse
10664
10683
  */
10665
10684
  async addVServerGroupBackendServers(request) {
10666
10685
  let runtime = new $Util.RuntimeOptions({});
10667
10686
  return await this.addVServerGroupBackendServersWithOptions(request, runtime);
10668
10687
  }
10669
10688
  /**
10670
- * @summary Creates an access control list (ACL).
10689
+ * Creates an access control list (ACL).
10671
10690
  *
10672
- * @description You can create multiple ACLs. Each ACL can contain one or more IP addresses or CIDR blocks. Before you create an ACL, take note of the following limits:
10691
+ * @remarks
10692
+ * You can create multiple ACLs. Each ACL can contain one or more IP addresses or CIDR blocks. Before you create an ACL, take note of the following limits:
10673
10693
  * * An account can have a maximum of 50 ACLs in each region.
10674
10694
  * * You can add a maximum of 50 IP addresses or CIDR blocks at a time within an account.
10675
10695
  * * Each ACL can contain a maximum of 300 IP addresses or CIDR blocks.
10676
10696
  *
10677
- * @param request CreateAccessControlListRequest
10678
- * @param runtime runtime options for this request RuntimeOptions
10679
- * @return CreateAccessControlListResponse
10697
+ * @param request - CreateAccessControlListRequest
10698
+ * @param runtime - runtime options for this request RuntimeOptions
10699
+ * @returns CreateAccessControlListResponse
10680
10700
  */
10681
10701
  async createAccessControlListWithOptions(request, runtime) {
10682
10702
  tea_util_1.default.validateModel(request);
@@ -10725,26 +10745,27 @@ class Client extends openapi_client_1.default {
10725
10745
  return $tea.cast(await this.callApi(params, req, runtime), new CreateAccessControlListResponse({}));
10726
10746
  }
10727
10747
  /**
10728
- * @summary Creates an access control list (ACL).
10748
+ * Creates an access control list (ACL).
10729
10749
  *
10730
- * @description You can create multiple ACLs. Each ACL can contain one or more IP addresses or CIDR blocks. Before you create an ACL, take note of the following limits:
10750
+ * @remarks
10751
+ * You can create multiple ACLs. Each ACL can contain one or more IP addresses or CIDR blocks. Before you create an ACL, take note of the following limits:
10731
10752
  * * An account can have a maximum of 50 ACLs in each region.
10732
10753
  * * You can add a maximum of 50 IP addresses or CIDR blocks at a time within an account.
10733
10754
  * * Each ACL can contain a maximum of 300 IP addresses or CIDR blocks.
10734
10755
  *
10735
- * @param request CreateAccessControlListRequest
10736
- * @return CreateAccessControlListResponse
10756
+ * @param request - CreateAccessControlListRequest
10757
+ * @returns CreateAccessControlListResponse
10737
10758
  */
10738
10759
  async createAccessControlList(request) {
10739
10760
  let runtime = new $Util.RuntimeOptions({});
10740
10761
  return await this.createAccessControlListWithOptions(request, runtime);
10741
10762
  }
10742
10763
  /**
10743
- * @summary Creates a domain name extension.
10764
+ * Adds an additional domain name.
10744
10765
  *
10745
- * @param request CreateDomainExtensionRequest
10746
- * @param runtime runtime options for this request RuntimeOptions
10747
- * @return CreateDomainExtensionResponse
10766
+ * @param request - CreateDomainExtensionRequest
10767
+ * @param runtime - runtime options for this request RuntimeOptions
10768
+ * @returns CreateDomainExtensionResponse
10748
10769
  */
10749
10770
  async createDomainExtensionWithOptions(request, runtime) {
10750
10771
  tea_util_1.default.validateModel(request);
@@ -10793,25 +10814,26 @@ class Client extends openapi_client_1.default {
10793
10814
  return $tea.cast(await this.callApi(params, req, runtime), new CreateDomainExtensionResponse({}));
10794
10815
  }
10795
10816
  /**
10796
- * @summary Creates a domain name extension.
10817
+ * Adds an additional domain name.
10797
10818
  *
10798
- * @param request CreateDomainExtensionRequest
10799
- * @return CreateDomainExtensionResponse
10819
+ * @param request - CreateDomainExtensionRequest
10820
+ * @returns CreateDomainExtensionResponse
10800
10821
  */
10801
10822
  async createDomainExtension(request) {
10802
10823
  let runtime = new $Util.RuntimeOptions({});
10803
10824
  return await this.createDomainExtensionWithOptions(request, runtime);
10804
10825
  }
10805
10826
  /**
10806
- * @summary Creates a Classic Load Balancer (CLB) instance.
10827
+ * Creates a Classic Load Balancer (CLB) instance.
10807
10828
  *
10808
- * @description * Before you create a CLB instance, call the [DescribeAvailableResource](~~DescribeAvailableResource~~) operation to query the resources available for purchase in the region where you want to create the CLB instance.
10829
+ * @remarks
10830
+ * Before you create a CLB instance, call the [DescribeAvailableResource](~~DescribeAvailableResource~~) operation to query the resources available for purchase in the region where you want to create the CLB instance.
10809
10831
  * * After a CLB instance is created, you are charged for using the CLB instance.
10810
10832
  * * The pay-as-you-go billing method supports the pay-by-specification and pay-by-LCU metering methods.
10811
10833
  *
10812
- * @param request CreateLoadBalancerRequest
10813
- * @param runtime runtime options for this request RuntimeOptions
10814
- * @return CreateLoadBalancerResponse
10834
+ * @param request - CreateLoadBalancerRequest
10835
+ * @param runtime - runtime options for this request RuntimeOptions
10836
+ * @returns CreateLoadBalancerResponse
10815
10837
  */
10816
10838
  async createLoadBalancerWithOptions(request, runtime) {
10817
10839
  tea_util_1.default.validateModel(request);
@@ -10914,29 +10936,31 @@ class Client extends openapi_client_1.default {
10914
10936
  return $tea.cast(await this.callApi(params, req, runtime), new CreateLoadBalancerResponse({}));
10915
10937
  }
10916
10938
  /**
10917
- * @summary Creates a Classic Load Balancer (CLB) instance.
10939
+ * Creates a Classic Load Balancer (CLB) instance.
10918
10940
  *
10919
- * @description * Before you create a CLB instance, call the [DescribeAvailableResource](~~DescribeAvailableResource~~) operation to query the resources available for purchase in the region where you want to create the CLB instance.
10941
+ * @remarks
10942
+ * Before you create a CLB instance, call the [DescribeAvailableResource](~~DescribeAvailableResource~~) operation to query the resources available for purchase in the region where you want to create the CLB instance.
10920
10943
  * * After a CLB instance is created, you are charged for using the CLB instance.
10921
10944
  * * The pay-as-you-go billing method supports the pay-by-specification and pay-by-LCU metering methods.
10922
10945
  *
10923
- * @param request CreateLoadBalancerRequest
10924
- * @return CreateLoadBalancerResponse
10946
+ * @param request - CreateLoadBalancerRequest
10947
+ * @returns CreateLoadBalancerResponse
10925
10948
  */
10926
10949
  async createLoadBalancer(request) {
10927
10950
  let runtime = new $Util.RuntimeOptions({});
10928
10951
  return await this.createLoadBalancerWithOptions(request, runtime);
10929
10952
  }
10930
10953
  /**
10931
- * @summary Creates an HTTP listener for a Classic Load Balancer (CLB) instance.
10954
+ * Creates an HTTP listener for a Classic Load Balancer (CLB) instance.
10932
10955
  *
10933
- * @description A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](~~StartLoadBalancerListener~~) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
10956
+ * @remarks
10957
+ * A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](~~StartLoadBalancerListener~~) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
10934
10958
  * ## Prerequisites
10935
10959
  * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](~~StartLoadBalancerListener~~).
10936
10960
  *
10937
- * @param request CreateLoadBalancerHTTPListenerRequest
10938
- * @param runtime runtime options for this request RuntimeOptions
10939
- * @return CreateLoadBalancerHTTPListenerResponse
10961
+ * @param request - CreateLoadBalancerHTTPListenerRequest
10962
+ * @param runtime - runtime options for this request RuntimeOptions
10963
+ * @returns CreateLoadBalancerHTTPListenerResponse
10940
10964
  */
10941
10965
  async createLoadBalancerHTTPListenerWithOptions(request, runtime) {
10942
10966
  tea_util_1.default.validateModel(request);
@@ -11081,29 +11105,31 @@ class Client extends openapi_client_1.default {
11081
11105
  return $tea.cast(await this.callApi(params, req, runtime), new CreateLoadBalancerHTTPListenerResponse({}));
11082
11106
  }
11083
11107
  /**
11084
- * @summary Creates an HTTP listener for a Classic Load Balancer (CLB) instance.
11108
+ * Creates an HTTP listener for a Classic Load Balancer (CLB) instance.
11085
11109
  *
11086
- * @description A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](~~StartLoadBalancerListener~~) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
11110
+ * @remarks
11111
+ * A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](~~StartLoadBalancerListener~~) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
11087
11112
  * ## Prerequisites
11088
11113
  * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](~~StartLoadBalancerListener~~).
11089
11114
  *
11090
- * @param request CreateLoadBalancerHTTPListenerRequest
11091
- * @return CreateLoadBalancerHTTPListenerResponse
11115
+ * @param request - CreateLoadBalancerHTTPListenerRequest
11116
+ * @returns CreateLoadBalancerHTTPListenerResponse
11092
11117
  */
11093
11118
  async createLoadBalancerHTTPListener(request) {
11094
11119
  let runtime = new $Util.RuntimeOptions({});
11095
11120
  return await this.createLoadBalancerHTTPListenerWithOptions(request, runtime);
11096
11121
  }
11097
11122
  /**
11098
- * @summary Creates an HTTPS listener.
11123
+ * Creates an HTTPS listener.
11099
11124
  *
11100
- * @description A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
11125
+ * @remarks
11126
+ * A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
11101
11127
  * ## Prerequisites
11102
11128
  * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://www.alibabacloud.com/help/en/server-load-balancer/latest/createloadbalancer-2).
11103
11129
  *
11104
- * @param request CreateLoadBalancerHTTPSListenerRequest
11105
- * @param runtime runtime options for this request RuntimeOptions
11106
- * @return CreateLoadBalancerHTTPSListenerResponse
11130
+ * @param request - CreateLoadBalancerHTTPSListenerRequest
11131
+ * @param runtime - runtime options for this request RuntimeOptions
11132
+ * @returns CreateLoadBalancerHTTPSListenerResponse
11107
11133
  */
11108
11134
  async createLoadBalancerHTTPSListenerWithOptions(request, runtime) {
11109
11135
  tea_util_1.default.validateModel(request);
@@ -11254,27 +11280,29 @@ class Client extends openapi_client_1.default {
11254
11280
  return $tea.cast(await this.callApi(params, req, runtime), new CreateLoadBalancerHTTPSListenerResponse({}));
11255
11281
  }
11256
11282
  /**
11257
- * @summary Creates an HTTPS listener.
11283
+ * Creates an HTTPS listener.
11258
11284
  *
11259
- * @description A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
11285
+ * @remarks
11286
+ * A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to start the listener. After the listener is started, the listener can forward traffic to backend servers.
11260
11287
  * ## Prerequisites
11261
11288
  * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://www.alibabacloud.com/help/en/server-load-balancer/latest/createloadbalancer-2).
11262
11289
  *
11263
- * @param request CreateLoadBalancerHTTPSListenerRequest
11264
- * @return CreateLoadBalancerHTTPSListenerResponse
11290
+ * @param request - CreateLoadBalancerHTTPSListenerRequest
11291
+ * @returns CreateLoadBalancerHTTPSListenerResponse
11265
11292
  */
11266
11293
  async createLoadBalancerHTTPSListener(request) {
11267
11294
  let runtime = new $Util.RuntimeOptions({});
11268
11295
  return await this.createLoadBalancerHTTPSListenerWithOptions(request, runtime);
11269
11296
  }
11270
11297
  /**
11271
- * @summary Creates a TCP listener.
11298
+ * Creates a TCP listener.
11272
11299
  *
11273
- * @description > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
11300
+ * @remarks
11301
+ * > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
11274
11302
  *
11275
- * @param request CreateLoadBalancerTCPListenerRequest
11276
- * @param runtime runtime options for this request RuntimeOptions
11277
- * @return CreateLoadBalancerTCPListenerResponse
11303
+ * @param request - CreateLoadBalancerTCPListenerRequest
11304
+ * @param runtime - runtime options for this request RuntimeOptions
11305
+ * @returns CreateLoadBalancerTCPListenerResponse
11278
11306
  */
11279
11307
  async createLoadBalancerTCPListenerWithOptions(request, runtime) {
11280
11308
  tea_util_1.default.validateModel(request);
@@ -11392,26 +11420,28 @@ class Client extends openapi_client_1.default {
11392
11420
  return $tea.cast(await this.callApi(params, req, runtime), new CreateLoadBalancerTCPListenerResponse({}));
11393
11421
  }
11394
11422
  /**
11395
- * @summary Creates a TCP listener.
11423
+ * Creates a TCP listener.
11396
11424
  *
11397
- * @description > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
11425
+ * @remarks
11426
+ * > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
11398
11427
  *
11399
- * @param request CreateLoadBalancerTCPListenerRequest
11400
- * @return CreateLoadBalancerTCPListenerResponse
11428
+ * @param request - CreateLoadBalancerTCPListenerRequest
11429
+ * @returns CreateLoadBalancerTCPListenerResponse
11401
11430
  */
11402
11431
  async createLoadBalancerTCPListener(request) {
11403
11432
  let runtime = new $Util.RuntimeOptions({});
11404
11433
  return await this.createLoadBalancerTCPListenerWithOptions(request, runtime);
11405
11434
  }
11406
11435
  /**
11407
- * @summary Creates a UDP listener.
11436
+ * Creates a UDP listener.
11408
11437
  *
11409
- * @description UDP listeners of Classic Load Balancer (CLB) instances in a classic network cannot pass client IP addresses to backend servers.
11438
+ * @remarks
11439
+ * UDP listeners of Classic Load Balancer (CLB) instances in a classic network cannot pass client IP addresses to backend servers.
11410
11440
  * > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
11411
11441
  *
11412
- * @param request CreateLoadBalancerUDPListenerRequest
11413
- * @param runtime runtime options for this request RuntimeOptions
11414
- * @return CreateLoadBalancerUDPListenerResponse
11442
+ * @param request - CreateLoadBalancerUDPListenerRequest
11443
+ * @param runtime - runtime options for this request RuntimeOptions
11444
+ * @returns CreateLoadBalancerUDPListenerResponse
11415
11445
  */
11416
11446
  async createLoadBalancerUDPListenerWithOptions(request, runtime) {
11417
11447
  tea_util_1.default.validateModel(request);
@@ -11511,24 +11541,25 @@ class Client extends openapi_client_1.default {
11511
11541
  return $tea.cast(await this.callApi(params, req, runtime), new CreateLoadBalancerUDPListenerResponse({}));
11512
11542
  }
11513
11543
  /**
11514
- * @summary Creates a UDP listener.
11544
+ * Creates a UDP listener.
11515
11545
  *
11516
- * @description UDP listeners of Classic Load Balancer (CLB) instances in a classic network cannot pass client IP addresses to backend servers.
11546
+ * @remarks
11547
+ * UDP listeners of Classic Load Balancer (CLB) instances in a classic network cannot pass client IP addresses to backend servers.
11517
11548
  * > A newly created listener is in the **stopped** state. After a listener is created, you can call the [StartLoadBalancerListener](https://help.aliyun.com/document_detail/27597.html) operation to enable the listener to forward traffic to backend servers.
11518
11549
  *
11519
- * @param request CreateLoadBalancerUDPListenerRequest
11520
- * @return CreateLoadBalancerUDPListenerResponse
11550
+ * @param request - CreateLoadBalancerUDPListenerRequest
11551
+ * @returns CreateLoadBalancerUDPListenerResponse
11521
11552
  */
11522
11553
  async createLoadBalancerUDPListener(request) {
11523
11554
  let runtime = new $Util.RuntimeOptions({});
11524
11555
  return await this.createLoadBalancerUDPListenerWithOptions(request, runtime);
11525
11556
  }
11526
11557
  /**
11527
- * @summary Creates a primary/secondary server group. A primary/secondary server group can contain only two Elastic Compute Service (ECS) instances. One of the ECS instances functions as the primary server and the other functions as the secondary server.
11558
+ * Creates a primary/secondary server group. Each primary/secondary server group consists of two backend servers. One backend server functions as the primary server, and the other backend server functions as the secondary backend server.
11528
11559
  *
11529
- * @param request CreateMasterSlaveServerGroupRequest
11530
- * @param runtime runtime options for this request RuntimeOptions
11531
- * @return CreateMasterSlaveServerGroupResponse
11560
+ * @param request - CreateMasterSlaveServerGroupRequest
11561
+ * @param runtime - runtime options for this request RuntimeOptions
11562
+ * @returns CreateMasterSlaveServerGroupResponse
11532
11563
  */
11533
11564
  async createMasterSlaveServerGroupWithOptions(request, runtime) {
11534
11565
  tea_util_1.default.validateModel(request);
@@ -11577,21 +11608,21 @@ class Client extends openapi_client_1.default {
11577
11608
  return $tea.cast(await this.callApi(params, req, runtime), new CreateMasterSlaveServerGroupResponse({}));
11578
11609
  }
11579
11610
  /**
11580
- * @summary Creates a primary/secondary server group. A primary/secondary server group can contain only two Elastic Compute Service (ECS) instances. One of the ECS instances functions as the primary server and the other functions as the secondary server.
11611
+ * Creates a primary/secondary server group. Each primary/secondary server group consists of two backend servers. One backend server functions as the primary server, and the other backend server functions as the secondary backend server.
11581
11612
  *
11582
- * @param request CreateMasterSlaveServerGroupRequest
11583
- * @return CreateMasterSlaveServerGroupResponse
11613
+ * @param request - CreateMasterSlaveServerGroupRequest
11614
+ * @returns CreateMasterSlaveServerGroupResponse
11584
11615
  */
11585
11616
  async createMasterSlaveServerGroup(request) {
11586
11617
  let runtime = new $Util.RuntimeOptions({});
11587
11618
  return await this.createMasterSlaveServerGroupWithOptions(request, runtime);
11588
11619
  }
11589
11620
  /**
11590
- * @summary Creates forwarding rules for an HTTP or HTTPS listener.
11621
+ * Creates forwarding rules for an HTTP or HTTPS listener.
11591
11622
  *
11592
- * @param request CreateRulesRequest
11593
- * @param runtime runtime options for this request RuntimeOptions
11594
- * @return CreateRulesResponse
11623
+ * @param request - CreateRulesRequest
11624
+ * @param runtime - runtime options for this request RuntimeOptions
11625
+ * @returns CreateRulesResponse
11595
11626
  */
11596
11627
  async createRulesWithOptions(request, runtime) {
11597
11628
  tea_util_1.default.validateModel(request);
@@ -11640,21 +11671,21 @@ class Client extends openapi_client_1.default {
11640
11671
  return $tea.cast(await this.callApi(params, req, runtime), new CreateRulesResponse({}));
11641
11672
  }
11642
11673
  /**
11643
- * @summary Creates forwarding rules for an HTTP or HTTPS listener.
11674
+ * Creates forwarding rules for an HTTP or HTTPS listener.
11644
11675
  *
11645
- * @param request CreateRulesRequest
11646
- * @return CreateRulesResponse
11676
+ * @param request - CreateRulesRequest
11677
+ * @returns CreateRulesResponse
11647
11678
  */
11648
11679
  async createRules(request) {
11649
11680
  let runtime = new $Util.RuntimeOptions({});
11650
11681
  return await this.createRulesWithOptions(request, runtime);
11651
11682
  }
11652
11683
  /**
11653
- * @summary Creates a Transport Layer Security (TLS) policy.
11684
+ * Creates a Transport Layer Security (TLS) policy.
11654
11685
  *
11655
- * @param request CreateTLSCipherPolicyRequest
11656
- * @param runtime runtime options for this request RuntimeOptions
11657
- * @return CreateTLSCipherPolicyResponse
11686
+ * @param request - CreateTLSCipherPolicyRequest
11687
+ * @param runtime - runtime options for this request RuntimeOptions
11688
+ * @returns CreateTLSCipherPolicyResponse
11658
11689
  */
11659
11690
  async createTLSCipherPolicyWithOptions(request, runtime) {
11660
11691
  tea_util_1.default.validateModel(request);
@@ -11700,21 +11731,21 @@ class Client extends openapi_client_1.default {
11700
11731
  return $tea.cast(await this.callApi(params, req, runtime), new CreateTLSCipherPolicyResponse({}));
11701
11732
  }
11702
11733
  /**
11703
- * @summary Creates a Transport Layer Security (TLS) policy.
11734
+ * Creates a Transport Layer Security (TLS) policy.
11704
11735
  *
11705
- * @param request CreateTLSCipherPolicyRequest
11706
- * @return CreateTLSCipherPolicyResponse
11736
+ * @param request - CreateTLSCipherPolicyRequest
11737
+ * @returns CreateTLSCipherPolicyResponse
11707
11738
  */
11708
11739
  async createTLSCipherPolicy(request) {
11709
11740
  let runtime = new $Util.RuntimeOptions({});
11710
11741
  return await this.createTLSCipherPolicyWithOptions(request, runtime);
11711
11742
  }
11712
11743
  /**
11713
- * @summary Creates a vServer group and adds backend servers to the vServer group.
11744
+ * Creates a vServer group and adds backend servers to the vServer group.
11714
11745
  *
11715
- * @param request CreateVServerGroupRequest
11716
- * @param runtime runtime options for this request RuntimeOptions
11717
- * @return CreateVServerGroupResponse
11746
+ * @param request - CreateVServerGroupRequest
11747
+ * @param runtime - runtime options for this request RuntimeOptions
11748
+ * @returns CreateVServerGroupResponse
11718
11749
  */
11719
11750
  async createVServerGroupWithOptions(request, runtime) {
11720
11751
  tea_util_1.default.validateModel(request);
@@ -11763,23 +11794,24 @@ class Client extends openapi_client_1.default {
11763
11794
  return $tea.cast(await this.callApi(params, req, runtime), new CreateVServerGroupResponse({}));
11764
11795
  }
11765
11796
  /**
11766
- * @summary Creates a vServer group and adds backend servers to the vServer group.
11797
+ * Creates a vServer group and adds backend servers to the vServer group.
11767
11798
  *
11768
- * @param request CreateVServerGroupRequest
11769
- * @return CreateVServerGroupResponse
11799
+ * @param request - CreateVServerGroupRequest
11800
+ * @returns CreateVServerGroupResponse
11770
11801
  */
11771
11802
  async createVServerGroup(request) {
11772
11803
  let runtime = new $Util.RuntimeOptions({});
11773
11804
  return await this.createVServerGroupWithOptions(request, runtime);
11774
11805
  }
11775
11806
  /**
11776
- * @summary Deletes an access control list (ACL).
11807
+ * Deletes an access control list (ACL).
11777
11808
  *
11778
- * @description You can delete an ACL only if it is not associated with a listener.
11809
+ * @remarks
11810
+ * You can delete an ACL only if it is not associated with a listener.
11779
11811
  *
11780
- * @param request DeleteAccessControlListRequest
11781
- * @param runtime runtime options for this request RuntimeOptions
11782
- * @return DeleteAccessControlListResponse
11812
+ * @param request - DeleteAccessControlListRequest
11813
+ * @param runtime - runtime options for this request RuntimeOptions
11814
+ * @returns DeleteAccessControlListResponse
11783
11815
  */
11784
11816
  async deleteAccessControlListWithOptions(request, runtime) {
11785
11817
  tea_util_1.default.validateModel(request);
@@ -11819,23 +11851,24 @@ class Client extends openapi_client_1.default {
11819
11851
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteAccessControlListResponse({}));
11820
11852
  }
11821
11853
  /**
11822
- * @summary Deletes an access control list (ACL).
11854
+ * Deletes an access control list (ACL).
11823
11855
  *
11824
- * @description You can delete an ACL only if it is not associated with a listener.
11856
+ * @remarks
11857
+ * You can delete an ACL only if it is not associated with a listener.
11825
11858
  *
11826
- * @param request DeleteAccessControlListRequest
11827
- * @return DeleteAccessControlListResponse
11859
+ * @param request - DeleteAccessControlListRequest
11860
+ * @returns DeleteAccessControlListResponse
11828
11861
  */
11829
11862
  async deleteAccessControlList(request) {
11830
11863
  let runtime = new $Util.RuntimeOptions({});
11831
11864
  return await this.deleteAccessControlListWithOptions(request, runtime);
11832
11865
  }
11833
11866
  /**
11834
- * @summary Deletes the access log of a Classic Load Balancer (CLB) instance.
11867
+ * Deletes the access log of a Classic Load Balancer (CLB) instance.
11835
11868
  *
11836
- * @param request DeleteAccessLogsDownloadAttributeRequest
11837
- * @param runtime runtime options for this request RuntimeOptions
11838
- * @return DeleteAccessLogsDownloadAttributeResponse
11869
+ * @param request - DeleteAccessLogsDownloadAttributeRequest
11870
+ * @param runtime - runtime options for this request RuntimeOptions
11871
+ * @returns DeleteAccessLogsDownloadAttributeResponse
11839
11872
  */
11840
11873
  async deleteAccessLogsDownloadAttributeWithOptions(request, runtime) {
11841
11874
  tea_util_1.default.validateModel(request);
@@ -11881,23 +11914,24 @@ class Client extends openapi_client_1.default {
11881
11914
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteAccessLogsDownloadAttributeResponse({}));
11882
11915
  }
11883
11916
  /**
11884
- * @summary Deletes the access log of a Classic Load Balancer (CLB) instance.
11917
+ * Deletes the access log of a Classic Load Balancer (CLB) instance.
11885
11918
  *
11886
- * @param request DeleteAccessLogsDownloadAttributeRequest
11887
- * @return DeleteAccessLogsDownloadAttributeResponse
11919
+ * @param request - DeleteAccessLogsDownloadAttributeRequest
11920
+ * @returns DeleteAccessLogsDownloadAttributeResponse
11888
11921
  */
11889
11922
  async deleteAccessLogsDownloadAttribute(request) {
11890
11923
  let runtime = new $Util.RuntimeOptions({});
11891
11924
  return await this.deleteAccessLogsDownloadAttributeWithOptions(request, runtime);
11892
11925
  }
11893
11926
  /**
11894
- * @summary Deletes a certificate authority (CA) certificate.
11927
+ * Deletes a certificate authority (CA) certificate.
11895
11928
  *
11896
- * @description You cannot delete a CA certificate that is in use.
11929
+ * @remarks
11930
+ * You cannot delete a CA certificate that is in use.
11897
11931
  *
11898
- * @param request DeleteCACertificateRequest
11899
- * @param runtime runtime options for this request RuntimeOptions
11900
- * @return DeleteCACertificateResponse
11932
+ * @param request - DeleteCACertificateRequest
11933
+ * @param runtime - runtime options for this request RuntimeOptions
11934
+ * @returns DeleteCACertificateResponse
11901
11935
  */
11902
11936
  async deleteCACertificateWithOptions(request, runtime) {
11903
11937
  tea_util_1.default.validateModel(request);
@@ -11937,23 +11971,24 @@ class Client extends openapi_client_1.default {
11937
11971
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteCACertificateResponse({}));
11938
11972
  }
11939
11973
  /**
11940
- * @summary Deletes a certificate authority (CA) certificate.
11974
+ * Deletes a certificate authority (CA) certificate.
11941
11975
  *
11942
- * @description You cannot delete a CA certificate that is in use.
11976
+ * @remarks
11977
+ * You cannot delete a CA certificate that is in use.
11943
11978
  *
11944
- * @param request DeleteCACertificateRequest
11945
- * @return DeleteCACertificateResponse
11979
+ * @param request - DeleteCACertificateRequest
11980
+ * @returns DeleteCACertificateResponse
11946
11981
  */
11947
11982
  async deleteCACertificate(request) {
11948
11983
  let runtime = new $Util.RuntimeOptions({});
11949
11984
  return await this.deleteCACertificateWithOptions(request, runtime);
11950
11985
  }
11951
11986
  /**
11952
- * @summary Deletes an additional domain name.
11987
+ * Deletes an additional domain name.
11953
11988
  *
11954
- * @param request DeleteDomainExtensionRequest
11955
- * @param runtime runtime options for this request RuntimeOptions
11956
- * @return DeleteDomainExtensionResponse
11989
+ * @param request - DeleteDomainExtensionRequest
11990
+ * @param runtime - runtime options for this request RuntimeOptions
11991
+ * @returns DeleteDomainExtensionResponse
11957
11992
  */
11958
11993
  async deleteDomainExtensionWithOptions(request, runtime) {
11959
11994
  tea_util_1.default.validateModel(request);
@@ -11993,23 +12028,24 @@ class Client extends openapi_client_1.default {
11993
12028
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteDomainExtensionResponse({}));
11994
12029
  }
11995
12030
  /**
11996
- * @summary Deletes an additional domain name.
12031
+ * Deletes an additional domain name.
11997
12032
  *
11998
- * @param request DeleteDomainExtensionRequest
11999
- * @return DeleteDomainExtensionResponse
12033
+ * @param request - DeleteDomainExtensionRequest
12034
+ * @returns DeleteDomainExtensionResponse
12000
12035
  */
12001
12036
  async deleteDomainExtension(request) {
12002
12037
  let runtime = new $Util.RuntimeOptions({});
12003
12038
  return await this.deleteDomainExtensionWithOptions(request, runtime);
12004
12039
  }
12005
12040
  /**
12006
- * @summary Deletes a pay-as-you-go Server Load Balancer (SLB) instance.
12041
+ * Deletes a pay-as-you-go Server Load Balancer (SLB) instance.
12007
12042
  *
12008
- * @description > The listeners and tags of the SLB instance are deleted along with the SLB instance.
12043
+ * @remarks
12044
+ * > The listeners and tags of the SLB instance are deleted along with the SLB instance.
12009
12045
  *
12010
- * @param request DeleteLoadBalancerRequest
12011
- * @param runtime runtime options for this request RuntimeOptions
12012
- * @return DeleteLoadBalancerResponse
12046
+ * @param request - DeleteLoadBalancerRequest
12047
+ * @param runtime - runtime options for this request RuntimeOptions
12048
+ * @returns DeleteLoadBalancerResponse
12013
12049
  */
12014
12050
  async deleteLoadBalancerWithOptions(request, runtime) {
12015
12051
  tea_util_1.default.validateModel(request);
@@ -12049,25 +12085,27 @@ class Client extends openapi_client_1.default {
12049
12085
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteLoadBalancerResponse({}));
12050
12086
  }
12051
12087
  /**
12052
- * @summary Deletes a pay-as-you-go Server Load Balancer (SLB) instance.
12088
+ * Deletes a pay-as-you-go Server Load Balancer (SLB) instance.
12053
12089
  *
12054
- * @description > The listeners and tags of the SLB instance are deleted along with the SLB instance.
12090
+ * @remarks
12091
+ * > The listeners and tags of the SLB instance are deleted along with the SLB instance.
12055
12092
  *
12056
- * @param request DeleteLoadBalancerRequest
12057
- * @return DeleteLoadBalancerResponse
12093
+ * @param request - DeleteLoadBalancerRequest
12094
+ * @returns DeleteLoadBalancerResponse
12058
12095
  */
12059
12096
  async deleteLoadBalancer(request) {
12060
12097
  let runtime = new $Util.RuntimeOptions({});
12061
12098
  return await this.deleteLoadBalancerWithOptions(request, runtime);
12062
12099
  }
12063
12100
  /**
12064
- * @summary Deletes a listener.
12101
+ * Deletes a listener.
12065
12102
  *
12066
- * @description > You can delete only listeners that are in the **stopped** or **running** state.
12103
+ * @remarks
12104
+ * > You can delete only listeners that are in the **stopped** or **running** state.
12067
12105
  *
12068
- * @param request DeleteLoadBalancerListenerRequest
12069
- * @param runtime runtime options for this request RuntimeOptions
12070
- * @return DeleteLoadBalancerListenerResponse
12106
+ * @param request - DeleteLoadBalancerListenerRequest
12107
+ * @param runtime - runtime options for this request RuntimeOptions
12108
+ * @returns DeleteLoadBalancerListenerResponse
12071
12109
  */
12072
12110
  async deleteLoadBalancerListenerWithOptions(request, runtime) {
12073
12111
  tea_util_1.default.validateModel(request);
@@ -12113,23 +12151,24 @@ class Client extends openapi_client_1.default {
12113
12151
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteLoadBalancerListenerResponse({}));
12114
12152
  }
12115
12153
  /**
12116
- * @summary Deletes a listener.
12154
+ * Deletes a listener.
12117
12155
  *
12118
- * @description > You can delete only listeners that are in the **stopped** or **running** state.
12156
+ * @remarks
12157
+ * > You can delete only listeners that are in the **stopped** or **running** state.
12119
12158
  *
12120
- * @param request DeleteLoadBalancerListenerRequest
12121
- * @return DeleteLoadBalancerListenerResponse
12159
+ * @param request - DeleteLoadBalancerListenerRequest
12160
+ * @returns DeleteLoadBalancerListenerResponse
12122
12161
  */
12123
12162
  async deleteLoadBalancerListener(request) {
12124
12163
  let runtime = new $Util.RuntimeOptions({});
12125
12164
  return await this.deleteLoadBalancerListenerWithOptions(request, runtime);
12126
12165
  }
12127
12166
  /**
12128
- * @summary Deletes an active/standby server group.
12167
+ * Deletes a primary/secondary server group.
12129
12168
  *
12130
- * @param request DeleteMasterSlaveServerGroupRequest
12131
- * @param runtime runtime options for this request RuntimeOptions
12132
- * @return DeleteMasterSlaveServerGroupResponse
12169
+ * @param request - DeleteMasterSlaveServerGroupRequest
12170
+ * @param runtime - runtime options for this request RuntimeOptions
12171
+ * @returns DeleteMasterSlaveServerGroupResponse
12133
12172
  */
12134
12173
  async deleteMasterSlaveServerGroupWithOptions(request, runtime) {
12135
12174
  tea_util_1.default.validateModel(request);
@@ -12169,24 +12208,25 @@ class Client extends openapi_client_1.default {
12169
12208
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteMasterSlaveServerGroupResponse({}));
12170
12209
  }
12171
12210
  /**
12172
- * @summary Deletes an active/standby server group.
12211
+ * Deletes a primary/secondary server group.
12173
12212
  *
12174
- * @param request DeleteMasterSlaveServerGroupRequest
12175
- * @return DeleteMasterSlaveServerGroupResponse
12213
+ * @param request - DeleteMasterSlaveServerGroupRequest
12214
+ * @returns DeleteMasterSlaveServerGroupResponse
12176
12215
  */
12177
12216
  async deleteMasterSlaveServerGroup(request) {
12178
12217
  let runtime = new $Util.RuntimeOptions({});
12179
12218
  return await this.deleteMasterSlaveServerGroupWithOptions(request, runtime);
12180
12219
  }
12181
12220
  /**
12182
- * @summary Deletes forwarding rules.
12221
+ * Deletes forwarding rules.
12183
12222
  *
12184
- * @description ## Limits
12223
+ * @remarks
12224
+ * ## Limits
12185
12225
  * The RuleIds parameter is required. You can specify up to 10 forwarding rules in each request.
12186
12226
  *
12187
- * @param request DeleteRulesRequest
12188
- * @param runtime runtime options for this request RuntimeOptions
12189
- * @return DeleteRulesResponse
12227
+ * @param request - DeleteRulesRequest
12228
+ * @param runtime - runtime options for this request RuntimeOptions
12229
+ * @returns DeleteRulesResponse
12190
12230
  */
12191
12231
  async deleteRulesWithOptions(request, runtime) {
12192
12232
  tea_util_1.default.validateModel(request);
@@ -12226,26 +12266,28 @@ class Client extends openapi_client_1.default {
12226
12266
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteRulesResponse({}));
12227
12267
  }
12228
12268
  /**
12229
- * @summary Deletes forwarding rules.
12269
+ * Deletes forwarding rules.
12230
12270
  *
12231
- * @description ## Limits
12271
+ * @remarks
12272
+ * ## Limits
12232
12273
  * The RuleIds parameter is required. You can specify up to 10 forwarding rules in each request.
12233
12274
  *
12234
- * @param request DeleteRulesRequest
12235
- * @return DeleteRulesResponse
12275
+ * @param request - DeleteRulesRequest
12276
+ * @returns DeleteRulesResponse
12236
12277
  */
12237
12278
  async deleteRules(request) {
12238
12279
  let runtime = new $Util.RuntimeOptions({});
12239
12280
  return await this.deleteRulesWithOptions(request, runtime);
12240
12281
  }
12241
12282
  /**
12242
- * @summary Deletes a server certificate.
12283
+ * Deletes a server certificate.
12243
12284
  *
12244
- * @description > You cannot delete server certificates that are in use.
12285
+ * @remarks
12286
+ * > You cannot delete server certificates that are in use.
12245
12287
  *
12246
- * @param request DeleteServerCertificateRequest
12247
- * @param runtime runtime options for this request RuntimeOptions
12248
- * @return DeleteServerCertificateResponse
12288
+ * @param request - DeleteServerCertificateRequest
12289
+ * @param runtime - runtime options for this request RuntimeOptions
12290
+ * @returns DeleteServerCertificateResponse
12249
12291
  */
12250
12292
  async deleteServerCertificateWithOptions(request, runtime) {
12251
12293
  tea_util_1.default.validateModel(request);
@@ -12285,26 +12327,28 @@ class Client extends openapi_client_1.default {
12285
12327
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteServerCertificateResponse({}));
12286
12328
  }
12287
12329
  /**
12288
- * @summary Deletes a server certificate.
12330
+ * Deletes a server certificate.
12289
12331
  *
12290
- * @description > You cannot delete server certificates that are in use.
12332
+ * @remarks
12333
+ * > You cannot delete server certificates that are in use.
12291
12334
  *
12292
- * @param request DeleteServerCertificateRequest
12293
- * @return DeleteServerCertificateResponse
12335
+ * @param request - DeleteServerCertificateRequest
12336
+ * @returns DeleteServerCertificateResponse
12294
12337
  */
12295
12338
  async deleteServerCertificate(request) {
12296
12339
  let runtime = new $Util.RuntimeOptions({});
12297
12340
  return await this.deleteServerCertificateWithOptions(request, runtime);
12298
12341
  }
12299
12342
  /**
12300
- * @summary Deletes a TLS policy.
12343
+ * Deletes a TLS policy.
12301
12344
  *
12302
- * @description ## Debugging
12345
+ * @remarks
12346
+ * ## Debugging
12303
12347
  * [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Slb\\&api=DeleteTLSCipherPolicy\\&type=RPC\\&version=2014-05-15)
12304
12348
  *
12305
- * @param request DeleteTLSCipherPolicyRequest
12306
- * @param runtime runtime options for this request RuntimeOptions
12307
- * @return DeleteTLSCipherPolicyResponse
12349
+ * @param request - DeleteTLSCipherPolicyRequest
12350
+ * @param runtime - runtime options for this request RuntimeOptions
12351
+ * @returns DeleteTLSCipherPolicyResponse
12308
12352
  */
12309
12353
  async deleteTLSCipherPolicyWithOptions(request, runtime) {
12310
12354
  tea_util_1.default.validateModel(request);
@@ -12344,24 +12388,25 @@ class Client extends openapi_client_1.default {
12344
12388
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteTLSCipherPolicyResponse({}));
12345
12389
  }
12346
12390
  /**
12347
- * @summary Deletes a TLS policy.
12391
+ * Deletes a TLS policy.
12348
12392
  *
12349
- * @description ## Debugging
12393
+ * @remarks
12394
+ * ## Debugging
12350
12395
  * [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=Slb\\&api=DeleteTLSCipherPolicy\\&type=RPC\\&version=2014-05-15)
12351
12396
  *
12352
- * @param request DeleteTLSCipherPolicyRequest
12353
- * @return DeleteTLSCipherPolicyResponse
12397
+ * @param request - DeleteTLSCipherPolicyRequest
12398
+ * @returns DeleteTLSCipherPolicyResponse
12354
12399
  */
12355
12400
  async deleteTLSCipherPolicy(request) {
12356
12401
  let runtime = new $Util.RuntimeOptions({});
12357
12402
  return await this.deleteTLSCipherPolicyWithOptions(request, runtime);
12358
12403
  }
12359
12404
  /**
12360
- * @summary Deletes a VServer group.
12405
+ * Deletes a VServer group.
12361
12406
  *
12362
- * @param request DeleteVServerGroupRequest
12363
- * @param runtime runtime options for this request RuntimeOptions
12364
- * @return DeleteVServerGroupResponse
12407
+ * @param request - DeleteVServerGroupRequest
12408
+ * @param runtime - runtime options for this request RuntimeOptions
12409
+ * @returns DeleteVServerGroupResponse
12365
12410
  */
12366
12411
  async deleteVServerGroupWithOptions(request, runtime) {
12367
12412
  tea_util_1.default.validateModel(request);
@@ -12401,21 +12446,21 @@ class Client extends openapi_client_1.default {
12401
12446
  return $tea.cast(await this.callApi(params, req, runtime), new DeleteVServerGroupResponse({}));
12402
12447
  }
12403
12448
  /**
12404
- * @summary Deletes a VServer group.
12449
+ * Deletes a VServer group.
12405
12450
  *
12406
- * @param request DeleteVServerGroupRequest
12407
- * @return DeleteVServerGroupResponse
12451
+ * @param request - DeleteVServerGroupRequest
12452
+ * @returns DeleteVServerGroupResponse
12408
12453
  */
12409
12454
  async deleteVServerGroup(request) {
12410
12455
  let runtime = new $Util.RuntimeOptions({});
12411
12456
  return await this.deleteVServerGroupWithOptions(request, runtime);
12412
12457
  }
12413
12458
  /**
12414
- * @summary Queries the configuration of an access control list (ACL).
12459
+ * Queries the configuration of an access control list (ACL).
12415
12460
  *
12416
- * @param request DescribeAccessControlListAttributeRequest
12417
- * @param runtime runtime options for this request RuntimeOptions
12418
- * @return DescribeAccessControlListAttributeResponse
12461
+ * @param request - DescribeAccessControlListAttributeRequest
12462
+ * @param runtime - runtime options for this request RuntimeOptions
12463
+ * @returns DescribeAccessControlListAttributeResponse
12419
12464
  */
12420
12465
  async describeAccessControlListAttributeWithOptions(request, runtime) {
12421
12466
  tea_util_1.default.validateModel(request);
@@ -12464,21 +12509,21 @@ class Client extends openapi_client_1.default {
12464
12509
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeAccessControlListAttributeResponse({}));
12465
12510
  }
12466
12511
  /**
12467
- * @summary Queries the configuration of an access control list (ACL).
12512
+ * Queries the configuration of an access control list (ACL).
12468
12513
  *
12469
- * @param request DescribeAccessControlListAttributeRequest
12470
- * @return DescribeAccessControlListAttributeResponse
12514
+ * @param request - DescribeAccessControlListAttributeRequest
12515
+ * @returns DescribeAccessControlListAttributeResponse
12471
12516
  */
12472
12517
  async describeAccessControlListAttribute(request) {
12473
12518
  let runtime = new $Util.RuntimeOptions({});
12474
12519
  return await this.describeAccessControlListAttributeWithOptions(request, runtime);
12475
12520
  }
12476
12521
  /**
12477
- * @summary Queries access control lists (ACLs).
12522
+ * Queries access control lists (ACLs).
12478
12523
  *
12479
- * @param request DescribeAccessControlListsRequest
12480
- * @param runtime runtime options for this request RuntimeOptions
12481
- * @return DescribeAccessControlListsResponse
12524
+ * @param request - DescribeAccessControlListsRequest
12525
+ * @param runtime - runtime options for this request RuntimeOptions
12526
+ * @returns DescribeAccessControlListsResponse
12482
12527
  */
12483
12528
  async describeAccessControlListsWithOptions(request, runtime) {
12484
12529
  tea_util_1.default.validateModel(request);
@@ -12533,21 +12578,21 @@ class Client extends openapi_client_1.default {
12533
12578
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeAccessControlListsResponse({}));
12534
12579
  }
12535
12580
  /**
12536
- * @summary Queries access control lists (ACLs).
12581
+ * Queries access control lists (ACLs).
12537
12582
  *
12538
- * @param request DescribeAccessControlListsRequest
12539
- * @return DescribeAccessControlListsResponse
12583
+ * @param request - DescribeAccessControlListsRequest
12584
+ * @returns DescribeAccessControlListsResponse
12540
12585
  */
12541
12586
  async describeAccessControlLists(request) {
12542
12587
  let runtime = new $Util.RuntimeOptions({});
12543
12588
  return await this.describeAccessControlListsWithOptions(request, runtime);
12544
12589
  }
12545
12590
  /**
12546
- * @summary Queries the access log of a Classic Load Balancer (CLB) instance.
12591
+ * Queries the access log of a Classic Load Balancer (CLB) instance.
12547
12592
  *
12548
- * @param request DescribeAccessLogsDownloadAttributeRequest
12549
- * @param runtime runtime options for this request RuntimeOptions
12550
- * @return DescribeAccessLogsDownloadAttributeResponse
12593
+ * @param request - DescribeAccessLogsDownloadAttributeRequest
12594
+ * @param runtime - runtime options for this request RuntimeOptions
12595
+ * @returns DescribeAccessLogsDownloadAttributeResponse
12551
12596
  */
12552
12597
  async describeAccessLogsDownloadAttributeWithOptions(request, runtime) {
12553
12598
  tea_util_1.default.validateModel(request);
@@ -12599,23 +12644,24 @@ class Client extends openapi_client_1.default {
12599
12644
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeAccessLogsDownloadAttributeResponse({}));
12600
12645
  }
12601
12646
  /**
12602
- * @summary Queries the access log of a Classic Load Balancer (CLB) instance.
12647
+ * Queries the access log of a Classic Load Balancer (CLB) instance.
12603
12648
  *
12604
- * @param request DescribeAccessLogsDownloadAttributeRequest
12605
- * @return DescribeAccessLogsDownloadAttributeResponse
12649
+ * @param request - DescribeAccessLogsDownloadAttributeRequest
12650
+ * @returns DescribeAccessLogsDownloadAttributeResponse
12606
12651
  */
12607
12652
  async describeAccessLogsDownloadAttribute(request) {
12608
12653
  let runtime = new $Util.RuntimeOptions({});
12609
12654
  return await this.describeAccessLogsDownloadAttributeWithOptions(request, runtime);
12610
12655
  }
12611
12656
  /**
12612
- * @summary Queries the available resources and resources that are available for purchase in the zones of a region.
12657
+ * Queries the available resources and resources that are available for purchase in the zones of a region.
12613
12658
  *
12614
- * @description > Only the available resources and zones are returned.
12659
+ * @remarks
12660
+ * > Only the available resources and zones are returned.
12615
12661
  *
12616
- * @param request DescribeAvailableResourceRequest
12617
- * @param runtime runtime options for this request RuntimeOptions
12618
- * @return DescribeAvailableResourceResponse
12662
+ * @param request - DescribeAvailableResourceRequest
12663
+ * @param runtime - runtime options for this request RuntimeOptions
12664
+ * @returns DescribeAvailableResourceResponse
12619
12665
  */
12620
12666
  async describeAvailableResourceWithOptions(request, runtime) {
12621
12667
  tea_util_1.default.validateModel(request);
@@ -12658,25 +12704,27 @@ class Client extends openapi_client_1.default {
12658
12704
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeAvailableResourceResponse({}));
12659
12705
  }
12660
12706
  /**
12661
- * @summary Queries the available resources and resources that are available for purchase in the zones of a region.
12707
+ * Queries the available resources and resources that are available for purchase in the zones of a region.
12662
12708
  *
12663
- * @description > Only the available resources and zones are returned.
12709
+ * @remarks
12710
+ * > Only the available resources and zones are returned.
12664
12711
  *
12665
- * @param request DescribeAvailableResourceRequest
12666
- * @return DescribeAvailableResourceResponse
12712
+ * @param request - DescribeAvailableResourceRequest
12713
+ * @returns DescribeAvailableResourceResponse
12667
12714
  */
12668
12715
  async describeAvailableResource(request) {
12669
12716
  let runtime = new $Util.RuntimeOptions({});
12670
12717
  return await this.describeAvailableResourceWithOptions(request, runtime);
12671
12718
  }
12672
12719
  /**
12673
- * @summary Queries certificate authority (CA) certificates.
12720
+ * Queries certificate authority (CA) certificates.
12674
12721
  *
12675
- * @description > To ensure data confidentiality, only the certificate fingerprint and name are returned. The certificate content is not returned.
12722
+ * @remarks
12723
+ * > To ensure data confidentiality, only the certificate fingerprint and name are returned. The certificate content is not returned.
12676
12724
  *
12677
- * @param request DescribeCACertificatesRequest
12678
- * @param runtime runtime options for this request RuntimeOptions
12679
- * @return DescribeCACertificatesResponse
12725
+ * @param request - DescribeCACertificatesRequest
12726
+ * @param runtime - runtime options for this request RuntimeOptions
12727
+ * @returns DescribeCACertificatesResponse
12680
12728
  */
12681
12729
  async describeCACertificatesWithOptions(request, runtime) {
12682
12730
  tea_util_1.default.validateModel(request);
@@ -12722,23 +12770,24 @@ class Client extends openapi_client_1.default {
12722
12770
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeCACertificatesResponse({}));
12723
12771
  }
12724
12772
  /**
12725
- * @summary Queries certificate authority (CA) certificates.
12773
+ * Queries certificate authority (CA) certificates.
12726
12774
  *
12727
- * @description > To ensure data confidentiality, only the certificate fingerprint and name are returned. The certificate content is not returned.
12775
+ * @remarks
12776
+ * > To ensure data confidentiality, only the certificate fingerprint and name are returned. The certificate content is not returned.
12728
12777
  *
12729
- * @param request DescribeCACertificatesRequest
12730
- * @return DescribeCACertificatesResponse
12778
+ * @param request - DescribeCACertificatesRequest
12779
+ * @returns DescribeCACertificatesResponse
12731
12780
  */
12732
12781
  async describeCACertificates(request) {
12733
12782
  let runtime = new $Util.RuntimeOptions({});
12734
12783
  return await this.describeCACertificatesWithOptions(request, runtime);
12735
12784
  }
12736
12785
  /**
12737
- * @summary Queries the attributes of an additional certificate.
12786
+ * Queries the attributes of an additional domain name.
12738
12787
  *
12739
- * @param request DescribeDomainExtensionAttributeRequest
12740
- * @param runtime runtime options for this request RuntimeOptions
12741
- * @return DescribeDomainExtensionAttributeResponse
12788
+ * @param request - DescribeDomainExtensionAttributeRequest
12789
+ * @param runtime - runtime options for this request RuntimeOptions
12790
+ * @returns DescribeDomainExtensionAttributeResponse
12742
12791
  */
12743
12792
  async describeDomainExtensionAttributeWithOptions(request, runtime) {
12744
12793
  tea_util_1.default.validateModel(request);
@@ -12778,21 +12827,21 @@ class Client extends openapi_client_1.default {
12778
12827
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeDomainExtensionAttributeResponse({}));
12779
12828
  }
12780
12829
  /**
12781
- * @summary Queries the attributes of an additional certificate.
12830
+ * Queries the attributes of an additional domain name.
12782
12831
  *
12783
- * @param request DescribeDomainExtensionAttributeRequest
12784
- * @return DescribeDomainExtensionAttributeResponse
12832
+ * @param request - DescribeDomainExtensionAttributeRequest
12833
+ * @returns DescribeDomainExtensionAttributeResponse
12785
12834
  */
12786
12835
  async describeDomainExtensionAttribute(request) {
12787
12836
  let runtime = new $Util.RuntimeOptions({});
12788
12837
  return await this.describeDomainExtensionAttributeWithOptions(request, runtime);
12789
12838
  }
12790
12839
  /**
12791
- * @summary Queries additional certificates.
12840
+ * Queries additional certificates.
12792
12841
  *
12793
- * @param request DescribeDomainExtensionsRequest
12794
- * @param runtime runtime options for this request RuntimeOptions
12795
- * @return DescribeDomainExtensionsResponse
12842
+ * @param request - DescribeDomainExtensionsRequest
12843
+ * @param runtime - runtime options for this request RuntimeOptions
12844
+ * @returns DescribeDomainExtensionsResponse
12796
12845
  */
12797
12846
  async describeDomainExtensionsWithOptions(request, runtime) {
12798
12847
  tea_util_1.default.validateModel(request);
@@ -12838,21 +12887,21 @@ class Client extends openapi_client_1.default {
12838
12887
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeDomainExtensionsResponse({}));
12839
12888
  }
12840
12889
  /**
12841
- * @summary Queries additional certificates.
12890
+ * Queries additional certificates.
12842
12891
  *
12843
- * @param request DescribeDomainExtensionsRequest
12844
- * @return DescribeDomainExtensionsResponse
12892
+ * @param request - DescribeDomainExtensionsRequest
12893
+ * @returns DescribeDomainExtensionsResponse
12845
12894
  */
12846
12895
  async describeDomainExtensions(request) {
12847
12896
  let runtime = new $Util.RuntimeOptions({});
12848
12897
  return await this.describeDomainExtensionsWithOptions(request, runtime);
12849
12898
  }
12850
12899
  /**
12851
- * @summary Queries the health status of backend servers.
12900
+ * Queries the health status of backend servers.
12852
12901
  *
12853
- * @param request DescribeHealthStatusRequest
12854
- * @param runtime runtime options for this request RuntimeOptions
12855
- * @return DescribeHealthStatusResponse
12902
+ * @param request - DescribeHealthStatusRequest
12903
+ * @param runtime - runtime options for this request RuntimeOptions
12904
+ * @returns DescribeHealthStatusResponse
12856
12905
  */
12857
12906
  async describeHealthStatusWithOptions(request, runtime) {
12858
12907
  tea_util_1.default.validateModel(request);
@@ -12898,21 +12947,21 @@ class Client extends openapi_client_1.default {
12898
12947
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeHealthStatusResponse({}));
12899
12948
  }
12900
12949
  /**
12901
- * @summary Queries the health status of backend servers.
12950
+ * Queries the health status of backend servers.
12902
12951
  *
12903
- * @param request DescribeHealthStatusRequest
12904
- * @return DescribeHealthStatusResponse
12952
+ * @param request - DescribeHealthStatusRequest
12953
+ * @returns DescribeHealthStatusResponse
12905
12954
  */
12906
12955
  async describeHealthStatus(request) {
12907
12956
  let runtime = new $Util.RuntimeOptions({});
12908
12957
  return await this.describeHealthStatusWithOptions(request, runtime);
12909
12958
  }
12910
12959
  /**
12911
- * @summary Queries the configurations of fine-grained monitoring in a region.
12960
+ * Queries the configurations of fine-grained monitoring in a region.
12912
12961
  *
12913
- * @param request DescribeHighDefinationMonitorRequest
12914
- * @param runtime runtime options for this request RuntimeOptions
12915
- * @return DescribeHighDefinationMonitorResponse
12962
+ * @param request - DescribeHighDefinationMonitorRequest
12963
+ * @param runtime - runtime options for this request RuntimeOptions
12964
+ * @returns DescribeHighDefinationMonitorResponse
12916
12965
  */
12917
12966
  async describeHighDefinationMonitorWithOptions(request, runtime) {
12918
12967
  tea_util_1.default.validateModel(request);
@@ -12952,21 +13001,21 @@ class Client extends openapi_client_1.default {
12952
13001
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeHighDefinationMonitorResponse({}));
12953
13002
  }
12954
13003
  /**
12955
- * @summary Queries the configurations of fine-grained monitoring in a region.
13004
+ * Queries the configurations of fine-grained monitoring in a region.
12956
13005
  *
12957
- * @param request DescribeHighDefinationMonitorRequest
12958
- * @return DescribeHighDefinationMonitorResponse
13006
+ * @param request - DescribeHighDefinationMonitorRequest
13007
+ * @returns DescribeHighDefinationMonitorResponse
12959
13008
  */
12960
13009
  async describeHighDefinationMonitor(request) {
12961
13010
  let runtime = new $Util.RuntimeOptions({});
12962
13011
  return await this.describeHighDefinationMonitorWithOptions(request, runtime);
12963
13012
  }
12964
13013
  /**
12965
- * @summary Queries the whitelist configurations of a listener.
13014
+ * Queries the whitelist configurations of a listener.
12966
13015
  *
12967
- * @param request DescribeListenerAccessControlAttributeRequest
12968
- * @param runtime runtime options for this request RuntimeOptions
12969
- * @return DescribeListenerAccessControlAttributeResponse
13016
+ * @param request - DescribeListenerAccessControlAttributeRequest
13017
+ * @param runtime - runtime options for this request RuntimeOptions
13018
+ * @returns DescribeListenerAccessControlAttributeResponse
12970
13019
  */
12971
13020
  async describeListenerAccessControlAttributeWithOptions(request, runtime) {
12972
13021
  tea_util_1.default.validateModel(request);
@@ -13012,23 +13061,24 @@ class Client extends openapi_client_1.default {
13012
13061
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeListenerAccessControlAttributeResponse({}));
13013
13062
  }
13014
13063
  /**
13015
- * @summary Queries the whitelist configurations of a listener.
13064
+ * Queries the whitelist configurations of a listener.
13016
13065
  *
13017
- * @param request DescribeListenerAccessControlAttributeRequest
13018
- * @return DescribeListenerAccessControlAttributeResponse
13066
+ * @param request - DescribeListenerAccessControlAttributeRequest
13067
+ * @returns DescribeListenerAccessControlAttributeResponse
13019
13068
  */
13020
13069
  async describeListenerAccessControlAttribute(request) {
13021
13070
  let runtime = new $Util.RuntimeOptions({});
13022
13071
  return await this.describeListenerAccessControlAttributeWithOptions(request, runtime);
13023
13072
  }
13024
13073
  /**
13025
- * @summary Queries the detail of a Classic Load Balancer (CLB) instance.
13074
+ * Queries the detail of a Classic Load Balancer (CLB) instance.
13026
13075
  *
13027
- * @description > If backend servers are deployed in a vServer group, you can call the [DescribeVServerGroupAttribute](https://help.aliyun.com/document_detail/35224.html) operation to query the backend servers.
13076
+ * @remarks
13077
+ * > If backend servers are deployed in a vServer group, you can call the [DescribeVServerGroupAttribute](https://help.aliyun.com/document_detail/35224.html) operation to query the backend servers.
13028
13078
  *
13029
- * @param request DescribeLoadBalancerAttributeRequest
13030
- * @param runtime runtime options for this request RuntimeOptions
13031
- * @return DescribeLoadBalancerAttributeResponse
13079
+ * @param request - DescribeLoadBalancerAttributeRequest
13080
+ * @param runtime - runtime options for this request RuntimeOptions
13081
+ * @returns DescribeLoadBalancerAttributeResponse
13032
13082
  */
13033
13083
  async describeLoadBalancerAttributeWithOptions(request, runtime) {
13034
13084
  tea_util_1.default.validateModel(request);
@@ -13068,26 +13118,28 @@ class Client extends openapi_client_1.default {
13068
13118
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeLoadBalancerAttributeResponse({}));
13069
13119
  }
13070
13120
  /**
13071
- * @summary Queries the detail of a Classic Load Balancer (CLB) instance.
13121
+ * Queries the detail of a Classic Load Balancer (CLB) instance.
13072
13122
  *
13073
- * @description > If backend servers are deployed in a vServer group, you can call the [DescribeVServerGroupAttribute](https://help.aliyun.com/document_detail/35224.html) operation to query the backend servers.
13123
+ * @remarks
13124
+ * > If backend servers are deployed in a vServer group, you can call the [DescribeVServerGroupAttribute](https://help.aliyun.com/document_detail/35224.html) operation to query the backend servers.
13074
13125
  *
13075
- * @param request DescribeLoadBalancerAttributeRequest
13076
- * @return DescribeLoadBalancerAttributeResponse
13126
+ * @param request - DescribeLoadBalancerAttributeRequest
13127
+ * @returns DescribeLoadBalancerAttributeResponse
13077
13128
  */
13078
13129
  async describeLoadBalancerAttribute(request) {
13079
13130
  let runtime = new $Util.RuntimeOptions({});
13080
13131
  return await this.describeLoadBalancerAttributeWithOptions(request, runtime);
13081
13132
  }
13082
13133
  /**
13083
- * @summary Queries the configurations of an HTTP listener.
13134
+ * Queries the configurations of an HTTP listener.
13084
13135
  *
13085
- * @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
13136
+ * @remarks
13137
+ * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
13086
13138
  * * An HTTP listener is created. For more information about how to create an HTTP listener, see [CreateLoadBalancerHTTPListener](https://help.aliyun.com/document_detail/27592.html).
13087
13139
  *
13088
- * @param request DescribeLoadBalancerHTTPListenerAttributeRequest
13089
- * @param runtime runtime options for this request RuntimeOptions
13090
- * @return DescribeLoadBalancerHTTPListenerAttributeResponse
13140
+ * @param request - DescribeLoadBalancerHTTPListenerAttributeRequest
13141
+ * @param runtime - runtime options for this request RuntimeOptions
13142
+ * @returns DescribeLoadBalancerHTTPListenerAttributeResponse
13091
13143
  */
13092
13144
  async describeLoadBalancerHTTPListenerAttributeWithOptions(request, runtime) {
13093
13145
  tea_util_1.default.validateModel(request);
@@ -13130,27 +13182,29 @@ class Client extends openapi_client_1.default {
13130
13182
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeLoadBalancerHTTPListenerAttributeResponse({}));
13131
13183
  }
13132
13184
  /**
13133
- * @summary Queries the configurations of an HTTP listener.
13185
+ * Queries the configurations of an HTTP listener.
13134
13186
  *
13135
- * @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
13187
+ * @remarks
13188
+ * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
13136
13189
  * * An HTTP listener is created. For more information about how to create an HTTP listener, see [CreateLoadBalancerHTTPListener](https://help.aliyun.com/document_detail/27592.html).
13137
13190
  *
13138
- * @param request DescribeLoadBalancerHTTPListenerAttributeRequest
13139
- * @return DescribeLoadBalancerHTTPListenerAttributeResponse
13191
+ * @param request - DescribeLoadBalancerHTTPListenerAttributeRequest
13192
+ * @returns DescribeLoadBalancerHTTPListenerAttributeResponse
13140
13193
  */
13141
13194
  async describeLoadBalancerHTTPListenerAttribute(request) {
13142
13195
  let runtime = new $Util.RuntimeOptions({});
13143
13196
  return await this.describeLoadBalancerHTTPListenerAttributeWithOptions(request, runtime);
13144
13197
  }
13145
13198
  /**
13146
- * @summary Queries the configurations of an HTTPS listener.
13199
+ * Queries the configurations of an HTTPS listener.
13147
13200
  *
13148
- * @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
13201
+ * @remarks
13202
+ * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
13149
13203
  * * An HTTPS listener is created. For more information about how to create an HTTPS listener, see [CreateLoadBalancerHTTPSListener](https://help.aliyun.com/document_detail/27593.html).
13150
13204
  *
13151
- * @param request DescribeLoadBalancerHTTPSListenerAttributeRequest
13152
- * @param runtime runtime options for this request RuntimeOptions
13153
- * @return DescribeLoadBalancerHTTPSListenerAttributeResponse
13205
+ * @param request - DescribeLoadBalancerHTTPSListenerAttributeRequest
13206
+ * @param runtime - runtime options for this request RuntimeOptions
13207
+ * @returns DescribeLoadBalancerHTTPSListenerAttributeResponse
13154
13208
  */
13155
13209
  async describeLoadBalancerHTTPSListenerAttributeWithOptions(request, runtime) {
13156
13210
  tea_util_1.default.validateModel(request);
@@ -13193,31 +13247,33 @@ class Client extends openapi_client_1.default {
13193
13247
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeLoadBalancerHTTPSListenerAttributeResponse({}));
13194
13248
  }
13195
13249
  /**
13196
- * @summary Queries the configurations of an HTTPS listener.
13250
+ * Queries the configurations of an HTTPS listener.
13197
13251
  *
13198
- * @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
13252
+ * @remarks
13253
+ * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
13199
13254
  * * An HTTPS listener is created. For more information about how to create an HTTPS listener, see [CreateLoadBalancerHTTPSListener](https://help.aliyun.com/document_detail/27593.html).
13200
13255
  *
13201
- * @param request DescribeLoadBalancerHTTPSListenerAttributeRequest
13202
- * @return DescribeLoadBalancerHTTPSListenerAttributeResponse
13256
+ * @param request - DescribeLoadBalancerHTTPSListenerAttributeRequest
13257
+ * @returns DescribeLoadBalancerHTTPSListenerAttributeResponse
13203
13258
  */
13204
13259
  async describeLoadBalancerHTTPSListenerAttribute(request) {
13205
13260
  let runtime = new $Util.RuntimeOptions({});
13206
13261
  return await this.describeLoadBalancerHTTPSListenerAttributeWithOptions(request, runtime);
13207
13262
  }
13208
13263
  /**
13209
- * @summary Queries the listeners of a Classic Load Balancer (CLB) instance.
13264
+ * Queries the listeners of a Classic Load Balancer (CLB) instance.
13210
13265
  *
13211
- * @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
13266
+ * @remarks
13267
+ * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
13212
13268
  * * One or more listeners are added to the CLB instance. For more information, see the following topics:
13213
13269
  * * [CreateLoadBalancerUDPListener](~~CreateLoadBalancerUDPListener~~)
13214
13270
  * * [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~)
13215
13271
  * * [CreateLoadBalancerHTTPListener](~~CreateLoadBalancerHTTPListener~~)
13216
13272
  * * [CreateLoadBalancerHTTPSListener](~~CreateLoadBalancerHTTPSListener~~)
13217
13273
  *
13218
- * @param request DescribeLoadBalancerListenersRequest
13219
- * @param runtime runtime options for this request RuntimeOptions
13220
- * @return DescribeLoadBalancerListenersResponse
13274
+ * @param request - DescribeLoadBalancerListenersRequest
13275
+ * @param runtime - runtime options for this request RuntimeOptions
13276
+ * @returns DescribeLoadBalancerListenersResponse
13221
13277
  */
13222
13278
  async describeLoadBalancerListenersWithOptions(request, runtime) {
13223
13279
  tea_util_1.default.validateModel(request);
@@ -13275,28 +13331,29 @@ class Client extends openapi_client_1.default {
13275
13331
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeLoadBalancerListenersResponse({}));
13276
13332
  }
13277
13333
  /**
13278
- * @summary Queries the listeners of a Classic Load Balancer (CLB) instance.
13334
+ * Queries the listeners of a Classic Load Balancer (CLB) instance.
13279
13335
  *
13280
- * @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
13336
+ * @remarks
13337
+ * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
13281
13338
  * * One or more listeners are added to the CLB instance. For more information, see the following topics:
13282
13339
  * * [CreateLoadBalancerUDPListener](~~CreateLoadBalancerUDPListener~~)
13283
13340
  * * [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~)
13284
13341
  * * [CreateLoadBalancerHTTPListener](~~CreateLoadBalancerHTTPListener~~)
13285
13342
  * * [CreateLoadBalancerHTTPSListener](~~CreateLoadBalancerHTTPSListener~~)
13286
13343
  *
13287
- * @param request DescribeLoadBalancerListenersRequest
13288
- * @return DescribeLoadBalancerListenersResponse
13344
+ * @param request - DescribeLoadBalancerListenersRequest
13345
+ * @returns DescribeLoadBalancerListenersResponse
13289
13346
  */
13290
13347
  async describeLoadBalancerListeners(request) {
13291
13348
  let runtime = new $Util.RuntimeOptions({});
13292
13349
  return await this.describeLoadBalancerListenersWithOptions(request, runtime);
13293
13350
  }
13294
13351
  /**
13295
- * @summary Queries the configurations of a TCP listener of Classic Load Balancer (CLB).
13352
+ * Queries the configurations of a TCP listener of Classic Load Balancer (CLB).
13296
13353
  *
13297
- * @param request DescribeLoadBalancerTCPListenerAttributeRequest
13298
- * @param runtime runtime options for this request RuntimeOptions
13299
- * @return DescribeLoadBalancerTCPListenerAttributeResponse
13354
+ * @param request - DescribeLoadBalancerTCPListenerAttributeRequest
13355
+ * @param runtime - runtime options for this request RuntimeOptions
13356
+ * @returns DescribeLoadBalancerTCPListenerAttributeResponse
13300
13357
  */
13301
13358
  async describeLoadBalancerTCPListenerAttributeWithOptions(request, runtime) {
13302
13359
  tea_util_1.default.validateModel(request);
@@ -13339,21 +13396,21 @@ class Client extends openapi_client_1.default {
13339
13396
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeLoadBalancerTCPListenerAttributeResponse({}));
13340
13397
  }
13341
13398
  /**
13342
- * @summary Queries the configurations of a TCP listener of Classic Load Balancer (CLB).
13399
+ * Queries the configurations of a TCP listener of Classic Load Balancer (CLB).
13343
13400
  *
13344
- * @param request DescribeLoadBalancerTCPListenerAttributeRequest
13345
- * @return DescribeLoadBalancerTCPListenerAttributeResponse
13401
+ * @param request - DescribeLoadBalancerTCPListenerAttributeRequest
13402
+ * @returns DescribeLoadBalancerTCPListenerAttributeResponse
13346
13403
  */
13347
13404
  async describeLoadBalancerTCPListenerAttribute(request) {
13348
13405
  let runtime = new $Util.RuntimeOptions({});
13349
13406
  return await this.describeLoadBalancerTCPListenerAttributeWithOptions(request, runtime);
13350
13407
  }
13351
13408
  /**
13352
- * @summary Queries the configurations of a UDP listener.
13409
+ * Queries the configurations of a UDP listener.
13353
13410
  *
13354
- * @param request DescribeLoadBalancerUDPListenerAttributeRequest
13355
- * @param runtime runtime options for this request RuntimeOptions
13356
- * @return DescribeLoadBalancerUDPListenerAttributeResponse
13411
+ * @param request - DescribeLoadBalancerUDPListenerAttributeRequest
13412
+ * @param runtime - runtime options for this request RuntimeOptions
13413
+ * @returns DescribeLoadBalancerUDPListenerAttributeResponse
13357
13414
  */
13358
13415
  async describeLoadBalancerUDPListenerAttributeWithOptions(request, runtime) {
13359
13416
  tea_util_1.default.validateModel(request);
@@ -13396,21 +13453,21 @@ class Client extends openapi_client_1.default {
13396
13453
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeLoadBalancerUDPListenerAttributeResponse({}));
13397
13454
  }
13398
13455
  /**
13399
- * @summary Queries the configurations of a UDP listener.
13456
+ * Queries the configurations of a UDP listener.
13400
13457
  *
13401
- * @param request DescribeLoadBalancerUDPListenerAttributeRequest
13402
- * @return DescribeLoadBalancerUDPListenerAttributeResponse
13458
+ * @param request - DescribeLoadBalancerUDPListenerAttributeRequest
13459
+ * @returns DescribeLoadBalancerUDPListenerAttributeResponse
13403
13460
  */
13404
13461
  async describeLoadBalancerUDPListenerAttribute(request) {
13405
13462
  let runtime = new $Util.RuntimeOptions({});
13406
13463
  return await this.describeLoadBalancerUDPListenerAttributeWithOptions(request, runtime);
13407
13464
  }
13408
13465
  /**
13409
- * @summary Queries Classic Load Balancer (CLB) instances.
13466
+ * Queries Classic Load Balancer (CLB) instances.
13410
13467
  *
13411
- * @param request DescribeLoadBalancersRequest
13412
- * @param runtime runtime options for this request RuntimeOptions
13413
- * @return DescribeLoadBalancersResponse
13468
+ * @param request - DescribeLoadBalancersRequest
13469
+ * @param runtime - runtime options for this request RuntimeOptions
13470
+ * @returns DescribeLoadBalancersResponse
13414
13471
  */
13415
13472
  async describeLoadBalancersWithOptions(request, runtime) {
13416
13473
  tea_util_1.default.validateModel(request);
@@ -13507,21 +13564,21 @@ class Client extends openapi_client_1.default {
13507
13564
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeLoadBalancersResponse({}));
13508
13565
  }
13509
13566
  /**
13510
- * @summary Queries Classic Load Balancer (CLB) instances.
13567
+ * Queries Classic Load Balancer (CLB) instances.
13511
13568
  *
13512
- * @param request DescribeLoadBalancersRequest
13513
- * @return DescribeLoadBalancersResponse
13569
+ * @param request - DescribeLoadBalancersRequest
13570
+ * @returns DescribeLoadBalancersResponse
13514
13571
  */
13515
13572
  async describeLoadBalancers(request) {
13516
13573
  let runtime = new $Util.RuntimeOptions({});
13517
13574
  return await this.describeLoadBalancersWithOptions(request, runtime);
13518
13575
  }
13519
13576
  /**
13520
- * @summary Queries the detailed information about a primary/secondary server group.
13577
+ * Queries the detailed information about a primary/secondary server group.
13521
13578
  *
13522
- * @param request DescribeMasterSlaveServerGroupAttributeRequest
13523
- * @param runtime runtime options for this request RuntimeOptions
13524
- * @return DescribeMasterSlaveServerGroupAttributeResponse
13579
+ * @param request - DescribeMasterSlaveServerGroupAttributeRequest
13580
+ * @param runtime - runtime options for this request RuntimeOptions
13581
+ * @returns DescribeMasterSlaveServerGroupAttributeResponse
13525
13582
  */
13526
13583
  async describeMasterSlaveServerGroupAttributeWithOptions(request, runtime) {
13527
13584
  tea_util_1.default.validateModel(request);
@@ -13561,21 +13618,21 @@ class Client extends openapi_client_1.default {
13561
13618
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeMasterSlaveServerGroupAttributeResponse({}));
13562
13619
  }
13563
13620
  /**
13564
- * @summary Queries the detailed information about a primary/secondary server group.
13621
+ * Queries the detailed information about a primary/secondary server group.
13565
13622
  *
13566
- * @param request DescribeMasterSlaveServerGroupAttributeRequest
13567
- * @return DescribeMasterSlaveServerGroupAttributeResponse
13623
+ * @param request - DescribeMasterSlaveServerGroupAttributeRequest
13624
+ * @returns DescribeMasterSlaveServerGroupAttributeResponse
13568
13625
  */
13569
13626
  async describeMasterSlaveServerGroupAttribute(request) {
13570
13627
  let runtime = new $Util.RuntimeOptions({});
13571
13628
  return await this.describeMasterSlaveServerGroupAttributeWithOptions(request, runtime);
13572
13629
  }
13573
13630
  /**
13574
- * @summary Queries primary/secondary server groups.
13631
+ * Queries primary/secondary server groups.
13575
13632
  *
13576
- * @param request DescribeMasterSlaveServerGroupsRequest
13577
- * @param runtime runtime options for this request RuntimeOptions
13578
- * @return DescribeMasterSlaveServerGroupsResponse
13633
+ * @param request - DescribeMasterSlaveServerGroupsRequest
13634
+ * @param runtime - runtime options for this request RuntimeOptions
13635
+ * @returns DescribeMasterSlaveServerGroupsResponse
13579
13636
  */
13580
13637
  async describeMasterSlaveServerGroupsWithOptions(request, runtime) {
13581
13638
  tea_util_1.default.validateModel(request);
@@ -13624,21 +13681,21 @@ class Client extends openapi_client_1.default {
13624
13681
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeMasterSlaveServerGroupsResponse({}));
13625
13682
  }
13626
13683
  /**
13627
- * @summary Queries primary/secondary server groups.
13684
+ * Queries primary/secondary server groups.
13628
13685
  *
13629
- * @param request DescribeMasterSlaveServerGroupsRequest
13630
- * @return DescribeMasterSlaveServerGroupsResponse
13686
+ * @param request - DescribeMasterSlaveServerGroupsRequest
13687
+ * @returns DescribeMasterSlaveServerGroupsResponse
13631
13688
  */
13632
13689
  async describeMasterSlaveServerGroups(request) {
13633
13690
  let runtime = new $Util.RuntimeOptions({});
13634
13691
  return await this.describeMasterSlaveServerGroupsWithOptions(request, runtime);
13635
13692
  }
13636
13693
  /**
13637
- * @summary Queries regions.
13694
+ * Queries available regions.
13638
13695
  *
13639
- * @param request DescribeRegionsRequest
13640
- * @param runtime runtime options for this request RuntimeOptions
13641
- * @return DescribeRegionsResponse
13696
+ * @param request - DescribeRegionsRequest
13697
+ * @param runtime - runtime options for this request RuntimeOptions
13698
+ * @returns DescribeRegionsResponse
13642
13699
  */
13643
13700
  async describeRegionsWithOptions(request, runtime) {
13644
13701
  tea_util_1.default.validateModel(request);
@@ -13678,21 +13735,21 @@ class Client extends openapi_client_1.default {
13678
13735
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
13679
13736
  }
13680
13737
  /**
13681
- * @summary Queries regions.
13738
+ * Queries available regions.
13682
13739
  *
13683
- * @param request DescribeRegionsRequest
13684
- * @return DescribeRegionsResponse
13740
+ * @param request - DescribeRegionsRequest
13741
+ * @returns DescribeRegionsResponse
13685
13742
  */
13686
13743
  async describeRegions(request) {
13687
13744
  let runtime = new $Util.RuntimeOptions({});
13688
13745
  return await this.describeRegionsWithOptions(request, runtime);
13689
13746
  }
13690
13747
  /**
13691
- * @summary Queries the configurations of a specified forwarding rule.
13748
+ * Queries the configurations of a specified forwarding rule.
13692
13749
  *
13693
- * @param request DescribeRuleAttributeRequest
13694
- * @param runtime runtime options for this request RuntimeOptions
13695
- * @return DescribeRuleAttributeResponse
13750
+ * @param request - DescribeRuleAttributeRequest
13751
+ * @param runtime - runtime options for this request RuntimeOptions
13752
+ * @returns DescribeRuleAttributeResponse
13696
13753
  */
13697
13754
  async describeRuleAttributeWithOptions(request, runtime) {
13698
13755
  tea_util_1.default.validateModel(request);
@@ -13732,21 +13789,21 @@ class Client extends openapi_client_1.default {
13732
13789
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeRuleAttributeResponse({}));
13733
13790
  }
13734
13791
  /**
13735
- * @summary Queries the configurations of a specified forwarding rule.
13792
+ * Queries the configurations of a specified forwarding rule.
13736
13793
  *
13737
- * @param request DescribeRuleAttributeRequest
13738
- * @return DescribeRuleAttributeResponse
13794
+ * @param request - DescribeRuleAttributeRequest
13795
+ * @returns DescribeRuleAttributeResponse
13739
13796
  */
13740
13797
  async describeRuleAttribute(request) {
13741
13798
  let runtime = new $Util.RuntimeOptions({});
13742
13799
  return await this.describeRuleAttributeWithOptions(request, runtime);
13743
13800
  }
13744
13801
  /**
13745
- * @summary Queries the forwarding rules that are configured for a specified listener.
13802
+ * Queries the forwarding rules that are configured for a specified listener.
13746
13803
  *
13747
- * @param request DescribeRulesRequest
13748
- * @param runtime runtime options for this request RuntimeOptions
13749
- * @return DescribeRulesResponse
13804
+ * @param request - DescribeRulesRequest
13805
+ * @param runtime - runtime options for this request RuntimeOptions
13806
+ * @returns DescribeRulesResponse
13750
13807
  */
13751
13808
  async describeRulesWithOptions(request, runtime) {
13752
13809
  tea_util_1.default.validateModel(request);
@@ -13792,23 +13849,24 @@ class Client extends openapi_client_1.default {
13792
13849
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeRulesResponse({}));
13793
13850
  }
13794
13851
  /**
13795
- * @summary Queries the forwarding rules that are configured for a specified listener.
13852
+ * Queries the forwarding rules that are configured for a specified listener.
13796
13853
  *
13797
- * @param request DescribeRulesRequest
13798
- * @return DescribeRulesResponse
13854
+ * @param request - DescribeRulesRequest
13855
+ * @returns DescribeRulesResponse
13799
13856
  */
13800
13857
  async describeRules(request) {
13801
13858
  let runtime = new $Util.RuntimeOptions({});
13802
13859
  return await this.describeRulesWithOptions(request, runtime);
13803
13860
  }
13804
13861
  /**
13805
- * @summary Queries server certificates of Classic Load Balancer (CLB) instances in a specified region.
13862
+ * Queries the server certificates in a region.
13806
13863
  *
13807
- * @description > For security reasons, only fingerprints and names of the server certificates are returned. The content of the server certificates and private keys is not returned.
13864
+ * @remarks
13865
+ * > For security reasons, only the fingerprints and names of server certificates are returned. The content of server certificates and private keys is not returned.
13808
13866
  *
13809
- * @param request DescribeServerCertificatesRequest
13810
- * @param runtime runtime options for this request RuntimeOptions
13811
- * @return DescribeServerCertificatesResponse
13867
+ * @param request - DescribeServerCertificatesRequest
13868
+ * @param runtime - runtime options for this request RuntimeOptions
13869
+ * @returns DescribeServerCertificatesResponse
13812
13870
  */
13813
13871
  async describeServerCertificatesWithOptions(request, runtime) {
13814
13872
  tea_util_1.default.validateModel(request);
@@ -13854,30 +13912,32 @@ class Client extends openapi_client_1.default {
13854
13912
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeServerCertificatesResponse({}));
13855
13913
  }
13856
13914
  /**
13857
- * @summary Queries server certificates of Classic Load Balancer (CLB) instances in a specified region.
13915
+ * Queries the server certificates in a region.
13858
13916
  *
13859
- * @description > For security reasons, only fingerprints and names of the server certificates are returned. The content of the server certificates and private keys is not returned.
13917
+ * @remarks
13918
+ * > For security reasons, only the fingerprints and names of server certificates are returned. The content of server certificates and private keys is not returned.
13860
13919
  *
13861
- * @param request DescribeServerCertificatesRequest
13862
- * @return DescribeServerCertificatesResponse
13920
+ * @param request - DescribeServerCertificatesRequest
13921
+ * @returns DescribeServerCertificatesResponse
13863
13922
  */
13864
13923
  async describeServerCertificates(request) {
13865
13924
  let runtime = new $Util.RuntimeOptions({});
13866
13925
  return await this.describeServerCertificatesWithOptions(request, runtime);
13867
13926
  }
13868
13927
  /**
13869
- * @summary Queries tags.
13870
- *
13871
- * @description When you call this operation, take note of the following items:
13872
- * * You can query tags by instance ID, tag key, and tag value. If the operation is successful, the system returns all tags that match the specified conditions.
13873
- * * The logical relationship among the specified conditions is AND. Only tags that match all the specified conditions are returned.
13874
- * * If the Tagkey parameter is set and the Tagvalue parameter is not set, all tags that contain the specified tag key are returned.
13875
- * * If you set the Tagvalue parameter in a request, you must also set the Tagkey parameter in the request.
13876
- * * If you set both the Tagkey and Tagvalue parameters, only tags that contain the specified keys and values are returned.
13877
- *
13878
- * @param request DescribeTagsRequest
13879
- * @param runtime runtime options for this request RuntimeOptions
13880
- * @return DescribeTagsResponse
13928
+ * Queries tags.
13929
+ *
13930
+ * @remarks
13931
+ * Take note of the following items:
13932
+ * * The system queries tags based on the instance ID, tag key, and tag value specified by you.
13933
+ * * If the logical relationship among the specified conditions is AND, only tags that match all the specified conditions are returned.
13934
+ * * If the Tagkey parameter is specified and but Tagvalue parameter is not specified, all tags that contain the specified tag key are returned.
13935
+ * * If you specify the Tagvalue parameter in a request, you must also specify the Tagkey parameter in the request.
13936
+ * * If you specify both the Tagkey and Tagvalue parameters, only tags that contain the specified keys and values are returned.
13937
+ *
13938
+ * @param request - DescribeTagsRequest
13939
+ * @param runtime - runtime options for this request RuntimeOptions
13940
+ * @returns DescribeTagsResponse
13881
13941
  */
13882
13942
  async describeTagsWithOptions(request, runtime) {
13883
13943
  tea_util_1.default.validateModel(request);
@@ -13929,28 +13989,29 @@ class Client extends openapi_client_1.default {
13929
13989
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeTagsResponse({}));
13930
13990
  }
13931
13991
  /**
13932
- * @summary Queries tags.
13933
- *
13934
- * @description When you call this operation, take note of the following items:
13935
- * * You can query tags by instance ID, tag key, and tag value. If the operation is successful, the system returns all tags that match the specified conditions.
13936
- * * The logical relationship among the specified conditions is AND. Only tags that match all the specified conditions are returned.
13937
- * * If the Tagkey parameter is set and the Tagvalue parameter is not set, all tags that contain the specified tag key are returned.
13938
- * * If you set the Tagvalue parameter in a request, you must also set the Tagkey parameter in the request.
13939
- * * If you set both the Tagkey and Tagvalue parameters, only tags that contain the specified keys and values are returned.
13940
- *
13941
- * @param request DescribeTagsRequest
13942
- * @return DescribeTagsResponse
13992
+ * Queries tags.
13993
+ *
13994
+ * @remarks
13995
+ * Take note of the following items:
13996
+ * * The system queries tags based on the instance ID, tag key, and tag value specified by you.
13997
+ * * If the logical relationship among the specified conditions is AND, only tags that match all the specified conditions are returned.
13998
+ * * If the Tagkey parameter is specified and but Tagvalue parameter is not specified, all tags that contain the specified tag key are returned.
13999
+ * * If you specify the Tagvalue parameter in a request, you must also specify the Tagkey parameter in the request.
14000
+ * * If you specify both the Tagkey and Tagvalue parameters, only tags that contain the specified keys and values are returned.
14001
+ *
14002
+ * @param request - DescribeTagsRequest
14003
+ * @returns DescribeTagsResponse
13943
14004
  */
13944
14005
  async describeTags(request) {
13945
14006
  let runtime = new $Util.RuntimeOptions({});
13946
14007
  return await this.describeTagsWithOptions(request, runtime);
13947
14008
  }
13948
14009
  /**
13949
- * @summary Queries detailed information about a vServer group.
14010
+ * Queries the detailed information about a vServer group.
13950
14011
  *
13951
- * @param request DescribeVServerGroupAttributeRequest
13952
- * @param runtime runtime options for this request RuntimeOptions
13953
- * @return DescribeVServerGroupAttributeResponse
14012
+ * @param request - DescribeVServerGroupAttributeRequest
14013
+ * @param runtime - runtime options for this request RuntimeOptions
14014
+ * @returns DescribeVServerGroupAttributeResponse
13954
14015
  */
13955
14016
  async describeVServerGroupAttributeWithOptions(request, runtime) {
13956
14017
  tea_util_1.default.validateModel(request);
@@ -13990,21 +14051,21 @@ class Client extends openapi_client_1.default {
13990
14051
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeVServerGroupAttributeResponse({}));
13991
14052
  }
13992
14053
  /**
13993
- * @summary Queries detailed information about a vServer group.
14054
+ * Queries the detailed information about a vServer group.
13994
14055
  *
13995
- * @param request DescribeVServerGroupAttributeRequest
13996
- * @return DescribeVServerGroupAttributeResponse
14056
+ * @param request - DescribeVServerGroupAttributeRequest
14057
+ * @returns DescribeVServerGroupAttributeResponse
13997
14058
  */
13998
14059
  async describeVServerGroupAttribute(request) {
13999
14060
  let runtime = new $Util.RuntimeOptions({});
14000
14061
  return await this.describeVServerGroupAttributeWithOptions(request, runtime);
14001
14062
  }
14002
14063
  /**
14003
- * @summary Queries server groups.
14064
+ * Queries vServer groups.
14004
14065
  *
14005
- * @param request DescribeVServerGroupsRequest
14006
- * @param runtime runtime options for this request RuntimeOptions
14007
- * @return DescribeVServerGroupsResponse
14066
+ * @param request - DescribeVServerGroupsRequest
14067
+ * @param runtime - runtime options for this request RuntimeOptions
14068
+ * @returns DescribeVServerGroupsResponse
14008
14069
  */
14009
14070
  async describeVServerGroupsWithOptions(request, runtime) {
14010
14071
  tea_util_1.default.validateModel(request);
@@ -14056,21 +14117,21 @@ class Client extends openapi_client_1.default {
14056
14117
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeVServerGroupsResponse({}));
14057
14118
  }
14058
14119
  /**
14059
- * @summary Queries server groups.
14120
+ * Queries vServer groups.
14060
14121
  *
14061
- * @param request DescribeVServerGroupsRequest
14062
- * @return DescribeVServerGroupsResponse
14122
+ * @param request - DescribeVServerGroupsRequest
14123
+ * @returns DescribeVServerGroupsResponse
14063
14124
  */
14064
14125
  async describeVServerGroups(request) {
14065
14126
  let runtime = new $Util.RuntimeOptions({});
14066
14127
  return await this.describeVServerGroupsWithOptions(request, runtime);
14067
14128
  }
14068
14129
  /**
14069
- * @summary Queries the zones in a region.
14130
+ * Queries the zones in a region.
14070
14131
  *
14071
- * @param request DescribeZonesRequest
14072
- * @param runtime runtime options for this request RuntimeOptions
14073
- * @return DescribeZonesResponse
14132
+ * @param request - DescribeZonesRequest
14133
+ * @param runtime - runtime options for this request RuntimeOptions
14134
+ * @returns DescribeZonesResponse
14074
14135
  */
14075
14136
  async describeZonesWithOptions(request, runtime) {
14076
14137
  tea_util_1.default.validateModel(request);
@@ -14107,21 +14168,21 @@ class Client extends openapi_client_1.default {
14107
14168
  return $tea.cast(await this.callApi(params, req, runtime), new DescribeZonesResponse({}));
14108
14169
  }
14109
14170
  /**
14110
- * @summary Queries the zones in a region.
14171
+ * Queries the zones in a region.
14111
14172
  *
14112
- * @param request DescribeZonesRequest
14113
- * @return DescribeZonesResponse
14173
+ * @param request - DescribeZonesRequest
14174
+ * @returns DescribeZonesResponse
14114
14175
  */
14115
14176
  async describeZones(request) {
14116
14177
  let runtime = new $Util.RuntimeOptions({});
14117
14178
  return await this.describeZonesWithOptions(request, runtime);
14118
14179
  }
14119
14180
  /**
14120
- * @summary Enables fine-grained monitoring for the current region.
14181
+ * Enables fine-grained monitoring for the current region.
14121
14182
  *
14122
- * @param request EnableHighDefinationMonitorRequest
14123
- * @param runtime runtime options for this request RuntimeOptions
14124
- * @return EnableHighDefinationMonitorResponse
14183
+ * @param request - EnableHighDefinationMonitorRequest
14184
+ * @param runtime - runtime options for this request RuntimeOptions
14185
+ * @returns EnableHighDefinationMonitorResponse
14125
14186
  */
14126
14187
  async enableHighDefinationMonitorWithOptions(request, runtime) {
14127
14188
  tea_util_1.default.validateModel(request);
@@ -14167,21 +14228,21 @@ class Client extends openapi_client_1.default {
14167
14228
  return $tea.cast(await this.callApi(params, req, runtime), new EnableHighDefinationMonitorResponse({}));
14168
14229
  }
14169
14230
  /**
14170
- * @summary Enables fine-grained monitoring for the current region.
14231
+ * Enables fine-grained monitoring for the current region.
14171
14232
  *
14172
- * @param request EnableHighDefinationMonitorRequest
14173
- * @return EnableHighDefinationMonitorResponse
14233
+ * @param request - EnableHighDefinationMonitorRequest
14234
+ * @returns EnableHighDefinationMonitorResponse
14174
14235
  */
14175
14236
  async enableHighDefinationMonitor(request) {
14176
14237
  let runtime = new $Util.RuntimeOptions({});
14177
14238
  return await this.enableHighDefinationMonitorWithOptions(request, runtime);
14178
14239
  }
14179
14240
  /**
14180
- * @summary Queries Transport Layer Security (TLS) policies.
14241
+ * Queries Transport Layer Security (TLS) policies.
14181
14242
  *
14182
- * @param request ListTLSCipherPoliciesRequest
14183
- * @param runtime runtime options for this request RuntimeOptions
14184
- * @return ListTLSCipherPoliciesResponse
14243
+ * @param request - ListTLSCipherPoliciesRequest
14244
+ * @param runtime - runtime options for this request RuntimeOptions
14245
+ * @returns ListTLSCipherPoliciesResponse
14185
14246
  */
14186
14247
  async listTLSCipherPoliciesWithOptions(request, runtime) {
14187
14248
  tea_util_1.default.validateModel(request);
@@ -14233,26 +14294,27 @@ class Client extends openapi_client_1.default {
14233
14294
  return $tea.cast(await this.callApi(params, req, runtime), new ListTLSCipherPoliciesResponse({}));
14234
14295
  }
14235
14296
  /**
14236
- * @summary Queries Transport Layer Security (TLS) policies.
14297
+ * Queries Transport Layer Security (TLS) policies.
14237
14298
  *
14238
- * @param request ListTLSCipherPoliciesRequest
14239
- * @return ListTLSCipherPoliciesResponse
14299
+ * @param request - ListTLSCipherPoliciesRequest
14300
+ * @returns ListTLSCipherPoliciesResponse
14240
14301
  */
14241
14302
  async listTLSCipherPolicies(request) {
14242
14303
  let runtime = new $Util.RuntimeOptions({});
14243
14304
  return await this.listTLSCipherPoliciesWithOptions(request, runtime);
14244
14305
  }
14245
14306
  /**
14246
- * @summary Queries tags that are added to one or more instances.
14307
+ * Queries the tags that are added to resources.
14247
14308
  *
14248
- * @description * Set **ResourceId.N** or **Tag.N** that consists of **Tag.N.Key** and **Tag.N.Value** in the request to specify the object to be queried.
14309
+ * @remarks
14310
+ * Set **ResourceId.N** or **Tag.N** that consists of **Tag.N.Key** and **Tag.N.Value** in the request to specify the object to be queried.
14249
14311
  * * **Tag.N** is a resource tag that consists of a key-value pair. If you set only **Tag.N.Key**, all tag values that are associated with the specified tag key are returned. If you set only **Tag.N.Value**, an error message is returned.
14250
14312
  * * If you set **Tag.N** and **ResourceId.N** to filter tags, **ResourceId.N** must match all specified key-value pairs.
14251
14313
  * * If you specify multiple key-value pairs, resources that contain these key-value pairs are returned.
14252
14314
  *
14253
- * @param request ListTagResourcesRequest
14254
- * @param runtime runtime options for this request RuntimeOptions
14255
- * @return ListTagResourcesResponse
14315
+ * @param request - ListTagResourcesRequest
14316
+ * @param runtime - runtime options for this request RuntimeOptions
14317
+ * @returns ListTagResourcesResponse
14256
14318
  */
14257
14319
  async listTagResourcesWithOptions(request, runtime) {
14258
14320
  tea_util_1.default.validateModel(request);
@@ -14301,26 +14363,27 @@ class Client extends openapi_client_1.default {
14301
14363
  return $tea.cast(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
14302
14364
  }
14303
14365
  /**
14304
- * @summary Queries tags that are added to one or more instances.
14366
+ * Queries the tags that are added to resources.
14305
14367
  *
14306
- * @description * Set **ResourceId.N** or **Tag.N** that consists of **Tag.N.Key** and **Tag.N.Value** in the request to specify the object to be queried.
14368
+ * @remarks
14369
+ * Set **ResourceId.N** or **Tag.N** that consists of **Tag.N.Key** and **Tag.N.Value** in the request to specify the object to be queried.
14307
14370
  * * **Tag.N** is a resource tag that consists of a key-value pair. If you set only **Tag.N.Key**, all tag values that are associated with the specified tag key are returned. If you set only **Tag.N.Value**, an error message is returned.
14308
14371
  * * If you set **Tag.N** and **ResourceId.N** to filter tags, **ResourceId.N** must match all specified key-value pairs.
14309
14372
  * * If you specify multiple key-value pairs, resources that contain these key-value pairs are returned.
14310
14373
  *
14311
- * @param request ListTagResourcesRequest
14312
- * @return ListTagResourcesResponse
14374
+ * @param request - ListTagResourcesRequest
14375
+ * @returns ListTagResourcesResponse
14313
14376
  */
14314
14377
  async listTagResources(request) {
14315
14378
  let runtime = new $Util.RuntimeOptions({});
14316
14379
  return await this.listTagResourcesWithOptions(request, runtime);
14317
14380
  }
14318
14381
  /**
14319
- * @summary Modifies the configuration of fine-grained monitoring in a specified region.
14382
+ * Modifies the configuration of fine-grained monitoring in a specified region.
14320
14383
  *
14321
- * @param request ModifyHighDefinationMonitorRequest
14322
- * @param runtime runtime options for this request RuntimeOptions
14323
- * @return ModifyHighDefinationMonitorResponse
14384
+ * @param request - ModifyHighDefinationMonitorRequest
14385
+ * @param runtime - runtime options for this request RuntimeOptions
14386
+ * @returns ModifyHighDefinationMonitorResponse
14324
14387
  */
14325
14388
  async modifyHighDefinationMonitorWithOptions(request, runtime) {
14326
14389
  tea_util_1.default.validateModel(request);
@@ -14363,24 +14426,25 @@ class Client extends openapi_client_1.default {
14363
14426
  return $tea.cast(await this.callApi(params, req, runtime), new ModifyHighDefinationMonitorResponse({}));
14364
14427
  }
14365
14428
  /**
14366
- * @summary Modifies the configuration of fine-grained monitoring in a specified region.
14429
+ * Modifies the configuration of fine-grained monitoring in a specified region.
14367
14430
  *
14368
- * @param request ModifyHighDefinationMonitorRequest
14369
- * @return ModifyHighDefinationMonitorResponse
14431
+ * @param request - ModifyHighDefinationMonitorRequest
14432
+ * @returns ModifyHighDefinationMonitorResponse
14370
14433
  */
14371
14434
  async modifyHighDefinationMonitor(request) {
14372
14435
  let runtime = new $Util.RuntimeOptions({});
14373
14436
  return await this.modifyHighDefinationMonitorWithOptions(request, runtime);
14374
14437
  }
14375
14438
  /**
14376
- * @summary Changes the metering method of a pay-as-you-go Classic Load Balancer (CLB) instance.
14439
+ * Changes the metering method of a pay-as-you-go Classic Load Balancer (CLB) instance.
14377
14440
  *
14378
- * @description > * For pay-as-you-go CLB instances, you can only change the metering method from pay-by-specification to pay-by-LCU. You cannot change the metering method from pay-by-LCU to pay-by-specification.
14441
+ * @remarks
14442
+ * > * For pay-as-you-go CLB instances, you can only change the metering method from pay-by-specification to pay-by-LCU. You cannot change the metering method from pay-by-LCU to pay-by-specification.
14379
14443
  * >* This operation can change the metering method of only one instance at a time.
14380
14444
  *
14381
- * @param request ModifyLoadBalancerInstanceChargeTypeRequest
14382
- * @param runtime runtime options for this request RuntimeOptions
14383
- * @return ModifyLoadBalancerInstanceChargeTypeResponse
14445
+ * @param request - ModifyLoadBalancerInstanceChargeTypeRequest
14446
+ * @param runtime - runtime options for this request RuntimeOptions
14447
+ * @returns ModifyLoadBalancerInstanceChargeTypeResponse
14384
14448
  */
14385
14449
  async modifyLoadBalancerInstanceChargeTypeWithOptions(request, runtime) {
14386
14450
  tea_util_1.default.validateModel(request);
@@ -14432,24 +14496,25 @@ class Client extends openapi_client_1.default {
14432
14496
  return $tea.cast(await this.callApi(params, req, runtime), new ModifyLoadBalancerInstanceChargeTypeResponse({}));
14433
14497
  }
14434
14498
  /**
14435
- * @summary Changes the metering method of a pay-as-you-go Classic Load Balancer (CLB) instance.
14499
+ * Changes the metering method of a pay-as-you-go Classic Load Balancer (CLB) instance.
14436
14500
  *
14437
- * @description > * For pay-as-you-go CLB instances, you can only change the metering method from pay-by-specification to pay-by-LCU. You cannot change the metering method from pay-by-LCU to pay-by-specification.
14501
+ * @remarks
14502
+ * > * For pay-as-you-go CLB instances, you can only change the metering method from pay-by-specification to pay-by-LCU. You cannot change the metering method from pay-by-LCU to pay-by-specification.
14438
14503
  * >* This operation can change the metering method of only one instance at a time.
14439
14504
  *
14440
- * @param request ModifyLoadBalancerInstanceChargeTypeRequest
14441
- * @return ModifyLoadBalancerInstanceChargeTypeResponse
14505
+ * @param request - ModifyLoadBalancerInstanceChargeTypeRequest
14506
+ * @returns ModifyLoadBalancerInstanceChargeTypeResponse
14442
14507
  */
14443
14508
  async modifyLoadBalancerInstanceChargeType(request) {
14444
14509
  let runtime = new $Util.RuntimeOptions({});
14445
14510
  return await this.modifyLoadBalancerInstanceChargeTypeWithOptions(request, runtime);
14446
14511
  }
14447
14512
  /**
14448
- * @summary Modifies the specification of a Classic Load Balancer (CLB) instance.
14513
+ * Modifies the specification of a Classic Load Balancer (CLB) instance.
14449
14514
  *
14450
- * @param request ModifyLoadBalancerInstanceSpecRequest
14451
- * @param runtime runtime options for this request RuntimeOptions
14452
- * @return ModifyLoadBalancerInstanceSpecResponse
14515
+ * @param request - ModifyLoadBalancerInstanceSpecRequest
14516
+ * @param runtime - runtime options for this request RuntimeOptions
14517
+ * @returns ModifyLoadBalancerInstanceSpecResponse
14453
14518
  */
14454
14519
  async modifyLoadBalancerInstanceSpecWithOptions(request, runtime) {
14455
14520
  tea_util_1.default.validateModel(request);
@@ -14495,25 +14560,26 @@ class Client extends openapi_client_1.default {
14495
14560
  return $tea.cast(await this.callApi(params, req, runtime), new ModifyLoadBalancerInstanceSpecResponse({}));
14496
14561
  }
14497
14562
  /**
14498
- * @summary Modifies the specification of a Classic Load Balancer (CLB) instance.
14563
+ * Modifies the specification of a Classic Load Balancer (CLB) instance.
14499
14564
  *
14500
- * @param request ModifyLoadBalancerInstanceSpecRequest
14501
- * @return ModifyLoadBalancerInstanceSpecResponse
14565
+ * @param request - ModifyLoadBalancerInstanceSpecRequest
14566
+ * @returns ModifyLoadBalancerInstanceSpecResponse
14502
14567
  */
14503
14568
  async modifyLoadBalancerInstanceSpec(request) {
14504
14569
  let runtime = new $Util.RuntimeOptions({});
14505
14570
  return await this.modifyLoadBalancerInstanceSpecWithOptions(request, runtime);
14506
14571
  }
14507
14572
  /**
14508
- * @summary Modifies the metering method of an Internet-facing Classic Load Balancer (CLB) instance.
14573
+ * Modifies the metering method of an Internet-facing Classic Load Balancer (CLB) instance.
14509
14574
  *
14510
- * @description ## Description
14575
+ * @remarks
14576
+ * ## Description
14511
14577
  * * If you modify only the maximum bandwidth of a pay-by-bandwidth CLB instance, the new bandwidth immediately takes effect.
14512
14578
  * * If you modify the metering method (for example, switch from pay-by-bandwidth to pay-by-data-transfer), the new metering method and the other changes specified in the operation take effect at 00:00:00 the next day.
14513
14579
  *
14514
- * @param request ModifyLoadBalancerInternetSpecRequest
14515
- * @param runtime runtime options for this request RuntimeOptions
14516
- * @return ModifyLoadBalancerInternetSpecResponse
14580
+ * @param request - ModifyLoadBalancerInternetSpecRequest
14581
+ * @param runtime - runtime options for this request RuntimeOptions
14582
+ * @returns ModifyLoadBalancerInternetSpecResponse
14517
14583
  */
14518
14584
  async modifyLoadBalancerInternetSpecWithOptions(request, runtime) {
14519
14585
  tea_util_1.default.validateModel(request);
@@ -14562,26 +14628,30 @@ class Client extends openapi_client_1.default {
14562
14628
  return $tea.cast(await this.callApi(params, req, runtime), new ModifyLoadBalancerInternetSpecResponse({}));
14563
14629
  }
14564
14630
  /**
14565
- * @summary Modifies the metering method of an Internet-facing Classic Load Balancer (CLB) instance.
14631
+ * Modifies the metering method of an Internet-facing Classic Load Balancer (CLB) instance.
14566
14632
  *
14567
- * @description ## Description
14633
+ * @remarks
14634
+ * ## Description
14568
14635
  * * If you modify only the maximum bandwidth of a pay-by-bandwidth CLB instance, the new bandwidth immediately takes effect.
14569
14636
  * * If you modify the metering method (for example, switch from pay-by-bandwidth to pay-by-data-transfer), the new metering method and the other changes specified in the operation take effect at 00:00:00 the next day.
14570
14637
  *
14571
- * @param request ModifyLoadBalancerInternetSpecRequest
14572
- * @return ModifyLoadBalancerInternetSpecResponse
14638
+ * @param request - ModifyLoadBalancerInternetSpecRequest
14639
+ * @returns ModifyLoadBalancerInternetSpecResponse
14573
14640
  */
14574
14641
  async modifyLoadBalancerInternetSpec(request) {
14575
14642
  let runtime = new $Util.RuntimeOptions({});
14576
14643
  return await this.modifyLoadBalancerInternetSpecWithOptions(request, runtime);
14577
14644
  }
14578
14645
  /**
14579
- * @summary Changes the billing method of a Classic Load Balancer (CLB) instance from pay-as-you-go to subscription.
14646
+ * Changes the billing method of a Classic Load Balancer (CLB) instance from pay-as-you-go to subscription.
14647
+ *
14648
+ * @deprecated OpenAPI ModifyLoadBalancerPayType is deprecated
14580
14649
  *
14581
- * @param request ModifyLoadBalancerPayTypeRequest
14582
- * @param runtime runtime options for this request RuntimeOptions
14583
- * @return ModifyLoadBalancerPayTypeResponse
14650
+ * @param request - ModifyLoadBalancerPayTypeRequest
14651
+ * @param runtime - runtime options for this request RuntimeOptions
14652
+ * @returns ModifyLoadBalancerPayTypeResponse
14584
14653
  */
14654
+ // Deprecated
14585
14655
  async modifyLoadBalancerPayTypeWithOptions(request, runtime) {
14586
14656
  tea_util_1.default.validateModel(request);
14587
14657
  let query = {};
@@ -14632,23 +14702,27 @@ class Client extends openapi_client_1.default {
14632
14702
  return $tea.cast(await this.callApi(params, req, runtime), new ModifyLoadBalancerPayTypeResponse({}));
14633
14703
  }
14634
14704
  /**
14635
- * @summary Changes the billing method of a Classic Load Balancer (CLB) instance from pay-as-you-go to subscription.
14705
+ * Changes the billing method of a Classic Load Balancer (CLB) instance from pay-as-you-go to subscription.
14706
+ *
14707
+ * @deprecated OpenAPI ModifyLoadBalancerPayType is deprecated
14636
14708
  *
14637
- * @param request ModifyLoadBalancerPayTypeRequest
14638
- * @return ModifyLoadBalancerPayTypeResponse
14709
+ * @param request - ModifyLoadBalancerPayTypeRequest
14710
+ * @returns ModifyLoadBalancerPayTypeResponse
14639
14711
  */
14712
+ // Deprecated
14640
14713
  async modifyLoadBalancerPayType(request) {
14641
14714
  let runtime = new $Util.RuntimeOptions({});
14642
14715
  return await this.modifyLoadBalancerPayTypeWithOptions(request, runtime);
14643
14716
  }
14644
14717
  /**
14645
- * @summary Replaces backend servers in a specified vServer group.
14718
+ * Replaces backend servers in a vServer group.
14646
14719
  *
14647
- * @description You can call this operation to replace the backend servers in a specified vServer group. To modify the configurations of the backend servers, such as their weights, you can call the [SetVServerGroupAttribute](https://help.aliyun.com/document_detail/35217.html) operation.
14720
+ * @remarks
14721
+ * This operation can be used only to replace backend servers in a vServer group. To modify the attributes of backend servers, such as weights, call the [SetVServerGroupAttribute](https://help.aliyun.com/document_detail/35217.html) operation.
14648
14722
  *
14649
- * @param request ModifyVServerGroupBackendServersRequest
14650
- * @param runtime runtime options for this request RuntimeOptions
14651
- * @return ModifyVServerGroupBackendServersResponse
14723
+ * @param request - ModifyVServerGroupBackendServersRequest
14724
+ * @param runtime - runtime options for this request RuntimeOptions
14725
+ * @returns ModifyVServerGroupBackendServersResponse
14652
14726
  */
14653
14727
  async modifyVServerGroupBackendServersWithOptions(request, runtime) {
14654
14728
  tea_util_1.default.validateModel(request);
@@ -14694,23 +14768,24 @@ class Client extends openapi_client_1.default {
14694
14768
  return $tea.cast(await this.callApi(params, req, runtime), new ModifyVServerGroupBackendServersResponse({}));
14695
14769
  }
14696
14770
  /**
14697
- * @summary Replaces backend servers in a specified vServer group.
14771
+ * Replaces backend servers in a vServer group.
14698
14772
  *
14699
- * @description You can call this operation to replace the backend servers in a specified vServer group. To modify the configurations of the backend servers, such as their weights, you can call the [SetVServerGroupAttribute](https://help.aliyun.com/document_detail/35217.html) operation.
14773
+ * @remarks
14774
+ * This operation can be used only to replace backend servers in a vServer group. To modify the attributes of backend servers, such as weights, call the [SetVServerGroupAttribute](https://help.aliyun.com/document_detail/35217.html) operation.
14700
14775
  *
14701
- * @param request ModifyVServerGroupBackendServersRequest
14702
- * @return ModifyVServerGroupBackendServersResponse
14776
+ * @param request - ModifyVServerGroupBackendServersRequest
14777
+ * @returns ModifyVServerGroupBackendServersResponse
14703
14778
  */
14704
14779
  async modifyVServerGroupBackendServers(request) {
14705
14780
  let runtime = new $Util.RuntimeOptions({});
14706
14781
  return await this.modifyVServerGroupBackendServersWithOptions(request, runtime);
14707
14782
  }
14708
14783
  /**
14709
- * @summary Moves a resource to another resource group.
14784
+ * Moves a resource to another resource group.
14710
14785
  *
14711
- * @param request MoveResourceGroupRequest
14712
- * @param runtime runtime options for this request RuntimeOptions
14713
- * @return MoveResourceGroupResponse
14786
+ * @param request - MoveResourceGroupRequest
14787
+ * @param runtime - runtime options for this request RuntimeOptions
14788
+ * @returns MoveResourceGroupResponse
14714
14789
  */
14715
14790
  async moveResourceGroupWithOptions(request, runtime) {
14716
14791
  tea_util_1.default.validateModel(request);
@@ -14762,21 +14837,21 @@ class Client extends openapi_client_1.default {
14762
14837
  return $tea.cast(await this.callApi(params, req, runtime), new MoveResourceGroupResponse({}));
14763
14838
  }
14764
14839
  /**
14765
- * @summary Moves a resource to another resource group.
14840
+ * Moves a resource to another resource group.
14766
14841
  *
14767
- * @param request MoveResourceGroupRequest
14768
- * @return MoveResourceGroupResponse
14842
+ * @param request - MoveResourceGroupRequest
14843
+ * @returns MoveResourceGroupResponse
14769
14844
  */
14770
14845
  async moveResourceGroup(request) {
14771
14846
  let runtime = new $Util.RuntimeOptions({});
14772
14847
  return await this.moveResourceGroupWithOptions(request, runtime);
14773
14848
  }
14774
14849
  /**
14775
- * @summary Removes IP entries from the network access control list (ACL) of a Classic Load Balancer (CLB) instance.
14850
+ * Removes IP entries from the network access control list (ACL) of a Classic Load Balancer (CLB) instance.
14776
14851
  *
14777
- * @param request RemoveAccessControlListEntryRequest
14778
- * @param runtime runtime options for this request RuntimeOptions
14779
- * @return RemoveAccessControlListEntryResponse
14852
+ * @param request - RemoveAccessControlListEntryRequest
14853
+ * @param runtime - runtime options for this request RuntimeOptions
14854
+ * @returns RemoveAccessControlListEntryResponse
14780
14855
  */
14781
14856
  async removeAccessControlListEntryWithOptions(request, runtime) {
14782
14857
  tea_util_1.default.validateModel(request);
@@ -14819,23 +14894,24 @@ class Client extends openapi_client_1.default {
14819
14894
  return $tea.cast(await this.callApi(params, req, runtime), new RemoveAccessControlListEntryResponse({}));
14820
14895
  }
14821
14896
  /**
14822
- * @summary Removes IP entries from the network access control list (ACL) of a Classic Load Balancer (CLB) instance.
14897
+ * Removes IP entries from the network access control list (ACL) of a Classic Load Balancer (CLB) instance.
14823
14898
  *
14824
- * @param request RemoveAccessControlListEntryRequest
14825
- * @return RemoveAccessControlListEntryResponse
14899
+ * @param request - RemoveAccessControlListEntryRequest
14900
+ * @returns RemoveAccessControlListEntryResponse
14826
14901
  */
14827
14902
  async removeAccessControlListEntry(request) {
14828
14903
  let runtime = new $Util.RuntimeOptions({});
14829
14904
  return await this.removeAccessControlListEntryWithOptions(request, runtime);
14830
14905
  }
14831
14906
  /**
14832
- * @summary Removes backend servers.
14907
+ * Removes backend servers.
14833
14908
  *
14834
- * @description > If the backend servers that you want to remove are not in the server list of the Classic Load Balancer (CLB) instance, the request fails. However, the system does not report an error.
14909
+ * @remarks
14910
+ * > If the backend servers that you want to remove are not in the server list of the Classic Load Balancer (CLB) instance, the request fails. However, the system does not report an error.
14835
14911
  *
14836
- * @param request RemoveBackendServersRequest
14837
- * @param runtime runtime options for this request RuntimeOptions
14838
- * @return RemoveBackendServersResponse
14912
+ * @param request - RemoveBackendServersRequest
14913
+ * @param runtime - runtime options for this request RuntimeOptions
14914
+ * @returns RemoveBackendServersResponse
14839
14915
  */
14840
14916
  async removeBackendServersWithOptions(request, runtime) {
14841
14917
  tea_util_1.default.validateModel(request);
@@ -14878,23 +14954,24 @@ class Client extends openapi_client_1.default {
14878
14954
  return $tea.cast(await this.callApi(params, req, runtime), new RemoveBackendServersResponse({}));
14879
14955
  }
14880
14956
  /**
14881
- * @summary Removes backend servers.
14957
+ * Removes backend servers.
14882
14958
  *
14883
- * @description > If the backend servers that you want to remove are not in the server list of the Classic Load Balancer (CLB) instance, the request fails. However, the system does not report an error.
14959
+ * @remarks
14960
+ * > If the backend servers that you want to remove are not in the server list of the Classic Load Balancer (CLB) instance, the request fails. However, the system does not report an error.
14884
14961
  *
14885
- * @param request RemoveBackendServersRequest
14886
- * @return RemoveBackendServersResponse
14962
+ * @param request - RemoveBackendServersRequest
14963
+ * @returns RemoveBackendServersResponse
14887
14964
  */
14888
14965
  async removeBackendServers(request) {
14889
14966
  let runtime = new $Util.RuntimeOptions({});
14890
14967
  return await this.removeBackendServersWithOptions(request, runtime);
14891
14968
  }
14892
14969
  /**
14893
- * @summary Removes IP addresses or CIDR blocks from the whitelist of a listener.
14970
+ * Removes IP addresses or CIDR blocks from the whitelist of a listener.
14894
14971
  *
14895
- * @param request RemoveListenerWhiteListItemRequest
14896
- * @param runtime runtime options for this request RuntimeOptions
14897
- * @return RemoveListenerWhiteListItemResponse
14972
+ * @param request - RemoveListenerWhiteListItemRequest
14973
+ * @param runtime - runtime options for this request RuntimeOptions
14974
+ * @returns RemoveListenerWhiteListItemResponse
14898
14975
  */
14899
14976
  async removeListenerWhiteListItemWithOptions(request, runtime) {
14900
14977
  tea_util_1.default.validateModel(request);
@@ -14943,19 +15020,21 @@ class Client extends openapi_client_1.default {
14943
15020
  return $tea.cast(await this.callApi(params, req, runtime), new RemoveListenerWhiteListItemResponse({}));
14944
15021
  }
14945
15022
  /**
14946
- * @summary Removes IP addresses or CIDR blocks from the whitelist of a listener.
15023
+ * Removes IP addresses or CIDR blocks from the whitelist of a listener.
14947
15024
  *
14948
- * @param request RemoveListenerWhiteListItemRequest
14949
- * @return RemoveListenerWhiteListItemResponse
15025
+ * @param request - RemoveListenerWhiteListItemRequest
15026
+ * @returns RemoveListenerWhiteListItemResponse
14950
15027
  */
14951
15028
  async removeListenerWhiteListItem(request) {
14952
15029
  let runtime = new $Util.RuntimeOptions({});
14953
15030
  return await this.removeListenerWhiteListItemWithOptions(request, runtime);
14954
15031
  }
14955
15032
  /**
14956
- * @param request RemoveTagsRequest
14957
- * @param runtime runtime options for this request RuntimeOptions
14958
- * @return RemoveTagsResponse
15033
+ * Removes tags from a Server Load Balancer (SLB) instance.
15034
+ *
15035
+ * @param request - RemoveTagsRequest
15036
+ * @param runtime - runtime options for this request RuntimeOptions
15037
+ * @returns RemoveTagsResponse
14959
15038
  */
14960
15039
  async removeTagsWithOptions(request, runtime) {
14961
15040
  tea_util_1.default.validateModel(request);
@@ -14998,21 +15077,24 @@ class Client extends openapi_client_1.default {
14998
15077
  return $tea.cast(await this.callApi(params, req, runtime), new RemoveTagsResponse({}));
14999
15078
  }
15000
15079
  /**
15001
- * @param request RemoveTagsRequest
15002
- * @return RemoveTagsResponse
15080
+ * Removes tags from a Server Load Balancer (SLB) instance.
15081
+ *
15082
+ * @param request - RemoveTagsRequest
15083
+ * @returns RemoveTagsResponse
15003
15084
  */
15004
15085
  async removeTags(request) {
15005
15086
  let runtime = new $Util.RuntimeOptions({});
15006
15087
  return await this.removeTagsWithOptions(request, runtime);
15007
15088
  }
15008
15089
  /**
15009
- * @summary Removes one or more backend servers from a specified vServer group.
15090
+ * Removes backend servers from a vServer group.
15010
15091
  *
15011
- * @description > If one or more backend servers specified by the **BackendServers** parameter do not exist in the specified vServer group, these backend servers are ignored and no error message is returned.
15092
+ * @remarks
15093
+ * > If the backend servers specified by the **BackendServers** parameter do not exist in the vServer group, the backend servers are ignored. No error message is returned.
15012
15094
  *
15013
- * @param request RemoveVServerGroupBackendServersRequest
15014
- * @param runtime runtime options for this request RuntimeOptions
15015
- * @return RemoveVServerGroupBackendServersResponse
15095
+ * @param request - RemoveVServerGroupBackendServersRequest
15096
+ * @param runtime - runtime options for this request RuntimeOptions
15097
+ * @returns RemoveVServerGroupBackendServersResponse
15016
15098
  */
15017
15099
  async removeVServerGroupBackendServersWithOptions(request, runtime) {
15018
15100
  tea_util_1.default.validateModel(request);
@@ -15055,23 +15137,24 @@ class Client extends openapi_client_1.default {
15055
15137
  return $tea.cast(await this.callApi(params, req, runtime), new RemoveVServerGroupBackendServersResponse({}));
15056
15138
  }
15057
15139
  /**
15058
- * @summary Removes one or more backend servers from a specified vServer group.
15140
+ * Removes backend servers from a vServer group.
15059
15141
  *
15060
- * @description > If one or more backend servers specified by the **BackendServers** parameter do not exist in the specified vServer group, these backend servers are ignored and no error message is returned.
15142
+ * @remarks
15143
+ * > If the backend servers specified by the **BackendServers** parameter do not exist in the vServer group, the backend servers are ignored. No error message is returned.
15061
15144
  *
15062
- * @param request RemoveVServerGroupBackendServersRequest
15063
- * @return RemoveVServerGroupBackendServersResponse
15145
+ * @param request - RemoveVServerGroupBackendServersRequest
15146
+ * @returns RemoveVServerGroupBackendServersResponse
15064
15147
  */
15065
15148
  async removeVServerGroupBackendServers(request) {
15066
15149
  let runtime = new $Util.RuntimeOptions({});
15067
15150
  return await this.removeVServerGroupBackendServersWithOptions(request, runtime);
15068
15151
  }
15069
15152
  /**
15070
- * @summary Modifies the name of a network access control list (ACL).
15153
+ * Renames an access control list (ACL).
15071
15154
  *
15072
- * @param request SetAccessControlListAttributeRequest
15073
- * @param runtime runtime options for this request RuntimeOptions
15074
- * @return SetAccessControlListAttributeResponse
15155
+ * @param request - SetAccessControlListAttributeRequest
15156
+ * @param runtime - runtime options for this request RuntimeOptions
15157
+ * @returns SetAccessControlListAttributeResponse
15075
15158
  */
15076
15159
  async setAccessControlListAttributeWithOptions(request, runtime) {
15077
15160
  tea_util_1.default.validateModel(request);
@@ -15114,21 +15197,21 @@ class Client extends openapi_client_1.default {
15114
15197
  return $tea.cast(await this.callApi(params, req, runtime), new SetAccessControlListAttributeResponse({}));
15115
15198
  }
15116
15199
  /**
15117
- * @summary Modifies the name of a network access control list (ACL).
15200
+ * Renames an access control list (ACL).
15118
15201
  *
15119
- * @param request SetAccessControlListAttributeRequest
15120
- * @return SetAccessControlListAttributeResponse
15202
+ * @param request - SetAccessControlListAttributeRequest
15203
+ * @returns SetAccessControlListAttributeResponse
15121
15204
  */
15122
15205
  async setAccessControlListAttribute(request) {
15123
15206
  let runtime = new $Util.RuntimeOptions({});
15124
15207
  return await this.setAccessControlListAttributeWithOptions(request, runtime);
15125
15208
  }
15126
15209
  /**
15127
- * @summary Adds an access log forwarding rule for a Classic Load Balancer (CLB) instance.
15210
+ * Adds an access log forwarding rule to a Classic Load Balancer (CLB) instance.
15128
15211
  *
15129
- * @param request SetAccessLogsDownloadAttributeRequest
15130
- * @param runtime runtime options for this request RuntimeOptions
15131
- * @return SetAccessLogsDownloadAttributeResponse
15212
+ * @param request - SetAccessLogsDownloadAttributeRequest
15213
+ * @param runtime - runtime options for this request RuntimeOptions
15214
+ * @returns SetAccessLogsDownloadAttributeResponse
15132
15215
  */
15133
15216
  async setAccessLogsDownloadAttributeWithOptions(request, runtime) {
15134
15217
  tea_util_1.default.validateModel(request);
@@ -15174,21 +15257,21 @@ class Client extends openapi_client_1.default {
15174
15257
  return $tea.cast(await this.callApi(params, req, runtime), new SetAccessLogsDownloadAttributeResponse({}));
15175
15258
  }
15176
15259
  /**
15177
- * @summary Adds an access log forwarding rule for a Classic Load Balancer (CLB) instance.
15260
+ * Adds an access log forwarding rule to a Classic Load Balancer (CLB) instance.
15178
15261
  *
15179
- * @param request SetAccessLogsDownloadAttributeRequest
15180
- * @return SetAccessLogsDownloadAttributeResponse
15262
+ * @param request - SetAccessLogsDownloadAttributeRequest
15263
+ * @returns SetAccessLogsDownloadAttributeResponse
15181
15264
  */
15182
15265
  async setAccessLogsDownloadAttribute(request) {
15183
15266
  let runtime = new $Util.RuntimeOptions({});
15184
15267
  return await this.setAccessLogsDownloadAttributeWithOptions(request, runtime);
15185
15268
  }
15186
15269
  /**
15187
- * @summary Sets the weights of backend servers.
15270
+ * Specifies weights for backend servers.
15188
15271
  *
15189
- * @param request SetBackendServersRequest
15190
- * @param runtime runtime options for this request RuntimeOptions
15191
- * @return SetBackendServersResponse
15272
+ * @param request - SetBackendServersRequest
15273
+ * @param runtime - runtime options for this request RuntimeOptions
15274
+ * @returns SetBackendServersResponse
15192
15275
  */
15193
15276
  async setBackendServersWithOptions(request, runtime) {
15194
15277
  tea_util_1.default.validateModel(request);
@@ -15231,21 +15314,21 @@ class Client extends openapi_client_1.default {
15231
15314
  return $tea.cast(await this.callApi(params, req, runtime), new SetBackendServersResponse({}));
15232
15315
  }
15233
15316
  /**
15234
- * @summary Sets the weights of backend servers.
15317
+ * Specifies weights for backend servers.
15235
15318
  *
15236
- * @param request SetBackendServersRequest
15237
- * @return SetBackendServersResponse
15319
+ * @param request - SetBackendServersRequest
15320
+ * @returns SetBackendServersResponse
15238
15321
  */
15239
15322
  async setBackendServers(request) {
15240
15323
  let runtime = new $Util.RuntimeOptions({});
15241
15324
  return await this.setBackendServersWithOptions(request, runtime);
15242
15325
  }
15243
15326
  /**
15244
- * @summary Sets the name of a CA Certificate.
15327
+ * Specifies a name for a CA certificate.
15245
15328
  *
15246
- * @param request SetCACertificateNameRequest
15247
- * @param runtime runtime options for this request RuntimeOptions
15248
- * @return SetCACertificateNameResponse
15329
+ * @param request - SetCACertificateNameRequest
15330
+ * @param runtime - runtime options for this request RuntimeOptions
15331
+ * @returns SetCACertificateNameResponse
15249
15332
  */
15250
15333
  async setCACertificateNameWithOptions(request, runtime) {
15251
15334
  tea_util_1.default.validateModel(request);
@@ -15288,23 +15371,24 @@ class Client extends openapi_client_1.default {
15288
15371
  return $tea.cast(await this.callApi(params, req, runtime), new SetCACertificateNameResponse({}));
15289
15372
  }
15290
15373
  /**
15291
- * @summary Sets the name of a CA Certificate.
15374
+ * Specifies a name for a CA certificate.
15292
15375
  *
15293
- * @param request SetCACertificateNameRequest
15294
- * @return SetCACertificateNameResponse
15376
+ * @param request - SetCACertificateNameRequest
15377
+ * @returns SetCACertificateNameResponse
15295
15378
  */
15296
15379
  async setCACertificateName(request) {
15297
15380
  let runtime = new $Util.RuntimeOptions({});
15298
15381
  return await this.setCACertificateNameWithOptions(request, runtime);
15299
15382
  }
15300
15383
  /**
15301
- * @summary Replaces an additional certificate.
15384
+ * Replaces the certificate of an additional domain name.
15302
15385
  *
15303
- * @description > You cannot replace an additional certificate for a listener that is added to a shared-resource Server Load Balancer (SLB) instance.
15386
+ * @remarks
15387
+ * > You cannot replace an additional certificate for a listener that is added to a shared-resource Server Load Balancer (SLB) instance.
15304
15388
  *
15305
- * @param request SetDomainExtensionAttributeRequest
15306
- * @param runtime runtime options for this request RuntimeOptions
15307
- * @return SetDomainExtensionAttributeResponse
15389
+ * @param request - SetDomainExtensionAttributeRequest
15390
+ * @param runtime - runtime options for this request RuntimeOptions
15391
+ * @returns SetDomainExtensionAttributeResponse
15308
15392
  */
15309
15393
  async setDomainExtensionAttributeWithOptions(request, runtime) {
15310
15394
  tea_util_1.default.validateModel(request);
@@ -15347,23 +15431,24 @@ class Client extends openapi_client_1.default {
15347
15431
  return $tea.cast(await this.callApi(params, req, runtime), new SetDomainExtensionAttributeResponse({}));
15348
15432
  }
15349
15433
  /**
15350
- * @summary Replaces an additional certificate.
15434
+ * Replaces the certificate of an additional domain name.
15351
15435
  *
15352
- * @description > You cannot replace an additional certificate for a listener that is added to a shared-resource Server Load Balancer (SLB) instance.
15436
+ * @remarks
15437
+ * > You cannot replace an additional certificate for a listener that is added to a shared-resource Server Load Balancer (SLB) instance.
15353
15438
  *
15354
- * @param request SetDomainExtensionAttributeRequest
15355
- * @return SetDomainExtensionAttributeResponse
15439
+ * @param request - SetDomainExtensionAttributeRequest
15440
+ * @returns SetDomainExtensionAttributeResponse
15356
15441
  */
15357
15442
  async setDomainExtensionAttribute(request) {
15358
15443
  let runtime = new $Util.RuntimeOptions({});
15359
15444
  return await this.setDomainExtensionAttributeWithOptions(request, runtime);
15360
15445
  }
15361
15446
  /**
15362
- * @summary Enables or disables the whitelist of a specified listener.
15447
+ * Enables or disables the whitelist of a specified listener.
15363
15448
  *
15364
- * @param request SetListenerAccessControlStatusRequest
15365
- * @param runtime runtime options for this request RuntimeOptions
15366
- * @return SetListenerAccessControlStatusResponse
15449
+ * @param request - SetListenerAccessControlStatusRequest
15450
+ * @param runtime - runtime options for this request RuntimeOptions
15451
+ * @returns SetListenerAccessControlStatusResponse
15367
15452
  */
15368
15453
  async setListenerAccessControlStatusWithOptions(request, runtime) {
15369
15454
  tea_util_1.default.validateModel(request);
@@ -15412,21 +15497,21 @@ class Client extends openapi_client_1.default {
15412
15497
  return $tea.cast(await this.callApi(params, req, runtime), new SetListenerAccessControlStatusResponse({}));
15413
15498
  }
15414
15499
  /**
15415
- * @summary Enables or disables the whitelist of a specified listener.
15500
+ * Enables or disables the whitelist of a specified listener.
15416
15501
  *
15417
- * @param request SetListenerAccessControlStatusRequest
15418
- * @return SetListenerAccessControlStatusResponse
15502
+ * @param request - SetListenerAccessControlStatusRequest
15503
+ * @returns SetListenerAccessControlStatusResponse
15419
15504
  */
15420
15505
  async setListenerAccessControlStatus(request) {
15421
15506
  let runtime = new $Util.RuntimeOptions({});
15422
15507
  return await this.setListenerAccessControlStatusWithOptions(request, runtime);
15423
15508
  }
15424
15509
  /**
15425
- * @summary Enables or disables deletion protection for an SLB instance.
15510
+ * Enables or disables deletion protection for an SLB instance.
15426
15511
  *
15427
- * @param request SetLoadBalancerDeleteProtectionRequest
15428
- * @param runtime runtime options for this request RuntimeOptions
15429
- * @return SetLoadBalancerDeleteProtectionResponse
15512
+ * @param request - SetLoadBalancerDeleteProtectionRequest
15513
+ * @param runtime - runtime options for this request RuntimeOptions
15514
+ * @returns SetLoadBalancerDeleteProtectionResponse
15430
15515
  */
15431
15516
  async setLoadBalancerDeleteProtectionWithOptions(request, runtime) {
15432
15517
  tea_util_1.default.validateModel(request);
@@ -15469,25 +15554,26 @@ class Client extends openapi_client_1.default {
15469
15554
  return $tea.cast(await this.callApi(params, req, runtime), new SetLoadBalancerDeleteProtectionResponse({}));
15470
15555
  }
15471
15556
  /**
15472
- * @summary Enables or disables deletion protection for an SLB instance.
15557
+ * Enables or disables deletion protection for an SLB instance.
15473
15558
  *
15474
- * @param request SetLoadBalancerDeleteProtectionRequest
15475
- * @return SetLoadBalancerDeleteProtectionResponse
15559
+ * @param request - SetLoadBalancerDeleteProtectionRequest
15560
+ * @returns SetLoadBalancerDeleteProtectionResponse
15476
15561
  */
15477
15562
  async setLoadBalancerDeleteProtection(request) {
15478
15563
  let runtime = new $Util.RuntimeOptions({});
15479
15564
  return await this.setLoadBalancerDeleteProtectionWithOptions(request, runtime);
15480
15565
  }
15481
15566
  /**
15482
- * @summary Modifies the configurations of an HTTP listener.
15567
+ * Modifies the configurations of an HTTP listener.
15483
15568
  *
15484
- * @description ### Prerequisites
15569
+ * @remarks
15570
+ * ### Prerequisites
15485
15571
  * * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
15486
15572
  * * An HTTP listener is created. For more information about how to create an HTTP listener, see [CreateLoadBalancerHTTPListener](https://help.aliyun.com/document_detail/27592.html).
15487
15573
  *
15488
- * @param request SetLoadBalancerHTTPListenerAttributeRequest
15489
- * @param runtime runtime options for this request RuntimeOptions
15490
- * @return SetLoadBalancerHTTPListenerAttributeResponse
15574
+ * @param request - SetLoadBalancerHTTPListenerAttributeRequest
15575
+ * @param runtime - runtime options for this request RuntimeOptions
15576
+ * @returns SetLoadBalancerHTTPListenerAttributeResponse
15491
15577
  */
15492
15578
  async setLoadBalancerHTTPListenerAttributeWithOptions(request, runtime) {
15493
15579
  tea_util_1.default.validateModel(request);
@@ -15623,28 +15709,30 @@ class Client extends openapi_client_1.default {
15623
15709
  return $tea.cast(await this.callApi(params, req, runtime), new SetLoadBalancerHTTPListenerAttributeResponse({}));
15624
15710
  }
15625
15711
  /**
15626
- * @summary Modifies the configurations of an HTTP listener.
15712
+ * Modifies the configurations of an HTTP listener.
15627
15713
  *
15628
- * @description ### Prerequisites
15714
+ * @remarks
15715
+ * ### Prerequisites
15629
15716
  * * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
15630
15717
  * * An HTTP listener is created. For more information about how to create an HTTP listener, see [CreateLoadBalancerHTTPListener](https://help.aliyun.com/document_detail/27592.html).
15631
15718
  *
15632
- * @param request SetLoadBalancerHTTPListenerAttributeRequest
15633
- * @return SetLoadBalancerHTTPListenerAttributeResponse
15719
+ * @param request - SetLoadBalancerHTTPListenerAttributeRequest
15720
+ * @returns SetLoadBalancerHTTPListenerAttributeResponse
15634
15721
  */
15635
15722
  async setLoadBalancerHTTPListenerAttribute(request) {
15636
15723
  let runtime = new $Util.RuntimeOptions({});
15637
15724
  return await this.setLoadBalancerHTTPListenerAttributeWithOptions(request, runtime);
15638
15725
  }
15639
15726
  /**
15640
- * @summary Modifies the configurations of an HTTPS listener.
15727
+ * Modifies the configurations of an HTTPS listener.
15641
15728
  *
15642
- * @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
15729
+ * @remarks
15730
+ * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
15643
15731
  * * An HTTPS listener is created. For more information about how to create an HTTPS listener, see [CreateLoadBalancerHTTPSListener](https://help.aliyun.com/document_detail/27593.html).
15644
15732
  *
15645
- * @param request SetLoadBalancerHTTPSListenerAttributeRequest
15646
- * @param runtime runtime options for this request RuntimeOptions
15647
- * @return SetLoadBalancerHTTPSListenerAttributeResponse
15733
+ * @param request - SetLoadBalancerHTTPSListenerAttributeRequest
15734
+ * @param runtime - runtime options for this request RuntimeOptions
15735
+ * @returns SetLoadBalancerHTTPSListenerAttributeResponse
15648
15736
  */
15649
15737
  async setLoadBalancerHTTPSListenerAttributeWithOptions(request, runtime) {
15650
15738
  tea_util_1.default.validateModel(request);
@@ -15792,24 +15880,25 @@ class Client extends openapi_client_1.default {
15792
15880
  return $tea.cast(await this.callApi(params, req, runtime), new SetLoadBalancerHTTPSListenerAttributeResponse({}));
15793
15881
  }
15794
15882
  /**
15795
- * @summary Modifies the configurations of an HTTPS listener.
15883
+ * Modifies the configurations of an HTTPS listener.
15796
15884
  *
15797
- * @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
15885
+ * @remarks
15886
+ * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
15798
15887
  * * An HTTPS listener is created. For more information about how to create an HTTPS listener, see [CreateLoadBalancerHTTPSListener](https://help.aliyun.com/document_detail/27593.html).
15799
15888
  *
15800
- * @param request SetLoadBalancerHTTPSListenerAttributeRequest
15801
- * @return SetLoadBalancerHTTPSListenerAttributeResponse
15889
+ * @param request - SetLoadBalancerHTTPSListenerAttributeRequest
15890
+ * @returns SetLoadBalancerHTTPSListenerAttributeResponse
15802
15891
  */
15803
15892
  async setLoadBalancerHTTPSListenerAttribute(request) {
15804
15893
  let runtime = new $Util.RuntimeOptions({});
15805
15894
  return await this.setLoadBalancerHTTPSListenerAttributeWithOptions(request, runtime);
15806
15895
  }
15807
15896
  /**
15808
- * @summary Modifies the configuration of the configuration read-only mode for a Classic Load Balancer (CLB) instance.
15897
+ * Modifies the configuration of the configuration read-only mode for a Classic Load Balancer (CLB) instance.
15809
15898
  *
15810
- * @param request SetLoadBalancerModificationProtectionRequest
15811
- * @param runtime runtime options for this request RuntimeOptions
15812
- * @return SetLoadBalancerModificationProtectionResponse
15899
+ * @param request - SetLoadBalancerModificationProtectionRequest
15900
+ * @param runtime - runtime options for this request RuntimeOptions
15901
+ * @returns SetLoadBalancerModificationProtectionResponse
15813
15902
  */
15814
15903
  async setLoadBalancerModificationProtectionWithOptions(request, runtime) {
15815
15904
  tea_util_1.default.validateModel(request);
@@ -15855,21 +15944,21 @@ class Client extends openapi_client_1.default {
15855
15944
  return $tea.cast(await this.callApi(params, req, runtime), new SetLoadBalancerModificationProtectionResponse({}));
15856
15945
  }
15857
15946
  /**
15858
- * @summary Modifies the configuration of the configuration read-only mode for a Classic Load Balancer (CLB) instance.
15947
+ * Modifies the configuration of the configuration read-only mode for a Classic Load Balancer (CLB) instance.
15859
15948
  *
15860
- * @param request SetLoadBalancerModificationProtectionRequest
15861
- * @return SetLoadBalancerModificationProtectionResponse
15949
+ * @param request - SetLoadBalancerModificationProtectionRequest
15950
+ * @returns SetLoadBalancerModificationProtectionResponse
15862
15951
  */
15863
15952
  async setLoadBalancerModificationProtection(request) {
15864
15953
  let runtime = new $Util.RuntimeOptions({});
15865
15954
  return await this.setLoadBalancerModificationProtectionWithOptions(request, runtime);
15866
15955
  }
15867
15956
  /**
15868
- * @summary Modifies the name of a Classic Load Balancer (CLB) instance.
15957
+ * Modifies the name of a Classic Load Balancer (CLB) instance.
15869
15958
  *
15870
- * @param request SetLoadBalancerNameRequest
15871
- * @param runtime runtime options for this request RuntimeOptions
15872
- * @return SetLoadBalancerNameResponse
15959
+ * @param request - SetLoadBalancerNameRequest
15960
+ * @param runtime - runtime options for this request RuntimeOptions
15961
+ * @returns SetLoadBalancerNameResponse
15873
15962
  */
15874
15963
  async setLoadBalancerNameWithOptions(request, runtime) {
15875
15964
  tea_util_1.default.validateModel(request);
@@ -15912,21 +16001,21 @@ class Client extends openapi_client_1.default {
15912
16001
  return $tea.cast(await this.callApi(params, req, runtime), new SetLoadBalancerNameResponse({}));
15913
16002
  }
15914
16003
  /**
15915
- * @summary Modifies the name of a Classic Load Balancer (CLB) instance.
16004
+ * Modifies the name of a Classic Load Balancer (CLB) instance.
15916
16005
  *
15917
- * @param request SetLoadBalancerNameRequest
15918
- * @return SetLoadBalancerNameResponse
16006
+ * @param request - SetLoadBalancerNameRequest
16007
+ * @returns SetLoadBalancerNameResponse
15919
16008
  */
15920
16009
  async setLoadBalancerName(request) {
15921
16010
  let runtime = new $Util.RuntimeOptions({});
15922
16011
  return await this.setLoadBalancerNameWithOptions(request, runtime);
15923
16012
  }
15924
16013
  /**
15925
- * @summary Modifies the state of a Classic Load Balancer (CLB) instance.
16014
+ * Modifies the state of a Classic Load Balancer (CLB) instance.
15926
16015
  *
15927
- * @param request SetLoadBalancerStatusRequest
15928
- * @param runtime runtime options for this request RuntimeOptions
15929
- * @return SetLoadBalancerStatusResponse
16016
+ * @param request - SetLoadBalancerStatusRequest
16017
+ * @param runtime - runtime options for this request RuntimeOptions
16018
+ * @returns SetLoadBalancerStatusResponse
15930
16019
  */
15931
16020
  async setLoadBalancerStatusWithOptions(request, runtime) {
15932
16021
  tea_util_1.default.validateModel(request);
@@ -15969,24 +16058,25 @@ class Client extends openapi_client_1.default {
15969
16058
  return $tea.cast(await this.callApi(params, req, runtime), new SetLoadBalancerStatusResponse({}));
15970
16059
  }
15971
16060
  /**
15972
- * @summary Modifies the state of a Classic Load Balancer (CLB) instance.
16061
+ * Modifies the state of a Classic Load Balancer (CLB) instance.
15973
16062
  *
15974
- * @param request SetLoadBalancerStatusRequest
15975
- * @return SetLoadBalancerStatusResponse
16063
+ * @param request - SetLoadBalancerStatusRequest
16064
+ * @returns SetLoadBalancerStatusResponse
15976
16065
  */
15977
16066
  async setLoadBalancerStatus(request) {
15978
16067
  let runtime = new $Util.RuntimeOptions({});
15979
16068
  return await this.setLoadBalancerStatusWithOptions(request, runtime);
15980
16069
  }
15981
16070
  /**
15982
- * @summary Modifies the configurations of a TCP listener of Classic Load Balancer (CLB).
16071
+ * Modifies the configurations of a TCP listener of Classic Load Balancer (CLB).
15983
16072
  *
15984
- * @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
16073
+ * @remarks
16074
+ * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
15985
16075
  * * A TCP listener is created. For more information, see [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~).
15986
16076
  *
15987
- * @param request SetLoadBalancerTCPListenerAttributeRequest
15988
- * @param runtime runtime options for this request RuntimeOptions
15989
- * @return SetLoadBalancerTCPListenerAttributeResponse
16077
+ * @param request - SetLoadBalancerTCPListenerAttributeRequest
16078
+ * @param runtime - runtime options for this request RuntimeOptions
16079
+ * @returns SetLoadBalancerTCPListenerAttributeResponse
15990
16080
  */
15991
16081
  async setLoadBalancerTCPListenerAttributeWithOptions(request, runtime) {
15992
16082
  tea_util_1.default.validateModel(request);
@@ -16107,27 +16197,29 @@ class Client extends openapi_client_1.default {
16107
16197
  return $tea.cast(await this.callApi(params, req, runtime), new SetLoadBalancerTCPListenerAttributeResponse({}));
16108
16198
  }
16109
16199
  /**
16110
- * @summary Modifies the configurations of a TCP listener of Classic Load Balancer (CLB).
16200
+ * Modifies the configurations of a TCP listener of Classic Load Balancer (CLB).
16111
16201
  *
16112
- * @description * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
16202
+ * @remarks
16203
+ * A CLB instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/2401685.html).
16113
16204
  * * A TCP listener is created. For more information, see [CreateLoadBalancerTCPListener](~~CreateLoadBalancerTCPListener~~).
16114
16205
  *
16115
- * @param request SetLoadBalancerTCPListenerAttributeRequest
16116
- * @return SetLoadBalancerTCPListenerAttributeResponse
16206
+ * @param request - SetLoadBalancerTCPListenerAttributeRequest
16207
+ * @returns SetLoadBalancerTCPListenerAttributeResponse
16117
16208
  */
16118
16209
  async setLoadBalancerTCPListenerAttribute(request) {
16119
16210
  let runtime = new $Util.RuntimeOptions({});
16120
16211
  return await this.setLoadBalancerTCPListenerAttributeWithOptions(request, runtime);
16121
16212
  }
16122
16213
  /**
16123
- * @summary Modifies the configurations of a UDP listener.
16214
+ * Modifies the configurations of a UDP listener.
16124
16215
  *
16125
- * @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
16216
+ * @remarks
16217
+ * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
16126
16218
  * * A UDP listener is created. For more information, see [CreateLoadBalancerUDPListener](https://help.aliyun.com/document_detail/27595.html).
16127
16219
  *
16128
- * @param request SetLoadBalancerUDPListenerAttributeRequest
16129
- * @param runtime runtime options for this request RuntimeOptions
16130
- * @return SetLoadBalancerUDPListenerAttributeResponse
16220
+ * @param request - SetLoadBalancerUDPListenerAttributeRequest
16221
+ * @param runtime - runtime options for this request RuntimeOptions
16222
+ * @returns SetLoadBalancerUDPListenerAttributeResponse
16131
16223
  */
16132
16224
  async setLoadBalancerUDPListenerAttributeWithOptions(request, runtime) {
16133
16225
  tea_util_1.default.validateModel(request);
@@ -16227,24 +16319,25 @@ class Client extends openapi_client_1.default {
16227
16319
  return $tea.cast(await this.callApi(params, req, runtime), new SetLoadBalancerUDPListenerAttributeResponse({}));
16228
16320
  }
16229
16321
  /**
16230
- * @summary Modifies the configurations of a UDP listener.
16322
+ * Modifies the configurations of a UDP listener.
16231
16323
  *
16232
- * @description * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
16324
+ * @remarks
16325
+ * A Classic Load Balancer (CLB) instance is created. For more information, see [CreateLoadBalancer](https://help.aliyun.com/document_detail/27577.html).
16233
16326
  * * A UDP listener is created. For more information, see [CreateLoadBalancerUDPListener](https://help.aliyun.com/document_detail/27595.html).
16234
16327
  *
16235
- * @param request SetLoadBalancerUDPListenerAttributeRequest
16236
- * @return SetLoadBalancerUDPListenerAttributeResponse
16328
+ * @param request - SetLoadBalancerUDPListenerAttributeRequest
16329
+ * @returns SetLoadBalancerUDPListenerAttributeResponse
16237
16330
  */
16238
16331
  async setLoadBalancerUDPListenerAttribute(request) {
16239
16332
  let runtime = new $Util.RuntimeOptions({});
16240
16333
  return await this.setLoadBalancerUDPListenerAttributeWithOptions(request, runtime);
16241
16334
  }
16242
16335
  /**
16243
- * @summary Modifies a forwarding rule that is associated with a vServer group.
16336
+ * Modifies a forwarding rule that is associated with a vServer group.
16244
16337
  *
16245
- * @param request SetRuleRequest
16246
- * @param runtime runtime options for this request RuntimeOptions
16247
- * @return SetRuleResponse
16338
+ * @param request - SetRuleRequest
16339
+ * @param runtime - runtime options for this request RuntimeOptions
16340
+ * @returns SetRuleResponse
16248
16341
  */
16249
16342
  async setRuleWithOptions(request, runtime) {
16250
16343
  tea_util_1.default.validateModel(request);
@@ -16335,21 +16428,21 @@ class Client extends openapi_client_1.default {
16335
16428
  return $tea.cast(await this.callApi(params, req, runtime), new SetRuleResponse({}));
16336
16429
  }
16337
16430
  /**
16338
- * @summary Modifies a forwarding rule that is associated with a vServer group.
16431
+ * Modifies a forwarding rule that is associated with a vServer group.
16339
16432
  *
16340
- * @param request SetRuleRequest
16341
- * @return SetRuleResponse
16433
+ * @param request - SetRuleRequest
16434
+ * @returns SetRuleResponse
16342
16435
  */
16343
16436
  async setRule(request) {
16344
16437
  let runtime = new $Util.RuntimeOptions({});
16345
16438
  return await this.setRuleWithOptions(request, runtime);
16346
16439
  }
16347
16440
  /**
16348
- * @summary Sets a name for a server certificate.
16441
+ * Sets a name for a server certificate.
16349
16442
  *
16350
- * @param request SetServerCertificateNameRequest
16351
- * @param runtime runtime options for this request RuntimeOptions
16352
- * @return SetServerCertificateNameResponse
16443
+ * @param request - SetServerCertificateNameRequest
16444
+ * @param runtime - runtime options for this request RuntimeOptions
16445
+ * @returns SetServerCertificateNameResponse
16353
16446
  */
16354
16447
  async setServerCertificateNameWithOptions(request, runtime) {
16355
16448
  tea_util_1.default.validateModel(request);
@@ -16392,21 +16485,21 @@ class Client extends openapi_client_1.default {
16392
16485
  return $tea.cast(await this.callApi(params, req, runtime), new SetServerCertificateNameResponse({}));
16393
16486
  }
16394
16487
  /**
16395
- * @summary Sets a name for a server certificate.
16488
+ * Sets a name for a server certificate.
16396
16489
  *
16397
- * @param request SetServerCertificateNameRequest
16398
- * @return SetServerCertificateNameResponse
16490
+ * @param request - SetServerCertificateNameRequest
16491
+ * @returns SetServerCertificateNameResponse
16399
16492
  */
16400
16493
  async setServerCertificateName(request) {
16401
16494
  let runtime = new $Util.RuntimeOptions({});
16402
16495
  return await this.setServerCertificateNameWithOptions(request, runtime);
16403
16496
  }
16404
16497
  /**
16405
- * @summary Configures a Transport Layer Security (TLS) policy.
16498
+ * Configures a Transport Layer Security (TLS) policy.
16406
16499
  *
16407
- * @param request SetTLSCipherPolicyAttributeRequest
16408
- * @param runtime runtime options for this request RuntimeOptions
16409
- * @return SetTLSCipherPolicyAttributeResponse
16500
+ * @param request - SetTLSCipherPolicyAttributeRequest
16501
+ * @param runtime - runtime options for this request RuntimeOptions
16502
+ * @returns SetTLSCipherPolicyAttributeResponse
16410
16503
  */
16411
16504
  async setTLSCipherPolicyAttributeWithOptions(request, runtime) {
16412
16505
  tea_util_1.default.validateModel(request);
@@ -16455,25 +16548,26 @@ class Client extends openapi_client_1.default {
16455
16548
  return $tea.cast(await this.callApi(params, req, runtime), new SetTLSCipherPolicyAttributeResponse({}));
16456
16549
  }
16457
16550
  /**
16458
- * @summary Configures a Transport Layer Security (TLS) policy.
16551
+ * Configures a Transport Layer Security (TLS) policy.
16459
16552
  *
16460
- * @param request SetTLSCipherPolicyAttributeRequest
16461
- * @return SetTLSCipherPolicyAttributeResponse
16553
+ * @param request - SetTLSCipherPolicyAttributeRequest
16554
+ * @returns SetTLSCipherPolicyAttributeResponse
16462
16555
  */
16463
16556
  async setTLSCipherPolicyAttribute(request) {
16464
16557
  let runtime = new $Util.RuntimeOptions({});
16465
16558
  return await this.setTLSCipherPolicyAttributeWithOptions(request, runtime);
16466
16559
  }
16467
16560
  /**
16468
- * @summary Modifies the configurations of a vServer group.
16561
+ * Modifies the configurations of a vServer group.
16469
16562
  *
16470
- * @description This operation allows you to modify only the name of a vServer group and the weights of the backend servers in the vServer group.
16563
+ * @remarks
16564
+ * This operation can be used to modify the weights of backend servers and names of vServer groups.
16471
16565
  * * If you want to modify backend servers in a specified vServer group, call the [ModifyVServerGroupBackendServers](https://help.aliyun.com/document_detail/35220.html) operation.
16472
16566
  * * If you want to add backend servers to a specified vServer group, call the [AddVServerGroupBackendServers](https://help.aliyun.com/document_detail/35218.html) operation.
16473
16567
  *
16474
- * @param request SetVServerGroupAttributeRequest
16475
- * @param runtime runtime options for this request RuntimeOptions
16476
- * @return SetVServerGroupAttributeResponse
16568
+ * @param request - SetVServerGroupAttributeRequest
16569
+ * @param runtime - runtime options for this request RuntimeOptions
16570
+ * @returns SetVServerGroupAttributeResponse
16477
16571
  */
16478
16572
  async setVServerGroupAttributeWithOptions(request, runtime) {
16479
16573
  tea_util_1.default.validateModel(request);
@@ -16519,30 +16613,32 @@ class Client extends openapi_client_1.default {
16519
16613
  return $tea.cast(await this.callApi(params, req, runtime), new SetVServerGroupAttributeResponse({}));
16520
16614
  }
16521
16615
  /**
16522
- * @summary Modifies the configurations of a vServer group.
16616
+ * Modifies the configurations of a vServer group.
16523
16617
  *
16524
- * @description This operation allows you to modify only the name of a vServer group and the weights of the backend servers in the vServer group.
16618
+ * @remarks
16619
+ * This operation can be used to modify the weights of backend servers and names of vServer groups.
16525
16620
  * * If you want to modify backend servers in a specified vServer group, call the [ModifyVServerGroupBackendServers](https://help.aliyun.com/document_detail/35220.html) operation.
16526
16621
  * * If you want to add backend servers to a specified vServer group, call the [AddVServerGroupBackendServers](https://help.aliyun.com/document_detail/35218.html) operation.
16527
16622
  *
16528
- * @param request SetVServerGroupAttributeRequest
16529
- * @return SetVServerGroupAttributeResponse
16623
+ * @param request - SetVServerGroupAttributeRequest
16624
+ * @returns SetVServerGroupAttributeResponse
16530
16625
  */
16531
16626
  async setVServerGroupAttribute(request) {
16532
16627
  let runtime = new $Util.RuntimeOptions({});
16533
16628
  return await this.setVServerGroupAttributeWithOptions(request, runtime);
16534
16629
  }
16535
16630
  /**
16536
- * @summary You can call this operation to start a listener.
16631
+ * Enables a listener.
16537
16632
  *
16538
- * @description When you call this operation, note the following items:
16633
+ * @remarks
16634
+ * When you call this operation, take note of the following items:
16539
16635
  * * You can call the operation only when the listener is in the Stopped state.
16540
- * * After the operation is called, the status of the listener changes to Starting.
16541
- * * You cannot call this operation when the SLB instance to which the listener is bound is in the Locked state.
16636
+ * * If the operation is successful, the listener switches to the Starting state.
16637
+ * * You cannot perform this operation when the Classic Load Balancer (CLB) instance to which the listener belongs is in the Locked state.
16542
16638
  *
16543
- * @param request StartLoadBalancerListenerRequest
16544
- * @param runtime runtime options for this request RuntimeOptions
16545
- * @return StartLoadBalancerListenerResponse
16639
+ * @param request - StartLoadBalancerListenerRequest
16640
+ * @param runtime - runtime options for this request RuntimeOptions
16641
+ * @returns StartLoadBalancerListenerResponse
16546
16642
  */
16547
16643
  async startLoadBalancerListenerWithOptions(request, runtime) {
16548
16644
  tea_util_1.default.validateModel(request);
@@ -16588,31 +16684,33 @@ class Client extends openapi_client_1.default {
16588
16684
  return $tea.cast(await this.callApi(params, req, runtime), new StartLoadBalancerListenerResponse({}));
16589
16685
  }
16590
16686
  /**
16591
- * @summary You can call this operation to start a listener.
16687
+ * Enables a listener.
16592
16688
  *
16593
- * @description When you call this operation, note the following items:
16689
+ * @remarks
16690
+ * When you call this operation, take note of the following items:
16594
16691
  * * You can call the operation only when the listener is in the Stopped state.
16595
- * * After the operation is called, the status of the listener changes to Starting.
16596
- * * You cannot call this operation when the SLB instance to which the listener is bound is in the Locked state.
16692
+ * * If the operation is successful, the listener switches to the Starting state.
16693
+ * * You cannot perform this operation when the Classic Load Balancer (CLB) instance to which the listener belongs is in the Locked state.
16597
16694
  *
16598
- * @param request StartLoadBalancerListenerRequest
16599
- * @return StartLoadBalancerListenerResponse
16695
+ * @param request - StartLoadBalancerListenerRequest
16696
+ * @returns StartLoadBalancerListenerResponse
16600
16697
  */
16601
16698
  async startLoadBalancerListener(request) {
16602
16699
  let runtime = new $Util.RuntimeOptions({});
16603
16700
  return await this.startLoadBalancerListenerWithOptions(request, runtime);
16604
16701
  }
16605
16702
  /**
16606
- * @summary Stops a listener.
16703
+ * Stops a listener.
16607
16704
  *
16608
- * @description Before you make this API call, note the following:
16705
+ * @remarks
16706
+ * Before you make this API call, note the following:
16609
16707
  * * After the API call is successfully made, the listener enters the stopped state.
16610
16708
  * * If the Server Load Balancer (SLB) instance to which the listener to be stopped belongs is in the locked state, this API call cannot be made.
16611
16709
  * > If you stop the listener, your services will be disrupted. Exercise caution when you perform this action.
16612
16710
  *
16613
- * @param request StopLoadBalancerListenerRequest
16614
- * @param runtime runtime options for this request RuntimeOptions
16615
- * @return StopLoadBalancerListenerResponse
16711
+ * @param request - StopLoadBalancerListenerRequest
16712
+ * @param runtime - runtime options for this request RuntimeOptions
16713
+ * @returns StopLoadBalancerListenerResponse
16616
16714
  */
16617
16715
  async stopLoadBalancerListenerWithOptions(request, runtime) {
16618
16716
  tea_util_1.default.validateModel(request);
@@ -16658,28 +16756,30 @@ class Client extends openapi_client_1.default {
16658
16756
  return $tea.cast(await this.callApi(params, req, runtime), new StopLoadBalancerListenerResponse({}));
16659
16757
  }
16660
16758
  /**
16661
- * @summary Stops a listener.
16759
+ * Stops a listener.
16662
16760
  *
16663
- * @description Before you make this API call, note the following:
16761
+ * @remarks
16762
+ * Before you make this API call, note the following:
16664
16763
  * * After the API call is successfully made, the listener enters the stopped state.
16665
16764
  * * If the Server Load Balancer (SLB) instance to which the listener to be stopped belongs is in the locked state, this API call cannot be made.
16666
16765
  * > If you stop the listener, your services will be disrupted. Exercise caution when you perform this action.
16667
16766
  *
16668
- * @param request StopLoadBalancerListenerRequest
16669
- * @return StopLoadBalancerListenerResponse
16767
+ * @param request - StopLoadBalancerListenerRequest
16768
+ * @returns StopLoadBalancerListenerResponse
16670
16769
  */
16671
16770
  async stopLoadBalancerListener(request) {
16672
16771
  let runtime = new $Util.RuntimeOptions({});
16673
16772
  return await this.stopLoadBalancerListenerWithOptions(request, runtime);
16674
16773
  }
16675
16774
  /**
16676
- * @summary Creates tags and adds the tags to resources.
16775
+ * Creates tags and adds the tags to resources.
16677
16776
  *
16678
- * @description > You can add at most 20 tags to each instance. Before you add tags to a resource, Alibaba Cloud checks the number of existing tags of the resource. If the maximum number is reached, an error message is returned.
16777
+ * @remarks
16778
+ * > You can add at most 20 tags to each instance. Before you add tags to a resource, Alibaba Cloud checks the number of existing tags of the resource. If the maximum number is reached, an error message is returned.
16679
16779
  *
16680
- * @param request TagResourcesRequest
16681
- * @param runtime runtime options for this request RuntimeOptions
16682
- * @return TagResourcesResponse
16780
+ * @param request - TagResourcesRequest
16781
+ * @param runtime - runtime options for this request RuntimeOptions
16782
+ * @returns TagResourcesResponse
16683
16783
  */
16684
16784
  async tagResourcesWithOptions(request, runtime) {
16685
16785
  tea_util_1.default.validateModel(request);
@@ -16725,23 +16825,24 @@ class Client extends openapi_client_1.default {
16725
16825
  return $tea.cast(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
16726
16826
  }
16727
16827
  /**
16728
- * @summary Creates tags and adds the tags to resources.
16828
+ * Creates tags and adds the tags to resources.
16729
16829
  *
16730
- * @description > You can add at most 20 tags to each instance. Before you add tags to a resource, Alibaba Cloud checks the number of existing tags of the resource. If the maximum number is reached, an error message is returned.
16830
+ * @remarks
16831
+ * > You can add at most 20 tags to each instance. Before you add tags to a resource, Alibaba Cloud checks the number of existing tags of the resource. If the maximum number is reached, an error message is returned.
16731
16832
  *
16732
- * @param request TagResourcesRequest
16733
- * @return TagResourcesResponse
16833
+ * @param request - TagResourcesRequest
16834
+ * @returns TagResourcesResponse
16734
16835
  */
16735
16836
  async tagResources(request) {
16736
16837
  let runtime = new $Util.RuntimeOptions({});
16737
16838
  return await this.tagResourcesWithOptions(request, runtime);
16738
16839
  }
16739
16840
  /**
16740
- * @summary Removes tags from specified resources.
16841
+ * Removes tags from a resource.
16741
16842
  *
16742
- * @param request UntagResourcesRequest
16743
- * @param runtime runtime options for this request RuntimeOptions
16744
- * @return UntagResourcesResponse
16843
+ * @param request - UntagResourcesRequest
16844
+ * @param runtime - runtime options for this request RuntimeOptions
16845
+ * @returns UntagResourcesResponse
16745
16846
  */
16746
16847
  async untagResourcesWithOptions(request, runtime) {
16747
16848
  tea_util_1.default.validateModel(request);
@@ -16790,23 +16891,24 @@ class Client extends openapi_client_1.default {
16790
16891
  return $tea.cast(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
16791
16892
  }
16792
16893
  /**
16793
- * @summary Removes tags from specified resources.
16894
+ * Removes tags from a resource.
16794
16895
  *
16795
- * @param request UntagResourcesRequest
16796
- * @return UntagResourcesResponse
16896
+ * @param request - UntagResourcesRequest
16897
+ * @returns UntagResourcesResponse
16797
16898
  */
16798
16899
  async untagResources(request) {
16799
16900
  let runtime = new $Util.RuntimeOptions({});
16800
16901
  return await this.untagResourcesWithOptions(request, runtime);
16801
16902
  }
16802
16903
  /**
16803
- * @summary Uploads a CA certificate.
16904
+ * Uploads a CA certificate.
16804
16905
  *
16805
- * @description You can upload only one CA certificate at a time. After a CA certificate is uploaded, the certificate ID, name, and fingerprint are returned.
16906
+ * @remarks
16907
+ * You can upload only one CA certificate at a time. After a CA certificate is uploaded, the certificate ID, name, and fingerprint are returned.
16806
16908
  *
16807
- * @param request UploadCACertificateRequest
16808
- * @param runtime runtime options for this request RuntimeOptions
16809
- * @return UploadCACertificateResponse
16909
+ * @param request - UploadCACertificateRequest
16910
+ * @param runtime - runtime options for this request RuntimeOptions
16911
+ * @returns UploadCACertificateResponse
16810
16912
  */
16811
16913
  async uploadCACertificateWithOptions(request, runtime) {
16812
16914
  tea_util_1.default.validateModel(request);
@@ -16855,26 +16957,28 @@ class Client extends openapi_client_1.default {
16855
16957
  return $tea.cast(await this.callApi(params, req, runtime), new UploadCACertificateResponse({}));
16856
16958
  }
16857
16959
  /**
16858
- * @summary Uploads a CA certificate.
16960
+ * Uploads a CA certificate.
16859
16961
  *
16860
- * @description You can upload only one CA certificate at a time. After a CA certificate is uploaded, the certificate ID, name, and fingerprint are returned.
16962
+ * @remarks
16963
+ * You can upload only one CA certificate at a time. After a CA certificate is uploaded, the certificate ID, name, and fingerprint are returned.
16861
16964
  *
16862
- * @param request UploadCACertificateRequest
16863
- * @return UploadCACertificateResponse
16965
+ * @param request - UploadCACertificateRequest
16966
+ * @returns UploadCACertificateResponse
16864
16967
  */
16865
16968
  async uploadCACertificate(request) {
16866
16969
  let runtime = new $Util.RuntimeOptions({});
16867
16970
  return await this.uploadCACertificateWithOptions(request, runtime);
16868
16971
  }
16869
16972
  /**
16870
- * @summary Uploads a server certificate.
16973
+ * Uploads a server certificate.
16871
16974
  *
16872
- * @description * You can upload only one server certificate and its private key in each call.
16975
+ * @remarks
16976
+ * You can upload only one server certificate and its private key in each call.
16873
16977
  * * After a server certificate and its private key are uploaded, the fingerprints of all server certificates that belong to your Alibaba Cloud account are returned.
16874
16978
  *
16875
- * @param request UploadServerCertificateRequest
16876
- * @param runtime runtime options for this request RuntimeOptions
16877
- * @return UploadServerCertificateResponse
16979
+ * @param request - UploadServerCertificateRequest
16980
+ * @param runtime - runtime options for this request RuntimeOptions
16981
+ * @returns UploadServerCertificateResponse
16878
16982
  */
16879
16983
  async uploadServerCertificateWithOptions(request, runtime) {
16880
16984
  tea_util_1.default.validateModel(request);
@@ -16935,13 +17039,14 @@ class Client extends openapi_client_1.default {
16935
17039
  return $tea.cast(await this.callApi(params, req, runtime), new UploadServerCertificateResponse({}));
16936
17040
  }
16937
17041
  /**
16938
- * @summary Uploads a server certificate.
17042
+ * Uploads a server certificate.
16939
17043
  *
16940
- * @description * You can upload only one server certificate and its private key in each call.
17044
+ * @remarks
17045
+ * You can upload only one server certificate and its private key in each call.
16941
17046
  * * After a server certificate and its private key are uploaded, the fingerprints of all server certificates that belong to your Alibaba Cloud account are returned.
16942
17047
  *
16943
- * @param request UploadServerCertificateRequest
16944
- * @return UploadServerCertificateResponse
17048
+ * @param request - UploadServerCertificateRequest
17049
+ * @returns UploadServerCertificateResponse
16945
17050
  */
16946
17051
  async uploadServerCertificate(request) {
16947
17052
  let runtime = new $Util.RuntimeOptions({});