oci-loadbalancer 2.84.0 → 2.85.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 +65 -61
  2. package/lib/client.js +67 -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
@@ -193,6 +193,12 @@ class LoadBalancerClient {
193
193
  this._circuitBreaker.shutdown();
194
194
  }
195
195
  }
196
+ /**
197
+ * Close the client once it is no longer needed
198
+ */
199
+ close() {
200
+ this.shutdownCircuitBreaker();
201
+ }
196
202
  /**
197
203
  * Moves a load balancer into a different compartment within the same tenancy. For information about moving resources
198
204
  * between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
@@ -201,7 +207,7 @@ class LoadBalancerClient {
201
207
  * @param ChangeLoadBalancerCompartmentRequest
202
208
  * @return ChangeLoadBalancerCompartmentResponse
203
209
  * @throws OciError when an error occurs
204
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
210
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
205
211
  */
206
212
  changeLoadBalancerCompartment(changeLoadBalancerCompartmentRequest) {
207
213
  return __awaiter(this, void 0, void 0, function* () {
@@ -263,7 +269,7 @@ class LoadBalancerClient {
263
269
  * @param CreateBackendRequest
264
270
  * @return CreateBackendResponse
265
271
  * @throws OciError when an error occurs
266
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
272
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
267
273
  */
268
274
  createBackend(createBackendRequest) {
269
275
  return __awaiter(this, void 0, void 0, function* () {
@@ -326,7 +332,7 @@ class LoadBalancerClient {
326
332
  * @param CreateBackendSetRequest
327
333
  * @return CreateBackendSetResponse
328
334
  * @throws OciError when an error occurs
329
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
335
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
330
336
  */
331
337
  createBackendSet(createBackendSetRequest) {
332
338
  return __awaiter(this, void 0, void 0, function* () {
@@ -388,7 +394,7 @@ class LoadBalancerClient {
388
394
  * @param CreateCertificateRequest
389
395
  * @return CreateCertificateResponse
390
396
  * @throws OciError when an error occurs
391
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
397
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
392
398
  */
393
399
  createCertificate(createCertificateRequest) {
394
400
  return __awaiter(this, void 0, void 0, function* () {
@@ -452,7 +458,7 @@ class LoadBalancerClient {
452
458
  * @param CreateHostnameRequest
453
459
  * @return CreateHostnameResponse
454
460
  * @throws OciError when an error occurs
455
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
461
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
456
462
  */
457
463
  createHostname(createHostnameRequest) {
458
464
  return __awaiter(this, void 0, void 0, function* () {
@@ -514,7 +520,7 @@ class LoadBalancerClient {
514
520
  * @param CreateListenerRequest
515
521
  * @return CreateListenerResponse
516
522
  * @throws OciError when an error occurs
517
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
523
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
518
524
  */
519
525
  createListener(createListenerRequest) {
520
526
  return __awaiter(this, void 0, void 0, function* () {
@@ -603,7 +609,7 @@ class LoadBalancerClient {
603
609
  * @param CreateLoadBalancerRequest
604
610
  * @return CreateLoadBalancerResponse
605
611
  * @throws OciError when an error occurs
606
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
612
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
607
613
  */
608
614
  createLoadBalancer(createLoadBalancerRequest) {
609
615
  return __awaiter(this, void 0, void 0, function* () {
@@ -664,7 +670,7 @@ class LoadBalancerClient {
664
670
  * @param CreatePathRouteSetRequest
665
671
  * @return CreatePathRouteSetResponse
666
672
  * @throws OciError when an error occurs
667
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
673
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
668
674
  */
669
675
  createPathRouteSet(createPathRouteSetRequest) {
670
676
  return __awaiter(this, void 0, void 0, function* () {
@@ -728,7 +734,7 @@ class LoadBalancerClient {
728
734
  * @param CreateRoutingPolicyRequest
729
735
  * @return CreateRoutingPolicyResponse
730
736
  * @throws OciError when an error occurs
731
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
737
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
732
738
  */
733
739
  createRoutingPolicy(createRoutingPolicyRequest) {
734
740
  return __awaiter(this, void 0, void 0, function* () {
@@ -792,7 +798,7 @@ class LoadBalancerClient {
792
798
  * @param CreateRuleSetRequest
793
799
  * @return CreateRuleSetResponse
794
800
  * @throws OciError when an error occurs
795
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
801
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
796
802
  */
797
803
  createRuleSet(createRuleSetRequest) {
798
804
  return __awaiter(this, void 0, void 0, function* () {
@@ -854,7 +860,7 @@ class LoadBalancerClient {
854
860
  * @param CreateSSLCipherSuiteRequest
855
861
  * @return CreateSSLCipherSuiteResponse
856
862
  * @throws OciError when an error occurs
857
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
863
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
858
864
  */
859
865
  createSSLCipherSuite(createSSLCipherSuiteRequest) {
860
866
  return __awaiter(this, void 0, void 0, function* () {
@@ -916,7 +922,7 @@ class LoadBalancerClient {
916
922
  * @param DeleteBackendRequest
917
923
  * @return DeleteBackendResponse
918
924
  * @throws OciError when an error occurs
919
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
925
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
920
926
  */
921
927
  deleteBackend(deleteBackendRequest) {
922
928
  return __awaiter(this, void 0, void 0, function* () {
@@ -981,7 +987,7 @@ class LoadBalancerClient {
981
987
  * @param DeleteBackendSetRequest
982
988
  * @return DeleteBackendSetResponse
983
989
  * @throws OciError when an error occurs
984
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
990
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
985
991
  */
986
992
  deleteBackendSet(deleteBackendSetRequest) {
987
993
  return __awaiter(this, void 0, void 0, function* () {
@@ -1042,7 +1048,7 @@ class LoadBalancerClient {
1042
1048
  * @param DeleteCertificateRequest
1043
1049
  * @return DeleteCertificateResponse
1044
1050
  * @throws OciError when an error occurs
1045
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
1051
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
1046
1052
  */
1047
1053
  deleteCertificate(deleteCertificateRequest) {
1048
1054
  return __awaiter(this, void 0, void 0, function* () {
@@ -1104,7 +1110,7 @@ class LoadBalancerClient {
1104
1110
  * @param DeleteHostnameRequest
1105
1111
  * @return DeleteHostnameResponse
1106
1112
  * @throws OciError when an error occurs
1107
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
1113
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
1108
1114
  */
1109
1115
  deleteHostname(deleteHostnameRequest) {
1110
1116
  return __awaiter(this, void 0, void 0, function* () {
@@ -1165,7 +1171,7 @@ class LoadBalancerClient {
1165
1171
  * @param DeleteListenerRequest
1166
1172
  * @return DeleteListenerResponse
1167
1173
  * @throws OciError when an error occurs
1168
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
1174
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
1169
1175
  */
1170
1176
  deleteListener(deleteListenerRequest) {
1171
1177
  return __awaiter(this, void 0, void 0, function* () {
@@ -1226,7 +1232,7 @@ class LoadBalancerClient {
1226
1232
  * @param DeleteLoadBalancerRequest
1227
1233
  * @return DeleteLoadBalancerResponse
1228
1234
  * @throws OciError when an error occurs
1229
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
1235
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
1230
1236
  */
1231
1237
  deleteLoadBalancer(deleteLoadBalancerRequest) {
1232
1238
  return __awaiter(this, void 0, void 0, function* () {
@@ -1290,7 +1296,7 @@ class LoadBalancerClient {
1290
1296
  * @param DeletePathRouteSetRequest
1291
1297
  * @return DeletePathRouteSetResponse
1292
1298
  * @throws OciError when an error occurs
1293
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
1299
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
1294
1300
  */
1295
1301
  deletePathRouteSet(deletePathRouteSetRequest) {
1296
1302
  return __awaiter(this, void 0, void 0, function* () {
@@ -1355,7 +1361,7 @@ class LoadBalancerClient {
1355
1361
  * @param DeleteRoutingPolicyRequest
1356
1362
  * @return DeleteRoutingPolicyResponse
1357
1363
  * @throws OciError when an error occurs
1358
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
1364
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
1359
1365
  */
1360
1366
  deleteRoutingPolicy(deleteRoutingPolicyRequest) {
1361
1367
  return __awaiter(this, void 0, void 0, function* () {
@@ -1420,7 +1426,7 @@ class LoadBalancerClient {
1420
1426
  * @param DeleteRuleSetRequest
1421
1427
  * @return DeleteRuleSetResponse
1422
1428
  * @throws OciError when an error occurs
1423
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
1429
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
1424
1430
  */
1425
1431
  deleteRuleSet(deleteRuleSetRequest) {
1426
1432
  return __awaiter(this, void 0, void 0, function* () {
@@ -1481,7 +1487,7 @@ class LoadBalancerClient {
1481
1487
  * @param DeleteSSLCipherSuiteRequest
1482
1488
  * @return DeleteSSLCipherSuiteResponse
1483
1489
  * @throws OciError when an error occurs
1484
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
1490
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
1485
1491
  */
1486
1492
  deleteSSLCipherSuite(deleteSSLCipherSuiteRequest) {
1487
1493
  return __awaiter(this, void 0, void 0, function* () {
@@ -1542,7 +1548,7 @@ class LoadBalancerClient {
1542
1548
  * @param GetBackendRequest
1543
1549
  * @return GetBackendResponse
1544
1550
  * @throws OciError when an error occurs
1545
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
1551
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
1546
1552
  */
1547
1553
  getBackend(getBackendRequest) {
1548
1554
  return __awaiter(this, void 0, void 0, function* () {
@@ -1608,7 +1614,7 @@ class LoadBalancerClient {
1608
1614
  * @param GetBackendHealthRequest
1609
1615
  * @return GetBackendHealthResponse
1610
1616
  * @throws OciError when an error occurs
1611
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
1617
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
1612
1618
  */
1613
1619
  getBackendHealth(getBackendHealthRequest) {
1614
1620
  return __awaiter(this, void 0, void 0, function* () {
@@ -1674,7 +1680,7 @@ class LoadBalancerClient {
1674
1680
  * @param GetBackendSetRequest
1675
1681
  * @return GetBackendSetResponse
1676
1682
  * @throws OciError when an error occurs
1677
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
1683
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
1678
1684
  */
1679
1685
  getBackendSet(getBackendSetRequest) {
1680
1686
  return __awaiter(this, void 0, void 0, function* () {
@@ -1739,7 +1745,7 @@ class LoadBalancerClient {
1739
1745
  * @param GetBackendSetHealthRequest
1740
1746
  * @return GetBackendSetHealthResponse
1741
1747
  * @throws OciError when an error occurs
1742
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
1748
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
1743
1749
  */
1744
1750
  getBackendSetHealth(getBackendSetHealthRequest) {
1745
1751
  return __awaiter(this, void 0, void 0, function* () {
@@ -1804,7 +1810,7 @@ class LoadBalancerClient {
1804
1810
  * @param GetHealthCheckerRequest
1805
1811
  * @return GetHealthCheckerResponse
1806
1812
  * @throws OciError when an error occurs
1807
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
1813
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
1808
1814
  */
1809
1815
  getHealthChecker(getHealthCheckerRequest) {
1810
1816
  return __awaiter(this, void 0, void 0, function* () {
@@ -1869,7 +1875,7 @@ class LoadBalancerClient {
1869
1875
  * @param GetHostnameRequest
1870
1876
  * @return GetHostnameResponse
1871
1877
  * @throws OciError when an error occurs
1872
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
1878
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
1873
1879
  */
1874
1880
  getHostname(getHostnameRequest) {
1875
1881
  return __awaiter(this, void 0, void 0, function* () {
@@ -1934,7 +1940,7 @@ class LoadBalancerClient {
1934
1940
  * @param GetLoadBalancerRequest
1935
1941
  * @return GetLoadBalancerResponse
1936
1942
  * @throws OciError when an error occurs
1937
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
1943
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
1938
1944
  */
1939
1945
  getLoadBalancer(getLoadBalancerRequest) {
1940
1946
  return __awaiter(this, void 0, void 0, function* () {
@@ -1998,7 +2004,7 @@ class LoadBalancerClient {
1998
2004
  * @param GetLoadBalancerHealthRequest
1999
2005
  * @return GetLoadBalancerHealthResponse
2000
2006
  * @throws OciError when an error occurs
2001
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
2007
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
2002
2008
  */
2003
2009
  getLoadBalancerHealth(getLoadBalancerHealthRequest) {
2004
2010
  return __awaiter(this, void 0, void 0, function* () {
@@ -2062,7 +2068,7 @@ class LoadBalancerClient {
2062
2068
  * @param GetPathRouteSetRequest
2063
2069
  * @return GetPathRouteSetResponse
2064
2070
  * @throws OciError when an error occurs
2065
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
2071
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
2066
2072
  */
2067
2073
  getPathRouteSet(getPathRouteSetRequest) {
2068
2074
  return __awaiter(this, void 0, void 0, function* () {
@@ -2127,7 +2133,7 @@ class LoadBalancerClient {
2127
2133
  * @param GetRoutingPolicyRequest
2128
2134
  * @return GetRoutingPolicyResponse
2129
2135
  * @throws OciError when an error occurs
2130
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
2136
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
2131
2137
  */
2132
2138
  getRoutingPolicy(getRoutingPolicyRequest) {
2133
2139
  return __awaiter(this, void 0, void 0, function* () {
@@ -2192,7 +2198,7 @@ class LoadBalancerClient {
2192
2198
  * @param GetRuleSetRequest
2193
2199
  * @return GetRuleSetResponse
2194
2200
  * @throws OciError when an error occurs
2195
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
2201
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
2196
2202
  */
2197
2203
  getRuleSet(getRuleSetRequest) {
2198
2204
  return __awaiter(this, void 0, void 0, function* () {
@@ -2257,7 +2263,7 @@ class LoadBalancerClient {
2257
2263
  * @param GetSSLCipherSuiteRequest
2258
2264
  * @return GetSSLCipherSuiteResponse
2259
2265
  * @throws OciError when an error occurs
2260
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
2266
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
2261
2267
  */
2262
2268
  getSSLCipherSuite(getSSLCipherSuiteRequest) {
2263
2269
  return __awaiter(this, void 0, void 0, function* () {
@@ -2322,7 +2328,7 @@ class LoadBalancerClient {
2322
2328
  * @param GetWorkRequestRequest
2323
2329
  * @return GetWorkRequestResponse
2324
2330
  * @throws OciError when an error occurs
2325
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2331
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2326
2332
  */
2327
2333
  getWorkRequest(getWorkRequestRequest) {
2328
2334
  return __awaiter(this, void 0, void 0, function* () {
@@ -2380,7 +2386,7 @@ class LoadBalancerClient {
2380
2386
  * @param ListBackendSetsRequest
2381
2387
  * @return ListBackendSetsResponse
2382
2388
  * @throws OciError when an error occurs
2383
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
2389
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
2384
2390
  */
2385
2391
  listBackendSets(listBackendSetsRequest) {
2386
2392
  return __awaiter(this, void 0, void 0, function* () {
@@ -2444,7 +2450,7 @@ class LoadBalancerClient {
2444
2450
  * @param ListBackendsRequest
2445
2451
  * @return ListBackendsResponse
2446
2452
  * @throws OciError when an error occurs
2447
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
2453
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
2448
2454
  */
2449
2455
  listBackends(listBackendsRequest) {
2450
2456
  return __awaiter(this, void 0, void 0, function* () {
@@ -2509,7 +2515,7 @@ class LoadBalancerClient {
2509
2515
  * @param ListCertificatesRequest
2510
2516
  * @return ListCertificatesResponse
2511
2517
  * @throws OciError when an error occurs
2512
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
2518
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
2513
2519
  */
2514
2520
  listCertificates(listCertificatesRequest) {
2515
2521
  return __awaiter(this, void 0, void 0, function* () {
@@ -2573,7 +2579,7 @@ class LoadBalancerClient {
2573
2579
  * @param ListHostnamesRequest
2574
2580
  * @return ListHostnamesResponse
2575
2581
  * @throws OciError when an error occurs
2576
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
2582
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
2577
2583
  */
2578
2584
  listHostnames(listHostnamesRequest) {
2579
2585
  return __awaiter(this, void 0, void 0, function* () {
@@ -2644,7 +2650,7 @@ class LoadBalancerClient {
2644
2650
  * @param ListListenerRulesRequest
2645
2651
  * @return ListListenerRulesResponse
2646
2652
  * @throws OciError when an error occurs
2647
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
2653
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
2648
2654
  */
2649
2655
  listListenerRules(listListenerRulesRequest) {
2650
2656
  return __awaiter(this, void 0, void 0, function* () {
@@ -2709,7 +2715,7 @@ class LoadBalancerClient {
2709
2715
  * @param ListLoadBalancerHealthsRequest
2710
2716
  * @return ListLoadBalancerHealthsResponse
2711
2717
  * @throws OciError when an error occurs
2712
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
2718
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
2713
2719
  */
2714
2720
  listLoadBalancerHealths(listLoadBalancerHealthsRequest) {
2715
2721
  return __awaiter(this, void 0, void 0, function* () {
@@ -2814,7 +2820,7 @@ class LoadBalancerClient {
2814
2820
  * @param ListLoadBalancersRequest
2815
2821
  * @return ListLoadBalancersResponse
2816
2822
  * @throws OciError when an error occurs
2817
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
2823
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
2818
2824
  */
2819
2825
  listLoadBalancers(listLoadBalancersRequest) {
2820
2826
  return __awaiter(this, void 0, void 0, function* () {
@@ -2924,7 +2930,7 @@ class LoadBalancerClient {
2924
2930
  * @param ListPathRouteSetsRequest
2925
2931
  * @return ListPathRouteSetsResponse
2926
2932
  * @throws OciError when an error occurs
2927
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
2933
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
2928
2934
  */
2929
2935
  listPathRouteSets(listPathRouteSetsRequest) {
2930
2936
  return __awaiter(this, void 0, void 0, function* () {
@@ -2988,7 +2994,7 @@ class LoadBalancerClient {
2988
2994
  * @param ListPoliciesRequest
2989
2995
  * @return ListPoliciesResponse
2990
2996
  * @throws OciError when an error occurs
2991
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
2997
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
2992
2998
  */
2993
2999
  listPolicies(listPoliciesRequest) {
2994
3000
  return __awaiter(this, void 0, void 0, function* () {
@@ -3093,7 +3099,7 @@ class LoadBalancerClient {
3093
3099
  * @param ListProtocolsRequest
3094
3100
  * @return ListProtocolsResponse
3095
3101
  * @throws OciError when an error occurs
3096
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
3102
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
3097
3103
  */
3098
3104
  listProtocols(listProtocolsRequest) {
3099
3105
  return __awaiter(this, void 0, void 0, function* () {
@@ -3198,7 +3204,7 @@ class LoadBalancerClient {
3198
3204
  * @param ListRoutingPoliciesRequest
3199
3205
  * @return ListRoutingPoliciesResponse
3200
3206
  * @throws OciError when an error occurs
3201
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
3207
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
3202
3208
  */
3203
3209
  listRoutingPolicies(listRoutingPoliciesRequest) {
3204
3210
  return __awaiter(this, void 0, void 0, function* () {
@@ -3310,7 +3316,7 @@ class LoadBalancerClient {
3310
3316
  * @param ListRuleSetsRequest
3311
3317
  * @return ListRuleSetsResponse
3312
3318
  * @throws OciError when an error occurs
3313
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
3319
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
3314
3320
  */
3315
3321
  listRuleSets(listRuleSetsRequest) {
3316
3322
  return __awaiter(this, void 0, void 0, function* () {
@@ -3374,7 +3380,7 @@ class LoadBalancerClient {
3374
3380
  * @param ListSSLCipherSuitesRequest
3375
3381
  * @return ListSSLCipherSuitesResponse
3376
3382
  * @throws OciError when an error occurs
3377
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
3383
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
3378
3384
  */
3379
3385
  listSSLCipherSuites(listSSLCipherSuitesRequest) {
3380
3386
  return __awaiter(this, void 0, void 0, function* () {
@@ -3438,7 +3444,7 @@ class LoadBalancerClient {
3438
3444
  * @param ListShapesRequest
3439
3445
  * @return ListShapesResponse
3440
3446
  * @throws OciError when an error occurs
3441
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
3447
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
3442
3448
  */
3443
3449
  listShapes(listShapesRequest) {
3444
3450
  return __awaiter(this, void 0, void 0, function* () {
@@ -3543,7 +3549,7 @@ class LoadBalancerClient {
3543
3549
  * @param ListWorkRequestsRequest
3544
3550
  * @return ListWorkRequestsResponse
3545
3551
  * @throws OciError when an error occurs
3546
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3552
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3547
3553
  */
3548
3554
  listWorkRequests(listWorkRequestsRequest) {
3549
3555
  return __awaiter(this, void 0, void 0, function* () {
@@ -3649,7 +3655,7 @@ class LoadBalancerClient {
3649
3655
  * @param UpdateBackendRequest
3650
3656
  * @return UpdateBackendResponse
3651
3657
  * @throws OciError when an error occurs
3652
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
3658
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
3653
3659
  */
3654
3660
  updateBackend(updateBackendRequest) {
3655
3661
  return __awaiter(this, void 0, void 0, function* () {
@@ -3713,7 +3719,7 @@ class LoadBalancerClient {
3713
3719
  * @param UpdateBackendSetRequest
3714
3720
  * @return UpdateBackendSetResponse
3715
3721
  * @throws OciError when an error occurs
3716
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
3722
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
3717
3723
  */
3718
3724
  updateBackendSet(updateBackendSetRequest) {
3719
3725
  return __awaiter(this, void 0, void 0, function* () {
@@ -3776,7 +3782,7 @@ class LoadBalancerClient {
3776
3782
  * @param UpdateHealthCheckerRequest
3777
3783
  * @return UpdateHealthCheckerResponse
3778
3784
  * @throws OciError when an error occurs
3779
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
3785
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
3780
3786
  */
3781
3787
  updateHealthChecker(updateHealthCheckerRequest) {
3782
3788
  return __awaiter(this, void 0, void 0, function* () {
@@ -3841,7 +3847,7 @@ class LoadBalancerClient {
3841
3847
  * @param UpdateHostnameRequest
3842
3848
  * @return UpdateHostnameResponse
3843
3849
  * @throws OciError when an error occurs
3844
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
3850
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
3845
3851
  */
3846
3852
  updateHostname(updateHostnameRequest) {
3847
3853
  return __awaiter(this, void 0, void 0, function* () {
@@ -3904,7 +3910,7 @@ class LoadBalancerClient {
3904
3910
  * @param UpdateListenerRequest
3905
3911
  * @return UpdateListenerResponse
3906
3912
  * @throws OciError when an error occurs
3907
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
3913
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
3908
3914
  */
3909
3915
  updateListener(updateListenerRequest) {
3910
3916
  return __awaiter(this, void 0, void 0, function* () {
@@ -3967,7 +3973,7 @@ class LoadBalancerClient {
3967
3973
  * @param UpdateLoadBalancerRequest
3968
3974
  * @return UpdateLoadBalancerResponse
3969
3975
  * @throws OciError when an error occurs
3970
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
3976
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
3971
3977
  */
3972
3978
  updateLoadBalancer(updateLoadBalancerRequest) {
3973
3979
  return __awaiter(this, void 0, void 0, function* () {
@@ -4035,7 +4041,7 @@ class LoadBalancerClient {
4035
4041
  * @param UpdateLoadBalancerShapeRequest
4036
4042
  * @return UpdateLoadBalancerShapeResponse
4037
4043
  * @throws OciError when an error occurs
4038
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
4044
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
4039
4045
  */
4040
4046
  updateLoadBalancerShape(updateLoadBalancerShapeRequest) {
4041
4047
  return __awaiter(this, void 0, void 0, function* () {
@@ -4097,7 +4103,7 @@ class LoadBalancerClient {
4097
4103
  * @param UpdateNetworkSecurityGroupsRequest
4098
4104
  * @return UpdateNetworkSecurityGroupsResponse
4099
4105
  * @throws OciError when an error occurs
4100
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
4106
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
4101
4107
  */
4102
4108
  updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest) {
4103
4109
  return __awaiter(this, void 0, void 0, function* () {
@@ -4165,7 +4171,7 @@ class LoadBalancerClient {
4165
4171
  * @param UpdatePathRouteSetRequest
4166
4172
  * @return UpdatePathRouteSetResponse
4167
4173
  * @throws OciError when an error occurs
4168
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
4174
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
4169
4175
  */
4170
4176
  updatePathRouteSet(updatePathRouteSetRequest) {
4171
4177
  return __awaiter(this, void 0, void 0, function* () {
@@ -4232,7 +4238,7 @@ class LoadBalancerClient {
4232
4238
  * @param UpdateRoutingPolicyRequest
4233
4239
  * @return UpdateRoutingPolicyResponse
4234
4240
  * @throws OciError when an error occurs
4235
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
4241
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
4236
4242
  */
4237
4243
  updateRoutingPolicy(updateRoutingPolicyRequest) {
4238
4244
  return __awaiter(this, void 0, void 0, function* () {
@@ -4299,7 +4305,7 @@ class LoadBalancerClient {
4299
4305
  * @param UpdateRuleSetRequest
4300
4306
  * @return UpdateRuleSetResponse
4301
4307
  * @throws OciError when an error occurs
4302
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
4308
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
4303
4309
  */
4304
4310
  updateRuleSet(updateRuleSetRequest) {
4305
4311
  return __awaiter(this, void 0, void 0, function* () {
@@ -4362,7 +4368,7 @@ class LoadBalancerClient {
4362
4368
  * @param UpdateSSLCipherSuiteRequest
4363
4369
  * @return UpdateSSLCipherSuiteResponse
4364
4370
  * @throws OciError when an error occurs
4365
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
4371
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
4366
4372
  */
4367
4373
  updateSSLCipherSuite(updateSSLCipherSuiteRequest) {
4368
4374
  return __awaiter(this, void 0, void 0, function* () {