oci-loadbalancer 2.5.2 → 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 (69) hide show
  1. package/lib/client.d.ts +125 -61
  2. package/lib/client.js +254 -122
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/s-sl-configuration-details.d.ts +14 -0
  5. package/lib/model/s-sl-configuration-details.js.map +1 -1
  6. package/lib/model/s-sl-configuration.d.ts +14 -0
  7. package/lib/model/s-sl-configuration.js.map +1 -1
  8. package/lib/request/change-load-balancer-compartment-request.d.ts +1 -1
  9. package/lib/request/create-backend-request.d.ts +1 -1
  10. package/lib/request/create-backend-set-request.d.ts +1 -1
  11. package/lib/request/create-certificate-request.d.ts +1 -1
  12. package/lib/request/create-hostname-request.d.ts +1 -1
  13. package/lib/request/create-listener-request.d.ts +1 -1
  14. package/lib/request/create-load-balancer-request.d.ts +1 -1
  15. package/lib/request/create-path-route-set-request.d.ts +1 -1
  16. package/lib/request/create-routing-policy-request.d.ts +1 -1
  17. package/lib/request/create-rule-set-request.d.ts +1 -1
  18. package/lib/request/create-sslcipher-suite-request.d.ts +1 -1
  19. package/lib/request/delete-backend-request.d.ts +1 -1
  20. package/lib/request/delete-backend-set-request.d.ts +1 -1
  21. package/lib/request/delete-certificate-request.d.ts +1 -1
  22. package/lib/request/delete-hostname-request.d.ts +1 -1
  23. package/lib/request/delete-listener-request.d.ts +1 -1
  24. package/lib/request/delete-load-balancer-request.d.ts +1 -1
  25. package/lib/request/delete-path-route-set-request.d.ts +1 -1
  26. package/lib/request/delete-routing-policy-request.d.ts +1 -1
  27. package/lib/request/delete-rule-set-request.d.ts +1 -1
  28. package/lib/request/delete-sslcipher-suite-request.d.ts +1 -1
  29. package/lib/request/get-backend-health-request.d.ts +1 -1
  30. package/lib/request/get-backend-request.d.ts +1 -1
  31. package/lib/request/get-backend-set-health-request.d.ts +1 -1
  32. package/lib/request/get-backend-set-request.d.ts +1 -1
  33. package/lib/request/get-health-checker-request.d.ts +1 -1
  34. package/lib/request/get-hostname-request.d.ts +1 -1
  35. package/lib/request/get-load-balancer-health-request.d.ts +1 -1
  36. package/lib/request/get-load-balancer-request.d.ts +1 -1
  37. package/lib/request/get-path-route-set-request.d.ts +1 -1
  38. package/lib/request/get-routing-policy-request.d.ts +1 -1
  39. package/lib/request/get-rule-set-request.d.ts +1 -1
  40. package/lib/request/get-sslcipher-suite-request.d.ts +1 -1
  41. package/lib/request/get-work-request-request.d.ts +1 -1
  42. package/lib/request/list-backend-sets-request.d.ts +1 -1
  43. package/lib/request/list-backends-request.d.ts +1 -1
  44. package/lib/request/list-certificates-request.d.ts +1 -1
  45. package/lib/request/list-hostnames-request.d.ts +1 -1
  46. package/lib/request/list-listener-rules-request.d.ts +1 -1
  47. package/lib/request/list-load-balancer-healths-request.d.ts +1 -1
  48. package/lib/request/list-load-balancers-request.d.ts +1 -1
  49. package/lib/request/list-path-route-sets-request.d.ts +1 -1
  50. package/lib/request/list-policies-request.d.ts +1 -1
  51. package/lib/request/list-protocols-request.d.ts +1 -1
  52. package/lib/request/list-routing-policies-request.d.ts +1 -1
  53. package/lib/request/list-rule-sets-request.d.ts +1 -1
  54. package/lib/request/list-shapes-request.d.ts +1 -1
  55. package/lib/request/list-sslcipher-suites-request.d.ts +1 -1
  56. package/lib/request/list-work-requests-request.d.ts +1 -1
  57. package/lib/request/update-backend-request.d.ts +1 -1
  58. package/lib/request/update-backend-set-request.d.ts +1 -1
  59. package/lib/request/update-health-checker-request.d.ts +1 -1
  60. package/lib/request/update-hostname-request.d.ts +1 -1
  61. package/lib/request/update-listener-request.d.ts +1 -1
  62. package/lib/request/update-load-balancer-request.d.ts +1 -1
  63. package/lib/request/update-load-balancer-shape-request.d.ts +1 -1
  64. package/lib/request/update-network-security-groups-request.d.ts +1 -1
  65. package/lib/request/update-path-route-set-request.d.ts +1 -1
  66. package/lib/request/update-routing-policy-request.d.ts +1 -1
  67. package/lib/request/update-rule-set-request.d.ts +1 -1
  68. package/lib/request/update-sslcipher-suite-request.d.ts +1 -1
  69. 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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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.5.2/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,18 +473,20 @@ 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.5.2/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.5.2/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
  /**
@@ -480,10 +523,11 @@ export declare class LoadBalancerClient {
480
523
  listLoadBalancerHealthsResponseIterator(request: requests.ListLoadBalancerHealthsRequest): AsyncIterableIterator<responses.ListLoadBalancerHealthsResponse>;
481
524
  /**
482
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.
483
527
  * @param ListLoadBalancersRequest
484
528
  * @return ListLoadBalancersResponse
485
529
  * @throws OciError when an error occurs
486
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
487
531
  */
488
532
  listLoadBalancers(listLoadBalancersRequest: requests.ListLoadBalancersRequest): Promise<responses.ListLoadBalancersResponse>;
489
533
  /**
@@ -520,18 +564,20 @@ export declare class LoadBalancerClient {
520
564
  listLoadBalancersResponseIterator(request: requests.ListLoadBalancersRequest): AsyncIterableIterator<responses.ListLoadBalancersResponse>;
521
565
  /**
522
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.
523
568
  * @param ListPathRouteSetsRequest
524
569
  * @return ListPathRouteSetsResponse
525
570
  * @throws OciError when an error occurs
526
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
527
572
  */
528
573
  listPathRouteSets(listPathRouteSetsRequest: requests.ListPathRouteSetsRequest): Promise<responses.ListPathRouteSetsResponse>;
529
574
  /**
530
575
  * Lists the available load balancer policies.
576
+ * This operation does not retry by default if the user has not defined a retry configuration.
531
577
  * @param ListPoliciesRequest
532
578
  * @return ListPoliciesResponse
533
579
  * @throws OciError when an error occurs
534
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
535
581
  */
536
582
  listPolicies(listPoliciesRequest: requests.ListPoliciesRequest): Promise<responses.ListPoliciesResponse>;
537
583
  /**
@@ -568,10 +614,11 @@ export declare class LoadBalancerClient {
568
614
  listPoliciesResponseIterator(request: requests.ListPoliciesRequest): AsyncIterableIterator<responses.ListPoliciesResponse>;
569
615
  /**
570
616
  * Lists all supported traffic protocols.
617
+ * This operation does not retry by default if the user has not defined a retry configuration.
571
618
  * @param ListProtocolsRequest
572
619
  * @return ListProtocolsResponse
573
620
  * @throws OciError when an error occurs
574
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
575
622
  */
576
623
  listProtocols(listProtocolsRequest: requests.ListProtocolsRequest): Promise<responses.ListProtocolsResponse>;
577
624
  /**
@@ -608,10 +655,11 @@ export declare class LoadBalancerClient {
608
655
  listProtocolsResponseIterator(request: requests.ListProtocolsRequest): AsyncIterableIterator<responses.ListProtocolsResponse>;
609
656
  /**
610
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.
611
659
  * @param ListRoutingPoliciesRequest
612
660
  * @return ListRoutingPoliciesResponse
613
661
  * @throws OciError when an error occurs
614
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
615
663
  */
616
664
  listRoutingPolicies(listRoutingPoliciesRequest: requests.ListRoutingPoliciesRequest): Promise<responses.ListRoutingPoliciesResponse>;
617
665
  /**
@@ -648,26 +696,29 @@ export declare class LoadBalancerClient {
648
696
  listRoutingPoliciesResponseIterator(request: requests.ListRoutingPoliciesRequest): AsyncIterableIterator<responses.ListRoutingPoliciesResponse>;
649
697
  /**
650
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.
651
700
  * @param ListRuleSetsRequest
652
701
  * @return ListRuleSetsResponse
653
702
  * @throws OciError when an error occurs
654
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
655
704
  */
656
705
  listRuleSets(listRuleSetsRequest: requests.ListRuleSetsRequest): Promise<responses.ListRuleSetsResponse>;
657
706
  /**
658
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.
659
709
  * @param ListSSLCipherSuitesRequest
660
710
  * @return ListSSLCipherSuitesResponse
661
711
  * @throws OciError when an error occurs
662
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
663
713
  */
664
714
  listSSLCipherSuites(listSSLCipherSuitesRequest: requests.ListSSLCipherSuitesRequest): Promise<responses.ListSSLCipherSuitesResponse>;
665
715
  /**
666
716
  * Lists the valid load balancer shapes.
717
+ * This operation does not retry by default if the user has not defined a retry configuration.
667
718
  * @param ListShapesRequest
668
719
  * @return ListShapesResponse
669
720
  * @throws OciError when an error occurs
670
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
671
722
  */
672
723
  listShapes(listShapesRequest: requests.ListShapesRequest): Promise<responses.ListShapesResponse>;
673
724
  /**
@@ -704,10 +755,11 @@ export declare class LoadBalancerClient {
704
755
  listShapesResponseIterator(request: requests.ListShapesRequest): AsyncIterableIterator<responses.ListShapesResponse>;
705
756
  /**
706
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.
707
759
  * @param ListWorkRequestsRequest
708
760
  * @return ListWorkRequestsResponse
709
761
  * @throws OciError when an error occurs
710
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
711
763
  */
712
764
  listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
713
765
  /**
@@ -744,52 +796,58 @@ export declare class LoadBalancerClient {
744
796
  listWorkRequestsResponseIterator(request: requests.ListWorkRequestsRequest): AsyncIterableIterator<responses.ListWorkRequestsResponse>;
745
797
  /**
746
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.
747
800
  * @param UpdateBackendRequest
748
801
  * @return UpdateBackendResponse
749
802
  * @throws OciError when an error occurs
750
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
751
804
  */
752
805
  updateBackend(updateBackendRequest: requests.UpdateBackendRequest): Promise<responses.UpdateBackendResponse>;
753
806
  /**
754
807
  * Updates a backend set.
808
+ * This operation does not retry by default if the user has not defined a retry configuration.
755
809
  * @param UpdateBackendSetRequest
756
810
  * @return UpdateBackendSetResponse
757
811
  * @throws OciError when an error occurs
758
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
759
813
  */
760
814
  updateBackendSet(updateBackendSetRequest: requests.UpdateBackendSetRequest): Promise<responses.UpdateBackendSetResponse>;
761
815
  /**
762
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.
763
818
  * @param UpdateHealthCheckerRequest
764
819
  * @return UpdateHealthCheckerResponse
765
820
  * @throws OciError when an error occurs
766
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
767
822
  */
768
823
  updateHealthChecker(updateHealthCheckerRequest: requests.UpdateHealthCheckerRequest): Promise<responses.UpdateHealthCheckerResponse>;
769
824
  /**
770
825
  * Overwrites an existing hostname resource on the specified load balancer. Use this operation to change a
771
826
  * virtual hostname.
772
827
  *
828
+ * This operation does not retry by default if the user has not defined a retry configuration.
773
829
  * @param UpdateHostnameRequest
774
830
  * @return UpdateHostnameResponse
775
831
  * @throws OciError when an error occurs
776
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
777
833
  */
778
834
  updateHostname(updateHostnameRequest: requests.UpdateHostnameRequest): Promise<responses.UpdateHostnameResponse>;
779
835
  /**
780
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.
781
838
  * @param UpdateListenerRequest
782
839
  * @return UpdateListenerResponse
783
840
  * @throws OciError when an error occurs
784
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
785
842
  */
786
843
  updateListener(updateListenerRequest: requests.UpdateListenerRequest): Promise<responses.UpdateListenerResponse>;
787
844
  /**
788
845
  * Updates a load balancer's configuration.
846
+ * This operation does not retry by default if the user has not defined a retry configuration.
789
847
  * @param UpdateLoadBalancerRequest
790
848
  * @return UpdateLoadBalancerResponse
791
849
  * @throws OciError when an error occurs
792
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
793
851
  */
794
852
  updateLoadBalancer(updateLoadBalancerRequest: requests.UpdateLoadBalancerRequest): Promise<responses.UpdateLoadBalancerResponse>;
795
853
  /**
@@ -800,18 +858,20 @@ export declare class LoadBalancerClient {
800
858
  * start accepting larger bandwidth and when reshaping to a smaller one, the LB will be accepting smaller
801
859
  * bandwidth.
802
860
  *
861
+ * This operation does not retry by default if the user has not defined a retry configuration.
803
862
  * @param UpdateLoadBalancerShapeRequest
804
863
  * @return UpdateLoadBalancerShapeResponse
805
864
  * @throws OciError when an error occurs
806
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
807
866
  */
808
867
  updateLoadBalancerShape(updateLoadBalancerShapeRequest: requests.UpdateLoadBalancerShapeRequest): Promise<responses.UpdateLoadBalancerShapeResponse>;
809
868
  /**
810
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.
811
871
  * @param UpdateNetworkSecurityGroupsRequest
812
872
  * @return UpdateNetworkSecurityGroupsResponse
813
873
  * @throws OciError when an error occurs
814
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
815
875
  */
816
876
  updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest: requests.UpdateNetworkSecurityGroupsRequest): Promise<responses.UpdateNetworkSecurityGroupsResponse>;
817
877
  /**
@@ -822,10 +882,11 @@ export declare class LoadBalancerClient {
822
882
  * {@link #updatePathRouteSetDetails(UpdatePathRouteSetDetailsRequest) updatePathRouteSetDetails} object must include
823
883
  * both the new path route rule to add and the existing path route rules to retain.
824
884
  *
885
+ * This operation does not retry by default if the user has not defined a retry configuration.
825
886
  * @param UpdatePathRouteSetRequest
826
887
  * @return UpdatePathRouteSetResponse
827
888
  * @throws OciError when an error occurs
828
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
829
890
  */
830
891
  updatePathRouteSet(updatePathRouteSetRequest: requests.UpdatePathRouteSetRequest): Promise<responses.UpdatePathRouteSetResponse>;
831
892
  /**
@@ -834,10 +895,11 @@ export declare class LoadBalancerClient {
834
895
  * <p>
835
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.
836
897
  *
898
+ * This operation does not retry by default if the user has not defined a retry configuration.
837
899
  * @param UpdateRoutingPolicyRequest
838
900
  * @return UpdateRoutingPolicyResponse
839
901
  * @throws OciError when an error occurs
840
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
841
903
  */
842
904
  updateRoutingPolicy(updateRoutingPolicyRequest: requests.UpdateRoutingPolicyRequest): Promise<responses.UpdateRoutingPolicyResponse>;
843
905
  /**
@@ -846,18 +908,20 @@ export declare class LoadBalancerClient {
846
908
  * <p>
847
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.
848
910
  *
911
+ * This operation does not retry by default if the user has not defined a retry configuration.
849
912
  * @param UpdateRuleSetRequest
850
913
  * @return UpdateRuleSetResponse
851
914
  * @throws OciError when an error occurs
852
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
853
916
  */
854
917
  updateRuleSet(updateRuleSetRequest: requests.UpdateRuleSetRequest): Promise<responses.UpdateRuleSetResponse>;
855
918
  /**
856
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.
857
921
  * @param UpdateSSLCipherSuiteRequest
858
922
  * @return UpdateSSLCipherSuiteResponse
859
923
  * @throws OciError when an error occurs
860
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.2/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.
861
925
  */
862
926
  updateSSLCipherSuite(updateSSLCipherSuiteRequest: requests.UpdateSSLCipherSuiteRequest): Promise<responses.UpdateSSLCipherSuiteResponse>;
863
927
  }