oci-loadbalancer 2.5.1 → 2.7.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.
- package/LICENSE.txt +6 -0
- package/lib/client.d.ts +125 -61
- package/lib/client.js +254 -122
- package/lib/client.js.map +1 -1
- package/lib/model/s-sl-configuration-details.d.ts +14 -0
- package/lib/model/s-sl-configuration-details.js.map +1 -1
- package/lib/model/s-sl-configuration.d.ts +14 -0
- package/lib/model/s-sl-configuration.js.map +1 -1
- package/lib/request/change-load-balancer-compartment-request.d.ts +1 -1
- package/lib/request/create-backend-request.d.ts +1 -1
- package/lib/request/create-backend-set-request.d.ts +1 -1
- package/lib/request/create-certificate-request.d.ts +1 -1
- package/lib/request/create-hostname-request.d.ts +1 -1
- package/lib/request/create-listener-request.d.ts +1 -1
- package/lib/request/create-load-balancer-request.d.ts +1 -1
- package/lib/request/create-path-route-set-request.d.ts +1 -1
- package/lib/request/create-routing-policy-request.d.ts +1 -1
- package/lib/request/create-rule-set-request.d.ts +1 -1
- package/lib/request/create-sslcipher-suite-request.d.ts +1 -1
- package/lib/request/delete-backend-request.d.ts +1 -1
- package/lib/request/delete-backend-set-request.d.ts +1 -1
- package/lib/request/delete-certificate-request.d.ts +1 -1
- package/lib/request/delete-hostname-request.d.ts +1 -1
- package/lib/request/delete-listener-request.d.ts +1 -1
- package/lib/request/delete-load-balancer-request.d.ts +1 -1
- package/lib/request/delete-path-route-set-request.d.ts +1 -1
- package/lib/request/delete-routing-policy-request.d.ts +1 -1
- package/lib/request/delete-rule-set-request.d.ts +1 -1
- package/lib/request/delete-sslcipher-suite-request.d.ts +1 -1
- package/lib/request/get-backend-health-request.d.ts +1 -1
- package/lib/request/get-backend-request.d.ts +1 -1
- package/lib/request/get-backend-set-health-request.d.ts +1 -1
- package/lib/request/get-backend-set-request.d.ts +1 -1
- package/lib/request/get-health-checker-request.d.ts +1 -1
- package/lib/request/get-hostname-request.d.ts +1 -1
- package/lib/request/get-load-balancer-health-request.d.ts +1 -1
- package/lib/request/get-load-balancer-request.d.ts +1 -1
- package/lib/request/get-path-route-set-request.d.ts +1 -1
- package/lib/request/get-routing-policy-request.d.ts +1 -1
- package/lib/request/get-rule-set-request.d.ts +1 -1
- package/lib/request/get-sslcipher-suite-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-backend-sets-request.d.ts +1 -1
- package/lib/request/list-backends-request.d.ts +1 -1
- package/lib/request/list-certificates-request.d.ts +1 -1
- package/lib/request/list-hostnames-request.d.ts +1 -1
- package/lib/request/list-listener-rules-request.d.ts +1 -1
- package/lib/request/list-load-balancer-healths-request.d.ts +1 -1
- package/lib/request/list-load-balancers-request.d.ts +1 -1
- package/lib/request/list-path-route-sets-request.d.ts +1 -1
- package/lib/request/list-policies-request.d.ts +1 -1
- package/lib/request/list-protocols-request.d.ts +1 -1
- package/lib/request/list-routing-policies-request.d.ts +1 -1
- package/lib/request/list-rule-sets-request.d.ts +1 -1
- package/lib/request/list-shapes-request.d.ts +1 -1
- package/lib/request/list-sslcipher-suites-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/update-backend-request.d.ts +1 -1
- package/lib/request/update-backend-set-request.d.ts +1 -1
- package/lib/request/update-health-checker-request.d.ts +1 -1
- package/lib/request/update-hostname-request.d.ts +1 -1
- package/lib/request/update-listener-request.d.ts +1 -1
- package/lib/request/update-load-balancer-request.d.ts +1 -1
- package/lib/request/update-load-balancer-shape-request.d.ts +1 -1
- package/lib/request/update-network-security-groups-request.d.ts +1 -1
- package/lib/request/update-path-route-set-request.d.ts +1 -1
- package/lib/request/update-routing-policy-request.d.ts +1 -1
- package/lib/request/update-rule-set-request.d.ts +1 -1
- package/lib/request/update-sslcipher-suite-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -54,6 +54,9 @@ const oci_common_2 = require("oci-common");
|
|
|
54
54
|
var LoadBalancerApiKeys;
|
|
55
55
|
(function (LoadBalancerApiKeys) {
|
|
56
56
|
})(LoadBalancerApiKeys = exports.LoadBalancerApiKeys || (exports.LoadBalancerApiKeys = {}));
|
|
57
|
+
/**
|
|
58
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
59
|
+
*/
|
|
57
60
|
class LoadBalancerClient {
|
|
58
61
|
constructor(params, clientConfiguration) {
|
|
59
62
|
this["_endpoint"] = "";
|
|
@@ -68,6 +71,13 @@ class LoadBalancerClient {
|
|
|
68
71
|
? clientConfiguration.circuitBreaker.circuit
|
|
69
72
|
: null;
|
|
70
73
|
}
|
|
74
|
+
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
75
|
+
const specCircuitBreakerEnabled = false;
|
|
76
|
+
if (!this._circuitBreaker &&
|
|
77
|
+
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
78
|
+
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
79
|
+
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
80
|
+
}
|
|
71
81
|
this._httpClient =
|
|
72
82
|
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
|
|
73
83
|
if (params.authenticationDetailsProvider &&
|
|
@@ -141,10 +151,11 @@ class LoadBalancerClient {
|
|
|
141
151
|
* Moves a load balancer into a different compartment within the same tenancy. For information about moving resources
|
|
142
152
|
* between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
143
153
|
*
|
|
154
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
144
155
|
* @param ChangeLoadBalancerCompartmentRequest
|
|
145
156
|
* @return ChangeLoadBalancerCompartmentResponse
|
|
146
157
|
* @throws OciError when an error occurs
|
|
147
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
158
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
|
|
148
159
|
*/
|
|
149
160
|
changeLoadBalancerCompartment(changeLoadBalancerCompartmentRequest) {
|
|
150
161
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -160,7 +171,8 @@ class LoadBalancerClient {
|
|
|
160
171
|
"opc-retry-token": changeLoadBalancerCompartmentRequest.opcRetryToken,
|
|
161
172
|
"if-match": changeLoadBalancerCompartmentRequest.ifMatch
|
|
162
173
|
};
|
|
163
|
-
const
|
|
174
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
175
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeLoadBalancerCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
164
176
|
if (this.logger)
|
|
165
177
|
retrier.logger = this.logger;
|
|
166
178
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -199,10 +211,11 @@ class LoadBalancerClient {
|
|
|
199
211
|
}
|
|
200
212
|
/**
|
|
201
213
|
* Adds a backend server to a backend set.
|
|
214
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
202
215
|
* @param CreateBackendRequest
|
|
203
216
|
* @return CreateBackendResponse
|
|
204
217
|
* @throws OciError when an error occurs
|
|
205
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
218
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
|
|
206
219
|
*/
|
|
207
220
|
createBackend(createBackendRequest) {
|
|
208
221
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -218,7 +231,8 @@ class LoadBalancerClient {
|
|
|
218
231
|
"opc-request-id": createBackendRequest.opcRequestId,
|
|
219
232
|
"opc-retry-token": createBackendRequest.opcRetryToken
|
|
220
233
|
};
|
|
221
|
-
const
|
|
234
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
235
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBackendRequest.retryConfiguration, specRetryConfiguration);
|
|
222
236
|
if (this.logger)
|
|
223
237
|
retrier.logger = this.logger;
|
|
224
238
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -257,10 +271,11 @@ class LoadBalancerClient {
|
|
|
257
271
|
}
|
|
258
272
|
/**
|
|
259
273
|
* Adds a backend set to a load balancer.
|
|
274
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
260
275
|
* @param CreateBackendSetRequest
|
|
261
276
|
* @return CreateBackendSetResponse
|
|
262
277
|
* @throws OciError when an error occurs
|
|
263
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
278
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
|
|
264
279
|
*/
|
|
265
280
|
createBackendSet(createBackendSetRequest) {
|
|
266
281
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -275,7 +290,8 @@ class LoadBalancerClient {
|
|
|
275
290
|
"opc-request-id": createBackendSetRequest.opcRequestId,
|
|
276
291
|
"opc-retry-token": createBackendSetRequest.opcRetryToken
|
|
277
292
|
};
|
|
278
|
-
const
|
|
293
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
294
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBackendSetRequest.retryConfiguration, specRetryConfiguration);
|
|
279
295
|
if (this.logger)
|
|
280
296
|
retrier.logger = this.logger;
|
|
281
297
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -314,10 +330,11 @@ class LoadBalancerClient {
|
|
|
314
330
|
}
|
|
315
331
|
/**
|
|
316
332
|
* Creates an asynchronous request to add an SSL certificate bundle.
|
|
333
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
317
334
|
* @param CreateCertificateRequest
|
|
318
335
|
* @return CreateCertificateResponse
|
|
319
336
|
* @throws OciError when an error occurs
|
|
320
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
337
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
|
|
321
338
|
*/
|
|
322
339
|
createCertificate(createCertificateRequest) {
|
|
323
340
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -332,7 +349,8 @@ class LoadBalancerClient {
|
|
|
332
349
|
"opc-request-id": createCertificateRequest.opcRequestId,
|
|
333
350
|
"opc-retry-token": createCertificateRequest.opcRetryToken
|
|
334
351
|
};
|
|
335
|
-
const
|
|
352
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
353
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createCertificateRequest.retryConfiguration, specRetryConfiguration);
|
|
336
354
|
if (this.logger)
|
|
337
355
|
retrier.logger = this.logger;
|
|
338
356
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -373,10 +391,11 @@ class LoadBalancerClient {
|
|
|
373
391
|
* Adds a hostname resource to the specified load balancer. For more information, see
|
|
374
392
|
* [Managing Request Routing](https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrequest.htm).
|
|
375
393
|
*
|
|
394
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
376
395
|
* @param CreateHostnameRequest
|
|
377
396
|
* @return CreateHostnameResponse
|
|
378
397
|
* @throws OciError when an error occurs
|
|
379
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
398
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
|
|
380
399
|
*/
|
|
381
400
|
createHostname(createHostnameRequest) {
|
|
382
401
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -391,7 +410,8 @@ class LoadBalancerClient {
|
|
|
391
410
|
"opc-request-id": createHostnameRequest.opcRequestId,
|
|
392
411
|
"opc-retry-token": createHostnameRequest.opcRetryToken
|
|
393
412
|
};
|
|
394
|
-
const
|
|
413
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
414
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createHostnameRequest.retryConfiguration, specRetryConfiguration);
|
|
395
415
|
if (this.logger)
|
|
396
416
|
retrier.logger = this.logger;
|
|
397
417
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -430,10 +450,11 @@ class LoadBalancerClient {
|
|
|
430
450
|
}
|
|
431
451
|
/**
|
|
432
452
|
* Adds a listener to a load balancer.
|
|
453
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
433
454
|
* @param CreateListenerRequest
|
|
434
455
|
* @return CreateListenerResponse
|
|
435
456
|
* @throws OciError when an error occurs
|
|
436
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
457
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
|
|
437
458
|
*/
|
|
438
459
|
createListener(createListenerRequest) {
|
|
439
460
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -448,7 +469,8 @@ class LoadBalancerClient {
|
|
|
448
469
|
"opc-request-id": createListenerRequest.opcRequestId,
|
|
449
470
|
"opc-retry-token": createListenerRequest.opcRetryToken
|
|
450
471
|
};
|
|
451
|
-
const
|
|
472
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
473
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createListenerRequest.retryConfiguration, specRetryConfiguration);
|
|
452
474
|
if (this.logger)
|
|
453
475
|
retrier.logger = this.logger;
|
|
454
476
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -514,10 +536,11 @@ class LoadBalancerClient {
|
|
|
514
536
|
When you create a load balancer, the system assigns an IP address.
|
|
515
537
|
* To get the IP address, use the {@link #getLoadBalancer(GetLoadBalancerRequest) getLoadBalancer} operation.
|
|
516
538
|
*
|
|
539
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
517
540
|
* @param CreateLoadBalancerRequest
|
|
518
541
|
* @return CreateLoadBalancerResponse
|
|
519
542
|
* @throws OciError when an error occurs
|
|
520
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
543
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
|
|
521
544
|
*/
|
|
522
545
|
createLoadBalancer(createLoadBalancerRequest) {
|
|
523
546
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -530,7 +553,8 @@ class LoadBalancerClient {
|
|
|
530
553
|
"opc-request-id": createLoadBalancerRequest.opcRequestId,
|
|
531
554
|
"opc-retry-token": createLoadBalancerRequest.opcRetryToken
|
|
532
555
|
};
|
|
533
|
-
const
|
|
556
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
557
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
|
|
534
558
|
if (this.logger)
|
|
535
559
|
retrier.logger = this.logger;
|
|
536
560
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -571,10 +595,11 @@ class LoadBalancerClient {
|
|
|
571
595
|
* Adds a path route set to a load balancer. For more information, see
|
|
572
596
|
* [Managing Request Routing](https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrequest.htm).
|
|
573
597
|
*
|
|
598
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
574
599
|
* @param CreatePathRouteSetRequest
|
|
575
600
|
* @return CreatePathRouteSetResponse
|
|
576
601
|
* @throws OciError when an error occurs
|
|
577
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
602
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
|
|
578
603
|
*/
|
|
579
604
|
createPathRouteSet(createPathRouteSetRequest) {
|
|
580
605
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -589,7 +614,8 @@ class LoadBalancerClient {
|
|
|
589
614
|
"opc-request-id": createPathRouteSetRequest.opcRequestId,
|
|
590
615
|
"opc-retry-token": createPathRouteSetRequest.opcRetryToken
|
|
591
616
|
};
|
|
592
|
-
const
|
|
617
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
618
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPathRouteSetRequest.retryConfiguration, specRetryConfiguration);
|
|
593
619
|
if (this.logger)
|
|
594
620
|
retrier.logger = this.logger;
|
|
595
621
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -630,10 +656,11 @@ class LoadBalancerClient {
|
|
|
630
656
|
* Adds a routing policy to a load balancer. For more information, see
|
|
631
657
|
* [Managing Request Routing](https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrequest.htm).
|
|
632
658
|
*
|
|
659
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
633
660
|
* @param CreateRoutingPolicyRequest
|
|
634
661
|
* @return CreateRoutingPolicyResponse
|
|
635
662
|
* @throws OciError when an error occurs
|
|
636
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
663
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
|
|
637
664
|
*/
|
|
638
665
|
createRoutingPolicy(createRoutingPolicyRequest) {
|
|
639
666
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -648,7 +675,8 @@ class LoadBalancerClient {
|
|
|
648
675
|
"opc-request-id": createRoutingPolicyRequest.opcRequestId,
|
|
649
676
|
"opc-retry-token": createRoutingPolicyRequest.opcRetryToken
|
|
650
677
|
};
|
|
651
|
-
const
|
|
678
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
679
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
652
680
|
if (this.logger)
|
|
653
681
|
retrier.logger = this.logger;
|
|
654
682
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -689,10 +717,11 @@ class LoadBalancerClient {
|
|
|
689
717
|
* Creates a new rule set associated with the specified load balancer. For more information, see
|
|
690
718
|
* [Managing Rule Sets](https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrulesets.htm).
|
|
691
719
|
*
|
|
720
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
692
721
|
* @param CreateRuleSetRequest
|
|
693
722
|
* @return CreateRuleSetResponse
|
|
694
723
|
* @throws OciError when an error occurs
|
|
695
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
724
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
|
|
696
725
|
*/
|
|
697
726
|
createRuleSet(createRuleSetRequest) {
|
|
698
727
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -706,7 +735,8 @@ class LoadBalancerClient {
|
|
|
706
735
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
707
736
|
"opc-request-id": createRuleSetRequest.opcRequestId
|
|
708
737
|
};
|
|
709
|
-
const
|
|
738
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
739
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRuleSetRequest.retryConfiguration, specRetryConfiguration);
|
|
710
740
|
if (this.logger)
|
|
711
741
|
retrier.logger = this.logger;
|
|
712
742
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -745,10 +775,11 @@ class LoadBalancerClient {
|
|
|
745
775
|
}
|
|
746
776
|
/**
|
|
747
777
|
* Creates a custom SSL cipher suite.
|
|
778
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
748
779
|
* @param CreateSSLCipherSuiteRequest
|
|
749
780
|
* @return CreateSSLCipherSuiteResponse
|
|
750
781
|
* @throws OciError when an error occurs
|
|
751
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
782
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
|
|
752
783
|
*/
|
|
753
784
|
createSSLCipherSuite(createSSLCipherSuiteRequest) {
|
|
754
785
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -763,7 +794,8 @@ class LoadBalancerClient {
|
|
|
763
794
|
"opc-request-id": createSSLCipherSuiteRequest.opcRequestId,
|
|
764
795
|
"opc-retry-token": createSSLCipherSuiteRequest.opcRetryToken
|
|
765
796
|
};
|
|
766
|
-
const
|
|
797
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
798
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
|
|
767
799
|
if (this.logger)
|
|
768
800
|
retrier.logger = this.logger;
|
|
769
801
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -802,10 +834,11 @@ class LoadBalancerClient {
|
|
|
802
834
|
}
|
|
803
835
|
/**
|
|
804
836
|
* Removes a backend server from a given load balancer and backend set.
|
|
837
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
805
838
|
* @param DeleteBackendRequest
|
|
806
839
|
* @return DeleteBackendResponse
|
|
807
840
|
* @throws OciError when an error occurs
|
|
808
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
841
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
|
|
809
842
|
*/
|
|
810
843
|
deleteBackend(deleteBackendRequest) {
|
|
811
844
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -821,7 +854,8 @@ class LoadBalancerClient {
|
|
|
821
854
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
822
855
|
"opc-request-id": deleteBackendRequest.opcRequestId
|
|
823
856
|
};
|
|
824
|
-
const
|
|
857
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
858
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBackendRequest.retryConfiguration, specRetryConfiguration);
|
|
825
859
|
if (this.logger)
|
|
826
860
|
retrier.logger = this.logger;
|
|
827
861
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -862,10 +896,11 @@ class LoadBalancerClient {
|
|
|
862
896
|
* <p>
|
|
863
897
|
Before you can delete a backend set, you must remove it from any active listeners.
|
|
864
898
|
*
|
|
899
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
865
900
|
* @param DeleteBackendSetRequest
|
|
866
901
|
* @return DeleteBackendSetResponse
|
|
867
902
|
* @throws OciError when an error occurs
|
|
868
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
903
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
|
|
869
904
|
*/
|
|
870
905
|
deleteBackendSet(deleteBackendSetRequest) {
|
|
871
906
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -880,7 +915,8 @@ class LoadBalancerClient {
|
|
|
880
915
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
881
916
|
"opc-request-id": deleteBackendSetRequest.opcRequestId
|
|
882
917
|
};
|
|
883
|
-
const
|
|
918
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
919
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBackendSetRequest.retryConfiguration, specRetryConfiguration);
|
|
884
920
|
if (this.logger)
|
|
885
921
|
retrier.logger = this.logger;
|
|
886
922
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -918,10 +954,11 @@ class LoadBalancerClient {
|
|
|
918
954
|
}
|
|
919
955
|
/**
|
|
920
956
|
* Deletes an SSL certificate bundle from a load balancer.
|
|
957
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
921
958
|
* @param DeleteCertificateRequest
|
|
922
959
|
* @return DeleteCertificateResponse
|
|
923
960
|
* @throws OciError when an error occurs
|
|
924
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
961
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
|
|
925
962
|
*/
|
|
926
963
|
deleteCertificate(deleteCertificateRequest) {
|
|
927
964
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -936,7 +973,8 @@ class LoadBalancerClient {
|
|
|
936
973
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
937
974
|
"opc-request-id": deleteCertificateRequest.opcRequestId
|
|
938
975
|
};
|
|
939
|
-
const
|
|
976
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
977
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteCertificateRequest.retryConfiguration, specRetryConfiguration);
|
|
940
978
|
if (this.logger)
|
|
941
979
|
retrier.logger = this.logger;
|
|
942
980
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -975,10 +1013,11 @@ class LoadBalancerClient {
|
|
|
975
1013
|
/**
|
|
976
1014
|
* Deletes a hostname resource from the specified load balancer.
|
|
977
1015
|
*
|
|
1016
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
978
1017
|
* @param DeleteHostnameRequest
|
|
979
1018
|
* @return DeleteHostnameResponse
|
|
980
1019
|
* @throws OciError when an error occurs
|
|
981
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1020
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
|
|
982
1021
|
*/
|
|
983
1022
|
deleteHostname(deleteHostnameRequest) {
|
|
984
1023
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -993,7 +1032,8 @@ class LoadBalancerClient {
|
|
|
993
1032
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
994
1033
|
"opc-request-id": deleteHostnameRequest.opcRequestId
|
|
995
1034
|
};
|
|
996
|
-
const
|
|
1035
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1036
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteHostnameRequest.retryConfiguration, specRetryConfiguration);
|
|
997
1037
|
if (this.logger)
|
|
998
1038
|
retrier.logger = this.logger;
|
|
999
1039
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1031,10 +1071,11 @@ class LoadBalancerClient {
|
|
|
1031
1071
|
}
|
|
1032
1072
|
/**
|
|
1033
1073
|
* Deletes a listener from a load balancer.
|
|
1074
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1034
1075
|
* @param DeleteListenerRequest
|
|
1035
1076
|
* @return DeleteListenerResponse
|
|
1036
1077
|
* @throws OciError when an error occurs
|
|
1037
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1078
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
|
|
1038
1079
|
*/
|
|
1039
1080
|
deleteListener(deleteListenerRequest) {
|
|
1040
1081
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1049,7 +1090,8 @@ class LoadBalancerClient {
|
|
|
1049
1090
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1050
1091
|
"opc-request-id": deleteListenerRequest.opcRequestId
|
|
1051
1092
|
};
|
|
1052
|
-
const
|
|
1093
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1094
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteListenerRequest.retryConfiguration, specRetryConfiguration);
|
|
1053
1095
|
if (this.logger)
|
|
1054
1096
|
retrier.logger = this.logger;
|
|
1055
1097
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1087,10 +1129,11 @@ class LoadBalancerClient {
|
|
|
1087
1129
|
}
|
|
1088
1130
|
/**
|
|
1089
1131
|
* Stops a load balancer and removes it from service.
|
|
1132
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1090
1133
|
* @param DeleteLoadBalancerRequest
|
|
1091
1134
|
* @return DeleteLoadBalancerResponse
|
|
1092
1135
|
* @throws OciError when an error occurs
|
|
1093
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1136
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
|
|
1094
1137
|
*/
|
|
1095
1138
|
deleteLoadBalancer(deleteLoadBalancerRequest) {
|
|
1096
1139
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1104,7 +1147,8 @@ class LoadBalancerClient {
|
|
|
1104
1147
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1105
1148
|
"opc-request-id": deleteLoadBalancerRequest.opcRequestId
|
|
1106
1149
|
};
|
|
1107
|
-
const
|
|
1150
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1151
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
|
|
1108
1152
|
if (this.logger)
|
|
1109
1153
|
retrier.logger = this.logger;
|
|
1110
1154
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1146,10 +1190,11 @@ class LoadBalancerClient {
|
|
|
1146
1190
|
To delete a path route rule from a path route set, use the
|
|
1147
1191
|
* {@link #updatePathRouteSet(UpdatePathRouteSetRequest) updatePathRouteSet} operation.
|
|
1148
1192
|
*
|
|
1193
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1149
1194
|
* @param DeletePathRouteSetRequest
|
|
1150
1195
|
* @return DeletePathRouteSetResponse
|
|
1151
1196
|
* @throws OciError when an error occurs
|
|
1152
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1197
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
|
|
1153
1198
|
*/
|
|
1154
1199
|
deletePathRouteSet(deletePathRouteSetRequest) {
|
|
1155
1200
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1164,7 +1209,8 @@ class LoadBalancerClient {
|
|
|
1164
1209
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1165
1210
|
"opc-request-id": deletePathRouteSetRequest.opcRequestId
|
|
1166
1211
|
};
|
|
1167
|
-
const
|
|
1212
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1213
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePathRouteSetRequest.retryConfiguration, specRetryConfiguration);
|
|
1168
1214
|
if (this.logger)
|
|
1169
1215
|
retrier.logger = this.logger;
|
|
1170
1216
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1206,10 +1252,11 @@ class LoadBalancerClient {
|
|
|
1206
1252
|
To delete a routing rule from a routing policy, use the
|
|
1207
1253
|
* {@link #updateRoutingPolicy(UpdateRoutingPolicyRequest) updateRoutingPolicy} operation.
|
|
1208
1254
|
*
|
|
1255
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1209
1256
|
* @param DeleteRoutingPolicyRequest
|
|
1210
1257
|
* @return DeleteRoutingPolicyResponse
|
|
1211
1258
|
* @throws OciError when an error occurs
|
|
1212
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
|
|
1213
1260
|
*/
|
|
1214
1261
|
deleteRoutingPolicy(deleteRoutingPolicyRequest) {
|
|
1215
1262
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1224,7 +1271,8 @@ class LoadBalancerClient {
|
|
|
1224
1271
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1225
1272
|
"opc-request-id": deleteRoutingPolicyRequest.opcRequestId
|
|
1226
1273
|
};
|
|
1227
|
-
const
|
|
1274
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1275
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
1228
1276
|
if (this.logger)
|
|
1229
1277
|
retrier.logger = this.logger;
|
|
1230
1278
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1266,10 +1314,11 @@ class LoadBalancerClient {
|
|
|
1266
1314
|
To delete a rule from a rule set, use the
|
|
1267
1315
|
* {@link #updateRuleSet(UpdateRuleSetRequest) updateRuleSet} operation.
|
|
1268
1316
|
*
|
|
1317
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1269
1318
|
* @param DeleteRuleSetRequest
|
|
1270
1319
|
* @return DeleteRuleSetResponse
|
|
1271
1320
|
* @throws OciError when an error occurs
|
|
1272
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
|
|
1273
1322
|
*/
|
|
1274
1323
|
deleteRuleSet(deleteRuleSetRequest) {
|
|
1275
1324
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1284,7 +1333,8 @@ class LoadBalancerClient {
|
|
|
1284
1333
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1285
1334
|
"opc-request-id": deleteRuleSetRequest.opcRequestId
|
|
1286
1335
|
};
|
|
1287
|
-
const
|
|
1336
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1337
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRuleSetRequest.retryConfiguration, specRetryConfiguration);
|
|
1288
1338
|
if (this.logger)
|
|
1289
1339
|
retrier.logger = this.logger;
|
|
1290
1340
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1322,10 +1372,11 @@ class LoadBalancerClient {
|
|
|
1322
1372
|
}
|
|
1323
1373
|
/**
|
|
1324
1374
|
* Deletes an SSL cipher suite from a load balancer.
|
|
1375
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1325
1376
|
* @param DeleteSSLCipherSuiteRequest
|
|
1326
1377
|
* @return DeleteSSLCipherSuiteResponse
|
|
1327
1378
|
* @throws OciError when an error occurs
|
|
1328
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1379
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
|
|
1329
1380
|
*/
|
|
1330
1381
|
deleteSSLCipherSuite(deleteSSLCipherSuiteRequest) {
|
|
1331
1382
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1340,7 +1391,8 @@ class LoadBalancerClient {
|
|
|
1340
1391
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1341
1392
|
"opc-request-id": deleteSSLCipherSuiteRequest.opcRequestId
|
|
1342
1393
|
};
|
|
1343
|
-
const
|
|
1394
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1395
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
|
|
1344
1396
|
if (this.logger)
|
|
1345
1397
|
retrier.logger = this.logger;
|
|
1346
1398
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1378,10 +1430,11 @@ class LoadBalancerClient {
|
|
|
1378
1430
|
}
|
|
1379
1431
|
/**
|
|
1380
1432
|
* Gets the specified backend server's configuration information.
|
|
1433
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1381
1434
|
* @param GetBackendRequest
|
|
1382
1435
|
* @return GetBackendResponse
|
|
1383
1436
|
* @throws OciError when an error occurs
|
|
1384
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1437
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
|
|
1385
1438
|
*/
|
|
1386
1439
|
getBackend(getBackendRequest) {
|
|
1387
1440
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1397,7 +1450,8 @@ class LoadBalancerClient {
|
|
|
1397
1450
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1398
1451
|
"opc-request-id": getBackendRequest.opcRequestId
|
|
1399
1452
|
};
|
|
1400
|
-
const
|
|
1453
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1454
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendRequest.retryConfiguration, specRetryConfiguration);
|
|
1401
1455
|
if (this.logger)
|
|
1402
1456
|
retrier.logger = this.logger;
|
|
1403
1457
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1434,10 +1488,11 @@ class LoadBalancerClient {
|
|
|
1434
1488
|
}
|
|
1435
1489
|
/**
|
|
1436
1490
|
* Gets the current health status of the specified backend server.
|
|
1491
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1437
1492
|
* @param GetBackendHealthRequest
|
|
1438
1493
|
* @return GetBackendHealthResponse
|
|
1439
1494
|
* @throws OciError when an error occurs
|
|
1440
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1495
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
|
|
1441
1496
|
*/
|
|
1442
1497
|
getBackendHealth(getBackendHealthRequest) {
|
|
1443
1498
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1453,7 +1508,8 @@ class LoadBalancerClient {
|
|
|
1453
1508
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1454
1509
|
"opc-request-id": getBackendHealthRequest.opcRequestId
|
|
1455
1510
|
};
|
|
1456
|
-
const
|
|
1511
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1512
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendHealthRequest.retryConfiguration, specRetryConfiguration);
|
|
1457
1513
|
if (this.logger)
|
|
1458
1514
|
retrier.logger = this.logger;
|
|
1459
1515
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1490,10 +1546,11 @@ class LoadBalancerClient {
|
|
|
1490
1546
|
}
|
|
1491
1547
|
/**
|
|
1492
1548
|
* Gets the specified backend set's configuration information.
|
|
1549
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1493
1550
|
* @param GetBackendSetRequest
|
|
1494
1551
|
* @return GetBackendSetResponse
|
|
1495
1552
|
* @throws OciError when an error occurs
|
|
1496
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1553
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
|
|
1497
1554
|
*/
|
|
1498
1555
|
getBackendSet(getBackendSetRequest) {
|
|
1499
1556
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1508,7 +1565,8 @@ class LoadBalancerClient {
|
|
|
1508
1565
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1509
1566
|
"opc-request-id": getBackendSetRequest.opcRequestId
|
|
1510
1567
|
};
|
|
1511
|
-
const
|
|
1568
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1569
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendSetRequest.retryConfiguration, specRetryConfiguration);
|
|
1512
1570
|
if (this.logger)
|
|
1513
1571
|
retrier.logger = this.logger;
|
|
1514
1572
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1545,10 +1603,11 @@ class LoadBalancerClient {
|
|
|
1545
1603
|
}
|
|
1546
1604
|
/**
|
|
1547
1605
|
* Gets the health status for the specified backend set.
|
|
1606
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1548
1607
|
* @param GetBackendSetHealthRequest
|
|
1549
1608
|
* @return GetBackendSetHealthResponse
|
|
1550
1609
|
* @throws OciError when an error occurs
|
|
1551
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1610
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
|
|
1552
1611
|
*/
|
|
1553
1612
|
getBackendSetHealth(getBackendSetHealthRequest) {
|
|
1554
1613
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1563,7 +1622,8 @@ class LoadBalancerClient {
|
|
|
1563
1622
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1564
1623
|
"opc-request-id": getBackendSetHealthRequest.opcRequestId
|
|
1565
1624
|
};
|
|
1566
|
-
const
|
|
1625
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1626
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendSetHealthRequest.retryConfiguration, specRetryConfiguration);
|
|
1567
1627
|
if (this.logger)
|
|
1568
1628
|
retrier.logger = this.logger;
|
|
1569
1629
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1600,10 +1660,11 @@ class LoadBalancerClient {
|
|
|
1600
1660
|
}
|
|
1601
1661
|
/**
|
|
1602
1662
|
* Gets the health check policy information for a given load balancer and backend set.
|
|
1663
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1603
1664
|
* @param GetHealthCheckerRequest
|
|
1604
1665
|
* @return GetHealthCheckerResponse
|
|
1605
1666
|
* @throws OciError when an error occurs
|
|
1606
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1667
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
|
|
1607
1668
|
*/
|
|
1608
1669
|
getHealthChecker(getHealthCheckerRequest) {
|
|
1609
1670
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1618,7 +1679,8 @@ class LoadBalancerClient {
|
|
|
1618
1679
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1619
1680
|
"opc-request-id": getHealthCheckerRequest.opcRequestId
|
|
1620
1681
|
};
|
|
1621
|
-
const
|
|
1682
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1683
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getHealthCheckerRequest.retryConfiguration, specRetryConfiguration);
|
|
1622
1684
|
if (this.logger)
|
|
1623
1685
|
retrier.logger = this.logger;
|
|
1624
1686
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1655,10 +1717,11 @@ class LoadBalancerClient {
|
|
|
1655
1717
|
}
|
|
1656
1718
|
/**
|
|
1657
1719
|
* Gets the specified hostname resource's configuration information.
|
|
1720
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1658
1721
|
* @param GetHostnameRequest
|
|
1659
1722
|
* @return GetHostnameResponse
|
|
1660
1723
|
* @throws OciError when an error occurs
|
|
1661
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1724
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
|
|
1662
1725
|
*/
|
|
1663
1726
|
getHostname(getHostnameRequest) {
|
|
1664
1727
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1673,7 +1736,8 @@ class LoadBalancerClient {
|
|
|
1673
1736
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1674
1737
|
"opc-request-id": getHostnameRequest.opcRequestId
|
|
1675
1738
|
};
|
|
1676
|
-
const
|
|
1739
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1740
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getHostnameRequest.retryConfiguration, specRetryConfiguration);
|
|
1677
1741
|
if (this.logger)
|
|
1678
1742
|
retrier.logger = this.logger;
|
|
1679
1743
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1710,10 +1774,11 @@ class LoadBalancerClient {
|
|
|
1710
1774
|
}
|
|
1711
1775
|
/**
|
|
1712
1776
|
* Gets the specified load balancer's configuration information.
|
|
1777
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1713
1778
|
* @param GetLoadBalancerRequest
|
|
1714
1779
|
* @return GetLoadBalancerResponse
|
|
1715
1780
|
* @throws OciError when an error occurs
|
|
1716
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1781
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
|
|
1717
1782
|
*/
|
|
1718
1783
|
getLoadBalancer(getLoadBalancerRequest) {
|
|
1719
1784
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1727,7 +1792,8 @@ class LoadBalancerClient {
|
|
|
1727
1792
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1728
1793
|
"opc-request-id": getLoadBalancerRequest.opcRequestId
|
|
1729
1794
|
};
|
|
1730
|
-
const
|
|
1795
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1796
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
|
|
1731
1797
|
if (this.logger)
|
|
1732
1798
|
retrier.logger = this.logger;
|
|
1733
1799
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1764,10 +1830,11 @@ class LoadBalancerClient {
|
|
|
1764
1830
|
}
|
|
1765
1831
|
/**
|
|
1766
1832
|
* Gets the health status for the specified load balancer.
|
|
1833
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1767
1834
|
* @param GetLoadBalancerHealthRequest
|
|
1768
1835
|
* @return GetLoadBalancerHealthResponse
|
|
1769
1836
|
* @throws OciError when an error occurs
|
|
1770
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1837
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
|
|
1771
1838
|
*/
|
|
1772
1839
|
getLoadBalancerHealth(getLoadBalancerHealthRequest) {
|
|
1773
1840
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1781,7 +1848,8 @@ class LoadBalancerClient {
|
|
|
1781
1848
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1782
1849
|
"opc-request-id": getLoadBalancerHealthRequest.opcRequestId
|
|
1783
1850
|
};
|
|
1784
|
-
const
|
|
1851
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1852
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getLoadBalancerHealthRequest.retryConfiguration, specRetryConfiguration);
|
|
1785
1853
|
if (this.logger)
|
|
1786
1854
|
retrier.logger = this.logger;
|
|
1787
1855
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1818,10 +1886,11 @@ class LoadBalancerClient {
|
|
|
1818
1886
|
}
|
|
1819
1887
|
/**
|
|
1820
1888
|
* Gets the specified path route set's configuration information.
|
|
1889
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1821
1890
|
* @param GetPathRouteSetRequest
|
|
1822
1891
|
* @return GetPathRouteSetResponse
|
|
1823
1892
|
* @throws OciError when an error occurs
|
|
1824
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1893
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
|
|
1825
1894
|
*/
|
|
1826
1895
|
getPathRouteSet(getPathRouteSetRequest) {
|
|
1827
1896
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1836,7 +1905,8 @@ class LoadBalancerClient {
|
|
|
1836
1905
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1837
1906
|
"opc-request-id": getPathRouteSetRequest.opcRequestId
|
|
1838
1907
|
};
|
|
1839
|
-
const
|
|
1908
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1909
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPathRouteSetRequest.retryConfiguration, specRetryConfiguration);
|
|
1840
1910
|
if (this.logger)
|
|
1841
1911
|
retrier.logger = this.logger;
|
|
1842
1912
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1873,10 +1943,11 @@ class LoadBalancerClient {
|
|
|
1873
1943
|
}
|
|
1874
1944
|
/**
|
|
1875
1945
|
* Gets the specified routing policy.
|
|
1946
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1876
1947
|
* @param GetRoutingPolicyRequest
|
|
1877
1948
|
* @return GetRoutingPolicyResponse
|
|
1878
1949
|
* @throws OciError when an error occurs
|
|
1879
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1950
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
|
|
1880
1951
|
*/
|
|
1881
1952
|
getRoutingPolicy(getRoutingPolicyRequest) {
|
|
1882
1953
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1891,7 +1962,8 @@ class LoadBalancerClient {
|
|
|
1891
1962
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1892
1963
|
"opc-request-id": getRoutingPolicyRequest.opcRequestId
|
|
1893
1964
|
};
|
|
1894
|
-
const
|
|
1965
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1966
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
1895
1967
|
if (this.logger)
|
|
1896
1968
|
retrier.logger = this.logger;
|
|
1897
1969
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1928,10 +2000,11 @@ class LoadBalancerClient {
|
|
|
1928
2000
|
}
|
|
1929
2001
|
/**
|
|
1930
2002
|
* Gets the specified set of rules.
|
|
2003
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1931
2004
|
* @param GetRuleSetRequest
|
|
1932
2005
|
* @return GetRuleSetResponse
|
|
1933
2006
|
* @throws OciError when an error occurs
|
|
1934
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2007
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
|
|
1935
2008
|
*/
|
|
1936
2009
|
getRuleSet(getRuleSetRequest) {
|
|
1937
2010
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1946,7 +2019,8 @@ class LoadBalancerClient {
|
|
|
1946
2019
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1947
2020
|
"opc-request-id": getRuleSetRequest.opcRequestId
|
|
1948
2021
|
};
|
|
1949
|
-
const
|
|
2022
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2023
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRuleSetRequest.retryConfiguration, specRetryConfiguration);
|
|
1950
2024
|
if (this.logger)
|
|
1951
2025
|
retrier.logger = this.logger;
|
|
1952
2026
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -1983,10 +2057,11 @@ class LoadBalancerClient {
|
|
|
1983
2057
|
}
|
|
1984
2058
|
/**
|
|
1985
2059
|
* Gets the specified SSL cipher suite's configuration information.
|
|
2060
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1986
2061
|
* @param GetSSLCipherSuiteRequest
|
|
1987
2062
|
* @return GetSSLCipherSuiteResponse
|
|
1988
2063
|
* @throws OciError when an error occurs
|
|
1989
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2064
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
|
|
1990
2065
|
*/
|
|
1991
2066
|
getSSLCipherSuite(getSSLCipherSuiteRequest) {
|
|
1992
2067
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2001,7 +2076,8 @@ class LoadBalancerClient {
|
|
|
2001
2076
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2002
2077
|
"opc-request-id": getSSLCipherSuiteRequest.opcRequestId
|
|
2003
2078
|
};
|
|
2004
|
-
const
|
|
2079
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2080
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
|
|
2005
2081
|
if (this.logger)
|
|
2006
2082
|
retrier.logger = this.logger;
|
|
2007
2083
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2038,10 +2114,11 @@ class LoadBalancerClient {
|
|
|
2038
2114
|
}
|
|
2039
2115
|
/**
|
|
2040
2116
|
* Gets the details of a work request.
|
|
2117
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2041
2118
|
* @param GetWorkRequestRequest
|
|
2042
2119
|
* @return GetWorkRequestResponse
|
|
2043
2120
|
* @throws OciError when an error occurs
|
|
2044
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2121
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
2045
2122
|
*/
|
|
2046
2123
|
getWorkRequest(getWorkRequestRequest) {
|
|
2047
2124
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2055,7 +2132,8 @@ class LoadBalancerClient {
|
|
|
2055
2132
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2056
2133
|
"opc-request-id": getWorkRequestRequest.opcRequestId
|
|
2057
2134
|
};
|
|
2058
|
-
const
|
|
2135
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2136
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
|
|
2059
2137
|
if (this.logger)
|
|
2060
2138
|
retrier.logger = this.logger;
|
|
2061
2139
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2092,10 +2170,11 @@ class LoadBalancerClient {
|
|
|
2092
2170
|
}
|
|
2093
2171
|
/**
|
|
2094
2172
|
* Lists all backend sets associated with a given load balancer.
|
|
2173
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2095
2174
|
* @param ListBackendSetsRequest
|
|
2096
2175
|
* @return ListBackendSetsResponse
|
|
2097
2176
|
* @throws OciError when an error occurs
|
|
2098
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2177
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
|
|
2099
2178
|
*/
|
|
2100
2179
|
listBackendSets(listBackendSetsRequest) {
|
|
2101
2180
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2109,7 +2188,8 @@ class LoadBalancerClient {
|
|
|
2109
2188
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2110
2189
|
"opc-request-id": listBackendSetsRequest.opcRequestId
|
|
2111
2190
|
};
|
|
2112
|
-
const
|
|
2191
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2192
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBackendSetsRequest.retryConfiguration, specRetryConfiguration);
|
|
2113
2193
|
if (this.logger)
|
|
2114
2194
|
retrier.logger = this.logger;
|
|
2115
2195
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2146,10 +2226,11 @@ class LoadBalancerClient {
|
|
|
2146
2226
|
}
|
|
2147
2227
|
/**
|
|
2148
2228
|
* Lists the backend servers for a given load balancer and backend set.
|
|
2229
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2149
2230
|
* @param ListBackendsRequest
|
|
2150
2231
|
* @return ListBackendsResponse
|
|
2151
2232
|
* @throws OciError when an error occurs
|
|
2152
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2233
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
|
|
2153
2234
|
*/
|
|
2154
2235
|
listBackends(listBackendsRequest) {
|
|
2155
2236
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2164,7 +2245,8 @@ class LoadBalancerClient {
|
|
|
2164
2245
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2165
2246
|
"opc-request-id": listBackendsRequest.opcRequestId
|
|
2166
2247
|
};
|
|
2167
|
-
const
|
|
2248
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2249
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBackendsRequest.retryConfiguration, specRetryConfiguration);
|
|
2168
2250
|
if (this.logger)
|
|
2169
2251
|
retrier.logger = this.logger;
|
|
2170
2252
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2201,10 +2283,11 @@ class LoadBalancerClient {
|
|
|
2201
2283
|
}
|
|
2202
2284
|
/**
|
|
2203
2285
|
* Lists all SSL certificates bundles associated with a given load balancer.
|
|
2286
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2204
2287
|
* @param ListCertificatesRequest
|
|
2205
2288
|
* @return ListCertificatesResponse
|
|
2206
2289
|
* @throws OciError when an error occurs
|
|
2207
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2290
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
|
|
2208
2291
|
*/
|
|
2209
2292
|
listCertificates(listCertificatesRequest) {
|
|
2210
2293
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2218,7 +2301,8 @@ class LoadBalancerClient {
|
|
|
2218
2301
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2219
2302
|
"opc-request-id": listCertificatesRequest.opcRequestId
|
|
2220
2303
|
};
|
|
2221
|
-
const
|
|
2304
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2305
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listCertificatesRequest.retryConfiguration, specRetryConfiguration);
|
|
2222
2306
|
if (this.logger)
|
|
2223
2307
|
retrier.logger = this.logger;
|
|
2224
2308
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2255,10 +2339,11 @@ class LoadBalancerClient {
|
|
|
2255
2339
|
}
|
|
2256
2340
|
/**
|
|
2257
2341
|
* Lists all hostname resources associated with the specified load balancer.
|
|
2342
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2258
2343
|
* @param ListHostnamesRequest
|
|
2259
2344
|
* @return ListHostnamesResponse
|
|
2260
2345
|
* @throws OciError when an error occurs
|
|
2261
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2346
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
|
|
2262
2347
|
*/
|
|
2263
2348
|
listHostnames(listHostnamesRequest) {
|
|
2264
2349
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2272,7 +2357,8 @@ class LoadBalancerClient {
|
|
|
2272
2357
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2273
2358
|
"opc-request-id": listHostnamesRequest.opcRequestId
|
|
2274
2359
|
};
|
|
2275
|
-
const
|
|
2360
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2361
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listHostnamesRequest.retryConfiguration, specRetryConfiguration);
|
|
2276
2362
|
if (this.logger)
|
|
2277
2363
|
retrier.logger = this.logger;
|
|
2278
2364
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2316,10 +2402,11 @@ class LoadBalancerClient {
|
|
|
2316
2402
|
* * Request header rules
|
|
2317
2403
|
* * Response header rules
|
|
2318
2404
|
*
|
|
2405
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2319
2406
|
* @param ListListenerRulesRequest
|
|
2320
2407
|
* @return ListListenerRulesResponse
|
|
2321
2408
|
* @throws OciError when an error occurs
|
|
2322
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2409
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
|
|
2323
2410
|
*/
|
|
2324
2411
|
listListenerRules(listListenerRulesRequest) {
|
|
2325
2412
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2334,7 +2421,8 @@ class LoadBalancerClient {
|
|
|
2334
2421
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2335
2422
|
"opc-request-id": listListenerRulesRequest.opcRequestId
|
|
2336
2423
|
};
|
|
2337
|
-
const
|
|
2424
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2425
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listListenerRulesRequest.retryConfiguration, specRetryConfiguration);
|
|
2338
2426
|
if (this.logger)
|
|
2339
2427
|
retrier.logger = this.logger;
|
|
2340
2428
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2371,10 +2459,11 @@ class LoadBalancerClient {
|
|
|
2371
2459
|
}
|
|
2372
2460
|
/**
|
|
2373
2461
|
* Lists the summary health statuses for all load balancers in the specified compartment.
|
|
2462
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2374
2463
|
* @param ListLoadBalancerHealthsRequest
|
|
2375
2464
|
* @return ListLoadBalancerHealthsResponse
|
|
2376
2465
|
* @throws OciError when an error occurs
|
|
2377
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2466
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
|
|
2378
2467
|
*/
|
|
2379
2468
|
listLoadBalancerHealths(listLoadBalancerHealthsRequest) {
|
|
2380
2469
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2390,7 +2479,8 @@ class LoadBalancerClient {
|
|
|
2390
2479
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2391
2480
|
"opc-request-id": listLoadBalancerHealthsRequest.opcRequestId
|
|
2392
2481
|
};
|
|
2393
|
-
const
|
|
2482
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2483
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listLoadBalancerHealthsRequest.retryConfiguration, specRetryConfiguration);
|
|
2394
2484
|
if (this.logger)
|
|
2395
2485
|
retrier.logger = this.logger;
|
|
2396
2486
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2472,10 +2562,11 @@ class LoadBalancerClient {
|
|
|
2472
2562
|
}
|
|
2473
2563
|
/**
|
|
2474
2564
|
* Lists all load balancers in the specified compartment.
|
|
2565
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2475
2566
|
* @param ListLoadBalancersRequest
|
|
2476
2567
|
* @return ListLoadBalancersResponse
|
|
2477
2568
|
* @throws OciError when an error occurs
|
|
2478
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2569
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
|
|
2479
2570
|
*/
|
|
2480
2571
|
listLoadBalancers(listLoadBalancersRequest) {
|
|
2481
2572
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2496,7 +2587,8 @@ class LoadBalancerClient {
|
|
|
2496
2587
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2497
2588
|
"opc-request-id": listLoadBalancersRequest.opcRequestId
|
|
2498
2589
|
};
|
|
2499
|
-
const
|
|
2590
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2591
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listLoadBalancersRequest.retryConfiguration, specRetryConfiguration);
|
|
2500
2592
|
if (this.logger)
|
|
2501
2593
|
retrier.logger = this.logger;
|
|
2502
2594
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2578,10 +2670,11 @@ class LoadBalancerClient {
|
|
|
2578
2670
|
}
|
|
2579
2671
|
/**
|
|
2580
2672
|
* Lists all path route sets associated with the specified load balancer.
|
|
2673
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2581
2674
|
* @param ListPathRouteSetsRequest
|
|
2582
2675
|
* @return ListPathRouteSetsResponse
|
|
2583
2676
|
* @throws OciError when an error occurs
|
|
2584
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2677
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
|
|
2585
2678
|
*/
|
|
2586
2679
|
listPathRouteSets(listPathRouteSetsRequest) {
|
|
2587
2680
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2595,7 +2688,8 @@ class LoadBalancerClient {
|
|
|
2595
2688
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2596
2689
|
"opc-request-id": listPathRouteSetsRequest.opcRequestId
|
|
2597
2690
|
};
|
|
2598
|
-
const
|
|
2691
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2692
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPathRouteSetsRequest.retryConfiguration, specRetryConfiguration);
|
|
2599
2693
|
if (this.logger)
|
|
2600
2694
|
retrier.logger = this.logger;
|
|
2601
2695
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2632,10 +2726,11 @@ class LoadBalancerClient {
|
|
|
2632
2726
|
}
|
|
2633
2727
|
/**
|
|
2634
2728
|
* Lists the available load balancer policies.
|
|
2729
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2635
2730
|
* @param ListPoliciesRequest
|
|
2636
2731
|
* @return ListPoliciesResponse
|
|
2637
2732
|
* @throws OciError when an error occurs
|
|
2638
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2733
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
|
|
2639
2734
|
*/
|
|
2640
2735
|
listPolicies(listPoliciesRequest) {
|
|
2641
2736
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2651,7 +2746,8 @@ class LoadBalancerClient {
|
|
|
2651
2746
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2652
2747
|
"opc-request-id": listPoliciesRequest.opcRequestId
|
|
2653
2748
|
};
|
|
2654
|
-
const
|
|
2749
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2750
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPoliciesRequest.retryConfiguration, specRetryConfiguration);
|
|
2655
2751
|
if (this.logger)
|
|
2656
2752
|
retrier.logger = this.logger;
|
|
2657
2753
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2733,10 +2829,11 @@ class LoadBalancerClient {
|
|
|
2733
2829
|
}
|
|
2734
2830
|
/**
|
|
2735
2831
|
* Lists all supported traffic protocols.
|
|
2832
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2736
2833
|
* @param ListProtocolsRequest
|
|
2737
2834
|
* @return ListProtocolsResponse
|
|
2738
2835
|
* @throws OciError when an error occurs
|
|
2739
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2836
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
|
|
2740
2837
|
*/
|
|
2741
2838
|
listProtocols(listProtocolsRequest) {
|
|
2742
2839
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2752,7 +2849,8 @@ class LoadBalancerClient {
|
|
|
2752
2849
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2753
2850
|
"opc-request-id": listProtocolsRequest.opcRequestId
|
|
2754
2851
|
};
|
|
2755
|
-
const
|
|
2852
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2853
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listProtocolsRequest.retryConfiguration, specRetryConfiguration);
|
|
2756
2854
|
if (this.logger)
|
|
2757
2855
|
retrier.logger = this.logger;
|
|
2758
2856
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2834,10 +2932,11 @@ class LoadBalancerClient {
|
|
|
2834
2932
|
}
|
|
2835
2933
|
/**
|
|
2836
2934
|
* Lists all routing policies associated with the specified load balancer.
|
|
2935
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2837
2936
|
* @param ListRoutingPoliciesRequest
|
|
2838
2937
|
* @return ListRoutingPoliciesResponse
|
|
2839
2938
|
* @throws OciError when an error occurs
|
|
2840
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2939
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
|
|
2841
2940
|
*/
|
|
2842
2941
|
listRoutingPolicies(listRoutingPoliciesRequest) {
|
|
2843
2942
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2854,7 +2953,8 @@ class LoadBalancerClient {
|
|
|
2854
2953
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2855
2954
|
"opc-request-id": listRoutingPoliciesRequest.opcRequestId
|
|
2856
2955
|
};
|
|
2857
|
-
const
|
|
2956
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2957
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRoutingPoliciesRequest.retryConfiguration, specRetryConfiguration);
|
|
2858
2958
|
if (this.logger)
|
|
2859
2959
|
retrier.logger = this.logger;
|
|
2860
2960
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2936,10 +3036,11 @@ class LoadBalancerClient {
|
|
|
2936
3036
|
}
|
|
2937
3037
|
/**
|
|
2938
3038
|
* Lists all rule sets associated with the specified load balancer.
|
|
3039
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2939
3040
|
* @param ListRuleSetsRequest
|
|
2940
3041
|
* @return ListRuleSetsResponse
|
|
2941
3042
|
* @throws OciError when an error occurs
|
|
2942
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3043
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
|
|
2943
3044
|
*/
|
|
2944
3045
|
listRuleSets(listRuleSetsRequest) {
|
|
2945
3046
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2953,7 +3054,8 @@ class LoadBalancerClient {
|
|
|
2953
3054
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2954
3055
|
"opc-request-id": listRuleSetsRequest.opcRequestId
|
|
2955
3056
|
};
|
|
2956
|
-
const
|
|
3057
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3058
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRuleSetsRequest.retryConfiguration, specRetryConfiguration);
|
|
2957
3059
|
if (this.logger)
|
|
2958
3060
|
retrier.logger = this.logger;
|
|
2959
3061
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2990,10 +3092,11 @@ class LoadBalancerClient {
|
|
|
2990
3092
|
}
|
|
2991
3093
|
/**
|
|
2992
3094
|
* Lists all SSL cipher suites associated with the specified load balancer.
|
|
3095
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2993
3096
|
* @param ListSSLCipherSuitesRequest
|
|
2994
3097
|
* @return ListSSLCipherSuitesResponse
|
|
2995
3098
|
* @throws OciError when an error occurs
|
|
2996
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3099
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
|
|
2997
3100
|
*/
|
|
2998
3101
|
listSSLCipherSuites(listSSLCipherSuitesRequest) {
|
|
2999
3102
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3007,7 +3110,8 @@ class LoadBalancerClient {
|
|
|
3007
3110
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3008
3111
|
"opc-request-id": listSSLCipherSuitesRequest.opcRequestId
|
|
3009
3112
|
};
|
|
3010
|
-
const
|
|
3113
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3114
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listSSLCipherSuitesRequest.retryConfiguration, specRetryConfiguration);
|
|
3011
3115
|
if (this.logger)
|
|
3012
3116
|
retrier.logger = this.logger;
|
|
3013
3117
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3044,10 +3148,11 @@ class LoadBalancerClient {
|
|
|
3044
3148
|
}
|
|
3045
3149
|
/**
|
|
3046
3150
|
* Lists the valid load balancer shapes.
|
|
3151
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3047
3152
|
* @param ListShapesRequest
|
|
3048
3153
|
* @return ListShapesResponse
|
|
3049
3154
|
* @throws OciError when an error occurs
|
|
3050
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3155
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
3051
3156
|
*/
|
|
3052
3157
|
listShapes(listShapesRequest) {
|
|
3053
3158
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3063,7 +3168,8 @@ class LoadBalancerClient {
|
|
|
3063
3168
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3064
3169
|
"opc-request-id": listShapesRequest.opcRequestId
|
|
3065
3170
|
};
|
|
3066
|
-
const
|
|
3171
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3172
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listShapesRequest.retryConfiguration, specRetryConfiguration);
|
|
3067
3173
|
if (this.logger)
|
|
3068
3174
|
retrier.logger = this.logger;
|
|
3069
3175
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3145,10 +3251,11 @@ class LoadBalancerClient {
|
|
|
3145
3251
|
}
|
|
3146
3252
|
/**
|
|
3147
3253
|
* Lists the work requests for a given load balancer.
|
|
3254
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3148
3255
|
* @param ListWorkRequestsRequest
|
|
3149
3256
|
* @return ListWorkRequestsResponse
|
|
3150
3257
|
* @throws OciError when an error occurs
|
|
3151
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3258
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
3152
3259
|
*/
|
|
3153
3260
|
listWorkRequests(listWorkRequestsRequest) {
|
|
3154
3261
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3165,7 +3272,8 @@ class LoadBalancerClient {
|
|
|
3165
3272
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3166
3273
|
"opc-request-id": listWorkRequestsRequest.opcRequestId
|
|
3167
3274
|
};
|
|
3168
|
-
const
|
|
3275
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3276
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
|
|
3169
3277
|
if (this.logger)
|
|
3170
3278
|
retrier.logger = this.logger;
|
|
3171
3279
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3247,10 +3355,11 @@ class LoadBalancerClient {
|
|
|
3247
3355
|
}
|
|
3248
3356
|
/**
|
|
3249
3357
|
* Updates the configuration of a backend server within the specified backend set.
|
|
3358
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3250
3359
|
* @param UpdateBackendRequest
|
|
3251
3360
|
* @return UpdateBackendResponse
|
|
3252
3361
|
* @throws OciError when an error occurs
|
|
3253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3362
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
|
|
3254
3363
|
*/
|
|
3255
3364
|
updateBackend(updateBackendRequest) {
|
|
3256
3365
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3267,7 +3376,8 @@ class LoadBalancerClient {
|
|
|
3267
3376
|
"opc-request-id": updateBackendRequest.opcRequestId,
|
|
3268
3377
|
"opc-retry-token": updateBackendRequest.opcRetryToken
|
|
3269
3378
|
};
|
|
3270
|
-
const
|
|
3379
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3380
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBackendRequest.retryConfiguration, specRetryConfiguration);
|
|
3271
3381
|
if (this.logger)
|
|
3272
3382
|
retrier.logger = this.logger;
|
|
3273
3383
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3306,10 +3416,11 @@ class LoadBalancerClient {
|
|
|
3306
3416
|
}
|
|
3307
3417
|
/**
|
|
3308
3418
|
* Updates a backend set.
|
|
3419
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3309
3420
|
* @param UpdateBackendSetRequest
|
|
3310
3421
|
* @return UpdateBackendSetResponse
|
|
3311
3422
|
* @throws OciError when an error occurs
|
|
3312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3423
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
|
|
3313
3424
|
*/
|
|
3314
3425
|
updateBackendSet(updateBackendSetRequest) {
|
|
3315
3426
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3325,7 +3436,8 @@ class LoadBalancerClient {
|
|
|
3325
3436
|
"opc-request-id": updateBackendSetRequest.opcRequestId,
|
|
3326
3437
|
"opc-retry-token": updateBackendSetRequest.opcRetryToken
|
|
3327
3438
|
};
|
|
3328
|
-
const
|
|
3439
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3440
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBackendSetRequest.retryConfiguration, specRetryConfiguration);
|
|
3329
3441
|
if (this.logger)
|
|
3330
3442
|
retrier.logger = this.logger;
|
|
3331
3443
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3364,10 +3476,11 @@ class LoadBalancerClient {
|
|
|
3364
3476
|
}
|
|
3365
3477
|
/**
|
|
3366
3478
|
* Updates the health check policy for a given load balancer and backend set.
|
|
3479
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3367
3480
|
* @param UpdateHealthCheckerRequest
|
|
3368
3481
|
* @return UpdateHealthCheckerResponse
|
|
3369
3482
|
* @throws OciError when an error occurs
|
|
3370
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3483
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
|
|
3371
3484
|
*/
|
|
3372
3485
|
updateHealthChecker(updateHealthCheckerRequest) {
|
|
3373
3486
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3383,7 +3496,8 @@ class LoadBalancerClient {
|
|
|
3383
3496
|
"opc-request-id": updateHealthCheckerRequest.opcRequestId,
|
|
3384
3497
|
"opc-retry-token": updateHealthCheckerRequest.opcRetryToken
|
|
3385
3498
|
};
|
|
3386
|
-
const
|
|
3499
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3500
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateHealthCheckerRequest.retryConfiguration, specRetryConfiguration);
|
|
3387
3501
|
if (this.logger)
|
|
3388
3502
|
retrier.logger = this.logger;
|
|
3389
3503
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3424,10 +3538,11 @@ class LoadBalancerClient {
|
|
|
3424
3538
|
* Overwrites an existing hostname resource on the specified load balancer. Use this operation to change a
|
|
3425
3539
|
* virtual hostname.
|
|
3426
3540
|
*
|
|
3541
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3427
3542
|
* @param UpdateHostnameRequest
|
|
3428
3543
|
* @return UpdateHostnameResponse
|
|
3429
3544
|
* @throws OciError when an error occurs
|
|
3430
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3545
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
|
|
3431
3546
|
*/
|
|
3432
3547
|
updateHostname(updateHostnameRequest) {
|
|
3433
3548
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3442,7 +3557,8 @@ class LoadBalancerClient {
|
|
|
3442
3557
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3443
3558
|
"opc-request-id": updateHostnameRequest.opcRequestId
|
|
3444
3559
|
};
|
|
3445
|
-
const
|
|
3560
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3561
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateHostnameRequest.retryConfiguration, specRetryConfiguration);
|
|
3446
3562
|
if (this.logger)
|
|
3447
3563
|
retrier.logger = this.logger;
|
|
3448
3564
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3481,10 +3597,11 @@ class LoadBalancerClient {
|
|
|
3481
3597
|
}
|
|
3482
3598
|
/**
|
|
3483
3599
|
* Updates a listener for a given load balancer.
|
|
3600
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3484
3601
|
* @param UpdateListenerRequest
|
|
3485
3602
|
* @return UpdateListenerResponse
|
|
3486
3603
|
* @throws OciError when an error occurs
|
|
3487
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3604
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
|
|
3488
3605
|
*/
|
|
3489
3606
|
updateListener(updateListenerRequest) {
|
|
3490
3607
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3500,7 +3617,8 @@ class LoadBalancerClient {
|
|
|
3500
3617
|
"opc-request-id": updateListenerRequest.opcRequestId,
|
|
3501
3618
|
"opc-retry-token": updateListenerRequest.opcRetryToken
|
|
3502
3619
|
};
|
|
3503
|
-
const
|
|
3620
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3621
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateListenerRequest.retryConfiguration, specRetryConfiguration);
|
|
3504
3622
|
if (this.logger)
|
|
3505
3623
|
retrier.logger = this.logger;
|
|
3506
3624
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3539,10 +3657,11 @@ class LoadBalancerClient {
|
|
|
3539
3657
|
}
|
|
3540
3658
|
/**
|
|
3541
3659
|
* Updates a load balancer's configuration.
|
|
3660
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3542
3661
|
* @param UpdateLoadBalancerRequest
|
|
3543
3662
|
* @return UpdateLoadBalancerResponse
|
|
3544
3663
|
* @throws OciError when an error occurs
|
|
3545
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3664
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
|
|
3546
3665
|
*/
|
|
3547
3666
|
updateLoadBalancer(updateLoadBalancerRequest) {
|
|
3548
3667
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3557,7 +3676,8 @@ class LoadBalancerClient {
|
|
|
3557
3676
|
"opc-request-id": updateLoadBalancerRequest.opcRequestId,
|
|
3558
3677
|
"opc-retry-token": updateLoadBalancerRequest.opcRetryToken
|
|
3559
3678
|
};
|
|
3560
|
-
const
|
|
3679
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3680
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
|
|
3561
3681
|
if (this.logger)
|
|
3562
3682
|
retrier.logger = this.logger;
|
|
3563
3683
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3602,10 +3722,11 @@ class LoadBalancerClient {
|
|
|
3602
3722
|
* start accepting larger bandwidth and when reshaping to a smaller one, the LB will be accepting smaller
|
|
3603
3723
|
* bandwidth.
|
|
3604
3724
|
*
|
|
3725
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3605
3726
|
* @param UpdateLoadBalancerShapeRequest
|
|
3606
3727
|
* @return UpdateLoadBalancerShapeResponse
|
|
3607
3728
|
* @throws OciError when an error occurs
|
|
3608
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3729
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
|
|
3609
3730
|
*/
|
|
3610
3731
|
updateLoadBalancerShape(updateLoadBalancerShapeRequest) {
|
|
3611
3732
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3620,7 +3741,8 @@ class LoadBalancerClient {
|
|
|
3620
3741
|
"opc-request-id": updateLoadBalancerShapeRequest.opcRequestId,
|
|
3621
3742
|
"opc-retry-token": updateLoadBalancerShapeRequest.opcRetryToken
|
|
3622
3743
|
};
|
|
3623
|
-
const
|
|
3744
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3745
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateLoadBalancerShapeRequest.retryConfiguration, specRetryConfiguration);
|
|
3624
3746
|
if (this.logger)
|
|
3625
3747
|
retrier.logger = this.logger;
|
|
3626
3748
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3659,10 +3781,11 @@ class LoadBalancerClient {
|
|
|
3659
3781
|
}
|
|
3660
3782
|
/**
|
|
3661
3783
|
* Updates the network security groups associated with the specified load balancer.
|
|
3784
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3662
3785
|
* @param UpdateNetworkSecurityGroupsRequest
|
|
3663
3786
|
* @return UpdateNetworkSecurityGroupsResponse
|
|
3664
3787
|
* @throws OciError when an error occurs
|
|
3665
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3788
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
|
|
3666
3789
|
*/
|
|
3667
3790
|
updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest) {
|
|
3668
3791
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3677,7 +3800,8 @@ class LoadBalancerClient {
|
|
|
3677
3800
|
"opc-request-id": updateNetworkSecurityGroupsRequest.opcRequestId,
|
|
3678
3801
|
"opc-retry-token": updateNetworkSecurityGroupsRequest.opcRetryToken
|
|
3679
3802
|
};
|
|
3680
|
-
const
|
|
3803
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3804
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateNetworkSecurityGroupsRequest.retryConfiguration, specRetryConfiguration);
|
|
3681
3805
|
if (this.logger)
|
|
3682
3806
|
retrier.logger = this.logger;
|
|
3683
3807
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3722,10 +3846,11 @@ class LoadBalancerClient {
|
|
|
3722
3846
|
* {@link #updatePathRouteSetDetails(UpdatePathRouteSetDetailsRequest) updatePathRouteSetDetails} object must include
|
|
3723
3847
|
* both the new path route rule to add and the existing path route rules to retain.
|
|
3724
3848
|
*
|
|
3849
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3725
3850
|
* @param UpdatePathRouteSetRequest
|
|
3726
3851
|
* @return UpdatePathRouteSetResponse
|
|
3727
3852
|
* @throws OciError when an error occurs
|
|
3728
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3853
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
|
|
3729
3854
|
*/
|
|
3730
3855
|
updatePathRouteSet(updatePathRouteSetRequest) {
|
|
3731
3856
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3741,7 +3866,8 @@ class LoadBalancerClient {
|
|
|
3741
3866
|
"opc-request-id": updatePathRouteSetRequest.opcRequestId,
|
|
3742
3867
|
"opc-retry-token": updatePathRouteSetRequest.opcRetryToken
|
|
3743
3868
|
};
|
|
3744
|
-
const
|
|
3869
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3870
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePathRouteSetRequest.retryConfiguration, specRetryConfiguration);
|
|
3745
3871
|
if (this.logger)
|
|
3746
3872
|
retrier.logger = this.logger;
|
|
3747
3873
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3784,10 +3910,11 @@ class LoadBalancerClient {
|
|
|
3784
3910
|
* <p>
|
|
3785
3911
|
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.
|
|
3786
3912
|
*
|
|
3913
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3787
3914
|
* @param UpdateRoutingPolicyRequest
|
|
3788
3915
|
* @return UpdateRoutingPolicyResponse
|
|
3789
3916
|
* @throws OciError when an error occurs
|
|
3790
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3917
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
|
|
3791
3918
|
*/
|
|
3792
3919
|
updateRoutingPolicy(updateRoutingPolicyRequest) {
|
|
3793
3920
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3803,7 +3930,8 @@ class LoadBalancerClient {
|
|
|
3803
3930
|
"opc-request-id": updateRoutingPolicyRequest.opcRequestId,
|
|
3804
3931
|
"opc-retry-token": updateRoutingPolicyRequest.opcRetryToken
|
|
3805
3932
|
};
|
|
3806
|
-
const
|
|
3933
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3934
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
3807
3935
|
if (this.logger)
|
|
3808
3936
|
retrier.logger = this.logger;
|
|
3809
3937
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3846,10 +3974,11 @@ class LoadBalancerClient {
|
|
|
3846
3974
|
* <p>
|
|
3847
3975
|
To add a new rule to a set, the body must include both the new rule to add and the existing rules to retain.
|
|
3848
3976
|
*
|
|
3977
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3849
3978
|
* @param UpdateRuleSetRequest
|
|
3850
3979
|
* @return UpdateRuleSetResponse
|
|
3851
3980
|
* @throws OciError when an error occurs
|
|
3852
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3981
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
|
|
3853
3982
|
*/
|
|
3854
3983
|
updateRuleSet(updateRuleSetRequest) {
|
|
3855
3984
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3864,7 +3993,8 @@ class LoadBalancerClient {
|
|
|
3864
3993
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3865
3994
|
"opc-request-id": updateRuleSetRequest.opcRequestId
|
|
3866
3995
|
};
|
|
3867
|
-
const
|
|
3996
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3997
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRuleSetRequest.retryConfiguration, specRetryConfiguration);
|
|
3868
3998
|
if (this.logger)
|
|
3869
3999
|
retrier.logger = this.logger;
|
|
3870
4000
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3903,10 +4033,11 @@ class LoadBalancerClient {
|
|
|
3903
4033
|
}
|
|
3904
4034
|
/**
|
|
3905
4035
|
* Updates an existing SSL cipher suite for the specified load balancer.
|
|
4036
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3906
4037
|
* @param UpdateSSLCipherSuiteRequest
|
|
3907
4038
|
* @return UpdateSSLCipherSuiteResponse
|
|
3908
4039
|
* @throws OciError when an error occurs
|
|
3909
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4040
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.7.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
|
|
3910
4041
|
*/
|
|
3911
4042
|
updateSSLCipherSuite(updateSSLCipherSuiteRequest) {
|
|
3912
4043
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3922,7 +4053,8 @@ class LoadBalancerClient {
|
|
|
3922
4053
|
"opc-request-id": updateSSLCipherSuiteRequest.opcRequestId,
|
|
3923
4054
|
"opc-retry-token": updateSSLCipherSuiteRequest.opcRetryToken
|
|
3924
4055
|
};
|
|
3925
|
-
const
|
|
4056
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4057
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
|
|
3926
4058
|
if (this.logger)
|
|
3927
4059
|
retrier.logger = this.logger;
|
|
3928
4060
|
const request = yield oci_common_2.composeRequest({
|