oci-bds 2.78.0 → 2.79.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 +51 -52
- package/lib/client.js +104 -262
- package/lib/client.js.map +1 -1
- package/lib/model/add-auto-scale-policy-details.js +2 -4
- package/lib/model/add-auto-scale-policy-details.js.map +1 -1
- package/lib/model/auto-scale-policy-details.js +2 -4
- package/lib/model/auto-scale-policy-details.js.map +1 -1
- package/lib/model/horizontal-scaling-schedule-details.js +2 -4
- package/lib/model/horizontal-scaling-schedule-details.js.map +1 -1
- package/lib/model/update-auto-scale-policy-details.js +2 -4
- package/lib/model/update-auto-scale-policy-details.js.map +1 -1
- package/lib/model/vertical-scaling-schedule-details.js +2 -4
- package/lib/model/vertical-scaling-schedule-details.js.map +1 -1
- package/lib/request/activate-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/add-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/add-block-storage-request.d.ts +1 -1
- package/lib/request/add-cloud-sql-request.d.ts +1 -1
- package/lib/request/add-kafka-request.d.ts +1 -1
- package/lib/request/add-master-nodes-request.d.ts +1 -1
- package/lib/request/add-utility-nodes-request.d.ts +1 -1
- package/lib/request/add-worker-nodes-request.d.ts +1 -1
- package/lib/request/certificate-service-info-request.d.ts +1 -1
- package/lib/request/change-bds-instance-compartment-request.d.ts +1 -1
- package/lib/request/change-shape-request.d.ts +1 -1
- package/lib/request/create-bds-api-key-request.d.ts +1 -1
- package/lib/request/create-bds-instance-request.d.ts +1 -1
- package/lib/request/create-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/delete-bds-api-key-request.d.ts +1 -1
- package/lib/request/delete-bds-instance-request.d.ts +1 -1
- package/lib/request/delete-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/disable-certificate-request.d.ts +1 -1
- package/lib/request/enable-certificate-request.d.ts +1 -1
- package/lib/request/execute-bootstrap-script-request.d.ts +1 -1
- package/lib/request/get-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/get-bds-api-key-request.d.ts +1 -1
- package/lib/request/get-bds-instance-request.d.ts +1 -1
- package/lib/request/get-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/get-os-patch-details-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/install-os-patch-request.d.ts +1 -1
- package/lib/request/install-patch-request.d.ts +1 -1
- package/lib/request/list-auto-scaling-configurations-request.d.ts +1 -1
- package/lib/request/list-bds-api-keys-request.d.ts +1 -1
- package/lib/request/list-bds-instances-request.d.ts +1 -1
- package/lib/request/list-bds-metastore-configurations-request.d.ts +1 -1
- package/lib/request/list-os-patches-request.d.ts +1 -1
- package/lib/request/list-patch-histories-request.d.ts +1 -1
- package/lib/request/list-patches-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/remove-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/remove-cloud-sql-request.d.ts +1 -1
- package/lib/request/remove-kafka-request.d.ts +1 -1
- package/lib/request/remove-node-request.d.ts +1 -1
- package/lib/request/renew-certificate-request.d.ts +1 -1
- package/lib/request/restart-node-request.d.ts +1 -1
- package/lib/request/start-bds-instance-request.d.ts +1 -1
- package/lib/request/stop-bds-instance-request.d.ts +1 -1
- package/lib/request/test-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/test-bds-object-storage-connection-request.d.ts +1 -1
- package/lib/request/update-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/update-bds-instance-request.d.ts +1 -1
- package/lib/request/update-bds-metastore-configuration-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -118,11 +118,7 @@ class BdsClient {
|
|
|
118
118
|
set endpoint(endpoint) {
|
|
119
119
|
this._endpoint = endpoint;
|
|
120
120
|
this._endpoint = this._endpoint + "/20190531";
|
|
121
|
-
|
|
122
|
-
this.logger.info(`BdsClient endpoint set to ${this._endpoint}`);
|
|
123
|
-
}
|
|
124
|
-
get logger() {
|
|
125
|
-
return common.LOG.logger;
|
|
121
|
+
oci_common_2.logger.info(`BdsClient endpoint set to ${this._endpoint}`);
|
|
126
122
|
}
|
|
127
123
|
/**
|
|
128
124
|
* Determines whether realm specific endpoint should be used or not.
|
|
@@ -131,8 +127,7 @@ class BdsClient {
|
|
|
131
127
|
*/
|
|
132
128
|
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled) {
|
|
133
129
|
this._realmSpecificEndpointTemplateEnabled = realmSpecificEndpointTemplateEnabled;
|
|
134
|
-
|
|
135
|
-
this.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
|
|
130
|
+
oci_common_2.logger.info(`realmSpecificEndpointTemplateEnabled set to ${this._realmSpecificEndpointTemplateEnabled}`);
|
|
136
131
|
if (this._lastSetRegionOrRegionId === common.Region.REGION_STRING) {
|
|
137
132
|
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(BdsClient.serviceEndpointTemplate, this._region, BdsClient.endpointServiceName);
|
|
138
133
|
}
|
|
@@ -199,12 +194,11 @@ class BdsClient {
|
|
|
199
194
|
* @param ActivateBdsMetastoreConfigurationRequest
|
|
200
195
|
* @return ActivateBdsMetastoreConfigurationResponse
|
|
201
196
|
* @throws OciError when an error occurs
|
|
202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
197
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
|
|
203
198
|
*/
|
|
204
199
|
activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest) {
|
|
205
200
|
return __awaiter(this, void 0, void 0, function* () {
|
|
206
|
-
|
|
207
|
-
this.logger.debug("Calling operation BdsClient#activateBdsMetastoreConfiguration.");
|
|
201
|
+
oci_common_2.logger.debug("Calling operation BdsClient#activateBdsMetastoreConfiguration.");
|
|
208
202
|
const operationName = "activateBdsMetastoreConfiguration";
|
|
209
203
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/ActivateBdsMetastoreConfiguration";
|
|
210
204
|
const pathParams = {
|
|
@@ -220,8 +214,6 @@ class BdsClient {
|
|
|
220
214
|
};
|
|
221
215
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
222
216
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, activateBdsMetastoreConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
223
|
-
if (this.logger)
|
|
224
|
-
retrier.logger = this.logger;
|
|
225
217
|
const request = yield oci_common_2.composeRequest({
|
|
226
218
|
baseEndpoint: this._endpoint,
|
|
227
219
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -263,12 +255,11 @@ class BdsClient {
|
|
|
263
255
|
* @param AddAutoScalingConfigurationRequest
|
|
264
256
|
* @return AddAutoScalingConfigurationResponse
|
|
265
257
|
* @throws OciError when an error occurs
|
|
266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
258
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
267
259
|
*/
|
|
268
260
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest) {
|
|
269
261
|
return __awaiter(this, void 0, void 0, function* () {
|
|
270
|
-
|
|
271
|
-
this.logger.debug("Calling operation BdsClient#addAutoScalingConfiguration.");
|
|
262
|
+
oci_common_2.logger.debug("Calling operation BdsClient#addAutoScalingConfiguration.");
|
|
272
263
|
const operationName = "addAutoScalingConfiguration";
|
|
273
264
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddAutoScalingConfiguration";
|
|
274
265
|
const pathParams = {
|
|
@@ -283,8 +274,6 @@ class BdsClient {
|
|
|
283
274
|
};
|
|
284
275
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
285
276
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addAutoScalingConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
286
|
-
if (this.logger)
|
|
287
|
-
retrier.logger = this.logger;
|
|
288
277
|
const request = yield oci_common_2.composeRequest({
|
|
289
278
|
baseEndpoint: this._endpoint,
|
|
290
279
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -326,12 +315,11 @@ class BdsClient {
|
|
|
326
315
|
* @param AddBlockStorageRequest
|
|
327
316
|
* @return AddBlockStorageResponse
|
|
328
317
|
* @throws OciError when an error occurs
|
|
329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
318
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
330
319
|
*/
|
|
331
320
|
addBlockStorage(addBlockStorageRequest) {
|
|
332
321
|
return __awaiter(this, void 0, void 0, function* () {
|
|
333
|
-
|
|
334
|
-
this.logger.debug("Calling operation BdsClient#addBlockStorage.");
|
|
322
|
+
oci_common_2.logger.debug("Calling operation BdsClient#addBlockStorage.");
|
|
335
323
|
const operationName = "addBlockStorage";
|
|
336
324
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddBlockStorage";
|
|
337
325
|
const pathParams = {
|
|
@@ -346,8 +334,6 @@ class BdsClient {
|
|
|
346
334
|
};
|
|
347
335
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
348
336
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addBlockStorageRequest.retryConfiguration, specRetryConfiguration);
|
|
349
|
-
if (this.logger)
|
|
350
|
-
retrier.logger = this.logger;
|
|
351
337
|
const request = yield oci_common_2.composeRequest({
|
|
352
338
|
baseEndpoint: this._endpoint,
|
|
353
339
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -389,12 +375,11 @@ class BdsClient {
|
|
|
389
375
|
* @param AddCloudSqlRequest
|
|
390
376
|
* @return AddCloudSqlResponse
|
|
391
377
|
* @throws OciError when an error occurs
|
|
392
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
378
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
393
379
|
*/
|
|
394
380
|
addCloudSql(addCloudSqlRequest) {
|
|
395
381
|
return __awaiter(this, void 0, void 0, function* () {
|
|
396
|
-
|
|
397
|
-
this.logger.debug("Calling operation BdsClient#addCloudSql.");
|
|
382
|
+
oci_common_2.logger.debug("Calling operation BdsClient#addCloudSql.");
|
|
398
383
|
const operationName = "addCloudSql";
|
|
399
384
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddCloudSql";
|
|
400
385
|
const pathParams = {
|
|
@@ -409,8 +394,6 @@ class BdsClient {
|
|
|
409
394
|
};
|
|
410
395
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
411
396
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addCloudSqlRequest.retryConfiguration, specRetryConfiguration);
|
|
412
|
-
if (this.logger)
|
|
413
|
-
retrier.logger = this.logger;
|
|
414
397
|
const request = yield oci_common_2.composeRequest({
|
|
415
398
|
baseEndpoint: this._endpoint,
|
|
416
399
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -452,12 +435,11 @@ class BdsClient {
|
|
|
452
435
|
* @param AddKafkaRequest
|
|
453
436
|
* @return AddKafkaResponse
|
|
454
437
|
* @throws OciError when an error occurs
|
|
455
|
-
* @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.79.1/bds/AddKafka.ts.html |here} to see how to use AddKafka API.
|
|
456
439
|
*/
|
|
457
440
|
addKafka(addKafkaRequest) {
|
|
458
441
|
return __awaiter(this, void 0, void 0, function* () {
|
|
459
|
-
|
|
460
|
-
this.logger.debug("Calling operation BdsClient#addKafka.");
|
|
442
|
+
oci_common_2.logger.debug("Calling operation BdsClient#addKafka.");
|
|
461
443
|
const operationName = "addKafka";
|
|
462
444
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddKafka";
|
|
463
445
|
const pathParams = {
|
|
@@ -472,8 +454,6 @@ class BdsClient {
|
|
|
472
454
|
};
|
|
473
455
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
474
456
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addKafkaRequest.retryConfiguration, specRetryConfiguration);
|
|
475
|
-
if (this.logger)
|
|
476
|
-
retrier.logger = this.logger;
|
|
477
457
|
const request = yield oci_common_2.composeRequest({
|
|
478
458
|
baseEndpoint: this._endpoint,
|
|
479
459
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -515,12 +495,11 @@ class BdsClient {
|
|
|
515
495
|
* @param AddMasterNodesRequest
|
|
516
496
|
* @return AddMasterNodesResponse
|
|
517
497
|
* @throws OciError when an error occurs
|
|
518
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
498
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/AddMasterNodes.ts.html |here} to see how to use AddMasterNodes API.
|
|
519
499
|
*/
|
|
520
500
|
addMasterNodes(addMasterNodesRequest) {
|
|
521
501
|
return __awaiter(this, void 0, void 0, function* () {
|
|
522
|
-
|
|
523
|
-
this.logger.debug("Calling operation BdsClient#addMasterNodes.");
|
|
502
|
+
oci_common_2.logger.debug("Calling operation BdsClient#addMasterNodes.");
|
|
524
503
|
const operationName = "addMasterNodes";
|
|
525
504
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddMasterNodes";
|
|
526
505
|
const pathParams = {
|
|
@@ -535,8 +514,6 @@ class BdsClient {
|
|
|
535
514
|
};
|
|
536
515
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
537
516
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addMasterNodesRequest.retryConfiguration, specRetryConfiguration);
|
|
538
|
-
if (this.logger)
|
|
539
|
-
retrier.logger = this.logger;
|
|
540
517
|
const request = yield oci_common_2.composeRequest({
|
|
541
518
|
baseEndpoint: this._endpoint,
|
|
542
519
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -578,12 +555,11 @@ class BdsClient {
|
|
|
578
555
|
* @param AddUtilityNodesRequest
|
|
579
556
|
* @return AddUtilityNodesResponse
|
|
580
557
|
* @throws OciError when an error occurs
|
|
581
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
558
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/AddUtilityNodes.ts.html |here} to see how to use AddUtilityNodes API.
|
|
582
559
|
*/
|
|
583
560
|
addUtilityNodes(addUtilityNodesRequest) {
|
|
584
561
|
return __awaiter(this, void 0, void 0, function* () {
|
|
585
|
-
|
|
586
|
-
this.logger.debug("Calling operation BdsClient#addUtilityNodes.");
|
|
562
|
+
oci_common_2.logger.debug("Calling operation BdsClient#addUtilityNodes.");
|
|
587
563
|
const operationName = "addUtilityNodes";
|
|
588
564
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddUtilityNodes";
|
|
589
565
|
const pathParams = {
|
|
@@ -598,8 +574,6 @@ class BdsClient {
|
|
|
598
574
|
};
|
|
599
575
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
600
576
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addUtilityNodesRequest.retryConfiguration, specRetryConfiguration);
|
|
601
|
-
if (this.logger)
|
|
602
|
-
retrier.logger = this.logger;
|
|
603
577
|
const request = yield oci_common_2.composeRequest({
|
|
604
578
|
baseEndpoint: this._endpoint,
|
|
605
579
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -641,12 +615,11 @@ class BdsClient {
|
|
|
641
615
|
* @param AddWorkerNodesRequest
|
|
642
616
|
* @return AddWorkerNodesResponse
|
|
643
617
|
* @throws OciError when an error occurs
|
|
644
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
618
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
645
619
|
*/
|
|
646
620
|
addWorkerNodes(addWorkerNodesRequest) {
|
|
647
621
|
return __awaiter(this, void 0, void 0, function* () {
|
|
648
|
-
|
|
649
|
-
this.logger.debug("Calling operation BdsClient#addWorkerNodes.");
|
|
622
|
+
oci_common_2.logger.debug("Calling operation BdsClient#addWorkerNodes.");
|
|
650
623
|
const operationName = "addWorkerNodes";
|
|
651
624
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/AddWorkerNodes";
|
|
652
625
|
const pathParams = {
|
|
@@ -661,8 +634,6 @@ class BdsClient {
|
|
|
661
634
|
};
|
|
662
635
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
663
636
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, addWorkerNodesRequest.retryConfiguration, specRetryConfiguration);
|
|
664
|
-
if (this.logger)
|
|
665
|
-
retrier.logger = this.logger;
|
|
666
637
|
const request = yield oci_common_2.composeRequest({
|
|
667
638
|
baseEndpoint: this._endpoint,
|
|
668
639
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -704,12 +675,11 @@ class BdsClient {
|
|
|
704
675
|
* @param CertificateServiceInfoRequest
|
|
705
676
|
* @return CertificateServiceInfoResponse
|
|
706
677
|
* @throws OciError when an error occurs
|
|
707
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
678
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/CertificateServiceInfo.ts.html |here} to see how to use CertificateServiceInfo API.
|
|
708
679
|
*/
|
|
709
680
|
certificateServiceInfo(certificateServiceInfoRequest) {
|
|
710
681
|
return __awaiter(this, void 0, void 0, function* () {
|
|
711
|
-
|
|
712
|
-
this.logger.debug("Calling operation BdsClient#certificateServiceInfo.");
|
|
682
|
+
oci_common_2.logger.debug("Calling operation BdsClient#certificateServiceInfo.");
|
|
713
683
|
const operationName = "certificateServiceInfo";
|
|
714
684
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/CertificateServiceInfo";
|
|
715
685
|
const pathParams = {
|
|
@@ -724,8 +694,6 @@ class BdsClient {
|
|
|
724
694
|
};
|
|
725
695
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
726
696
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, certificateServiceInfoRequest.retryConfiguration, specRetryConfiguration);
|
|
727
|
-
if (this.logger)
|
|
728
|
-
retrier.logger = this.logger;
|
|
729
697
|
const request = yield oci_common_2.composeRequest({
|
|
730
698
|
baseEndpoint: this._endpoint,
|
|
731
699
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -771,12 +739,11 @@ class BdsClient {
|
|
|
771
739
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
772
740
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
773
741
|
* @throws OciError when an error occurs
|
|
774
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
742
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
775
743
|
*/
|
|
776
744
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest) {
|
|
777
745
|
return __awaiter(this, void 0, void 0, function* () {
|
|
778
|
-
|
|
779
|
-
this.logger.debug("Calling operation BdsClient#changeBdsInstanceCompartment.");
|
|
746
|
+
oci_common_2.logger.debug("Calling operation BdsClient#changeBdsInstanceCompartment.");
|
|
780
747
|
const operationName = "changeBdsInstanceCompartment";
|
|
781
748
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ChangeBdsInstanceCompartment";
|
|
782
749
|
const pathParams = {
|
|
@@ -791,8 +758,6 @@ class BdsClient {
|
|
|
791
758
|
};
|
|
792
759
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
793
760
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeBdsInstanceCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
794
|
-
if (this.logger)
|
|
795
|
-
retrier.logger = this.logger;
|
|
796
761
|
const request = yield oci_common_2.composeRequest({
|
|
797
762
|
baseEndpoint: this._endpoint,
|
|
798
763
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -834,12 +799,11 @@ class BdsClient {
|
|
|
834
799
|
* @param ChangeShapeRequest
|
|
835
800
|
* @return ChangeShapeResponse
|
|
836
801
|
* @throws OciError when an error occurs
|
|
837
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
802
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
838
803
|
*/
|
|
839
804
|
changeShape(changeShapeRequest) {
|
|
840
805
|
return __awaiter(this, void 0, void 0, function* () {
|
|
841
|
-
|
|
842
|
-
this.logger.debug("Calling operation BdsClient#changeShape.");
|
|
806
|
+
oci_common_2.logger.debug("Calling operation BdsClient#changeShape.");
|
|
843
807
|
const operationName = "changeShape";
|
|
844
808
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ChangeShape";
|
|
845
809
|
const pathParams = {
|
|
@@ -854,8 +818,6 @@ class BdsClient {
|
|
|
854
818
|
};
|
|
855
819
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
856
820
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeShapeRequest.retryConfiguration, specRetryConfiguration);
|
|
857
|
-
if (this.logger)
|
|
858
|
-
retrier.logger = this.logger;
|
|
859
821
|
const request = yield oci_common_2.composeRequest({
|
|
860
822
|
baseEndpoint: this._endpoint,
|
|
861
823
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -897,12 +859,11 @@ class BdsClient {
|
|
|
897
859
|
* @param CreateBdsApiKeyRequest
|
|
898
860
|
* @return CreateBdsApiKeyResponse
|
|
899
861
|
* @throws OciError when an error occurs
|
|
900
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
862
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
|
|
901
863
|
*/
|
|
902
864
|
createBdsApiKey(createBdsApiKeyRequest) {
|
|
903
865
|
return __awaiter(this, void 0, void 0, function* () {
|
|
904
|
-
|
|
905
|
-
this.logger.debug("Calling operation BdsClient#createBdsApiKey.");
|
|
866
|
+
oci_common_2.logger.debug("Calling operation BdsClient#createBdsApiKey.");
|
|
906
867
|
const operationName = "createBdsApiKey";
|
|
907
868
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/CreateBdsApiKey";
|
|
908
869
|
const pathParams = {
|
|
@@ -916,8 +877,6 @@ class BdsClient {
|
|
|
916
877
|
};
|
|
917
878
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
918
879
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBdsApiKeyRequest.retryConfiguration, specRetryConfiguration);
|
|
919
|
-
if (this.logger)
|
|
920
|
-
retrier.logger = this.logger;
|
|
921
880
|
const request = yield oci_common_2.composeRequest({
|
|
922
881
|
baseEndpoint: this._endpoint,
|
|
923
882
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -959,12 +918,11 @@ class BdsClient {
|
|
|
959
918
|
* @param CreateBdsInstanceRequest
|
|
960
919
|
* @return CreateBdsInstanceResponse
|
|
961
920
|
* @throws OciError when an error occurs
|
|
962
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
921
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
963
922
|
*/
|
|
964
923
|
createBdsInstance(createBdsInstanceRequest) {
|
|
965
924
|
return __awaiter(this, void 0, void 0, function* () {
|
|
966
|
-
|
|
967
|
-
this.logger.debug("Calling operation BdsClient#createBdsInstance.");
|
|
925
|
+
oci_common_2.logger.debug("Calling operation BdsClient#createBdsInstance.");
|
|
968
926
|
const operationName = "createBdsInstance";
|
|
969
927
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/CreateBdsInstance";
|
|
970
928
|
const pathParams = {};
|
|
@@ -976,8 +934,6 @@ class BdsClient {
|
|
|
976
934
|
};
|
|
977
935
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
978
936
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBdsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
979
|
-
if (this.logger)
|
|
980
|
-
retrier.logger = this.logger;
|
|
981
937
|
const request = yield oci_common_2.composeRequest({
|
|
982
938
|
baseEndpoint: this._endpoint,
|
|
983
939
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1019,12 +975,11 @@ class BdsClient {
|
|
|
1019
975
|
* @param CreateBdsMetastoreConfigurationRequest
|
|
1020
976
|
* @return CreateBdsMetastoreConfigurationResponse
|
|
1021
977
|
* @throws OciError when an error occurs
|
|
1022
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
978
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
|
|
1023
979
|
*/
|
|
1024
980
|
createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest) {
|
|
1025
981
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1026
|
-
|
|
1027
|
-
this.logger.debug("Calling operation BdsClient#createBdsMetastoreConfiguration.");
|
|
982
|
+
oci_common_2.logger.debug("Calling operation BdsClient#createBdsMetastoreConfiguration.");
|
|
1028
983
|
const operationName = "createBdsMetastoreConfiguration";
|
|
1029
984
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/CreateBdsMetastoreConfiguration";
|
|
1030
985
|
const pathParams = {
|
|
@@ -1038,8 +993,6 @@ class BdsClient {
|
|
|
1038
993
|
};
|
|
1039
994
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1040
995
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createBdsMetastoreConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
1041
|
-
if (this.logger)
|
|
1042
|
-
retrier.logger = this.logger;
|
|
1043
996
|
const request = yield oci_common_2.composeRequest({
|
|
1044
997
|
baseEndpoint: this._endpoint,
|
|
1045
998
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1080,12 +1033,11 @@ class BdsClient {
|
|
|
1080
1033
|
* @param DeleteBdsApiKeyRequest
|
|
1081
1034
|
* @return DeleteBdsApiKeyResponse
|
|
1082
1035
|
* @throws OciError when an error occurs
|
|
1083
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1036
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
|
|
1084
1037
|
*/
|
|
1085
1038
|
deleteBdsApiKey(deleteBdsApiKeyRequest) {
|
|
1086
1039
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1087
|
-
|
|
1088
|
-
this.logger.debug("Calling operation BdsClient#deleteBdsApiKey.");
|
|
1040
|
+
oci_common_2.logger.debug("Calling operation BdsClient#deleteBdsApiKey.");
|
|
1089
1041
|
const operationName = "deleteBdsApiKey";
|
|
1090
1042
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/DeleteBdsApiKey";
|
|
1091
1043
|
const pathParams = {
|
|
@@ -1100,8 +1052,6 @@ class BdsClient {
|
|
|
1100
1052
|
};
|
|
1101
1053
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1102
1054
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBdsApiKeyRequest.retryConfiguration, specRetryConfiguration);
|
|
1103
|
-
if (this.logger)
|
|
1104
|
-
retrier.logger = this.logger;
|
|
1105
1055
|
const request = yield oci_common_2.composeRequest({
|
|
1106
1056
|
baseEndpoint: this._endpoint,
|
|
1107
1057
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1141,12 +1091,11 @@ class BdsClient {
|
|
|
1141
1091
|
* @param DeleteBdsInstanceRequest
|
|
1142
1092
|
* @return DeleteBdsInstanceResponse
|
|
1143
1093
|
* @throws OciError when an error occurs
|
|
1144
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1094
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
1145
1095
|
*/
|
|
1146
1096
|
deleteBdsInstance(deleteBdsInstanceRequest) {
|
|
1147
1097
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1148
|
-
|
|
1149
|
-
this.logger.debug("Calling operation BdsClient#deleteBdsInstance.");
|
|
1098
|
+
oci_common_2.logger.debug("Calling operation BdsClient#deleteBdsInstance.");
|
|
1150
1099
|
const operationName = "deleteBdsInstance";
|
|
1151
1100
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/DeleteBdsInstance";
|
|
1152
1101
|
const pathParams = {
|
|
@@ -1160,8 +1109,6 @@ class BdsClient {
|
|
|
1160
1109
|
};
|
|
1161
1110
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1162
1111
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBdsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
1163
|
-
if (this.logger)
|
|
1164
|
-
retrier.logger = this.logger;
|
|
1165
1112
|
const request = yield oci_common_2.composeRequest({
|
|
1166
1113
|
baseEndpoint: this._endpoint,
|
|
1167
1114
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1201,12 +1148,11 @@ class BdsClient {
|
|
|
1201
1148
|
* @param DeleteBdsMetastoreConfigurationRequest
|
|
1202
1149
|
* @return DeleteBdsMetastoreConfigurationResponse
|
|
1203
1150
|
* @throws OciError when an error occurs
|
|
1204
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1151
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
|
|
1205
1152
|
*/
|
|
1206
1153
|
deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest) {
|
|
1207
1154
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1208
|
-
|
|
1209
|
-
this.logger.debug("Calling operation BdsClient#deleteBdsMetastoreConfiguration.");
|
|
1155
|
+
oci_common_2.logger.debug("Calling operation BdsClient#deleteBdsMetastoreConfiguration.");
|
|
1210
1156
|
const operationName = "deleteBdsMetastoreConfiguration";
|
|
1211
1157
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/DeleteBdsMetastoreConfiguration";
|
|
1212
1158
|
const pathParams = {
|
|
@@ -1221,8 +1167,6 @@ class BdsClient {
|
|
|
1221
1167
|
};
|
|
1222
1168
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1223
1169
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteBdsMetastoreConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
1224
|
-
if (this.logger)
|
|
1225
|
-
retrier.logger = this.logger;
|
|
1226
1170
|
const request = yield oci_common_2.composeRequest({
|
|
1227
1171
|
baseEndpoint: this._endpoint,
|
|
1228
1172
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1263,12 +1207,11 @@ class BdsClient {
|
|
|
1263
1207
|
* @param DisableCertificateRequest
|
|
1264
1208
|
* @return DisableCertificateResponse
|
|
1265
1209
|
* @throws OciError when an error occurs
|
|
1266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1210
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/DisableCertificate.ts.html |here} to see how to use DisableCertificate API.
|
|
1267
1211
|
*/
|
|
1268
1212
|
disableCertificate(disableCertificateRequest) {
|
|
1269
1213
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1270
|
-
|
|
1271
|
-
this.logger.debug("Calling operation BdsClient#disableCertificate.");
|
|
1214
|
+
oci_common_2.logger.debug("Calling operation BdsClient#disableCertificate.");
|
|
1272
1215
|
const operationName = "disableCertificate";
|
|
1273
1216
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/DisableCertificate";
|
|
1274
1217
|
const pathParams = {
|
|
@@ -1283,8 +1226,6 @@ class BdsClient {
|
|
|
1283
1226
|
};
|
|
1284
1227
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1285
1228
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, disableCertificateRequest.retryConfiguration, specRetryConfiguration);
|
|
1286
|
-
if (this.logger)
|
|
1287
|
-
retrier.logger = this.logger;
|
|
1288
1229
|
const request = yield oci_common_2.composeRequest({
|
|
1289
1230
|
baseEndpoint: this._endpoint,
|
|
1290
1231
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1326,12 +1267,11 @@ class BdsClient {
|
|
|
1326
1267
|
* @param EnableCertificateRequest
|
|
1327
1268
|
* @return EnableCertificateResponse
|
|
1328
1269
|
* @throws OciError when an error occurs
|
|
1329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1270
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/EnableCertificate.ts.html |here} to see how to use EnableCertificate API.
|
|
1330
1271
|
*/
|
|
1331
1272
|
enableCertificate(enableCertificateRequest) {
|
|
1332
1273
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1333
|
-
|
|
1334
|
-
this.logger.debug("Calling operation BdsClient#enableCertificate.");
|
|
1274
|
+
oci_common_2.logger.debug("Calling operation BdsClient#enableCertificate.");
|
|
1335
1275
|
const operationName = "enableCertificate";
|
|
1336
1276
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/EnableCertificate";
|
|
1337
1277
|
const pathParams = {
|
|
@@ -1346,8 +1286,6 @@ class BdsClient {
|
|
|
1346
1286
|
};
|
|
1347
1287
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1348
1288
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, enableCertificateRequest.retryConfiguration, specRetryConfiguration);
|
|
1349
|
-
if (this.logger)
|
|
1350
|
-
retrier.logger = this.logger;
|
|
1351
1289
|
const request = yield oci_common_2.composeRequest({
|
|
1352
1290
|
baseEndpoint: this._endpoint,
|
|
1353
1291
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1389,12 +1327,11 @@ class BdsClient {
|
|
|
1389
1327
|
* @param ExecuteBootstrapScriptRequest
|
|
1390
1328
|
* @return ExecuteBootstrapScriptResponse
|
|
1391
1329
|
* @throws OciError when an error occurs
|
|
1392
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1330
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ExecuteBootstrapScript.ts.html |here} to see how to use ExecuteBootstrapScript API.
|
|
1393
1331
|
*/
|
|
1394
1332
|
executeBootstrapScript(executeBootstrapScriptRequest) {
|
|
1395
1333
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1396
|
-
|
|
1397
|
-
this.logger.debug("Calling operation BdsClient#executeBootstrapScript.");
|
|
1334
|
+
oci_common_2.logger.debug("Calling operation BdsClient#executeBootstrapScript.");
|
|
1398
1335
|
const operationName = "executeBootstrapScript";
|
|
1399
1336
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ExecuteBootstrapScript";
|
|
1400
1337
|
const pathParams = {
|
|
@@ -1409,8 +1346,6 @@ class BdsClient {
|
|
|
1409
1346
|
};
|
|
1410
1347
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1411
1348
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, executeBootstrapScriptRequest.retryConfiguration, specRetryConfiguration);
|
|
1412
|
-
if (this.logger)
|
|
1413
|
-
retrier.logger = this.logger;
|
|
1414
1349
|
const request = yield oci_common_2.composeRequest({
|
|
1415
1350
|
baseEndpoint: this._endpoint,
|
|
1416
1351
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1452,12 +1387,11 @@ class BdsClient {
|
|
|
1452
1387
|
* @param GetAutoScalingConfigurationRequest
|
|
1453
1388
|
* @return GetAutoScalingConfigurationResponse
|
|
1454
1389
|
* @throws OciError when an error occurs
|
|
1455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1390
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
1456
1391
|
*/
|
|
1457
1392
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest) {
|
|
1458
1393
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1459
|
-
|
|
1460
|
-
this.logger.debug("Calling operation BdsClient#getAutoScalingConfiguration.");
|
|
1394
|
+
oci_common_2.logger.debug("Calling operation BdsClient#getAutoScalingConfiguration.");
|
|
1461
1395
|
const operationName = "getAutoScalingConfiguration";
|
|
1462
1396
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/GetAutoScalingConfiguration";
|
|
1463
1397
|
const pathParams = {
|
|
@@ -1471,8 +1405,6 @@ class BdsClient {
|
|
|
1471
1405
|
};
|
|
1472
1406
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1473
1407
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getAutoScalingConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
1474
|
-
if (this.logger)
|
|
1475
|
-
retrier.logger = this.logger;
|
|
1476
1408
|
const request = yield oci_common_2.composeRequest({
|
|
1477
1409
|
baseEndpoint: this._endpoint,
|
|
1478
1410
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1516,12 +1448,11 @@ class BdsClient {
|
|
|
1516
1448
|
* @param GetBdsApiKeyRequest
|
|
1517
1449
|
* @return GetBdsApiKeyResponse
|
|
1518
1450
|
* @throws OciError when an error occurs
|
|
1519
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1451
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
|
|
1520
1452
|
*/
|
|
1521
1453
|
getBdsApiKey(getBdsApiKeyRequest) {
|
|
1522
1454
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1523
|
-
|
|
1524
|
-
this.logger.debug("Calling operation BdsClient#getBdsApiKey.");
|
|
1455
|
+
oci_common_2.logger.debug("Calling operation BdsClient#getBdsApiKey.");
|
|
1525
1456
|
const operationName = "getBdsApiKey";
|
|
1526
1457
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/GetBdsApiKey";
|
|
1527
1458
|
const pathParams = {
|
|
@@ -1535,8 +1466,6 @@ class BdsClient {
|
|
|
1535
1466
|
};
|
|
1536
1467
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1537
1468
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBdsApiKeyRequest.retryConfiguration, specRetryConfiguration);
|
|
1538
|
-
if (this.logger)
|
|
1539
|
-
retrier.logger = this.logger;
|
|
1540
1469
|
const request = yield oci_common_2.composeRequest({
|
|
1541
1470
|
baseEndpoint: this._endpoint,
|
|
1542
1471
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1580,12 +1509,11 @@ class BdsClient {
|
|
|
1580
1509
|
* @param GetBdsInstanceRequest
|
|
1581
1510
|
* @return GetBdsInstanceResponse
|
|
1582
1511
|
* @throws OciError when an error occurs
|
|
1583
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1512
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
1584
1513
|
*/
|
|
1585
1514
|
getBdsInstance(getBdsInstanceRequest) {
|
|
1586
1515
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1587
|
-
|
|
1588
|
-
this.logger.debug("Calling operation BdsClient#getBdsInstance.");
|
|
1516
|
+
oci_common_2.logger.debug("Calling operation BdsClient#getBdsInstance.");
|
|
1589
1517
|
const operationName = "getBdsInstance";
|
|
1590
1518
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/GetBdsInstance";
|
|
1591
1519
|
const pathParams = {
|
|
@@ -1598,8 +1526,6 @@ class BdsClient {
|
|
|
1598
1526
|
};
|
|
1599
1527
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1600
1528
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBdsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
1601
|
-
if (this.logger)
|
|
1602
|
-
retrier.logger = this.logger;
|
|
1603
1529
|
const request = yield oci_common_2.composeRequest({
|
|
1604
1530
|
baseEndpoint: this._endpoint,
|
|
1605
1531
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1643,12 +1569,11 @@ class BdsClient {
|
|
|
1643
1569
|
* @param GetBdsMetastoreConfigurationRequest
|
|
1644
1570
|
* @return GetBdsMetastoreConfigurationResponse
|
|
1645
1571
|
* @throws OciError when an error occurs
|
|
1646
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1572
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
|
|
1647
1573
|
*/
|
|
1648
1574
|
getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest) {
|
|
1649
1575
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1650
|
-
|
|
1651
|
-
this.logger.debug("Calling operation BdsClient#getBdsMetastoreConfiguration.");
|
|
1576
|
+
oci_common_2.logger.debug("Calling operation BdsClient#getBdsMetastoreConfiguration.");
|
|
1652
1577
|
const operationName = "getBdsMetastoreConfiguration";
|
|
1653
1578
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/GetBdsMetastoreConfiguration";
|
|
1654
1579
|
const pathParams = {
|
|
@@ -1662,8 +1587,6 @@ class BdsClient {
|
|
|
1662
1587
|
};
|
|
1663
1588
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1664
1589
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getBdsMetastoreConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
1665
|
-
if (this.logger)
|
|
1666
|
-
retrier.logger = this.logger;
|
|
1667
1590
|
const request = yield oci_common_2.composeRequest({
|
|
1668
1591
|
baseEndpoint: this._endpoint,
|
|
1669
1592
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1707,12 +1630,11 @@ class BdsClient {
|
|
|
1707
1630
|
* @param GetOsPatchDetailsRequest
|
|
1708
1631
|
* @return GetOsPatchDetailsResponse
|
|
1709
1632
|
* @throws OciError when an error occurs
|
|
1710
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1633
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/GetOsPatchDetails.ts.html |here} to see how to use GetOsPatchDetails API.
|
|
1711
1634
|
*/
|
|
1712
1635
|
getOsPatchDetails(getOsPatchDetailsRequest) {
|
|
1713
1636
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1714
|
-
|
|
1715
|
-
this.logger.debug("Calling operation BdsClient#getOsPatchDetails.");
|
|
1637
|
+
oci_common_2.logger.debug("Calling operation BdsClient#getOsPatchDetails.");
|
|
1716
1638
|
const operationName = "getOsPatchDetails";
|
|
1717
1639
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/GetOsPatchDetails";
|
|
1718
1640
|
const pathParams = {
|
|
@@ -1729,8 +1651,6 @@ class BdsClient {
|
|
|
1729
1651
|
};
|
|
1730
1652
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1731
1653
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getOsPatchDetailsRequest.retryConfiguration, specRetryConfiguration);
|
|
1732
|
-
if (this.logger)
|
|
1733
|
-
retrier.logger = this.logger;
|
|
1734
1654
|
const request = yield oci_common_2.composeRequest({
|
|
1735
1655
|
baseEndpoint: this._endpoint,
|
|
1736
1656
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1774,12 +1694,11 @@ class BdsClient {
|
|
|
1774
1694
|
* @param GetWorkRequestRequest
|
|
1775
1695
|
* @return GetWorkRequestResponse
|
|
1776
1696
|
* @throws OciError when an error occurs
|
|
1777
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1697
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1778
1698
|
*/
|
|
1779
1699
|
getWorkRequest(getWorkRequestRequest) {
|
|
1780
1700
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1781
|
-
|
|
1782
|
-
this.logger.debug("Calling operation BdsClient#getWorkRequest.");
|
|
1701
|
+
oci_common_2.logger.debug("Calling operation BdsClient#getWorkRequest.");
|
|
1783
1702
|
const operationName = "getWorkRequest";
|
|
1784
1703
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/WorkRequest/GetWorkRequest";
|
|
1785
1704
|
const pathParams = {
|
|
@@ -1792,8 +1711,6 @@ class BdsClient {
|
|
|
1792
1711
|
};
|
|
1793
1712
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1794
1713
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
|
|
1795
|
-
if (this.logger)
|
|
1796
|
-
retrier.logger = this.logger;
|
|
1797
1714
|
const request = yield oci_common_2.composeRequest({
|
|
1798
1715
|
baseEndpoint: this._endpoint,
|
|
1799
1716
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1838,12 +1755,11 @@ class BdsClient {
|
|
|
1838
1755
|
* @param InstallOsPatchRequest
|
|
1839
1756
|
* @return InstallOsPatchResponse
|
|
1840
1757
|
* @throws OciError when an error occurs
|
|
1841
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1758
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/InstallOsPatch.ts.html |here} to see how to use InstallOsPatch API.
|
|
1842
1759
|
*/
|
|
1843
1760
|
installOsPatch(installOsPatchRequest) {
|
|
1844
1761
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1845
|
-
|
|
1846
|
-
this.logger.debug("Calling operation BdsClient#installOsPatch.");
|
|
1762
|
+
oci_common_2.logger.debug("Calling operation BdsClient#installOsPatch.");
|
|
1847
1763
|
const operationName = "installOsPatch";
|
|
1848
1764
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/InstallOsPatch";
|
|
1849
1765
|
const pathParams = {
|
|
@@ -1858,8 +1774,6 @@ class BdsClient {
|
|
|
1858
1774
|
};
|
|
1859
1775
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1860
1776
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, installOsPatchRequest.retryConfiguration, specRetryConfiguration);
|
|
1861
|
-
if (this.logger)
|
|
1862
|
-
retrier.logger = this.logger;
|
|
1863
1777
|
const request = yield oci_common_2.composeRequest({
|
|
1864
1778
|
baseEndpoint: this._endpoint,
|
|
1865
1779
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1901,12 +1815,11 @@ class BdsClient {
|
|
|
1901
1815
|
* @param InstallPatchRequest
|
|
1902
1816
|
* @return InstallPatchResponse
|
|
1903
1817
|
* @throws OciError when an error occurs
|
|
1904
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1818
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
|
|
1905
1819
|
*/
|
|
1906
1820
|
installPatch(installPatchRequest) {
|
|
1907
1821
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1908
|
-
|
|
1909
|
-
this.logger.debug("Calling operation BdsClient#installPatch.");
|
|
1822
|
+
oci_common_2.logger.debug("Calling operation BdsClient#installPatch.");
|
|
1910
1823
|
const operationName = "installPatch";
|
|
1911
1824
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/InstallPatch";
|
|
1912
1825
|
const pathParams = {
|
|
@@ -1921,8 +1834,6 @@ class BdsClient {
|
|
|
1921
1834
|
};
|
|
1922
1835
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1923
1836
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, installPatchRequest.retryConfiguration, specRetryConfiguration);
|
|
1924
|
-
if (this.logger)
|
|
1925
|
-
retrier.logger = this.logger;
|
|
1926
1837
|
const request = yield oci_common_2.composeRequest({
|
|
1927
1838
|
baseEndpoint: this._endpoint,
|
|
1928
1839
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -1964,12 +1875,11 @@ class BdsClient {
|
|
|
1964
1875
|
* @param ListAutoScalingConfigurationsRequest
|
|
1965
1876
|
* @return ListAutoScalingConfigurationsResponse
|
|
1966
1877
|
* @throws OciError when an error occurs
|
|
1967
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1878
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
1968
1879
|
*/
|
|
1969
1880
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest) {
|
|
1970
1881
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1971
|
-
|
|
1972
|
-
this.logger.debug("Calling operation BdsClient#listAutoScalingConfigurations.");
|
|
1882
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listAutoScalingConfigurations.");
|
|
1973
1883
|
const operationName = "listAutoScalingConfigurations";
|
|
1974
1884
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ListAutoScalingConfigurations";
|
|
1975
1885
|
const pathParams = {
|
|
@@ -1990,8 +1900,6 @@ class BdsClient {
|
|
|
1990
1900
|
};
|
|
1991
1901
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
1992
1902
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listAutoScalingConfigurationsRequest.retryConfiguration, specRetryConfiguration);
|
|
1993
|
-
if (this.logger)
|
|
1994
|
-
retrier.logger = this.logger;
|
|
1995
1903
|
const request = yield oci_common_2.composeRequest({
|
|
1996
1904
|
baseEndpoint: this._endpoint,
|
|
1997
1905
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2076,12 +1984,11 @@ class BdsClient {
|
|
|
2076
1984
|
* @param ListBdsApiKeysRequest
|
|
2077
1985
|
* @return ListBdsApiKeysResponse
|
|
2078
1986
|
* @throws OciError when an error occurs
|
|
2079
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1987
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
|
|
2080
1988
|
*/
|
|
2081
1989
|
listBdsApiKeys(listBdsApiKeysRequest) {
|
|
2082
1990
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2083
|
-
|
|
2084
|
-
this.logger.debug("Calling operation BdsClient#listBdsApiKeys.");
|
|
1991
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listBdsApiKeys.");
|
|
2085
1992
|
const operationName = "listBdsApiKeys";
|
|
2086
1993
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/ListBdsApiKeys";
|
|
2087
1994
|
const pathParams = {
|
|
@@ -2102,8 +2009,6 @@ class BdsClient {
|
|
|
2102
2009
|
};
|
|
2103
2010
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2104
2011
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBdsApiKeysRequest.retryConfiguration, specRetryConfiguration);
|
|
2105
|
-
if (this.logger)
|
|
2106
|
-
retrier.logger = this.logger;
|
|
2107
2012
|
const request = yield oci_common_2.composeRequest({
|
|
2108
2013
|
baseEndpoint: this._endpoint,
|
|
2109
2014
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2188,12 +2093,11 @@ class BdsClient {
|
|
|
2188
2093
|
* @param ListBdsInstancesRequest
|
|
2189
2094
|
* @return ListBdsInstancesResponse
|
|
2190
2095
|
* @throws OciError when an error occurs
|
|
2191
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2096
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
2192
2097
|
*/
|
|
2193
2098
|
listBdsInstances(listBdsInstancesRequest) {
|
|
2194
2099
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2195
|
-
|
|
2196
|
-
this.logger.debug("Calling operation BdsClient#listBdsInstances.");
|
|
2100
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listBdsInstances.");
|
|
2197
2101
|
const operationName = "listBdsInstances";
|
|
2198
2102
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstanceSummary/ListBdsInstances";
|
|
2199
2103
|
const pathParams = {};
|
|
@@ -2212,8 +2116,6 @@ class BdsClient {
|
|
|
2212
2116
|
};
|
|
2213
2117
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2214
2118
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBdsInstancesRequest.retryConfiguration, specRetryConfiguration);
|
|
2215
|
-
if (this.logger)
|
|
2216
|
-
retrier.logger = this.logger;
|
|
2217
2119
|
const request = yield oci_common_2.composeRequest({
|
|
2218
2120
|
baseEndpoint: this._endpoint,
|
|
2219
2121
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2298,12 +2200,11 @@ class BdsClient {
|
|
|
2298
2200
|
* @param ListBdsMetastoreConfigurationsRequest
|
|
2299
2201
|
* @return ListBdsMetastoreConfigurationsResponse
|
|
2300
2202
|
* @throws OciError when an error occurs
|
|
2301
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2203
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
|
|
2302
2204
|
*/
|
|
2303
2205
|
listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest) {
|
|
2304
2206
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2305
|
-
|
|
2306
|
-
this.logger.debug("Calling operation BdsClient#listBdsMetastoreConfigurations.");
|
|
2207
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listBdsMetastoreConfigurations.");
|
|
2307
2208
|
const operationName = "listBdsMetastoreConfigurations";
|
|
2308
2209
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/ListBdsMetastoreConfigurations";
|
|
2309
2210
|
const pathParams = {
|
|
@@ -2326,8 +2227,6 @@ class BdsClient {
|
|
|
2326
2227
|
};
|
|
2327
2228
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2328
2229
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listBdsMetastoreConfigurationsRequest.retryConfiguration, specRetryConfiguration);
|
|
2329
|
-
if (this.logger)
|
|
2330
|
-
retrier.logger = this.logger;
|
|
2331
2230
|
const request = yield oci_common_2.composeRequest({
|
|
2332
2231
|
baseEndpoint: this._endpoint,
|
|
2333
2232
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2411,12 +2310,11 @@ class BdsClient {
|
|
|
2411
2310
|
* @param ListOsPatchesRequest
|
|
2412
2311
|
* @return ListOsPatchesResponse
|
|
2413
2312
|
* @throws OciError when an error occurs
|
|
2414
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ListOsPatches.ts.html |here} to see how to use ListOsPatches API.
|
|
2415
2314
|
*/
|
|
2416
2315
|
listOsPatches(listOsPatchesRequest) {
|
|
2417
2316
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2418
|
-
|
|
2419
|
-
this.logger.debug("Calling operation BdsClient#listOsPatches.");
|
|
2317
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listOsPatches.");
|
|
2420
2318
|
const operationName = "listOsPatches";
|
|
2421
2319
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ListOsPatches";
|
|
2422
2320
|
const pathParams = {
|
|
@@ -2436,8 +2334,6 @@ class BdsClient {
|
|
|
2436
2334
|
};
|
|
2437
2335
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2438
2336
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listOsPatchesRequest.retryConfiguration, specRetryConfiguration);
|
|
2439
|
-
if (this.logger)
|
|
2440
|
-
retrier.logger = this.logger;
|
|
2441
2337
|
const request = yield oci_common_2.composeRequest({
|
|
2442
2338
|
baseEndpoint: this._endpoint,
|
|
2443
2339
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2527,12 +2423,11 @@ class BdsClient {
|
|
|
2527
2423
|
* @param ListPatchHistoriesRequest
|
|
2528
2424
|
* @return ListPatchHistoriesResponse
|
|
2529
2425
|
* @throws OciError when an error occurs
|
|
2530
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2426
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
|
|
2531
2427
|
*/
|
|
2532
2428
|
listPatchHistories(listPatchHistoriesRequest) {
|
|
2533
2429
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2534
|
-
|
|
2535
|
-
this.logger.debug("Calling operation BdsClient#listPatchHistories.");
|
|
2430
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listPatchHistories.");
|
|
2536
2431
|
const operationName = "listPatchHistories";
|
|
2537
2432
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ListPatchHistories";
|
|
2538
2433
|
const pathParams = {
|
|
@@ -2553,8 +2448,6 @@ class BdsClient {
|
|
|
2553
2448
|
};
|
|
2554
2449
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2555
2450
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPatchHistoriesRequest.retryConfiguration, specRetryConfiguration);
|
|
2556
|
-
if (this.logger)
|
|
2557
|
-
retrier.logger = this.logger;
|
|
2558
2451
|
const request = yield oci_common_2.composeRequest({
|
|
2559
2452
|
baseEndpoint: this._endpoint,
|
|
2560
2453
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2639,12 +2532,11 @@ class BdsClient {
|
|
|
2639
2532
|
* @param ListPatchesRequest
|
|
2640
2533
|
* @return ListPatchesResponse
|
|
2641
2534
|
* @throws OciError when an error occurs
|
|
2642
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2535
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
|
|
2643
2536
|
*/
|
|
2644
2537
|
listPatches(listPatchesRequest) {
|
|
2645
2538
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2646
|
-
|
|
2647
|
-
this.logger.debug("Calling operation BdsClient#listPatches.");
|
|
2539
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listPatches.");
|
|
2648
2540
|
const operationName = "listPatches";
|
|
2649
2541
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/ListPatches";
|
|
2650
2542
|
const pathParams = {
|
|
@@ -2660,8 +2552,6 @@ class BdsClient {
|
|
|
2660
2552
|
};
|
|
2661
2553
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2662
2554
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listPatchesRequest.retryConfiguration, specRetryConfiguration);
|
|
2663
|
-
if (this.logger)
|
|
2664
|
-
retrier.logger = this.logger;
|
|
2665
2555
|
const request = yield oci_common_2.composeRequest({
|
|
2666
2556
|
baseEndpoint: this._endpoint,
|
|
2667
2557
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2746,12 +2636,11 @@ class BdsClient {
|
|
|
2746
2636
|
* @param ListWorkRequestErrorsRequest
|
|
2747
2637
|
* @return ListWorkRequestErrorsResponse
|
|
2748
2638
|
* @throws OciError when an error occurs
|
|
2749
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2639
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2750
2640
|
*/
|
|
2751
2641
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2752
2642
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2753
|
-
|
|
2754
|
-
this.logger.debug("Calling operation BdsClient#listWorkRequestErrors.");
|
|
2643
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listWorkRequestErrors.");
|
|
2755
2644
|
const operationName = "listWorkRequestErrors";
|
|
2756
2645
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/WorkRequestError/ListWorkRequestErrors";
|
|
2757
2646
|
const pathParams = {
|
|
@@ -2769,8 +2658,6 @@ class BdsClient {
|
|
|
2769
2658
|
};
|
|
2770
2659
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2771
2660
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
|
|
2772
|
-
if (this.logger)
|
|
2773
|
-
retrier.logger = this.logger;
|
|
2774
2661
|
const request = yield oci_common_2.composeRequest({
|
|
2775
2662
|
baseEndpoint: this._endpoint,
|
|
2776
2663
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2855,12 +2742,11 @@ class BdsClient {
|
|
|
2855
2742
|
* @param ListWorkRequestLogsRequest
|
|
2856
2743
|
* @return ListWorkRequestLogsResponse
|
|
2857
2744
|
* @throws OciError when an error occurs
|
|
2858
|
-
* @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.79.1/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2859
2746
|
*/
|
|
2860
2747
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2861
2748
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2862
|
-
|
|
2863
|
-
this.logger.debug("Calling operation BdsClient#listWorkRequestLogs.");
|
|
2749
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listWorkRequestLogs.");
|
|
2864
2750
|
const operationName = "listWorkRequestLogs";
|
|
2865
2751
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/WorkRequestLogEntry/ListWorkRequestLogs";
|
|
2866
2752
|
const pathParams = {
|
|
@@ -2878,8 +2764,6 @@ class BdsClient {
|
|
|
2878
2764
|
};
|
|
2879
2765
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2880
2766
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
|
|
2881
|
-
if (this.logger)
|
|
2882
|
-
retrier.logger = this.logger;
|
|
2883
2767
|
const request = yield oci_common_2.composeRequest({
|
|
2884
2768
|
baseEndpoint: this._endpoint,
|
|
2885
2769
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -2964,12 +2848,11 @@ class BdsClient {
|
|
|
2964
2848
|
* @param ListWorkRequestsRequest
|
|
2965
2849
|
* @return ListWorkRequestsResponse
|
|
2966
2850
|
* @throws OciError when an error occurs
|
|
2967
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2851
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2968
2852
|
*/
|
|
2969
2853
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2970
2854
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2971
|
-
|
|
2972
|
-
this.logger.debug("Calling operation BdsClient#listWorkRequests.");
|
|
2855
|
+
oci_common_2.logger.debug("Calling operation BdsClient#listWorkRequests.");
|
|
2973
2856
|
const operationName = "listWorkRequests";
|
|
2974
2857
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/WorkRequest/ListWorkRequests";
|
|
2975
2858
|
const pathParams = {};
|
|
@@ -2987,8 +2870,6 @@ class BdsClient {
|
|
|
2987
2870
|
};
|
|
2988
2871
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
2989
2872
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
|
|
2990
|
-
if (this.logger)
|
|
2991
|
-
retrier.logger = this.logger;
|
|
2992
2873
|
const request = yield oci_common_2.composeRequest({
|
|
2993
2874
|
baseEndpoint: this._endpoint,
|
|
2994
2875
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3073,12 +2954,11 @@ class BdsClient {
|
|
|
3073
2954
|
* @param RemoveAutoScalingConfigurationRequest
|
|
3074
2955
|
* @return RemoveAutoScalingConfigurationResponse
|
|
3075
2956
|
* @throws OciError when an error occurs
|
|
3076
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2957
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
3077
2958
|
*/
|
|
3078
2959
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest) {
|
|
3079
2960
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3080
|
-
|
|
3081
|
-
this.logger.debug("Calling operation BdsClient#removeAutoScalingConfiguration.");
|
|
2961
|
+
oci_common_2.logger.debug("Calling operation BdsClient#removeAutoScalingConfiguration.");
|
|
3082
2962
|
const operationName = "removeAutoScalingConfiguration";
|
|
3083
2963
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RemoveAutoScalingConfiguration";
|
|
3084
2964
|
const pathParams = {
|
|
@@ -3094,8 +2974,6 @@ class BdsClient {
|
|
|
3094
2974
|
};
|
|
3095
2975
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3096
2976
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeAutoScalingConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
3097
|
-
if (this.logger)
|
|
3098
|
-
retrier.logger = this.logger;
|
|
3099
2977
|
const request = yield oci_common_2.composeRequest({
|
|
3100
2978
|
baseEndpoint: this._endpoint,
|
|
3101
2979
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3137,12 +3015,11 @@ class BdsClient {
|
|
|
3137
3015
|
* @param RemoveCloudSqlRequest
|
|
3138
3016
|
* @return RemoveCloudSqlResponse
|
|
3139
3017
|
* @throws OciError when an error occurs
|
|
3140
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3018
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
3141
3019
|
*/
|
|
3142
3020
|
removeCloudSql(removeCloudSqlRequest) {
|
|
3143
3021
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3144
|
-
|
|
3145
|
-
this.logger.debug("Calling operation BdsClient#removeCloudSql.");
|
|
3022
|
+
oci_common_2.logger.debug("Calling operation BdsClient#removeCloudSql.");
|
|
3146
3023
|
const operationName = "removeCloudSql";
|
|
3147
3024
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RemoveCloudSql";
|
|
3148
3025
|
const pathParams = {
|
|
@@ -3157,8 +3034,6 @@ class BdsClient {
|
|
|
3157
3034
|
};
|
|
3158
3035
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3159
3036
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeCloudSqlRequest.retryConfiguration, specRetryConfiguration);
|
|
3160
|
-
if (this.logger)
|
|
3161
|
-
retrier.logger = this.logger;
|
|
3162
3037
|
const request = yield oci_common_2.composeRequest({
|
|
3163
3038
|
baseEndpoint: this._endpoint,
|
|
3164
3039
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3200,12 +3075,11 @@ class BdsClient {
|
|
|
3200
3075
|
* @param RemoveKafkaRequest
|
|
3201
3076
|
* @return RemoveKafkaResponse
|
|
3202
3077
|
* @throws OciError when an error occurs
|
|
3203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3078
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/RemoveKafka.ts.html |here} to see how to use RemoveKafka API.
|
|
3204
3079
|
*/
|
|
3205
3080
|
removeKafka(removeKafkaRequest) {
|
|
3206
3081
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3207
|
-
|
|
3208
|
-
this.logger.debug("Calling operation BdsClient#removeKafka.");
|
|
3082
|
+
oci_common_2.logger.debug("Calling operation BdsClient#removeKafka.");
|
|
3209
3083
|
const operationName = "removeKafka";
|
|
3210
3084
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RemoveKafka";
|
|
3211
3085
|
const pathParams = {
|
|
@@ -3220,8 +3094,6 @@ class BdsClient {
|
|
|
3220
3094
|
};
|
|
3221
3095
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3222
3096
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeKafkaRequest.retryConfiguration, specRetryConfiguration);
|
|
3223
|
-
if (this.logger)
|
|
3224
|
-
retrier.logger = this.logger;
|
|
3225
3097
|
const request = yield oci_common_2.composeRequest({
|
|
3226
3098
|
baseEndpoint: this._endpoint,
|
|
3227
3099
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3263,12 +3135,11 @@ class BdsClient {
|
|
|
3263
3135
|
* @param RemoveNodeRequest
|
|
3264
3136
|
* @return RemoveNodeResponse
|
|
3265
3137
|
* @throws OciError when an error occurs
|
|
3266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3138
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
|
|
3267
3139
|
*/
|
|
3268
3140
|
removeNode(removeNodeRequest) {
|
|
3269
3141
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3270
|
-
|
|
3271
|
-
this.logger.debug("Calling operation BdsClient#removeNode.");
|
|
3142
|
+
oci_common_2.logger.debug("Calling operation BdsClient#removeNode.");
|
|
3272
3143
|
const operationName = "removeNode";
|
|
3273
3144
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RemoveNode";
|
|
3274
3145
|
const pathParams = {
|
|
@@ -3282,8 +3153,6 @@ class BdsClient {
|
|
|
3282
3153
|
};
|
|
3283
3154
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3284
3155
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, removeNodeRequest.retryConfiguration, specRetryConfiguration);
|
|
3285
|
-
if (this.logger)
|
|
3286
|
-
retrier.logger = this.logger;
|
|
3287
3156
|
const request = yield oci_common_2.composeRequest({
|
|
3288
3157
|
baseEndpoint: this._endpoint,
|
|
3289
3158
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3325,12 +3194,11 @@ class BdsClient {
|
|
|
3325
3194
|
* @param RenewCertificateRequest
|
|
3326
3195
|
* @return RenewCertificateResponse
|
|
3327
3196
|
* @throws OciError when an error occurs
|
|
3328
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3197
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/RenewCertificate.ts.html |here} to see how to use RenewCertificate API.
|
|
3329
3198
|
*/
|
|
3330
3199
|
renewCertificate(renewCertificateRequest) {
|
|
3331
3200
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3332
|
-
|
|
3333
|
-
this.logger.debug("Calling operation BdsClient#renewCertificate.");
|
|
3201
|
+
oci_common_2.logger.debug("Calling operation BdsClient#renewCertificate.");
|
|
3334
3202
|
const operationName = "renewCertificate";
|
|
3335
3203
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RenewCertificate";
|
|
3336
3204
|
const pathParams = {
|
|
@@ -3345,8 +3213,6 @@ class BdsClient {
|
|
|
3345
3213
|
};
|
|
3346
3214
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3347
3215
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, renewCertificateRequest.retryConfiguration, specRetryConfiguration);
|
|
3348
|
-
if (this.logger)
|
|
3349
|
-
retrier.logger = this.logger;
|
|
3350
3216
|
const request = yield oci_common_2.composeRequest({
|
|
3351
3217
|
baseEndpoint: this._endpoint,
|
|
3352
3218
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3388,12 +3254,11 @@ class BdsClient {
|
|
|
3388
3254
|
* @param RestartNodeRequest
|
|
3389
3255
|
* @return RestartNodeResponse
|
|
3390
3256
|
* @throws OciError when an error occurs
|
|
3391
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3257
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
3392
3258
|
*/
|
|
3393
3259
|
restartNode(restartNodeRequest) {
|
|
3394
3260
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3395
|
-
|
|
3396
|
-
this.logger.debug("Calling operation BdsClient#restartNode.");
|
|
3261
|
+
oci_common_2.logger.debug("Calling operation BdsClient#restartNode.");
|
|
3397
3262
|
const operationName = "restartNode";
|
|
3398
3263
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/RestartNode";
|
|
3399
3264
|
const pathParams = {
|
|
@@ -3408,8 +3273,6 @@ class BdsClient {
|
|
|
3408
3273
|
};
|
|
3409
3274
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3410
3275
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, restartNodeRequest.retryConfiguration, specRetryConfiguration);
|
|
3411
|
-
if (this.logger)
|
|
3412
|
-
retrier.logger = this.logger;
|
|
3413
3276
|
const request = yield oci_common_2.composeRequest({
|
|
3414
3277
|
baseEndpoint: this._endpoint,
|
|
3415
3278
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3451,12 +3314,11 @@ class BdsClient {
|
|
|
3451
3314
|
* @param StartBdsInstanceRequest
|
|
3452
3315
|
* @return StartBdsInstanceResponse
|
|
3453
3316
|
* @throws OciError when an error occurs
|
|
3454
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3317
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/StartBdsInstance.ts.html |here} to see how to use StartBdsInstance API.
|
|
3455
3318
|
*/
|
|
3456
3319
|
startBdsInstance(startBdsInstanceRequest) {
|
|
3457
3320
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3458
|
-
|
|
3459
|
-
this.logger.debug("Calling operation BdsClient#startBdsInstance.");
|
|
3321
|
+
oci_common_2.logger.debug("Calling operation BdsClient#startBdsInstance.");
|
|
3460
3322
|
const operationName = "startBdsInstance";
|
|
3461
3323
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/StartBdsInstance";
|
|
3462
3324
|
const pathParams = {
|
|
@@ -3470,8 +3332,6 @@ class BdsClient {
|
|
|
3470
3332
|
};
|
|
3471
3333
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3472
3334
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, startBdsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
3473
|
-
if (this.logger)
|
|
3474
|
-
retrier.logger = this.logger;
|
|
3475
3335
|
const request = yield oci_common_2.composeRequest({
|
|
3476
3336
|
baseEndpoint: this._endpoint,
|
|
3477
3337
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3513,12 +3373,11 @@ class BdsClient {
|
|
|
3513
3373
|
* @param StopBdsInstanceRequest
|
|
3514
3374
|
* @return StopBdsInstanceResponse
|
|
3515
3375
|
* @throws OciError when an error occurs
|
|
3516
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3376
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/StopBdsInstance.ts.html |here} to see how to use StopBdsInstance API.
|
|
3517
3377
|
*/
|
|
3518
3378
|
stopBdsInstance(stopBdsInstanceRequest) {
|
|
3519
3379
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3520
|
-
|
|
3521
|
-
this.logger.debug("Calling operation BdsClient#stopBdsInstance.");
|
|
3380
|
+
oci_common_2.logger.debug("Calling operation BdsClient#stopBdsInstance.");
|
|
3522
3381
|
const operationName = "stopBdsInstance";
|
|
3523
3382
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/StopBdsInstance";
|
|
3524
3383
|
const pathParams = {
|
|
@@ -3532,8 +3391,6 @@ class BdsClient {
|
|
|
3532
3391
|
};
|
|
3533
3392
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3534
3393
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, stopBdsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
3535
|
-
if (this.logger)
|
|
3536
|
-
retrier.logger = this.logger;
|
|
3537
3394
|
const request = yield oci_common_2.composeRequest({
|
|
3538
3395
|
baseEndpoint: this._endpoint,
|
|
3539
3396
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3575,12 +3432,11 @@ class BdsClient {
|
|
|
3575
3432
|
* @param TestBdsMetastoreConfigurationRequest
|
|
3576
3433
|
* @return TestBdsMetastoreConfigurationResponse
|
|
3577
3434
|
* @throws OciError when an error occurs
|
|
3578
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3435
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
|
|
3579
3436
|
*/
|
|
3580
3437
|
testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest) {
|
|
3581
3438
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3582
|
-
|
|
3583
|
-
this.logger.debug("Calling operation BdsClient#testBdsMetastoreConfiguration.");
|
|
3439
|
+
oci_common_2.logger.debug("Calling operation BdsClient#testBdsMetastoreConfiguration.");
|
|
3584
3440
|
const operationName = "testBdsMetastoreConfiguration";
|
|
3585
3441
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/TestBdsMetastoreConfiguration";
|
|
3586
3442
|
const pathParams = {
|
|
@@ -3595,8 +3451,6 @@ class BdsClient {
|
|
|
3595
3451
|
};
|
|
3596
3452
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3597
3453
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, testBdsMetastoreConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
3598
|
-
if (this.logger)
|
|
3599
|
-
retrier.logger = this.logger;
|
|
3600
3454
|
const request = yield oci_common_2.composeRequest({
|
|
3601
3455
|
baseEndpoint: this._endpoint,
|
|
3602
3456
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3637,12 +3491,11 @@ class BdsClient {
|
|
|
3637
3491
|
* @param TestBdsObjectStorageConnectionRequest
|
|
3638
3492
|
* @return TestBdsObjectStorageConnectionResponse
|
|
3639
3493
|
* @throws OciError when an error occurs
|
|
3640
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3494
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
|
|
3641
3495
|
*/
|
|
3642
3496
|
testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest) {
|
|
3643
3497
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3644
|
-
|
|
3645
|
-
this.logger.debug("Calling operation BdsClient#testBdsObjectStorageConnection.");
|
|
3498
|
+
oci_common_2.logger.debug("Calling operation BdsClient#testBdsObjectStorageConnection.");
|
|
3646
3499
|
const operationName = "testBdsObjectStorageConnection";
|
|
3647
3500
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsApiKey/TestBdsObjectStorageConnection";
|
|
3648
3501
|
const pathParams = {
|
|
@@ -3656,8 +3509,6 @@ class BdsClient {
|
|
|
3656
3509
|
};
|
|
3657
3510
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3658
3511
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, testBdsObjectStorageConnectionRequest.retryConfiguration, specRetryConfiguration);
|
|
3659
|
-
if (this.logger)
|
|
3660
|
-
retrier.logger = this.logger;
|
|
3661
3512
|
const request = yield oci_common_2.composeRequest({
|
|
3662
3513
|
baseEndpoint: this._endpoint,
|
|
3663
3514
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3699,12 +3550,11 @@ class BdsClient {
|
|
|
3699
3550
|
* @param UpdateAutoScalingConfigurationRequest
|
|
3700
3551
|
* @return UpdateAutoScalingConfigurationResponse
|
|
3701
3552
|
* @throws OciError when an error occurs
|
|
3702
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3553
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
3703
3554
|
*/
|
|
3704
3555
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest) {
|
|
3705
3556
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3706
|
-
|
|
3707
|
-
this.logger.debug("Calling operation BdsClient#updateAutoScalingConfiguration.");
|
|
3557
|
+
oci_common_2.logger.debug("Calling operation BdsClient#updateAutoScalingConfiguration.");
|
|
3708
3558
|
const operationName = "updateAutoScalingConfiguration";
|
|
3709
3559
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/UpdateAutoScalingConfiguration";
|
|
3710
3560
|
const pathParams = {
|
|
@@ -3720,8 +3570,6 @@ class BdsClient {
|
|
|
3720
3570
|
};
|
|
3721
3571
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3722
3572
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateAutoScalingConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
3723
|
-
if (this.logger)
|
|
3724
|
-
retrier.logger = this.logger;
|
|
3725
3573
|
const request = yield oci_common_2.composeRequest({
|
|
3726
3574
|
baseEndpoint: this._endpoint,
|
|
3727
3575
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3762,12 +3610,11 @@ class BdsClient {
|
|
|
3762
3610
|
* @param UpdateBdsInstanceRequest
|
|
3763
3611
|
* @return UpdateBdsInstanceResponse
|
|
3764
3612
|
* @throws OciError when an error occurs
|
|
3765
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3613
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
3766
3614
|
*/
|
|
3767
3615
|
updateBdsInstance(updateBdsInstanceRequest) {
|
|
3768
3616
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3769
|
-
|
|
3770
|
-
this.logger.debug("Calling operation BdsClient#updateBdsInstance.");
|
|
3617
|
+
oci_common_2.logger.debug("Calling operation BdsClient#updateBdsInstance.");
|
|
3771
3618
|
const operationName = "updateBdsInstance";
|
|
3772
3619
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsInstance/UpdateBdsInstance";
|
|
3773
3620
|
const pathParams = {
|
|
@@ -3781,8 +3628,6 @@ class BdsClient {
|
|
|
3781
3628
|
};
|
|
3782
3629
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3783
3630
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBdsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
3784
|
-
if (this.logger)
|
|
3785
|
-
retrier.logger = this.logger;
|
|
3786
3631
|
const request = yield oci_common_2.composeRequest({
|
|
3787
3632
|
baseEndpoint: this._endpoint,
|
|
3788
3633
|
defaultHeaders: this._defaultHeaders,
|
|
@@ -3823,12 +3668,11 @@ class BdsClient {
|
|
|
3823
3668
|
* @param UpdateBdsMetastoreConfigurationRequest
|
|
3824
3669
|
* @return UpdateBdsMetastoreConfigurationResponse
|
|
3825
3670
|
* @throws OciError when an error occurs
|
|
3826
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3671
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.79.1/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
|
|
3827
3672
|
*/
|
|
3828
3673
|
updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest) {
|
|
3829
3674
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3830
|
-
|
|
3831
|
-
this.logger.debug("Calling operation BdsClient#updateBdsMetastoreConfiguration.");
|
|
3675
|
+
oci_common_2.logger.debug("Calling operation BdsClient#updateBdsMetastoreConfiguration.");
|
|
3832
3676
|
const operationName = "updateBdsMetastoreConfiguration";
|
|
3833
3677
|
const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/bigdata/20190531/BdsMetastoreConfiguration/UpdateBdsMetastoreConfiguration";
|
|
3834
3678
|
const pathParams = {
|
|
@@ -3843,8 +3687,6 @@ class BdsClient {
|
|
|
3843
3687
|
};
|
|
3844
3688
|
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
3845
3689
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateBdsMetastoreConfigurationRequest.retryConfiguration, specRetryConfiguration);
|
|
3846
|
-
if (this.logger)
|
|
3847
|
-
retrier.logger = this.logger;
|
|
3848
3690
|
const request = yield oci_common_2.composeRequest({
|
|
3849
3691
|
baseEndpoint: this._endpoint,
|
|
3850
3692
|
defaultHeaders: this._defaultHeaders,
|