oci-bds 2.83.0 → 2.84.2
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 +55 -51
- package/lib/client.js +57 -51
- 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/certificate-service-info-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/disable-certificate-request.d.ts +1 -1
- package/lib/request/enable-certificate-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/renew-certificate-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
|
@@ -192,6 +192,12 @@ class BdsClient {
|
|
|
192
192
|
this._circuitBreaker.shutdown();
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
|
+
/**
|
|
196
|
+
* Close the client once it is no longer needed
|
|
197
|
+
*/
|
|
198
|
+
close() {
|
|
199
|
+
this.shutdownCircuitBreaker();
|
|
200
|
+
}
|
|
195
201
|
/**
|
|
196
202
|
* Activate specified metastore configuration.
|
|
197
203
|
*
|
|
@@ -199,7 +205,7 @@ class BdsClient {
|
|
|
199
205
|
* @param ActivateBdsMetastoreConfigurationRequest
|
|
200
206
|
* @return ActivateBdsMetastoreConfigurationResponse
|
|
201
207
|
* @throws OciError when an error occurs
|
|
202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
208
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
|
|
203
209
|
*/
|
|
204
210
|
activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest) {
|
|
205
211
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -263,7 +269,7 @@ class BdsClient {
|
|
|
263
269
|
* @param AddAutoScalingConfigurationRequest
|
|
264
270
|
* @return AddAutoScalingConfigurationResponse
|
|
265
271
|
* @throws OciError when an error occurs
|
|
266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
272
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
267
273
|
*/
|
|
268
274
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest) {
|
|
269
275
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -326,7 +332,7 @@ class BdsClient {
|
|
|
326
332
|
* @param AddBlockStorageRequest
|
|
327
333
|
* @return AddBlockStorageResponse
|
|
328
334
|
* @throws OciError when an error occurs
|
|
329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
335
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
330
336
|
*/
|
|
331
337
|
addBlockStorage(addBlockStorageRequest) {
|
|
332
338
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -389,7 +395,7 @@ class BdsClient {
|
|
|
389
395
|
* @param AddCloudSqlRequest
|
|
390
396
|
* @return AddCloudSqlResponse
|
|
391
397
|
* @throws OciError when an error occurs
|
|
392
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
398
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
393
399
|
*/
|
|
394
400
|
addCloudSql(addCloudSqlRequest) {
|
|
395
401
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -452,7 +458,7 @@ class BdsClient {
|
|
|
452
458
|
* @param AddKafkaRequest
|
|
453
459
|
* @return AddKafkaResponse
|
|
454
460
|
* @throws OciError when an error occurs
|
|
455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
461
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/AddKafka.ts.html |here} to see how to use AddKafka API.
|
|
456
462
|
*/
|
|
457
463
|
addKafka(addKafkaRequest) {
|
|
458
464
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -515,7 +521,7 @@ class BdsClient {
|
|
|
515
521
|
* @param AddMasterNodesRequest
|
|
516
522
|
* @return AddMasterNodesResponse
|
|
517
523
|
* @throws OciError when an error occurs
|
|
518
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
524
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/AddMasterNodes.ts.html |here} to see how to use AddMasterNodes API.
|
|
519
525
|
*/
|
|
520
526
|
addMasterNodes(addMasterNodesRequest) {
|
|
521
527
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -578,7 +584,7 @@ class BdsClient {
|
|
|
578
584
|
* @param AddUtilityNodesRequest
|
|
579
585
|
* @return AddUtilityNodesResponse
|
|
580
586
|
* @throws OciError when an error occurs
|
|
581
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
587
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/AddUtilityNodes.ts.html |here} to see how to use AddUtilityNodes API.
|
|
582
588
|
*/
|
|
583
589
|
addUtilityNodes(addUtilityNodesRequest) {
|
|
584
590
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -641,7 +647,7 @@ class BdsClient {
|
|
|
641
647
|
* @param AddWorkerNodesRequest
|
|
642
648
|
* @return AddWorkerNodesResponse
|
|
643
649
|
* @throws OciError when an error occurs
|
|
644
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
650
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
645
651
|
*/
|
|
646
652
|
addWorkerNodes(addWorkerNodesRequest) {
|
|
647
653
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -704,7 +710,7 @@ class BdsClient {
|
|
|
704
710
|
* @param CertificateServiceInfoRequest
|
|
705
711
|
* @return CertificateServiceInfoResponse
|
|
706
712
|
* @throws OciError when an error occurs
|
|
707
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
713
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/CertificateServiceInfo.ts.html |here} to see how to use CertificateServiceInfo API.
|
|
708
714
|
*/
|
|
709
715
|
certificateServiceInfo(certificateServiceInfoRequest) {
|
|
710
716
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -771,7 +777,7 @@ class BdsClient {
|
|
|
771
777
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
772
778
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
773
779
|
* @throws OciError when an error occurs
|
|
774
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
780
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
775
781
|
*/
|
|
776
782
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest) {
|
|
777
783
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -834,7 +840,7 @@ class BdsClient {
|
|
|
834
840
|
* @param ChangeShapeRequest
|
|
835
841
|
* @return ChangeShapeResponse
|
|
836
842
|
* @throws OciError when an error occurs
|
|
837
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
843
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
838
844
|
*/
|
|
839
845
|
changeShape(changeShapeRequest) {
|
|
840
846
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -897,7 +903,7 @@ class BdsClient {
|
|
|
897
903
|
* @param CreateBdsApiKeyRequest
|
|
898
904
|
* @return CreateBdsApiKeyResponse
|
|
899
905
|
* @throws OciError when an error occurs
|
|
900
|
-
* @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.84.2/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
|
|
901
907
|
*/
|
|
902
908
|
createBdsApiKey(createBdsApiKeyRequest) {
|
|
903
909
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -959,7 +965,7 @@ class BdsClient {
|
|
|
959
965
|
* @param CreateBdsInstanceRequest
|
|
960
966
|
* @return CreateBdsInstanceResponse
|
|
961
967
|
* @throws OciError when an error occurs
|
|
962
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
968
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
963
969
|
*/
|
|
964
970
|
createBdsInstance(createBdsInstanceRequest) {
|
|
965
971
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1019,7 +1025,7 @@ class BdsClient {
|
|
|
1019
1025
|
* @param CreateBdsMetastoreConfigurationRequest
|
|
1020
1026
|
* @return CreateBdsMetastoreConfigurationResponse
|
|
1021
1027
|
* @throws OciError when an error occurs
|
|
1022
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1028
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
|
|
1023
1029
|
*/
|
|
1024
1030
|
createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest) {
|
|
1025
1031
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1080,7 +1086,7 @@ class BdsClient {
|
|
|
1080
1086
|
* @param DeleteBdsApiKeyRequest
|
|
1081
1087
|
* @return DeleteBdsApiKeyResponse
|
|
1082
1088
|
* @throws OciError when an error occurs
|
|
1083
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1089
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
|
|
1084
1090
|
*/
|
|
1085
1091
|
deleteBdsApiKey(deleteBdsApiKeyRequest) {
|
|
1086
1092
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1141,7 +1147,7 @@ class BdsClient {
|
|
|
1141
1147
|
* @param DeleteBdsInstanceRequest
|
|
1142
1148
|
* @return DeleteBdsInstanceResponse
|
|
1143
1149
|
* @throws OciError when an error occurs
|
|
1144
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1150
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
1145
1151
|
*/
|
|
1146
1152
|
deleteBdsInstance(deleteBdsInstanceRequest) {
|
|
1147
1153
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1201,7 +1207,7 @@ class BdsClient {
|
|
|
1201
1207
|
* @param DeleteBdsMetastoreConfigurationRequest
|
|
1202
1208
|
* @return DeleteBdsMetastoreConfigurationResponse
|
|
1203
1209
|
* @throws OciError when an error occurs
|
|
1204
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1210
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
|
|
1205
1211
|
*/
|
|
1206
1212
|
deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest) {
|
|
1207
1213
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1263,7 +1269,7 @@ class BdsClient {
|
|
|
1263
1269
|
* @param DisableCertificateRequest
|
|
1264
1270
|
* @return DisableCertificateResponse
|
|
1265
1271
|
* @throws OciError when an error occurs
|
|
1266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1272
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/DisableCertificate.ts.html |here} to see how to use DisableCertificate API.
|
|
1267
1273
|
*/
|
|
1268
1274
|
disableCertificate(disableCertificateRequest) {
|
|
1269
1275
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1326,7 +1332,7 @@ class BdsClient {
|
|
|
1326
1332
|
* @param EnableCertificateRequest
|
|
1327
1333
|
* @return EnableCertificateResponse
|
|
1328
1334
|
* @throws OciError when an error occurs
|
|
1329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1335
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/EnableCertificate.ts.html |here} to see how to use EnableCertificate API.
|
|
1330
1336
|
*/
|
|
1331
1337
|
enableCertificate(enableCertificateRequest) {
|
|
1332
1338
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1389,7 +1395,7 @@ class BdsClient {
|
|
|
1389
1395
|
* @param ExecuteBootstrapScriptRequest
|
|
1390
1396
|
* @return ExecuteBootstrapScriptResponse
|
|
1391
1397
|
* @throws OciError when an error occurs
|
|
1392
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1398
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ExecuteBootstrapScript.ts.html |here} to see how to use ExecuteBootstrapScript API.
|
|
1393
1399
|
*/
|
|
1394
1400
|
executeBootstrapScript(executeBootstrapScriptRequest) {
|
|
1395
1401
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1452,7 +1458,7 @@ class BdsClient {
|
|
|
1452
1458
|
* @param GetAutoScalingConfigurationRequest
|
|
1453
1459
|
* @return GetAutoScalingConfigurationResponse
|
|
1454
1460
|
* @throws OciError when an error occurs
|
|
1455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1461
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
1456
1462
|
*/
|
|
1457
1463
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest) {
|
|
1458
1464
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1516,7 +1522,7 @@ class BdsClient {
|
|
|
1516
1522
|
* @param GetBdsApiKeyRequest
|
|
1517
1523
|
* @return GetBdsApiKeyResponse
|
|
1518
1524
|
* @throws OciError when an error occurs
|
|
1519
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1525
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
|
|
1520
1526
|
*/
|
|
1521
1527
|
getBdsApiKey(getBdsApiKeyRequest) {
|
|
1522
1528
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1580,7 +1586,7 @@ class BdsClient {
|
|
|
1580
1586
|
* @param GetBdsInstanceRequest
|
|
1581
1587
|
* @return GetBdsInstanceResponse
|
|
1582
1588
|
* @throws OciError when an error occurs
|
|
1583
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1589
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
1584
1590
|
*/
|
|
1585
1591
|
getBdsInstance(getBdsInstanceRequest) {
|
|
1586
1592
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1643,7 +1649,7 @@ class BdsClient {
|
|
|
1643
1649
|
* @param GetBdsMetastoreConfigurationRequest
|
|
1644
1650
|
* @return GetBdsMetastoreConfigurationResponse
|
|
1645
1651
|
* @throws OciError when an error occurs
|
|
1646
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1652
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
|
|
1647
1653
|
*/
|
|
1648
1654
|
getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest) {
|
|
1649
1655
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1707,7 +1713,7 @@ class BdsClient {
|
|
|
1707
1713
|
* @param GetOsPatchDetailsRequest
|
|
1708
1714
|
* @return GetOsPatchDetailsResponse
|
|
1709
1715
|
* @throws OciError when an error occurs
|
|
1710
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1716
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/GetOsPatchDetails.ts.html |here} to see how to use GetOsPatchDetails API.
|
|
1711
1717
|
*/
|
|
1712
1718
|
getOsPatchDetails(getOsPatchDetailsRequest) {
|
|
1713
1719
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1774,7 +1780,7 @@ class BdsClient {
|
|
|
1774
1780
|
* @param GetWorkRequestRequest
|
|
1775
1781
|
* @return GetWorkRequestResponse
|
|
1776
1782
|
* @throws OciError when an error occurs
|
|
1777
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1783
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1778
1784
|
*/
|
|
1779
1785
|
getWorkRequest(getWorkRequestRequest) {
|
|
1780
1786
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1838,7 +1844,7 @@ class BdsClient {
|
|
|
1838
1844
|
* @param InstallOsPatchRequest
|
|
1839
1845
|
* @return InstallOsPatchResponse
|
|
1840
1846
|
* @throws OciError when an error occurs
|
|
1841
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1847
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/InstallOsPatch.ts.html |here} to see how to use InstallOsPatch API.
|
|
1842
1848
|
*/
|
|
1843
1849
|
installOsPatch(installOsPatchRequest) {
|
|
1844
1850
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1901,7 +1907,7 @@ class BdsClient {
|
|
|
1901
1907
|
* @param InstallPatchRequest
|
|
1902
1908
|
* @return InstallPatchResponse
|
|
1903
1909
|
* @throws OciError when an error occurs
|
|
1904
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1910
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
|
|
1905
1911
|
*/
|
|
1906
1912
|
installPatch(installPatchRequest) {
|
|
1907
1913
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1964,7 +1970,7 @@ class BdsClient {
|
|
|
1964
1970
|
* @param ListAutoScalingConfigurationsRequest
|
|
1965
1971
|
* @return ListAutoScalingConfigurationsResponse
|
|
1966
1972
|
* @throws OciError when an error occurs
|
|
1967
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1973
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
1968
1974
|
*/
|
|
1969
1975
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest) {
|
|
1970
1976
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2076,7 +2082,7 @@ class BdsClient {
|
|
|
2076
2082
|
* @param ListBdsApiKeysRequest
|
|
2077
2083
|
* @return ListBdsApiKeysResponse
|
|
2078
2084
|
* @throws OciError when an error occurs
|
|
2079
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2085
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
|
|
2080
2086
|
*/
|
|
2081
2087
|
listBdsApiKeys(listBdsApiKeysRequest) {
|
|
2082
2088
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2188,7 +2194,7 @@ class BdsClient {
|
|
|
2188
2194
|
* @param ListBdsInstancesRequest
|
|
2189
2195
|
* @return ListBdsInstancesResponse
|
|
2190
2196
|
* @throws OciError when an error occurs
|
|
2191
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2197
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
2192
2198
|
*/
|
|
2193
2199
|
listBdsInstances(listBdsInstancesRequest) {
|
|
2194
2200
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2298,7 +2304,7 @@ class BdsClient {
|
|
|
2298
2304
|
* @param ListBdsMetastoreConfigurationsRequest
|
|
2299
2305
|
* @return ListBdsMetastoreConfigurationsResponse
|
|
2300
2306
|
* @throws OciError when an error occurs
|
|
2301
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2307
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
|
|
2302
2308
|
*/
|
|
2303
2309
|
listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest) {
|
|
2304
2310
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2411,7 +2417,7 @@ class BdsClient {
|
|
|
2411
2417
|
* @param ListOsPatchesRequest
|
|
2412
2418
|
* @return ListOsPatchesResponse
|
|
2413
2419
|
* @throws OciError when an error occurs
|
|
2414
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2420
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListOsPatches.ts.html |here} to see how to use ListOsPatches API.
|
|
2415
2421
|
*/
|
|
2416
2422
|
listOsPatches(listOsPatchesRequest) {
|
|
2417
2423
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2527,7 +2533,7 @@ class BdsClient {
|
|
|
2527
2533
|
* @param ListPatchHistoriesRequest
|
|
2528
2534
|
* @return ListPatchHistoriesResponse
|
|
2529
2535
|
* @throws OciError when an error occurs
|
|
2530
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2536
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
|
|
2531
2537
|
*/
|
|
2532
2538
|
listPatchHistories(listPatchHistoriesRequest) {
|
|
2533
2539
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2639,7 +2645,7 @@ class BdsClient {
|
|
|
2639
2645
|
* @param ListPatchesRequest
|
|
2640
2646
|
* @return ListPatchesResponse
|
|
2641
2647
|
* @throws OciError when an error occurs
|
|
2642
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2648
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
|
|
2643
2649
|
*/
|
|
2644
2650
|
listPatches(listPatchesRequest) {
|
|
2645
2651
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2746,7 +2752,7 @@ class BdsClient {
|
|
|
2746
2752
|
* @param ListWorkRequestErrorsRequest
|
|
2747
2753
|
* @return ListWorkRequestErrorsResponse
|
|
2748
2754
|
* @throws OciError when an error occurs
|
|
2749
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2755
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2750
2756
|
*/
|
|
2751
2757
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2752
2758
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2855,7 +2861,7 @@ class BdsClient {
|
|
|
2855
2861
|
* @param ListWorkRequestLogsRequest
|
|
2856
2862
|
* @return ListWorkRequestLogsResponse
|
|
2857
2863
|
* @throws OciError when an error occurs
|
|
2858
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2864
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2859
2865
|
*/
|
|
2860
2866
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2861
2867
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2964,7 +2970,7 @@ class BdsClient {
|
|
|
2964
2970
|
* @param ListWorkRequestsRequest
|
|
2965
2971
|
* @return ListWorkRequestsResponse
|
|
2966
2972
|
* @throws OciError when an error occurs
|
|
2967
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2973
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2968
2974
|
*/
|
|
2969
2975
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2970
2976
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3073,7 +3079,7 @@ class BdsClient {
|
|
|
3073
3079
|
* @param RemoveAutoScalingConfigurationRequest
|
|
3074
3080
|
* @return RemoveAutoScalingConfigurationResponse
|
|
3075
3081
|
* @throws OciError when an error occurs
|
|
3076
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3082
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
3077
3083
|
*/
|
|
3078
3084
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest) {
|
|
3079
3085
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3137,7 +3143,7 @@ class BdsClient {
|
|
|
3137
3143
|
* @param RemoveCloudSqlRequest
|
|
3138
3144
|
* @return RemoveCloudSqlResponse
|
|
3139
3145
|
* @throws OciError when an error occurs
|
|
3140
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3146
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
3141
3147
|
*/
|
|
3142
3148
|
removeCloudSql(removeCloudSqlRequest) {
|
|
3143
3149
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3200,7 +3206,7 @@ class BdsClient {
|
|
|
3200
3206
|
* @param RemoveKafkaRequest
|
|
3201
3207
|
* @return RemoveKafkaResponse
|
|
3202
3208
|
* @throws OciError when an error occurs
|
|
3203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3209
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/RemoveKafka.ts.html |here} to see how to use RemoveKafka API.
|
|
3204
3210
|
*/
|
|
3205
3211
|
removeKafka(removeKafkaRequest) {
|
|
3206
3212
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3263,7 +3269,7 @@ class BdsClient {
|
|
|
3263
3269
|
* @param RemoveNodeRequest
|
|
3264
3270
|
* @return RemoveNodeResponse
|
|
3265
3271
|
* @throws OciError when an error occurs
|
|
3266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3272
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
|
|
3267
3273
|
*/
|
|
3268
3274
|
removeNode(removeNodeRequest) {
|
|
3269
3275
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3325,7 +3331,7 @@ class BdsClient {
|
|
|
3325
3331
|
* @param RenewCertificateRequest
|
|
3326
3332
|
* @return RenewCertificateResponse
|
|
3327
3333
|
* @throws OciError when an error occurs
|
|
3328
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3334
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/RenewCertificate.ts.html |here} to see how to use RenewCertificate API.
|
|
3329
3335
|
*/
|
|
3330
3336
|
renewCertificate(renewCertificateRequest) {
|
|
3331
3337
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3388,7 +3394,7 @@ class BdsClient {
|
|
|
3388
3394
|
* @param RestartNodeRequest
|
|
3389
3395
|
* @return RestartNodeResponse
|
|
3390
3396
|
* @throws OciError when an error occurs
|
|
3391
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3397
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
3392
3398
|
*/
|
|
3393
3399
|
restartNode(restartNodeRequest) {
|
|
3394
3400
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3451,7 +3457,7 @@ class BdsClient {
|
|
|
3451
3457
|
* @param StartBdsInstanceRequest
|
|
3452
3458
|
* @return StartBdsInstanceResponse
|
|
3453
3459
|
* @throws OciError when an error occurs
|
|
3454
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3460
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/StartBdsInstance.ts.html |here} to see how to use StartBdsInstance API.
|
|
3455
3461
|
*/
|
|
3456
3462
|
startBdsInstance(startBdsInstanceRequest) {
|
|
3457
3463
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3513,7 +3519,7 @@ class BdsClient {
|
|
|
3513
3519
|
* @param StopBdsInstanceRequest
|
|
3514
3520
|
* @return StopBdsInstanceResponse
|
|
3515
3521
|
* @throws OciError when an error occurs
|
|
3516
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3522
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/StopBdsInstance.ts.html |here} to see how to use StopBdsInstance API.
|
|
3517
3523
|
*/
|
|
3518
3524
|
stopBdsInstance(stopBdsInstanceRequest) {
|
|
3519
3525
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3575,7 +3581,7 @@ class BdsClient {
|
|
|
3575
3581
|
* @param TestBdsMetastoreConfigurationRequest
|
|
3576
3582
|
* @return TestBdsMetastoreConfigurationResponse
|
|
3577
3583
|
* @throws OciError when an error occurs
|
|
3578
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3584
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
|
|
3579
3585
|
*/
|
|
3580
3586
|
testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest) {
|
|
3581
3587
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3637,7 +3643,7 @@ class BdsClient {
|
|
|
3637
3643
|
* @param TestBdsObjectStorageConnectionRequest
|
|
3638
3644
|
* @return TestBdsObjectStorageConnectionResponse
|
|
3639
3645
|
* @throws OciError when an error occurs
|
|
3640
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3646
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
|
|
3641
3647
|
*/
|
|
3642
3648
|
testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest) {
|
|
3643
3649
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3699,7 +3705,7 @@ class BdsClient {
|
|
|
3699
3705
|
* @param UpdateAutoScalingConfigurationRequest
|
|
3700
3706
|
* @return UpdateAutoScalingConfigurationResponse
|
|
3701
3707
|
* @throws OciError when an error occurs
|
|
3702
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3708
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
3703
3709
|
*/
|
|
3704
3710
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest) {
|
|
3705
3711
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3762,7 +3768,7 @@ class BdsClient {
|
|
|
3762
3768
|
* @param UpdateBdsInstanceRequest
|
|
3763
3769
|
* @return UpdateBdsInstanceResponse
|
|
3764
3770
|
* @throws OciError when an error occurs
|
|
3765
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3771
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
3766
3772
|
*/
|
|
3767
3773
|
updateBdsInstance(updateBdsInstanceRequest) {
|
|
3768
3774
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3823,7 +3829,7 @@ class BdsClient {
|
|
|
3823
3829
|
* @param UpdateBdsMetastoreConfigurationRequest
|
|
3824
3830
|
* @return UpdateBdsMetastoreConfigurationResponse
|
|
3825
3831
|
* @throws OciError when an error occurs
|
|
3826
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3832
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
|
|
3827
3833
|
*/
|
|
3828
3834
|
updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest) {
|
|
3829
3835
|
return __awaiter(this, void 0, void 0, function* () {
|