oci-loadbalancer 2.75.0 → 2.76.0

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.
Files changed (65) hide show
  1. package/lib/client.d.ts +61 -61
  2. package/lib/client.js +65 -61
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/change-load-balancer-compartment-request.d.ts +1 -1
  5. package/lib/request/create-backend-request.d.ts +1 -1
  6. package/lib/request/create-backend-set-request.d.ts +1 -1
  7. package/lib/request/create-certificate-request.d.ts +1 -1
  8. package/lib/request/create-hostname-request.d.ts +1 -1
  9. package/lib/request/create-listener-request.d.ts +1 -1
  10. package/lib/request/create-load-balancer-request.d.ts +1 -1
  11. package/lib/request/create-path-route-set-request.d.ts +1 -1
  12. package/lib/request/create-routing-policy-request.d.ts +1 -1
  13. package/lib/request/create-rule-set-request.d.ts +1 -1
  14. package/lib/request/create-sslcipher-suite-request.d.ts +1 -1
  15. package/lib/request/delete-backend-request.d.ts +1 -1
  16. package/lib/request/delete-backend-set-request.d.ts +1 -1
  17. package/lib/request/delete-certificate-request.d.ts +1 -1
  18. package/lib/request/delete-hostname-request.d.ts +1 -1
  19. package/lib/request/delete-listener-request.d.ts +1 -1
  20. package/lib/request/delete-load-balancer-request.d.ts +1 -1
  21. package/lib/request/delete-path-route-set-request.d.ts +1 -1
  22. package/lib/request/delete-routing-policy-request.d.ts +1 -1
  23. package/lib/request/delete-rule-set-request.d.ts +1 -1
  24. package/lib/request/delete-sslcipher-suite-request.d.ts +1 -1
  25. package/lib/request/get-backend-health-request.d.ts +1 -1
  26. package/lib/request/get-backend-request.d.ts +1 -1
  27. package/lib/request/get-backend-set-health-request.d.ts +1 -1
  28. package/lib/request/get-backend-set-request.d.ts +1 -1
  29. package/lib/request/get-health-checker-request.d.ts +1 -1
  30. package/lib/request/get-hostname-request.d.ts +1 -1
  31. package/lib/request/get-load-balancer-health-request.d.ts +1 -1
  32. package/lib/request/get-load-balancer-request.d.ts +1 -1
  33. package/lib/request/get-path-route-set-request.d.ts +1 -1
  34. package/lib/request/get-routing-policy-request.d.ts +1 -1
  35. package/lib/request/get-rule-set-request.d.ts +1 -1
  36. package/lib/request/get-sslcipher-suite-request.d.ts +1 -1
  37. package/lib/request/get-work-request-request.d.ts +1 -1
  38. package/lib/request/list-backend-sets-request.d.ts +1 -1
  39. package/lib/request/list-backends-request.d.ts +1 -1
  40. package/lib/request/list-certificates-request.d.ts +1 -1
  41. package/lib/request/list-hostnames-request.d.ts +1 -1
  42. package/lib/request/list-listener-rules-request.d.ts +1 -1
  43. package/lib/request/list-load-balancer-healths-request.d.ts +1 -1
  44. package/lib/request/list-load-balancers-request.d.ts +1 -1
  45. package/lib/request/list-path-route-sets-request.d.ts +1 -1
  46. package/lib/request/list-policies-request.d.ts +1 -1
  47. package/lib/request/list-protocols-request.d.ts +1 -1
  48. package/lib/request/list-routing-policies-request.d.ts +1 -1
  49. package/lib/request/list-rule-sets-request.d.ts +1 -1
  50. package/lib/request/list-shapes-request.d.ts +1 -1
  51. package/lib/request/list-sslcipher-suites-request.d.ts +1 -1
  52. package/lib/request/list-work-requests-request.d.ts +1 -1
  53. package/lib/request/update-backend-request.d.ts +1 -1
  54. package/lib/request/update-backend-set-request.d.ts +1 -1
  55. package/lib/request/update-health-checker-request.d.ts +1 -1
  56. package/lib/request/update-hostname-request.d.ts +1 -1
  57. package/lib/request/update-listener-request.d.ts +1 -1
  58. package/lib/request/update-load-balancer-request.d.ts +1 -1
  59. package/lib/request/update-load-balancer-shape-request.d.ts +1 -1
  60. package/lib/request/update-network-security-groups-request.d.ts +1 -1
  61. package/lib/request/update-path-route-set-request.d.ts +1 -1
  62. package/lib/request/update-routing-policy-request.d.ts +1 -1
  63. package/lib/request/update-rule-set-request.d.ts +1 -1
  64. package/lib/request/update-sslcipher-suite-request.d.ts +1 -1
  65. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -83,6 +83,10 @@ class LoadBalancerClient {
83
83
  ? clientConfiguration.bodyDuplexMode
84
84
  : undefined;
85
85
  }
86
+ if (!oci_common_2.developerToolConfiguration.isServiceEnabled("loadbalancer")) {
87
+ let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
88
+ throw errmsg.concat("loadbalancer");
89
+ }
86
90
  // if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
87
91
  const specCircuitBreakerEnabled = true;
88
92
  if (!this._circuitBreaker &&
@@ -188,7 +192,7 @@ class LoadBalancerClient {
188
192
  * @param ChangeLoadBalancerCompartmentRequest
189
193
  * @return ChangeLoadBalancerCompartmentResponse
190
194
  * @throws OciError when an error occurs
191
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
195
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
192
196
  */
193
197
  changeLoadBalancerCompartment(changeLoadBalancerCompartmentRequest) {
194
198
  return __awaiter(this, void 0, void 0, function* () {
@@ -250,7 +254,7 @@ class LoadBalancerClient {
250
254
  * @param CreateBackendRequest
251
255
  * @return CreateBackendResponse
252
256
  * @throws OciError when an error occurs
253
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
257
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
254
258
  */
255
259
  createBackend(createBackendRequest) {
256
260
  return __awaiter(this, void 0, void 0, function* () {
@@ -313,7 +317,7 @@ class LoadBalancerClient {
313
317
  * @param CreateBackendSetRequest
314
318
  * @return CreateBackendSetResponse
315
319
  * @throws OciError when an error occurs
316
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
320
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
317
321
  */
318
322
  createBackendSet(createBackendSetRequest) {
319
323
  return __awaiter(this, void 0, void 0, function* () {
@@ -375,7 +379,7 @@ class LoadBalancerClient {
375
379
  * @param CreateCertificateRequest
376
380
  * @return CreateCertificateResponse
377
381
  * @throws OciError when an error occurs
378
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
382
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
379
383
  */
380
384
  createCertificate(createCertificateRequest) {
381
385
  return __awaiter(this, void 0, void 0, function* () {
@@ -439,7 +443,7 @@ class LoadBalancerClient {
439
443
  * @param CreateHostnameRequest
440
444
  * @return CreateHostnameResponse
441
445
  * @throws OciError when an error occurs
442
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
446
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
443
447
  */
444
448
  createHostname(createHostnameRequest) {
445
449
  return __awaiter(this, void 0, void 0, function* () {
@@ -501,7 +505,7 @@ class LoadBalancerClient {
501
505
  * @param CreateListenerRequest
502
506
  * @return CreateListenerResponse
503
507
  * @throws OciError when an error occurs
504
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
508
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
505
509
  */
506
510
  createListener(createListenerRequest) {
507
511
  return __awaiter(this, void 0, void 0, function* () {
@@ -590,7 +594,7 @@ class LoadBalancerClient {
590
594
  * @param CreateLoadBalancerRequest
591
595
  * @return CreateLoadBalancerResponse
592
596
  * @throws OciError when an error occurs
593
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
597
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
594
598
  */
595
599
  createLoadBalancer(createLoadBalancerRequest) {
596
600
  return __awaiter(this, void 0, void 0, function* () {
@@ -651,7 +655,7 @@ class LoadBalancerClient {
651
655
  * @param CreatePathRouteSetRequest
652
656
  * @return CreatePathRouteSetResponse
653
657
  * @throws OciError when an error occurs
654
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
658
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
655
659
  */
656
660
  createPathRouteSet(createPathRouteSetRequest) {
657
661
  return __awaiter(this, void 0, void 0, function* () {
@@ -715,7 +719,7 @@ class LoadBalancerClient {
715
719
  * @param CreateRoutingPolicyRequest
716
720
  * @return CreateRoutingPolicyResponse
717
721
  * @throws OciError when an error occurs
718
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
722
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
719
723
  */
720
724
  createRoutingPolicy(createRoutingPolicyRequest) {
721
725
  return __awaiter(this, void 0, void 0, function* () {
@@ -779,7 +783,7 @@ class LoadBalancerClient {
779
783
  * @param CreateRuleSetRequest
780
784
  * @return CreateRuleSetResponse
781
785
  * @throws OciError when an error occurs
782
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
786
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
783
787
  */
784
788
  createRuleSet(createRuleSetRequest) {
785
789
  return __awaiter(this, void 0, void 0, function* () {
@@ -841,7 +845,7 @@ class LoadBalancerClient {
841
845
  * @param CreateSSLCipherSuiteRequest
842
846
  * @return CreateSSLCipherSuiteResponse
843
847
  * @throws OciError when an error occurs
844
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
848
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
845
849
  */
846
850
  createSSLCipherSuite(createSSLCipherSuiteRequest) {
847
851
  return __awaiter(this, void 0, void 0, function* () {
@@ -903,7 +907,7 @@ class LoadBalancerClient {
903
907
  * @param DeleteBackendRequest
904
908
  * @return DeleteBackendResponse
905
909
  * @throws OciError when an error occurs
906
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
910
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
907
911
  */
908
912
  deleteBackend(deleteBackendRequest) {
909
913
  return __awaiter(this, void 0, void 0, function* () {
@@ -968,7 +972,7 @@ class LoadBalancerClient {
968
972
  * @param DeleteBackendSetRequest
969
973
  * @return DeleteBackendSetResponse
970
974
  * @throws OciError when an error occurs
971
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
975
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
972
976
  */
973
977
  deleteBackendSet(deleteBackendSetRequest) {
974
978
  return __awaiter(this, void 0, void 0, function* () {
@@ -1029,7 +1033,7 @@ class LoadBalancerClient {
1029
1033
  * @param DeleteCertificateRequest
1030
1034
  * @return DeleteCertificateResponse
1031
1035
  * @throws OciError when an error occurs
1032
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
1036
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
1033
1037
  */
1034
1038
  deleteCertificate(deleteCertificateRequest) {
1035
1039
  return __awaiter(this, void 0, void 0, function* () {
@@ -1091,7 +1095,7 @@ class LoadBalancerClient {
1091
1095
  * @param DeleteHostnameRequest
1092
1096
  * @return DeleteHostnameResponse
1093
1097
  * @throws OciError when an error occurs
1094
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
1098
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
1095
1099
  */
1096
1100
  deleteHostname(deleteHostnameRequest) {
1097
1101
  return __awaiter(this, void 0, void 0, function* () {
@@ -1152,7 +1156,7 @@ class LoadBalancerClient {
1152
1156
  * @param DeleteListenerRequest
1153
1157
  * @return DeleteListenerResponse
1154
1158
  * @throws OciError when an error occurs
1155
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
1159
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
1156
1160
  */
1157
1161
  deleteListener(deleteListenerRequest) {
1158
1162
  return __awaiter(this, void 0, void 0, function* () {
@@ -1213,7 +1217,7 @@ class LoadBalancerClient {
1213
1217
  * @param DeleteLoadBalancerRequest
1214
1218
  * @return DeleteLoadBalancerResponse
1215
1219
  * @throws OciError when an error occurs
1216
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
1220
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
1217
1221
  */
1218
1222
  deleteLoadBalancer(deleteLoadBalancerRequest) {
1219
1223
  return __awaiter(this, void 0, void 0, function* () {
@@ -1277,7 +1281,7 @@ class LoadBalancerClient {
1277
1281
  * @param DeletePathRouteSetRequest
1278
1282
  * @return DeletePathRouteSetResponse
1279
1283
  * @throws OciError when an error occurs
1280
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
1284
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
1281
1285
  */
1282
1286
  deletePathRouteSet(deletePathRouteSetRequest) {
1283
1287
  return __awaiter(this, void 0, void 0, function* () {
@@ -1342,7 +1346,7 @@ class LoadBalancerClient {
1342
1346
  * @param DeleteRoutingPolicyRequest
1343
1347
  * @return DeleteRoutingPolicyResponse
1344
1348
  * @throws OciError when an error occurs
1345
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
1349
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
1346
1350
  */
1347
1351
  deleteRoutingPolicy(deleteRoutingPolicyRequest) {
1348
1352
  return __awaiter(this, void 0, void 0, function* () {
@@ -1407,7 +1411,7 @@ class LoadBalancerClient {
1407
1411
  * @param DeleteRuleSetRequest
1408
1412
  * @return DeleteRuleSetResponse
1409
1413
  * @throws OciError when an error occurs
1410
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
1414
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
1411
1415
  */
1412
1416
  deleteRuleSet(deleteRuleSetRequest) {
1413
1417
  return __awaiter(this, void 0, void 0, function* () {
@@ -1468,7 +1472,7 @@ class LoadBalancerClient {
1468
1472
  * @param DeleteSSLCipherSuiteRequest
1469
1473
  * @return DeleteSSLCipherSuiteResponse
1470
1474
  * @throws OciError when an error occurs
1471
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
1475
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
1472
1476
  */
1473
1477
  deleteSSLCipherSuite(deleteSSLCipherSuiteRequest) {
1474
1478
  return __awaiter(this, void 0, void 0, function* () {
@@ -1529,7 +1533,7 @@ class LoadBalancerClient {
1529
1533
  * @param GetBackendRequest
1530
1534
  * @return GetBackendResponse
1531
1535
  * @throws OciError when an error occurs
1532
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
1536
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
1533
1537
  */
1534
1538
  getBackend(getBackendRequest) {
1535
1539
  return __awaiter(this, void 0, void 0, function* () {
@@ -1595,7 +1599,7 @@ class LoadBalancerClient {
1595
1599
  * @param GetBackendHealthRequest
1596
1600
  * @return GetBackendHealthResponse
1597
1601
  * @throws OciError when an error occurs
1598
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
1602
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
1599
1603
  */
1600
1604
  getBackendHealth(getBackendHealthRequest) {
1601
1605
  return __awaiter(this, void 0, void 0, function* () {
@@ -1661,7 +1665,7 @@ class LoadBalancerClient {
1661
1665
  * @param GetBackendSetRequest
1662
1666
  * @return GetBackendSetResponse
1663
1667
  * @throws OciError when an error occurs
1664
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
1668
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
1665
1669
  */
1666
1670
  getBackendSet(getBackendSetRequest) {
1667
1671
  return __awaiter(this, void 0, void 0, function* () {
@@ -1726,7 +1730,7 @@ class LoadBalancerClient {
1726
1730
  * @param GetBackendSetHealthRequest
1727
1731
  * @return GetBackendSetHealthResponse
1728
1732
  * @throws OciError when an error occurs
1729
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
1733
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
1730
1734
  */
1731
1735
  getBackendSetHealth(getBackendSetHealthRequest) {
1732
1736
  return __awaiter(this, void 0, void 0, function* () {
@@ -1791,7 +1795,7 @@ class LoadBalancerClient {
1791
1795
  * @param GetHealthCheckerRequest
1792
1796
  * @return GetHealthCheckerResponse
1793
1797
  * @throws OciError when an error occurs
1794
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
1798
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
1795
1799
  */
1796
1800
  getHealthChecker(getHealthCheckerRequest) {
1797
1801
  return __awaiter(this, void 0, void 0, function* () {
@@ -1856,7 +1860,7 @@ class LoadBalancerClient {
1856
1860
  * @param GetHostnameRequest
1857
1861
  * @return GetHostnameResponse
1858
1862
  * @throws OciError when an error occurs
1859
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
1863
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
1860
1864
  */
1861
1865
  getHostname(getHostnameRequest) {
1862
1866
  return __awaiter(this, void 0, void 0, function* () {
@@ -1921,7 +1925,7 @@ class LoadBalancerClient {
1921
1925
  * @param GetLoadBalancerRequest
1922
1926
  * @return GetLoadBalancerResponse
1923
1927
  * @throws OciError when an error occurs
1924
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
1928
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
1925
1929
  */
1926
1930
  getLoadBalancer(getLoadBalancerRequest) {
1927
1931
  return __awaiter(this, void 0, void 0, function* () {
@@ -1985,7 +1989,7 @@ class LoadBalancerClient {
1985
1989
  * @param GetLoadBalancerHealthRequest
1986
1990
  * @return GetLoadBalancerHealthResponse
1987
1991
  * @throws OciError when an error occurs
1988
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
1992
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
1989
1993
  */
1990
1994
  getLoadBalancerHealth(getLoadBalancerHealthRequest) {
1991
1995
  return __awaiter(this, void 0, void 0, function* () {
@@ -2049,7 +2053,7 @@ class LoadBalancerClient {
2049
2053
  * @param GetPathRouteSetRequest
2050
2054
  * @return GetPathRouteSetResponse
2051
2055
  * @throws OciError when an error occurs
2052
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
2056
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
2053
2057
  */
2054
2058
  getPathRouteSet(getPathRouteSetRequest) {
2055
2059
  return __awaiter(this, void 0, void 0, function* () {
@@ -2114,7 +2118,7 @@ class LoadBalancerClient {
2114
2118
  * @param GetRoutingPolicyRequest
2115
2119
  * @return GetRoutingPolicyResponse
2116
2120
  * @throws OciError when an error occurs
2117
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
2121
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
2118
2122
  */
2119
2123
  getRoutingPolicy(getRoutingPolicyRequest) {
2120
2124
  return __awaiter(this, void 0, void 0, function* () {
@@ -2179,7 +2183,7 @@ class LoadBalancerClient {
2179
2183
  * @param GetRuleSetRequest
2180
2184
  * @return GetRuleSetResponse
2181
2185
  * @throws OciError when an error occurs
2182
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
2186
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
2183
2187
  */
2184
2188
  getRuleSet(getRuleSetRequest) {
2185
2189
  return __awaiter(this, void 0, void 0, function* () {
@@ -2244,7 +2248,7 @@ class LoadBalancerClient {
2244
2248
  * @param GetSSLCipherSuiteRequest
2245
2249
  * @return GetSSLCipherSuiteResponse
2246
2250
  * @throws OciError when an error occurs
2247
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
2251
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
2248
2252
  */
2249
2253
  getSSLCipherSuite(getSSLCipherSuiteRequest) {
2250
2254
  return __awaiter(this, void 0, void 0, function* () {
@@ -2309,7 +2313,7 @@ class LoadBalancerClient {
2309
2313
  * @param GetWorkRequestRequest
2310
2314
  * @return GetWorkRequestResponse
2311
2315
  * @throws OciError when an error occurs
2312
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2316
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2313
2317
  */
2314
2318
  getWorkRequest(getWorkRequestRequest) {
2315
2319
  return __awaiter(this, void 0, void 0, function* () {
@@ -2367,7 +2371,7 @@ class LoadBalancerClient {
2367
2371
  * @param ListBackendSetsRequest
2368
2372
  * @return ListBackendSetsResponse
2369
2373
  * @throws OciError when an error occurs
2370
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
2374
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
2371
2375
  */
2372
2376
  listBackendSets(listBackendSetsRequest) {
2373
2377
  return __awaiter(this, void 0, void 0, function* () {
@@ -2431,7 +2435,7 @@ class LoadBalancerClient {
2431
2435
  * @param ListBackendsRequest
2432
2436
  * @return ListBackendsResponse
2433
2437
  * @throws OciError when an error occurs
2434
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
2438
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
2435
2439
  */
2436
2440
  listBackends(listBackendsRequest) {
2437
2441
  return __awaiter(this, void 0, void 0, function* () {
@@ -2496,7 +2500,7 @@ class LoadBalancerClient {
2496
2500
  * @param ListCertificatesRequest
2497
2501
  * @return ListCertificatesResponse
2498
2502
  * @throws OciError when an error occurs
2499
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
2503
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
2500
2504
  */
2501
2505
  listCertificates(listCertificatesRequest) {
2502
2506
  return __awaiter(this, void 0, void 0, function* () {
@@ -2560,7 +2564,7 @@ class LoadBalancerClient {
2560
2564
  * @param ListHostnamesRequest
2561
2565
  * @return ListHostnamesResponse
2562
2566
  * @throws OciError when an error occurs
2563
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
2567
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
2564
2568
  */
2565
2569
  listHostnames(listHostnamesRequest) {
2566
2570
  return __awaiter(this, void 0, void 0, function* () {
@@ -2631,7 +2635,7 @@ class LoadBalancerClient {
2631
2635
  * @param ListListenerRulesRequest
2632
2636
  * @return ListListenerRulesResponse
2633
2637
  * @throws OciError when an error occurs
2634
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
2638
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
2635
2639
  */
2636
2640
  listListenerRules(listListenerRulesRequest) {
2637
2641
  return __awaiter(this, void 0, void 0, function* () {
@@ -2696,7 +2700,7 @@ class LoadBalancerClient {
2696
2700
  * @param ListLoadBalancerHealthsRequest
2697
2701
  * @return ListLoadBalancerHealthsResponse
2698
2702
  * @throws OciError when an error occurs
2699
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
2703
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
2700
2704
  */
2701
2705
  listLoadBalancerHealths(listLoadBalancerHealthsRequest) {
2702
2706
  return __awaiter(this, void 0, void 0, function* () {
@@ -2801,7 +2805,7 @@ class LoadBalancerClient {
2801
2805
  * @param ListLoadBalancersRequest
2802
2806
  * @return ListLoadBalancersResponse
2803
2807
  * @throws OciError when an error occurs
2804
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
2808
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
2805
2809
  */
2806
2810
  listLoadBalancers(listLoadBalancersRequest) {
2807
2811
  return __awaiter(this, void 0, void 0, function* () {
@@ -2911,7 +2915,7 @@ class LoadBalancerClient {
2911
2915
  * @param ListPathRouteSetsRequest
2912
2916
  * @return ListPathRouteSetsResponse
2913
2917
  * @throws OciError when an error occurs
2914
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
2918
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
2915
2919
  */
2916
2920
  listPathRouteSets(listPathRouteSetsRequest) {
2917
2921
  return __awaiter(this, void 0, void 0, function* () {
@@ -2975,7 +2979,7 @@ class LoadBalancerClient {
2975
2979
  * @param ListPoliciesRequest
2976
2980
  * @return ListPoliciesResponse
2977
2981
  * @throws OciError when an error occurs
2978
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
2982
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
2979
2983
  */
2980
2984
  listPolicies(listPoliciesRequest) {
2981
2985
  return __awaiter(this, void 0, void 0, function* () {
@@ -3080,7 +3084,7 @@ class LoadBalancerClient {
3080
3084
  * @param ListProtocolsRequest
3081
3085
  * @return ListProtocolsResponse
3082
3086
  * @throws OciError when an error occurs
3083
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
3087
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
3084
3088
  */
3085
3089
  listProtocols(listProtocolsRequest) {
3086
3090
  return __awaiter(this, void 0, void 0, function* () {
@@ -3185,7 +3189,7 @@ class LoadBalancerClient {
3185
3189
  * @param ListRoutingPoliciesRequest
3186
3190
  * @return ListRoutingPoliciesResponse
3187
3191
  * @throws OciError when an error occurs
3188
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
3192
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
3189
3193
  */
3190
3194
  listRoutingPolicies(listRoutingPoliciesRequest) {
3191
3195
  return __awaiter(this, void 0, void 0, function* () {
@@ -3297,7 +3301,7 @@ class LoadBalancerClient {
3297
3301
  * @param ListRuleSetsRequest
3298
3302
  * @return ListRuleSetsResponse
3299
3303
  * @throws OciError when an error occurs
3300
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
3304
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
3301
3305
  */
3302
3306
  listRuleSets(listRuleSetsRequest) {
3303
3307
  return __awaiter(this, void 0, void 0, function* () {
@@ -3361,7 +3365,7 @@ class LoadBalancerClient {
3361
3365
  * @param ListSSLCipherSuitesRequest
3362
3366
  * @return ListSSLCipherSuitesResponse
3363
3367
  * @throws OciError when an error occurs
3364
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
3368
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
3365
3369
  */
3366
3370
  listSSLCipherSuites(listSSLCipherSuitesRequest) {
3367
3371
  return __awaiter(this, void 0, void 0, function* () {
@@ -3425,7 +3429,7 @@ class LoadBalancerClient {
3425
3429
  * @param ListShapesRequest
3426
3430
  * @return ListShapesResponse
3427
3431
  * @throws OciError when an error occurs
3428
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
3432
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
3429
3433
  */
3430
3434
  listShapes(listShapesRequest) {
3431
3435
  return __awaiter(this, void 0, void 0, function* () {
@@ -3530,7 +3534,7 @@ class LoadBalancerClient {
3530
3534
  * @param ListWorkRequestsRequest
3531
3535
  * @return ListWorkRequestsResponse
3532
3536
  * @throws OciError when an error occurs
3533
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3537
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3534
3538
  */
3535
3539
  listWorkRequests(listWorkRequestsRequest) {
3536
3540
  return __awaiter(this, void 0, void 0, function* () {
@@ -3636,7 +3640,7 @@ class LoadBalancerClient {
3636
3640
  * @param UpdateBackendRequest
3637
3641
  * @return UpdateBackendResponse
3638
3642
  * @throws OciError when an error occurs
3639
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
3643
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
3640
3644
  */
3641
3645
  updateBackend(updateBackendRequest) {
3642
3646
  return __awaiter(this, void 0, void 0, function* () {
@@ -3700,7 +3704,7 @@ class LoadBalancerClient {
3700
3704
  * @param UpdateBackendSetRequest
3701
3705
  * @return UpdateBackendSetResponse
3702
3706
  * @throws OciError when an error occurs
3703
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
3707
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
3704
3708
  */
3705
3709
  updateBackendSet(updateBackendSetRequest) {
3706
3710
  return __awaiter(this, void 0, void 0, function* () {
@@ -3763,7 +3767,7 @@ class LoadBalancerClient {
3763
3767
  * @param UpdateHealthCheckerRequest
3764
3768
  * @return UpdateHealthCheckerResponse
3765
3769
  * @throws OciError when an error occurs
3766
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
3770
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
3767
3771
  */
3768
3772
  updateHealthChecker(updateHealthCheckerRequest) {
3769
3773
  return __awaiter(this, void 0, void 0, function* () {
@@ -3828,7 +3832,7 @@ class LoadBalancerClient {
3828
3832
  * @param UpdateHostnameRequest
3829
3833
  * @return UpdateHostnameResponse
3830
3834
  * @throws OciError when an error occurs
3831
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
3835
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
3832
3836
  */
3833
3837
  updateHostname(updateHostnameRequest) {
3834
3838
  return __awaiter(this, void 0, void 0, function* () {
@@ -3891,7 +3895,7 @@ class LoadBalancerClient {
3891
3895
  * @param UpdateListenerRequest
3892
3896
  * @return UpdateListenerResponse
3893
3897
  * @throws OciError when an error occurs
3894
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
3898
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
3895
3899
  */
3896
3900
  updateListener(updateListenerRequest) {
3897
3901
  return __awaiter(this, void 0, void 0, function* () {
@@ -3954,7 +3958,7 @@ class LoadBalancerClient {
3954
3958
  * @param UpdateLoadBalancerRequest
3955
3959
  * @return UpdateLoadBalancerResponse
3956
3960
  * @throws OciError when an error occurs
3957
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
3961
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
3958
3962
  */
3959
3963
  updateLoadBalancer(updateLoadBalancerRequest) {
3960
3964
  return __awaiter(this, void 0, void 0, function* () {
@@ -4022,7 +4026,7 @@ class LoadBalancerClient {
4022
4026
  * @param UpdateLoadBalancerShapeRequest
4023
4027
  * @return UpdateLoadBalancerShapeResponse
4024
4028
  * @throws OciError when an error occurs
4025
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
4029
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
4026
4030
  */
4027
4031
  updateLoadBalancerShape(updateLoadBalancerShapeRequest) {
4028
4032
  return __awaiter(this, void 0, void 0, function* () {
@@ -4084,7 +4088,7 @@ class LoadBalancerClient {
4084
4088
  * @param UpdateNetworkSecurityGroupsRequest
4085
4089
  * @return UpdateNetworkSecurityGroupsResponse
4086
4090
  * @throws OciError when an error occurs
4087
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
4091
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
4088
4092
  */
4089
4093
  updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest) {
4090
4094
  return __awaiter(this, void 0, void 0, function* () {
@@ -4152,7 +4156,7 @@ class LoadBalancerClient {
4152
4156
  * @param UpdatePathRouteSetRequest
4153
4157
  * @return UpdatePathRouteSetResponse
4154
4158
  * @throws OciError when an error occurs
4155
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
4159
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
4156
4160
  */
4157
4161
  updatePathRouteSet(updatePathRouteSetRequest) {
4158
4162
  return __awaiter(this, void 0, void 0, function* () {
@@ -4219,7 +4223,7 @@ class LoadBalancerClient {
4219
4223
  * @param UpdateRoutingPolicyRequest
4220
4224
  * @return UpdateRoutingPolicyResponse
4221
4225
  * @throws OciError when an error occurs
4222
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
4226
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
4223
4227
  */
4224
4228
  updateRoutingPolicy(updateRoutingPolicyRequest) {
4225
4229
  return __awaiter(this, void 0, void 0, function* () {
@@ -4286,7 +4290,7 @@ class LoadBalancerClient {
4286
4290
  * @param UpdateRuleSetRequest
4287
4291
  * @return UpdateRuleSetResponse
4288
4292
  * @throws OciError when an error occurs
4289
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
4293
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
4290
4294
  */
4291
4295
  updateRuleSet(updateRuleSetRequest) {
4292
4296
  return __awaiter(this, void 0, void 0, function* () {
@@ -4349,7 +4353,7 @@ class LoadBalancerClient {
4349
4353
  * @param UpdateSSLCipherSuiteRequest
4350
4354
  * @return UpdateSSLCipherSuiteResponse
4351
4355
  * @throws OciError when an error occurs
4352
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.75.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
4356
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
4353
4357
  */
4354
4358
  updateSSLCipherSuite(updateSSLCipherSuiteRequest) {
4355
4359
  return __awaiter(this, void 0, void 0, function* () {