oci-bds 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 +48 -47
- package/lib/client.js +52 -48
- package/lib/client.js.map +1 -1
- package/lib/request/activate-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/add-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/add-block-storage-request.d.ts +1 -1
- package/lib/request/add-cloud-sql-request.d.ts +1 -1
- package/lib/request/add-kafka-request.d.ts +1 -1
- package/lib/request/add-master-nodes-request.d.ts +1 -1
- package/lib/request/add-utility-nodes-request.d.ts +1 -1
- package/lib/request/add-worker-nodes-request.d.ts +1 -1
- package/lib/request/change-bds-instance-compartment-request.d.ts +1 -1
- package/lib/request/change-shape-request.d.ts +1 -1
- package/lib/request/create-bds-api-key-request.d.ts +1 -1
- package/lib/request/create-bds-instance-request.d.ts +1 -1
- package/lib/request/create-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/delete-bds-api-key-request.d.ts +1 -1
- package/lib/request/delete-bds-instance-request.d.ts +1 -1
- package/lib/request/delete-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/execute-bootstrap-script-request.d.ts +1 -1
- package/lib/request/get-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/get-bds-api-key-request.d.ts +1 -1
- package/lib/request/get-bds-instance-request.d.ts +1 -1
- package/lib/request/get-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/get-os-patch-details-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/install-os-patch-request.d.ts +1 -1
- package/lib/request/install-patch-request.d.ts +1 -1
- package/lib/request/list-auto-scaling-configurations-request.d.ts +1 -1
- package/lib/request/list-bds-api-keys-request.d.ts +1 -1
- package/lib/request/list-bds-instances-request.d.ts +1 -1
- package/lib/request/list-bds-metastore-configurations-request.d.ts +1 -1
- package/lib/request/list-os-patches-request.d.ts +1 -1
- package/lib/request/list-patch-histories-request.d.ts +1 -1
- package/lib/request/list-patches-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/remove-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/remove-cloud-sql-request.d.ts +1 -1
- package/lib/request/remove-kafka-request.d.ts +1 -1
- package/lib/request/remove-node-request.d.ts +1 -1
- package/lib/request/restart-node-request.d.ts +1 -1
- package/lib/request/start-bds-instance-request.d.ts +1 -1
- package/lib/request/stop-bds-instance-request.d.ts +1 -1
- package/lib/request/test-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/test-bds-object-storage-connection-request.d.ts +1 -1
- package/lib/request/update-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/update-bds-instance-request.d.ts +1 -1
- package/lib/request/update-bds-metastore-configuration-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -63,6 +63,7 @@ class BdsClient {
|
|
|
63
63
|
this["_defaultHeaders"] = {};
|
|
64
64
|
this._circuitBreaker = null;
|
|
65
65
|
this._httpOptions = undefined;
|
|
66
|
+
this._bodyDuplexMode = undefined;
|
|
66
67
|
this.targetService = "Bds";
|
|
67
68
|
this._regionId = "";
|
|
68
69
|
this._lastSetRegionOrRegionId = "";
|
|
@@ -77,6 +78,9 @@ class BdsClient {
|
|
|
77
78
|
this._httpOptions = clientConfiguration.httpOptions
|
|
78
79
|
? clientConfiguration.httpOptions
|
|
79
80
|
: undefined;
|
|
81
|
+
this._bodyDuplexMode = clientConfiguration.bodyDuplexMode
|
|
82
|
+
? clientConfiguration.bodyDuplexMode
|
|
83
|
+
: undefined;
|
|
80
84
|
}
|
|
81
85
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
82
86
|
const specCircuitBreakerEnabled = true;
|
|
@@ -87,7 +91,7 @@ class BdsClient {
|
|
|
87
91
|
}
|
|
88
92
|
this._httpClient =
|
|
89
93
|
params.httpClient ||
|
|
90
|
-
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions);
|
|
94
|
+
new common.FetchHttpClient(requestSigner, this._circuitBreaker, this._httpOptions, this._bodyDuplexMode);
|
|
91
95
|
if (params.authenticationDetailsProvider &&
|
|
92
96
|
common.isRegionProvider(params.authenticationDetailsProvider)) {
|
|
93
97
|
const provider = params.authenticationDetailsProvider;
|
|
@@ -182,7 +186,7 @@ class BdsClient {
|
|
|
182
186
|
* @param ActivateBdsMetastoreConfigurationRequest
|
|
183
187
|
* @return ActivateBdsMetastoreConfigurationResponse
|
|
184
188
|
* @throws OciError when an error occurs
|
|
185
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
189
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
|
|
186
190
|
*/
|
|
187
191
|
activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest) {
|
|
188
192
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -246,7 +250,7 @@ class BdsClient {
|
|
|
246
250
|
* @param AddAutoScalingConfigurationRequest
|
|
247
251
|
* @return AddAutoScalingConfigurationResponse
|
|
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/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
250
254
|
*/
|
|
251
255
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest) {
|
|
252
256
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -309,7 +313,7 @@ class BdsClient {
|
|
|
309
313
|
* @param AddBlockStorageRequest
|
|
310
314
|
* @return AddBlockStorageResponse
|
|
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/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
313
317
|
*/
|
|
314
318
|
addBlockStorage(addBlockStorageRequest) {
|
|
315
319
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -372,7 +376,7 @@ class BdsClient {
|
|
|
372
376
|
* @param AddCloudSqlRequest
|
|
373
377
|
* @return AddCloudSqlResponse
|
|
374
378
|
* @throws OciError when an error occurs
|
|
375
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
379
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
376
380
|
*/
|
|
377
381
|
addCloudSql(addCloudSqlRequest) {
|
|
378
382
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -435,7 +439,7 @@ class BdsClient {
|
|
|
435
439
|
* @param AddKafkaRequest
|
|
436
440
|
* @return AddKafkaResponse
|
|
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/bds/AddKafka.ts.html |here} to see how to use AddKafka API.
|
|
439
443
|
*/
|
|
440
444
|
addKafka(addKafkaRequest) {
|
|
441
445
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -498,7 +502,7 @@ class BdsClient {
|
|
|
498
502
|
* @param AddMasterNodesRequest
|
|
499
503
|
* @return AddMasterNodesResponse
|
|
500
504
|
* @throws OciError when an error occurs
|
|
501
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
505
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/AddMasterNodes.ts.html |here} to see how to use AddMasterNodes API.
|
|
502
506
|
*/
|
|
503
507
|
addMasterNodes(addMasterNodesRequest) {
|
|
504
508
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -561,7 +565,7 @@ class BdsClient {
|
|
|
561
565
|
* @param AddUtilityNodesRequest
|
|
562
566
|
* @return AddUtilityNodesResponse
|
|
563
567
|
* @throws OciError when an error occurs
|
|
564
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
568
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/AddUtilityNodes.ts.html |here} to see how to use AddUtilityNodes API.
|
|
565
569
|
*/
|
|
566
570
|
addUtilityNodes(addUtilityNodesRequest) {
|
|
567
571
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -624,7 +628,7 @@ class BdsClient {
|
|
|
624
628
|
* @param AddWorkerNodesRequest
|
|
625
629
|
* @return AddWorkerNodesResponse
|
|
626
630
|
* @throws OciError when an error occurs
|
|
627
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
631
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
628
632
|
*/
|
|
629
633
|
addWorkerNodes(addWorkerNodesRequest) {
|
|
630
634
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -687,7 +691,7 @@ class BdsClient {
|
|
|
687
691
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
688
692
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
689
693
|
* @throws OciError when an error occurs
|
|
690
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
694
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
691
695
|
*/
|
|
692
696
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest) {
|
|
693
697
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -750,7 +754,7 @@ class BdsClient {
|
|
|
750
754
|
* @param ChangeShapeRequest
|
|
751
755
|
* @return ChangeShapeResponse
|
|
752
756
|
* @throws OciError when an error occurs
|
|
753
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
757
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
754
758
|
*/
|
|
755
759
|
changeShape(changeShapeRequest) {
|
|
756
760
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -813,7 +817,7 @@ class BdsClient {
|
|
|
813
817
|
* @param CreateBdsApiKeyRequest
|
|
814
818
|
* @return CreateBdsApiKeyResponse
|
|
815
819
|
* @throws OciError when an error occurs
|
|
816
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
820
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
|
|
817
821
|
*/
|
|
818
822
|
createBdsApiKey(createBdsApiKeyRequest) {
|
|
819
823
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -875,7 +879,7 @@ class BdsClient {
|
|
|
875
879
|
* @param CreateBdsInstanceRequest
|
|
876
880
|
* @return CreateBdsInstanceResponse
|
|
877
881
|
* @throws OciError when an error occurs
|
|
878
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
882
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
879
883
|
*/
|
|
880
884
|
createBdsInstance(createBdsInstanceRequest) {
|
|
881
885
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -935,7 +939,7 @@ class BdsClient {
|
|
|
935
939
|
* @param CreateBdsMetastoreConfigurationRequest
|
|
936
940
|
* @return CreateBdsMetastoreConfigurationResponse
|
|
937
941
|
* @throws OciError when an error occurs
|
|
938
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
942
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
|
|
939
943
|
*/
|
|
940
944
|
createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest) {
|
|
941
945
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -996,7 +1000,7 @@ class BdsClient {
|
|
|
996
1000
|
* @param DeleteBdsApiKeyRequest
|
|
997
1001
|
* @return DeleteBdsApiKeyResponse
|
|
998
1002
|
* @throws OciError when an error occurs
|
|
999
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1003
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
|
|
1000
1004
|
*/
|
|
1001
1005
|
deleteBdsApiKey(deleteBdsApiKeyRequest) {
|
|
1002
1006
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1057,7 +1061,7 @@ class BdsClient {
|
|
|
1057
1061
|
* @param DeleteBdsInstanceRequest
|
|
1058
1062
|
* @return DeleteBdsInstanceResponse
|
|
1059
1063
|
* @throws OciError when an error occurs
|
|
1060
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1064
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
1061
1065
|
*/
|
|
1062
1066
|
deleteBdsInstance(deleteBdsInstanceRequest) {
|
|
1063
1067
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1117,7 +1121,7 @@ class BdsClient {
|
|
|
1117
1121
|
* @param DeleteBdsMetastoreConfigurationRequest
|
|
1118
1122
|
* @return DeleteBdsMetastoreConfigurationResponse
|
|
1119
1123
|
* @throws OciError when an error occurs
|
|
1120
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1124
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
|
|
1121
1125
|
*/
|
|
1122
1126
|
deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest) {
|
|
1123
1127
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1179,7 +1183,7 @@ class BdsClient {
|
|
|
1179
1183
|
* @param ExecuteBootstrapScriptRequest
|
|
1180
1184
|
* @return ExecuteBootstrapScriptResponse
|
|
1181
1185
|
* @throws OciError when an error occurs
|
|
1182
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1186
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ExecuteBootstrapScript.ts.html |here} to see how to use ExecuteBootstrapScript API.
|
|
1183
1187
|
*/
|
|
1184
1188
|
executeBootstrapScript(executeBootstrapScriptRequest) {
|
|
1185
1189
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1242,7 +1246,7 @@ class BdsClient {
|
|
|
1242
1246
|
* @param GetAutoScalingConfigurationRequest
|
|
1243
1247
|
* @return GetAutoScalingConfigurationResponse
|
|
1244
1248
|
* @throws OciError when an error occurs
|
|
1245
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
1246
1250
|
*/
|
|
1247
1251
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest) {
|
|
1248
1252
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1306,7 +1310,7 @@ class BdsClient {
|
|
|
1306
1310
|
* @param GetBdsApiKeyRequest
|
|
1307
1311
|
* @return GetBdsApiKeyResponse
|
|
1308
1312
|
* @throws OciError when an error occurs
|
|
1309
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
|
|
1310
1314
|
*/
|
|
1311
1315
|
getBdsApiKey(getBdsApiKeyRequest) {
|
|
1312
1316
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1370,7 +1374,7 @@ class BdsClient {
|
|
|
1370
1374
|
* @param GetBdsInstanceRequest
|
|
1371
1375
|
* @return GetBdsInstanceResponse
|
|
1372
1376
|
* @throws OciError when an error occurs
|
|
1373
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1377
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
1374
1378
|
*/
|
|
1375
1379
|
getBdsInstance(getBdsInstanceRequest) {
|
|
1376
1380
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1433,7 +1437,7 @@ class BdsClient {
|
|
|
1433
1437
|
* @param GetBdsMetastoreConfigurationRequest
|
|
1434
1438
|
* @return GetBdsMetastoreConfigurationResponse
|
|
1435
1439
|
* @throws OciError when an error occurs
|
|
1436
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1440
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
|
|
1437
1441
|
*/
|
|
1438
1442
|
getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest) {
|
|
1439
1443
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1497,7 +1501,7 @@ class BdsClient {
|
|
|
1497
1501
|
* @param GetOsPatchDetailsRequest
|
|
1498
1502
|
* @return GetOsPatchDetailsResponse
|
|
1499
1503
|
* @throws OciError when an error occurs
|
|
1500
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1504
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/GetOsPatchDetails.ts.html |here} to see how to use GetOsPatchDetails API.
|
|
1501
1505
|
*/
|
|
1502
1506
|
getOsPatchDetails(getOsPatchDetailsRequest) {
|
|
1503
1507
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1564,7 +1568,7 @@ class BdsClient {
|
|
|
1564
1568
|
* @param GetWorkRequestRequest
|
|
1565
1569
|
* @return GetWorkRequestResponse
|
|
1566
1570
|
* @throws OciError when an error occurs
|
|
1567
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1571
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1568
1572
|
*/
|
|
1569
1573
|
getWorkRequest(getWorkRequestRequest) {
|
|
1570
1574
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1628,7 +1632,7 @@ class BdsClient {
|
|
|
1628
1632
|
* @param InstallOsPatchRequest
|
|
1629
1633
|
* @return InstallOsPatchResponse
|
|
1630
1634
|
* @throws OciError when an error occurs
|
|
1631
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1635
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/InstallOsPatch.ts.html |here} to see how to use InstallOsPatch API.
|
|
1632
1636
|
*/
|
|
1633
1637
|
installOsPatch(installOsPatchRequest) {
|
|
1634
1638
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1691,7 +1695,7 @@ class BdsClient {
|
|
|
1691
1695
|
* @param InstallPatchRequest
|
|
1692
1696
|
* @return InstallPatchResponse
|
|
1693
1697
|
* @throws OciError when an error occurs
|
|
1694
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1698
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
|
|
1695
1699
|
*/
|
|
1696
1700
|
installPatch(installPatchRequest) {
|
|
1697
1701
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1754,7 +1758,7 @@ class BdsClient {
|
|
|
1754
1758
|
* @param ListAutoScalingConfigurationsRequest
|
|
1755
1759
|
* @return ListAutoScalingConfigurationsResponse
|
|
1756
1760
|
* @throws OciError when an error occurs
|
|
1757
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1761
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
1758
1762
|
*/
|
|
1759
1763
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest) {
|
|
1760
1764
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1866,7 +1870,7 @@ class BdsClient {
|
|
|
1866
1870
|
* @param ListBdsApiKeysRequest
|
|
1867
1871
|
* @return ListBdsApiKeysResponse
|
|
1868
1872
|
* @throws OciError when an error occurs
|
|
1869
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1873
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
|
|
1870
1874
|
*/
|
|
1871
1875
|
listBdsApiKeys(listBdsApiKeysRequest) {
|
|
1872
1876
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1978,7 +1982,7 @@ class BdsClient {
|
|
|
1978
1982
|
* @param ListBdsInstancesRequest
|
|
1979
1983
|
* @return ListBdsInstancesResponse
|
|
1980
1984
|
* @throws OciError when an error occurs
|
|
1981
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1985
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
1982
1986
|
*/
|
|
1983
1987
|
listBdsInstances(listBdsInstancesRequest) {
|
|
1984
1988
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2088,7 +2092,7 @@ class BdsClient {
|
|
|
2088
2092
|
* @param ListBdsMetastoreConfigurationsRequest
|
|
2089
2093
|
* @return ListBdsMetastoreConfigurationsResponse
|
|
2090
2094
|
* @throws OciError when an error occurs
|
|
2091
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2095
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
|
|
2092
2096
|
*/
|
|
2093
2097
|
listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest) {
|
|
2094
2098
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2201,7 +2205,7 @@ class BdsClient {
|
|
|
2201
2205
|
* @param ListOsPatchesRequest
|
|
2202
2206
|
* @return ListOsPatchesResponse
|
|
2203
2207
|
* @throws OciError when an error occurs
|
|
2204
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2208
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListOsPatches.ts.html |here} to see how to use ListOsPatches API.
|
|
2205
2209
|
*/
|
|
2206
2210
|
listOsPatches(listOsPatchesRequest) {
|
|
2207
2211
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2317,7 +2321,7 @@ class BdsClient {
|
|
|
2317
2321
|
* @param ListPatchHistoriesRequest
|
|
2318
2322
|
* @return ListPatchHistoriesResponse
|
|
2319
2323
|
* @throws OciError when an error occurs
|
|
2320
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2324
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
|
|
2321
2325
|
*/
|
|
2322
2326
|
listPatchHistories(listPatchHistoriesRequest) {
|
|
2323
2327
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2429,7 +2433,7 @@ class BdsClient {
|
|
|
2429
2433
|
* @param ListPatchesRequest
|
|
2430
2434
|
* @return ListPatchesResponse
|
|
2431
2435
|
* @throws OciError when an error occurs
|
|
2432
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2436
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
|
|
2433
2437
|
*/
|
|
2434
2438
|
listPatches(listPatchesRequest) {
|
|
2435
2439
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2536,7 +2540,7 @@ class BdsClient {
|
|
|
2536
2540
|
* @param ListWorkRequestErrorsRequest
|
|
2537
2541
|
* @return ListWorkRequestErrorsResponse
|
|
2538
2542
|
* @throws OciError when an error occurs
|
|
2539
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2543
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2540
2544
|
*/
|
|
2541
2545
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2542
2546
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2645,7 +2649,7 @@ class BdsClient {
|
|
|
2645
2649
|
* @param ListWorkRequestLogsRequest
|
|
2646
2650
|
* @return ListWorkRequestLogsResponse
|
|
2647
2651
|
* @throws OciError when an error occurs
|
|
2648
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2652
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2649
2653
|
*/
|
|
2650
2654
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2651
2655
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2754,7 +2758,7 @@ class BdsClient {
|
|
|
2754
2758
|
* @param ListWorkRequestsRequest
|
|
2755
2759
|
* @return ListWorkRequestsResponse
|
|
2756
2760
|
* @throws OciError when an error occurs
|
|
2757
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2761
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2758
2762
|
*/
|
|
2759
2763
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2760
2764
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2863,7 +2867,7 @@ class BdsClient {
|
|
|
2863
2867
|
* @param RemoveAutoScalingConfigurationRequest
|
|
2864
2868
|
* @return RemoveAutoScalingConfigurationResponse
|
|
2865
2869
|
* @throws OciError when an error occurs
|
|
2866
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2870
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
2867
2871
|
*/
|
|
2868
2872
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest) {
|
|
2869
2873
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2927,7 +2931,7 @@ class BdsClient {
|
|
|
2927
2931
|
* @param RemoveCloudSqlRequest
|
|
2928
2932
|
* @return RemoveCloudSqlResponse
|
|
2929
2933
|
* @throws OciError when an error occurs
|
|
2930
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2934
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
2931
2935
|
*/
|
|
2932
2936
|
removeCloudSql(removeCloudSqlRequest) {
|
|
2933
2937
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2990,7 +2994,7 @@ class BdsClient {
|
|
|
2990
2994
|
* @param RemoveKafkaRequest
|
|
2991
2995
|
* @return RemoveKafkaResponse
|
|
2992
2996
|
* @throws OciError when an error occurs
|
|
2993
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2997
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/RemoveKafka.ts.html |here} to see how to use RemoveKafka API.
|
|
2994
2998
|
*/
|
|
2995
2999
|
removeKafka(removeKafkaRequest) {
|
|
2996
3000
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3053,7 +3057,7 @@ class BdsClient {
|
|
|
3053
3057
|
* @param RemoveNodeRequest
|
|
3054
3058
|
* @return RemoveNodeResponse
|
|
3055
3059
|
* @throws OciError when an error occurs
|
|
3056
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3060
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
|
|
3057
3061
|
*/
|
|
3058
3062
|
removeNode(removeNodeRequest) {
|
|
3059
3063
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3115,7 +3119,7 @@ class BdsClient {
|
|
|
3115
3119
|
* @param RestartNodeRequest
|
|
3116
3120
|
* @return RestartNodeResponse
|
|
3117
3121
|
* @throws OciError when an error occurs
|
|
3118
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3122
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
3119
3123
|
*/
|
|
3120
3124
|
restartNode(restartNodeRequest) {
|
|
3121
3125
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3178,7 +3182,7 @@ class BdsClient {
|
|
|
3178
3182
|
* @param StartBdsInstanceRequest
|
|
3179
3183
|
* @return StartBdsInstanceResponse
|
|
3180
3184
|
* @throws OciError when an error occurs
|
|
3181
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3185
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/StartBdsInstance.ts.html |here} to see how to use StartBdsInstance API.
|
|
3182
3186
|
*/
|
|
3183
3187
|
startBdsInstance(startBdsInstanceRequest) {
|
|
3184
3188
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3240,7 +3244,7 @@ class BdsClient {
|
|
|
3240
3244
|
* @param StopBdsInstanceRequest
|
|
3241
3245
|
* @return StopBdsInstanceResponse
|
|
3242
3246
|
* @throws OciError when an error occurs
|
|
3243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/StopBdsInstance.ts.html |here} to see how to use StopBdsInstance API.
|
|
3244
3248
|
*/
|
|
3245
3249
|
stopBdsInstance(stopBdsInstanceRequest) {
|
|
3246
3250
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3302,7 +3306,7 @@ class BdsClient {
|
|
|
3302
3306
|
* @param TestBdsMetastoreConfigurationRequest
|
|
3303
3307
|
* @return TestBdsMetastoreConfigurationResponse
|
|
3304
3308
|
* @throws OciError when an error occurs
|
|
3305
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3309
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
|
|
3306
3310
|
*/
|
|
3307
3311
|
testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest) {
|
|
3308
3312
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3364,7 +3368,7 @@ class BdsClient {
|
|
|
3364
3368
|
* @param TestBdsObjectStorageConnectionRequest
|
|
3365
3369
|
* @return TestBdsObjectStorageConnectionResponse
|
|
3366
3370
|
* @throws OciError when an error occurs
|
|
3367
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3371
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
|
|
3368
3372
|
*/
|
|
3369
3373
|
testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest) {
|
|
3370
3374
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3426,7 +3430,7 @@ class BdsClient {
|
|
|
3426
3430
|
* @param UpdateAutoScalingConfigurationRequest
|
|
3427
3431
|
* @return UpdateAutoScalingConfigurationResponse
|
|
3428
3432
|
* @throws OciError when an error occurs
|
|
3429
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3433
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
3430
3434
|
*/
|
|
3431
3435
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest) {
|
|
3432
3436
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3489,7 +3493,7 @@ class BdsClient {
|
|
|
3489
3493
|
* @param UpdateBdsInstanceRequest
|
|
3490
3494
|
* @return UpdateBdsInstanceResponse
|
|
3491
3495
|
* @throws OciError when an error occurs
|
|
3492
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3496
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
3493
3497
|
*/
|
|
3494
3498
|
updateBdsInstance(updateBdsInstanceRequest) {
|
|
3495
3499
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3550,7 +3554,7 @@ class BdsClient {
|
|
|
3550
3554
|
* @param UpdateBdsMetastoreConfigurationRequest
|
|
3551
3555
|
* @return UpdateBdsMetastoreConfigurationResponse
|
|
3552
3556
|
* @throws OciError when an error occurs
|
|
3553
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3557
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
|
|
3554
3558
|
*/
|
|
3555
3559
|
updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest) {
|
|
3556
3560
|
return __awaiter(this, void 0, void 0, function* () {
|