oci-loadbalancer 2.79.1 → 2.81.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/lib/client.d.ts +63 -62
- package/lib/client.js +313 -125
- package/lib/client.js.map +1 -1
- package/lib/model/action.js +4 -2
- package/lib/model/action.js.map +1 -1
- package/lib/model/rule-condition.js +4 -2
- package/lib/model/rule-condition.js.map +1 -1
- package/lib/model/rule.js +4 -2
- package/lib/model/rule.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
|
@@ -60,7 +60,7 @@ var LoadBalancerApiKeys;
|
|
|
60
60
|
*/
|
|
61
61
|
class LoadBalancerClient {
|
|
62
62
|
constructor(params, clientConfiguration) {
|
|
63
|
-
this["_realmSpecificEndpointTemplateEnabled"] =
|
|
63
|
+
this["_realmSpecificEndpointTemplateEnabled"] = undefined;
|
|
64
64
|
this["_endpoint"] = "";
|
|
65
65
|
this["_defaultHeaders"] = {};
|
|
66
66
|
this._circuitBreaker = null;
|
|
@@ -119,7 +119,11 @@ class LoadBalancerClient {
|
|
|
119
119
|
set endpoint(endpoint) {
|
|
120
120
|
this._endpoint = endpoint;
|
|
121
121
|
this._endpoint = this._endpoint + "/20170115";
|
|
122
|
-
|
|
122
|
+
if (this.logger)
|
|
123
|
+
this.logger.info(`LoadBalancerClient endpoint set to ${this._endpoint}`);
|
|
124
|
+
}
|
|
125
|
+
get logger() {
|
|
126
|
+
return common.LOG.logger;
|
|
123
127
|
}
|
|
124
128
|
/**
|
|
125
129
|
* Determines whether realm specific endpoint should be used or not.
|
|
@@ -128,7 +132,8 @@ class LoadBalancerClient {
|
|
|
128
132
|
*/
|
|
129
133
|
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
|
|
130
134
|
this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
|
|
131
|
-
|
|
135
|
+
if (this.logger)
|
|
136
|
+
this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
|
|
132
137
|
if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
|
|
133
138
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(LoadBalancerClient.serviceEndpointTemplate, this._region, LoadBalancerClient.endpointServiceName);
|
|
134
139
|
}
|
|
@@ -196,11 +201,12 @@ class LoadBalancerClient {
|
|
|
196
201
|
* @param ChangeLoadBalancerCompartmentRequest
|
|
197
202
|
* @return ChangeLoadBalancerCompartmentResponse
|
|
198
203
|
* @throws OciError when an error occurs
|
|
199
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
204
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
|
|
200
205
|
*/
|
|
201
206
|
changeLoadBalancerCompartment(changeLoadBalancerCompartmentRequest) {
|
|
202
207
|
return __awaiter(this, void 0, void 0, function* () {
|
|
203
|
-
|
|
208
|
+
if (this.logger)
|
|
209
|
+
this.logger.debug("Calling operation LoadBalancerClient#changeLoadBalancerCompartment.");
|
|
204
210
|
const operationName = "changeLoadBalancerCompartment";
|
|
205
211
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancer/ChangeLoadBalancerCompartment";
|
|
206
212
|
const pathParams = {
|
|
@@ -215,6 +221,8 @@ class LoadBalancerClient {
|
|
|
215
221
|
};
|
|
216
222
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
217
223
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeLoadBalancerCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
224
|
+
if (this.logger)
|
|
225
|
+
retrier.logger = this.logger;
|
|
218
226
|
const request = yield oci_common_2.composeRequest({
|
|
219
227
|
baseEndpoint: this._endpoint,
|
|
220
228
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -255,11 +263,12 @@ class LoadBalancerClient {
|
|
|
255
263
|
* @param CreateBackendRequest
|
|
256
264
|
* @return CreateBackendResponse
|
|
257
265
|
* @throws OciError when an error occurs
|
|
258
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
266
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
|
|
259
267
|
*/
|
|
260
268
|
createBackend(createBackendRequest) {
|
|
261
269
|
return __awaiter(this, void 0, void 0, function* () {
|
|
262
|
-
|
|
270
|
+
if (this.logger)
|
|
271
|
+
this.logger.debug("Calling operation LoadBalancerClient#createBackend.");
|
|
263
272
|
const operationName = "createBackend";
|
|
264
273
|
const apiReferenceLink = "";
|
|
265
274
|
const pathParams = {
|
|
@@ -275,6 +284,8 @@ class LoadBalancerClient {
|
|
|
275
284
|
};
|
|
276
285
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
277
286
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBackendRequest.retryConfiguration, specRetryConfiguration);
|
|
287
|
+
if (this.logger)
|
|
288
|
+
retrier.logger = this.logger;
|
|
278
289
|
const request = yield oci_common_2.composeRequest({
|
|
279
290
|
baseEndpoint: this._endpoint,
|
|
280
291
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -315,11 +326,12 @@ class LoadBalancerClient {
|
|
|
315
326
|
* @param CreateBackendSetRequest
|
|
316
327
|
* @return CreateBackendSetResponse
|
|
317
328
|
* @throws OciError when an error occurs
|
|
318
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
329
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
|
|
319
330
|
*/
|
|
320
331
|
createBackendSet(createBackendSetRequest) {
|
|
321
332
|
return __awaiter(this, void 0, void 0, function* () {
|
|
322
|
-
|
|
333
|
+
if (this.logger)
|
|
334
|
+
this.logger.debug("Calling operation LoadBalancerClient#createBackendSet.");
|
|
323
335
|
const operationName = "createBackendSet";
|
|
324
336
|
const apiReferenceLink = "";
|
|
325
337
|
const pathParams = {
|
|
@@ -334,6 +346,8 @@ class LoadBalancerClient {
|
|
|
334
346
|
};
|
|
335
347
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
336
348
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBackendSetRequest.retryConfiguration, specRetryConfiguration);
|
|
349
|
+
if (this.logger)
|
|
350
|
+
retrier.logger = this.logger;
|
|
337
351
|
const request = yield oci_common_2.composeRequest({
|
|
338
352
|
baseEndpoint: this._endpoint,
|
|
339
353
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -374,11 +388,12 @@ class LoadBalancerClient {
|
|
|
374
388
|
* @param CreateCertificateRequest
|
|
375
389
|
* @return CreateCertificateResponse
|
|
376
390
|
* @throws OciError when an error occurs
|
|
377
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
391
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
|
|
378
392
|
*/
|
|
379
393
|
createCertificate(createCertificateRequest) {
|
|
380
394
|
return __awaiter(this, void 0, void 0, function* () {
|
|
381
|
-
|
|
395
|
+
if (this.logger)
|
|
396
|
+
this.logger.debug("Calling operation LoadBalancerClient#createCertificate.");
|
|
382
397
|
const operationName = "createCertificate";
|
|
383
398
|
const apiReferenceLink = "";
|
|
384
399
|
const pathParams = {
|
|
@@ -393,6 +408,8 @@ class LoadBalancerClient {
|
|
|
393
408
|
};
|
|
394
409
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
395
410
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createCertificateRequest.retryConfiguration, specRetryConfiguration);
|
|
411
|
+
if (this.logger)
|
|
412
|
+
retrier.logger = this.logger;
|
|
396
413
|
const request = yield oci_common_2.composeRequest({
|
|
397
414
|
baseEndpoint: this._endpoint,
|
|
398
415
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -435,11 +452,12 @@ class LoadBalancerClient {
|
|
|
435
452
|
* @param CreateHostnameRequest
|
|
436
453
|
* @return CreateHostnameResponse
|
|
437
454
|
* @throws OciError when an error occurs
|
|
438
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
|
|
439
456
|
*/
|
|
440
457
|
createHostname(createHostnameRequest) {
|
|
441
458
|
return __awaiter(this, void 0, void 0, function* () {
|
|
442
|
-
|
|
459
|
+
if (this.logger)
|
|
460
|
+
this.logger.debug("Calling operation LoadBalancerClient#createHostname.");
|
|
443
461
|
const operationName = "createHostname";
|
|
444
462
|
const apiReferenceLink = "";
|
|
445
463
|
const pathParams = {
|
|
@@ -454,6 +472,8 @@ class LoadBalancerClient {
|
|
|
454
472
|
};
|
|
455
473
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
456
474
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createHostnameRequest.retryConfiguration, specRetryConfiguration);
|
|
475
|
+
if (this.logger)
|
|
476
|
+
retrier.logger = this.logger;
|
|
457
477
|
const request = yield oci_common_2.composeRequest({
|
|
458
478
|
baseEndpoint: this._endpoint,
|
|
459
479
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -494,11 +514,12 @@ class LoadBalancerClient {
|
|
|
494
514
|
* @param CreateListenerRequest
|
|
495
515
|
* @return CreateListenerResponse
|
|
496
516
|
* @throws OciError when an error occurs
|
|
497
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
517
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
|
|
498
518
|
*/
|
|
499
519
|
createListener(createListenerRequest) {
|
|
500
520
|
return __awaiter(this, void 0, void 0, function* () {
|
|
501
|
-
|
|
521
|
+
if (this.logger)
|
|
522
|
+
this.logger.debug("Calling operation LoadBalancerClient#createListener.");
|
|
502
523
|
const operationName = "createListener";
|
|
503
524
|
const apiReferenceLink = "";
|
|
504
525
|
const pathParams = {
|
|
@@ -513,6 +534,8 @@ class LoadBalancerClient {
|
|
|
513
534
|
};
|
|
514
535
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
515
536
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createListenerRequest.retryConfiguration, specRetryConfiguration);
|
|
537
|
+
if (this.logger)
|
|
538
|
+
retrier.logger = this.logger;
|
|
516
539
|
const request = yield oci_common_2.composeRequest({
|
|
517
540
|
baseEndpoint: this._endpoint,
|
|
518
541
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -580,11 +603,12 @@ class LoadBalancerClient {
|
|
|
580
603
|
* @param CreateLoadBalancerRequest
|
|
581
604
|
* @return CreateLoadBalancerResponse
|
|
582
605
|
* @throws OciError when an error occurs
|
|
583
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
606
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
|
|
584
607
|
*/
|
|
585
608
|
createLoadBalancer(createLoadBalancerRequest) {
|
|
586
609
|
return __awaiter(this, void 0, void 0, function* () {
|
|
587
|
-
|
|
610
|
+
if (this.logger)
|
|
611
|
+
this.logger.debug("Calling operation LoadBalancerClient#createLoadBalancer.");
|
|
588
612
|
const operationName = "createLoadBalancer";
|
|
589
613
|
const apiReferenceLink = "";
|
|
590
614
|
const pathParams = {};
|
|
@@ -596,6 +620,8 @@ class LoadBalancerClient {
|
|
|
596
620
|
};
|
|
597
621
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
598
622
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
|
|
623
|
+
if (this.logger)
|
|
624
|
+
retrier.logger = this.logger;
|
|
599
625
|
const request = yield oci_common_2.composeRequest({
|
|
600
626
|
baseEndpoint: this._endpoint,
|
|
601
627
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -638,11 +664,12 @@ class LoadBalancerClient {
|
|
|
638
664
|
* @param CreatePathRouteSetRequest
|
|
639
665
|
* @return CreatePathRouteSetResponse
|
|
640
666
|
* @throws OciError when an error occurs
|
|
641
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
667
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
|
|
642
668
|
*/
|
|
643
669
|
createPathRouteSet(createPathRouteSetRequest) {
|
|
644
670
|
return __awaiter(this, void 0, void 0, function* () {
|
|
645
|
-
|
|
671
|
+
if (this.logger)
|
|
672
|
+
this.logger.debug("Calling operation LoadBalancerClient#createPathRouteSet.");
|
|
646
673
|
const operationName = "createPathRouteSet";
|
|
647
674
|
const apiReferenceLink = "";
|
|
648
675
|
const pathParams = {
|
|
@@ -657,6 +684,8 @@ class LoadBalancerClient {
|
|
|
657
684
|
};
|
|
658
685
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
659
686
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPathRouteSetRequest.retryConfiguration, specRetryConfiguration);
|
|
687
|
+
if (this.logger)
|
|
688
|
+
retrier.logger = this.logger;
|
|
660
689
|
const request = yield oci_common_2.composeRequest({
|
|
661
690
|
baseEndpoint: this._endpoint,
|
|
662
691
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -699,11 +728,12 @@ class LoadBalancerClient {
|
|
|
699
728
|
* @param CreateRoutingPolicyRequest
|
|
700
729
|
* @return CreateRoutingPolicyResponse
|
|
701
730
|
* @throws OciError when an error occurs
|
|
702
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
731
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
|
|
703
732
|
*/
|
|
704
733
|
createRoutingPolicy(createRoutingPolicyRequest) {
|
|
705
734
|
return __awaiter(this, void 0, void 0, function* () {
|
|
706
|
-
|
|
735
|
+
if (this.logger)
|
|
736
|
+
this.logger.debug("Calling operation LoadBalancerClient#createRoutingPolicy.");
|
|
707
737
|
const operationName = "createRoutingPolicy";
|
|
708
738
|
const apiReferenceLink = "";
|
|
709
739
|
const pathParams = {
|
|
@@ -718,6 +748,8 @@ class LoadBalancerClient {
|
|
|
718
748
|
};
|
|
719
749
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
720
750
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
751
|
+
if (this.logger)
|
|
752
|
+
retrier.logger = this.logger;
|
|
721
753
|
const request = yield oci_common_2.composeRequest({
|
|
722
754
|
baseEndpoint: this._endpoint,
|
|
723
755
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -760,11 +792,12 @@ class LoadBalancerClient {
|
|
|
760
792
|
* @param CreateRuleSetRequest
|
|
761
793
|
* @return CreateRuleSetResponse
|
|
762
794
|
* @throws OciError when an error occurs
|
|
763
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
795
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
|
|
764
796
|
*/
|
|
765
797
|
createRuleSet(createRuleSetRequest) {
|
|
766
798
|
return __awaiter(this, void 0, void 0, function* () {
|
|
767
|
-
|
|
799
|
+
if (this.logger)
|
|
800
|
+
this.logger.debug("Calling operation LoadBalancerClient#createRuleSet.");
|
|
768
801
|
const operationName = "createRuleSet";
|
|
769
802
|
const apiReferenceLink = "";
|
|
770
803
|
const pathParams = {
|
|
@@ -779,6 +812,8 @@ class LoadBalancerClient {
|
|
|
779
812
|
};
|
|
780
813
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
781
814
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createRuleSetRequest.retryConfiguration, specRetryConfiguration);
|
|
815
|
+
if (this.logger)
|
|
816
|
+
retrier.logger = this.logger;
|
|
782
817
|
const request = yield oci_common_2.composeRequest({
|
|
783
818
|
baseEndpoint: this._endpoint,
|
|
784
819
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -819,11 +854,12 @@ class LoadBalancerClient {
|
|
|
819
854
|
* @param CreateSSLCipherSuiteRequest
|
|
820
855
|
* @return CreateSSLCipherSuiteResponse
|
|
821
856
|
* @throws OciError when an error occurs
|
|
822
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
857
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
|
|
823
858
|
*/
|
|
824
859
|
createSSLCipherSuite(createSSLCipherSuiteRequest) {
|
|
825
860
|
return __awaiter(this, void 0, void 0, function* () {
|
|
826
|
-
|
|
861
|
+
if (this.logger)
|
|
862
|
+
this.logger.debug("Calling operation LoadBalancerClient#createSSLCipherSuite.");
|
|
827
863
|
const operationName = "createSSLCipherSuite";
|
|
828
864
|
const apiReferenceLink = "";
|
|
829
865
|
const pathParams = {
|
|
@@ -838,6 +874,8 @@ class LoadBalancerClient {
|
|
|
838
874
|
};
|
|
839
875
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
840
876
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
|
|
877
|
+
if (this.logger)
|
|
878
|
+
retrier.logger = this.logger;
|
|
841
879
|
const request = yield oci_common_2.composeRequest({
|
|
842
880
|
baseEndpoint: this._endpoint,
|
|
843
881
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -878,11 +916,12 @@ class LoadBalancerClient {
|
|
|
878
916
|
* @param DeleteBackendRequest
|
|
879
917
|
* @return DeleteBackendResponse
|
|
880
918
|
* @throws OciError when an error occurs
|
|
881
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
919
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
|
|
882
920
|
*/
|
|
883
921
|
deleteBackend(deleteBackendRequest) {
|
|
884
922
|
return __awaiter(this, void 0, void 0, function* () {
|
|
885
|
-
|
|
923
|
+
if (this.logger)
|
|
924
|
+
this.logger.debug("Calling operation LoadBalancerClient#deleteBackend.");
|
|
886
925
|
const operationName = "deleteBackend";
|
|
887
926
|
const apiReferenceLink = "";
|
|
888
927
|
const pathParams = {
|
|
@@ -898,6 +937,8 @@ class LoadBalancerClient {
|
|
|
898
937
|
};
|
|
899
938
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
900
939
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBackendRequest.retryConfiguration, specRetryConfiguration);
|
|
940
|
+
if (this.logger)
|
|
941
|
+
retrier.logger = this.logger;
|
|
901
942
|
const request = yield oci_common_2.composeRequest({
|
|
902
943
|
baseEndpoint: this._endpoint,
|
|
903
944
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -940,11 +981,12 @@ class LoadBalancerClient {
|
|
|
940
981
|
* @param DeleteBackendSetRequest
|
|
941
982
|
* @return DeleteBackendSetResponse
|
|
942
983
|
* @throws OciError when an error occurs
|
|
943
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
984
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
|
|
944
985
|
*/
|
|
945
986
|
deleteBackendSet(deleteBackendSetRequest) {
|
|
946
987
|
return __awaiter(this, void 0, void 0, function* () {
|
|
947
|
-
|
|
988
|
+
if (this.logger)
|
|
989
|
+
this.logger.debug("Calling operation LoadBalancerClient#deleteBackendSet.");
|
|
948
990
|
const operationName = "deleteBackendSet";
|
|
949
991
|
const apiReferenceLink = "";
|
|
950
992
|
const pathParams = {
|
|
@@ -959,6 +1001,8 @@ class LoadBalancerClient {
|
|
|
959
1001
|
};
|
|
960
1002
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
961
1003
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBackendSetRequest.retryConfiguration, specRetryConfiguration);
|
|
1004
|
+
if (this.logger)
|
|
1005
|
+
retrier.logger = this.logger;
|
|
962
1006
|
const request = yield oci_common_2.composeRequest({
|
|
963
1007
|
baseEndpoint: this._endpoint,
|
|
964
1008
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -998,11 +1042,12 @@ class LoadBalancerClient {
|
|
|
998
1042
|
* @param DeleteCertificateRequest
|
|
999
1043
|
* @return DeleteCertificateResponse
|
|
1000
1044
|
* @throws OciError when an error occurs
|
|
1001
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1045
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
|
|
1002
1046
|
*/
|
|
1003
1047
|
deleteCertificate(deleteCertificateRequest) {
|
|
1004
1048
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1005
|
-
|
|
1049
|
+
if (this.logger)
|
|
1050
|
+
this.logger.debug("Calling operation LoadBalancerClient#deleteCertificate.");
|
|
1006
1051
|
const operationName = "deleteCertificate";
|
|
1007
1052
|
const apiReferenceLink = "";
|
|
1008
1053
|
const pathParams = {
|
|
@@ -1017,6 +1062,8 @@ class LoadBalancerClient {
|
|
|
1017
1062
|
};
|
|
1018
1063
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1019
1064
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteCertificateRequest.retryConfiguration, specRetryConfiguration);
|
|
1065
|
+
if (this.logger)
|
|
1066
|
+
retrier.logger = this.logger;
|
|
1020
1067
|
const request = yield oci_common_2.composeRequest({
|
|
1021
1068
|
baseEndpoint: this._endpoint,
|
|
1022
1069
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1057,11 +1104,12 @@ class LoadBalancerClient {
|
|
|
1057
1104
|
* @param DeleteHostnameRequest
|
|
1058
1105
|
* @return DeleteHostnameResponse
|
|
1059
1106
|
* @throws OciError when an error occurs
|
|
1060
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1107
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
|
|
1061
1108
|
*/
|
|
1062
1109
|
deleteHostname(deleteHostnameRequest) {
|
|
1063
1110
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1064
|
-
|
|
1111
|
+
if (this.logger)
|
|
1112
|
+
this.logger.debug("Calling operation LoadBalancerClient#deleteHostname.");
|
|
1065
1113
|
const operationName = "deleteHostname";
|
|
1066
1114
|
const apiReferenceLink = "";
|
|
1067
1115
|
const pathParams = {
|
|
@@ -1076,6 +1124,8 @@ class LoadBalancerClient {
|
|
|
1076
1124
|
};
|
|
1077
1125
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1078
1126
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteHostnameRequest.retryConfiguration, specRetryConfiguration);
|
|
1127
|
+
if (this.logger)
|
|
1128
|
+
retrier.logger = this.logger;
|
|
1079
1129
|
const request = yield oci_common_2.composeRequest({
|
|
1080
1130
|
baseEndpoint: this._endpoint,
|
|
1081
1131
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1115,11 +1165,12 @@ class LoadBalancerClient {
|
|
|
1115
1165
|
* @param DeleteListenerRequest
|
|
1116
1166
|
* @return DeleteListenerResponse
|
|
1117
1167
|
* @throws OciError when an error occurs
|
|
1118
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1168
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
|
|
1119
1169
|
*/
|
|
1120
1170
|
deleteListener(deleteListenerRequest) {
|
|
1121
1171
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1122
|
-
|
|
1172
|
+
if (this.logger)
|
|
1173
|
+
this.logger.debug("Calling operation LoadBalancerClient#deleteListener.");
|
|
1123
1174
|
const operationName = "deleteListener";
|
|
1124
1175
|
const apiReferenceLink = "";
|
|
1125
1176
|
const pathParams = {
|
|
@@ -1134,6 +1185,8 @@ class LoadBalancerClient {
|
|
|
1134
1185
|
};
|
|
1135
1186
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1136
1187
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteListenerRequest.retryConfiguration, specRetryConfiguration);
|
|
1188
|
+
if (this.logger)
|
|
1189
|
+
retrier.logger = this.logger;
|
|
1137
1190
|
const request = yield oci_common_2.composeRequest({
|
|
1138
1191
|
baseEndpoint: this._endpoint,
|
|
1139
1192
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1173,11 +1226,12 @@ class LoadBalancerClient {
|
|
|
1173
1226
|
* @param DeleteLoadBalancerRequest
|
|
1174
1227
|
* @return DeleteLoadBalancerResponse
|
|
1175
1228
|
* @throws OciError when an error occurs
|
|
1176
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
|
|
1177
1230
|
*/
|
|
1178
1231
|
deleteLoadBalancer(deleteLoadBalancerRequest) {
|
|
1179
1232
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1180
|
-
|
|
1233
|
+
if (this.logger)
|
|
1234
|
+
this.logger.debug("Calling operation LoadBalancerClient#deleteLoadBalancer.");
|
|
1181
1235
|
const operationName = "deleteLoadBalancer";
|
|
1182
1236
|
const apiReferenceLink = "";
|
|
1183
1237
|
const pathParams = {
|
|
@@ -1191,6 +1245,8 @@ class LoadBalancerClient {
|
|
|
1191
1245
|
};
|
|
1192
1246
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1193
1247
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
|
|
1248
|
+
if (this.logger)
|
|
1249
|
+
retrier.logger = this.logger;
|
|
1194
1250
|
const request = yield oci_common_2.composeRequest({
|
|
1195
1251
|
baseEndpoint: this._endpoint,
|
|
1196
1252
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1234,11 +1290,12 @@ class LoadBalancerClient {
|
|
|
1234
1290
|
* @param DeletePathRouteSetRequest
|
|
1235
1291
|
* @return DeletePathRouteSetResponse
|
|
1236
1292
|
* @throws OciError when an error occurs
|
|
1237
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1293
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
|
|
1238
1294
|
*/
|
|
1239
1295
|
deletePathRouteSet(deletePathRouteSetRequest) {
|
|
1240
1296
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1241
|
-
|
|
1297
|
+
if (this.logger)
|
|
1298
|
+
this.logger.debug("Calling operation LoadBalancerClient#deletePathRouteSet.");
|
|
1242
1299
|
const operationName = "deletePathRouteSet";
|
|
1243
1300
|
const apiReferenceLink = "";
|
|
1244
1301
|
const pathParams = {
|
|
@@ -1253,6 +1310,8 @@ class LoadBalancerClient {
|
|
|
1253
1310
|
};
|
|
1254
1311
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1255
1312
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePathRouteSetRequest.retryConfiguration, specRetryConfiguration);
|
|
1313
|
+
if (this.logger)
|
|
1314
|
+
retrier.logger = this.logger;
|
|
1256
1315
|
const request = yield oci_common_2.composeRequest({
|
|
1257
1316
|
baseEndpoint: this._endpoint,
|
|
1258
1317
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1296,11 +1355,12 @@ class LoadBalancerClient {
|
|
|
1296
1355
|
* @param DeleteRoutingPolicyRequest
|
|
1297
1356
|
* @return DeleteRoutingPolicyResponse
|
|
1298
1357
|
* @throws OciError when an error occurs
|
|
1299
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1358
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
|
|
1300
1359
|
*/
|
|
1301
1360
|
deleteRoutingPolicy(deleteRoutingPolicyRequest) {
|
|
1302
1361
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1303
|
-
|
|
1362
|
+
if (this.logger)
|
|
1363
|
+
this.logger.debug("Calling operation LoadBalancerClient#deleteRoutingPolicy.");
|
|
1304
1364
|
const operationName = "deleteRoutingPolicy";
|
|
1305
1365
|
const apiReferenceLink = "";
|
|
1306
1366
|
const pathParams = {
|
|
@@ -1315,6 +1375,8 @@ class LoadBalancerClient {
|
|
|
1315
1375
|
};
|
|
1316
1376
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1317
1377
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
1378
|
+
if (this.logger)
|
|
1379
|
+
retrier.logger = this.logger;
|
|
1318
1380
|
const request = yield oci_common_2.composeRequest({
|
|
1319
1381
|
baseEndpoint: this._endpoint,
|
|
1320
1382
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1358,11 +1420,12 @@ class LoadBalancerClient {
|
|
|
1358
1420
|
* @param DeleteRuleSetRequest
|
|
1359
1421
|
* @return DeleteRuleSetResponse
|
|
1360
1422
|
* @throws OciError when an error occurs
|
|
1361
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1423
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
|
|
1362
1424
|
*/
|
|
1363
1425
|
deleteRuleSet(deleteRuleSetRequest) {
|
|
1364
1426
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1365
|
-
|
|
1427
|
+
if (this.logger)
|
|
1428
|
+
this.logger.debug("Calling operation LoadBalancerClient#deleteRuleSet.");
|
|
1366
1429
|
const operationName = "deleteRuleSet";
|
|
1367
1430
|
const apiReferenceLink = "";
|
|
1368
1431
|
const pathParams = {
|
|
@@ -1377,6 +1440,8 @@ class LoadBalancerClient {
|
|
|
1377
1440
|
};
|
|
1378
1441
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1379
1442
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteRuleSetRequest.retryConfiguration, specRetryConfiguration);
|
|
1443
|
+
if (this.logger)
|
|
1444
|
+
retrier.logger = this.logger;
|
|
1380
1445
|
const request = yield oci_common_2.composeRequest({
|
|
1381
1446
|
baseEndpoint: this._endpoint,
|
|
1382
1447
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1416,11 +1481,12 @@ class LoadBalancerClient {
|
|
|
1416
1481
|
* @param DeleteSSLCipherSuiteRequest
|
|
1417
1482
|
* @return DeleteSSLCipherSuiteResponse
|
|
1418
1483
|
* @throws OciError when an error occurs
|
|
1419
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1484
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
|
|
1420
1485
|
*/
|
|
1421
1486
|
deleteSSLCipherSuite(deleteSSLCipherSuiteRequest) {
|
|
1422
1487
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1423
|
-
|
|
1488
|
+
if (this.logger)
|
|
1489
|
+
this.logger.debug("Calling operation LoadBalancerClient#deleteSSLCipherSuite.");
|
|
1424
1490
|
const operationName = "deleteSSLCipherSuite";
|
|
1425
1491
|
const apiReferenceLink = "";
|
|
1426
1492
|
const pathParams = {
|
|
@@ -1435,6 +1501,8 @@ class LoadBalancerClient {
|
|
|
1435
1501
|
};
|
|
1436
1502
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1437
1503
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
|
|
1504
|
+
if (this.logger)
|
|
1505
|
+
retrier.logger = this.logger;
|
|
1438
1506
|
const request = yield oci_common_2.composeRequest({
|
|
1439
1507
|
baseEndpoint: this._endpoint,
|
|
1440
1508
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1474,11 +1542,12 @@ class LoadBalancerClient {
|
|
|
1474
1542
|
* @param GetBackendRequest
|
|
1475
1543
|
* @return GetBackendResponse
|
|
1476
1544
|
* @throws OciError when an error occurs
|
|
1477
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1545
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
|
|
1478
1546
|
*/
|
|
1479
1547
|
getBackend(getBackendRequest) {
|
|
1480
1548
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1481
|
-
|
|
1549
|
+
if (this.logger)
|
|
1550
|
+
this.logger.debug("Calling operation LoadBalancerClient#getBackend.");
|
|
1482
1551
|
const operationName = "getBackend";
|
|
1483
1552
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Backend/GetBackend";
|
|
1484
1553
|
const pathParams = {
|
|
@@ -1494,6 +1563,8 @@ class LoadBalancerClient {
|
|
|
1494
1563
|
};
|
|
1495
1564
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1496
1565
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendRequest.retryConfiguration, specRetryConfiguration);
|
|
1566
|
+
if (this.logger)
|
|
1567
|
+
retrier.logger = this.logger;
|
|
1497
1568
|
const request = yield oci_common_2.composeRequest({
|
|
1498
1569
|
baseEndpoint: this._endpoint,
|
|
1499
1570
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1537,11 +1608,12 @@ class LoadBalancerClient {
|
|
|
1537
1608
|
* @param GetBackendHealthRequest
|
|
1538
1609
|
* @return GetBackendHealthResponse
|
|
1539
1610
|
* @throws OciError when an error occurs
|
|
1540
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1611
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
|
|
1541
1612
|
*/
|
|
1542
1613
|
getBackendHealth(getBackendHealthRequest) {
|
|
1543
1614
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1544
|
-
|
|
1615
|
+
if (this.logger)
|
|
1616
|
+
this.logger.debug("Calling operation LoadBalancerClient#getBackendHealth.");
|
|
1545
1617
|
const operationName = "getBackendHealth";
|
|
1546
1618
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/BackendHealth/GetBackendHealth";
|
|
1547
1619
|
const pathParams = {
|
|
@@ -1557,6 +1629,8 @@ class LoadBalancerClient {
|
|
|
1557
1629
|
};
|
|
1558
1630
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1559
1631
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendHealthRequest.retryConfiguration, specRetryConfiguration);
|
|
1632
|
+
if (this.logger)
|
|
1633
|
+
retrier.logger = this.logger;
|
|
1560
1634
|
const request = yield oci_common_2.composeRequest({
|
|
1561
1635
|
baseEndpoint: this._endpoint,
|
|
1562
1636
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1600,11 +1674,12 @@ class LoadBalancerClient {
|
|
|
1600
1674
|
* @param GetBackendSetRequest
|
|
1601
1675
|
* @return GetBackendSetResponse
|
|
1602
1676
|
* @throws OciError when an error occurs
|
|
1603
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1677
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
|
|
1604
1678
|
*/
|
|
1605
1679
|
getBackendSet(getBackendSetRequest) {
|
|
1606
1680
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1607
|
-
|
|
1681
|
+
if (this.logger)
|
|
1682
|
+
this.logger.debug("Calling operation LoadBalancerClient#getBackendSet.");
|
|
1608
1683
|
const operationName = "getBackendSet";
|
|
1609
1684
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/BackendSet/GetBackendSet";
|
|
1610
1685
|
const pathParams = {
|
|
@@ -1619,6 +1694,8 @@ class LoadBalancerClient {
|
|
|
1619
1694
|
};
|
|
1620
1695
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1621
1696
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendSetRequest.retryConfiguration, specRetryConfiguration);
|
|
1697
|
+
if (this.logger)
|
|
1698
|
+
retrier.logger = this.logger;
|
|
1622
1699
|
const request = yield oci_common_2.composeRequest({
|
|
1623
1700
|
baseEndpoint: this._endpoint,
|
|
1624
1701
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1662,11 +1739,12 @@ class LoadBalancerClient {
|
|
|
1662
1739
|
* @param GetBackendSetHealthRequest
|
|
1663
1740
|
* @return GetBackendSetHealthResponse
|
|
1664
1741
|
* @throws OciError when an error occurs
|
|
1665
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1742
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
|
|
1666
1743
|
*/
|
|
1667
1744
|
getBackendSetHealth(getBackendSetHealthRequest) {
|
|
1668
1745
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1669
|
-
|
|
1746
|
+
if (this.logger)
|
|
1747
|
+
this.logger.debug("Calling operation LoadBalancerClient#getBackendSetHealth.");
|
|
1670
1748
|
const operationName = "getBackendSetHealth";
|
|
1671
1749
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/BackendSetHealth/GetBackendSetHealth";
|
|
1672
1750
|
const pathParams = {
|
|
@@ -1681,6 +1759,8 @@ class LoadBalancerClient {
|
|
|
1681
1759
|
};
|
|
1682
1760
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1683
1761
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBackendSetHealthRequest.retryConfiguration, specRetryConfiguration);
|
|
1762
|
+
if (this.logger)
|
|
1763
|
+
retrier.logger = this.logger;
|
|
1684
1764
|
const request = yield oci_common_2.composeRequest({
|
|
1685
1765
|
baseEndpoint: this._endpoint,
|
|
1686
1766
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1724,11 +1804,12 @@ class LoadBalancerClient {
|
|
|
1724
1804
|
* @param GetHealthCheckerRequest
|
|
1725
1805
|
* @return GetHealthCheckerResponse
|
|
1726
1806
|
* @throws OciError when an error occurs
|
|
1727
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1807
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
|
|
1728
1808
|
*/
|
|
1729
1809
|
getHealthChecker(getHealthCheckerRequest) {
|
|
1730
1810
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1731
|
-
|
|
1811
|
+
if (this.logger)
|
|
1812
|
+
this.logger.debug("Calling operation LoadBalancerClient#getHealthChecker.");
|
|
1732
1813
|
const operationName = "getHealthChecker";
|
|
1733
1814
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/HealthChecker/GetHealthChecker";
|
|
1734
1815
|
const pathParams = {
|
|
@@ -1743,6 +1824,8 @@ class LoadBalancerClient {
|
|
|
1743
1824
|
};
|
|
1744
1825
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1745
1826
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getHealthCheckerRequest.retryConfiguration, specRetryConfiguration);
|
|
1827
|
+
if (this.logger)
|
|
1828
|
+
retrier.logger = this.logger;
|
|
1746
1829
|
const request = yield oci_common_2.composeRequest({
|
|
1747
1830
|
baseEndpoint: this._endpoint,
|
|
1748
1831
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1786,11 +1869,12 @@ class LoadBalancerClient {
|
|
|
1786
1869
|
* @param GetHostnameRequest
|
|
1787
1870
|
* @return GetHostnameResponse
|
|
1788
1871
|
* @throws OciError when an error occurs
|
|
1789
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1872
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
|
|
1790
1873
|
*/
|
|
1791
1874
|
getHostname(getHostnameRequest) {
|
|
1792
1875
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1793
|
-
|
|
1876
|
+
if (this.logger)
|
|
1877
|
+
this.logger.debug("Calling operation LoadBalancerClient#getHostname.");
|
|
1794
1878
|
const operationName = "getHostname";
|
|
1795
1879
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Hostname/GetHostname";
|
|
1796
1880
|
const pathParams = {
|
|
@@ -1805,6 +1889,8 @@ class LoadBalancerClient {
|
|
|
1805
1889
|
};
|
|
1806
1890
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1807
1891
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getHostnameRequest.retryConfiguration, specRetryConfiguration);
|
|
1892
|
+
if (this.logger)
|
|
1893
|
+
retrier.logger = this.logger;
|
|
1808
1894
|
const request = yield oci_common_2.composeRequest({
|
|
1809
1895
|
baseEndpoint: this._endpoint,
|
|
1810
1896
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1848,11 +1934,12 @@ class LoadBalancerClient {
|
|
|
1848
1934
|
* @param GetLoadBalancerRequest
|
|
1849
1935
|
* @return GetLoadBalancerResponse
|
|
1850
1936
|
* @throws OciError when an error occurs
|
|
1851
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1937
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
|
|
1852
1938
|
*/
|
|
1853
1939
|
getLoadBalancer(getLoadBalancerRequest) {
|
|
1854
1940
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1855
|
-
|
|
1941
|
+
if (this.logger)
|
|
1942
|
+
this.logger.debug("Calling operation LoadBalancerClient#getLoadBalancer.");
|
|
1856
1943
|
const operationName = "getLoadBalancer";
|
|
1857
1944
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancer/GetLoadBalancer";
|
|
1858
1945
|
const pathParams = {
|
|
@@ -1866,6 +1953,8 @@ class LoadBalancerClient {
|
|
|
1866
1953
|
};
|
|
1867
1954
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1868
1955
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
|
|
1956
|
+
if (this.logger)
|
|
1957
|
+
retrier.logger = this.logger;
|
|
1869
1958
|
const request = yield oci_common_2.composeRequest({
|
|
1870
1959
|
baseEndpoint: this._endpoint,
|
|
1871
1960
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1909,11 +1998,12 @@ class LoadBalancerClient {
|
|
|
1909
1998
|
* @param GetLoadBalancerHealthRequest
|
|
1910
1999
|
* @return GetLoadBalancerHealthResponse
|
|
1911
2000
|
* @throws OciError when an error occurs
|
|
1912
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2001
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
|
|
1913
2002
|
*/
|
|
1914
2003
|
getLoadBalancerHealth(getLoadBalancerHealthRequest) {
|
|
1915
2004
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1916
|
-
|
|
2005
|
+
if (this.logger)
|
|
2006
|
+
this.logger.debug("Calling operation LoadBalancerClient#getLoadBalancerHealth.");
|
|
1917
2007
|
const operationName = "getLoadBalancerHealth";
|
|
1918
2008
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerHealth/GetLoadBalancerHealth";
|
|
1919
2009
|
const pathParams = {
|
|
@@ -1927,6 +2017,8 @@ class LoadBalancerClient {
|
|
|
1927
2017
|
};
|
|
1928
2018
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1929
2019
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getLoadBalancerHealthRequest.retryConfiguration, specRetryConfiguration);
|
|
2020
|
+
if (this.logger)
|
|
2021
|
+
retrier.logger = this.logger;
|
|
1930
2022
|
const request = yield oci_common_2.composeRequest({
|
|
1931
2023
|
baseEndpoint: this._endpoint,
|
|
1932
2024
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1970,11 +2062,12 @@ class LoadBalancerClient {
|
|
|
1970
2062
|
* @param GetPathRouteSetRequest
|
|
1971
2063
|
* @return GetPathRouteSetResponse
|
|
1972
2064
|
* @throws OciError when an error occurs
|
|
1973
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2065
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
|
|
1974
2066
|
*/
|
|
1975
2067
|
getPathRouteSet(getPathRouteSetRequest) {
|
|
1976
2068
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1977
|
-
|
|
2069
|
+
if (this.logger)
|
|
2070
|
+
this.logger.debug("Calling operation LoadBalancerClient#getPathRouteSet.");
|
|
1978
2071
|
const operationName = "getPathRouteSet";
|
|
1979
2072
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/PathRouteSet/GetPathRouteSet";
|
|
1980
2073
|
const pathParams = {
|
|
@@ -1989,6 +2082,8 @@ class LoadBalancerClient {
|
|
|
1989
2082
|
};
|
|
1990
2083
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1991
2084
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPathRouteSetRequest.retryConfiguration, specRetryConfiguration);
|
|
2085
|
+
if (this.logger)
|
|
2086
|
+
retrier.logger = this.logger;
|
|
1992
2087
|
const request = yield oci_common_2.composeRequest({
|
|
1993
2088
|
baseEndpoint: this._endpoint,
|
|
1994
2089
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2032,11 +2127,12 @@ class LoadBalancerClient {
|
|
|
2032
2127
|
* @param GetRoutingPolicyRequest
|
|
2033
2128
|
* @return GetRoutingPolicyResponse
|
|
2034
2129
|
* @throws OciError when an error occurs
|
|
2035
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2130
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
|
|
2036
2131
|
*/
|
|
2037
2132
|
getRoutingPolicy(getRoutingPolicyRequest) {
|
|
2038
2133
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2039
|
-
|
|
2134
|
+
if (this.logger)
|
|
2135
|
+
this.logger.debug("Calling operation LoadBalancerClient#getRoutingPolicy.");
|
|
2040
2136
|
const operationName = "getRoutingPolicy";
|
|
2041
2137
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/RoutingPolicy/GetRoutingPolicy";
|
|
2042
2138
|
const pathParams = {
|
|
@@ -2051,6 +2147,8 @@ class LoadBalancerClient {
|
|
|
2051
2147
|
};
|
|
2052
2148
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2053
2149
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
2150
|
+
if (this.logger)
|
|
2151
|
+
retrier.logger = this.logger;
|
|
2054
2152
|
const request = yield oci_common_2.composeRequest({
|
|
2055
2153
|
baseEndpoint: this._endpoint,
|
|
2056
2154
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2094,11 +2192,12 @@ class LoadBalancerClient {
|
|
|
2094
2192
|
* @param GetRuleSetRequest
|
|
2095
2193
|
* @return GetRuleSetResponse
|
|
2096
2194
|
* @throws OciError when an error occurs
|
|
2097
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2195
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
|
|
2098
2196
|
*/
|
|
2099
2197
|
getRuleSet(getRuleSetRequest) {
|
|
2100
2198
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2101
|
-
|
|
2199
|
+
if (this.logger)
|
|
2200
|
+
this.logger.debug("Calling operation LoadBalancerClient#getRuleSet.");
|
|
2102
2201
|
const operationName = "getRuleSet";
|
|
2103
2202
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/RuleSet/GetRuleSet";
|
|
2104
2203
|
const pathParams = {
|
|
@@ -2113,6 +2212,8 @@ class LoadBalancerClient {
|
|
|
2113
2212
|
};
|
|
2114
2213
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2115
2214
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getRuleSetRequest.retryConfiguration, specRetryConfiguration);
|
|
2215
|
+
if (this.logger)
|
|
2216
|
+
retrier.logger = this.logger;
|
|
2116
2217
|
const request = yield oci_common_2.composeRequest({
|
|
2117
2218
|
baseEndpoint: this._endpoint,
|
|
2118
2219
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2156,11 +2257,12 @@ class LoadBalancerClient {
|
|
|
2156
2257
|
* @param GetSSLCipherSuiteRequest
|
|
2157
2258
|
* @return GetSSLCipherSuiteResponse
|
|
2158
2259
|
* @throws OciError when an error occurs
|
|
2159
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2260
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
|
|
2160
2261
|
*/
|
|
2161
2262
|
getSSLCipherSuite(getSSLCipherSuiteRequest) {
|
|
2162
2263
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2163
|
-
|
|
2264
|
+
if (this.logger)
|
|
2265
|
+
this.logger.debug("Calling operation LoadBalancerClient#getSSLCipherSuite.");
|
|
2164
2266
|
const operationName = "getSSLCipherSuite";
|
|
2165
2267
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/SSLCipherSuite/GetSSLCipherSuite";
|
|
2166
2268
|
const pathParams = {
|
|
@@ -2175,6 +2277,8 @@ class LoadBalancerClient {
|
|
|
2175
2277
|
};
|
|
2176
2278
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2177
2279
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
|
|
2280
|
+
if (this.logger)
|
|
2281
|
+
retrier.logger = this.logger;
|
|
2178
2282
|
const request = yield oci_common_2.composeRequest({
|
|
2179
2283
|
baseEndpoint: this._endpoint,
|
|
2180
2284
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2218,11 +2322,12 @@ class LoadBalancerClient {
|
|
|
2218
2322
|
* @param GetWorkRequestRequest
|
|
2219
2323
|
* @return GetWorkRequestResponse
|
|
2220
2324
|
* @throws OciError when an error occurs
|
|
2221
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2325
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
2222
2326
|
*/
|
|
2223
2327
|
getWorkRequest(getWorkRequestRequest) {
|
|
2224
2328
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2225
|
-
|
|
2329
|
+
if (this.logger)
|
|
2330
|
+
this.logger.debug("Calling operation LoadBalancerClient#getWorkRequest.");
|
|
2226
2331
|
const operationName = "getWorkRequest";
|
|
2227
2332
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/WorkRequest/GetWorkRequest";
|
|
2228
2333
|
const pathParams = {
|
|
@@ -2235,6 +2340,8 @@ class LoadBalancerClient {
|
|
|
2235
2340
|
};
|
|
2236
2341
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2237
2342
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
|
|
2343
|
+
if (this.logger)
|
|
2344
|
+
retrier.logger = this.logger;
|
|
2238
2345
|
const request = yield oci_common_2.composeRequest({
|
|
2239
2346
|
baseEndpoint: this._endpoint,
|
|
2240
2347
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2273,11 +2380,12 @@ class LoadBalancerClient {
|
|
|
2273
2380
|
* @param ListBackendSetsRequest
|
|
2274
2381
|
* @return ListBackendSetsResponse
|
|
2275
2382
|
* @throws OciError when an error occurs
|
|
2276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2383
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
|
|
2277
2384
|
*/
|
|
2278
2385
|
listBackendSets(listBackendSetsRequest) {
|
|
2279
2386
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2280
|
-
|
|
2387
|
+
if (this.logger)
|
|
2388
|
+
this.logger.debug("Calling operation LoadBalancerClient#listBackendSets.");
|
|
2281
2389
|
const operationName = "listBackendSets";
|
|
2282
2390
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/BackendSet/ListBackendSets";
|
|
2283
2391
|
const pathParams = {
|
|
@@ -2291,6 +2399,8 @@ class LoadBalancerClient {
|
|
|
2291
2399
|
};
|
|
2292
2400
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2293
2401
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBackendSetsRequest.retryConfiguration, specRetryConfiguration);
|
|
2402
|
+
if (this.logger)
|
|
2403
|
+
retrier.logger = this.logger;
|
|
2294
2404
|
const request = yield oci_common_2.composeRequest({
|
|
2295
2405
|
baseEndpoint: this._endpoint,
|
|
2296
2406
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2334,11 +2444,12 @@ class LoadBalancerClient {
|
|
|
2334
2444
|
* @param ListBackendsRequest
|
|
2335
2445
|
* @return ListBackendsResponse
|
|
2336
2446
|
* @throws OciError when an error occurs
|
|
2337
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2447
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
|
|
2338
2448
|
*/
|
|
2339
2449
|
listBackends(listBackendsRequest) {
|
|
2340
2450
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2341
|
-
|
|
2451
|
+
if (this.logger)
|
|
2452
|
+
this.logger.debug("Calling operation LoadBalancerClient#listBackends.");
|
|
2342
2453
|
const operationName = "listBackends";
|
|
2343
2454
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Backend/ListBackends";
|
|
2344
2455
|
const pathParams = {
|
|
@@ -2353,6 +2464,8 @@ class LoadBalancerClient {
|
|
|
2353
2464
|
};
|
|
2354
2465
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2355
2466
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBackendsRequest.retryConfiguration, specRetryConfiguration);
|
|
2467
|
+
if (this.logger)
|
|
2468
|
+
retrier.logger = this.logger;
|
|
2356
2469
|
const request = yield oci_common_2.composeRequest({
|
|
2357
2470
|
baseEndpoint: this._endpoint,
|
|
2358
2471
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2396,11 +2509,12 @@ class LoadBalancerClient {
|
|
|
2396
2509
|
* @param ListCertificatesRequest
|
|
2397
2510
|
* @return ListCertificatesResponse
|
|
2398
2511
|
* @throws OciError when an error occurs
|
|
2399
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2512
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
|
|
2400
2513
|
*/
|
|
2401
2514
|
listCertificates(listCertificatesRequest) {
|
|
2402
2515
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2403
|
-
|
|
2516
|
+
if (this.logger)
|
|
2517
|
+
this.logger.debug("Calling operation LoadBalancerClient#listCertificates.");
|
|
2404
2518
|
const operationName = "listCertificates";
|
|
2405
2519
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Certificate/ListCertificates";
|
|
2406
2520
|
const pathParams = {
|
|
@@ -2414,6 +2528,8 @@ class LoadBalancerClient {
|
|
|
2414
2528
|
};
|
|
2415
2529
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2416
2530
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listCertificatesRequest.retryConfiguration, specRetryConfiguration);
|
|
2531
|
+
if (this.logger)
|
|
2532
|
+
retrier.logger = this.logger;
|
|
2417
2533
|
const request = yield oci_common_2.composeRequest({
|
|
2418
2534
|
baseEndpoint: this._endpoint,
|
|
2419
2535
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2457,11 +2573,12 @@ class LoadBalancerClient {
|
|
|
2457
2573
|
* @param ListHostnamesRequest
|
|
2458
2574
|
* @return ListHostnamesResponse
|
|
2459
2575
|
* @throws OciError when an error occurs
|
|
2460
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2576
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
|
|
2461
2577
|
*/
|
|
2462
2578
|
listHostnames(listHostnamesRequest) {
|
|
2463
2579
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2464
|
-
|
|
2580
|
+
if (this.logger)
|
|
2581
|
+
this.logger.debug("Calling operation LoadBalancerClient#listHostnames.");
|
|
2465
2582
|
const operationName = "listHostnames";
|
|
2466
2583
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/Hostname/ListHostnames";
|
|
2467
2584
|
const pathParams = {
|
|
@@ -2475,6 +2592,8 @@ class LoadBalancerClient {
|
|
|
2475
2592
|
};
|
|
2476
2593
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2477
2594
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listHostnamesRequest.retryConfiguration, specRetryConfiguration);
|
|
2595
|
+
if (this.logger)
|
|
2596
|
+
retrier.logger = this.logger;
|
|
2478
2597
|
const request = yield oci_common_2.composeRequest({
|
|
2479
2598
|
baseEndpoint: this._endpoint,
|
|
2480
2599
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2525,11 +2644,12 @@ class LoadBalancerClient {
|
|
|
2525
2644
|
* @param ListListenerRulesRequest
|
|
2526
2645
|
* @return ListListenerRulesResponse
|
|
2527
2646
|
* @throws OciError when an error occurs
|
|
2528
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2647
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
|
|
2529
2648
|
*/
|
|
2530
2649
|
listListenerRules(listListenerRulesRequest) {
|
|
2531
2650
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2532
|
-
|
|
2651
|
+
if (this.logger)
|
|
2652
|
+
this.logger.debug("Calling operation LoadBalancerClient#listListenerRules.");
|
|
2533
2653
|
const operationName = "listListenerRules";
|
|
2534
2654
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/ListenerRuleSummary/ListListenerRules";
|
|
2535
2655
|
const pathParams = {
|
|
@@ -2544,6 +2664,8 @@ class LoadBalancerClient {
|
|
|
2544
2664
|
};
|
|
2545
2665
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2546
2666
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listListenerRulesRequest.retryConfiguration, specRetryConfiguration);
|
|
2667
|
+
if (this.logger)
|
|
2668
|
+
retrier.logger = this.logger;
|
|
2547
2669
|
const request = yield oci_common_2.composeRequest({
|
|
2548
2670
|
baseEndpoint: this._endpoint,
|
|
2549
2671
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2587,11 +2709,12 @@ class LoadBalancerClient {
|
|
|
2587
2709
|
* @param ListLoadBalancerHealthsRequest
|
|
2588
2710
|
* @return ListLoadBalancerHealthsResponse
|
|
2589
2711
|
* @throws OciError when an error occurs
|
|
2590
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2712
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
|
|
2591
2713
|
*/
|
|
2592
2714
|
listLoadBalancerHealths(listLoadBalancerHealthsRequest) {
|
|
2593
2715
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2594
|
-
|
|
2716
|
+
if (this.logger)
|
|
2717
|
+
this.logger.debug("Calling operation LoadBalancerClient#listLoadBalancerHealths.");
|
|
2595
2718
|
const operationName = "listLoadBalancerHealths";
|
|
2596
2719
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerHealthSummary/ListLoadBalancerHealths";
|
|
2597
2720
|
const pathParams = {};
|
|
@@ -2606,6 +2729,8 @@ class LoadBalancerClient {
|
|
|
2606
2729
|
};
|
|
2607
2730
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2608
2731
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listLoadBalancerHealthsRequest.retryConfiguration, specRetryConfiguration);
|
|
2732
|
+
if (this.logger)
|
|
2733
|
+
retrier.logger = this.logger;
|
|
2609
2734
|
const request = yield oci_common_2.composeRequest({
|
|
2610
2735
|
baseEndpoint: this._endpoint,
|
|
2611
2736
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2689,11 +2814,12 @@ class LoadBalancerClient {
|
|
|
2689
2814
|
* @param ListLoadBalancersRequest
|
|
2690
2815
|
* @return ListLoadBalancersResponse
|
|
2691
2816
|
* @throws OciError when an error occurs
|
|
2692
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2817
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
|
|
2693
2818
|
*/
|
|
2694
2819
|
listLoadBalancers(listLoadBalancersRequest) {
|
|
2695
2820
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2696
|
-
|
|
2821
|
+
if (this.logger)
|
|
2822
|
+
this.logger.debug("Calling operation LoadBalancerClient#listLoadBalancers.");
|
|
2697
2823
|
const operationName = "listLoadBalancers";
|
|
2698
2824
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancer/ListLoadBalancers";
|
|
2699
2825
|
const pathParams = {};
|
|
@@ -2713,6 +2839,8 @@ class LoadBalancerClient {
|
|
|
2713
2839
|
};
|
|
2714
2840
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2715
2841
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listLoadBalancersRequest.retryConfiguration, specRetryConfiguration);
|
|
2842
|
+
if (this.logger)
|
|
2843
|
+
retrier.logger = this.logger;
|
|
2716
2844
|
const request = yield oci_common_2.composeRequest({
|
|
2717
2845
|
baseEndpoint: this._endpoint,
|
|
2718
2846
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2796,11 +2924,12 @@ class LoadBalancerClient {
|
|
|
2796
2924
|
* @param ListPathRouteSetsRequest
|
|
2797
2925
|
* @return ListPathRouteSetsResponse
|
|
2798
2926
|
* @throws OciError when an error occurs
|
|
2799
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2927
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
|
|
2800
2928
|
*/
|
|
2801
2929
|
listPathRouteSets(listPathRouteSetsRequest) {
|
|
2802
2930
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2803
|
-
|
|
2931
|
+
if (this.logger)
|
|
2932
|
+
this.logger.debug("Calling operation LoadBalancerClient#listPathRouteSets.");
|
|
2804
2933
|
const operationName = "listPathRouteSets";
|
|
2805
2934
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/PathRouteSet/ListPathRouteSets";
|
|
2806
2935
|
const pathParams = {
|
|
@@ -2814,6 +2943,8 @@ class LoadBalancerClient {
|
|
|
2814
2943
|
};
|
|
2815
2944
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2816
2945
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPathRouteSetsRequest.retryConfiguration, specRetryConfiguration);
|
|
2946
|
+
if (this.logger)
|
|
2947
|
+
retrier.logger = this.logger;
|
|
2817
2948
|
const request = yield oci_common_2.composeRequest({
|
|
2818
2949
|
baseEndpoint: this._endpoint,
|
|
2819
2950
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2857,11 +2988,12 @@ class LoadBalancerClient {
|
|
|
2857
2988
|
* @param ListPoliciesRequest
|
|
2858
2989
|
* @return ListPoliciesResponse
|
|
2859
2990
|
* @throws OciError when an error occurs
|
|
2860
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2991
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
|
|
2861
2992
|
*/
|
|
2862
2993
|
listPolicies(listPoliciesRequest) {
|
|
2863
2994
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2864
|
-
|
|
2995
|
+
if (this.logger)
|
|
2996
|
+
this.logger.debug("Calling operation LoadBalancerClient#listPolicies.");
|
|
2865
2997
|
const operationName = "listPolicies";
|
|
2866
2998
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerPolicy/ListPolicies";
|
|
2867
2999
|
const pathParams = {};
|
|
@@ -2876,6 +3008,8 @@ class LoadBalancerClient {
|
|
|
2876
3008
|
};
|
|
2877
3009
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2878
3010
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPoliciesRequest.retryConfiguration, specRetryConfiguration);
|
|
3011
|
+
if (this.logger)
|
|
3012
|
+
retrier.logger = this.logger;
|
|
2879
3013
|
const request = yield oci_common_2.composeRequest({
|
|
2880
3014
|
baseEndpoint: this._endpoint,
|
|
2881
3015
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2959,11 +3093,12 @@ class LoadBalancerClient {
|
|
|
2959
3093
|
* @param ListProtocolsRequest
|
|
2960
3094
|
* @return ListProtocolsResponse
|
|
2961
3095
|
* @throws OciError when an error occurs
|
|
2962
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3096
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
|
|
2963
3097
|
*/
|
|
2964
3098
|
listProtocols(listProtocolsRequest) {
|
|
2965
3099
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2966
|
-
|
|
3100
|
+
if (this.logger)
|
|
3101
|
+
this.logger.debug("Calling operation LoadBalancerClient#listProtocols.");
|
|
2967
3102
|
const operationName = "listProtocols";
|
|
2968
3103
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerProtocol/ListProtocols";
|
|
2969
3104
|
const pathParams = {};
|
|
@@ -2978,6 +3113,8 @@ class LoadBalancerClient {
|
|
|
2978
3113
|
};
|
|
2979
3114
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2980
3115
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listProtocolsRequest.retryConfiguration, specRetryConfiguration);
|
|
3116
|
+
if (this.logger)
|
|
3117
|
+
retrier.logger = this.logger;
|
|
2981
3118
|
const request = yield oci_common_2.composeRequest({
|
|
2982
3119
|
baseEndpoint: this._endpoint,
|
|
2983
3120
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3061,11 +3198,12 @@ class LoadBalancerClient {
|
|
|
3061
3198
|
* @param ListRoutingPoliciesRequest
|
|
3062
3199
|
* @return ListRoutingPoliciesResponse
|
|
3063
3200
|
* @throws OciError when an error occurs
|
|
3064
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3201
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
|
|
3065
3202
|
*/
|
|
3066
3203
|
listRoutingPolicies(listRoutingPoliciesRequest) {
|
|
3067
3204
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3068
|
-
|
|
3205
|
+
if (this.logger)
|
|
3206
|
+
this.logger.debug("Calling operation LoadBalancerClient#listRoutingPolicies.");
|
|
3069
3207
|
const operationName = "listRoutingPolicies";
|
|
3070
3208
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/RoutingPolicy/ListRoutingPolicies";
|
|
3071
3209
|
const pathParams = {
|
|
@@ -3082,6 +3220,8 @@ class LoadBalancerClient {
|
|
|
3082
3220
|
};
|
|
3083
3221
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3084
3222
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRoutingPoliciesRequest.retryConfiguration, specRetryConfiguration);
|
|
3223
|
+
if (this.logger)
|
|
3224
|
+
retrier.logger = this.logger;
|
|
3085
3225
|
const request = yield oci_common_2.composeRequest({
|
|
3086
3226
|
baseEndpoint: this._endpoint,
|
|
3087
3227
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3170,11 +3310,12 @@ class LoadBalancerClient {
|
|
|
3170
3310
|
* @param ListRuleSetsRequest
|
|
3171
3311
|
* @return ListRuleSetsResponse
|
|
3172
3312
|
* @throws OciError when an error occurs
|
|
3173
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
|
|
3174
3314
|
*/
|
|
3175
3315
|
listRuleSets(listRuleSetsRequest) {
|
|
3176
3316
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3177
|
-
|
|
3317
|
+
if (this.logger)
|
|
3318
|
+
this.logger.debug("Calling operation LoadBalancerClient#listRuleSets.");
|
|
3178
3319
|
const operationName = "listRuleSets";
|
|
3179
3320
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/RuleSet/ListRuleSets";
|
|
3180
3321
|
const pathParams = {
|
|
@@ -3188,6 +3329,8 @@ class LoadBalancerClient {
|
|
|
3188
3329
|
};
|
|
3189
3330
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3190
3331
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listRuleSetsRequest.retryConfiguration, specRetryConfiguration);
|
|
3332
|
+
if (this.logger)
|
|
3333
|
+
retrier.logger = this.logger;
|
|
3191
3334
|
const request = yield oci_common_2.composeRequest({
|
|
3192
3335
|
baseEndpoint: this._endpoint,
|
|
3193
3336
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3231,11 +3374,12 @@ class LoadBalancerClient {
|
|
|
3231
3374
|
* @param ListSSLCipherSuitesRequest
|
|
3232
3375
|
* @return ListSSLCipherSuitesResponse
|
|
3233
3376
|
* @throws OciError when an error occurs
|
|
3234
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3377
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
|
|
3235
3378
|
*/
|
|
3236
3379
|
listSSLCipherSuites(listSSLCipherSuitesRequest) {
|
|
3237
3380
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3238
|
-
|
|
3381
|
+
if (this.logger)
|
|
3382
|
+
this.logger.debug("Calling operation LoadBalancerClient#listSSLCipherSuites.");
|
|
3239
3383
|
const operationName = "listSSLCipherSuites";
|
|
3240
3384
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/SSLCipherSuite/ListSSLCipherSuites";
|
|
3241
3385
|
const pathParams = {
|
|
@@ -3249,6 +3393,8 @@ class LoadBalancerClient {
|
|
|
3249
3393
|
};
|
|
3250
3394
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3251
3395
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listSSLCipherSuitesRequest.retryConfiguration, specRetryConfiguration);
|
|
3396
|
+
if (this.logger)
|
|
3397
|
+
retrier.logger = this.logger;
|
|
3252
3398
|
const request = yield oci_common_2.composeRequest({
|
|
3253
3399
|
baseEndpoint: this._endpoint,
|
|
3254
3400
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3292,11 +3438,12 @@ class LoadBalancerClient {
|
|
|
3292
3438
|
* @param ListShapesRequest
|
|
3293
3439
|
* @return ListShapesResponse
|
|
3294
3440
|
* @throws OciError when an error occurs
|
|
3295
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3441
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
3296
3442
|
*/
|
|
3297
3443
|
listShapes(listShapesRequest) {
|
|
3298
3444
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3299
|
-
|
|
3445
|
+
if (this.logger)
|
|
3446
|
+
this.logger.debug("Calling operation LoadBalancerClient#listShapes.");
|
|
3300
3447
|
const operationName = "listShapes";
|
|
3301
3448
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes";
|
|
3302
3449
|
const pathParams = {};
|
|
@@ -3311,6 +3458,8 @@ class LoadBalancerClient {
|
|
|
3311
3458
|
};
|
|
3312
3459
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3313
3460
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listShapesRequest.retryConfiguration, specRetryConfiguration);
|
|
3461
|
+
if (this.logger)
|
|
3462
|
+
retrier.logger = this.logger;
|
|
3314
3463
|
const request = yield oci_common_2.composeRequest({
|
|
3315
3464
|
baseEndpoint: this._endpoint,
|
|
3316
3465
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3394,11 +3543,12 @@ class LoadBalancerClient {
|
|
|
3394
3543
|
* @param ListWorkRequestsRequest
|
|
3395
3544
|
* @return ListWorkRequestsResponse
|
|
3396
3545
|
* @throws OciError when an error occurs
|
|
3397
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3546
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
3398
3547
|
*/
|
|
3399
3548
|
listWorkRequests(listWorkRequestsRequest) {
|
|
3400
3549
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3401
|
-
|
|
3550
|
+
if (this.logger)
|
|
3551
|
+
this.logger.debug("Calling operation LoadBalancerClient#listWorkRequests.");
|
|
3402
3552
|
const operationName = "listWorkRequests";
|
|
3403
3553
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/WorkRequest/ListWorkRequests";
|
|
3404
3554
|
const pathParams = {
|
|
@@ -3414,6 +3564,8 @@ class LoadBalancerClient {
|
|
|
3414
3564
|
};
|
|
3415
3565
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3416
3566
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
|
|
3567
|
+
if (this.logger)
|
|
3568
|
+
retrier.logger = this.logger;
|
|
3417
3569
|
const request = yield oci_common_2.composeRequest({
|
|
3418
3570
|
baseEndpoint: this._endpoint,
|
|
3419
3571
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3497,11 +3649,12 @@ class LoadBalancerClient {
|
|
|
3497
3649
|
* @param UpdateBackendRequest
|
|
3498
3650
|
* @return UpdateBackendResponse
|
|
3499
3651
|
* @throws OciError when an error occurs
|
|
3500
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3652
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
|
|
3501
3653
|
*/
|
|
3502
3654
|
updateBackend(updateBackendRequest) {
|
|
3503
3655
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3504
|
-
|
|
3656
|
+
if (this.logger)
|
|
3657
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateBackend.");
|
|
3505
3658
|
const operationName = "updateBackend";
|
|
3506
3659
|
const apiReferenceLink = "";
|
|
3507
3660
|
const pathParams = {
|
|
@@ -3518,6 +3671,8 @@ class LoadBalancerClient {
|
|
|
3518
3671
|
};
|
|
3519
3672
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3520
3673
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBackendRequest.retryConfiguration, specRetryConfiguration);
|
|
3674
|
+
if (this.logger)
|
|
3675
|
+
retrier.logger = this.logger;
|
|
3521
3676
|
const request = yield oci_common_2.composeRequest({
|
|
3522
3677
|
baseEndpoint: this._endpoint,
|
|
3523
3678
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3558,11 +3713,12 @@ class LoadBalancerClient {
|
|
|
3558
3713
|
* @param UpdateBackendSetRequest
|
|
3559
3714
|
* @return UpdateBackendSetResponse
|
|
3560
3715
|
* @throws OciError when an error occurs
|
|
3561
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3716
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
|
|
3562
3717
|
*/
|
|
3563
3718
|
updateBackendSet(updateBackendSetRequest) {
|
|
3564
3719
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3565
|
-
|
|
3720
|
+
if (this.logger)
|
|
3721
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateBackendSet.");
|
|
3566
3722
|
const operationName = "updateBackendSet";
|
|
3567
3723
|
const apiReferenceLink = "";
|
|
3568
3724
|
const pathParams = {
|
|
@@ -3578,6 +3734,8 @@ class LoadBalancerClient {
|
|
|
3578
3734
|
};
|
|
3579
3735
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3580
3736
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBackendSetRequest.retryConfiguration, specRetryConfiguration);
|
|
3737
|
+
if (this.logger)
|
|
3738
|
+
retrier.logger = this.logger;
|
|
3581
3739
|
const request = yield oci_common_2.composeRequest({
|
|
3582
3740
|
baseEndpoint: this._endpoint,
|
|
3583
3741
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3618,11 +3776,12 @@ class LoadBalancerClient {
|
|
|
3618
3776
|
* @param UpdateHealthCheckerRequest
|
|
3619
3777
|
* @return UpdateHealthCheckerResponse
|
|
3620
3778
|
* @throws OciError when an error occurs
|
|
3621
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3779
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
|
|
3622
3780
|
*/
|
|
3623
3781
|
updateHealthChecker(updateHealthCheckerRequest) {
|
|
3624
3782
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3625
|
-
|
|
3783
|
+
if (this.logger)
|
|
3784
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateHealthChecker.");
|
|
3626
3785
|
const operationName = "updateHealthChecker";
|
|
3627
3786
|
const apiReferenceLink = "";
|
|
3628
3787
|
const pathParams = {
|
|
@@ -3638,6 +3797,8 @@ class LoadBalancerClient {
|
|
|
3638
3797
|
};
|
|
3639
3798
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3640
3799
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateHealthCheckerRequest.retryConfiguration, specRetryConfiguration);
|
|
3800
|
+
if (this.logger)
|
|
3801
|
+
retrier.logger = this.logger;
|
|
3641
3802
|
const request = yield oci_common_2.composeRequest({
|
|
3642
3803
|
baseEndpoint: this._endpoint,
|
|
3643
3804
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3680,11 +3841,12 @@ class LoadBalancerClient {
|
|
|
3680
3841
|
* @param UpdateHostnameRequest
|
|
3681
3842
|
* @return UpdateHostnameResponse
|
|
3682
3843
|
* @throws OciError when an error occurs
|
|
3683
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3844
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
|
|
3684
3845
|
*/
|
|
3685
3846
|
updateHostname(updateHostnameRequest) {
|
|
3686
3847
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3687
|
-
|
|
3848
|
+
if (this.logger)
|
|
3849
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateHostname.");
|
|
3688
3850
|
const operationName = "updateHostname";
|
|
3689
3851
|
const apiReferenceLink = "";
|
|
3690
3852
|
const pathParams = {
|
|
@@ -3700,6 +3862,8 @@ class LoadBalancerClient {
|
|
|
3700
3862
|
};
|
|
3701
3863
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3702
3864
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateHostnameRequest.retryConfiguration, specRetryConfiguration);
|
|
3865
|
+
if (this.logger)
|
|
3866
|
+
retrier.logger = this.logger;
|
|
3703
3867
|
const request = yield oci_common_2.composeRequest({
|
|
3704
3868
|
baseEndpoint: this._endpoint,
|
|
3705
3869
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3740,11 +3904,12 @@ class LoadBalancerClient {
|
|
|
3740
3904
|
* @param UpdateListenerRequest
|
|
3741
3905
|
* @return UpdateListenerResponse
|
|
3742
3906
|
* @throws OciError when an error occurs
|
|
3743
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3907
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
|
|
3744
3908
|
*/
|
|
3745
3909
|
updateListener(updateListenerRequest) {
|
|
3746
3910
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3747
|
-
|
|
3911
|
+
if (this.logger)
|
|
3912
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateListener.");
|
|
3748
3913
|
const operationName = "updateListener";
|
|
3749
3914
|
const apiReferenceLink = "";
|
|
3750
3915
|
const pathParams = {
|
|
@@ -3760,6 +3925,8 @@ class LoadBalancerClient {
|
|
|
3760
3925
|
};
|
|
3761
3926
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3762
3927
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateListenerRequest.retryConfiguration, specRetryConfiguration);
|
|
3928
|
+
if (this.logger)
|
|
3929
|
+
retrier.logger = this.logger;
|
|
3763
3930
|
const request = yield oci_common_2.composeRequest({
|
|
3764
3931
|
baseEndpoint: this._endpoint,
|
|
3765
3932
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3800,11 +3967,12 @@ class LoadBalancerClient {
|
|
|
3800
3967
|
* @param UpdateLoadBalancerRequest
|
|
3801
3968
|
* @return UpdateLoadBalancerResponse
|
|
3802
3969
|
* @throws OciError when an error occurs
|
|
3803
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3970
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
|
|
3804
3971
|
*/
|
|
3805
3972
|
updateLoadBalancer(updateLoadBalancerRequest) {
|
|
3806
3973
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3807
|
-
|
|
3974
|
+
if (this.logger)
|
|
3975
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateLoadBalancer.");
|
|
3808
3976
|
const operationName = "updateLoadBalancer";
|
|
3809
3977
|
const apiReferenceLink = "";
|
|
3810
3978
|
const pathParams = {
|
|
@@ -3819,6 +3987,8 @@ class LoadBalancerClient {
|
|
|
3819
3987
|
};
|
|
3820
3988
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3821
3989
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateLoadBalancerRequest.retryConfiguration, specRetryConfiguration);
|
|
3990
|
+
if (this.logger)
|
|
3991
|
+
retrier.logger = this.logger;
|
|
3822
3992
|
const request = yield oci_common_2.composeRequest({
|
|
3823
3993
|
baseEndpoint: this._endpoint,
|
|
3824
3994
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3865,11 +4035,12 @@ class LoadBalancerClient {
|
|
|
3865
4035
|
* @param UpdateLoadBalancerShapeRequest
|
|
3866
4036
|
* @return UpdateLoadBalancerShapeResponse
|
|
3867
4037
|
* @throws OciError when an error occurs
|
|
3868
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4038
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
|
|
3869
4039
|
*/
|
|
3870
4040
|
updateLoadBalancerShape(updateLoadBalancerShapeRequest) {
|
|
3871
4041
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3872
|
-
|
|
4042
|
+
if (this.logger)
|
|
4043
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateLoadBalancerShape.");
|
|
3873
4044
|
const operationName = "updateLoadBalancerShape";
|
|
3874
4045
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancer/UpdateLoadBalancerShape";
|
|
3875
4046
|
const pathParams = {
|
|
@@ -3884,6 +4055,8 @@ class LoadBalancerClient {
|
|
|
3884
4055
|
};
|
|
3885
4056
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3886
4057
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateLoadBalancerShapeRequest.retryConfiguration, specRetryConfiguration);
|
|
4058
|
+
if (this.logger)
|
|
4059
|
+
retrier.logger = this.logger;
|
|
3887
4060
|
const request = yield oci_common_2.composeRequest({
|
|
3888
4061
|
baseEndpoint: this._endpoint,
|
|
3889
4062
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3924,11 +4097,12 @@ class LoadBalancerClient {
|
|
|
3924
4097
|
* @param UpdateNetworkSecurityGroupsRequest
|
|
3925
4098
|
* @return UpdateNetworkSecurityGroupsResponse
|
|
3926
4099
|
* @throws OciError when an error occurs
|
|
3927
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4100
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
|
|
3928
4101
|
*/
|
|
3929
4102
|
updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest) {
|
|
3930
4103
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3931
|
-
|
|
4104
|
+
if (this.logger)
|
|
4105
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateNetworkSecurityGroups.");
|
|
3932
4106
|
const operationName = "updateNetworkSecurityGroups";
|
|
3933
4107
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/loadbalancer/20170115/NetworkSecurityGroups/UpdateNetworkSecurityGroups";
|
|
3934
4108
|
const pathParams = {
|
|
@@ -3943,6 +4117,8 @@ class LoadBalancerClient {
|
|
|
3943
4117
|
};
|
|
3944
4118
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3945
4119
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateNetworkSecurityGroupsRequest.retryConfiguration, specRetryConfiguration);
|
|
4120
|
+
if (this.logger)
|
|
4121
|
+
retrier.logger = this.logger;
|
|
3946
4122
|
const request = yield oci_common_2.composeRequest({
|
|
3947
4123
|
baseEndpoint: this._endpoint,
|
|
3948
4124
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3989,11 +4165,12 @@ class LoadBalancerClient {
|
|
|
3989
4165
|
* @param UpdatePathRouteSetRequest
|
|
3990
4166
|
* @return UpdatePathRouteSetResponse
|
|
3991
4167
|
* @throws OciError when an error occurs
|
|
3992
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4168
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
|
|
3993
4169
|
*/
|
|
3994
4170
|
updatePathRouteSet(updatePathRouteSetRequest) {
|
|
3995
4171
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3996
|
-
|
|
4172
|
+
if (this.logger)
|
|
4173
|
+
this.logger.debug("Calling operation LoadBalancerClient#updatePathRouteSet.");
|
|
3997
4174
|
const operationName = "updatePathRouteSet";
|
|
3998
4175
|
const apiReferenceLink = "";
|
|
3999
4176
|
const pathParams = {
|
|
@@ -4009,6 +4186,8 @@ class LoadBalancerClient {
|
|
|
4009
4186
|
};
|
|
4010
4187
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4011
4188
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePathRouteSetRequest.retryConfiguration, specRetryConfiguration);
|
|
4189
|
+
if (this.logger)
|
|
4190
|
+
retrier.logger = this.logger;
|
|
4012
4191
|
const request = yield oci_common_2.composeRequest({
|
|
4013
4192
|
baseEndpoint: this._endpoint,
|
|
4014
4193
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -4053,11 +4232,12 @@ class LoadBalancerClient {
|
|
|
4053
4232
|
* @param UpdateRoutingPolicyRequest
|
|
4054
4233
|
* @return UpdateRoutingPolicyResponse
|
|
4055
4234
|
* @throws OciError when an error occurs
|
|
4056
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4235
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
|
|
4057
4236
|
*/
|
|
4058
4237
|
updateRoutingPolicy(updateRoutingPolicyRequest) {
|
|
4059
4238
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4060
|
-
|
|
4239
|
+
if (this.logger)
|
|
4240
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateRoutingPolicy.");
|
|
4061
4241
|
const operationName = "updateRoutingPolicy";
|
|
4062
4242
|
const apiReferenceLink = "";
|
|
4063
4243
|
const pathParams = {
|
|
@@ -4073,6 +4253,8 @@ class LoadBalancerClient {
|
|
|
4073
4253
|
};
|
|
4074
4254
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4075
4255
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRoutingPolicyRequest.retryConfiguration, specRetryConfiguration);
|
|
4256
|
+
if (this.logger)
|
|
4257
|
+
retrier.logger = this.logger;
|
|
4076
4258
|
const request = yield oci_common_2.composeRequest({
|
|
4077
4259
|
baseEndpoint: this._endpoint,
|
|
4078
4260
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -4117,11 +4299,12 @@ class LoadBalancerClient {
|
|
|
4117
4299
|
* @param UpdateRuleSetRequest
|
|
4118
4300
|
* @return UpdateRuleSetResponse
|
|
4119
4301
|
* @throws OciError when an error occurs
|
|
4120
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4302
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
|
|
4121
4303
|
*/
|
|
4122
4304
|
updateRuleSet(updateRuleSetRequest) {
|
|
4123
4305
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4124
|
-
|
|
4306
|
+
if (this.logger)
|
|
4307
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateRuleSet.");
|
|
4125
4308
|
const operationName = "updateRuleSet";
|
|
4126
4309
|
const apiReferenceLink = "";
|
|
4127
4310
|
const pathParams = {
|
|
@@ -4137,6 +4320,8 @@ class LoadBalancerClient {
|
|
|
4137
4320
|
};
|
|
4138
4321
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4139
4322
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateRuleSetRequest.retryConfiguration, specRetryConfiguration);
|
|
4323
|
+
if (this.logger)
|
|
4324
|
+
retrier.logger = this.logger;
|
|
4140
4325
|
const request = yield oci_common_2.composeRequest({
|
|
4141
4326
|
baseEndpoint: this._endpoint,
|
|
4142
4327
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -4177,11 +4362,12 @@ class LoadBalancerClient {
|
|
|
4177
4362
|
* @param UpdateSSLCipherSuiteRequest
|
|
4178
4363
|
* @return UpdateSSLCipherSuiteResponse
|
|
4179
4364
|
* @throws OciError when an error occurs
|
|
4180
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4365
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.81.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
|
|
4181
4366
|
*/
|
|
4182
4367
|
updateSSLCipherSuite(updateSSLCipherSuiteRequest) {
|
|
4183
4368
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4184
|
-
|
|
4369
|
+
if (this.logger)
|
|
4370
|
+
this.logger.debug("Calling operation LoadBalancerClient#updateSSLCipherSuite.");
|
|
4185
4371
|
const operationName = "updateSSLCipherSuite";
|
|
4186
4372
|
const apiReferenceLink = "";
|
|
4187
4373
|
const pathParams = {
|
|
@@ -4197,6 +4383,8 @@ class LoadBalancerClient {
|
|
|
4197
4383
|
};
|
|
4198
4384
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
4199
4385
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateSSLCipherSuiteRequest.retryConfiguration, specRetryConfiguration);
|
|
4386
|
+
if (this.logger)
|
|
4387
|
+
retrier.logger = this.logger;
|
|
4200
4388
|
const request = yield oci_common_2.composeRequest({
|
|
4201
4389
|
baseEndpoint: this._endpoint,
|
|
4202
4390
|
defaultHeaders: this._defaultHeaders,
|