oci-bds 2.57.0 → 2.58.1
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 +50 -40
- package/lib/client.js +63 -40
- 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-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-work-request-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-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-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
|
@@ -58,11 +58,14 @@ var BdsApiKeys;
|
|
|
58
58
|
*/
|
|
59
59
|
class BdsClient {
|
|
60
60
|
constructor(params, clientConfiguration) {
|
|
61
|
+
this["_realmSpecificEndpointTemplateEnabled"] = false;
|
|
61
62
|
this["_endpoint"] = "";
|
|
62
63
|
this["_defaultHeaders"] = {};
|
|
63
64
|
this._circuitBreaker = null;
|
|
64
65
|
this._httpOptions = undefined;
|
|
65
66
|
this.targetService = "Bds";
|
|
67
|
+
this._regionId = "";
|
|
68
|
+
this._lastSetRegionOrRegionId = "";
|
|
66
69
|
const requestSigner = params.authenticationDetailsProvider
|
|
67
70
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
68
71
|
: null;
|
|
@@ -112,13 +115,31 @@ class BdsClient {
|
|
|
112
115
|
get logger() {
|
|
113
116
|
return common.LOG.logger;
|
|
114
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* Determines whether realm specific endpoint should be used or not.
|
|
120
|
+
* Set realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm specific endpoint template, otherwise set it to "false"
|
|
121
|
+
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
122
|
+
*/
|
|
123
|
+
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
|
|
124
|
+
this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
|
|
125
|
+
if (this.logger)
|
|
126
|
+
this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
|
|
127
|
+
if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
|
|
128
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(BdsClient.serviceEndpointTemplate, this._region, BdsClient.endpointServiceName);
|
|
129
|
+
}
|
|
130
|
+
else if (this._lastSetRegionOrRegionId === common.Region.REGION_ID_STRING) {
|
|
131
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(BdsClient.serviceEndpointTemplate, this._regionId, BdsClient.endpointServiceName);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
115
134
|
/**
|
|
116
135
|
* Sets the region to call (ex, Region.US_PHOENIX_1).
|
|
117
136
|
* Note, this will call {@link #endpoint(String) endpoint} after resolving the endpoint.
|
|
118
137
|
* @param region The region of the service.
|
|
119
138
|
*/
|
|
120
139
|
set region(region) {
|
|
140
|
+
this._region = region;
|
|
121
141
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(BdsClient.serviceEndpointTemplate, region, BdsClient.endpointServiceName);
|
|
142
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_STRING;
|
|
122
143
|
}
|
|
123
144
|
/**
|
|
124
145
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -129,7 +150,9 @@ class BdsClient {
|
|
|
129
150
|
* @param regionId The public region ID.
|
|
130
151
|
*/
|
|
131
152
|
set regionId(regionId) {
|
|
153
|
+
this._regionId = regionId;
|
|
132
154
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(BdsClient.serviceEndpointTemplate, regionId, BdsClient.endpointServiceName);
|
|
155
|
+
this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
|
|
133
156
|
}
|
|
134
157
|
/**
|
|
135
158
|
* Creates a new BdsWaiter for resources for this service.
|
|
@@ -159,7 +182,7 @@ class BdsClient {
|
|
|
159
182
|
* @param ActivateBdsMetastoreConfigurationRequest
|
|
160
183
|
* @return ActivateBdsMetastoreConfigurationResponse
|
|
161
184
|
* @throws OciError when an error occurs
|
|
162
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
185
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
|
|
163
186
|
*/
|
|
164
187
|
activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest) {
|
|
165
188
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -223,7 +246,7 @@ class BdsClient {
|
|
|
223
246
|
* @param AddAutoScalingConfigurationRequest
|
|
224
247
|
* @return AddAutoScalingConfigurationResponse
|
|
225
248
|
* @throws OciError when an error occurs
|
|
226
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
227
250
|
*/
|
|
228
251
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest) {
|
|
229
252
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -286,7 +309,7 @@ class BdsClient {
|
|
|
286
309
|
* @param AddBlockStorageRequest
|
|
287
310
|
* @return AddBlockStorageResponse
|
|
288
311
|
* @throws OciError when an error occurs
|
|
289
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
312
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
290
313
|
*/
|
|
291
314
|
addBlockStorage(addBlockStorageRequest) {
|
|
292
315
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -349,7 +372,7 @@ class BdsClient {
|
|
|
349
372
|
* @param AddCloudSqlRequest
|
|
350
373
|
* @return AddCloudSqlResponse
|
|
351
374
|
* @throws OciError when an error occurs
|
|
352
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
375
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
353
376
|
*/
|
|
354
377
|
addCloudSql(addCloudSqlRequest) {
|
|
355
378
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -412,7 +435,7 @@ class BdsClient {
|
|
|
412
435
|
* @param AddWorkerNodesRequest
|
|
413
436
|
* @return AddWorkerNodesResponse
|
|
414
437
|
* @throws OciError when an error occurs
|
|
415
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
438
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
416
439
|
*/
|
|
417
440
|
addWorkerNodes(addWorkerNodesRequest) {
|
|
418
441
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -475,7 +498,7 @@ class BdsClient {
|
|
|
475
498
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
476
499
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
477
500
|
* @throws OciError when an error occurs
|
|
478
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
501
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
479
502
|
*/
|
|
480
503
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest) {
|
|
481
504
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -538,7 +561,7 @@ class BdsClient {
|
|
|
538
561
|
* @param ChangeShapeRequest
|
|
539
562
|
* @return ChangeShapeResponse
|
|
540
563
|
* @throws OciError when an error occurs
|
|
541
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
564
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
542
565
|
*/
|
|
543
566
|
changeShape(changeShapeRequest) {
|
|
544
567
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -601,7 +624,7 @@ class BdsClient {
|
|
|
601
624
|
* @param CreateBdsApiKeyRequest
|
|
602
625
|
* @return CreateBdsApiKeyResponse
|
|
603
626
|
* @throws OciError when an error occurs
|
|
604
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
627
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
|
|
605
628
|
*/
|
|
606
629
|
createBdsApiKey(createBdsApiKeyRequest) {
|
|
607
630
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -663,7 +686,7 @@ class BdsClient {
|
|
|
663
686
|
* @param CreateBdsInstanceRequest
|
|
664
687
|
* @return CreateBdsInstanceResponse
|
|
665
688
|
* @throws OciError when an error occurs
|
|
666
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
689
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
667
690
|
*/
|
|
668
691
|
createBdsInstance(createBdsInstanceRequest) {
|
|
669
692
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -723,7 +746,7 @@ class BdsClient {
|
|
|
723
746
|
* @param CreateBdsMetastoreConfigurationRequest
|
|
724
747
|
* @return CreateBdsMetastoreConfigurationResponse
|
|
725
748
|
* @throws OciError when an error occurs
|
|
726
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
749
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
|
|
727
750
|
*/
|
|
728
751
|
createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest) {
|
|
729
752
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -784,7 +807,7 @@ class BdsClient {
|
|
|
784
807
|
* @param DeleteBdsApiKeyRequest
|
|
785
808
|
* @return DeleteBdsApiKeyResponse
|
|
786
809
|
* @throws OciError when an error occurs
|
|
787
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
810
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
|
|
788
811
|
*/
|
|
789
812
|
deleteBdsApiKey(deleteBdsApiKeyRequest) {
|
|
790
813
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -845,7 +868,7 @@ class BdsClient {
|
|
|
845
868
|
* @param DeleteBdsInstanceRequest
|
|
846
869
|
* @return DeleteBdsInstanceResponse
|
|
847
870
|
* @throws OciError when an error occurs
|
|
848
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
871
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
849
872
|
*/
|
|
850
873
|
deleteBdsInstance(deleteBdsInstanceRequest) {
|
|
851
874
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -905,7 +928,7 @@ class BdsClient {
|
|
|
905
928
|
* @param DeleteBdsMetastoreConfigurationRequest
|
|
906
929
|
* @return DeleteBdsMetastoreConfigurationResponse
|
|
907
930
|
* @throws OciError when an error occurs
|
|
908
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
931
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
|
|
909
932
|
*/
|
|
910
933
|
deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest) {
|
|
911
934
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -967,7 +990,7 @@ class BdsClient {
|
|
|
967
990
|
* @param ExecuteBootstrapScriptRequest
|
|
968
991
|
* @return ExecuteBootstrapScriptResponse
|
|
969
992
|
* @throws OciError when an error occurs
|
|
970
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
993
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ExecuteBootstrapScript.ts.html |here} to see how to use ExecuteBootstrapScript API.
|
|
971
994
|
*/
|
|
972
995
|
executeBootstrapScript(executeBootstrapScriptRequest) {
|
|
973
996
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1030,7 +1053,7 @@ class BdsClient {
|
|
|
1030
1053
|
* @param GetAutoScalingConfigurationRequest
|
|
1031
1054
|
* @return GetAutoScalingConfigurationResponse
|
|
1032
1055
|
* @throws OciError when an error occurs
|
|
1033
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1056
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
1034
1057
|
*/
|
|
1035
1058
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest) {
|
|
1036
1059
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1094,7 +1117,7 @@ class BdsClient {
|
|
|
1094
1117
|
* @param GetBdsApiKeyRequest
|
|
1095
1118
|
* @return GetBdsApiKeyResponse
|
|
1096
1119
|
* @throws OciError when an error occurs
|
|
1097
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1120
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
|
|
1098
1121
|
*/
|
|
1099
1122
|
getBdsApiKey(getBdsApiKeyRequest) {
|
|
1100
1123
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1158,7 +1181,7 @@ class BdsClient {
|
|
|
1158
1181
|
* @param GetBdsInstanceRequest
|
|
1159
1182
|
* @return GetBdsInstanceResponse
|
|
1160
1183
|
* @throws OciError when an error occurs
|
|
1161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1184
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
1162
1185
|
*/
|
|
1163
1186
|
getBdsInstance(getBdsInstanceRequest) {
|
|
1164
1187
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1221,7 +1244,7 @@ class BdsClient {
|
|
|
1221
1244
|
* @param GetBdsMetastoreConfigurationRequest
|
|
1222
1245
|
* @return GetBdsMetastoreConfigurationResponse
|
|
1223
1246
|
* @throws OciError when an error occurs
|
|
1224
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
|
|
1225
1248
|
*/
|
|
1226
1249
|
getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest) {
|
|
1227
1250
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1285,7 +1308,7 @@ class BdsClient {
|
|
|
1285
1308
|
* @param GetWorkRequestRequest
|
|
1286
1309
|
* @return GetWorkRequestResponse
|
|
1287
1310
|
* @throws OciError when an error occurs
|
|
1288
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1311
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1289
1312
|
*/
|
|
1290
1313
|
getWorkRequest(getWorkRequestRequest) {
|
|
1291
1314
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1349,7 +1372,7 @@ class BdsClient {
|
|
|
1349
1372
|
* @param InstallPatchRequest
|
|
1350
1373
|
* @return InstallPatchResponse
|
|
1351
1374
|
* @throws OciError when an error occurs
|
|
1352
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1375
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
|
|
1353
1376
|
*/
|
|
1354
1377
|
installPatch(installPatchRequest) {
|
|
1355
1378
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1412,7 +1435,7 @@ class BdsClient {
|
|
|
1412
1435
|
* @param ListAutoScalingConfigurationsRequest
|
|
1413
1436
|
* @return ListAutoScalingConfigurationsResponse
|
|
1414
1437
|
* @throws OciError when an error occurs
|
|
1415
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1438
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
1416
1439
|
*/
|
|
1417
1440
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest) {
|
|
1418
1441
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1524,7 +1547,7 @@ class BdsClient {
|
|
|
1524
1547
|
* @param ListBdsApiKeysRequest
|
|
1525
1548
|
* @return ListBdsApiKeysResponse
|
|
1526
1549
|
* @throws OciError when an error occurs
|
|
1527
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1550
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
|
|
1528
1551
|
*/
|
|
1529
1552
|
listBdsApiKeys(listBdsApiKeysRequest) {
|
|
1530
1553
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1636,7 +1659,7 @@ class BdsClient {
|
|
|
1636
1659
|
* @param ListBdsInstancesRequest
|
|
1637
1660
|
* @return ListBdsInstancesResponse
|
|
1638
1661
|
* @throws OciError when an error occurs
|
|
1639
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1662
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
1640
1663
|
*/
|
|
1641
1664
|
listBdsInstances(listBdsInstancesRequest) {
|
|
1642
1665
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1746,7 +1769,7 @@ class BdsClient {
|
|
|
1746
1769
|
* @param ListBdsMetastoreConfigurationsRequest
|
|
1747
1770
|
* @return ListBdsMetastoreConfigurationsResponse
|
|
1748
1771
|
* @throws OciError when an error occurs
|
|
1749
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1772
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
|
|
1750
1773
|
*/
|
|
1751
1774
|
listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest) {
|
|
1752
1775
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1860,7 +1883,7 @@ class BdsClient {
|
|
|
1860
1883
|
* @param ListPatchHistoriesRequest
|
|
1861
1884
|
* @return ListPatchHistoriesResponse
|
|
1862
1885
|
* @throws OciError when an error occurs
|
|
1863
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1886
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
|
|
1864
1887
|
*/
|
|
1865
1888
|
listPatchHistories(listPatchHistoriesRequest) {
|
|
1866
1889
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1971,7 +1994,7 @@ class BdsClient {
|
|
|
1971
1994
|
* @param ListPatchesRequest
|
|
1972
1995
|
* @return ListPatchesResponse
|
|
1973
1996
|
* @throws OciError when an error occurs
|
|
1974
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1997
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
|
|
1975
1998
|
*/
|
|
1976
1999
|
listPatches(listPatchesRequest) {
|
|
1977
2000
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2078,7 +2101,7 @@ class BdsClient {
|
|
|
2078
2101
|
* @param ListWorkRequestErrorsRequest
|
|
2079
2102
|
* @return ListWorkRequestErrorsResponse
|
|
2080
2103
|
* @throws OciError when an error occurs
|
|
2081
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2104
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2082
2105
|
*/
|
|
2083
2106
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2084
2107
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2187,7 +2210,7 @@ class BdsClient {
|
|
|
2187
2210
|
* @param ListWorkRequestLogsRequest
|
|
2188
2211
|
* @return ListWorkRequestLogsResponse
|
|
2189
2212
|
* @throws OciError when an error occurs
|
|
2190
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2213
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2191
2214
|
*/
|
|
2192
2215
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2193
2216
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2296,7 +2319,7 @@ class BdsClient {
|
|
|
2296
2319
|
* @param ListWorkRequestsRequest
|
|
2297
2320
|
* @return ListWorkRequestsResponse
|
|
2298
2321
|
* @throws OciError when an error occurs
|
|
2299
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2322
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2300
2323
|
*/
|
|
2301
2324
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2302
2325
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2405,7 +2428,7 @@ class BdsClient {
|
|
|
2405
2428
|
* @param RemoveAutoScalingConfigurationRequest
|
|
2406
2429
|
* @return RemoveAutoScalingConfigurationResponse
|
|
2407
2430
|
* @throws OciError when an error occurs
|
|
2408
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2431
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
2409
2432
|
*/
|
|
2410
2433
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest) {
|
|
2411
2434
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2469,7 +2492,7 @@ class BdsClient {
|
|
|
2469
2492
|
* @param RemoveCloudSqlRequest
|
|
2470
2493
|
* @return RemoveCloudSqlResponse
|
|
2471
2494
|
* @throws OciError when an error occurs
|
|
2472
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2495
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
2473
2496
|
*/
|
|
2474
2497
|
removeCloudSql(removeCloudSqlRequest) {
|
|
2475
2498
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2532,7 +2555,7 @@ class BdsClient {
|
|
|
2532
2555
|
* @param RemoveNodeRequest
|
|
2533
2556
|
* @return RemoveNodeResponse
|
|
2534
2557
|
* @throws OciError when an error occurs
|
|
2535
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2558
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
|
|
2536
2559
|
*/
|
|
2537
2560
|
removeNode(removeNodeRequest) {
|
|
2538
2561
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2594,7 +2617,7 @@ class BdsClient {
|
|
|
2594
2617
|
* @param RestartNodeRequest
|
|
2595
2618
|
* @return RestartNodeResponse
|
|
2596
2619
|
* @throws OciError when an error occurs
|
|
2597
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2620
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
2598
2621
|
*/
|
|
2599
2622
|
restartNode(restartNodeRequest) {
|
|
2600
2623
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2657,7 +2680,7 @@ class BdsClient {
|
|
|
2657
2680
|
* @param StartBdsInstanceRequest
|
|
2658
2681
|
* @return StartBdsInstanceResponse
|
|
2659
2682
|
* @throws OciError when an error occurs
|
|
2660
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2683
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/StartBdsInstance.ts.html |here} to see how to use StartBdsInstance API.
|
|
2661
2684
|
*/
|
|
2662
2685
|
startBdsInstance(startBdsInstanceRequest) {
|
|
2663
2686
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2719,7 +2742,7 @@ class BdsClient {
|
|
|
2719
2742
|
* @param StopBdsInstanceRequest
|
|
2720
2743
|
* @return StopBdsInstanceResponse
|
|
2721
2744
|
* @throws OciError when an error occurs
|
|
2722
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2745
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/StopBdsInstance.ts.html |here} to see how to use StopBdsInstance API.
|
|
2723
2746
|
*/
|
|
2724
2747
|
stopBdsInstance(stopBdsInstanceRequest) {
|
|
2725
2748
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2781,7 +2804,7 @@ class BdsClient {
|
|
|
2781
2804
|
* @param TestBdsMetastoreConfigurationRequest
|
|
2782
2805
|
* @return TestBdsMetastoreConfigurationResponse
|
|
2783
2806
|
* @throws OciError when an error occurs
|
|
2784
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2807
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
|
|
2785
2808
|
*/
|
|
2786
2809
|
testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest) {
|
|
2787
2810
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2843,7 +2866,7 @@ class BdsClient {
|
|
|
2843
2866
|
* @param TestBdsObjectStorageConnectionRequest
|
|
2844
2867
|
* @return TestBdsObjectStorageConnectionResponse
|
|
2845
2868
|
* @throws OciError when an error occurs
|
|
2846
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2869
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
|
|
2847
2870
|
*/
|
|
2848
2871
|
testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest) {
|
|
2849
2872
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2905,7 +2928,7 @@ class BdsClient {
|
|
|
2905
2928
|
* @param UpdateAutoScalingConfigurationRequest
|
|
2906
2929
|
* @return UpdateAutoScalingConfigurationResponse
|
|
2907
2930
|
* @throws OciError when an error occurs
|
|
2908
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2931
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
2909
2932
|
*/
|
|
2910
2933
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest) {
|
|
2911
2934
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2968,7 +2991,7 @@ class BdsClient {
|
|
|
2968
2991
|
* @param UpdateBdsInstanceRequest
|
|
2969
2992
|
* @return UpdateBdsInstanceResponse
|
|
2970
2993
|
* @throws OciError when an error occurs
|
|
2971
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2994
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
2972
2995
|
*/
|
|
2973
2996
|
updateBdsInstance(updateBdsInstanceRequest) {
|
|
2974
2997
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3029,7 +3052,7 @@ class BdsClient {
|
|
|
3029
3052
|
* @param UpdateBdsMetastoreConfigurationRequest
|
|
3030
3053
|
* @return UpdateBdsMetastoreConfigurationResponse
|
|
3031
3054
|
* @throws OciError when an error occurs
|
|
3032
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3055
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.58.1/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
|
|
3033
3056
|
*/
|
|
3034
3057
|
updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest) {
|
|
3035
3058
|
return __awaiter(this, void 0, void 0, function* () {
|