oci-loadbalancer 2.22.0 → 2.24.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 +67 -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
|
@@ -62,6 +62,7 @@ class LoadBalancerClient {
|
|
|
62
62
|
this["_endpoint"] = "";
|
|
63
63
|
this["_defaultHeaders"] = {};
|
|
64
64
|
this._circuitBreaker = null;
|
|
65
|
+
this._httpOptions = undefined;
|
|
65
66
|
const requestSigner = params.authenticationDetailsProvider
|
|
66
67
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
67
68
|
: null;
|
|
@@ -70,6 +71,9 @@ class LoadBalancerClient {
|
|
|
70
71
|
this._circuitBreaker = clientConfiguration.circuitBreaker
|
|
71
72
|
? clientConfiguration.circuitBreaker.circuit
|
|
72
73
|
: null;
|
|
74
|
+
this._httpOptions = clientConfiguration.httpOptions
|
|
75
|
+
? clientConfiguration.httpOptions
|
|
76
|
+
: undefined;
|
|
73
77
|
}
|
|
74
78
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
75
79
|
const specCircuitBreakerEnabled = true;
|
|
@@ -79,7 +83,8 @@ class LoadBalancerClient {
|
|
|
79
83
|
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
80
84
|
}
|
|
81
85
|
this._httpClient =
|
|
82
|
-
params.httpClient ||
|
|
86
|
+
params.httpClient ||
|
|
87
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
83
88
|
if (params.authenticationDetailsProvider &&
|
|
84
89
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
85
90
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -155,7 +160,7 @@ class LoadBalancerClient {
|
|
|
155
160
|
* @param ChangeLoadBalancerCompartmentRequest
|
|
156
161
|
* @return ChangeLoadBalancerCompartmentResponse
|
|
157
162
|
* @throws OciError when an error occurs
|
|
158
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
163
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ChangeLoadBalancerCompartment.ts.html |here} to see how to use ChangeLoadBalancerCompartment API.
|
|
159
164
|
*/
|
|
160
165
|
changeLoadBalancerCompartment(changeLoadBalancerCompartmentRequest) {
|
|
161
166
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -215,7 +220,7 @@ class LoadBalancerClient {
|
|
|
215
220
|
* @param CreateBackendRequest
|
|
216
221
|
* @return CreateBackendResponse
|
|
217
222
|
* @throws OciError when an error occurs
|
|
218
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreateBackend.ts.html |here} to see how to use CreateBackend API.
|
|
219
224
|
*/
|
|
220
225
|
createBackend(createBackendRequest) {
|
|
221
226
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -275,7 +280,7 @@ class LoadBalancerClient {
|
|
|
275
280
|
* @param CreateBackendSetRequest
|
|
276
281
|
* @return CreateBackendSetResponse
|
|
277
282
|
* @throws OciError when an error occurs
|
|
278
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
283
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreateBackendSet.ts.html |here} to see how to use CreateBackendSet API.
|
|
279
284
|
*/
|
|
280
285
|
createBackendSet(createBackendSetRequest) {
|
|
281
286
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -334,7 +339,7 @@ class LoadBalancerClient {
|
|
|
334
339
|
* @param CreateCertificateRequest
|
|
335
340
|
* @return CreateCertificateResponse
|
|
336
341
|
* @throws OciError when an error occurs
|
|
337
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
342
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
|
|
338
343
|
*/
|
|
339
344
|
createCertificate(createCertificateRequest) {
|
|
340
345
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -395,7 +400,7 @@ class LoadBalancerClient {
|
|
|
395
400
|
* @param CreateHostnameRequest
|
|
396
401
|
* @return CreateHostnameResponse
|
|
397
402
|
* @throws OciError when an error occurs
|
|
398
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
403
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreateHostname.ts.html |here} to see how to use CreateHostname API.
|
|
399
404
|
*/
|
|
400
405
|
createHostname(createHostnameRequest) {
|
|
401
406
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -454,7 +459,7 @@ class LoadBalancerClient {
|
|
|
454
459
|
* @param CreateListenerRequest
|
|
455
460
|
* @return CreateListenerResponse
|
|
456
461
|
* @throws OciError when an error occurs
|
|
457
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
462
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreateListener.ts.html |here} to see how to use CreateListener API.
|
|
458
463
|
*/
|
|
459
464
|
createListener(createListenerRequest) {
|
|
460
465
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -540,7 +545,7 @@ class LoadBalancerClient {
|
|
|
540
545
|
* @param CreateLoadBalancerRequest
|
|
541
546
|
* @return CreateLoadBalancerResponse
|
|
542
547
|
* @throws OciError when an error occurs
|
|
543
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
548
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreateLoadBalancer.ts.html |here} to see how to use CreateLoadBalancer API.
|
|
544
549
|
*/
|
|
545
550
|
createLoadBalancer(createLoadBalancerRequest) {
|
|
546
551
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -599,7 +604,7 @@ class LoadBalancerClient {
|
|
|
599
604
|
* @param CreatePathRouteSetRequest
|
|
600
605
|
* @return CreatePathRouteSetResponse
|
|
601
606
|
* @throws OciError when an error occurs
|
|
602
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
607
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreatePathRouteSet.ts.html |here} to see how to use CreatePathRouteSet API.
|
|
603
608
|
*/
|
|
604
609
|
createPathRouteSet(createPathRouteSetRequest) {
|
|
605
610
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -660,7 +665,7 @@ class LoadBalancerClient {
|
|
|
660
665
|
* @param CreateRoutingPolicyRequest
|
|
661
666
|
* @return CreateRoutingPolicyResponse
|
|
662
667
|
* @throws OciError when an error occurs
|
|
663
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
668
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreateRoutingPolicy.ts.html |here} to see how to use CreateRoutingPolicy API.
|
|
664
669
|
*/
|
|
665
670
|
createRoutingPolicy(createRoutingPolicyRequest) {
|
|
666
671
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -721,7 +726,7 @@ class LoadBalancerClient {
|
|
|
721
726
|
* @param CreateRuleSetRequest
|
|
722
727
|
* @return CreateRuleSetResponse
|
|
723
728
|
* @throws OciError when an error occurs
|
|
724
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
729
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreateRuleSet.ts.html |here} to see how to use CreateRuleSet API.
|
|
725
730
|
*/
|
|
726
731
|
createRuleSet(createRuleSetRequest) {
|
|
727
732
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -779,7 +784,7 @@ class LoadBalancerClient {
|
|
|
779
784
|
* @param CreateSSLCipherSuiteRequest
|
|
780
785
|
* @return CreateSSLCipherSuiteResponse
|
|
781
786
|
* @throws OciError when an error occurs
|
|
782
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
787
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/CreateSSLCipherSuite.ts.html |here} to see how to use CreateSSLCipherSuite API.
|
|
783
788
|
*/
|
|
784
789
|
createSSLCipherSuite(createSSLCipherSuiteRequest) {
|
|
785
790
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -838,7 +843,7 @@ class LoadBalancerClient {
|
|
|
838
843
|
* @param DeleteBackendRequest
|
|
839
844
|
* @return DeleteBackendResponse
|
|
840
845
|
* @throws OciError when an error occurs
|
|
841
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
846
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeleteBackend.ts.html |here} to see how to use DeleteBackend API.
|
|
842
847
|
*/
|
|
843
848
|
deleteBackend(deleteBackendRequest) {
|
|
844
849
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -900,7 +905,7 @@ class LoadBalancerClient {
|
|
|
900
905
|
* @param DeleteBackendSetRequest
|
|
901
906
|
* @return DeleteBackendSetResponse
|
|
902
907
|
* @throws OciError when an error occurs
|
|
903
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
908
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeleteBackendSet.ts.html |here} to see how to use DeleteBackendSet API.
|
|
904
909
|
*/
|
|
905
910
|
deleteBackendSet(deleteBackendSetRequest) {
|
|
906
911
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -958,7 +963,7 @@ class LoadBalancerClient {
|
|
|
958
963
|
* @param DeleteCertificateRequest
|
|
959
964
|
* @return DeleteCertificateResponse
|
|
960
965
|
* @throws OciError when an error occurs
|
|
961
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
966
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
|
|
962
967
|
*/
|
|
963
968
|
deleteCertificate(deleteCertificateRequest) {
|
|
964
969
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1017,7 +1022,7 @@ class LoadBalancerClient {
|
|
|
1017
1022
|
* @param DeleteHostnameRequest
|
|
1018
1023
|
* @return DeleteHostnameResponse
|
|
1019
1024
|
* @throws OciError when an error occurs
|
|
1020
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1025
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeleteHostname.ts.html |here} to see how to use DeleteHostname API.
|
|
1021
1026
|
*/
|
|
1022
1027
|
deleteHostname(deleteHostnameRequest) {
|
|
1023
1028
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1075,7 +1080,7 @@ class LoadBalancerClient {
|
|
|
1075
1080
|
* @param DeleteListenerRequest
|
|
1076
1081
|
* @return DeleteListenerResponse
|
|
1077
1082
|
* @throws OciError when an error occurs
|
|
1078
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1083
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeleteListener.ts.html |here} to see how to use DeleteListener API.
|
|
1079
1084
|
*/
|
|
1080
1085
|
deleteListener(deleteListenerRequest) {
|
|
1081
1086
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1133,7 +1138,7 @@ class LoadBalancerClient {
|
|
|
1133
1138
|
* @param DeleteLoadBalancerRequest
|
|
1134
1139
|
* @return DeleteLoadBalancerResponse
|
|
1135
1140
|
* @throws OciError when an error occurs
|
|
1136
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1141
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeleteLoadBalancer.ts.html |here} to see how to use DeleteLoadBalancer API.
|
|
1137
1142
|
*/
|
|
1138
1143
|
deleteLoadBalancer(deleteLoadBalancerRequest) {
|
|
1139
1144
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1194,7 +1199,7 @@ class LoadBalancerClient {
|
|
|
1194
1199
|
* @param DeletePathRouteSetRequest
|
|
1195
1200
|
* @return DeletePathRouteSetResponse
|
|
1196
1201
|
* @throws OciError when an error occurs
|
|
1197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1202
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeletePathRouteSet.ts.html |here} to see how to use DeletePathRouteSet API.
|
|
1198
1203
|
*/
|
|
1199
1204
|
deletePathRouteSet(deletePathRouteSetRequest) {
|
|
1200
1205
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1256,7 +1261,7 @@ class LoadBalancerClient {
|
|
|
1256
1261
|
* @param DeleteRoutingPolicyRequest
|
|
1257
1262
|
* @return DeleteRoutingPolicyResponse
|
|
1258
1263
|
* @throws OciError when an error occurs
|
|
1259
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1264
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeleteRoutingPolicy.ts.html |here} to see how to use DeleteRoutingPolicy API.
|
|
1260
1265
|
*/
|
|
1261
1266
|
deleteRoutingPolicy(deleteRoutingPolicyRequest) {
|
|
1262
1267
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1318,7 +1323,7 @@ class LoadBalancerClient {
|
|
|
1318
1323
|
* @param DeleteRuleSetRequest
|
|
1319
1324
|
* @return DeleteRuleSetResponse
|
|
1320
1325
|
* @throws OciError when an error occurs
|
|
1321
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1326
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeleteRuleSet.ts.html |here} to see how to use DeleteRuleSet API.
|
|
1322
1327
|
*/
|
|
1323
1328
|
deleteRuleSet(deleteRuleSetRequest) {
|
|
1324
1329
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1376,7 +1381,7 @@ class LoadBalancerClient {
|
|
|
1376
1381
|
* @param DeleteSSLCipherSuiteRequest
|
|
1377
1382
|
* @return DeleteSSLCipherSuiteResponse
|
|
1378
1383
|
* @throws OciError when an error occurs
|
|
1379
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1384
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/DeleteSSLCipherSuite.ts.html |here} to see how to use DeleteSSLCipherSuite API.
|
|
1380
1385
|
*/
|
|
1381
1386
|
deleteSSLCipherSuite(deleteSSLCipherSuiteRequest) {
|
|
1382
1387
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1434,7 +1439,7 @@ class LoadBalancerClient {
|
|
|
1434
1439
|
* @param GetBackendRequest
|
|
1435
1440
|
* @return GetBackendResponse
|
|
1436
1441
|
* @throws OciError when an error occurs
|
|
1437
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1442
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetBackend.ts.html |here} to see how to use GetBackend API.
|
|
1438
1443
|
*/
|
|
1439
1444
|
getBackend(getBackendRequest) {
|
|
1440
1445
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1492,7 +1497,7 @@ class LoadBalancerClient {
|
|
|
1492
1497
|
* @param GetBackendHealthRequest
|
|
1493
1498
|
* @return GetBackendHealthResponse
|
|
1494
1499
|
* @throws OciError when an error occurs
|
|
1495
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1500
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetBackendHealth.ts.html |here} to see how to use GetBackendHealth API.
|
|
1496
1501
|
*/
|
|
1497
1502
|
getBackendHealth(getBackendHealthRequest) {
|
|
1498
1503
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1550,7 +1555,7 @@ class LoadBalancerClient {
|
|
|
1550
1555
|
* @param GetBackendSetRequest
|
|
1551
1556
|
* @return GetBackendSetResponse
|
|
1552
1557
|
* @throws OciError when an error occurs
|
|
1553
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1558
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetBackendSet.ts.html |here} to see how to use GetBackendSet API.
|
|
1554
1559
|
*/
|
|
1555
1560
|
getBackendSet(getBackendSetRequest) {
|
|
1556
1561
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1607,7 +1612,7 @@ class LoadBalancerClient {
|
|
|
1607
1612
|
* @param GetBackendSetHealthRequest
|
|
1608
1613
|
* @return GetBackendSetHealthResponse
|
|
1609
1614
|
* @throws OciError when an error occurs
|
|
1610
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1615
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetBackendSetHealth.ts.html |here} to see how to use GetBackendSetHealth API.
|
|
1611
1616
|
*/
|
|
1612
1617
|
getBackendSetHealth(getBackendSetHealthRequest) {
|
|
1613
1618
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1664,7 +1669,7 @@ class LoadBalancerClient {
|
|
|
1664
1669
|
* @param GetHealthCheckerRequest
|
|
1665
1670
|
* @return GetHealthCheckerResponse
|
|
1666
1671
|
* @throws OciError when an error occurs
|
|
1667
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1672
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetHealthChecker.ts.html |here} to see how to use GetHealthChecker API.
|
|
1668
1673
|
*/
|
|
1669
1674
|
getHealthChecker(getHealthCheckerRequest) {
|
|
1670
1675
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1721,7 +1726,7 @@ class LoadBalancerClient {
|
|
|
1721
1726
|
* @param GetHostnameRequest
|
|
1722
1727
|
* @return GetHostnameResponse
|
|
1723
1728
|
* @throws OciError when an error occurs
|
|
1724
|
-
* @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.24.0/loadbalancer/GetHostname.ts.html |here} to see how to use GetHostname API.
|
|
1725
1730
|
*/
|
|
1726
1731
|
getHostname(getHostnameRequest) {
|
|
1727
1732
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1778,7 +1783,7 @@ class LoadBalancerClient {
|
|
|
1778
1783
|
* @param GetLoadBalancerRequest
|
|
1779
1784
|
* @return GetLoadBalancerResponse
|
|
1780
1785
|
* @throws OciError when an error occurs
|
|
1781
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1786
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetLoadBalancer.ts.html |here} to see how to use GetLoadBalancer API.
|
|
1782
1787
|
*/
|
|
1783
1788
|
getLoadBalancer(getLoadBalancerRequest) {
|
|
1784
1789
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1834,7 +1839,7 @@ class LoadBalancerClient {
|
|
|
1834
1839
|
* @param GetLoadBalancerHealthRequest
|
|
1835
1840
|
* @return GetLoadBalancerHealthResponse
|
|
1836
1841
|
* @throws OciError when an error occurs
|
|
1837
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1842
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetLoadBalancerHealth.ts.html |here} to see how to use GetLoadBalancerHealth API.
|
|
1838
1843
|
*/
|
|
1839
1844
|
getLoadBalancerHealth(getLoadBalancerHealthRequest) {
|
|
1840
1845
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1890,7 +1895,7 @@ class LoadBalancerClient {
|
|
|
1890
1895
|
* @param GetPathRouteSetRequest
|
|
1891
1896
|
* @return GetPathRouteSetResponse
|
|
1892
1897
|
* @throws OciError when an error occurs
|
|
1893
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1898
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetPathRouteSet.ts.html |here} to see how to use GetPathRouteSet API.
|
|
1894
1899
|
*/
|
|
1895
1900
|
getPathRouteSet(getPathRouteSetRequest) {
|
|
1896
1901
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1947,7 +1952,7 @@ class LoadBalancerClient {
|
|
|
1947
1952
|
* @param GetRoutingPolicyRequest
|
|
1948
1953
|
* @return GetRoutingPolicyResponse
|
|
1949
1954
|
* @throws OciError when an error occurs
|
|
1950
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1955
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetRoutingPolicy.ts.html |here} to see how to use GetRoutingPolicy API.
|
|
1951
1956
|
*/
|
|
1952
1957
|
getRoutingPolicy(getRoutingPolicyRequest) {
|
|
1953
1958
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2004,7 +2009,7 @@ class LoadBalancerClient {
|
|
|
2004
2009
|
* @param GetRuleSetRequest
|
|
2005
2010
|
* @return GetRuleSetResponse
|
|
2006
2011
|
* @throws OciError when an error occurs
|
|
2007
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2012
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetRuleSet.ts.html |here} to see how to use GetRuleSet API.
|
|
2008
2013
|
*/
|
|
2009
2014
|
getRuleSet(getRuleSetRequest) {
|
|
2010
2015
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2061,7 +2066,7 @@ class LoadBalancerClient {
|
|
|
2061
2066
|
* @param GetSSLCipherSuiteRequest
|
|
2062
2067
|
* @return GetSSLCipherSuiteResponse
|
|
2063
2068
|
* @throws OciError when an error occurs
|
|
2064
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2069
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetSSLCipherSuite.ts.html |here} to see how to use GetSSLCipherSuite API.
|
|
2065
2070
|
*/
|
|
2066
2071
|
getSSLCipherSuite(getSSLCipherSuiteRequest) {
|
|
2067
2072
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2118,7 +2123,7 @@ class LoadBalancerClient {
|
|
|
2118
2123
|
* @param GetWorkRequestRequest
|
|
2119
2124
|
* @return GetWorkRequestResponse
|
|
2120
2125
|
* @throws OciError when an error occurs
|
|
2121
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2126
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
2122
2127
|
*/
|
|
2123
2128
|
getWorkRequest(getWorkRequestRequest) {
|
|
2124
2129
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2174,7 +2179,7 @@ class LoadBalancerClient {
|
|
|
2174
2179
|
* @param ListBackendSetsRequest
|
|
2175
2180
|
* @return ListBackendSetsResponse
|
|
2176
2181
|
* @throws OciError when an error occurs
|
|
2177
|
-
* @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.24.0/loadbalancer/ListBackendSets.ts.html |here} to see how to use ListBackendSets API.
|
|
2178
2183
|
*/
|
|
2179
2184
|
listBackendSets(listBackendSetsRequest) {
|
|
2180
2185
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2230,7 +2235,7 @@ class LoadBalancerClient {
|
|
|
2230
2235
|
* @param ListBackendsRequest
|
|
2231
2236
|
* @return ListBackendsResponse
|
|
2232
2237
|
* @throws OciError when an error occurs
|
|
2233
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2238
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListBackends.ts.html |here} to see how to use ListBackends API.
|
|
2234
2239
|
*/
|
|
2235
2240
|
listBackends(listBackendsRequest) {
|
|
2236
2241
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2287,7 +2292,7 @@ class LoadBalancerClient {
|
|
|
2287
2292
|
* @param ListCertificatesRequest
|
|
2288
2293
|
* @return ListCertificatesResponse
|
|
2289
2294
|
* @throws OciError when an error occurs
|
|
2290
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2295
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListCertificates.ts.html |here} to see how to use ListCertificates API.
|
|
2291
2296
|
*/
|
|
2292
2297
|
listCertificates(listCertificatesRequest) {
|
|
2293
2298
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2343,7 +2348,7 @@ class LoadBalancerClient {
|
|
|
2343
2348
|
* @param ListHostnamesRequest
|
|
2344
2349
|
* @return ListHostnamesResponse
|
|
2345
2350
|
* @throws OciError when an error occurs
|
|
2346
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2351
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListHostnames.ts.html |here} to see how to use ListHostnames API.
|
|
2347
2352
|
*/
|
|
2348
2353
|
listHostnames(listHostnamesRequest) {
|
|
2349
2354
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2406,7 +2411,7 @@ class LoadBalancerClient {
|
|
|
2406
2411
|
* @param ListListenerRulesRequest
|
|
2407
2412
|
* @return ListListenerRulesResponse
|
|
2408
2413
|
* @throws OciError when an error occurs
|
|
2409
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2414
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListListenerRules.ts.html |here} to see how to use ListListenerRules API.
|
|
2410
2415
|
*/
|
|
2411
2416
|
listListenerRules(listListenerRulesRequest) {
|
|
2412
2417
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2463,7 +2468,7 @@ class LoadBalancerClient {
|
|
|
2463
2468
|
* @param ListLoadBalancerHealthsRequest
|
|
2464
2469
|
* @return ListLoadBalancerHealthsResponse
|
|
2465
2470
|
* @throws OciError when an error occurs
|
|
2466
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2471
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListLoadBalancerHealths.ts.html |here} to see how to use ListLoadBalancerHealths API.
|
|
2467
2472
|
*/
|
|
2468
2473
|
listLoadBalancerHealths(listLoadBalancerHealthsRequest) {
|
|
2469
2474
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2566,7 +2571,7 @@ class LoadBalancerClient {
|
|
|
2566
2571
|
* @param ListLoadBalancersRequest
|
|
2567
2572
|
* @return ListLoadBalancersResponse
|
|
2568
2573
|
* @throws OciError when an error occurs
|
|
2569
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2574
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListLoadBalancers.ts.html |here} to see how to use ListLoadBalancers API.
|
|
2570
2575
|
*/
|
|
2571
2576
|
listLoadBalancers(listLoadBalancersRequest) {
|
|
2572
2577
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2674,7 +2679,7 @@ class LoadBalancerClient {
|
|
|
2674
2679
|
* @param ListPathRouteSetsRequest
|
|
2675
2680
|
* @return ListPathRouteSetsResponse
|
|
2676
2681
|
* @throws OciError when an error occurs
|
|
2677
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2682
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListPathRouteSets.ts.html |here} to see how to use ListPathRouteSets API.
|
|
2678
2683
|
*/
|
|
2679
2684
|
listPathRouteSets(listPathRouteSetsRequest) {
|
|
2680
2685
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2730,7 +2735,7 @@ class LoadBalancerClient {
|
|
|
2730
2735
|
* @param ListPoliciesRequest
|
|
2731
2736
|
* @return ListPoliciesResponse
|
|
2732
2737
|
* @throws OciError when an error occurs
|
|
2733
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2738
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListPolicies.ts.html |here} to see how to use ListPolicies API.
|
|
2734
2739
|
*/
|
|
2735
2740
|
listPolicies(listPoliciesRequest) {
|
|
2736
2741
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2833,7 +2838,7 @@ class LoadBalancerClient {
|
|
|
2833
2838
|
* @param ListProtocolsRequest
|
|
2834
2839
|
* @return ListProtocolsResponse
|
|
2835
2840
|
* @throws OciError when an error occurs
|
|
2836
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2841
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListProtocols.ts.html |here} to see how to use ListProtocols API.
|
|
2837
2842
|
*/
|
|
2838
2843
|
listProtocols(listProtocolsRequest) {
|
|
2839
2844
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2936,7 +2941,7 @@ class LoadBalancerClient {
|
|
|
2936
2941
|
* @param ListRoutingPoliciesRequest
|
|
2937
2942
|
* @return ListRoutingPoliciesResponse
|
|
2938
2943
|
* @throws OciError when an error occurs
|
|
2939
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2944
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListRoutingPolicies.ts.html |here} to see how to use ListRoutingPolicies API.
|
|
2940
2945
|
*/
|
|
2941
2946
|
listRoutingPolicies(listRoutingPoliciesRequest) {
|
|
2942
2947
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3040,7 +3045,7 @@ class LoadBalancerClient {
|
|
|
3040
3045
|
* @param ListRuleSetsRequest
|
|
3041
3046
|
* @return ListRuleSetsResponse
|
|
3042
3047
|
* @throws OciError when an error occurs
|
|
3043
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3048
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListRuleSets.ts.html |here} to see how to use ListRuleSets API.
|
|
3044
3049
|
*/
|
|
3045
3050
|
listRuleSets(listRuleSetsRequest) {
|
|
3046
3051
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3096,7 +3101,7 @@ class LoadBalancerClient {
|
|
|
3096
3101
|
* @param ListSSLCipherSuitesRequest
|
|
3097
3102
|
* @return ListSSLCipherSuitesResponse
|
|
3098
3103
|
* @throws OciError when an error occurs
|
|
3099
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3104
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListSSLCipherSuites.ts.html |here} to see how to use ListSSLCipherSuites API.
|
|
3100
3105
|
*/
|
|
3101
3106
|
listSSLCipherSuites(listSSLCipherSuitesRequest) {
|
|
3102
3107
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3152,7 +3157,7 @@ class LoadBalancerClient {
|
|
|
3152
3157
|
* @param ListShapesRequest
|
|
3153
3158
|
* @return ListShapesResponse
|
|
3154
3159
|
* @throws OciError when an error occurs
|
|
3155
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3160
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListShapes.ts.html |here} to see how to use ListShapes API.
|
|
3156
3161
|
*/
|
|
3157
3162
|
listShapes(listShapesRequest) {
|
|
3158
3163
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3255,7 +3260,7 @@ class LoadBalancerClient {
|
|
|
3255
3260
|
* @param ListWorkRequestsRequest
|
|
3256
3261
|
* @return ListWorkRequestsResponse
|
|
3257
3262
|
* @throws OciError when an error occurs
|
|
3258
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3263
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
3259
3264
|
*/
|
|
3260
3265
|
listWorkRequests(listWorkRequestsRequest) {
|
|
3261
3266
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3359,7 +3364,7 @@ class LoadBalancerClient {
|
|
|
3359
3364
|
* @param UpdateBackendRequest
|
|
3360
3365
|
* @return UpdateBackendResponse
|
|
3361
3366
|
* @throws OciError when an error occurs
|
|
3362
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3367
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateBackend.ts.html |here} to see how to use UpdateBackend API.
|
|
3363
3368
|
*/
|
|
3364
3369
|
updateBackend(updateBackendRequest) {
|
|
3365
3370
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3420,7 +3425,7 @@ class LoadBalancerClient {
|
|
|
3420
3425
|
* @param UpdateBackendSetRequest
|
|
3421
3426
|
* @return UpdateBackendSetResponse
|
|
3422
3427
|
* @throws OciError when an error occurs
|
|
3423
|
-
* @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.24.0/loadbalancer/UpdateBackendSet.ts.html |here} to see how to use UpdateBackendSet API.
|
|
3424
3429
|
*/
|
|
3425
3430
|
updateBackendSet(updateBackendSetRequest) {
|
|
3426
3431
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3480,7 +3485,7 @@ class LoadBalancerClient {
|
|
|
3480
3485
|
* @param UpdateHealthCheckerRequest
|
|
3481
3486
|
* @return UpdateHealthCheckerResponse
|
|
3482
3487
|
* @throws OciError when an error occurs
|
|
3483
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3488
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateHealthChecker.ts.html |here} to see how to use UpdateHealthChecker API.
|
|
3484
3489
|
*/
|
|
3485
3490
|
updateHealthChecker(updateHealthCheckerRequest) {
|
|
3486
3491
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3542,7 +3547,7 @@ class LoadBalancerClient {
|
|
|
3542
3547
|
* @param UpdateHostnameRequest
|
|
3543
3548
|
* @return UpdateHostnameResponse
|
|
3544
3549
|
* @throws OciError when an error occurs
|
|
3545
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3550
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateHostname.ts.html |here} to see how to use UpdateHostname API.
|
|
3546
3551
|
*/
|
|
3547
3552
|
updateHostname(updateHostnameRequest) {
|
|
3548
3553
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3601,7 +3606,7 @@ class LoadBalancerClient {
|
|
|
3601
3606
|
* @param UpdateListenerRequest
|
|
3602
3607
|
* @return UpdateListenerResponse
|
|
3603
3608
|
* @throws OciError when an error occurs
|
|
3604
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3609
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateListener.ts.html |here} to see how to use UpdateListener API.
|
|
3605
3610
|
*/
|
|
3606
3611
|
updateListener(updateListenerRequest) {
|
|
3607
3612
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3661,7 +3666,7 @@ class LoadBalancerClient {
|
|
|
3661
3666
|
* @param UpdateLoadBalancerRequest
|
|
3662
3667
|
* @return UpdateLoadBalancerResponse
|
|
3663
3668
|
* @throws OciError when an error occurs
|
|
3664
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3669
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateLoadBalancer.ts.html |here} to see how to use UpdateLoadBalancer API.
|
|
3665
3670
|
*/
|
|
3666
3671
|
updateLoadBalancer(updateLoadBalancerRequest) {
|
|
3667
3672
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3726,7 +3731,7 @@ class LoadBalancerClient {
|
|
|
3726
3731
|
* @param UpdateLoadBalancerShapeRequest
|
|
3727
3732
|
* @return UpdateLoadBalancerShapeResponse
|
|
3728
3733
|
* @throws OciError when an error occurs
|
|
3729
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3734
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateLoadBalancerShape.ts.html |here} to see how to use UpdateLoadBalancerShape API.
|
|
3730
3735
|
*/
|
|
3731
3736
|
updateLoadBalancerShape(updateLoadBalancerShapeRequest) {
|
|
3732
3737
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3785,7 +3790,7 @@ class LoadBalancerClient {
|
|
|
3785
3790
|
* @param UpdateNetworkSecurityGroupsRequest
|
|
3786
3791
|
* @return UpdateNetworkSecurityGroupsResponse
|
|
3787
3792
|
* @throws OciError when an error occurs
|
|
3788
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3793
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateNetworkSecurityGroups.ts.html |here} to see how to use UpdateNetworkSecurityGroups API.
|
|
3789
3794
|
*/
|
|
3790
3795
|
updateNetworkSecurityGroups(updateNetworkSecurityGroupsRequest) {
|
|
3791
3796
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3850,7 +3855,7 @@ class LoadBalancerClient {
|
|
|
3850
3855
|
* @param UpdatePathRouteSetRequest
|
|
3851
3856
|
* @return UpdatePathRouteSetResponse
|
|
3852
3857
|
* @throws OciError when an error occurs
|
|
3853
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3858
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdatePathRouteSet.ts.html |here} to see how to use UpdatePathRouteSet API.
|
|
3854
3859
|
*/
|
|
3855
3860
|
updatePathRouteSet(updatePathRouteSetRequest) {
|
|
3856
3861
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3914,7 +3919,7 @@ class LoadBalancerClient {
|
|
|
3914
3919
|
* @param UpdateRoutingPolicyRequest
|
|
3915
3920
|
* @return UpdateRoutingPolicyResponse
|
|
3916
3921
|
* @throws OciError when an error occurs
|
|
3917
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3922
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateRoutingPolicy.ts.html |here} to see how to use UpdateRoutingPolicy API.
|
|
3918
3923
|
*/
|
|
3919
3924
|
updateRoutingPolicy(updateRoutingPolicyRequest) {
|
|
3920
3925
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3978,7 +3983,7 @@ class LoadBalancerClient {
|
|
|
3978
3983
|
* @param UpdateRuleSetRequest
|
|
3979
3984
|
* @return UpdateRuleSetResponse
|
|
3980
3985
|
* @throws OciError when an error occurs
|
|
3981
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3986
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateRuleSet.ts.html |here} to see how to use UpdateRuleSet API.
|
|
3982
3987
|
*/
|
|
3983
3988
|
updateRuleSet(updateRuleSetRequest) {
|
|
3984
3989
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4037,7 +4042,7 @@ class LoadBalancerClient {
|
|
|
4037
4042
|
* @param UpdateSSLCipherSuiteRequest
|
|
4038
4043
|
* @return UpdateSSLCipherSuiteResponse
|
|
4039
4044
|
* @throws OciError when an error occurs
|
|
4040
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4045
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.24.0/loadbalancer/UpdateSSLCipherSuite.ts.html |here} to see how to use UpdateSSLCipherSuite API.
|
|
4041
4046
|
*/
|
|
4042
4047
|
updateSSLCipherSuite(updateSSLCipherSuiteRequest) {
|
|
4043
4048
|
return __awaiter(this, void 0, void 0, function* () {
|