oci-loadbalancer 2.4.0 → 2.6.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 (70) hide show
  1. package/LICENSE.txt +6 -0
  2. package/lib/client.d.ts +244 -61
  3. package/lib/client.js +401 -122
  4. package/lib/client.js.map +1 -1
  5. package/lib/model/s-sl-configuration-details.d.ts +14 -0
  6. package/lib/model/s-sl-configuration-details.js.map +1 -1
  7. package/lib/model/s-sl-configuration.d.ts +14 -0
  8. package/lib/model/s-sl-configuration.js.map +1 -1
  9. package/lib/request/change-load-balancer-compartment-request.d.ts +1 -1
  10. package/lib/request/create-backend-request.d.ts +1 -1
  11. package/lib/request/create-backend-set-request.d.ts +1 -1
  12. package/lib/request/create-certificate-request.d.ts +1 -1
  13. package/lib/request/create-hostname-request.d.ts +1 -1
  14. package/lib/request/create-listener-request.d.ts +1 -1
  15. package/lib/request/create-load-balancer-request.d.ts +1 -1
  16. package/lib/request/create-path-route-set-request.d.ts +1 -1
  17. package/lib/request/create-routing-policy-request.d.ts +1 -1
  18. package/lib/request/create-rule-set-request.d.ts +1 -1
  19. package/lib/request/create-sslcipher-suite-request.d.ts +1 -1
  20. package/lib/request/delete-backend-request.d.ts +1 -1
  21. package/lib/request/delete-backend-set-request.d.ts +1 -1
  22. package/lib/request/delete-certificate-request.d.ts +1 -1
  23. package/lib/request/delete-hostname-request.d.ts +1 -1
  24. package/lib/request/delete-listener-request.d.ts +1 -1
  25. package/lib/request/delete-load-balancer-request.d.ts +1 -1
  26. package/lib/request/delete-path-route-set-request.d.ts +1 -1
  27. package/lib/request/delete-routing-policy-request.d.ts +1 -1
  28. package/lib/request/delete-rule-set-request.d.ts +1 -1
  29. package/lib/request/delete-sslcipher-suite-request.d.ts +1 -1
  30. package/lib/request/get-backend-health-request.d.ts +1 -1
  31. package/lib/request/get-backend-request.d.ts +1 -1
  32. package/lib/request/get-backend-set-health-request.d.ts +1 -1
  33. package/lib/request/get-backend-set-request.d.ts +1 -1
  34. package/lib/request/get-health-checker-request.d.ts +1 -1
  35. package/lib/request/get-hostname-request.d.ts +1 -1
  36. package/lib/request/get-load-balancer-health-request.d.ts +1 -1
  37. package/lib/request/get-load-balancer-request.d.ts +1 -1
  38. package/lib/request/get-path-route-set-request.d.ts +1 -1
  39. package/lib/request/get-routing-policy-request.d.ts +1 -1
  40. package/lib/request/get-rule-set-request.d.ts +1 -1
  41. package/lib/request/get-sslcipher-suite-request.d.ts +1 -1
  42. package/lib/request/get-work-request-request.d.ts +1 -1
  43. package/lib/request/list-backend-sets-request.d.ts +1 -1
  44. package/lib/request/list-backends-request.d.ts +1 -1
  45. package/lib/request/list-certificates-request.d.ts +1 -1
  46. package/lib/request/list-hostnames-request.d.ts +1 -1
  47. package/lib/request/list-listener-rules-request.d.ts +1 -1
  48. package/lib/request/list-load-balancer-healths-request.d.ts +1 -1
  49. package/lib/request/list-load-balancers-request.d.ts +1 -1
  50. package/lib/request/list-path-route-sets-request.d.ts +1 -1
  51. package/lib/request/list-policies-request.d.ts +1 -1
  52. package/lib/request/list-protocols-request.d.ts +1 -1
  53. package/lib/request/list-routing-policies-request.d.ts +1 -1
  54. package/lib/request/list-rule-sets-request.d.ts +1 -1
  55. package/lib/request/list-shapes-request.d.ts +1 -1
  56. package/lib/request/list-sslcipher-suites-request.d.ts +1 -1
  57. package/lib/request/list-work-requests-request.d.ts +1 -1
  58. package/lib/request/update-backend-request.d.ts +1 -1
  59. package/lib/request/update-backend-set-request.d.ts +1 -1
  60. package/lib/request/update-health-checker-request.d.ts +1 -1
  61. package/lib/request/update-hostname-request.d.ts +1 -1
  62. package/lib/request/update-listener-request.d.ts +1 -1
  63. package/lib/request/update-load-balancer-request.d.ts +1 -1
  64. package/lib/request/update-load-balancer-shape-request.d.ts +1 -1
  65. package/lib/request/update-network-security-groups-request.d.ts +1 -1
  66. package/lib/request/update-path-route-set-request.d.ts +1 -1
  67. package/lib/request/update-routing-policy-request.d.ts +1 -1
  68. package/lib/request/update-rule-set-request.d.ts +1 -1
  69. package/lib/request/update-sslcipher-suite-request.d.ts +1 -1
  70. package/package.json +3 -3
package/lib/client.d.ts CHANGED
@@ -19,6 +19,9 @@ import * as responses from "./response";
19
19
  import { LoadBalancerWaiter } from "./loadbalancer-waiter";
20
20
  export declare enum LoadBalancerApiKeys {
21
21
  }
22
+ /**
23
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
24
+ */
22
25
  export declare class LoadBalancerClient {
23
26
  protected static serviceEndpointTemplate: string;
24
27
  protected "_endpoint": string;
@@ -70,52 +73,58 @@ export declare class LoadBalancerClient {
70
73
  * Moves a load balancer into a different compartment within the same tenancy. For information about moving resources
71
74
  * between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
72
75
  *
76
+ * This operation does not retry by default if the user has not defined a retry configuration.
73
77
  * @param ChangeLoadBalancerCompartmentRequest
74
78
  * @return ChangeLoadBalancerCompartmentResponse
75
79
  * @throws OciError when an error occurs
76
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
80
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
77
81
  */
78
82
  changeLoadBalancerCompartment(changeLoadBalancerCompartmentRequest: requests.ChangeLoadBalancerCompartmentRequest): Promise<responses.ChangeLoadBalancerCompartmentResponse>;
79
83
  /**
80
84
  * Adds a backend server to a backend set.
85
+ * This operation does not retry by default if the user has not defined a retry configuration.
81
86
  * @param CreateBackendRequest
82
87
  * @return CreateBackendResponse
83
88
  * @throws OciError when an error occurs
84
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
89
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
85
90
  */
86
91
  createBackend(createBackendRequest: requests.CreateBackendRequest): Promise<responses.CreateBackendResponse>;
87
92
  /**
88
93
  * Adds a backend set to a load balancer.
94
+ * This operation does not retry by default if the user has not defined a retry configuration.
89
95
  * @param CreateBackendSetRequest
90
96
  * @return CreateBackendSetResponse
91
97
  * @throws OciError when an error occurs
92
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
98
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
93
99
  */
94
100
  createBackendSet(createBackendSetRequest: requests.CreateBackendSetRequest): Promise<responses.CreateBackendSetResponse>;
95
101
  /**
96
102
  * Creates an asynchronous request to add an SSL certificate bundle.
103
+ * This operation does not retry by default if the user has not defined a retry configuration.
97
104
  * @param CreateCertificateRequest
98
105
  * @return CreateCertificateResponse
99
106
  * @throws OciError when an error occurs
100
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
107
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
101
108
  */
102
109
  createCertificate(createCertificateRequest: requests.CreateCertificateRequest): Promise<responses.CreateCertificateResponse>;
103
110
  /**
104
111
  * Adds a hostname resource to the specified load balancer. For more information, see
105
112
  * [Managing Request Routing](https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrequest.htm).
106
113
  *
114
+ * This operation does not retry by default if the user has not defined a retry configuration.
107
115
  * @param CreateHostnameRequest
108
116
  * @return CreateHostnameResponse
109
117
  * @throws OciError when an error occurs
110
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
118
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
111
119
  */
112
120
  createHostname(createHostnameRequest: requests.CreateHostnameRequest): Promise<responses.CreateHostnameResponse>;
113
121
  /**
114
122
  * Adds a listener to a load balancer.
123
+ * This operation does not retry by default if the user has not defined a retry configuration.
115
124
  * @param CreateListenerRequest
116
125
  * @return CreateListenerResponse
117
126
  * @throws OciError when an error occurs
118
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
127
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
119
128
  */
120
129
  createListener(createListenerRequest: requests.CreateListenerRequest): Promise<responses.CreateListenerResponse>;
121
130
  /**
@@ -147,56 +156,62 @@ export declare class LoadBalancerClient {
147
156
  When you create a load balancer, the system assigns an IP address.
148
157
  * To get the IP address, use the {@link #getLoadBalancer(GetLoadBalancerRequest) getLoadBalancer} operation.
149
158
  *
159
+ * This operation does not retry by default if the user has not defined a retry configuration.
150
160
  * @param CreateLoadBalancerRequest
151
161
  * @return CreateLoadBalancerResponse
152
162
  * @throws OciError when an error occurs
153
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
163
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
154
164
  */
155
165
  createLoadBalancer(createLoadBalancerRequest: requests.CreateLoadBalancerRequest): Promise<responses.CreateLoadBalancerResponse>;
156
166
  /**
157
167
  * Adds a path route set to a load balancer. For more information, see
158
168
  * [Managing Request Routing](https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrequest.htm).
159
169
  *
170
+ * This operation does not retry by default if the user has not defined a retry configuration.
160
171
  * @param CreatePathRouteSetRequest
161
172
  * @return CreatePathRouteSetResponse
162
173
  * @throws OciError when an error occurs
163
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
174
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
164
175
  */
165
176
  createPathRouteSet(createPathRouteSetRequest: requests.CreatePathRouteSetRequest): Promise<responses.CreatePathRouteSetResponse>;
166
177
  /**
167
178
  * Adds a routing policy to a load balancer. For more information, see
168
179
  * [Managing Request Routing](https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrequest.htm).
169
180
  *
181
+ * This operation does not retry by default if the user has not defined a retry configuration.
170
182
  * @param CreateRoutingPolicyRequest
171
183
  * @return CreateRoutingPolicyResponse
172
184
  * @throws OciError when an error occurs
173
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
185
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
174
186
  */
175
187
  createRoutingPolicy(createRoutingPolicyRequest: requests.CreateRoutingPolicyRequest): Promise<responses.CreateRoutingPolicyResponse>;
176
188
  /**
177
189
  * Creates a new rule set associated with the specified load balancer. For more information, see
178
190
  * [Managing Rule Sets](https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrulesets.htm).
179
191
  *
192
+ * This operation does not retry by default if the user has not defined a retry configuration.
180
193
  * @param CreateRuleSetRequest
181
194
  * @return CreateRuleSetResponse
182
195
  * @throws OciError when an error occurs
183
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
196
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
184
197
  */
185
198
  createRuleSet(createRuleSetRequest: requests.CreateRuleSetRequest): Promise<responses.CreateRuleSetResponse>;
186
199
  /**
187
200
  * Creates a custom SSL cipher suite.
201
+ * This operation does not retry by default if the user has not defined a retry configuration.
188
202
  * @param CreateSSLCipherSuiteRequest
189
203
  * @return CreateSSLCipherSuiteResponse
190
204
  * @throws OciError when an error occurs
191
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
205
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
192
206
  */
193
207
  createSSLCipherSuite(createSSLCipherSuiteRequest: requests.CreateSSLCipherSuiteRequest): Promise<responses.CreateSSLCipherSuiteResponse>;
194
208
  /**
195
209
  * Removes a backend server from a given load balancer and backend set.
210
+ * This operation does not retry by default if the user has not defined a retry configuration.
196
211
  * @param DeleteBackendRequest
197
212
  * @return DeleteBackendResponse
198
213
  * @throws OciError when an error occurs
199
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
214
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
200
215
  */
201
216
  deleteBackend(deleteBackendRequest: requests.DeleteBackendRequest): Promise<responses.DeleteBackendResponse>;
202
217
  /**
@@ -204,43 +219,48 @@ export declare class LoadBalancerClient {
204
219
  * <p>
205
220
  Before you can delete a backend set, you must remove it from any active listeners.
206
221
  *
222
+ * This operation does not retry by default if the user has not defined a retry configuration.
207
223
  * @param DeleteBackendSetRequest
208
224
  * @return DeleteBackendSetResponse
209
225
  * @throws OciError when an error occurs
210
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
226
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
211
227
  */
212
228
  deleteBackendSet(deleteBackendSetRequest: requests.DeleteBackendSetRequest): Promise<responses.DeleteBackendSetResponse>;
213
229
  /**
214
230
  * Deletes an SSL certificate bundle from a load balancer.
231
+ * This operation does not retry by default if the user has not defined a retry configuration.
215
232
  * @param DeleteCertificateRequest
216
233
  * @return DeleteCertificateResponse
217
234
  * @throws OciError when an error occurs
218
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
235
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
219
236
  */
220
237
  deleteCertificate(deleteCertificateRequest: requests.DeleteCertificateRequest): Promise<responses.DeleteCertificateResponse>;
221
238
  /**
222
239
  * Deletes a hostname resource from the specified load balancer.
223
240
  *
241
+ * This operation does not retry by default if the user has not defined a retry configuration.
224
242
  * @param DeleteHostnameRequest
225
243
  * @return DeleteHostnameResponse
226
244
  * @throws OciError when an error occurs
227
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
245
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
228
246
  */
229
247
  deleteHostname(deleteHostnameRequest: requests.DeleteHostnameRequest): Promise<responses.DeleteHostnameResponse>;
230
248
  /**
231
249
  * Deletes a listener from a load balancer.
250
+ * This operation does not retry by default if the user has not defined a retry configuration.
232
251
  * @param DeleteListenerRequest
233
252
  * @return DeleteListenerResponse
234
253
  * @throws OciError when an error occurs
235
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
254
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
236
255
  */
237
256
  deleteListener(deleteListenerRequest: requests.DeleteListenerRequest): Promise<responses.DeleteListenerResponse>;
238
257
  /**
239
258
  * Stops a load balancer and removes it from service.
259
+ * This operation does not retry by default if the user has not defined a retry configuration.
240
260
  * @param DeleteLoadBalancerRequest
241
261
  * @return DeleteLoadBalancerResponse
242
262
  * @throws OciError when an error occurs
243
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
263
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
244
264
  */
245
265
  deleteLoadBalancer(deleteLoadBalancerRequest: requests.DeleteLoadBalancerRequest): Promise<responses.DeleteLoadBalancerResponse>;
246
266
  /**
@@ -249,10 +269,11 @@ export declare class LoadBalancerClient {
249
269
  To delete a path route rule from a path route set, use the
250
270
  * {@link #updatePathRouteSet(UpdatePathRouteSetRequest) updatePathRouteSet} operation.
251
271
  *
272
+ * This operation does not retry by default if the user has not defined a retry configuration.
252
273
  * @param DeletePathRouteSetRequest
253
274
  * @return DeletePathRouteSetResponse
254
275
  * @throws OciError when an error occurs
255
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
276
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
256
277
  */
257
278
  deletePathRouteSet(deletePathRouteSetRequest: requests.DeletePathRouteSetRequest): Promise<responses.DeletePathRouteSetResponse>;
258
279
  /**
@@ -261,10 +282,11 @@ export declare class LoadBalancerClient {
261
282
  To delete a routing rule from a routing policy, use the
262
283
  * {@link #updateRoutingPolicy(UpdateRoutingPolicyRequest) updateRoutingPolicy} operation.
263
284
  *
285
+ * This operation does not retry by default if the user has not defined a retry configuration.
264
286
  * @param DeleteRoutingPolicyRequest
265
287
  * @return DeleteRoutingPolicyResponse
266
288
  * @throws OciError when an error occurs
267
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
289
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
268
290
  */
269
291
  deleteRoutingPolicy(deleteRoutingPolicyRequest: requests.DeleteRoutingPolicyRequest): Promise<responses.DeleteRoutingPolicyResponse>;
270
292
  /**
@@ -273,154 +295,173 @@ export declare class LoadBalancerClient {
273
295
  To delete a rule from a rule set, use the
274
296
  * {@link #updateRuleSet(UpdateRuleSetRequest) updateRuleSet} operation.
275
297
  *
298
+ * This operation does not retry by default if the user has not defined a retry configuration.
276
299
  * @param DeleteRuleSetRequest
277
300
  * @return DeleteRuleSetResponse
278
301
  * @throws OciError when an error occurs
279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
302
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
280
303
  */
281
304
  deleteRuleSet(deleteRuleSetRequest: requests.DeleteRuleSetRequest): Promise<responses.DeleteRuleSetResponse>;
282
305
  /**
283
306
  * Deletes an SSL cipher suite from a load balancer.
307
+ * This operation does not retry by default if the user has not defined a retry configuration.
284
308
  * @param DeleteSSLCipherSuiteRequest
285
309
  * @return DeleteSSLCipherSuiteResponse
286
310
  * @throws OciError when an error occurs
287
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
311
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
288
312
  */
289
313
  deleteSSLCipherSuite(deleteSSLCipherSuiteRequest: requests.DeleteSSLCipherSuiteRequest): Promise<responses.DeleteSSLCipherSuiteResponse>;
290
314
  /**
291
315
  * Gets the specified backend server's configuration information.
316
+ * This operation does not retry by default if the user has not defined a retry configuration.
292
317
  * @param GetBackendRequest
293
318
  * @return GetBackendResponse
294
319
  * @throws OciError when an error occurs
295
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
320
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
296
321
  */
297
322
  getBackend(getBackendRequest: requests.GetBackendRequest): Promise<responses.GetBackendResponse>;
298
323
  /**
299
324
  * Gets the current health status of the specified backend server.
325
+ * This operation does not retry by default if the user has not defined a retry configuration.
300
326
  * @param GetBackendHealthRequest
301
327
  * @return GetBackendHealthResponse
302
328
  * @throws OciError when an error occurs
303
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
329
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
304
330
  */
305
331
  getBackendHealth(getBackendHealthRequest: requests.GetBackendHealthRequest): Promise<responses.GetBackendHealthResponse>;
306
332
  /**
307
333
  * Gets the specified backend set's configuration information.
334
+ * This operation does not retry by default if the user has not defined a retry configuration.
308
335
  * @param GetBackendSetRequest
309
336
  * @return GetBackendSetResponse
310
337
  * @throws OciError when an error occurs
311
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
338
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
312
339
  */
313
340
  getBackendSet(getBackendSetRequest: requests.GetBackendSetRequest): Promise<responses.GetBackendSetResponse>;
314
341
  /**
315
342
  * Gets the health status for the specified backend set.
343
+ * This operation does not retry by default if the user has not defined a retry configuration.
316
344
  * @param GetBackendSetHealthRequest
317
345
  * @return GetBackendSetHealthResponse
318
346
  * @throws OciError when an error occurs
319
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
347
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
320
348
  */
321
349
  getBackendSetHealth(getBackendSetHealthRequest: requests.GetBackendSetHealthRequest): Promise<responses.GetBackendSetHealthResponse>;
322
350
  /**
323
351
  * Gets the health check policy information for a given load balancer and backend set.
352
+ * This operation does not retry by default if the user has not defined a retry configuration.
324
353
  * @param GetHealthCheckerRequest
325
354
  * @return GetHealthCheckerResponse
326
355
  * @throws OciError when an error occurs
327
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
356
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
328
357
  */
329
358
  getHealthChecker(getHealthCheckerRequest: requests.GetHealthCheckerRequest): Promise<responses.GetHealthCheckerResponse>;
330
359
  /**
331
360
  * Gets the specified hostname resource's configuration information.
361
+ * This operation does not retry by default if the user has not defined a retry configuration.
332
362
  * @param GetHostnameRequest
333
363
  * @return GetHostnameResponse
334
364
  * @throws OciError when an error occurs
335
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
365
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
336
366
  */
337
367
  getHostname(getHostnameRequest: requests.GetHostnameRequest): Promise<responses.GetHostnameResponse>;
338
368
  /**
339
369
  * Gets the specified load balancer's configuration information.
370
+ * This operation does not retry by default if the user has not defined a retry configuration.
340
371
  * @param GetLoadBalancerRequest
341
372
  * @return GetLoadBalancerResponse
342
373
  * @throws OciError when an error occurs
343
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
374
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
344
375
  */
345
376
  getLoadBalancer(getLoadBalancerRequest: requests.GetLoadBalancerRequest): Promise<responses.GetLoadBalancerResponse>;
346
377
  /**
347
378
  * Gets the health status for the specified load balancer.
379
+ * This operation does not retry by default if the user has not defined a retry configuration.
348
380
  * @param GetLoadBalancerHealthRequest
349
381
  * @return GetLoadBalancerHealthResponse
350
382
  * @throws OciError when an error occurs
351
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
383
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
352
384
  */
353
385
  getLoadBalancerHealth(getLoadBalancerHealthRequest: requests.GetLoadBalancerHealthRequest): Promise<responses.GetLoadBalancerHealthResponse>;
354
386
  /**
355
387
  * Gets the specified path route set's configuration information.
388
+ * This operation does not retry by default if the user has not defined a retry configuration.
356
389
  * @param GetPathRouteSetRequest
357
390
  * @return GetPathRouteSetResponse
358
391
  * @throws OciError when an error occurs
359
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
392
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
360
393
  */
361
394
  getPathRouteSet(getPathRouteSetRequest: requests.GetPathRouteSetRequest): Promise<responses.GetPathRouteSetResponse>;
362
395
  /**
363
396
  * Gets the specified routing policy.
397
+ * This operation does not retry by default if the user has not defined a retry configuration.
364
398
  * @param GetRoutingPolicyRequest
365
399
  * @return GetRoutingPolicyResponse
366
400
  * @throws OciError when an error occurs
367
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
401
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
368
402
  */
369
403
  getRoutingPolicy(getRoutingPolicyRequest: requests.GetRoutingPolicyRequest): Promise<responses.GetRoutingPolicyResponse>;
370
404
  /**
371
405
  * Gets the specified set of rules.
406
+ * This operation does not retry by default if the user has not defined a retry configuration.
372
407
  * @param GetRuleSetRequest
373
408
  * @return GetRuleSetResponse
374
409
  * @throws OciError when an error occurs
375
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
410
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
376
411
  */
377
412
  getRuleSet(getRuleSetRequest: requests.GetRuleSetRequest): Promise<responses.GetRuleSetResponse>;
378
413
  /**
379
414
  * Gets the specified SSL cipher suite's configuration information.
415
+ * This operation does not retry by default if the user has not defined a retry configuration.
380
416
  * @param GetSSLCipherSuiteRequest
381
417
  * @return GetSSLCipherSuiteResponse
382
418
  * @throws OciError when an error occurs
383
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
419
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
384
420
  */
385
421
  getSSLCipherSuite(getSSLCipherSuiteRequest: requests.GetSSLCipherSuiteRequest): Promise<responses.GetSSLCipherSuiteResponse>;
386
422
  /**
387
423
  * Gets the details of a work request.
424
+ * This operation does not retry by default if the user has not defined a retry configuration.
388
425
  * @param GetWorkRequestRequest
389
426
  * @return GetWorkRequestResponse
390
427
  * @throws OciError when an error occurs
391
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
428
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
392
429
  */
393
430
  getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
394
431
  /**
395
432
  * Lists all backend sets associated with a given load balancer.
433
+ * This operation does not retry by default if the user has not defined a retry configuration.
396
434
  * @param ListBackendSetsRequest
397
435
  * @return ListBackendSetsResponse
398
436
  * @throws OciError when an error occurs
399
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
437
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
400
438
  */
401
439
  listBackendSets(listBackendSetsRequest: requests.ListBackendSetsRequest): Promise<responses.ListBackendSetsResponse>;
402
440
  /**
403
441
  * Lists the backend servers for a given load balancer and backend set.
442
+ * This operation does not retry by default if the user has not defined a retry configuration.
404
443
  * @param ListBackendsRequest
405
444
  * @return ListBackendsResponse
406
445
  * @throws OciError when an error occurs
407
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
446
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
408
447
  */
409
448
  listBackends(listBackendsRequest: requests.ListBackendsRequest): Promise<responses.ListBackendsResponse>;
410
449
  /**
411
450
  * Lists all SSL certificates bundles associated with a given load balancer.
451
+ * This operation does not retry by default if the user has not defined a retry configuration.
412
452
  * @param ListCertificatesRequest
413
453
  * @return ListCertificatesResponse
414
454
  * @throws OciError when an error occurs
415
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
455
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
416
456
  */
417
457
  listCertificates(listCertificatesRequest: requests.ListCertificatesRequest): Promise<responses.ListCertificatesResponse>;
418
458
  /**
419
459
  * Lists all hostname resources associated with the specified load balancer.
460
+ * This operation does not retry by default if the user has not defined a retry configuration.
420
461
  * @param ListHostnamesRequest
421
462
  * @return ListHostnamesResponse
422
463
  * @throws OciError when an error occurs
423
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
464
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
424
465
  */
425
466
  listHostnames(listHostnamesRequest: requests.ListHostnamesRequest): Promise<responses.ListHostnamesResponse>;
426
467
  /**
@@ -432,21 +473,24 @@ export declare class LoadBalancerClient {
432
473
  * * Request header rules
433
474
  * * Response header rules
434
475
  *
476
+ * This operation does not retry by default if the user has not defined a retry configuration.
435
477
  * @param ListListenerRulesRequest
436
478
  * @return ListListenerRulesResponse
437
479
  * @throws OciError when an error occurs
438
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
480
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
439
481
  */
440
482
  listListenerRules(listListenerRulesRequest: requests.ListListenerRulesRequest): Promise<responses.ListListenerRulesResponse>;
441
483
  /**
442
484
  * Lists the summary health statuses for all load balancers in the specified compartment.
485
+ * This operation does not retry by default if the user has not defined a retry configuration.
443
486
  * @param ListLoadBalancerHealthsRequest
444
487
  * @return ListLoadBalancerHealthsResponse
445
488
  * @throws OciError when an error occurs
446
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
489
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
447
490
  */
448
491
  listLoadBalancerHealths(listLoadBalancerHealthsRequest: requests.ListLoadBalancerHealthsRequest): Promise<responses.ListLoadBalancerHealthsResponse>;
449
492
  /**
493
+ * NOTE: This function is deprecated in favor of listLoadBalancerHealthsRecordIterator function.
450
494
  * Creates a new async iterator which will iterate over the models.LoadBalancerHealthSummary objects
451
495
  * contained in responses from the listLoadBalancerHealths operation. This iterator will fetch more data from the
452
496
  * server as needed.
@@ -455,21 +499,39 @@ export declare class LoadBalancerClient {
455
499
  */
456
500
  listAllLoadBalancerHealths(request: requests.ListLoadBalancerHealthsRequest): AsyncIterableIterator<model.LoadBalancerHealthSummary>;
457
501
  /**
502
+ * NOTE: This function is deprecated in favor of listLoadBalancerHealthsResponseIterator function.
458
503
  * Creates a new async iterator which will iterate over the responses received from the listLoadBalancerHealths operation. This iterator
459
504
  * will fetch more data from the server as needed.
460
505
  *
461
506
  * @param request a request which can be sent to the service operation
462
507
  */
463
508
  listAllLoadBalancerHealthsResponses(request: requests.ListLoadBalancerHealthsRequest): AsyncIterableIterator<responses.ListLoadBalancerHealthsResponse>;
509
+ /**
510
+ * Creates a new async iterator which will iterate over the models.LoadBalancerHealthSummary objects
511
+ * contained in responses from the listLoadBalancerHealths operation. This iterator will fetch more data from the
512
+ * server as needed.
513
+ *
514
+ * @param request a request which can be sent to the service operation
515
+ */
516
+ listLoadBalancerHealthsRecordIterator(request: requests.ListLoadBalancerHealthsRequest): AsyncIterableIterator<model.LoadBalancerHealthSummary>;
517
+ /**
518
+ * Creates a new async iterator which will iterate over the responses received from the listLoadBalancerHealths operation. This iterator
519
+ * will fetch more data from the server as needed.
520
+ *
521
+ * @param request a request which can be sent to the service operation
522
+ */
523
+ listLoadBalancerHealthsResponseIterator(request: requests.ListLoadBalancerHealthsRequest): AsyncIterableIterator<responses.ListLoadBalancerHealthsResponse>;
464
524
  /**
465
525
  * Lists all load balancers in the specified compartment.
526
+ * This operation does not retry by default if the user has not defined a retry configuration.
466
527
  * @param ListLoadBalancersRequest
467
528
  * @return ListLoadBalancersResponse
468
529
  * @throws OciError when an error occurs
469
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
530
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
470
531
  */
471
532
  listLoadBalancers(listLoadBalancersRequest: requests.ListLoadBalancersRequest): Promise<responses.ListLoadBalancersResponse>;
472
533
  /**
534
+ * NOTE: This function is deprecated in favor of listLoadBalancersRecordIterator function.
473
535
  * Creates a new async iterator which will iterate over the models.LoadBalancer objects
474
536
  * contained in responses from the listLoadBalancers operation. This iterator will fetch more data from the
475
537
  * server as needed.
@@ -478,29 +540,48 @@ export declare class LoadBalancerClient {
478
540
  */
479
541
  listAllLoadBalancers(request: requests.ListLoadBalancersRequest): AsyncIterableIterator<model.LoadBalancer>;
480
542
  /**
543
+ * NOTE: This function is deprecated in favor of listLoadBalancersResponseIterator function.
481
544
  * Creates a new async iterator which will iterate over the responses received from the listLoadBalancers operation. This iterator
482
545
  * will fetch more data from the server as needed.
483
546
  *
484
547
  * @param request a request which can be sent to the service operation
485
548
  */
486
549
  listAllLoadBalancersResponses(request: requests.ListLoadBalancersRequest): AsyncIterableIterator<responses.ListLoadBalancersResponse>;
550
+ /**
551
+ * Creates a new async iterator which will iterate over the models.LoadBalancer objects
552
+ * contained in responses from the listLoadBalancers operation. This iterator will fetch more data from the
553
+ * server as needed.
554
+ *
555
+ * @param request a request which can be sent to the service operation
556
+ */
557
+ listLoadBalancersRecordIterator(request: requests.ListLoadBalancersRequest): AsyncIterableIterator<model.LoadBalancer>;
558
+ /**
559
+ * Creates a new async iterator which will iterate over the responses received from the listLoadBalancers operation. This iterator
560
+ * will fetch more data from the server as needed.
561
+ *
562
+ * @param request a request which can be sent to the service operation
563
+ */
564
+ listLoadBalancersResponseIterator(request: requests.ListLoadBalancersRequest): AsyncIterableIterator<responses.ListLoadBalancersResponse>;
487
565
  /**
488
566
  * Lists all path route sets associated with the specified load balancer.
567
+ * This operation does not retry by default if the user has not defined a retry configuration.
489
568
  * @param ListPathRouteSetsRequest
490
569
  * @return ListPathRouteSetsResponse
491
570
  * @throws OciError when an error occurs
492
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
571
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
493
572
  */
494
573
  listPathRouteSets(listPathRouteSetsRequest: requests.ListPathRouteSetsRequest): Promise<responses.ListPathRouteSetsResponse>;
495
574
  /**
496
575
  * Lists the available load balancer policies.
576
+ * This operation does not retry by default if the user has not defined a retry configuration.
497
577
  * @param ListPoliciesRequest
498
578
  * @return ListPoliciesResponse
499
579
  * @throws OciError when an error occurs
500
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
580
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
501
581
  */
502
582
  listPolicies(listPoliciesRequest: requests.ListPoliciesRequest): Promise<responses.ListPoliciesResponse>;
503
583
  /**
584
+ * NOTE: This function is deprecated in favor of listPoliciesRecordIterator function.
504
585
  * Creates a new async iterator which will iterate over the models.LoadBalancerPolicy objects
505
586
  * contained in responses from the listPolicies operation. This iterator will fetch more data from the
506
587
  * server as needed.
@@ -509,21 +590,39 @@ export declare class LoadBalancerClient {
509
590
  */
510
591
  listAllPolicies(request: requests.ListPoliciesRequest): AsyncIterableIterator<model.LoadBalancerPolicy>;
511
592
  /**
593
+ * NOTE: This function is deprecated in favor of listPoliciesResponseIterator function.
512
594
  * Creates a new async iterator which will iterate over the responses received from the listPolicies operation. This iterator
513
595
  * will fetch more data from the server as needed.
514
596
  *
515
597
  * @param request a request which can be sent to the service operation
516
598
  */
517
599
  listAllPoliciesResponses(request: requests.ListPoliciesRequest): AsyncIterableIterator<responses.ListPoliciesResponse>;
600
+ /**
601
+ * Creates a new async iterator which will iterate over the models.LoadBalancerPolicy objects
602
+ * contained in responses from the listPolicies operation. This iterator will fetch more data from the
603
+ * server as needed.
604
+ *
605
+ * @param request a request which can be sent to the service operation
606
+ */
607
+ listPoliciesRecordIterator(request: requests.ListPoliciesRequest): AsyncIterableIterator<model.LoadBalancerPolicy>;
608
+ /**
609
+ * Creates a new async iterator which will iterate over the responses received from the listPolicies operation. This iterator
610
+ * will fetch more data from the server as needed.
611
+ *
612
+ * @param request a request which can be sent to the service operation
613
+ */
614
+ listPoliciesResponseIterator(request: requests.ListPoliciesRequest): AsyncIterableIterator<responses.ListPoliciesResponse>;
518
615
  /**
519
616
  * Lists all supported traffic protocols.
617
+ * This operation does not retry by default if the user has not defined a retry configuration.
520
618
  * @param ListProtocolsRequest
521
619
  * @return ListProtocolsResponse
522
620
  * @throws OciError when an error occurs
523
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
621
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
524
622
  */
525
623
  listProtocols(listProtocolsRequest: requests.ListProtocolsRequest): Promise<responses.ListProtocolsResponse>;
526
624
  /**
625
+ * NOTE: This function is deprecated in favor of listProtocolsRecordIterator function.
527
626
  * Creates a new async iterator which will iterate over the models.LoadBalancerProtocol objects
528
627
  * contained in responses from the listProtocols operation. This iterator will fetch more data from the
529
628
  * server as needed.
@@ -532,21 +631,39 @@ export declare class LoadBalancerClient {
532
631
  */
533
632
  listAllProtocols(request: requests.ListProtocolsRequest): AsyncIterableIterator<model.LoadBalancerProtocol>;
534
633
  /**
634
+ * NOTE: This function is deprecated in favor of listProtocolsResponseIterator function.
535
635
  * Creates a new async iterator which will iterate over the responses received from the listProtocols operation. This iterator
536
636
  * will fetch more data from the server as needed.
537
637
  *
538
638
  * @param request a request which can be sent to the service operation
539
639
  */
540
640
  listAllProtocolsResponses(request: requests.ListProtocolsRequest): AsyncIterableIterator<responses.ListProtocolsResponse>;
641
+ /**
642
+ * Creates a new async iterator which will iterate over the models.LoadBalancerProtocol objects
643
+ * contained in responses from the listProtocols operation. This iterator will fetch more data from the
644
+ * server as needed.
645
+ *
646
+ * @param request a request which can be sent to the service operation
647
+ */
648
+ listProtocolsRecordIterator(request: requests.ListProtocolsRequest): AsyncIterableIterator<model.LoadBalancerProtocol>;
649
+ /**
650
+ * Creates a new async iterator which will iterate over the responses received from the listProtocols operation. This iterator
651
+ * will fetch more data from the server as needed.
652
+ *
653
+ * @param request a request which can be sent to the service operation
654
+ */
655
+ listProtocolsResponseIterator(request: requests.ListProtocolsRequest): AsyncIterableIterator<responses.ListProtocolsResponse>;
541
656
  /**
542
657
  * Lists all routing policies associated with the specified load balancer.
658
+ * This operation does not retry by default if the user has not defined a retry configuration.
543
659
  * @param ListRoutingPoliciesRequest
544
660
  * @return ListRoutingPoliciesResponse
545
661
  * @throws OciError when an error occurs
546
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
662
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
547
663
  */
548
664
  listRoutingPolicies(listRoutingPoliciesRequest: requests.ListRoutingPoliciesRequest): Promise<responses.ListRoutingPoliciesResponse>;
549
665
  /**
666
+ * NOTE: This function is deprecated in favor of listRoutingPoliciesRecordIterator function.
550
667
  * Creates a new async iterator which will iterate over the models.RoutingPolicy objects
551
668
  * contained in responses from the listRoutingPolicies operation. This iterator will fetch more data from the
552
669
  * server as needed.
@@ -555,37 +672,57 @@ export declare class LoadBalancerClient {
555
672
  */
556
673
  listAllRoutingPolicies(request: requests.ListRoutingPoliciesRequest): AsyncIterableIterator<model.RoutingPolicy>;
557
674
  /**
675
+ * NOTE: This function is deprecated in favor of listRoutingPoliciesResponseIterator function.
558
676
  * Creates a new async iterator which will iterate over the responses received from the listRoutingPolicies operation. This iterator
559
677
  * will fetch more data from the server as needed.
560
678
  *
561
679
  * @param request a request which can be sent to the service operation
562
680
  */
563
681
  listAllRoutingPoliciesResponses(request: requests.ListRoutingPoliciesRequest): AsyncIterableIterator<responses.ListRoutingPoliciesResponse>;
682
+ /**
683
+ * Creates a new async iterator which will iterate over the models.RoutingPolicy objects
684
+ * contained in responses from the listRoutingPolicies operation. This iterator will fetch more data from the
685
+ * server as needed.
686
+ *
687
+ * @param request a request which can be sent to the service operation
688
+ */
689
+ listRoutingPoliciesRecordIterator(request: requests.ListRoutingPoliciesRequest): AsyncIterableIterator<model.RoutingPolicy>;
690
+ /**
691
+ * Creates a new async iterator which will iterate over the responses received from the listRoutingPolicies operation. This iterator
692
+ * will fetch more data from the server as needed.
693
+ *
694
+ * @param request a request which can be sent to the service operation
695
+ */
696
+ listRoutingPoliciesResponseIterator(request: requests.ListRoutingPoliciesRequest): AsyncIterableIterator<responses.ListRoutingPoliciesResponse>;
564
697
  /**
565
698
  * Lists all rule sets associated with the specified load balancer.
699
+ * This operation does not retry by default if the user has not defined a retry configuration.
566
700
  * @param ListRuleSetsRequest
567
701
  * @return ListRuleSetsResponse
568
702
  * @throws OciError when an error occurs
569
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
703
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
570
704
  */
571
705
  listRuleSets(listRuleSetsRequest: requests.ListRuleSetsRequest): Promise<responses.ListRuleSetsResponse>;
572
706
  /**
573
707
  * Lists all SSL cipher suites associated with the specified load balancer.
708
+ * This operation does not retry by default if the user has not defined a retry configuration.
574
709
  * @param ListSSLCipherSuitesRequest
575
710
  * @return ListSSLCipherSuitesResponse
576
711
  * @throws OciError when an error occurs
577
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
712
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
578
713
  */
579
714
  listSSLCipherSuites(listSSLCipherSuitesRequest: requests.ListSSLCipherSuitesRequest): Promise<responses.ListSSLCipherSuitesResponse>;
580
715
  /**
581
716
  * Lists the valid load balancer shapes.
717
+ * This operation does not retry by default if the user has not defined a retry configuration.
582
718
  * @param ListShapesRequest
583
719
  * @return ListShapesResponse
584
720
  * @throws OciError when an error occurs
585
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
721
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
586
722
  */
587
723
  listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
588
724
  /**
725
+ * NOTE: This function is deprecated in favor of listShapesRecordIterator function.
589
726
  * Creates a new async iterator which will iterate over the models.LoadBalancerShape objects
590
727
  * contained in responses from the listShapes operation. This iterator will fetch more data from the
591
728
  * server as needed.
@@ -594,21 +731,39 @@ export declare class LoadBalancerClient {
594
731
  */
595
732
  listAllShapes(request: requests.ListShapesRequest): AsyncIterableIterator<model.LoadBalancerShape>;
596
733
  /**
734
+ * NOTE: This function is deprecated in favor of listShapesResponseIterator function.
597
735
  * Creates a new async iterator which will iterate over the responses received from the listShapes operation. This iterator
598
736
  * will fetch more data from the server as needed.
599
737
  *
600
738
  * @param request a request which can be sent to the service operation
601
739
  */
602
740
  listAllShapesResponses(request: requests.ListShapesRequest): AsyncIterableIterator<responses.ListShapesResponse>;
741
+ /**
742
+ * Creates a new async iterator which will iterate over the models.LoadBalancerShape objects
743
+ * contained in responses from the listShapes operation. This iterator will fetch more data from the
744
+ * server as needed.
745
+ *
746
+ * @param request a request which can be sent to the service operation
747
+ */
748
+ listShapesRecordIterator(request: requests.ListShapesRequest): AsyncIterableIterator<model.LoadBalancerShape>;
749
+ /**
750
+ * Creates a new async iterator which will iterate over the responses received from the listShapes operation. This iterator
751
+ * will fetch more data from the server as needed.
752
+ *
753
+ * @param request a request which can be sent to the service operation
754
+ */
755
+ listShapesResponseIterator(request: requests.ListShapesRequest): AsyncIterableIterator<responses.ListShapesResponse>;
603
756
  /**
604
757
  * Lists the work requests for a given load balancer.
758
+ * This operation does not retry by default if the user has not defined a retry configuration.
605
759
  * @param ListWorkRequestsRequest
606
760
  * @return ListWorkRequestsResponse
607
761
  * @throws OciError when an error occurs
608
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
762
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
609
763
  */
610
764
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
611
765
  /**
766
+ * NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
612
767
  * Creates a new async iterator which will iterate over the models.WorkRequest objects
613
768
  * contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
614
769
  * server as needed.
@@ -617,60 +772,82 @@ export declare class LoadBalancerClient {
617
772
  */
618
773
  listAllWorkRequests(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequest>;
619
774
  /**
775
+ * NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
620
776
  * Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
621
777
  * will fetch more data from the server as needed.
622
778
  *
623
779
  * @param request a request which can be sent to the service operation
624
780
  */
625
781
  listAllWorkRequestsResponses(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
782
+ /**
783
+ * Creates a new async iterator which will iterate over the models.WorkRequest objects
784
+ * contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
785
+ * server as needed.
786
+ *
787
+ * @param request a request which can be sent to the service operation
788
+ */
789
+ listWorkRequestsRecordIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<model.WorkRequest>;
790
+ /**
791
+ * Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
792
+ * will fetch more data from the server as needed.
793
+ *
794
+ * @param request a request which can be sent to the service operation
795
+ */
796
+ listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
626
797
  /**
627
798
  * Updates the configuration of a backend server within the specified backend set.
799
+ * This operation does not retry by default if the user has not defined a retry configuration.
628
800
  * @param UpdateBackendRequest
629
801
  * @return UpdateBackendResponse
630
802
  * @throws OciError when an error occurs
631
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
803
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
632
804
  */
633
805
  updateBackend(updateBackendRequest: requests.UpdateBackendRequest): Promise<responses.UpdateBackendResponse>;
634
806
  /**
635
807
  * Updates a backend set.
808
+ * This operation does not retry by default if the user has not defined a retry configuration.
636
809
  * @param UpdateBackendSetRequest
637
810
  * @return UpdateBackendSetResponse
638
811
  * @throws OciError when an error occurs
639
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
812
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
640
813
  */
641
814
  updateBackendSet(updateBackendSetRequest: requests.UpdateBackendSetRequest): Promise<responses.UpdateBackendSetResponse>;
642
815
  /**
643
816
  * Updates the health check policy for a given load balancer and backend set.
817
+ * This operation does not retry by default if the user has not defined a retry configuration.
644
818
  * @param UpdateHealthCheckerRequest
645
819
  * @return UpdateHealthCheckerResponse
646
820
  * @throws OciError when an error occurs
647
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
821
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
648
822
  */
649
823
  updateHealthChecker(updateHealthCheckerRequest: requests.UpdateHealthCheckerRequest): Promise<responses.UpdateHealthCheckerResponse>;
650
824
  /**
651
825
  * Overwrites an existing hostname resource on the specified load balancer. Use this operation to change a
652
826
  * virtual hostname.
653
827
  *
828
+ * This operation does not retry by default if the user has not defined a retry configuration.
654
829
  * @param UpdateHostnameRequest
655
830
  * @return UpdateHostnameResponse
656
831
  * @throws OciError when an error occurs
657
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
832
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
658
833
  */
659
834
  updateHostname(updateHostnameRequest: requests.UpdateHostnameRequest): Promise<responses.UpdateHostnameResponse>;
660
835
  /**
661
836
  * Updates a listener for a given load balancer.
837
+ * This operation does not retry by default if the user has not defined a retry configuration.
662
838
  * @param UpdateListenerRequest
663
839
  * @return UpdateListenerResponse
664
840
  * @throws OciError when an error occurs
665
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
841
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
666
842
  */
667
843
  updateListener(updateListenerRequest: requests.UpdateListenerRequest): Promise<responses.UpdateListenerResponse>;
668
844
  /**
669
845
  * Updates a load balancer's configuration.
846
+ * This operation does not retry by default if the user has not defined a retry configuration.
670
847
  * @param UpdateLoadBalancerRequest
671
848
  * @return UpdateLoadBalancerResponse
672
849
  * @throws OciError when an error occurs
673
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
850
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
674
851
  */
675
852
  updateLoadBalancer(updateLoadBalancerRequest: requests.UpdateLoadBalancerRequest): Promise<responses.UpdateLoadBalancerResponse>;
676
853
  /**
@@ -681,18 +858,20 @@ export declare class LoadBalancerClient {
681
858
  * start accepting larger bandwidth and when reshaping to a smaller one, the LB will be accepting smaller
682
859
  * bandwidth.
683
860
  *
861
+ * This operation does not retry by default if the user has not defined a retry configuration.
684
862
  * @param UpdateLoadBalancerShapeRequest
685
863
  * @return UpdateLoadBalancerShapeResponse
686
864
  * @throws OciError when an error occurs
687
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
865
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
688
866
  */
689
867
  updateLoadBalancerShape(updateLoadBalancerShapeRequest: requests.UpdateLoadBalancerShapeRequest): Promise<responses.UpdateLoadBalancerShapeResponse>;
690
868
  /**
691
869
  * Updates the network security groups associated with the specified load balancer.
870
+ * This operation does not retry by default if the user has not defined a retry configuration.
692
871
  * @param UpdateNetworkSecurityGroupsRequest
693
872
  * @return UpdateNetworkSecurityGroupsResponse
694
873
  * @throws OciError when an error occurs
695
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
874
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
696
875
  */
697
876
  updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest: requests.UpdateNetworkSecurityGroupsRequest): Promise<responses.UpdateNetworkSecurityGroupsResponse>;
698
877
  /**
@@ -703,10 +882,11 @@ export declare class LoadBalancerClient {
703
882
  * {@link #updatePathRouteSetDetails(UpdatePathRouteSetDetailsRequest) updatePathRouteSetDetails} object must include
704
883
  * both the new path route rule to add and the existing path route rules to retain.
705
884
  *
885
+ * This operation does not retry by default if the user has not defined a retry configuration.
706
886
  * @param UpdatePathRouteSetRequest
707
887
  * @return UpdatePathRouteSetResponse
708
888
  * @throws OciError when an error occurs
709
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
889
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
710
890
  */
711
891
  updatePathRouteSet(updatePathRouteSetRequest: requests.UpdatePathRouteSetRequest): Promise<responses.UpdatePathRouteSetResponse>;
712
892
  /**
@@ -715,10 +895,11 @@ export declare class LoadBalancerClient {
715
895
  * <p>
716
896
  To add a new routing rule to a routing policy, the body must include both the new routing rule to add and the existing rules to retain.
717
897
  *
898
+ * This operation does not retry by default if the user has not defined a retry configuration.
718
899
  * @param UpdateRoutingPolicyRequest
719
900
  * @return UpdateRoutingPolicyResponse
720
901
  * @throws OciError when an error occurs
721
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
902
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
722
903
  */
723
904
  updateRoutingPolicy(updateRoutingPolicyRequest: requests.UpdateRoutingPolicyRequest): Promise<responses.UpdateRoutingPolicyResponse>;
724
905
  /**
@@ -727,18 +908,20 @@ export declare class LoadBalancerClient {
727
908
  * <p>
728
909
  To add a new rule to a set, the body must include both the new rule to add and the existing rules to retain.
729
910
  *
911
+ * This operation does not retry by default if the user has not defined a retry configuration.
730
912
  * @param UpdateRuleSetRequest
731
913
  * @return UpdateRuleSetResponse
732
914
  * @throws OciError when an error occurs
733
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
915
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
734
916
  */
735
917
  updateRuleSet(updateRuleSetRequest: requests.UpdateRuleSetRequest): Promise<responses.UpdateRuleSetResponse>;
736
918
  /**
737
919
  * Updates an existing SSL cipher suite for the specified load balancer.
920
+ * This operation does not retry by default if the user has not defined a retry configuration.
738
921
  * @param UpdateSSLCipherSuiteRequest
739
922
  * @return UpdateSSLCipherSuiteResponse
740
923
  * @throws OciError when an error occurs
741
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.4.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
924
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
742
925
  */
743
926
  updateSSLCipherSuite(updateSSLCipherSuiteRequest: requests.UpdateSSLCipherSuiteRequest): Promise<responses.UpdateSSLCipherSuiteResponse>;
744
927
  }