oci-bds 2.27.0 → 2.28.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 +38 -37
- package/lib/client.js +149 -74
- 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/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/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
|
@@ -62,6 +62,7 @@ class BdsClient {
|
|
|
62
62
|
this["_defaultHeaders"] = {};
|
|
63
63
|
this._circuitBreaker = null;
|
|
64
64
|
this._httpOptions = undefined;
|
|
65
|
+
this.targetService = "Bds";
|
|
65
66
|
const requestSigner = params.authenticationDetailsProvider
|
|
66
67
|
? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
|
|
67
68
|
: null;
|
|
@@ -158,12 +159,14 @@ class BdsClient {
|
|
|
158
159
|
* @param ActivateBdsMetastoreConfigurationRequest
|
|
159
160
|
* @return ActivateBdsMetastoreConfigurationResponse
|
|
160
161
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
162
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
|
|
162
163
|
*/
|
|
163
164
|
activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest) {
|
|
164
165
|
return __awaiter(this, void 0, void 0, function* () {
|
|
165
166
|
if (this.logger)
|
|
166
167
|
this.logger.debug("Calling operation BdsClient#activateBdsMetastoreConfiguration.");
|
|
168
|
+
const operationName = "activateBdsMetastoreConfiguration";
|
|
169
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/ActivateBdsMetastoreConfiguration";
|
|
167
170
|
const pathParams = {
|
|
168
171
|
"{bdsInstanceId}": activateBdsMetastoreConfigurationRequest.bdsInstanceId,
|
|
169
172
|
"{metastoreConfigId}": activateBdsMetastoreConfigurationRequest.metastoreConfigId
|
|
@@ -190,7 +193,7 @@ class BdsClient {
|
|
|
190
193
|
queryParams: queryParams
|
|
191
194
|
});
|
|
192
195
|
try {
|
|
193
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
196
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
194
197
|
const sdkResponse = oci_common_2.composeResponse({
|
|
195
198
|
responseObject: {},
|
|
196
199
|
responseHeaders: [
|
|
@@ -220,12 +223,14 @@ class BdsClient {
|
|
|
220
223
|
* @param AddAutoScalingConfigurationRequest
|
|
221
224
|
* @return AddAutoScalingConfigurationResponse
|
|
222
225
|
* @throws OciError when an error occurs
|
|
223
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
226
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
224
227
|
*/
|
|
225
228
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest) {
|
|
226
229
|
return __awaiter(this, void 0, void 0, function* () {
|
|
227
230
|
if (this.logger)
|
|
228
231
|
this.logger.debug("Calling operation BdsClient#addAutoScalingConfiguration.");
|
|
232
|
+
const operationName = "addAutoScalingConfiguration";
|
|
233
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddAutoScalingConfiguration";
|
|
229
234
|
const pathParams = {
|
|
230
235
|
"{bdsInstanceId}": addAutoScalingConfigurationRequest.bdsInstanceId
|
|
231
236
|
};
|
|
@@ -251,7 +256,7 @@ class BdsClient {
|
|
|
251
256
|
queryParams: queryParams
|
|
252
257
|
});
|
|
253
258
|
try {
|
|
254
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
259
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
255
260
|
const sdkResponse = oci_common_2.composeResponse({
|
|
256
261
|
responseObject: {},
|
|
257
262
|
responseHeaders: [
|
|
@@ -281,12 +286,14 @@ class BdsClient {
|
|
|
281
286
|
* @param AddBlockStorageRequest
|
|
282
287
|
* @return AddBlockStorageResponse
|
|
283
288
|
* @throws OciError when an error occurs
|
|
284
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
289
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
285
290
|
*/
|
|
286
291
|
addBlockStorage(addBlockStorageRequest) {
|
|
287
292
|
return __awaiter(this, void 0, void 0, function* () {
|
|
288
293
|
if (this.logger)
|
|
289
294
|
this.logger.debug("Calling operation BdsClient#addBlockStorage.");
|
|
295
|
+
const operationName = "addBlockStorage";
|
|
296
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddBlockStorage";
|
|
290
297
|
const pathParams = {
|
|
291
298
|
"{bdsInstanceId}": addBlockStorageRequest.bdsInstanceId
|
|
292
299
|
};
|
|
@@ -312,7 +319,7 @@ class BdsClient {
|
|
|
312
319
|
queryParams: queryParams
|
|
313
320
|
});
|
|
314
321
|
try {
|
|
315
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
322
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
316
323
|
const sdkResponse = oci_common_2.composeResponse({
|
|
317
324
|
responseObject: {},
|
|
318
325
|
responseHeaders: [
|
|
@@ -342,12 +349,14 @@ class BdsClient {
|
|
|
342
349
|
* @param AddCloudSqlRequest
|
|
343
350
|
* @return AddCloudSqlResponse
|
|
344
351
|
* @throws OciError when an error occurs
|
|
345
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
352
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
346
353
|
*/
|
|
347
354
|
addCloudSql(addCloudSqlRequest) {
|
|
348
355
|
return __awaiter(this, void 0, void 0, function* () {
|
|
349
356
|
if (this.logger)
|
|
350
357
|
this.logger.debug("Calling operation BdsClient#addCloudSql.");
|
|
358
|
+
const operationName = "addCloudSql";
|
|
359
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddCloudSql";
|
|
351
360
|
const pathParams = {
|
|
352
361
|
"{bdsInstanceId}": addCloudSqlRequest.bdsInstanceId
|
|
353
362
|
};
|
|
@@ -373,7 +382,7 @@ class BdsClient {
|
|
|
373
382
|
queryParams: queryParams
|
|
374
383
|
});
|
|
375
384
|
try {
|
|
376
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
385
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
377
386
|
const sdkResponse = oci_common_2.composeResponse({
|
|
378
387
|
responseObject: {},
|
|
379
388
|
responseHeaders: [
|
|
@@ -403,12 +412,14 @@ class BdsClient {
|
|
|
403
412
|
* @param AddWorkerNodesRequest
|
|
404
413
|
* @return AddWorkerNodesResponse
|
|
405
414
|
* @throws OciError when an error occurs
|
|
406
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
415
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
407
416
|
*/
|
|
408
417
|
addWorkerNodes(addWorkerNodesRequest) {
|
|
409
418
|
return __awaiter(this, void 0, void 0, function* () {
|
|
410
419
|
if (this.logger)
|
|
411
420
|
this.logger.debug("Calling operation BdsClient#addWorkerNodes.");
|
|
421
|
+
const operationName = "addWorkerNodes";
|
|
422
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddWorkerNodes";
|
|
412
423
|
const pathParams = {
|
|
413
424
|
"{bdsInstanceId}": addWorkerNodesRequest.bdsInstanceId
|
|
414
425
|
};
|
|
@@ -434,7 +445,7 @@ class BdsClient {
|
|
|
434
445
|
queryParams: queryParams
|
|
435
446
|
});
|
|
436
447
|
try {
|
|
437
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
448
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
438
449
|
const sdkResponse = oci_common_2.composeResponse({
|
|
439
450
|
responseObject: {},
|
|
440
451
|
responseHeaders: [
|
|
@@ -464,12 +475,14 @@ class BdsClient {
|
|
|
464
475
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
465
476
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
466
477
|
* @throws OciError when an error occurs
|
|
467
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
478
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
468
479
|
*/
|
|
469
480
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest) {
|
|
470
481
|
return __awaiter(this, void 0, void 0, function* () {
|
|
471
482
|
if (this.logger)
|
|
472
483
|
this.logger.debug("Calling operation BdsClient#changeBdsInstanceCompartment.");
|
|
484
|
+
const operationName = "changeBdsInstanceCompartment";
|
|
485
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ChangeBdsInstanceCompartment";
|
|
473
486
|
const pathParams = {
|
|
474
487
|
"{bdsInstanceId}": changeBdsInstanceCompartmentRequest.bdsInstanceId
|
|
475
488
|
};
|
|
@@ -495,7 +508,7 @@ class BdsClient {
|
|
|
495
508
|
queryParams: queryParams
|
|
496
509
|
});
|
|
497
510
|
try {
|
|
498
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
511
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
499
512
|
const sdkResponse = oci_common_2.composeResponse({
|
|
500
513
|
responseObject: {},
|
|
501
514
|
responseHeaders: [
|
|
@@ -525,12 +538,14 @@ class BdsClient {
|
|
|
525
538
|
* @param ChangeShapeRequest
|
|
526
539
|
* @return ChangeShapeResponse
|
|
527
540
|
* @throws OciError when an error occurs
|
|
528
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
541
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
529
542
|
*/
|
|
530
543
|
changeShape(changeShapeRequest) {
|
|
531
544
|
return __awaiter(this, void 0, void 0, function* () {
|
|
532
545
|
if (this.logger)
|
|
533
546
|
this.logger.debug("Calling operation BdsClient#changeShape.");
|
|
547
|
+
const operationName = "changeShape";
|
|
548
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ChangeShape";
|
|
534
549
|
const pathParams = {
|
|
535
550
|
"{bdsInstanceId}": changeShapeRequest.bdsInstanceId
|
|
536
551
|
};
|
|
@@ -556,7 +571,7 @@ class BdsClient {
|
|
|
556
571
|
queryParams: queryParams
|
|
557
572
|
});
|
|
558
573
|
try {
|
|
559
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
574
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
560
575
|
const sdkResponse = oci_common_2.composeResponse({
|
|
561
576
|
responseObject: {},
|
|
562
577
|
responseHeaders: [
|
|
@@ -586,12 +601,14 @@ class BdsClient {
|
|
|
586
601
|
* @param CreateBdsApiKeyRequest
|
|
587
602
|
* @return CreateBdsApiKeyResponse
|
|
588
603
|
* @throws OciError when an error occurs
|
|
589
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
604
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
|
|
590
605
|
*/
|
|
591
606
|
createBdsApiKey(createBdsApiKeyRequest) {
|
|
592
607
|
return __awaiter(this, void 0, void 0, function* () {
|
|
593
608
|
if (this.logger)
|
|
594
609
|
this.logger.debug("Calling operation BdsClient#createBdsApiKey.");
|
|
610
|
+
const operationName = "createBdsApiKey";
|
|
611
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/CreateBdsApiKey";
|
|
595
612
|
const pathParams = {
|
|
596
613
|
"{bdsInstanceId}": createBdsApiKeyRequest.bdsInstanceId
|
|
597
614
|
};
|
|
@@ -616,7 +633,7 @@ class BdsClient {
|
|
|
616
633
|
queryParams: queryParams
|
|
617
634
|
});
|
|
618
635
|
try {
|
|
619
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
636
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
620
637
|
const sdkResponse = oci_common_2.composeResponse({
|
|
621
638
|
responseObject: {},
|
|
622
639
|
responseHeaders: [
|
|
@@ -646,12 +663,14 @@ class BdsClient {
|
|
|
646
663
|
* @param CreateBdsInstanceRequest
|
|
647
664
|
* @return CreateBdsInstanceResponse
|
|
648
665
|
* @throws OciError when an error occurs
|
|
649
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
666
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
650
667
|
*/
|
|
651
668
|
createBdsInstance(createBdsInstanceRequest) {
|
|
652
669
|
return __awaiter(this, void 0, void 0, function* () {
|
|
653
670
|
if (this.logger)
|
|
654
671
|
this.logger.debug("Calling operation BdsClient#createBdsInstance.");
|
|
672
|
+
const operationName = "createBdsInstance";
|
|
673
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/CreateBdsInstance";
|
|
655
674
|
const pathParams = {};
|
|
656
675
|
const queryParams = {};
|
|
657
676
|
let headerParams = {
|
|
@@ -674,7 +693,7 @@ class BdsClient {
|
|
|
674
693
|
queryParams: queryParams
|
|
675
694
|
});
|
|
676
695
|
try {
|
|
677
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
696
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
678
697
|
const sdkResponse = oci_common_2.composeResponse({
|
|
679
698
|
responseObject: {},
|
|
680
699
|
responseHeaders: [
|
|
@@ -704,12 +723,14 @@ class BdsClient {
|
|
|
704
723
|
* @param CreateBdsMetastoreConfigurationRequest
|
|
705
724
|
* @return CreateBdsMetastoreConfigurationResponse
|
|
706
725
|
* @throws OciError when an error occurs
|
|
707
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
726
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
|
|
708
727
|
*/
|
|
709
728
|
createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest) {
|
|
710
729
|
return __awaiter(this, void 0, void 0, function* () {
|
|
711
730
|
if (this.logger)
|
|
712
731
|
this.logger.debug("Calling operation BdsClient#createBdsMetastoreConfiguration.");
|
|
732
|
+
const operationName = "createBdsMetastoreConfiguration";
|
|
733
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/CreateBdsMetastoreConfiguration";
|
|
713
734
|
const pathParams = {
|
|
714
735
|
"{bdsInstanceId}": createBdsMetastoreConfigurationRequest.bdsInstanceId
|
|
715
736
|
};
|
|
@@ -734,7 +755,7 @@ class BdsClient {
|
|
|
734
755
|
queryParams: queryParams
|
|
735
756
|
});
|
|
736
757
|
try {
|
|
737
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
758
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
738
759
|
const sdkResponse = oci_common_2.composeResponse({
|
|
739
760
|
responseObject: {},
|
|
740
761
|
responseHeaders: [
|
|
@@ -763,12 +784,14 @@ class BdsClient {
|
|
|
763
784
|
* @param DeleteBdsApiKeyRequest
|
|
764
785
|
* @return DeleteBdsApiKeyResponse
|
|
765
786
|
* @throws OciError when an error occurs
|
|
766
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
787
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
|
|
767
788
|
*/
|
|
768
789
|
deleteBdsApiKey(deleteBdsApiKeyRequest) {
|
|
769
790
|
return __awaiter(this, void 0, void 0, function* () {
|
|
770
791
|
if (this.logger)
|
|
771
792
|
this.logger.debug("Calling operation BdsClient#deleteBdsApiKey.");
|
|
793
|
+
const operationName = "deleteBdsApiKey";
|
|
794
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/DeleteBdsApiKey";
|
|
772
795
|
const pathParams = {
|
|
773
796
|
"{bdsInstanceId}": deleteBdsApiKeyRequest.bdsInstanceId,
|
|
774
797
|
"{apiKeyId}": deleteBdsApiKeyRequest.apiKeyId
|
|
@@ -793,7 +816,7 @@ class BdsClient {
|
|
|
793
816
|
queryParams: queryParams
|
|
794
817
|
});
|
|
795
818
|
try {
|
|
796
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
819
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
797
820
|
const sdkResponse = oci_common_2.composeResponse({
|
|
798
821
|
responseObject: {},
|
|
799
822
|
responseHeaders: [
|
|
@@ -822,12 +845,14 @@ class BdsClient {
|
|
|
822
845
|
* @param DeleteBdsInstanceRequest
|
|
823
846
|
* @return DeleteBdsInstanceResponse
|
|
824
847
|
* @throws OciError when an error occurs
|
|
825
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
848
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
826
849
|
*/
|
|
827
850
|
deleteBdsInstance(deleteBdsInstanceRequest) {
|
|
828
851
|
return __awaiter(this, void 0, void 0, function* () {
|
|
829
852
|
if (this.logger)
|
|
830
853
|
this.logger.debug("Calling operation BdsClient#deleteBdsInstance.");
|
|
854
|
+
const operationName = "deleteBdsInstance";
|
|
855
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/DeleteBdsInstance";
|
|
831
856
|
const pathParams = {
|
|
832
857
|
"{bdsInstanceId}": deleteBdsInstanceRequest.bdsInstanceId
|
|
833
858
|
};
|
|
@@ -851,7 +876,7 @@ class BdsClient {
|
|
|
851
876
|
queryParams: queryParams
|
|
852
877
|
});
|
|
853
878
|
try {
|
|
854
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
879
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
855
880
|
const sdkResponse = oci_common_2.composeResponse({
|
|
856
881
|
responseObject: {},
|
|
857
882
|
responseHeaders: [
|
|
@@ -880,12 +905,14 @@ class BdsClient {
|
|
|
880
905
|
* @param DeleteBdsMetastoreConfigurationRequest
|
|
881
906
|
* @return DeleteBdsMetastoreConfigurationResponse
|
|
882
907
|
* @throws OciError when an error occurs
|
|
883
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
908
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
|
|
884
909
|
*/
|
|
885
910
|
deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest) {
|
|
886
911
|
return __awaiter(this, void 0, void 0, function* () {
|
|
887
912
|
if (this.logger)
|
|
888
913
|
this.logger.debug("Calling operation BdsClient#deleteBdsMetastoreConfiguration.");
|
|
914
|
+
const operationName = "deleteBdsMetastoreConfiguration";
|
|
915
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/DeleteBdsMetastoreConfiguration";
|
|
889
916
|
const pathParams = {
|
|
890
917
|
"{bdsInstanceId}": deleteBdsMetastoreConfigurationRequest.bdsInstanceId,
|
|
891
918
|
"{metastoreConfigId}": deleteBdsMetastoreConfigurationRequest.metastoreConfigId
|
|
@@ -910,7 +937,7 @@ class BdsClient {
|
|
|
910
937
|
queryParams: queryParams
|
|
911
938
|
});
|
|
912
939
|
try {
|
|
913
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
940
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
914
941
|
const sdkResponse = oci_common_2.composeResponse({
|
|
915
942
|
responseObject: {},
|
|
916
943
|
responseHeaders: [
|
|
@@ -940,12 +967,14 @@ class BdsClient {
|
|
|
940
967
|
* @param GetAutoScalingConfigurationRequest
|
|
941
968
|
* @return GetAutoScalingConfigurationResponse
|
|
942
969
|
* @throws OciError when an error occurs
|
|
943
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
970
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
944
971
|
*/
|
|
945
972
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest) {
|
|
946
973
|
return __awaiter(this, void 0, void 0, function* () {
|
|
947
974
|
if (this.logger)
|
|
948
975
|
this.logger.debug("Calling operation BdsClient#getAutoScalingConfiguration.");
|
|
976
|
+
const operationName = "getAutoScalingConfiguration";
|
|
977
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/GetAutoScalingConfiguration";
|
|
949
978
|
const pathParams = {
|
|
950
979
|
"{bdsInstanceId}": getAutoScalingConfigurationRequest.bdsInstanceId,
|
|
951
980
|
"{autoScalingConfigurationId}": getAutoScalingConfigurationRequest.autoScalingConfigurationId
|
|
@@ -969,7 +998,7 @@ class BdsClient {
|
|
|
969
998
|
queryParams: queryParams
|
|
970
999
|
});
|
|
971
1000
|
try {
|
|
972
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1001
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
973
1002
|
const sdkResponse = oci_common_2.composeResponse({
|
|
974
1003
|
responseObject: {},
|
|
975
1004
|
body: yield response.json(),
|
|
@@ -1002,12 +1031,14 @@ class BdsClient {
|
|
|
1002
1031
|
* @param GetBdsApiKeyRequest
|
|
1003
1032
|
* @return GetBdsApiKeyResponse
|
|
1004
1033
|
* @throws OciError when an error occurs
|
|
1005
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1034
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
|
|
1006
1035
|
*/
|
|
1007
1036
|
getBdsApiKey(getBdsApiKeyRequest) {
|
|
1008
1037
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1009
1038
|
if (this.logger)
|
|
1010
1039
|
this.logger.debug("Calling operation BdsClient#getBdsApiKey.");
|
|
1040
|
+
const operationName = "getBdsApiKey";
|
|
1041
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/GetBdsApiKey";
|
|
1011
1042
|
const pathParams = {
|
|
1012
1043
|
"{bdsInstanceId}": getBdsApiKeyRequest.bdsInstanceId,
|
|
1013
1044
|
"{apiKeyId}": getBdsApiKeyRequest.apiKeyId
|
|
@@ -1031,7 +1062,7 @@ class BdsClient {
|
|
|
1031
1062
|
queryParams: queryParams
|
|
1032
1063
|
});
|
|
1033
1064
|
try {
|
|
1034
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1065
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1035
1066
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1036
1067
|
responseObject: {},
|
|
1037
1068
|
body: yield response.json(),
|
|
@@ -1064,12 +1095,14 @@ class BdsClient {
|
|
|
1064
1095
|
* @param GetBdsInstanceRequest
|
|
1065
1096
|
* @return GetBdsInstanceResponse
|
|
1066
1097
|
* @throws OciError when an error occurs
|
|
1067
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1098
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
1068
1099
|
*/
|
|
1069
1100
|
getBdsInstance(getBdsInstanceRequest) {
|
|
1070
1101
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1071
1102
|
if (this.logger)
|
|
1072
1103
|
this.logger.debug("Calling operation BdsClient#getBdsInstance.");
|
|
1104
|
+
const operationName = "getBdsInstance";
|
|
1105
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/GetBdsInstance";
|
|
1073
1106
|
const pathParams = {
|
|
1074
1107
|
"{bdsInstanceId}": getBdsInstanceRequest.bdsInstanceId
|
|
1075
1108
|
};
|
|
@@ -1092,7 +1125,7 @@ class BdsClient {
|
|
|
1092
1125
|
queryParams: queryParams
|
|
1093
1126
|
});
|
|
1094
1127
|
try {
|
|
1095
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1128
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1096
1129
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1097
1130
|
responseObject: {},
|
|
1098
1131
|
body: yield response.json(),
|
|
@@ -1125,12 +1158,14 @@ class BdsClient {
|
|
|
1125
1158
|
* @param GetBdsMetastoreConfigurationRequest
|
|
1126
1159
|
* @return GetBdsMetastoreConfigurationResponse
|
|
1127
1160
|
* @throws OciError when an error occurs
|
|
1128
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
|
|
1129
1162
|
*/
|
|
1130
1163
|
getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest) {
|
|
1131
1164
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1132
1165
|
if (this.logger)
|
|
1133
1166
|
this.logger.debug("Calling operation BdsClient#getBdsMetastoreConfiguration.");
|
|
1167
|
+
const operationName = "getBdsMetastoreConfiguration";
|
|
1168
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/GetBdsMetastoreConfiguration";
|
|
1134
1169
|
const pathParams = {
|
|
1135
1170
|
"{bdsInstanceId}": getBdsMetastoreConfigurationRequest.bdsInstanceId,
|
|
1136
1171
|
"{metastoreConfigId}": getBdsMetastoreConfigurationRequest.metastoreConfigId
|
|
@@ -1154,7 +1189,7 @@ class BdsClient {
|
|
|
1154
1189
|
queryParams: queryParams
|
|
1155
1190
|
});
|
|
1156
1191
|
try {
|
|
1157
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1192
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1158
1193
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1159
1194
|
responseObject: {},
|
|
1160
1195
|
body: yield response.json(),
|
|
@@ -1187,12 +1222,14 @@ class BdsClient {
|
|
|
1187
1222
|
* @param GetWorkRequestRequest
|
|
1188
1223
|
* @return GetWorkRequestResponse
|
|
1189
1224
|
* @throws OciError when an error occurs
|
|
1190
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1225
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1191
1226
|
*/
|
|
1192
1227
|
getWorkRequest(getWorkRequestRequest) {
|
|
1193
1228
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1194
1229
|
if (this.logger)
|
|
1195
1230
|
this.logger.debug("Calling operation BdsClient#getWorkRequest.");
|
|
1231
|
+
const operationName = "getWorkRequest";
|
|
1232
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/WorkRequest/GetWorkRequest";
|
|
1196
1233
|
const pathParams = {
|
|
1197
1234
|
"{workRequestId}": getWorkRequestRequest.workRequestId
|
|
1198
1235
|
};
|
|
@@ -1215,7 +1252,7 @@ class BdsClient {
|
|
|
1215
1252
|
queryParams: queryParams
|
|
1216
1253
|
});
|
|
1217
1254
|
try {
|
|
1218
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1255
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1219
1256
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1220
1257
|
responseObject: {},
|
|
1221
1258
|
body: yield response.json(),
|
|
@@ -1249,12 +1286,14 @@ class BdsClient {
|
|
|
1249
1286
|
* @param InstallPatchRequest
|
|
1250
1287
|
* @return InstallPatchResponse
|
|
1251
1288
|
* @throws OciError when an error occurs
|
|
1252
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1289
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
|
|
1253
1290
|
*/
|
|
1254
1291
|
installPatch(installPatchRequest) {
|
|
1255
1292
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1256
1293
|
if (this.logger)
|
|
1257
1294
|
this.logger.debug("Calling operation BdsClient#installPatch.");
|
|
1295
|
+
const operationName = "installPatch";
|
|
1296
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/InstallPatch";
|
|
1258
1297
|
const pathParams = {
|
|
1259
1298
|
"{bdsInstanceId}": installPatchRequest.bdsInstanceId
|
|
1260
1299
|
};
|
|
@@ -1280,7 +1319,7 @@ class BdsClient {
|
|
|
1280
1319
|
queryParams: queryParams
|
|
1281
1320
|
});
|
|
1282
1321
|
try {
|
|
1283
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1322
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1284
1323
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1285
1324
|
responseObject: {},
|
|
1286
1325
|
responseHeaders: [
|
|
@@ -1310,12 +1349,14 @@ class BdsClient {
|
|
|
1310
1349
|
* @param ListAutoScalingConfigurationsRequest
|
|
1311
1350
|
* @return ListAutoScalingConfigurationsResponse
|
|
1312
1351
|
* @throws OciError when an error occurs
|
|
1313
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1352
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
1314
1353
|
*/
|
|
1315
1354
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest) {
|
|
1316
1355
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1317
1356
|
if (this.logger)
|
|
1318
1357
|
this.logger.debug("Calling operation BdsClient#listAutoScalingConfigurations.");
|
|
1358
|
+
const operationName = "listAutoScalingConfigurations";
|
|
1359
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ListAutoScalingConfigurations";
|
|
1319
1360
|
const pathParams = {
|
|
1320
1361
|
"{bdsInstanceId}": listAutoScalingConfigurationsRequest.bdsInstanceId
|
|
1321
1362
|
};
|
|
@@ -1346,7 +1387,7 @@ class BdsClient {
|
|
|
1346
1387
|
queryParams: queryParams
|
|
1347
1388
|
});
|
|
1348
1389
|
try {
|
|
1349
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1390
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1350
1391
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1351
1392
|
responseObject: {},
|
|
1352
1393
|
body: yield response.json(),
|
|
@@ -1420,12 +1461,14 @@ class BdsClient {
|
|
|
1420
1461
|
* @param ListBdsApiKeysRequest
|
|
1421
1462
|
* @return ListBdsApiKeysResponse
|
|
1422
1463
|
* @throws OciError when an error occurs
|
|
1423
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1464
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
|
|
1424
1465
|
*/
|
|
1425
1466
|
listBdsApiKeys(listBdsApiKeysRequest) {
|
|
1426
1467
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1427
1468
|
if (this.logger)
|
|
1428
1469
|
this.logger.debug("Calling operation BdsClient#listBdsApiKeys.");
|
|
1470
|
+
const operationName = "listBdsApiKeys";
|
|
1471
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/ListBdsApiKeys";
|
|
1429
1472
|
const pathParams = {
|
|
1430
1473
|
"{bdsInstanceId}": listBdsApiKeysRequest.bdsInstanceId
|
|
1431
1474
|
};
|
|
@@ -1456,7 +1499,7 @@ class BdsClient {
|
|
|
1456
1499
|
queryParams: queryParams
|
|
1457
1500
|
});
|
|
1458
1501
|
try {
|
|
1459
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1502
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1460
1503
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1461
1504
|
responseObject: {},
|
|
1462
1505
|
body: yield response.json(),
|
|
@@ -1530,12 +1573,14 @@ class BdsClient {
|
|
|
1530
1573
|
* @param ListBdsInstancesRequest
|
|
1531
1574
|
* @return ListBdsInstancesResponse
|
|
1532
1575
|
* @throws OciError when an error occurs
|
|
1533
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1576
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
1534
1577
|
*/
|
|
1535
1578
|
listBdsInstances(listBdsInstancesRequest) {
|
|
1536
1579
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1537
1580
|
if (this.logger)
|
|
1538
1581
|
this.logger.debug("Calling operation BdsClient#listBdsInstances.");
|
|
1582
|
+
const operationName = "listBdsInstances";
|
|
1583
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstanceSummary/ListBdsInstances";
|
|
1539
1584
|
const pathParams = {};
|
|
1540
1585
|
const queryParams = {
|
|
1541
1586
|
"compartmentId": listBdsInstancesRequest.compartmentId,
|
|
@@ -1564,7 +1609,7 @@ class BdsClient {
|
|
|
1564
1609
|
queryParams: queryParams
|
|
1565
1610
|
});
|
|
1566
1611
|
try {
|
|
1567
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1612
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1568
1613
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1569
1614
|
responseObject: {},
|
|
1570
1615
|
body: yield response.json(),
|
|
@@ -1638,12 +1683,14 @@ class BdsClient {
|
|
|
1638
1683
|
* @param ListBdsMetastoreConfigurationsRequest
|
|
1639
1684
|
* @return ListBdsMetastoreConfigurationsResponse
|
|
1640
1685
|
* @throws OciError when an error occurs
|
|
1641
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1686
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
|
|
1642
1687
|
*/
|
|
1643
1688
|
listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest) {
|
|
1644
1689
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1645
1690
|
if (this.logger)
|
|
1646
1691
|
this.logger.debug("Calling operation BdsClient#listBdsMetastoreConfigurations.");
|
|
1692
|
+
const operationName = "listBdsMetastoreConfigurations";
|
|
1693
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/ListBdsMetastoreConfigurations";
|
|
1647
1694
|
const pathParams = {
|
|
1648
1695
|
"{bdsInstanceId}": listBdsMetastoreConfigurationsRequest.bdsInstanceId
|
|
1649
1696
|
};
|
|
@@ -1676,7 +1723,7 @@ class BdsClient {
|
|
|
1676
1723
|
queryParams: queryParams
|
|
1677
1724
|
});
|
|
1678
1725
|
try {
|
|
1679
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1726
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1680
1727
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1681
1728
|
responseObject: {},
|
|
1682
1729
|
body: yield response.json(),
|
|
@@ -1750,12 +1797,14 @@ class BdsClient {
|
|
|
1750
1797
|
* @param ListPatchHistoriesRequest
|
|
1751
1798
|
* @return ListPatchHistoriesResponse
|
|
1752
1799
|
* @throws OciError when an error occurs
|
|
1753
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1800
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
|
|
1754
1801
|
*/
|
|
1755
1802
|
listPatchHistories(listPatchHistoriesRequest) {
|
|
1756
1803
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1757
1804
|
if (this.logger)
|
|
1758
1805
|
this.logger.debug("Calling operation BdsClient#listPatchHistories.");
|
|
1806
|
+
const operationName = "listPatchHistories";
|
|
1807
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ListPatchHistories";
|
|
1759
1808
|
const pathParams = {
|
|
1760
1809
|
"{bdsInstanceId}": listPatchHistoriesRequest.bdsInstanceId
|
|
1761
1810
|
};
|
|
@@ -1785,7 +1834,7 @@ class BdsClient {
|
|
|
1785
1834
|
queryParams: queryParams
|
|
1786
1835
|
});
|
|
1787
1836
|
try {
|
|
1788
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1837
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1789
1838
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1790
1839
|
responseObject: {},
|
|
1791
1840
|
body: yield response.json(),
|
|
@@ -1859,12 +1908,14 @@ class BdsClient {
|
|
|
1859
1908
|
* @param ListPatchesRequest
|
|
1860
1909
|
* @return ListPatchesResponse
|
|
1861
1910
|
* @throws OciError when an error occurs
|
|
1862
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1911
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
|
|
1863
1912
|
*/
|
|
1864
1913
|
listPatches(listPatchesRequest) {
|
|
1865
1914
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1866
1915
|
if (this.logger)
|
|
1867
1916
|
this.logger.debug("Calling operation BdsClient#listPatches.");
|
|
1917
|
+
const operationName = "listPatches";
|
|
1918
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ListPatches";
|
|
1868
1919
|
const pathParams = {
|
|
1869
1920
|
"{bdsInstanceId}": listPatchesRequest.bdsInstanceId
|
|
1870
1921
|
};
|
|
@@ -1890,7 +1941,7 @@ class BdsClient {
|
|
|
1890
1941
|
queryParams: queryParams
|
|
1891
1942
|
});
|
|
1892
1943
|
try {
|
|
1893
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
1944
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
1894
1945
|
const sdkResponse = oci_common_2.composeResponse({
|
|
1895
1946
|
responseObject: {},
|
|
1896
1947
|
body: yield response.json(),
|
|
@@ -1964,12 +2015,14 @@ class BdsClient {
|
|
|
1964
2015
|
* @param ListWorkRequestErrorsRequest
|
|
1965
2016
|
* @return ListWorkRequestErrorsResponse
|
|
1966
2017
|
* @throws OciError when an error occurs
|
|
1967
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2018
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1968
2019
|
*/
|
|
1969
2020
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1970
2021
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1971
2022
|
if (this.logger)
|
|
1972
2023
|
this.logger.debug("Calling operation BdsClient#listWorkRequestErrors.");
|
|
2024
|
+
const operationName = "listWorkRequestErrors";
|
|
2025
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/WorkRequestError/ListWorkRequestErrors";
|
|
1973
2026
|
const pathParams = {
|
|
1974
2027
|
"{workRequestId}": listWorkRequestErrorsRequest.workRequestId
|
|
1975
2028
|
};
|
|
@@ -1997,7 +2050,7 @@ class BdsClient {
|
|
|
1997
2050
|
queryParams: queryParams
|
|
1998
2051
|
});
|
|
1999
2052
|
try {
|
|
2000
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2053
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2001
2054
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2002
2055
|
responseObject: {},
|
|
2003
2056
|
body: yield response.json(),
|
|
@@ -2071,12 +2124,14 @@ class BdsClient {
|
|
|
2071
2124
|
* @param ListWorkRequestLogsRequest
|
|
2072
2125
|
* @return ListWorkRequestLogsResponse
|
|
2073
2126
|
* @throws OciError when an error occurs
|
|
2074
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2127
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2075
2128
|
*/
|
|
2076
2129
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2077
2130
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2078
2131
|
if (this.logger)
|
|
2079
2132
|
this.logger.debug("Calling operation BdsClient#listWorkRequestLogs.");
|
|
2133
|
+
const operationName = "listWorkRequestLogs";
|
|
2134
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/WorkRequestLogEntry/ListWorkRequestLogs";
|
|
2080
2135
|
const pathParams = {
|
|
2081
2136
|
"{workRequestId}": listWorkRequestLogsRequest.workRequestId
|
|
2082
2137
|
};
|
|
@@ -2104,7 +2159,7 @@ class BdsClient {
|
|
|
2104
2159
|
queryParams: queryParams
|
|
2105
2160
|
});
|
|
2106
2161
|
try {
|
|
2107
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2162
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2108
2163
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2109
2164
|
responseObject: {},
|
|
2110
2165
|
body: yield response.json(),
|
|
@@ -2178,12 +2233,14 @@ class BdsClient {
|
|
|
2178
2233
|
* @param ListWorkRequestsRequest
|
|
2179
2234
|
* @return ListWorkRequestsResponse
|
|
2180
2235
|
* @throws OciError when an error occurs
|
|
2181
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2236
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2182
2237
|
*/
|
|
2183
2238
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2184
2239
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2185
2240
|
if (this.logger)
|
|
2186
2241
|
this.logger.debug("Calling operation BdsClient#listWorkRequests.");
|
|
2242
|
+
const operationName = "listWorkRequests";
|
|
2243
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/WorkRequest/ListWorkRequests";
|
|
2187
2244
|
const pathParams = {};
|
|
2188
2245
|
const queryParams = {
|
|
2189
2246
|
"compartmentId": listWorkRequestsRequest.compartmentId,
|
|
@@ -2211,7 +2268,7 @@ class BdsClient {
|
|
|
2211
2268
|
queryParams: queryParams
|
|
2212
2269
|
});
|
|
2213
2270
|
try {
|
|
2214
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2271
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2215
2272
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2216
2273
|
responseObject: {},
|
|
2217
2274
|
body: yield response.json(),
|
|
@@ -2285,12 +2342,14 @@ class BdsClient {
|
|
|
2285
2342
|
* @param RemoveAutoScalingConfigurationRequest
|
|
2286
2343
|
* @return RemoveAutoScalingConfigurationResponse
|
|
2287
2344
|
* @throws OciError when an error occurs
|
|
2288
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2345
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
2289
2346
|
*/
|
|
2290
2347
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest) {
|
|
2291
2348
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2292
2349
|
if (this.logger)
|
|
2293
2350
|
this.logger.debug("Calling operation BdsClient#removeAutoScalingConfiguration.");
|
|
2351
|
+
const operationName = "removeAutoScalingConfiguration";
|
|
2352
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RemoveAutoScalingConfiguration";
|
|
2294
2353
|
const pathParams = {
|
|
2295
2354
|
"{bdsInstanceId}": removeAutoScalingConfigurationRequest.bdsInstanceId,
|
|
2296
2355
|
"{autoScalingConfigurationId}": removeAutoScalingConfigurationRequest.autoScalingConfigurationId
|
|
@@ -2317,7 +2376,7 @@ class BdsClient {
|
|
|
2317
2376
|
queryParams: queryParams
|
|
2318
2377
|
});
|
|
2319
2378
|
try {
|
|
2320
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2379
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2321
2380
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2322
2381
|
responseObject: {},
|
|
2323
2382
|
responseHeaders: [
|
|
@@ -2347,12 +2406,14 @@ class BdsClient {
|
|
|
2347
2406
|
* @param RemoveCloudSqlRequest
|
|
2348
2407
|
* @return RemoveCloudSqlResponse
|
|
2349
2408
|
* @throws OciError when an error occurs
|
|
2350
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2409
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
2351
2410
|
*/
|
|
2352
2411
|
removeCloudSql(removeCloudSqlRequest) {
|
|
2353
2412
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2354
2413
|
if (this.logger)
|
|
2355
2414
|
this.logger.debug("Calling operation BdsClient#removeCloudSql.");
|
|
2415
|
+
const operationName = "removeCloudSql";
|
|
2416
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RemoveCloudSql";
|
|
2356
2417
|
const pathParams = {
|
|
2357
2418
|
"{bdsInstanceId}": removeCloudSqlRequest.bdsInstanceId
|
|
2358
2419
|
};
|
|
@@ -2378,7 +2439,7 @@ class BdsClient {
|
|
|
2378
2439
|
queryParams: queryParams
|
|
2379
2440
|
});
|
|
2380
2441
|
try {
|
|
2381
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2442
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2382
2443
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2383
2444
|
responseObject: {},
|
|
2384
2445
|
responseHeaders: [
|
|
@@ -2408,12 +2469,14 @@ class BdsClient {
|
|
|
2408
2469
|
* @param RemoveNodeRequest
|
|
2409
2470
|
* @return RemoveNodeResponse
|
|
2410
2471
|
* @throws OciError when an error occurs
|
|
2411
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2472
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
|
|
2412
2473
|
*/
|
|
2413
2474
|
removeNode(removeNodeRequest) {
|
|
2414
2475
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2415
2476
|
if (this.logger)
|
|
2416
2477
|
this.logger.debug("Calling operation BdsClient#removeNode.");
|
|
2478
|
+
const operationName = "removeNode";
|
|
2479
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RemoveNode";
|
|
2417
2480
|
const pathParams = {
|
|
2418
2481
|
"{bdsInstanceId}": removeNodeRequest.bdsInstanceId
|
|
2419
2482
|
};
|
|
@@ -2438,7 +2501,7 @@ class BdsClient {
|
|
|
2438
2501
|
queryParams: queryParams
|
|
2439
2502
|
});
|
|
2440
2503
|
try {
|
|
2441
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2504
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2442
2505
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2443
2506
|
responseObject: {},
|
|
2444
2507
|
responseHeaders: [
|
|
@@ -2468,12 +2531,14 @@ class BdsClient {
|
|
|
2468
2531
|
* @param RestartNodeRequest
|
|
2469
2532
|
* @return RestartNodeResponse
|
|
2470
2533
|
* @throws OciError when an error occurs
|
|
2471
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2534
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
2472
2535
|
*/
|
|
2473
2536
|
restartNode(restartNodeRequest) {
|
|
2474
2537
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2475
2538
|
if (this.logger)
|
|
2476
2539
|
this.logger.debug("Calling operation BdsClient#restartNode.");
|
|
2540
|
+
const operationName = "restartNode";
|
|
2541
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RestartNode";
|
|
2477
2542
|
const pathParams = {
|
|
2478
2543
|
"{bdsInstanceId}": restartNodeRequest.bdsInstanceId
|
|
2479
2544
|
};
|
|
@@ -2499,7 +2564,7 @@ class BdsClient {
|
|
|
2499
2564
|
queryParams: queryParams
|
|
2500
2565
|
});
|
|
2501
2566
|
try {
|
|
2502
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2567
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2503
2568
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2504
2569
|
responseObject: {},
|
|
2505
2570
|
responseHeaders: [
|
|
@@ -2529,12 +2594,14 @@ class BdsClient {
|
|
|
2529
2594
|
* @param TestBdsMetastoreConfigurationRequest
|
|
2530
2595
|
* @return TestBdsMetastoreConfigurationResponse
|
|
2531
2596
|
* @throws OciError when an error occurs
|
|
2532
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2597
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
|
|
2533
2598
|
*/
|
|
2534
2599
|
testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest) {
|
|
2535
2600
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2536
2601
|
if (this.logger)
|
|
2537
2602
|
this.logger.debug("Calling operation BdsClient#testBdsMetastoreConfiguration.");
|
|
2603
|
+
const operationName = "testBdsMetastoreConfiguration";
|
|
2604
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/TestBdsMetastoreConfiguration";
|
|
2538
2605
|
const pathParams = {
|
|
2539
2606
|
"{bdsInstanceId}": testBdsMetastoreConfigurationRequest.bdsInstanceId,
|
|
2540
2607
|
"{metastoreConfigId}": testBdsMetastoreConfigurationRequest.metastoreConfigId
|
|
@@ -2560,7 +2627,7 @@ class BdsClient {
|
|
|
2560
2627
|
queryParams: queryParams
|
|
2561
2628
|
});
|
|
2562
2629
|
try {
|
|
2563
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2630
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2564
2631
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2565
2632
|
responseObject: {},
|
|
2566
2633
|
responseHeaders: [
|
|
@@ -2589,12 +2656,14 @@ class BdsClient {
|
|
|
2589
2656
|
* @param TestBdsObjectStorageConnectionRequest
|
|
2590
2657
|
* @return TestBdsObjectStorageConnectionResponse
|
|
2591
2658
|
* @throws OciError when an error occurs
|
|
2592
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2659
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
|
|
2593
2660
|
*/
|
|
2594
2661
|
testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest) {
|
|
2595
2662
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2596
2663
|
if (this.logger)
|
|
2597
2664
|
this.logger.debug("Calling operation BdsClient#testBdsObjectStorageConnection.");
|
|
2665
|
+
const operationName = "testBdsObjectStorageConnection";
|
|
2666
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/TestBdsObjectStorageConnection";
|
|
2598
2667
|
const pathParams = {
|
|
2599
2668
|
"{bdsInstanceId}": testBdsObjectStorageConnectionRequest.bdsInstanceId,
|
|
2600
2669
|
"{apiKeyId}": testBdsObjectStorageConnectionRequest.apiKeyId
|
|
@@ -2619,7 +2688,7 @@ class BdsClient {
|
|
|
2619
2688
|
queryParams: queryParams
|
|
2620
2689
|
});
|
|
2621
2690
|
try {
|
|
2622
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2691
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2623
2692
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2624
2693
|
responseObject: {},
|
|
2625
2694
|
responseHeaders: [
|
|
@@ -2649,12 +2718,14 @@ class BdsClient {
|
|
|
2649
2718
|
* @param UpdateAutoScalingConfigurationRequest
|
|
2650
2719
|
* @return UpdateAutoScalingConfigurationResponse
|
|
2651
2720
|
* @throws OciError when an error occurs
|
|
2652
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2721
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
2653
2722
|
*/
|
|
2654
2723
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest) {
|
|
2655
2724
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2656
2725
|
if (this.logger)
|
|
2657
2726
|
this.logger.debug("Calling operation BdsClient#updateAutoScalingConfiguration.");
|
|
2727
|
+
const operationName = "updateAutoScalingConfiguration";
|
|
2728
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/UpdateAutoScalingConfiguration";
|
|
2658
2729
|
const pathParams = {
|
|
2659
2730
|
"{bdsInstanceId}": updateAutoScalingConfigurationRequest.bdsInstanceId,
|
|
2660
2731
|
"{autoScalingConfigurationId}": updateAutoScalingConfigurationRequest.autoScalingConfigurationId
|
|
@@ -2681,7 +2752,7 @@ class BdsClient {
|
|
|
2681
2752
|
queryParams: queryParams
|
|
2682
2753
|
});
|
|
2683
2754
|
try {
|
|
2684
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2755
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2685
2756
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2686
2757
|
responseObject: {},
|
|
2687
2758
|
responseHeaders: [
|
|
@@ -2710,12 +2781,14 @@ class BdsClient {
|
|
|
2710
2781
|
* @param UpdateBdsInstanceRequest
|
|
2711
2782
|
* @return UpdateBdsInstanceResponse
|
|
2712
2783
|
* @throws OciError when an error occurs
|
|
2713
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2784
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
2714
2785
|
*/
|
|
2715
2786
|
updateBdsInstance(updateBdsInstanceRequest) {
|
|
2716
2787
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2717
2788
|
if (this.logger)
|
|
2718
2789
|
this.logger.debug("Calling operation BdsClient#updateBdsInstance.");
|
|
2790
|
+
const operationName = "updateBdsInstance";
|
|
2791
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/UpdateBdsInstance";
|
|
2719
2792
|
const pathParams = {
|
|
2720
2793
|
"{bdsInstanceId}": updateBdsInstanceRequest.bdsInstanceId
|
|
2721
2794
|
};
|
|
@@ -2740,7 +2813,7 @@ class BdsClient {
|
|
|
2740
2813
|
queryParams: queryParams
|
|
2741
2814
|
});
|
|
2742
2815
|
try {
|
|
2743
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2816
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2744
2817
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2745
2818
|
responseObject: {},
|
|
2746
2819
|
responseHeaders: [
|
|
@@ -2769,12 +2842,14 @@ class BdsClient {
|
|
|
2769
2842
|
* @param UpdateBdsMetastoreConfigurationRequest
|
|
2770
2843
|
* @return UpdateBdsMetastoreConfigurationResponse
|
|
2771
2844
|
* @throws OciError when an error occurs
|
|
2772
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2845
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
|
|
2773
2846
|
*/
|
|
2774
2847
|
updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest) {
|
|
2775
2848
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2776
2849
|
if (this.logger)
|
|
2777
2850
|
this.logger.debug("Calling operation BdsClient#updateBdsMetastoreConfiguration.");
|
|
2851
|
+
const operationName = "updateBdsMetastoreConfiguration";
|
|
2852
|
+
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/UpdateBdsMetastoreConfiguration";
|
|
2778
2853
|
const pathParams = {
|
|
2779
2854
|
"{bdsInstanceId}": updateBdsMetastoreConfigurationRequest.bdsInstanceId,
|
|
2780
2855
|
"{metastoreConfigId}": updateBdsMetastoreConfigurationRequest.metastoreConfigId
|
|
@@ -2800,7 +2875,7 @@ class BdsClient {
|
|
|
2800
2875
|
queryParams: queryParams
|
|
2801
2876
|
});
|
|
2802
2877
|
try {
|
|
2803
|
-
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
2878
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
|
|
2804
2879
|
const sdkResponse = oci_common_2.composeResponse({
|
|
2805
2880
|
responseObject: {},
|
|
2806
2881
|
responseHeaders: [
|