oci-loadbalancer 2.57.0 → 2.59.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 +71 -61
  2. package/lib/client.js +84 -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
@@ -59,11 +59,14 @@ var LoadBalancerApiKeys;
59
59
  */
60
60
  class LoadBalancerClient {
61
61
  constructor(params, clientConfiguration) {
62
+ this["_realmSpecificEndpointTemplateEnabled"] = false;
62
63
  this["_endpoint"] = "";
63
64
  this["_defaultHeaders"] = {};
64
65
  this._circuitBreaker = null;
65
66
  this._httpOptions = undefined;
66
67
  this.targetService = "LoadBalancer";
68
+ this._regionId = "";
69
+ this._lastSetRegionOrRegionId = "";
67
70
  const requestSigner = params.authenticationDetailsProvider
68
71
  ? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
69
72
  : null;
@@ -113,13 +116,31 @@ class LoadBalancerClient {
113
116
  get logger() {
114
117
  return common.LOG.logger;
115
118
  }
119
+ /**
120
+ * Determines whether realm specific endpoint should be used or not.
121
+ * Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
122
+ * @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
123
+ */
124
+ set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
125
+ this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
126
+ if (this.logger)
127
+ this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
128
+ if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
129
+ this.endpoint = common.EndpointBuilder.createEndpointFromRegion(LoadBalancerClient.serviceEndpointTemplate, this._region, LoadBalancerClient.endpointServiceName);
130
+ }
131
+ else if (this._lastSetRegionOrRegionId === common.Region.REGION_ID_STRING) {
132
+ this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(LoadBalancerClient.serviceEndpointTemplate, this._regionId, LoadBalancerClient.endpointServiceName);
133
+ }
134
+ }
116
135
  /**
117
136
  * Sets the region to call (ex, Region.US_PHOENIX_1).
118
137
  * Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
119
138
  * @param region The region of the service.
120
139
  */
121
140
  set region(region) {
141
+ this._region = region;
122
142
  this.endpoint = common.EndpointBuilder.createEndpointFromRegion(LoadBalancerClient.serviceEndpointTemplate, region, LoadBalancerClient.endpointServiceName);
143
+ this._lastSetRegionOrRegionId = common.Region.REGION_STRING;
123
144
  }
124
145
  /**
125
146
  * Sets the regionId to call (ex, 'us-phoenix-1').
@@ -130,7 +151,9 @@ class LoadBalancerClient {
130
151
  * @param regionId The public region ID.
131
152
  */
132
153
  set regionId(regionId) {
154
+ this._regionId = regionId;
133
155
  this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(LoadBalancerClient.serviceEndpointTemplate, regionId, LoadBalancerClient.endpointServiceName);
156
+ this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
134
157
  }
135
158
  /**
136
159
  * Creates a new LoadBalancerWaiter for resources for this service.
@@ -161,7 +184,7 @@ class LoadBalancerClient {
161
184
  * @param ChangeLoadBalancerCompartmentRequest
162
185
  * @return ChangeLoadBalancerCompartmentResponse
163
186
  * @throws OciError when an error occurs
164
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
187
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
165
188
  */
166
189
  changeLoadBalancerCompartment(changeLoadBalancerCompartmentRequest) {
167
190
  return __awaiter(this, void 0, void 0, function* () {
@@ -223,7 +246,7 @@ class LoadBalancerClient {
223
246
  * @param CreateBackendRequest
224
247
  * @return CreateBackendResponse
225
248
  * @throws OciError when an error occurs
226
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
249
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
227
250
  */
228
251
  createBackend(createBackendRequest) {
229
252
  return __awaiter(this, void 0, void 0, function* () {
@@ -286,7 +309,7 @@ class LoadBalancerClient {
286
309
  * @param CreateBackendSetRequest
287
310
  * @return CreateBackendSetResponse
288
311
  * @throws OciError when an error occurs
289
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
312
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
290
313
  */
291
314
  createBackendSet(createBackendSetRequest) {
292
315
  return __awaiter(this, void 0, void 0, function* () {
@@ -348,7 +371,7 @@ class LoadBalancerClient {
348
371
  * @param CreateCertificateRequest
349
372
  * @return CreateCertificateResponse
350
373
  * @throws OciError when an error occurs
351
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
374
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
352
375
  */
353
376
  createCertificate(createCertificateRequest) {
354
377
  return __awaiter(this, void 0, void 0, function* () {
@@ -412,7 +435,7 @@ class LoadBalancerClient {
412
435
  * @param CreateHostnameRequest
413
436
  * @return CreateHostnameResponse
414
437
  * @throws OciError when an error occurs
415
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
438
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
416
439
  */
417
440
  createHostname(createHostnameRequest) {
418
441
  return __awaiter(this, void 0, void 0, function* () {
@@ -474,7 +497,7 @@ class LoadBalancerClient {
474
497
  * @param CreateListenerRequest
475
498
  * @return CreateListenerResponse
476
499
  * @throws OciError when an error occurs
477
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
500
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
478
501
  */
479
502
  createListener(createListenerRequest) {
480
503
  return __awaiter(this, void 0, void 0, function* () {
@@ -563,7 +586,7 @@ class LoadBalancerClient {
563
586
  * @param CreateLoadBalancerRequest
564
587
  * @return CreateLoadBalancerResponse
565
588
  * @throws OciError when an error occurs
566
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
589
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
567
590
  */
568
591
  createLoadBalancer(createLoadBalancerRequest) {
569
592
  return __awaiter(this, void 0, void 0, function* () {
@@ -624,7 +647,7 @@ class LoadBalancerClient {
624
647
  * @param CreatePathRouteSetRequest
625
648
  * @return CreatePathRouteSetResponse
626
649
  * @throws OciError when an error occurs
627
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
650
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
628
651
  */
629
652
  createPathRouteSet(createPathRouteSetRequest) {
630
653
  return __awaiter(this, void 0, void 0, function* () {
@@ -688,7 +711,7 @@ class LoadBalancerClient {
688
711
  * @param CreateRoutingPolicyRequest
689
712
  * @return CreateRoutingPolicyResponse
690
713
  * @throws OciError when an error occurs
691
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
714
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
692
715
  */
693
716
  createRoutingPolicy(createRoutingPolicyRequest) {
694
717
  return __awaiter(this, void 0, void 0, function* () {
@@ -752,7 +775,7 @@ class LoadBalancerClient {
752
775
  * @param CreateRuleSetRequest
753
776
  * @return CreateRuleSetResponse
754
777
  * @throws OciError when an error occurs
755
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
778
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
756
779
  */
757
780
  createRuleSet(createRuleSetRequest) {
758
781
  return __awaiter(this, void 0, void 0, function* () {
@@ -814,7 +837,7 @@ class LoadBalancerClient {
814
837
  * @param CreateSSLCipherSuiteRequest
815
838
  * @return CreateSSLCipherSuiteResponse
816
839
  * @throws OciError when an error occurs
817
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
840
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
818
841
  */
819
842
  createSSLCipherSuite(createSSLCipherSuiteRequest) {
820
843
  return __awaiter(this, void 0, void 0, function* () {
@@ -876,7 +899,7 @@ class LoadBalancerClient {
876
899
  * @param DeleteBackendRequest
877
900
  * @return DeleteBackendResponse
878
901
  * @throws OciError when an error occurs
879
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
902
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
880
903
  */
881
904
  deleteBackend(deleteBackendRequest) {
882
905
  return __awaiter(this, void 0, void 0, function* () {
@@ -941,7 +964,7 @@ class LoadBalancerClient {
941
964
  * @param DeleteBackendSetRequest
942
965
  * @return DeleteBackendSetResponse
943
966
  * @throws OciError when an error occurs
944
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
967
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
945
968
  */
946
969
  deleteBackendSet(deleteBackendSetRequest) {
947
970
  return __awaiter(this, void 0, void 0, function* () {
@@ -1002,7 +1025,7 @@ class LoadBalancerClient {
1002
1025
  * @param DeleteCertificateRequest
1003
1026
  * @return DeleteCertificateResponse
1004
1027
  * @throws OciError when an error occurs
1005
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
1028
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
1006
1029
  */
1007
1030
  deleteCertificate(deleteCertificateRequest) {
1008
1031
  return __awaiter(this, void 0, void 0, function* () {
@@ -1064,7 +1087,7 @@ class LoadBalancerClient {
1064
1087
  * @param DeleteHostnameRequest
1065
1088
  * @return DeleteHostnameResponse
1066
1089
  * @throws OciError when an error occurs
1067
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
1090
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
1068
1091
  */
1069
1092
  deleteHostname(deleteHostnameRequest) {
1070
1093
  return __awaiter(this, void 0, void 0, function* () {
@@ -1125,7 +1148,7 @@ class LoadBalancerClient {
1125
1148
  * @param DeleteListenerRequest
1126
1149
  * @return DeleteListenerResponse
1127
1150
  * @throws OciError when an error occurs
1128
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
1151
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
1129
1152
  */
1130
1153
  deleteListener(deleteListenerRequest) {
1131
1154
  return __awaiter(this, void 0, void 0, function* () {
@@ -1186,7 +1209,7 @@ class LoadBalancerClient {
1186
1209
  * @param DeleteLoadBalancerRequest
1187
1210
  * @return DeleteLoadBalancerResponse
1188
1211
  * @throws OciError when an error occurs
1189
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
1212
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
1190
1213
  */
1191
1214
  deleteLoadBalancer(deleteLoadBalancerRequest) {
1192
1215
  return __awaiter(this, void 0, void 0, function* () {
@@ -1250,7 +1273,7 @@ class LoadBalancerClient {
1250
1273
  * @param DeletePathRouteSetRequest
1251
1274
  * @return DeletePathRouteSetResponse
1252
1275
  * @throws OciError when an error occurs
1253
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
1276
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
1254
1277
  */
1255
1278
  deletePathRouteSet(deletePathRouteSetRequest) {
1256
1279
  return __awaiter(this, void 0, void 0, function* () {
@@ -1315,7 +1338,7 @@ class LoadBalancerClient {
1315
1338
  * @param DeleteRoutingPolicyRequest
1316
1339
  * @return DeleteRoutingPolicyResponse
1317
1340
  * @throws OciError when an error occurs
1318
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
1341
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
1319
1342
  */
1320
1343
  deleteRoutingPolicy(deleteRoutingPolicyRequest) {
1321
1344
  return __awaiter(this, void 0, void 0, function* () {
@@ -1380,7 +1403,7 @@ class LoadBalancerClient {
1380
1403
  * @param DeleteRuleSetRequest
1381
1404
  * @return DeleteRuleSetResponse
1382
1405
  * @throws OciError when an error occurs
1383
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
1406
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
1384
1407
  */
1385
1408
  deleteRuleSet(deleteRuleSetRequest) {
1386
1409
  return __awaiter(this, void 0, void 0, function* () {
@@ -1441,7 +1464,7 @@ class LoadBalancerClient {
1441
1464
  * @param DeleteSSLCipherSuiteRequest
1442
1465
  * @return DeleteSSLCipherSuiteResponse
1443
1466
  * @throws OciError when an error occurs
1444
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
1467
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
1445
1468
  */
1446
1469
  deleteSSLCipherSuite(deleteSSLCipherSuiteRequest) {
1447
1470
  return __awaiter(this, void 0, void 0, function* () {
@@ -1502,7 +1525,7 @@ class LoadBalancerClient {
1502
1525
  * @param GetBackendRequest
1503
1526
  * @return GetBackendResponse
1504
1527
  * @throws OciError when an error occurs
1505
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
1528
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
1506
1529
  */
1507
1530
  getBackend(getBackendRequest) {
1508
1531
  return __awaiter(this, void 0, void 0, function* () {
@@ -1568,7 +1591,7 @@ class LoadBalancerClient {
1568
1591
  * @param GetBackendHealthRequest
1569
1592
  * @return GetBackendHealthResponse
1570
1593
  * @throws OciError when an error occurs
1571
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
1594
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
1572
1595
  */
1573
1596
  getBackendHealth(getBackendHealthRequest) {
1574
1597
  return __awaiter(this, void 0, void 0, function* () {
@@ -1634,7 +1657,7 @@ class LoadBalancerClient {
1634
1657
  * @param GetBackendSetRequest
1635
1658
  * @return GetBackendSetResponse
1636
1659
  * @throws OciError when an error occurs
1637
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
1660
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
1638
1661
  */
1639
1662
  getBackendSet(getBackendSetRequest) {
1640
1663
  return __awaiter(this, void 0, void 0, function* () {
@@ -1699,7 +1722,7 @@ class LoadBalancerClient {
1699
1722
  * @param GetBackendSetHealthRequest
1700
1723
  * @return GetBackendSetHealthResponse
1701
1724
  * @throws OciError when an error occurs
1702
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
1725
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
1703
1726
  */
1704
1727
  getBackendSetHealth(getBackendSetHealthRequest) {
1705
1728
  return __awaiter(this, void 0, void 0, function* () {
@@ -1764,7 +1787,7 @@ class LoadBalancerClient {
1764
1787
  * @param GetHealthCheckerRequest
1765
1788
  * @return GetHealthCheckerResponse
1766
1789
  * @throws OciError when an error occurs
1767
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
1790
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
1768
1791
  */
1769
1792
  getHealthChecker(getHealthCheckerRequest) {
1770
1793
  return __awaiter(this, void 0, void 0, function* () {
@@ -1829,7 +1852,7 @@ class LoadBalancerClient {
1829
1852
  * @param GetHostnameRequest
1830
1853
  * @return GetHostnameResponse
1831
1854
  * @throws OciError when an error occurs
1832
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
1855
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
1833
1856
  */
1834
1857
  getHostname(getHostnameRequest) {
1835
1858
  return __awaiter(this, void 0, void 0, function* () {
@@ -1894,7 +1917,7 @@ class LoadBalancerClient {
1894
1917
  * @param GetLoadBalancerRequest
1895
1918
  * @return GetLoadBalancerResponse
1896
1919
  * @throws OciError when an error occurs
1897
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
1920
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
1898
1921
  */
1899
1922
  getLoadBalancer(getLoadBalancerRequest) {
1900
1923
  return __awaiter(this, void 0, void 0, function* () {
@@ -1958,7 +1981,7 @@ class LoadBalancerClient {
1958
1981
  * @param GetLoadBalancerHealthRequest
1959
1982
  * @return GetLoadBalancerHealthResponse
1960
1983
  * @throws OciError when an error occurs
1961
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
1984
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
1962
1985
  */
1963
1986
  getLoadBalancerHealth(getLoadBalancerHealthRequest) {
1964
1987
  return __awaiter(this, void 0, void 0, function* () {
@@ -2022,7 +2045,7 @@ class LoadBalancerClient {
2022
2045
  * @param GetPathRouteSetRequest
2023
2046
  * @return GetPathRouteSetResponse
2024
2047
  * @throws OciError when an error occurs
2025
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
2048
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
2026
2049
  */
2027
2050
  getPathRouteSet(getPathRouteSetRequest) {
2028
2051
  return __awaiter(this, void 0, void 0, function* () {
@@ -2087,7 +2110,7 @@ class LoadBalancerClient {
2087
2110
  * @param GetRoutingPolicyRequest
2088
2111
  * @return GetRoutingPolicyResponse
2089
2112
  * @throws OciError when an error occurs
2090
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
2113
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
2091
2114
  */
2092
2115
  getRoutingPolicy(getRoutingPolicyRequest) {
2093
2116
  return __awaiter(this, void 0, void 0, function* () {
@@ -2152,7 +2175,7 @@ class LoadBalancerClient {
2152
2175
  * @param GetRuleSetRequest
2153
2176
  * @return GetRuleSetResponse
2154
2177
  * @throws OciError when an error occurs
2155
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
2178
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
2156
2179
  */
2157
2180
  getRuleSet(getRuleSetRequest) {
2158
2181
  return __awaiter(this, void 0, void 0, function* () {
@@ -2217,7 +2240,7 @@ class LoadBalancerClient {
2217
2240
  * @param GetSSLCipherSuiteRequest
2218
2241
  * @return GetSSLCipherSuiteResponse
2219
2242
  * @throws OciError when an error occurs
2220
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
2243
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
2221
2244
  */
2222
2245
  getSSLCipherSuite(getSSLCipherSuiteRequest) {
2223
2246
  return __awaiter(this, void 0, void 0, function* () {
@@ -2282,7 +2305,7 @@ class LoadBalancerClient {
2282
2305
  * @param GetWorkRequestRequest
2283
2306
  * @return GetWorkRequestResponse
2284
2307
  * @throws OciError when an error occurs
2285
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2308
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2286
2309
  */
2287
2310
  getWorkRequest(getWorkRequestRequest) {
2288
2311
  return __awaiter(this, void 0, void 0, function* () {
@@ -2340,7 +2363,7 @@ class LoadBalancerClient {
2340
2363
  * @param ListBackendSetsRequest
2341
2364
  * @return ListBackendSetsResponse
2342
2365
  * @throws OciError when an error occurs
2343
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
2366
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
2344
2367
  */
2345
2368
  listBackendSets(listBackendSetsRequest) {
2346
2369
  return __awaiter(this, void 0, void 0, function* () {
@@ -2404,7 +2427,7 @@ class LoadBalancerClient {
2404
2427
  * @param ListBackendsRequest
2405
2428
  * @return ListBackendsResponse
2406
2429
  * @throws OciError when an error occurs
2407
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
2430
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
2408
2431
  */
2409
2432
  listBackends(listBackendsRequest) {
2410
2433
  return __awaiter(this, void 0, void 0, function* () {
@@ -2469,7 +2492,7 @@ class LoadBalancerClient {
2469
2492
  * @param ListCertificatesRequest
2470
2493
  * @return ListCertificatesResponse
2471
2494
  * @throws OciError when an error occurs
2472
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
2495
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
2473
2496
  */
2474
2497
  listCertificates(listCertificatesRequest) {
2475
2498
  return __awaiter(this, void 0, void 0, function* () {
@@ -2533,7 +2556,7 @@ class LoadBalancerClient {
2533
2556
  * @param ListHostnamesRequest
2534
2557
  * @return ListHostnamesResponse
2535
2558
  * @throws OciError when an error occurs
2536
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
2559
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
2537
2560
  */
2538
2561
  listHostnames(listHostnamesRequest) {
2539
2562
  return __awaiter(this, void 0, void 0, function* () {
@@ -2604,7 +2627,7 @@ class LoadBalancerClient {
2604
2627
  * @param ListListenerRulesRequest
2605
2628
  * @return ListListenerRulesResponse
2606
2629
  * @throws OciError when an error occurs
2607
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
2630
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
2608
2631
  */
2609
2632
  listListenerRules(listListenerRulesRequest) {
2610
2633
  return __awaiter(this, void 0, void 0, function* () {
@@ -2669,7 +2692,7 @@ class LoadBalancerClient {
2669
2692
  * @param ListLoadBalancerHealthsRequest
2670
2693
  * @return ListLoadBalancerHealthsResponse
2671
2694
  * @throws OciError when an error occurs
2672
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
2695
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
2673
2696
  */
2674
2697
  listLoadBalancerHealths(listLoadBalancerHealthsRequest) {
2675
2698
  return __awaiter(this, void 0, void 0, function* () {
@@ -2774,7 +2797,7 @@ class LoadBalancerClient {
2774
2797
  * @param ListLoadBalancersRequest
2775
2798
  * @return ListLoadBalancersResponse
2776
2799
  * @throws OciError when an error occurs
2777
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
2800
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
2778
2801
  */
2779
2802
  listLoadBalancers(listLoadBalancersRequest) {
2780
2803
  return __awaiter(this, void 0, void 0, function* () {
@@ -2884,7 +2907,7 @@ class LoadBalancerClient {
2884
2907
  * @param ListPathRouteSetsRequest
2885
2908
  * @return ListPathRouteSetsResponse
2886
2909
  * @throws OciError when an error occurs
2887
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
2910
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
2888
2911
  */
2889
2912
  listPathRouteSets(listPathRouteSetsRequest) {
2890
2913
  return __awaiter(this, void 0, void 0, function* () {
@@ -2948,7 +2971,7 @@ class LoadBalancerClient {
2948
2971
  * @param ListPoliciesRequest
2949
2972
  * @return ListPoliciesResponse
2950
2973
  * @throws OciError when an error occurs
2951
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
2974
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
2952
2975
  */
2953
2976
  listPolicies(listPoliciesRequest) {
2954
2977
  return __awaiter(this, void 0, void 0, function* () {
@@ -3053,7 +3076,7 @@ class LoadBalancerClient {
3053
3076
  * @param ListProtocolsRequest
3054
3077
  * @return ListProtocolsResponse
3055
3078
  * @throws OciError when an error occurs
3056
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
3079
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
3057
3080
  */
3058
3081
  listProtocols(listProtocolsRequest) {
3059
3082
  return __awaiter(this, void 0, void 0, function* () {
@@ -3158,7 +3181,7 @@ class LoadBalancerClient {
3158
3181
  * @param ListRoutingPoliciesRequest
3159
3182
  * @return ListRoutingPoliciesResponse
3160
3183
  * @throws OciError when an error occurs
3161
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
3184
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
3162
3185
  */
3163
3186
  listRoutingPolicies(listRoutingPoliciesRequest) {
3164
3187
  return __awaiter(this, void 0, void 0, function* () {
@@ -3270,7 +3293,7 @@ class LoadBalancerClient {
3270
3293
  * @param ListRuleSetsRequest
3271
3294
  * @return ListRuleSetsResponse
3272
3295
  * @throws OciError when an error occurs
3273
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
3296
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
3274
3297
  */
3275
3298
  listRuleSets(listRuleSetsRequest) {
3276
3299
  return __awaiter(this, void 0, void 0, function* () {
@@ -3334,7 +3357,7 @@ class LoadBalancerClient {
3334
3357
  * @param ListSSLCipherSuitesRequest
3335
3358
  * @return ListSSLCipherSuitesResponse
3336
3359
  * @throws OciError when an error occurs
3337
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
3360
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
3338
3361
  */
3339
3362
  listSSLCipherSuites(listSSLCipherSuitesRequest) {
3340
3363
  return __awaiter(this, void 0, void 0, function* () {
@@ -3398,7 +3421,7 @@ class LoadBalancerClient {
3398
3421
  * @param ListShapesRequest
3399
3422
  * @return ListShapesResponse
3400
3423
  * @throws OciError when an error occurs
3401
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
3424
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
3402
3425
  */
3403
3426
  listShapes(listShapesRequest) {
3404
3427
  return __awaiter(this, void 0, void 0, function* () {
@@ -3503,7 +3526,7 @@ class LoadBalancerClient {
3503
3526
  * @param ListWorkRequestsRequest
3504
3527
  * @return ListWorkRequestsResponse
3505
3528
  * @throws OciError when an error occurs
3506
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3529
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
3507
3530
  */
3508
3531
  listWorkRequests(listWorkRequestsRequest) {
3509
3532
  return __awaiter(this, void 0, void 0, function* () {
@@ -3609,7 +3632,7 @@ class LoadBalancerClient {
3609
3632
  * @param UpdateBackendRequest
3610
3633
  * @return UpdateBackendResponse
3611
3634
  * @throws OciError when an error occurs
3612
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
3635
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
3613
3636
  */
3614
3637
  updateBackend(updateBackendRequest) {
3615
3638
  return __awaiter(this, void 0, void 0, function* () {
@@ -3673,7 +3696,7 @@ class LoadBalancerClient {
3673
3696
  * @param UpdateBackendSetRequest
3674
3697
  * @return UpdateBackendSetResponse
3675
3698
  * @throws OciError when an error occurs
3676
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
3699
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
3677
3700
  */
3678
3701
  updateBackendSet(updateBackendSetRequest) {
3679
3702
  return __awaiter(this, void 0, void 0, function* () {
@@ -3736,7 +3759,7 @@ class LoadBalancerClient {
3736
3759
  * @param UpdateHealthCheckerRequest
3737
3760
  * @return UpdateHealthCheckerResponse
3738
3761
  * @throws OciError when an error occurs
3739
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
3762
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
3740
3763
  */
3741
3764
  updateHealthChecker(updateHealthCheckerRequest) {
3742
3765
  return __awaiter(this, void 0, void 0, function* () {
@@ -3801,7 +3824,7 @@ class LoadBalancerClient {
3801
3824
  * @param UpdateHostnameRequest
3802
3825
  * @return UpdateHostnameResponse
3803
3826
  * @throws OciError when an error occurs
3804
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
3827
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
3805
3828
  */
3806
3829
  updateHostname(updateHostnameRequest) {
3807
3830
  return __awaiter(this, void 0, void 0, function* () {
@@ -3864,7 +3887,7 @@ class LoadBalancerClient {
3864
3887
  * @param UpdateListenerRequest
3865
3888
  * @return UpdateListenerResponse
3866
3889
  * @throws OciError when an error occurs
3867
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
3890
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
3868
3891
  */
3869
3892
  updateListener(updateListenerRequest) {
3870
3893
  return __awaiter(this, void 0, void 0, function* () {
@@ -3927,7 +3950,7 @@ class LoadBalancerClient {
3927
3950
  * @param UpdateLoadBalancerRequest
3928
3951
  * @return UpdateLoadBalancerResponse
3929
3952
  * @throws OciError when an error occurs
3930
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
3953
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
3931
3954
  */
3932
3955
  updateLoadBalancer(updateLoadBalancerRequest) {
3933
3956
  return __awaiter(this, void 0, void 0, function* () {
@@ -3995,7 +4018,7 @@ class LoadBalancerClient {
3995
4018
  * @param UpdateLoadBalancerShapeRequest
3996
4019
  * @return UpdateLoadBalancerShapeResponse
3997
4020
  * @throws OciError when an error occurs
3998
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
4021
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
3999
4022
  */
4000
4023
  updateLoadBalancerShape(updateLoadBalancerShapeRequest) {
4001
4024
  return __awaiter(this, void 0, void 0, function* () {
@@ -4057,7 +4080,7 @@ class LoadBalancerClient {
4057
4080
  * @param UpdateNetworkSecurityGroupsRequest
4058
4081
  * @return UpdateNetworkSecurityGroupsResponse
4059
4082
  * @throws OciError when an error occurs
4060
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
4083
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
4061
4084
  */
4062
4085
  updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest) {
4063
4086
  return __awaiter(this, void 0, void 0, function* () {
@@ -4125,7 +4148,7 @@ class LoadBalancerClient {
4125
4148
  * @param UpdatePathRouteSetRequest
4126
4149
  * @return UpdatePathRouteSetResponse
4127
4150
  * @throws OciError when an error occurs
4128
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
4151
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
4129
4152
  */
4130
4153
  updatePathRouteSet(updatePathRouteSetRequest) {
4131
4154
  return __awaiter(this, void 0, void 0, function* () {
@@ -4192,7 +4215,7 @@ class LoadBalancerClient {
4192
4215
  * @param UpdateRoutingPolicyRequest
4193
4216
  * @return UpdateRoutingPolicyResponse
4194
4217
  * @throws OciError when an error occurs
4195
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
4218
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
4196
4219
  */
4197
4220
  updateRoutingPolicy(updateRoutingPolicyRequest) {
4198
4221
  return __awaiter(this, void 0, void 0, function* () {
@@ -4259,7 +4282,7 @@ class LoadBalancerClient {
4259
4282
  * @param UpdateRuleSetRequest
4260
4283
  * @return UpdateRuleSetResponse
4261
4284
  * @throws OciError when an error occurs
4262
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
4285
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
4263
4286
  */
4264
4287
  updateRuleSet(updateRuleSetRequest) {
4265
4288
  return __awaiter(this, void 0, void 0, function* () {
@@ -4322,7 +4345,7 @@ class LoadBalancerClient {
4322
4345
  * @param UpdateSSLCipherSuiteRequest
4323
4346
  * @return UpdateSSLCipherSuiteResponse
4324
4347
  * @throws OciError when an error occurs
4325
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.57.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
4348
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.59.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
4326
4349
  */
4327
4350
  updateSSLCipherSuite(updateSSLCipherSuiteRequest) {
4328
4351
  return __awaiter(this, void 0, void 0, function* () {