oci-bds 2.74.0 → 2.76.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 +51 -51
- package/lib/client.js +55 -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
|
@@ -82,6 +82,10 @@ class BdsClient {
|
|
|
82
82
|
? clientConfiguration.bodyDuplexMode
|
|
83
83
|
: undefined;
|
|
84
84
|
}
|
|
85
|
+
if (!oci_common_2.developerToolConfiguration.isServiceEnabled("bds")) {
|
|
86
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
87
|
+
throw errmsg.concat("bds");
|
|
88
|
+
}
|
|
85
89
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
86
90
|
const specCircuitBreakerEnabled = true;
|
|
87
91
|
if (!this._circuitBreaker &&
|
|
@@ -186,7 +190,7 @@ class BdsClient {
|
|
|
186
190
|
* @param ActivateBdsMetastoreConfigurationRequest
|
|
187
191
|
* @return ActivateBdsMetastoreConfigurationResponse
|
|
188
192
|
* @throws OciError when an error occurs
|
|
189
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
193
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
|
|
190
194
|
*/
|
|
191
195
|
activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest) {
|
|
192
196
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -250,7 +254,7 @@ class BdsClient {
|
|
|
250
254
|
* @param AddAutoScalingConfigurationRequest
|
|
251
255
|
* @return AddAutoScalingConfigurationResponse
|
|
252
256
|
* @throws OciError when an error occurs
|
|
253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
257
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
254
258
|
*/
|
|
255
259
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest) {
|
|
256
260
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -313,7 +317,7 @@ class BdsClient {
|
|
|
313
317
|
* @param AddBlockStorageRequest
|
|
314
318
|
* @return AddBlockStorageResponse
|
|
315
319
|
* @throws OciError when an error occurs
|
|
316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
320
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
317
321
|
*/
|
|
318
322
|
addBlockStorage(addBlockStorageRequest) {
|
|
319
323
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -376,7 +380,7 @@ class BdsClient {
|
|
|
376
380
|
* @param AddCloudSqlRequest
|
|
377
381
|
* @return AddCloudSqlResponse
|
|
378
382
|
* @throws OciError when an error occurs
|
|
379
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
383
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
380
384
|
*/
|
|
381
385
|
addCloudSql(addCloudSqlRequest) {
|
|
382
386
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -439,7 +443,7 @@ class BdsClient {
|
|
|
439
443
|
* @param AddKafkaRequest
|
|
440
444
|
* @return AddKafkaResponse
|
|
441
445
|
* @throws OciError when an error occurs
|
|
442
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
446
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/AddKafka.ts.html |here} to see how to use AddKafka API.
|
|
443
447
|
*/
|
|
444
448
|
addKafka(addKafkaRequest) {
|
|
445
449
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -502,7 +506,7 @@ class BdsClient {
|
|
|
502
506
|
* @param AddMasterNodesRequest
|
|
503
507
|
* @return AddMasterNodesResponse
|
|
504
508
|
* @throws OciError when an error occurs
|
|
505
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
509
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/AddMasterNodes.ts.html |here} to see how to use AddMasterNodes API.
|
|
506
510
|
*/
|
|
507
511
|
addMasterNodes(addMasterNodesRequest) {
|
|
508
512
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -565,7 +569,7 @@ class BdsClient {
|
|
|
565
569
|
* @param AddUtilityNodesRequest
|
|
566
570
|
* @return AddUtilityNodesResponse
|
|
567
571
|
* @throws OciError when an error occurs
|
|
568
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
572
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/AddUtilityNodes.ts.html |here} to see how to use AddUtilityNodes API.
|
|
569
573
|
*/
|
|
570
574
|
addUtilityNodes(addUtilityNodesRequest) {
|
|
571
575
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -628,7 +632,7 @@ class BdsClient {
|
|
|
628
632
|
* @param AddWorkerNodesRequest
|
|
629
633
|
* @return AddWorkerNodesResponse
|
|
630
634
|
* @throws OciError when an error occurs
|
|
631
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
635
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
632
636
|
*/
|
|
633
637
|
addWorkerNodes(addWorkerNodesRequest) {
|
|
634
638
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -691,7 +695,7 @@ class BdsClient {
|
|
|
691
695
|
* @param CertificateServiceInfoRequest
|
|
692
696
|
* @return CertificateServiceInfoResponse
|
|
693
697
|
* @throws OciError when an error occurs
|
|
694
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
698
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/CertificateServiceInfo.ts.html |here} to see how to use CertificateServiceInfo API.
|
|
695
699
|
*/
|
|
696
700
|
certificateServiceInfo(certificateServiceInfoRequest) {
|
|
697
701
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -758,7 +762,7 @@ class BdsClient {
|
|
|
758
762
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
759
763
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
760
764
|
* @throws OciError when an error occurs
|
|
761
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
765
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
762
766
|
*/
|
|
763
767
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest) {
|
|
764
768
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -821,7 +825,7 @@ class BdsClient {
|
|
|
821
825
|
* @param ChangeShapeRequest
|
|
822
826
|
* @return ChangeShapeResponse
|
|
823
827
|
* @throws OciError when an error occurs
|
|
824
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
828
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
825
829
|
*/
|
|
826
830
|
changeShape(changeShapeRequest) {
|
|
827
831
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -884,7 +888,7 @@ class BdsClient {
|
|
|
884
888
|
* @param CreateBdsApiKeyRequest
|
|
885
889
|
* @return CreateBdsApiKeyResponse
|
|
886
890
|
* @throws OciError when an error occurs
|
|
887
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
891
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
|
|
888
892
|
*/
|
|
889
893
|
createBdsApiKey(createBdsApiKeyRequest) {
|
|
890
894
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -946,7 +950,7 @@ class BdsClient {
|
|
|
946
950
|
* @param CreateBdsInstanceRequest
|
|
947
951
|
* @return CreateBdsInstanceResponse
|
|
948
952
|
* @throws OciError when an error occurs
|
|
949
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
953
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
950
954
|
*/
|
|
951
955
|
createBdsInstance(createBdsInstanceRequest) {
|
|
952
956
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1006,7 +1010,7 @@ class BdsClient {
|
|
|
1006
1010
|
* @param CreateBdsMetastoreConfigurationRequest
|
|
1007
1011
|
* @return CreateBdsMetastoreConfigurationResponse
|
|
1008
1012
|
* @throws OciError when an error occurs
|
|
1009
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1013
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
|
|
1010
1014
|
*/
|
|
1011
1015
|
createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest) {
|
|
1012
1016
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1067,7 +1071,7 @@ class BdsClient {
|
|
|
1067
1071
|
* @param DeleteBdsApiKeyRequest
|
|
1068
1072
|
* @return DeleteBdsApiKeyResponse
|
|
1069
1073
|
* @throws OciError when an error occurs
|
|
1070
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1074
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
|
|
1071
1075
|
*/
|
|
1072
1076
|
deleteBdsApiKey(deleteBdsApiKeyRequest) {
|
|
1073
1077
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1128,7 +1132,7 @@ class BdsClient {
|
|
|
1128
1132
|
* @param DeleteBdsInstanceRequest
|
|
1129
1133
|
* @return DeleteBdsInstanceResponse
|
|
1130
1134
|
* @throws OciError when an error occurs
|
|
1131
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1135
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
1132
1136
|
*/
|
|
1133
1137
|
deleteBdsInstance(deleteBdsInstanceRequest) {
|
|
1134
1138
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1188,7 +1192,7 @@ class BdsClient {
|
|
|
1188
1192
|
* @param DeleteBdsMetastoreConfigurationRequest
|
|
1189
1193
|
* @return DeleteBdsMetastoreConfigurationResponse
|
|
1190
1194
|
* @throws OciError when an error occurs
|
|
1191
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1195
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
|
|
1192
1196
|
*/
|
|
1193
1197
|
deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest) {
|
|
1194
1198
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1250,7 +1254,7 @@ class BdsClient {
|
|
|
1250
1254
|
* @param DisableCertificateRequest
|
|
1251
1255
|
* @return DisableCertificateResponse
|
|
1252
1256
|
* @throws OciError when an error occurs
|
|
1253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1257
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/DisableCertificate.ts.html |here} to see how to use DisableCertificate API.
|
|
1254
1258
|
*/
|
|
1255
1259
|
disableCertificate(disableCertificateRequest) {
|
|
1256
1260
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1313,7 +1317,7 @@ class BdsClient {
|
|
|
1313
1317
|
* @param EnableCertificateRequest
|
|
1314
1318
|
* @return EnableCertificateResponse
|
|
1315
1319
|
* @throws OciError when an error occurs
|
|
1316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1320
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/EnableCertificate.ts.html |here} to see how to use EnableCertificate API.
|
|
1317
1321
|
*/
|
|
1318
1322
|
enableCertificate(enableCertificateRequest) {
|
|
1319
1323
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1376,7 +1380,7 @@ class BdsClient {
|
|
|
1376
1380
|
* @param ExecuteBootstrapScriptRequest
|
|
1377
1381
|
* @return ExecuteBootstrapScriptResponse
|
|
1378
1382
|
* @throws OciError when an error occurs
|
|
1379
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1383
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ExecuteBootstrapScript.ts.html |here} to see how to use ExecuteBootstrapScript API.
|
|
1380
1384
|
*/
|
|
1381
1385
|
executeBootstrapScript(executeBootstrapScriptRequest) {
|
|
1382
1386
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1439,7 +1443,7 @@ class BdsClient {
|
|
|
1439
1443
|
* @param GetAutoScalingConfigurationRequest
|
|
1440
1444
|
* @return GetAutoScalingConfigurationResponse
|
|
1441
1445
|
* @throws OciError when an error occurs
|
|
1442
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1446
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
1443
1447
|
*/
|
|
1444
1448
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest) {
|
|
1445
1449
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1503,7 +1507,7 @@ class BdsClient {
|
|
|
1503
1507
|
* @param GetBdsApiKeyRequest
|
|
1504
1508
|
* @return GetBdsApiKeyResponse
|
|
1505
1509
|
* @throws OciError when an error occurs
|
|
1506
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1510
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
|
|
1507
1511
|
*/
|
|
1508
1512
|
getBdsApiKey(getBdsApiKeyRequest) {
|
|
1509
1513
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1567,7 +1571,7 @@ class BdsClient {
|
|
|
1567
1571
|
* @param GetBdsInstanceRequest
|
|
1568
1572
|
* @return GetBdsInstanceResponse
|
|
1569
1573
|
* @throws OciError when an error occurs
|
|
1570
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1574
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
1571
1575
|
*/
|
|
1572
1576
|
getBdsInstance(getBdsInstanceRequest) {
|
|
1573
1577
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1630,7 +1634,7 @@ class BdsClient {
|
|
|
1630
1634
|
* @param GetBdsMetastoreConfigurationRequest
|
|
1631
1635
|
* @return GetBdsMetastoreConfigurationResponse
|
|
1632
1636
|
* @throws OciError when an error occurs
|
|
1633
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1637
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
|
|
1634
1638
|
*/
|
|
1635
1639
|
getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest) {
|
|
1636
1640
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1694,7 +1698,7 @@ class BdsClient {
|
|
|
1694
1698
|
* @param GetOsPatchDetailsRequest
|
|
1695
1699
|
* @return GetOsPatchDetailsResponse
|
|
1696
1700
|
* @throws OciError when an error occurs
|
|
1697
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1701
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/GetOsPatchDetails.ts.html |here} to see how to use GetOsPatchDetails API.
|
|
1698
1702
|
*/
|
|
1699
1703
|
getOsPatchDetails(getOsPatchDetailsRequest) {
|
|
1700
1704
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1761,7 +1765,7 @@ class BdsClient {
|
|
|
1761
1765
|
* @param GetWorkRequestRequest
|
|
1762
1766
|
* @return GetWorkRequestResponse
|
|
1763
1767
|
* @throws OciError when an error occurs
|
|
1764
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1768
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1765
1769
|
*/
|
|
1766
1770
|
getWorkRequest(getWorkRequestRequest) {
|
|
1767
1771
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1825,7 +1829,7 @@ class BdsClient {
|
|
|
1825
1829
|
* @param InstallOsPatchRequest
|
|
1826
1830
|
* @return InstallOsPatchResponse
|
|
1827
1831
|
* @throws OciError when an error occurs
|
|
1828
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1832
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/InstallOsPatch.ts.html |here} to see how to use InstallOsPatch API.
|
|
1829
1833
|
*/
|
|
1830
1834
|
installOsPatch(installOsPatchRequest) {
|
|
1831
1835
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1888,7 +1892,7 @@ class BdsClient {
|
|
|
1888
1892
|
* @param InstallPatchRequest
|
|
1889
1893
|
* @return InstallPatchResponse
|
|
1890
1894
|
* @throws OciError when an error occurs
|
|
1891
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1895
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
|
|
1892
1896
|
*/
|
|
1893
1897
|
installPatch(installPatchRequest) {
|
|
1894
1898
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1951,7 +1955,7 @@ class BdsClient {
|
|
|
1951
1955
|
* @param ListAutoScalingConfigurationsRequest
|
|
1952
1956
|
* @return ListAutoScalingConfigurationsResponse
|
|
1953
1957
|
* @throws OciError when an error occurs
|
|
1954
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1958
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
1955
1959
|
*/
|
|
1956
1960
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest) {
|
|
1957
1961
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2063,7 +2067,7 @@ class BdsClient {
|
|
|
2063
2067
|
* @param ListBdsApiKeysRequest
|
|
2064
2068
|
* @return ListBdsApiKeysResponse
|
|
2065
2069
|
* @throws OciError when an error occurs
|
|
2066
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2070
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
|
|
2067
2071
|
*/
|
|
2068
2072
|
listBdsApiKeys(listBdsApiKeysRequest) {
|
|
2069
2073
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2175,7 +2179,7 @@ class BdsClient {
|
|
|
2175
2179
|
* @param ListBdsInstancesRequest
|
|
2176
2180
|
* @return ListBdsInstancesResponse
|
|
2177
2181
|
* @throws OciError when an error occurs
|
|
2178
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2182
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
2179
2183
|
*/
|
|
2180
2184
|
listBdsInstances(listBdsInstancesRequest) {
|
|
2181
2185
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2285,7 +2289,7 @@ class BdsClient {
|
|
|
2285
2289
|
* @param ListBdsMetastoreConfigurationsRequest
|
|
2286
2290
|
* @return ListBdsMetastoreConfigurationsResponse
|
|
2287
2291
|
* @throws OciError when an error occurs
|
|
2288
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2292
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
|
|
2289
2293
|
*/
|
|
2290
2294
|
listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest) {
|
|
2291
2295
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2398,7 +2402,7 @@ class BdsClient {
|
|
|
2398
2402
|
* @param ListOsPatchesRequest
|
|
2399
2403
|
* @return ListOsPatchesResponse
|
|
2400
2404
|
* @throws OciError when an error occurs
|
|
2401
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2405
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListOsPatches.ts.html |here} to see how to use ListOsPatches API.
|
|
2402
2406
|
*/
|
|
2403
2407
|
listOsPatches(listOsPatchesRequest) {
|
|
2404
2408
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2514,7 +2518,7 @@ class BdsClient {
|
|
|
2514
2518
|
* @param ListPatchHistoriesRequest
|
|
2515
2519
|
* @return ListPatchHistoriesResponse
|
|
2516
2520
|
* @throws OciError when an error occurs
|
|
2517
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2521
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
|
|
2518
2522
|
*/
|
|
2519
2523
|
listPatchHistories(listPatchHistoriesRequest) {
|
|
2520
2524
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2626,7 +2630,7 @@ class BdsClient {
|
|
|
2626
2630
|
* @param ListPatchesRequest
|
|
2627
2631
|
* @return ListPatchesResponse
|
|
2628
2632
|
* @throws OciError when an error occurs
|
|
2629
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2633
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
|
|
2630
2634
|
*/
|
|
2631
2635
|
listPatches(listPatchesRequest) {
|
|
2632
2636
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2733,7 +2737,7 @@ class BdsClient {
|
|
|
2733
2737
|
* @param ListWorkRequestErrorsRequest
|
|
2734
2738
|
* @return ListWorkRequestErrorsResponse
|
|
2735
2739
|
* @throws OciError when an error occurs
|
|
2736
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2740
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2737
2741
|
*/
|
|
2738
2742
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2739
2743
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2842,7 +2846,7 @@ class BdsClient {
|
|
|
2842
2846
|
* @param ListWorkRequestLogsRequest
|
|
2843
2847
|
* @return ListWorkRequestLogsResponse
|
|
2844
2848
|
* @throws OciError when an error occurs
|
|
2845
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2849
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2846
2850
|
*/
|
|
2847
2851
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2848
2852
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2951,7 +2955,7 @@ class BdsClient {
|
|
|
2951
2955
|
* @param ListWorkRequestsRequest
|
|
2952
2956
|
* @return ListWorkRequestsResponse
|
|
2953
2957
|
* @throws OciError when an error occurs
|
|
2954
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2958
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2955
2959
|
*/
|
|
2956
2960
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2957
2961
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3060,7 +3064,7 @@ class BdsClient {
|
|
|
3060
3064
|
* @param RemoveAutoScalingConfigurationRequest
|
|
3061
3065
|
* @return RemoveAutoScalingConfigurationResponse
|
|
3062
3066
|
* @throws OciError when an error occurs
|
|
3063
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3067
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
3064
3068
|
*/
|
|
3065
3069
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest) {
|
|
3066
3070
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3124,7 +3128,7 @@ class BdsClient {
|
|
|
3124
3128
|
* @param RemoveCloudSqlRequest
|
|
3125
3129
|
* @return RemoveCloudSqlResponse
|
|
3126
3130
|
* @throws OciError when an error occurs
|
|
3127
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3131
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
3128
3132
|
*/
|
|
3129
3133
|
removeCloudSql(removeCloudSqlRequest) {
|
|
3130
3134
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3187,7 +3191,7 @@ class BdsClient {
|
|
|
3187
3191
|
* @param RemoveKafkaRequest
|
|
3188
3192
|
* @return RemoveKafkaResponse
|
|
3189
3193
|
* @throws OciError when an error occurs
|
|
3190
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3194
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/RemoveKafka.ts.html |here} to see how to use RemoveKafka API.
|
|
3191
3195
|
*/
|
|
3192
3196
|
removeKafka(removeKafkaRequest) {
|
|
3193
3197
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3250,7 +3254,7 @@ class BdsClient {
|
|
|
3250
3254
|
* @param RemoveNodeRequest
|
|
3251
3255
|
* @return RemoveNodeResponse
|
|
3252
3256
|
* @throws OciError when an error occurs
|
|
3253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3257
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
|
|
3254
3258
|
*/
|
|
3255
3259
|
removeNode(removeNodeRequest) {
|
|
3256
3260
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3312,7 +3316,7 @@ class BdsClient {
|
|
|
3312
3316
|
* @param RenewCertificateRequest
|
|
3313
3317
|
* @return RenewCertificateResponse
|
|
3314
3318
|
* @throws OciError when an error occurs
|
|
3315
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3319
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/RenewCertificate.ts.html |here} to see how to use RenewCertificate API.
|
|
3316
3320
|
*/
|
|
3317
3321
|
renewCertificate(renewCertificateRequest) {
|
|
3318
3322
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3375,7 +3379,7 @@ class BdsClient {
|
|
|
3375
3379
|
* @param RestartNodeRequest
|
|
3376
3380
|
* @return RestartNodeResponse
|
|
3377
3381
|
* @throws OciError when an error occurs
|
|
3378
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3382
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
3379
3383
|
*/
|
|
3380
3384
|
restartNode(restartNodeRequest) {
|
|
3381
3385
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3438,7 +3442,7 @@ class BdsClient {
|
|
|
3438
3442
|
* @param StartBdsInstanceRequest
|
|
3439
3443
|
* @return StartBdsInstanceResponse
|
|
3440
3444
|
* @throws OciError when an error occurs
|
|
3441
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3445
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/StartBdsInstance.ts.html |here} to see how to use StartBdsInstance API.
|
|
3442
3446
|
*/
|
|
3443
3447
|
startBdsInstance(startBdsInstanceRequest) {
|
|
3444
3448
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3500,7 +3504,7 @@ class BdsClient {
|
|
|
3500
3504
|
* @param StopBdsInstanceRequest
|
|
3501
3505
|
* @return StopBdsInstanceResponse
|
|
3502
3506
|
* @throws OciError when an error occurs
|
|
3503
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3507
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/StopBdsInstance.ts.html |here} to see how to use StopBdsInstance API.
|
|
3504
3508
|
*/
|
|
3505
3509
|
stopBdsInstance(stopBdsInstanceRequest) {
|
|
3506
3510
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3562,7 +3566,7 @@ class BdsClient {
|
|
|
3562
3566
|
* @param TestBdsMetastoreConfigurationRequest
|
|
3563
3567
|
* @return TestBdsMetastoreConfigurationResponse
|
|
3564
3568
|
* @throws OciError when an error occurs
|
|
3565
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3569
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
|
|
3566
3570
|
*/
|
|
3567
3571
|
testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest) {
|
|
3568
3572
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3624,7 +3628,7 @@ class BdsClient {
|
|
|
3624
3628
|
* @param TestBdsObjectStorageConnectionRequest
|
|
3625
3629
|
* @return TestBdsObjectStorageConnectionResponse
|
|
3626
3630
|
* @throws OciError when an error occurs
|
|
3627
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3631
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
|
|
3628
3632
|
*/
|
|
3629
3633
|
testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest) {
|
|
3630
3634
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3686,7 +3690,7 @@ class BdsClient {
|
|
|
3686
3690
|
* @param UpdateAutoScalingConfigurationRequest
|
|
3687
3691
|
* @return UpdateAutoScalingConfigurationResponse
|
|
3688
3692
|
* @throws OciError when an error occurs
|
|
3689
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3693
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
3690
3694
|
*/
|
|
3691
3695
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest) {
|
|
3692
3696
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3749,7 +3753,7 @@ class BdsClient {
|
|
|
3749
3753
|
* @param UpdateBdsInstanceRequest
|
|
3750
3754
|
* @return UpdateBdsInstanceResponse
|
|
3751
3755
|
* @throws OciError when an error occurs
|
|
3752
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3756
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
3753
3757
|
*/
|
|
3754
3758
|
updateBdsInstance(updateBdsInstanceRequest) {
|
|
3755
3759
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3810,7 +3814,7 @@ class BdsClient {
|
|
|
3810
3814
|
* @param UpdateBdsMetastoreConfigurationRequest
|
|
3811
3815
|
* @return UpdateBdsMetastoreConfigurationResponse
|
|
3812
3816
|
* @throws OciError when an error occurs
|
|
3813
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3817
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
|
|
3814
3818
|
*/
|
|
3815
3819
|
updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest) {
|
|
3816
3820
|
return __awaiter(this, void 0, void 0, function* () {
|