oci-loadbalancer 2.67.0 → 2.68.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 +62 -61
- package/lib/client.js +66 -62
- package/lib/client.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
|
@@ -64,6 +64,7 @@ class LoadBalancerClient {
|
|
|
64
64
|
this["_defaultHeaders"] = {};
|
|
65
65
|
this._circuitBreaker = null;
|
|
66
66
|
this._httpOptions = undefined;
|
|
67
|
+
this._bodyDuplexMode = undefined;
|
|
67
68
|
this.targetService = "LoadBalancer";
|
|
68
69
|
this._regionId = "";
|
|
69
70
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -78,6 +79,9 @@ class LoadBalancerClient {
|
|
|
78
79
|
this._httpOptions = clientConfiguration.httpOptions
|
|
79
80
|
? clientConfiguration.httpOptions
|
|
80
81
|
: undefined;
|
|
82
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
83
|
+
? clientConfiguration.bodyDuplexMode
|
|
84
|
+
: undefined;
|
|
81
85
|
}
|
|
82
86
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
83
87
|
const specCircuitBreakerEnabled = true;
|
|
@@ -88,7 +92,7 @@ class LoadBalancerClient {
|
|
|
88
92
|
}
|
|
89
93
|
this._httpClient =
|
|
90
94
|
params.httpClient ||
|
|
91
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
95
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
92
96
|
if (params.authenticationDetailsProvider &&
|
|
93
97
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
94
98
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -184,7 +188,7 @@ class LoadBalancerClient {
|
|
|
184
188
|
* @param ChangeLoadBalancerCompartmentRequest
|
|
185
189
|
* @return ChangeLoadBalancerCompartmentResponse
|
|
186
190
|
* @throws OciError when an error occurs
|
|
187
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
191
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
|
|
188
192
|
*/
|
|
189
193
|
changeLoadBalancerCompartment(changeLoadBalancerCompartmentRequest) {
|
|
190
194
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -246,7 +250,7 @@ class LoadBalancerClient {
|
|
|
246
250
|
* @param CreateBackendRequest
|
|
247
251
|
* @return CreateBackendResponse
|
|
248
252
|
* @throws OciError when an error occurs
|
|
249
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
253
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
|
|
250
254
|
*/
|
|
251
255
|
createBackend(createBackendRequest) {
|
|
252
256
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -309,7 +313,7 @@ class LoadBalancerClient {
|
|
|
309
313
|
* @param CreateBackendSetRequest
|
|
310
314
|
* @return CreateBackendSetResponse
|
|
311
315
|
* @throws OciError when an error occurs
|
|
312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
316
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
|
|
313
317
|
*/
|
|
314
318
|
createBackendSet(createBackendSetRequest) {
|
|
315
319
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -371,7 +375,7 @@ class LoadBalancerClient {
|
|
|
371
375
|
* @param CreateCertificateRequest
|
|
372
376
|
* @return CreateCertificateResponse
|
|
373
377
|
* @throws OciError when an error occurs
|
|
374
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
378
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
|
|
375
379
|
*/
|
|
376
380
|
createCertificate(createCertificateRequest) {
|
|
377
381
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -435,7 +439,7 @@ class LoadBalancerClient {
|
|
|
435
439
|
* @param CreateHostnameRequest
|
|
436
440
|
* @return CreateHostnameResponse
|
|
437
441
|
* @throws OciError when an error occurs
|
|
438
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
442
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
|
|
439
443
|
*/
|
|
440
444
|
createHostname(createHostnameRequest) {
|
|
441
445
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -497,7 +501,7 @@ class LoadBalancerClient {
|
|
|
497
501
|
* @param CreateListenerRequest
|
|
498
502
|
* @return CreateListenerResponse
|
|
499
503
|
* @throws OciError when an error occurs
|
|
500
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
504
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
|
|
501
505
|
*/
|
|
502
506
|
createListener(createListenerRequest) {
|
|
503
507
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -586,7 +590,7 @@ class LoadBalancerClient {
|
|
|
586
590
|
* @param CreateLoadBalancerRequest
|
|
587
591
|
* @return CreateLoadBalancerResponse
|
|
588
592
|
* @throws OciError when an error occurs
|
|
589
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
593
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
|
|
590
594
|
*/
|
|
591
595
|
createLoadBalancer(createLoadBalancerRequest) {
|
|
592
596
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -647,7 +651,7 @@ class LoadBalancerClient {
|
|
|
647
651
|
* @param CreatePathRouteSetRequest
|
|
648
652
|
* @return CreatePathRouteSetResponse
|
|
649
653
|
* @throws OciError when an error occurs
|
|
650
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
654
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
|
|
651
655
|
*/
|
|
652
656
|
createPathRouteSet(createPathRouteSetRequest) {
|
|
653
657
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -711,7 +715,7 @@ class LoadBalancerClient {
|
|
|
711
715
|
* @param CreateRoutingPolicyRequest
|
|
712
716
|
* @return CreateRoutingPolicyResponse
|
|
713
717
|
* @throws OciError when an error occurs
|
|
714
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
718
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
|
|
715
719
|
*/
|
|
716
720
|
createRoutingPolicy(createRoutingPolicyRequest) {
|
|
717
721
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -775,7 +779,7 @@ class LoadBalancerClient {
|
|
|
775
779
|
* @param CreateRuleSetRequest
|
|
776
780
|
* @return CreateRuleSetResponse
|
|
777
781
|
* @throws OciError when an error occurs
|
|
778
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
782
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
|
|
779
783
|
*/
|
|
780
784
|
createRuleSet(createRuleSetRequest) {
|
|
781
785
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -837,7 +841,7 @@ class LoadBalancerClient {
|
|
|
837
841
|
* @param CreateSSLCipherSuiteRequest
|
|
838
842
|
* @return CreateSSLCipherSuiteResponse
|
|
839
843
|
* @throws OciError when an error occurs
|
|
840
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
844
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
|
|
841
845
|
*/
|
|
842
846
|
createSSLCipherSuite(createSSLCipherSuiteRequest) {
|
|
843
847
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -899,7 +903,7 @@ class LoadBalancerClient {
|
|
|
899
903
|
* @param DeleteBackendRequest
|
|
900
904
|
* @return DeleteBackendResponse
|
|
901
905
|
* @throws OciError when an error occurs
|
|
902
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
906
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
|
|
903
907
|
*/
|
|
904
908
|
deleteBackend(deleteBackendRequest) {
|
|
905
909
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -964,7 +968,7 @@ class LoadBalancerClient {
|
|
|
964
968
|
* @param DeleteBackendSetRequest
|
|
965
969
|
* @return DeleteBackendSetResponse
|
|
966
970
|
* @throws OciError when an error occurs
|
|
967
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
971
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
|
|
968
972
|
*/
|
|
969
973
|
deleteBackendSet(deleteBackendSetRequest) {
|
|
970
974
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1025,7 +1029,7 @@ class LoadBalancerClient {
|
|
|
1025
1029
|
* @param DeleteCertificateRequest
|
|
1026
1030
|
* @return DeleteCertificateResponse
|
|
1027
1031
|
* @throws OciError when an error occurs
|
|
1028
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1032
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
|
|
1029
1033
|
*/
|
|
1030
1034
|
deleteCertificate(deleteCertificateRequest) {
|
|
1031
1035
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1087,7 +1091,7 @@ class LoadBalancerClient {
|
|
|
1087
1091
|
* @param DeleteHostnameRequest
|
|
1088
1092
|
* @return DeleteHostnameResponse
|
|
1089
1093
|
* @throws OciError when an error occurs
|
|
1090
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1094
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
|
|
1091
1095
|
*/
|
|
1092
1096
|
deleteHostname(deleteHostnameRequest) {
|
|
1093
1097
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1148,7 +1152,7 @@ class LoadBalancerClient {
|
|
|
1148
1152
|
* @param DeleteListenerRequest
|
|
1149
1153
|
* @return DeleteListenerResponse
|
|
1150
1154
|
* @throws OciError when an error occurs
|
|
1151
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1155
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
|
|
1152
1156
|
*/
|
|
1153
1157
|
deleteListener(deleteListenerRequest) {
|
|
1154
1158
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1209,7 +1213,7 @@ class LoadBalancerClient {
|
|
|
1209
1213
|
* @param DeleteLoadBalancerRequest
|
|
1210
1214
|
* @return DeleteLoadBalancerResponse
|
|
1211
1215
|
* @throws OciError when an error occurs
|
|
1212
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1216
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
|
|
1213
1217
|
*/
|
|
1214
1218
|
deleteLoadBalancer(deleteLoadBalancerRequest) {
|
|
1215
1219
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1273,7 +1277,7 @@ class LoadBalancerClient {
|
|
|
1273
1277
|
* @param DeletePathRouteSetRequest
|
|
1274
1278
|
* @return DeletePathRouteSetResponse
|
|
1275
1279
|
* @throws OciError when an error occurs
|
|
1276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1280
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
|
|
1277
1281
|
*/
|
|
1278
1282
|
deletePathRouteSet(deletePathRouteSetRequest) {
|
|
1279
1283
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1338,7 +1342,7 @@ class LoadBalancerClient {
|
|
|
1338
1342
|
* @param DeleteRoutingPolicyRequest
|
|
1339
1343
|
* @return DeleteRoutingPolicyResponse
|
|
1340
1344
|
* @throws OciError when an error occurs
|
|
1341
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1345
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
|
|
1342
1346
|
*/
|
|
1343
1347
|
deleteRoutingPolicy(deleteRoutingPolicyRequest) {
|
|
1344
1348
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1403,7 +1407,7 @@ class LoadBalancerClient {
|
|
|
1403
1407
|
* @param DeleteRuleSetRequest
|
|
1404
1408
|
* @return DeleteRuleSetResponse
|
|
1405
1409
|
* @throws OciError when an error occurs
|
|
1406
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1410
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
|
|
1407
1411
|
*/
|
|
1408
1412
|
deleteRuleSet(deleteRuleSetRequest) {
|
|
1409
1413
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1464,7 +1468,7 @@ class LoadBalancerClient {
|
|
|
1464
1468
|
* @param DeleteSSLCipherSuiteRequest
|
|
1465
1469
|
* @return DeleteSSLCipherSuiteResponse
|
|
1466
1470
|
* @throws OciError when an error occurs
|
|
1467
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1471
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
|
|
1468
1472
|
*/
|
|
1469
1473
|
deleteSSLCipherSuite(deleteSSLCipherSuiteRequest) {
|
|
1470
1474
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1525,7 +1529,7 @@ class LoadBalancerClient {
|
|
|
1525
1529
|
* @param GetBackendRequest
|
|
1526
1530
|
* @return GetBackendResponse
|
|
1527
1531
|
* @throws OciError when an error occurs
|
|
1528
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1532
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
|
|
1529
1533
|
*/
|
|
1530
1534
|
getBackend(getBackendRequest) {
|
|
1531
1535
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1591,7 +1595,7 @@ class LoadBalancerClient {
|
|
|
1591
1595
|
* @param GetBackendHealthRequest
|
|
1592
1596
|
* @return GetBackendHealthResponse
|
|
1593
1597
|
* @throws OciError when an error occurs
|
|
1594
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1598
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
|
|
1595
1599
|
*/
|
|
1596
1600
|
getBackendHealth(getBackendHealthRequest) {
|
|
1597
1601
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1657,7 +1661,7 @@ class LoadBalancerClient {
|
|
|
1657
1661
|
* @param GetBackendSetRequest
|
|
1658
1662
|
* @return GetBackendSetResponse
|
|
1659
1663
|
* @throws OciError when an error occurs
|
|
1660
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1664
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
|
|
1661
1665
|
*/
|
|
1662
1666
|
getBackendSet(getBackendSetRequest) {
|
|
1663
1667
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1722,7 +1726,7 @@ class LoadBalancerClient {
|
|
|
1722
1726
|
* @param GetBackendSetHealthRequest
|
|
1723
1727
|
* @return GetBackendSetHealthResponse
|
|
1724
1728
|
* @throws OciError when an error occurs
|
|
1725
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1729
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
|
|
1726
1730
|
*/
|
|
1727
1731
|
getBackendSetHealth(getBackendSetHealthRequest) {
|
|
1728
1732
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1787,7 +1791,7 @@ class LoadBalancerClient {
|
|
|
1787
1791
|
* @param GetHealthCheckerRequest
|
|
1788
1792
|
* @return GetHealthCheckerResponse
|
|
1789
1793
|
* @throws OciError when an error occurs
|
|
1790
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1794
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
|
|
1791
1795
|
*/
|
|
1792
1796
|
getHealthChecker(getHealthCheckerRequest) {
|
|
1793
1797
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1852,7 +1856,7 @@ class LoadBalancerClient {
|
|
|
1852
1856
|
* @param GetHostnameRequest
|
|
1853
1857
|
* @return GetHostnameResponse
|
|
1854
1858
|
* @throws OciError when an error occurs
|
|
1855
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1859
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
|
|
1856
1860
|
*/
|
|
1857
1861
|
getHostname(getHostnameRequest) {
|
|
1858
1862
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1917,7 +1921,7 @@ class LoadBalancerClient {
|
|
|
1917
1921
|
* @param GetLoadBalancerRequest
|
|
1918
1922
|
* @return GetLoadBalancerResponse
|
|
1919
1923
|
* @throws OciError when an error occurs
|
|
1920
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1924
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
|
|
1921
1925
|
*/
|
|
1922
1926
|
getLoadBalancer(getLoadBalancerRequest) {
|
|
1923
1927
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1981,7 +1985,7 @@ class LoadBalancerClient {
|
|
|
1981
1985
|
* @param GetLoadBalancerHealthRequest
|
|
1982
1986
|
* @return GetLoadBalancerHealthResponse
|
|
1983
1987
|
* @throws OciError when an error occurs
|
|
1984
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1988
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
|
|
1985
1989
|
*/
|
|
1986
1990
|
getLoadBalancerHealth(getLoadBalancerHealthRequest) {
|
|
1987
1991
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2045,7 +2049,7 @@ class LoadBalancerClient {
|
|
|
2045
2049
|
* @param GetPathRouteSetRequest
|
|
2046
2050
|
* @return GetPathRouteSetResponse
|
|
2047
2051
|
* @throws OciError when an error occurs
|
|
2048
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2052
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
|
|
2049
2053
|
*/
|
|
2050
2054
|
getPathRouteSet(getPathRouteSetRequest) {
|
|
2051
2055
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2110,7 +2114,7 @@ class LoadBalancerClient {
|
|
|
2110
2114
|
* @param GetRoutingPolicyRequest
|
|
2111
2115
|
* @return GetRoutingPolicyResponse
|
|
2112
2116
|
* @throws OciError when an error occurs
|
|
2113
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2117
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
|
|
2114
2118
|
*/
|
|
2115
2119
|
getRoutingPolicy(getRoutingPolicyRequest) {
|
|
2116
2120
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2175,7 +2179,7 @@ class LoadBalancerClient {
|
|
|
2175
2179
|
* @param GetRuleSetRequest
|
|
2176
2180
|
* @return GetRuleSetResponse
|
|
2177
2181
|
* @throws OciError when an error occurs
|
|
2178
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2182
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
|
|
2179
2183
|
*/
|
|
2180
2184
|
getRuleSet(getRuleSetRequest) {
|
|
2181
2185
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2240,7 +2244,7 @@ class LoadBalancerClient {
|
|
|
2240
2244
|
* @param GetSSLCipherSuiteRequest
|
|
2241
2245
|
* @return GetSSLCipherSuiteResponse
|
|
2242
2246
|
* @throws OciError when an error occurs
|
|
2243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
|
|
2244
2248
|
*/
|
|
2245
2249
|
getSSLCipherSuite(getSSLCipherSuiteRequest) {
|
|
2246
2250
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2305,7 +2309,7 @@ class LoadBalancerClient {
|
|
|
2305
2309
|
* @param GetWorkRequestRequest
|
|
2306
2310
|
* @return GetWorkRequestResponse
|
|
2307
2311
|
* @throws OciError when an error occurs
|
|
2308
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2312
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
2309
2313
|
*/
|
|
2310
2314
|
getWorkRequest(getWorkRequestRequest) {
|
|
2311
2315
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2363,7 +2367,7 @@ class LoadBalancerClient {
|
|
|
2363
2367
|
* @param ListBackendSetsRequest
|
|
2364
2368
|
* @return ListBackendSetsResponse
|
|
2365
2369
|
* @throws OciError when an error occurs
|
|
2366
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2370
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
|
|
2367
2371
|
*/
|
|
2368
2372
|
listBackendSets(listBackendSetsRequest) {
|
|
2369
2373
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2427,7 +2431,7 @@ class LoadBalancerClient {
|
|
|
2427
2431
|
* @param ListBackendsRequest
|
|
2428
2432
|
* @return ListBackendsResponse
|
|
2429
2433
|
* @throws OciError when an error occurs
|
|
2430
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
|
|
2431
2435
|
*/
|
|
2432
2436
|
listBackends(listBackendsRequest) {
|
|
2433
2437
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2492,7 +2496,7 @@ class LoadBalancerClient {
|
|
|
2492
2496
|
* @param ListCertificatesRequest
|
|
2493
2497
|
* @return ListCertificatesResponse
|
|
2494
2498
|
* @throws OciError when an error occurs
|
|
2495
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2499
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
|
|
2496
2500
|
*/
|
|
2497
2501
|
listCertificates(listCertificatesRequest) {
|
|
2498
2502
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2556,7 +2560,7 @@ class LoadBalancerClient {
|
|
|
2556
2560
|
* @param ListHostnamesRequest
|
|
2557
2561
|
* @return ListHostnamesResponse
|
|
2558
2562
|
* @throws OciError when an error occurs
|
|
2559
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2563
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
|
|
2560
2564
|
*/
|
|
2561
2565
|
listHostnames(listHostnamesRequest) {
|
|
2562
2566
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2627,7 +2631,7 @@ class LoadBalancerClient {
|
|
|
2627
2631
|
* @param ListListenerRulesRequest
|
|
2628
2632
|
* @return ListListenerRulesResponse
|
|
2629
2633
|
* @throws OciError when an error occurs
|
|
2630
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2634
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
|
|
2631
2635
|
*/
|
|
2632
2636
|
listListenerRules(listListenerRulesRequest) {
|
|
2633
2637
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2692,7 +2696,7 @@ class LoadBalancerClient {
|
|
|
2692
2696
|
* @param ListLoadBalancerHealthsRequest
|
|
2693
2697
|
* @return ListLoadBalancerHealthsResponse
|
|
2694
2698
|
* @throws OciError when an error occurs
|
|
2695
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2699
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
|
|
2696
2700
|
*/
|
|
2697
2701
|
listLoadBalancerHealths(listLoadBalancerHealthsRequest) {
|
|
2698
2702
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2797,7 +2801,7 @@ class LoadBalancerClient {
|
|
|
2797
2801
|
* @param ListLoadBalancersRequest
|
|
2798
2802
|
* @return ListLoadBalancersResponse
|
|
2799
2803
|
* @throws OciError when an error occurs
|
|
2800
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2804
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
|
|
2801
2805
|
*/
|
|
2802
2806
|
listLoadBalancers(listLoadBalancersRequest) {
|
|
2803
2807
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2907,7 +2911,7 @@ class LoadBalancerClient {
|
|
|
2907
2911
|
* @param ListPathRouteSetsRequest
|
|
2908
2912
|
* @return ListPathRouteSetsResponse
|
|
2909
2913
|
* @throws OciError when an error occurs
|
|
2910
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2914
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
|
|
2911
2915
|
*/
|
|
2912
2916
|
listPathRouteSets(listPathRouteSetsRequest) {
|
|
2913
2917
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2971,7 +2975,7 @@ class LoadBalancerClient {
|
|
|
2971
2975
|
* @param ListPoliciesRequest
|
|
2972
2976
|
* @return ListPoliciesResponse
|
|
2973
2977
|
* @throws OciError when an error occurs
|
|
2974
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2978
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
|
|
2975
2979
|
*/
|
|
2976
2980
|
listPolicies(listPoliciesRequest) {
|
|
2977
2981
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3076,7 +3080,7 @@ class LoadBalancerClient {
|
|
|
3076
3080
|
* @param ListProtocolsRequest
|
|
3077
3081
|
* @return ListProtocolsResponse
|
|
3078
3082
|
* @throws OciError when an error occurs
|
|
3079
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3083
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
|
|
3080
3084
|
*/
|
|
3081
3085
|
listProtocols(listProtocolsRequest) {
|
|
3082
3086
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3181,7 +3185,7 @@ class LoadBalancerClient {
|
|
|
3181
3185
|
* @param ListRoutingPoliciesRequest
|
|
3182
3186
|
* @return ListRoutingPoliciesResponse
|
|
3183
3187
|
* @throws OciError when an error occurs
|
|
3184
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3188
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
|
|
3185
3189
|
*/
|
|
3186
3190
|
listRoutingPolicies(listRoutingPoliciesRequest) {
|
|
3187
3191
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3293,7 +3297,7 @@ class LoadBalancerClient {
|
|
|
3293
3297
|
* @param ListRuleSetsRequest
|
|
3294
3298
|
* @return ListRuleSetsResponse
|
|
3295
3299
|
* @throws OciError when an error occurs
|
|
3296
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3300
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
|
|
3297
3301
|
*/
|
|
3298
3302
|
listRuleSets(listRuleSetsRequest) {
|
|
3299
3303
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3357,7 +3361,7 @@ class LoadBalancerClient {
|
|
|
3357
3361
|
* @param ListSSLCipherSuitesRequest
|
|
3358
3362
|
* @return ListSSLCipherSuitesResponse
|
|
3359
3363
|
* @throws OciError when an error occurs
|
|
3360
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3364
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
|
|
3361
3365
|
*/
|
|
3362
3366
|
listSSLCipherSuites(listSSLCipherSuitesRequest) {
|
|
3363
3367
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3421,7 +3425,7 @@ class LoadBalancerClient {
|
|
|
3421
3425
|
* @param ListShapesRequest
|
|
3422
3426
|
* @return ListShapesResponse
|
|
3423
3427
|
* @throws OciError when an error occurs
|
|
3424
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3428
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
3425
3429
|
*/
|
|
3426
3430
|
listShapes(listShapesRequest) {
|
|
3427
3431
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3526,7 +3530,7 @@ class LoadBalancerClient {
|
|
|
3526
3530
|
* @param ListWorkRequestsRequest
|
|
3527
3531
|
* @return ListWorkRequestsResponse
|
|
3528
3532
|
* @throws OciError when an error occurs
|
|
3529
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3533
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
3530
3534
|
*/
|
|
3531
3535
|
listWorkRequests(listWorkRequestsRequest) {
|
|
3532
3536
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3632,7 +3636,7 @@ class LoadBalancerClient {
|
|
|
3632
3636
|
* @param UpdateBackendRequest
|
|
3633
3637
|
* @return UpdateBackendResponse
|
|
3634
3638
|
* @throws OciError when an error occurs
|
|
3635
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3639
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
|
|
3636
3640
|
*/
|
|
3637
3641
|
updateBackend(updateBackendRequest) {
|
|
3638
3642
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3696,7 +3700,7 @@ class LoadBalancerClient {
|
|
|
3696
3700
|
* @param UpdateBackendSetRequest
|
|
3697
3701
|
* @return UpdateBackendSetResponse
|
|
3698
3702
|
* @throws OciError when an error occurs
|
|
3699
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3703
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
|
|
3700
3704
|
*/
|
|
3701
3705
|
updateBackendSet(updateBackendSetRequest) {
|
|
3702
3706
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3759,7 +3763,7 @@ class LoadBalancerClient {
|
|
|
3759
3763
|
* @param UpdateHealthCheckerRequest
|
|
3760
3764
|
* @return UpdateHealthCheckerResponse
|
|
3761
3765
|
* @throws OciError when an error occurs
|
|
3762
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3766
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
|
|
3763
3767
|
*/
|
|
3764
3768
|
updateHealthChecker(updateHealthCheckerRequest) {
|
|
3765
3769
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3824,7 +3828,7 @@ class LoadBalancerClient {
|
|
|
3824
3828
|
* @param UpdateHostnameRequest
|
|
3825
3829
|
* @return UpdateHostnameResponse
|
|
3826
3830
|
* @throws OciError when an error occurs
|
|
3827
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3831
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
|
|
3828
3832
|
*/
|
|
3829
3833
|
updateHostname(updateHostnameRequest) {
|
|
3830
3834
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3887,7 +3891,7 @@ class LoadBalancerClient {
|
|
|
3887
3891
|
* @param UpdateListenerRequest
|
|
3888
3892
|
* @return UpdateListenerResponse
|
|
3889
3893
|
* @throws OciError when an error occurs
|
|
3890
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3894
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
|
|
3891
3895
|
*/
|
|
3892
3896
|
updateListener(updateListenerRequest) {
|
|
3893
3897
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3950,7 +3954,7 @@ class LoadBalancerClient {
|
|
|
3950
3954
|
* @param UpdateLoadBalancerRequest
|
|
3951
3955
|
* @return UpdateLoadBalancerResponse
|
|
3952
3956
|
* @throws OciError when an error occurs
|
|
3953
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3957
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
|
|
3954
3958
|
*/
|
|
3955
3959
|
updateLoadBalancer(updateLoadBalancerRequest) {
|
|
3956
3960
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4018,7 +4022,7 @@ class LoadBalancerClient {
|
|
|
4018
4022
|
* @param UpdateLoadBalancerShapeRequest
|
|
4019
4023
|
* @return UpdateLoadBalancerShapeResponse
|
|
4020
4024
|
* @throws OciError when an error occurs
|
|
4021
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4025
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
|
|
4022
4026
|
*/
|
|
4023
4027
|
updateLoadBalancerShape(updateLoadBalancerShapeRequest) {
|
|
4024
4028
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4080,7 +4084,7 @@ class LoadBalancerClient {
|
|
|
4080
4084
|
* @param UpdateNetworkSecurityGroupsRequest
|
|
4081
4085
|
* @return UpdateNetworkSecurityGroupsResponse
|
|
4082
4086
|
* @throws OciError when an error occurs
|
|
4083
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4087
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
|
|
4084
4088
|
*/
|
|
4085
4089
|
updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest) {
|
|
4086
4090
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4148,7 +4152,7 @@ class LoadBalancerClient {
|
|
|
4148
4152
|
* @param UpdatePathRouteSetRequest
|
|
4149
4153
|
* @return UpdatePathRouteSetResponse
|
|
4150
4154
|
* @throws OciError when an error occurs
|
|
4151
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4155
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
|
|
4152
4156
|
*/
|
|
4153
4157
|
updatePathRouteSet(updatePathRouteSetRequest) {
|
|
4154
4158
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4215,7 +4219,7 @@ class LoadBalancerClient {
|
|
|
4215
4219
|
* @param UpdateRoutingPolicyRequest
|
|
4216
4220
|
* @return UpdateRoutingPolicyResponse
|
|
4217
4221
|
* @throws OciError when an error occurs
|
|
4218
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4222
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
|
|
4219
4223
|
*/
|
|
4220
4224
|
updateRoutingPolicy(updateRoutingPolicyRequest) {
|
|
4221
4225
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4282,7 +4286,7 @@ class LoadBalancerClient {
|
|
|
4282
4286
|
* @param UpdateRuleSetRequest
|
|
4283
4287
|
* @return UpdateRuleSetResponse
|
|
4284
4288
|
* @throws OciError when an error occurs
|
|
4285
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4289
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
|
|
4286
4290
|
*/
|
|
4287
4291
|
updateRuleSet(updateRuleSetRequest) {
|
|
4288
4292
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4345,7 +4349,7 @@ class LoadBalancerClient {
|
|
|
4345
4349
|
* @param UpdateSSLCipherSuiteRequest
|
|
4346
4350
|
* @return UpdateSSLCipherSuiteResponse
|
|
4347
4351
|
* @throws OciError when an error occurs
|
|
4348
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4352
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
|
|
4349
4353
|
*/
|
|
4350
4354
|
updateSSLCipherSuite(updateSSLCipherSuiteRequest) {
|
|
4351
4355
|
return __awaiter(this, void 0, void 0, function* () {
|