oci-loadbalancer 2.4.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +6 -0
- package/lib/client.d.ts +244 -61
- package/lib/client.js +401 -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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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({
|
|
@@ -2431,6 +2521,7 @@ class LoadBalancerClient {
|
|
|
2431
2521
|
});
|
|
2432
2522
|
}
|
|
2433
2523
|
/**
|
|
2524
|
+
* NOTE: This function is deprecated in favor of listLoadBalancerHealthsRecordIterator function.
|
|
2434
2525
|
* Creates a new async iterator which will iterate over the models.LoadBalancerHealthSummary objects
|
|
2435
2526
|
* contained in responses from the listLoadBalancerHealths operation. This iterator will fetch more data from the
|
|
2436
2527
|
* server as needed.
|
|
@@ -2441,6 +2532,7 @@ class LoadBalancerClient {
|
|
|
2441
2532
|
return oci_common_1.paginateRecords(request, req => this.listLoadBalancerHealths(req));
|
|
2442
2533
|
}
|
|
2443
2534
|
/**
|
|
2535
|
+
* NOTE: This function is deprecated in favor of listLoadBalancerHealthsResponseIterator function.
|
|
2444
2536
|
* Creates a new async iterator which will iterate over the responses received from the listLoadBalancerHealths operation. This iterator
|
|
2445
2537
|
* will fetch more data from the server as needed.
|
|
2446
2538
|
*
|
|
@@ -2449,12 +2541,32 @@ class LoadBalancerClient {
|
|
|
2449
2541
|
listAllLoadBalancerHealthsResponses(request) {
|
|
2450
2542
|
return oci_common_1.paginateResponses(request, req => this.listLoadBalancerHealths(req));
|
|
2451
2543
|
}
|
|
2544
|
+
/**
|
|
2545
|
+
* Creates a new async iterator which will iterate over the models.LoadBalancerHealthSummary objects
|
|
2546
|
+
* contained in responses from the listLoadBalancerHealths operation. This iterator will fetch more data from the
|
|
2547
|
+
* server as needed.
|
|
2548
|
+
*
|
|
2549
|
+
* @param request a request which can be sent to the service operation
|
|
2550
|
+
*/
|
|
2551
|
+
listLoadBalancerHealthsRecordIterator(request) {
|
|
2552
|
+
return oci_common_1.paginateRecords(request, req => this.listLoadBalancerHealths(req));
|
|
2553
|
+
}
|
|
2554
|
+
/**
|
|
2555
|
+
* Creates a new async iterator which will iterate over the responses received from the listLoadBalancerHealths operation. This iterator
|
|
2556
|
+
* will fetch more data from the server as needed.
|
|
2557
|
+
*
|
|
2558
|
+
* @param request a request which can be sent to the service operation
|
|
2559
|
+
*/
|
|
2560
|
+
listLoadBalancerHealthsResponseIterator(request) {
|
|
2561
|
+
return oci_common_1.paginateResponses(request, req => this.listLoadBalancerHealths(req));
|
|
2562
|
+
}
|
|
2452
2563
|
/**
|
|
2453
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.
|
|
2454
2566
|
* @param ListLoadBalancersRequest
|
|
2455
2567
|
* @return ListLoadBalancersResponse
|
|
2456
2568
|
* @throws OciError when an error occurs
|
|
2457
|
-
* @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.6.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
|
|
2458
2570
|
*/
|
|
2459
2571
|
listLoadBalancers(listLoadBalancersRequest) {
|
|
2460
2572
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2475,7 +2587,8 @@ class LoadBalancerClient {
|
|
|
2475
2587
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2476
2588
|
"opc-request-id": listLoadBalancersRequest.opcRequestId
|
|
2477
2589
|
};
|
|
2478
|
-
const
|
|
2590
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2591
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listLoadBalancersRequest.retryConfiguration, specRetryConfiguration);
|
|
2479
2592
|
if (this.logger)
|
|
2480
2593
|
retrier.logger = this.logger;
|
|
2481
2594
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2516,6 +2629,7 @@ class LoadBalancerClient {
|
|
|
2516
2629
|
});
|
|
2517
2630
|
}
|
|
2518
2631
|
/**
|
|
2632
|
+
* NOTE: This function is deprecated in favor of listLoadBalancersRecordIterator function.
|
|
2519
2633
|
* Creates a new async iterator which will iterate over the models.LoadBalancer objects
|
|
2520
2634
|
* contained in responses from the listLoadBalancers operation. This iterator will fetch more data from the
|
|
2521
2635
|
* server as needed.
|
|
@@ -2526,6 +2640,7 @@ class LoadBalancerClient {
|
|
|
2526
2640
|
return oci_common_1.paginateRecords(request, req => this.listLoadBalancers(req));
|
|
2527
2641
|
}
|
|
2528
2642
|
/**
|
|
2643
|
+
* NOTE: This function is deprecated in favor of listLoadBalancersResponseIterator function.
|
|
2529
2644
|
* Creates a new async iterator which will iterate over the responses received from the listLoadBalancers operation. This iterator
|
|
2530
2645
|
* will fetch more data from the server as needed.
|
|
2531
2646
|
*
|
|
@@ -2534,12 +2649,32 @@ class LoadBalancerClient {
|
|
|
2534
2649
|
listAllLoadBalancersResponses(request) {
|
|
2535
2650
|
return oci_common_1.paginateResponses(request, req => this.listLoadBalancers(req));
|
|
2536
2651
|
}
|
|
2652
|
+
/**
|
|
2653
|
+
* Creates a new async iterator which will iterate over the models.LoadBalancer objects
|
|
2654
|
+
* contained in responses from the listLoadBalancers operation. This iterator will fetch more data from the
|
|
2655
|
+
* server as needed.
|
|
2656
|
+
*
|
|
2657
|
+
* @param request a request which can be sent to the service operation
|
|
2658
|
+
*/
|
|
2659
|
+
listLoadBalancersRecordIterator(request) {
|
|
2660
|
+
return oci_common_1.paginateRecords(request, req => this.listLoadBalancers(req));
|
|
2661
|
+
}
|
|
2662
|
+
/**
|
|
2663
|
+
* Creates a new async iterator which will iterate over the responses received from the listLoadBalancers operation. This iterator
|
|
2664
|
+
* will fetch more data from the server as needed.
|
|
2665
|
+
*
|
|
2666
|
+
* @param request a request which can be sent to the service operation
|
|
2667
|
+
*/
|
|
2668
|
+
listLoadBalancersResponseIterator(request) {
|
|
2669
|
+
return oci_common_1.paginateResponses(request, req => this.listLoadBalancers(req));
|
|
2670
|
+
}
|
|
2537
2671
|
/**
|
|
2538
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.
|
|
2539
2674
|
* @param ListPathRouteSetsRequest
|
|
2540
2675
|
* @return ListPathRouteSetsResponse
|
|
2541
2676
|
* @throws OciError when an error occurs
|
|
2542
|
-
* @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.6.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
|
|
2543
2678
|
*/
|
|
2544
2679
|
listPathRouteSets(listPathRouteSetsRequest) {
|
|
2545
2680
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2553,7 +2688,8 @@ class LoadBalancerClient {
|
|
|
2553
2688
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2554
2689
|
"opc-request-id": listPathRouteSetsRequest.opcRequestId
|
|
2555
2690
|
};
|
|
2556
|
-
const
|
|
2691
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2692
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPathRouteSetsRequest.retryConfiguration, specRetryConfiguration);
|
|
2557
2693
|
if (this.logger)
|
|
2558
2694
|
retrier.logger = this.logger;
|
|
2559
2695
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2590,10 +2726,11 @@ class LoadBalancerClient {
|
|
|
2590
2726
|
}
|
|
2591
2727
|
/**
|
|
2592
2728
|
* Lists the available load balancer policies.
|
|
2729
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2593
2730
|
* @param ListPoliciesRequest
|
|
2594
2731
|
* @return ListPoliciesResponse
|
|
2595
2732
|
* @throws OciError when an error occurs
|
|
2596
|
-
* @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.6.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
|
|
2597
2734
|
*/
|
|
2598
2735
|
listPolicies(listPoliciesRequest) {
|
|
2599
2736
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2609,7 +2746,8 @@ class LoadBalancerClient {
|
|
|
2609
2746
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2610
2747
|
"opc-request-id": listPoliciesRequest.opcRequestId
|
|
2611
2748
|
};
|
|
2612
|
-
const
|
|
2749
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2750
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPoliciesRequest.retryConfiguration, specRetryConfiguration);
|
|
2613
2751
|
if (this.logger)
|
|
2614
2752
|
retrier.logger = this.logger;
|
|
2615
2753
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2650,6 +2788,7 @@ class LoadBalancerClient {
|
|
|
2650
2788
|
});
|
|
2651
2789
|
}
|
|
2652
2790
|
/**
|
|
2791
|
+
* NOTE: This function is deprecated in favor of listPoliciesRecordIterator function.
|
|
2653
2792
|
* Creates a new async iterator which will iterate over the models.LoadBalancerPolicy objects
|
|
2654
2793
|
* contained in responses from the listPolicies operation. This iterator will fetch more data from the
|
|
2655
2794
|
* server as needed.
|
|
@@ -2660,6 +2799,7 @@ class LoadBalancerClient {
|
|
|
2660
2799
|
return oci_common_1.paginateRecords(request, req => this.listPolicies(req));
|
|
2661
2800
|
}
|
|
2662
2801
|
/**
|
|
2802
|
+
* NOTE: This function is deprecated in favor of listPoliciesResponseIterator function.
|
|
2663
2803
|
* Creates a new async iterator which will iterate over the responses received from the listPolicies operation. This iterator
|
|
2664
2804
|
* will fetch more data from the server as needed.
|
|
2665
2805
|
*
|
|
@@ -2668,12 +2808,32 @@ class LoadBalancerClient {
|
|
|
2668
2808
|
listAllPoliciesResponses(request) {
|
|
2669
2809
|
return oci_common_1.paginateResponses(request, req => this.listPolicies(req));
|
|
2670
2810
|
}
|
|
2811
|
+
/**
|
|
2812
|
+
* Creates a new async iterator which will iterate over the models.LoadBalancerPolicy objects
|
|
2813
|
+
* contained in responses from the listPolicies operation. This iterator will fetch more data from the
|
|
2814
|
+
* server as needed.
|
|
2815
|
+
*
|
|
2816
|
+
* @param request a request which can be sent to the service operation
|
|
2817
|
+
*/
|
|
2818
|
+
listPoliciesRecordIterator(request) {
|
|
2819
|
+
return oci_common_1.paginateRecords(request, req => this.listPolicies(req));
|
|
2820
|
+
}
|
|
2821
|
+
/**
|
|
2822
|
+
* Creates a new async iterator which will iterate over the responses received from the listPolicies operation. This iterator
|
|
2823
|
+
* will fetch more data from the server as needed.
|
|
2824
|
+
*
|
|
2825
|
+
* @param request a request which can be sent to the service operation
|
|
2826
|
+
*/
|
|
2827
|
+
listPoliciesResponseIterator(request) {
|
|
2828
|
+
return oci_common_1.paginateResponses(request, req => this.listPolicies(req));
|
|
2829
|
+
}
|
|
2671
2830
|
/**
|
|
2672
2831
|
* Lists all supported traffic protocols.
|
|
2832
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2673
2833
|
* @param ListProtocolsRequest
|
|
2674
2834
|
* @return ListProtocolsResponse
|
|
2675
2835
|
* @throws OciError when an error occurs
|
|
2676
|
-
* @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.6.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
|
|
2677
2837
|
*/
|
|
2678
2838
|
listProtocols(listProtocolsRequest) {
|
|
2679
2839
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2689,7 +2849,8 @@ class LoadBalancerClient {
|
|
|
2689
2849
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2690
2850
|
"opc-request-id": listProtocolsRequest.opcRequestId
|
|
2691
2851
|
};
|
|
2692
|
-
const
|
|
2852
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2853
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listProtocolsRequest.retryConfiguration, specRetryConfiguration);
|
|
2693
2854
|
if (this.logger)
|
|
2694
2855
|
retrier.logger = this.logger;
|
|
2695
2856
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2730,6 +2891,7 @@ class LoadBalancerClient {
|
|
|
2730
2891
|
});
|
|
2731
2892
|
}
|
|
2732
2893
|
/**
|
|
2894
|
+
* NOTE: This function is deprecated in favor of listProtocolsRecordIterator function.
|
|
2733
2895
|
* Creates a new async iterator which will iterate over the models.LoadBalancerProtocol objects
|
|
2734
2896
|
* contained in responses from the listProtocols operation. This iterator will fetch more data from the
|
|
2735
2897
|
* server as needed.
|
|
@@ -2740,6 +2902,7 @@ class LoadBalancerClient {
|
|
|
2740
2902
|
return oci_common_1.paginateRecords(request, req => this.listProtocols(req));
|
|
2741
2903
|
}
|
|
2742
2904
|
/**
|
|
2905
|
+
* NOTE: This function is deprecated in favor of listProtocolsResponseIterator function.
|
|
2743
2906
|
* Creates a new async iterator which will iterate over the responses received from the listProtocols operation. This iterator
|
|
2744
2907
|
* will fetch more data from the server as needed.
|
|
2745
2908
|
*
|
|
@@ -2748,12 +2911,32 @@ class LoadBalancerClient {
|
|
|
2748
2911
|
listAllProtocolsResponses(request) {
|
|
2749
2912
|
return oci_common_1.paginateResponses(request, req => this.listProtocols(req));
|
|
2750
2913
|
}
|
|
2914
|
+
/**
|
|
2915
|
+
* Creates a new async iterator which will iterate over the models.LoadBalancerProtocol objects
|
|
2916
|
+
* contained in responses from the listProtocols operation. This iterator will fetch more data from the
|
|
2917
|
+
* server as needed.
|
|
2918
|
+
*
|
|
2919
|
+
* @param request a request which can be sent to the service operation
|
|
2920
|
+
*/
|
|
2921
|
+
listProtocolsRecordIterator(request) {
|
|
2922
|
+
return oci_common_1.paginateRecords(request, req => this.listProtocols(req));
|
|
2923
|
+
}
|
|
2924
|
+
/**
|
|
2925
|
+
* Creates a new async iterator which will iterate over the responses received from the listProtocols operation. This iterator
|
|
2926
|
+
* will fetch more data from the server as needed.
|
|
2927
|
+
*
|
|
2928
|
+
* @param request a request which can be sent to the service operation
|
|
2929
|
+
*/
|
|
2930
|
+
listProtocolsResponseIterator(request) {
|
|
2931
|
+
return oci_common_1.paginateResponses(request, req => this.listProtocols(req));
|
|
2932
|
+
}
|
|
2751
2933
|
/**
|
|
2752
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.
|
|
2753
2936
|
* @param ListRoutingPoliciesRequest
|
|
2754
2937
|
* @return ListRoutingPoliciesResponse
|
|
2755
2938
|
* @throws OciError when an error occurs
|
|
2756
|
-
* @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.6.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
|
|
2757
2940
|
*/
|
|
2758
2941
|
listRoutingPolicies(listRoutingPoliciesRequest) {
|
|
2759
2942
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2770,7 +2953,8 @@ class LoadBalancerClient {
|
|
|
2770
2953
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2771
2954
|
"opc-request-id": listRoutingPoliciesRequest.opcRequestId
|
|
2772
2955
|
};
|
|
2773
|
-
const
|
|
2956
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2957
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRoutingPoliciesRequest.retryConfiguration, specRetryConfiguration);
|
|
2774
2958
|
if (this.logger)
|
|
2775
2959
|
retrier.logger = this.logger;
|
|
2776
2960
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2811,6 +2995,7 @@ class LoadBalancerClient {
|
|
|
2811
2995
|
});
|
|
2812
2996
|
}
|
|
2813
2997
|
/**
|
|
2998
|
+
* NOTE: This function is deprecated in favor of listRoutingPoliciesRecordIterator function.
|
|
2814
2999
|
* Creates a new async iterator which will iterate over the models.RoutingPolicy objects
|
|
2815
3000
|
* contained in responses from the listRoutingPolicies operation. This iterator will fetch more data from the
|
|
2816
3001
|
* server as needed.
|
|
@@ -2821,6 +3006,7 @@ class LoadBalancerClient {
|
|
|
2821
3006
|
return oci_common_1.paginateRecords(request, req => this.listRoutingPolicies(req));
|
|
2822
3007
|
}
|
|
2823
3008
|
/**
|
|
3009
|
+
* NOTE: This function is deprecated in favor of listRoutingPoliciesResponseIterator function.
|
|
2824
3010
|
* Creates a new async iterator which will iterate over the responses received from the listRoutingPolicies operation. This iterator
|
|
2825
3011
|
* will fetch more data from the server as needed.
|
|
2826
3012
|
*
|
|
@@ -2829,12 +3015,32 @@ class LoadBalancerClient {
|
|
|
2829
3015
|
listAllRoutingPoliciesResponses(request) {
|
|
2830
3016
|
return oci_common_1.paginateResponses(request, req => this.listRoutingPolicies(req));
|
|
2831
3017
|
}
|
|
3018
|
+
/**
|
|
3019
|
+
* Creates a new async iterator which will iterate over the models.RoutingPolicy objects
|
|
3020
|
+
* contained in responses from the listRoutingPolicies operation. This iterator will fetch more data from the
|
|
3021
|
+
* server as needed.
|
|
3022
|
+
*
|
|
3023
|
+
* @param request a request which can be sent to the service operation
|
|
3024
|
+
*/
|
|
3025
|
+
listRoutingPoliciesRecordIterator(request) {
|
|
3026
|
+
return oci_common_1.paginateRecords(request, req => this.listRoutingPolicies(req));
|
|
3027
|
+
}
|
|
3028
|
+
/**
|
|
3029
|
+
* Creates a new async iterator which will iterate over the responses received from the listRoutingPolicies operation. This iterator
|
|
3030
|
+
* will fetch more data from the server as needed.
|
|
3031
|
+
*
|
|
3032
|
+
* @param request a request which can be sent to the service operation
|
|
3033
|
+
*/
|
|
3034
|
+
listRoutingPoliciesResponseIterator(request) {
|
|
3035
|
+
return oci_common_1.paginateResponses(request, req => this.listRoutingPolicies(req));
|
|
3036
|
+
}
|
|
2832
3037
|
/**
|
|
2833
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.
|
|
2834
3040
|
* @param ListRuleSetsRequest
|
|
2835
3041
|
* @return ListRuleSetsResponse
|
|
2836
3042
|
* @throws OciError when an error occurs
|
|
2837
|
-
* @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.6.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
|
|
2838
3044
|
*/
|
|
2839
3045
|
listRuleSets(listRuleSetsRequest) {
|
|
2840
3046
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2848,7 +3054,8 @@ class LoadBalancerClient {
|
|
|
2848
3054
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2849
3055
|
"opc-request-id": listRuleSetsRequest.opcRequestId
|
|
2850
3056
|
};
|
|
2851
|
-
const
|
|
3057
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3058
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRuleSetsRequest.retryConfiguration, specRetryConfiguration);
|
|
2852
3059
|
if (this.logger)
|
|
2853
3060
|
retrier.logger = this.logger;
|
|
2854
3061
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2885,10 +3092,11 @@ class LoadBalancerClient {
|
|
|
2885
3092
|
}
|
|
2886
3093
|
/**
|
|
2887
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.
|
|
2888
3096
|
* @param ListSSLCipherSuitesRequest
|
|
2889
3097
|
* @return ListSSLCipherSuitesResponse
|
|
2890
3098
|
* @throws OciError when an error occurs
|
|
2891
|
-
* @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.6.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
|
|
2892
3100
|
*/
|
|
2893
3101
|
listSSLCipherSuites(listSSLCipherSuitesRequest) {
|
|
2894
3102
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2902,7 +3110,8 @@ class LoadBalancerClient {
|
|
|
2902
3110
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2903
3111
|
"opc-request-id": listSSLCipherSuitesRequest.opcRequestId
|
|
2904
3112
|
};
|
|
2905
|
-
const
|
|
3113
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3114
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listSSLCipherSuitesRequest.retryConfiguration, specRetryConfiguration);
|
|
2906
3115
|
if (this.logger)
|
|
2907
3116
|
retrier.logger = this.logger;
|
|
2908
3117
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2939,10 +3148,11 @@ class LoadBalancerClient {
|
|
|
2939
3148
|
}
|
|
2940
3149
|
/**
|
|
2941
3150
|
* Lists the valid load balancer shapes.
|
|
3151
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
2942
3152
|
* @param ListShapesRequest
|
|
2943
3153
|
* @return ListShapesResponse
|
|
2944
3154
|
* @throws OciError when an error occurs
|
|
2945
|
-
* @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.6.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
2946
3156
|
*/
|
|
2947
3157
|
listShapes(listShapesRequest) {
|
|
2948
3158
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2958,7 +3168,8 @@ class LoadBalancerClient {
|
|
|
2958
3168
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
2959
3169
|
"opc-request-id": listShapesRequest.opcRequestId
|
|
2960
3170
|
};
|
|
2961
|
-
const
|
|
3171
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3172
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listShapesRequest.retryConfiguration, specRetryConfiguration);
|
|
2962
3173
|
if (this.logger)
|
|
2963
3174
|
retrier.logger = this.logger;
|
|
2964
3175
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -2999,6 +3210,7 @@ class LoadBalancerClient {
|
|
|
2999
3210
|
});
|
|
3000
3211
|
}
|
|
3001
3212
|
/**
|
|
3213
|
+
* NOTE: This function is deprecated in favor of listShapesRecordIterator function.
|
|
3002
3214
|
* Creates a new async iterator which will iterate over the models.LoadBalancerShape objects
|
|
3003
3215
|
* contained in responses from the listShapes operation. This iterator will fetch more data from the
|
|
3004
3216
|
* server as needed.
|
|
@@ -3009,6 +3221,7 @@ class LoadBalancerClient {
|
|
|
3009
3221
|
return oci_common_1.paginateRecords(request, req => this.listShapes(req));
|
|
3010
3222
|
}
|
|
3011
3223
|
/**
|
|
3224
|
+
* NOTE: This function is deprecated in favor of listShapesResponseIterator function.
|
|
3012
3225
|
* Creates a new async iterator which will iterate over the responses received from the listShapes operation. This iterator
|
|
3013
3226
|
* will fetch more data from the server as needed.
|
|
3014
3227
|
*
|
|
@@ -3017,12 +3230,32 @@ class LoadBalancerClient {
|
|
|
3017
3230
|
listAllShapesResponses(request) {
|
|
3018
3231
|
return oci_common_1.paginateResponses(request, req => this.listShapes(req));
|
|
3019
3232
|
}
|
|
3233
|
+
/**
|
|
3234
|
+
* Creates a new async iterator which will iterate over the models.LoadBalancerShape objects
|
|
3235
|
+
* contained in responses from the listShapes operation. This iterator will fetch more data from the
|
|
3236
|
+
* server as needed.
|
|
3237
|
+
*
|
|
3238
|
+
* @param request a request which can be sent to the service operation
|
|
3239
|
+
*/
|
|
3240
|
+
listShapesRecordIterator(request) {
|
|
3241
|
+
return oci_common_1.paginateRecords(request, req => this.listShapes(req));
|
|
3242
|
+
}
|
|
3243
|
+
/**
|
|
3244
|
+
* Creates a new async iterator which will iterate over the responses received from the listShapes operation. This iterator
|
|
3245
|
+
* will fetch more data from the server as needed.
|
|
3246
|
+
*
|
|
3247
|
+
* @param request a request which can be sent to the service operation
|
|
3248
|
+
*/
|
|
3249
|
+
listShapesResponseIterator(request) {
|
|
3250
|
+
return oci_common_1.paginateResponses(request, req => this.listShapes(req));
|
|
3251
|
+
}
|
|
3020
3252
|
/**
|
|
3021
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.
|
|
3022
3255
|
* @param ListWorkRequestsRequest
|
|
3023
3256
|
* @return ListWorkRequestsResponse
|
|
3024
3257
|
* @throws OciError when an error occurs
|
|
3025
|
-
* @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.6.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
3026
3259
|
*/
|
|
3027
3260
|
listWorkRequests(listWorkRequestsRequest) {
|
|
3028
3261
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3039,7 +3272,8 @@ class LoadBalancerClient {
|
|
|
3039
3272
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3040
3273
|
"opc-request-id": listWorkRequestsRequest.opcRequestId
|
|
3041
3274
|
};
|
|
3042
|
-
const
|
|
3275
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3276
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
|
|
3043
3277
|
if (this.logger)
|
|
3044
3278
|
retrier.logger = this.logger;
|
|
3045
3279
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3080,6 +3314,7 @@ class LoadBalancerClient {
|
|
|
3080
3314
|
});
|
|
3081
3315
|
}
|
|
3082
3316
|
/**
|
|
3317
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsRecordIterator function.
|
|
3083
3318
|
* Creates a new async iterator which will iterate over the models.WorkRequest objects
|
|
3084
3319
|
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
3085
3320
|
* server as needed.
|
|
@@ -3090,6 +3325,7 @@ class LoadBalancerClient {
|
|
|
3090
3325
|
return oci_common_1.paginateRecords(request, req => this.listWorkRequests(req));
|
|
3091
3326
|
}
|
|
3092
3327
|
/**
|
|
3328
|
+
* NOTE: This function is deprecated in favor of listWorkRequestsResponseIterator function.
|
|
3093
3329
|
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
3094
3330
|
* will fetch more data from the server as needed.
|
|
3095
3331
|
*
|
|
@@ -3098,12 +3334,32 @@ class LoadBalancerClient {
|
|
|
3098
3334
|
listAllWorkRequestsResponses(request) {
|
|
3099
3335
|
return oci_common_1.paginateResponses(request, req => this.listWorkRequests(req));
|
|
3100
3336
|
}
|
|
3337
|
+
/**
|
|
3338
|
+
* Creates a new async iterator which will iterate over the models.WorkRequest objects
|
|
3339
|
+
* contained in responses from the listWorkRequests operation. This iterator will fetch more data from the
|
|
3340
|
+
* server as needed.
|
|
3341
|
+
*
|
|
3342
|
+
* @param request a request which can be sent to the service operation
|
|
3343
|
+
*/
|
|
3344
|
+
listWorkRequestsRecordIterator(request) {
|
|
3345
|
+
return oci_common_1.paginateRecords(request, req => this.listWorkRequests(req));
|
|
3346
|
+
}
|
|
3347
|
+
/**
|
|
3348
|
+
* Creates a new async iterator which will iterate over the responses received from the listWorkRequests operation. This iterator
|
|
3349
|
+
* will fetch more data from the server as needed.
|
|
3350
|
+
*
|
|
3351
|
+
* @param request a request which can be sent to the service operation
|
|
3352
|
+
*/
|
|
3353
|
+
listWorkRequestsResponseIterator(request) {
|
|
3354
|
+
return oci_common_1.paginateResponses(request, req => this.listWorkRequests(req));
|
|
3355
|
+
}
|
|
3101
3356
|
/**
|
|
3102
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.
|
|
3103
3359
|
* @param UpdateBackendRequest
|
|
3104
3360
|
* @return UpdateBackendResponse
|
|
3105
3361
|
* @throws OciError when an error occurs
|
|
3106
|
-
* @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.6.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
|
|
3107
3363
|
*/
|
|
3108
3364
|
updateBackend(updateBackendRequest) {
|
|
3109
3365
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3120,7 +3376,8 @@ class LoadBalancerClient {
|
|
|
3120
3376
|
"opc-request-id": updateBackendRequest.opcRequestId,
|
|
3121
3377
|
"opc-retry-token": updateBackendRequest.opcRetryToken
|
|
3122
3378
|
};
|
|
3123
|
-
const
|
|
3379
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3380
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBackendRequest.retryConfiguration, specRetryConfiguration);
|
|
3124
3381
|
if (this.logger)
|
|
3125
3382
|
retrier.logger = this.logger;
|
|
3126
3383
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3159,10 +3416,11 @@ class LoadBalancerClient {
|
|
|
3159
3416
|
}
|
|
3160
3417
|
/**
|
|
3161
3418
|
* Updates a backend set.
|
|
3419
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3162
3420
|
* @param UpdateBackendSetRequest
|
|
3163
3421
|
* @return UpdateBackendSetResponse
|
|
3164
3422
|
* @throws OciError when an error occurs
|
|
3165
|
-
* @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.6.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
|
|
3166
3424
|
*/
|
|
3167
3425
|
updateBackendSet(updateBackendSetRequest) {
|
|
3168
3426
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3178,7 +3436,8 @@ class LoadBalancerClient {
|
|
|
3178
3436
|
"opc-request-id": updateBackendSetRequest.opcRequestId,
|
|
3179
3437
|
"opc-retry-token": updateBackendSetRequest.opcRetryToken
|
|
3180
3438
|
};
|
|
3181
|
-
const
|
|
3439
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3440
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBackendSetRequest.retryConfiguration, specRetryConfiguration);
|
|
3182
3441
|
if (this.logger)
|
|
3183
3442
|
retrier.logger = this.logger;
|
|
3184
3443
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3217,10 +3476,11 @@ class LoadBalancerClient {
|
|
|
3217
3476
|
}
|
|
3218
3477
|
/**
|
|
3219
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.
|
|
3220
3480
|
* @param UpdateHealthCheckerRequest
|
|
3221
3481
|
* @return UpdateHealthCheckerResponse
|
|
3222
3482
|
* @throws OciError when an error occurs
|
|
3223
|
-
* @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.6.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
|
|
3224
3484
|
*/
|
|
3225
3485
|
updateHealthChecker(updateHealthCheckerRequest) {
|
|
3226
3486
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3236,7 +3496,8 @@ class LoadBalancerClient {
|
|
|
3236
3496
|
"opc-request-id": updateHealthCheckerRequest.opcRequestId,
|
|
3237
3497
|
"opc-retry-token": updateHealthCheckerRequest.opcRetryToken
|
|
3238
3498
|
};
|
|
3239
|
-
const
|
|
3499
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3500
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateHealthCheckerRequest.retryConfiguration, specRetryConfiguration);
|
|
3240
3501
|
if (this.logger)
|
|
3241
3502
|
retrier.logger = this.logger;
|
|
3242
3503
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3277,10 +3538,11 @@ class LoadBalancerClient {
|
|
|
3277
3538
|
* Overwrites an existing hostname resource on the specified load balancer. Use this operation to change a
|
|
3278
3539
|
* virtual hostname.
|
|
3279
3540
|
*
|
|
3541
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3280
3542
|
* @param UpdateHostnameRequest
|
|
3281
3543
|
* @return UpdateHostnameResponse
|
|
3282
3544
|
* @throws OciError when an error occurs
|
|
3283
|
-
* @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.6.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
|
|
3284
3546
|
*/
|
|
3285
3547
|
updateHostname(updateHostnameRequest) {
|
|
3286
3548
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3295,7 +3557,8 @@ class LoadBalancerClient {
|
|
|
3295
3557
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3296
3558
|
"opc-request-id": updateHostnameRequest.opcRequestId
|
|
3297
3559
|
};
|
|
3298
|
-
const
|
|
3560
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3561
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateHostnameRequest.retryConfiguration, specRetryConfiguration);
|
|
3299
3562
|
if (this.logger)
|
|
3300
3563
|
retrier.logger = this.logger;
|
|
3301
3564
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3334,10 +3597,11 @@ class LoadBalancerClient {
|
|
|
3334
3597
|
}
|
|
3335
3598
|
/**
|
|
3336
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.
|
|
3337
3601
|
* @param UpdateListenerRequest
|
|
3338
3602
|
* @return UpdateListenerResponse
|
|
3339
3603
|
* @throws OciError when an error occurs
|
|
3340
|
-
* @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.6.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
|
|
3341
3605
|
*/
|
|
3342
3606
|
updateListener(updateListenerRequest) {
|
|
3343
3607
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3353,7 +3617,8 @@ class LoadBalancerClient {
|
|
|
3353
3617
|
"opc-request-id": updateListenerRequest.opcRequestId,
|
|
3354
3618
|
"opc-retry-token": updateListenerRequest.opcRetryToken
|
|
3355
3619
|
};
|
|
3356
|
-
const
|
|
3620
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3621
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateListenerRequest.retryConfiguration, specRetryConfiguration);
|
|
3357
3622
|
if (this.logger)
|
|
3358
3623
|
retrier.logger = this.logger;
|
|
3359
3624
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3392,10 +3657,11 @@ class LoadBalancerClient {
|
|
|
3392
3657
|
}
|
|
3393
3658
|
/**
|
|
3394
3659
|
* Updates a load balancer's configuration.
|
|
3660
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3395
3661
|
* @param UpdateLoadBalancerRequest
|
|
3396
3662
|
* @return UpdateLoadBalancerResponse
|
|
3397
3663
|
* @throws OciError when an error occurs
|
|
3398
|
-
* @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.6.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
|
|
3399
3665
|
*/
|
|
3400
3666
|
updateLoadBalancer(updateLoadBalancerRequest) {
|
|
3401
3667
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3410,7 +3676,8 @@ class LoadBalancerClient {
|
|
|
3410
3676
|
"opc-request-id": updateLoadBalancerRequest.opcRequestId,
|
|
3411
3677
|
"opc-retry-token": updateLoadBalancerRequest.opcRetryToken
|
|
3412
3678
|
};
|
|
3413
|
-
const
|
|
3679
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3680
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
|
|
3414
3681
|
if (this.logger)
|
|
3415
3682
|
retrier.logger = this.logger;
|
|
3416
3683
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3455,10 +3722,11 @@ class LoadBalancerClient {
|
|
|
3455
3722
|
* start accepting larger bandwidth and when reshaping to a smaller one, the LB will be accepting smaller
|
|
3456
3723
|
* bandwidth.
|
|
3457
3724
|
*
|
|
3725
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3458
3726
|
* @param UpdateLoadBalancerShapeRequest
|
|
3459
3727
|
* @return UpdateLoadBalancerShapeResponse
|
|
3460
3728
|
* @throws OciError when an error occurs
|
|
3461
|
-
* @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.6.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
|
|
3462
3730
|
*/
|
|
3463
3731
|
updateLoadBalancerShape(updateLoadBalancerShapeRequest) {
|
|
3464
3732
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3473,7 +3741,8 @@ class LoadBalancerClient {
|
|
|
3473
3741
|
"opc-request-id": updateLoadBalancerShapeRequest.opcRequestId,
|
|
3474
3742
|
"opc-retry-token": updateLoadBalancerShapeRequest.opcRetryToken
|
|
3475
3743
|
};
|
|
3476
|
-
const
|
|
3744
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3745
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateLoadBalancerShapeRequest.retryConfiguration, specRetryConfiguration);
|
|
3477
3746
|
if (this.logger)
|
|
3478
3747
|
retrier.logger = this.logger;
|
|
3479
3748
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3512,10 +3781,11 @@ class LoadBalancerClient {
|
|
|
3512
3781
|
}
|
|
3513
3782
|
/**
|
|
3514
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.
|
|
3515
3785
|
* @param UpdateNetworkSecurityGroupsRequest
|
|
3516
3786
|
* @return UpdateNetworkSecurityGroupsResponse
|
|
3517
3787
|
* @throws OciError when an error occurs
|
|
3518
|
-
* @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.6.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
|
|
3519
3789
|
*/
|
|
3520
3790
|
updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest) {
|
|
3521
3791
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3530,7 +3800,8 @@ class LoadBalancerClient {
|
|
|
3530
3800
|
"opc-request-id": updateNetworkSecurityGroupsRequest.opcRequestId,
|
|
3531
3801
|
"opc-retry-token": updateNetworkSecurityGroupsRequest.opcRetryToken
|
|
3532
3802
|
};
|
|
3533
|
-
const
|
|
3803
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3804
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateNetworkSecurityGroupsRequest.retryConfiguration, specRetryConfiguration);
|
|
3534
3805
|
if (this.logger)
|
|
3535
3806
|
retrier.logger = this.logger;
|
|
3536
3807
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3575,10 +3846,11 @@ class LoadBalancerClient {
|
|
|
3575
3846
|
* {@link #updatePathRouteSetDetails(UpdatePathRouteSetDetailsRequest) updatePathRouteSetDetails} object must include
|
|
3576
3847
|
* both the new path route rule to add and the existing path route rules to retain.
|
|
3577
3848
|
*
|
|
3849
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3578
3850
|
* @param UpdatePathRouteSetRequest
|
|
3579
3851
|
* @return UpdatePathRouteSetResponse
|
|
3580
3852
|
* @throws OciError when an error occurs
|
|
3581
|
-
* @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.6.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
|
|
3582
3854
|
*/
|
|
3583
3855
|
updatePathRouteSet(updatePathRouteSetRequest) {
|
|
3584
3856
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3594,7 +3866,8 @@ class LoadBalancerClient {
|
|
|
3594
3866
|
"opc-request-id": updatePathRouteSetRequest.opcRequestId,
|
|
3595
3867
|
"opc-retry-token": updatePathRouteSetRequest.opcRetryToken
|
|
3596
3868
|
};
|
|
3597
|
-
const
|
|
3869
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3870
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePathRouteSetRequest.retryConfiguration, specRetryConfiguration);
|
|
3598
3871
|
if (this.logger)
|
|
3599
3872
|
retrier.logger = this.logger;
|
|
3600
3873
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3637,10 +3910,11 @@ class LoadBalancerClient {
|
|
|
3637
3910
|
* <p>
|
|
3638
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.
|
|
3639
3912
|
*
|
|
3913
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3640
3914
|
* @param UpdateRoutingPolicyRequest
|
|
3641
3915
|
* @return UpdateRoutingPolicyResponse
|
|
3642
3916
|
* @throws OciError when an error occurs
|
|
3643
|
-
* @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.6.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
|
|
3644
3918
|
*/
|
|
3645
3919
|
updateRoutingPolicy(updateRoutingPolicyRequest) {
|
|
3646
3920
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3656,7 +3930,8 @@ class LoadBalancerClient {
|
|
|
3656
3930
|
"opc-request-id": updateRoutingPolicyRequest.opcRequestId,
|
|
3657
3931
|
"opc-retry-token": updateRoutingPolicyRequest.opcRetryToken
|
|
3658
3932
|
};
|
|
3659
|
-
const
|
|
3933
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3934
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
3660
3935
|
if (this.logger)
|
|
3661
3936
|
retrier.logger = this.logger;
|
|
3662
3937
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3699,10 +3974,11 @@ class LoadBalancerClient {
|
|
|
3699
3974
|
* <p>
|
|
3700
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.
|
|
3701
3976
|
*
|
|
3977
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
3702
3978
|
* @param UpdateRuleSetRequest
|
|
3703
3979
|
* @return UpdateRuleSetResponse
|
|
3704
3980
|
* @throws OciError when an error occurs
|
|
3705
|
-
* @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.6.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
|
|
3706
3982
|
*/
|
|
3707
3983
|
updateRuleSet(updateRuleSetRequest) {
|
|
3708
3984
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3717,7 +3993,8 @@ class LoadBalancerClient {
|
|
|
3717
3993
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
3718
3994
|
"opc-request-id": updateRuleSetRequest.opcRequestId
|
|
3719
3995
|
};
|
|
3720
|
-
const
|
|
3996
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3997
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRuleSetRequest.retryConfiguration, specRetryConfiguration);
|
|
3721
3998
|
if (this.logger)
|
|
3722
3999
|
retrier.logger = this.logger;
|
|
3723
4000
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -3756,10 +4033,11 @@ class LoadBalancerClient {
|
|
|
3756
4033
|
}
|
|
3757
4034
|
/**
|
|
3758
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.
|
|
3759
4037
|
* @param UpdateSSLCipherSuiteRequest
|
|
3760
4038
|
* @return UpdateSSLCipherSuiteResponse
|
|
3761
4039
|
* @throws OciError when an error occurs
|
|
3762
|
-
* @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.6.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
|
|
3763
4041
|
*/
|
|
3764
4042
|
updateSSLCipherSuite(updateSSLCipherSuiteRequest) {
|
|
3765
4043
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3775,7 +4053,8 @@ class LoadBalancerClient {
|
|
|
3775
4053
|
"opc-request-id": updateSSLCipherSuiteRequest.opcRequestId,
|
|
3776
4054
|
"opc-retry-token": updateSSLCipherSuiteRequest.opcRetryToken
|
|
3777
4055
|
};
|
|
3778
|
-
const
|
|
4056
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4057
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
|
|
3779
4058
|
if (this.logger)
|
|
3780
4059
|
retrier.logger = this.logger;
|
|
3781
4060
|
const request = yield oci_common_2.composeRequest({
|