oci-analytics 2.26.0 → 2.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/lib/client.d.ts +24 -23
  2. package/lib/client.js +93 -46
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/network-endpoint-details.js +2 -2
  5. package/lib/model/network-endpoint-details.js.map +1 -1
  6. package/lib/request/change-analytics-instance-compartment-request.d.ts +1 -1
  7. package/lib/request/change-analytics-instance-network-endpoint-request.d.ts +1 -1
  8. package/lib/request/create-analytics-instance-request.d.ts +1 -1
  9. package/lib/request/create-private-access-channel-request.d.ts +1 -1
  10. package/lib/request/create-vanity-url-request.d.ts +1 -1
  11. package/lib/request/delete-analytics-instance-request.d.ts +1 -1
  12. package/lib/request/delete-private-access-channel-request.d.ts +1 -1
  13. package/lib/request/delete-vanity-url-request.d.ts +1 -1
  14. package/lib/request/delete-work-request-request.d.ts +1 -1
  15. package/lib/request/get-analytics-instance-request.d.ts +1 -1
  16. package/lib/request/get-private-access-channel-request.d.ts +1 -1
  17. package/lib/request/get-work-request-request.d.ts +1 -1
  18. package/lib/request/list-analytics-instances-request.d.ts +1 -1
  19. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  20. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  21. package/lib/request/list-work-requests-request.d.ts +1 -1
  22. package/lib/request/scale-analytics-instance-request.d.ts +1 -1
  23. package/lib/request/set-kms-key-request.d.ts +1 -1
  24. package/lib/request/start-analytics-instance-request.d.ts +1 -1
  25. package/lib/request/stop-analytics-instance-request.d.ts +1 -1
  26. package/lib/request/update-analytics-instance-request.d.ts +1 -1
  27. package/lib/request/update-private-access-channel-request.d.ts +1 -1
  28. package/lib/request/update-vanity-url-request.d.ts +1 -1
  29. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -62,6 +62,7 @@ class AnalyticsClient {
62
62
  this["_defaultHeaders"] = {};
63
63
  this._circuitBreaker = null;
64
64
  this._httpOptions = undefined;
65
+ this.targetService = "Analytics";
65
66
  const requestSigner = params.authenticationDetailsProvider
66
67
  ? new common.DefaultRequestSigner(params.authenticationDetailsProvider)
67
68
  : null;
@@ -159,12 +160,14 @@ class AnalyticsClient {
159
160
  * @param ChangeAnalyticsInstanceCompartmentRequest
160
161
  * @return ChangeAnalyticsInstanceCompartmentResponse
161
162
  * @throws OciError when an error occurs
162
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/ChangeAnalyticsInstanceCompartment.ts.html |here} to see how to use ChangeAnalyticsInstanceCompartment API.
163
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/ChangeAnalyticsInstanceCompartment.ts.html |here} to see how to use ChangeAnalyticsInstanceCompartment API.
163
164
  */
164
165
  changeAnalyticsInstanceCompartment(changeAnalyticsInstanceCompartmentRequest) {
165
166
  return __awaiter(this, void 0, void 0, function* () {
166
167
  if (this.logger)
167
168
  this.logger.debug("Calling operation AnalyticsClient#changeAnalyticsInstanceCompartment.");
169
+ const operationName = "changeAnalyticsInstanceCompartment";
170
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/ChangeAnalyticsInstanceCompartment";
168
171
  const pathParams = {
169
172
  "{analyticsInstanceId}": changeAnalyticsInstanceCompartmentRequest.analyticsInstanceId
170
173
  };
@@ -190,7 +193,7 @@ class AnalyticsClient {
190
193
  queryParams: queryParams
191
194
  });
192
195
  try {
193
- const response = yield retrier.makeServiceCall(this._httpClient, request);
196
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
194
197
  const sdkResponse = oci_common_2.composeResponse({
195
198
  responseObject: {},
196
199
  responseHeaders: [
@@ -221,12 +224,14 @@ class AnalyticsClient {
221
224
  * @param ChangeAnalyticsInstanceNetworkEndpointRequest
222
225
  * @return ChangeAnalyticsInstanceNetworkEndpointResponse
223
226
  * @throws OciError when an error occurs
224
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/ChangeAnalyticsInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeAnalyticsInstanceNetworkEndpoint API.
227
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/ChangeAnalyticsInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeAnalyticsInstanceNetworkEndpoint API.
225
228
  */
226
229
  changeAnalyticsInstanceNetworkEndpoint(changeAnalyticsInstanceNetworkEndpointRequest) {
227
230
  return __awaiter(this, void 0, void 0, function* () {
228
231
  if (this.logger)
229
232
  this.logger.debug("Calling operation AnalyticsClient#changeAnalyticsInstanceNetworkEndpoint.");
233
+ const operationName = "changeAnalyticsInstanceNetworkEndpoint";
234
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/ChangeAnalyticsInstanceNetworkEndpoint";
230
235
  const pathParams = {
231
236
  "{analyticsInstanceId}": changeAnalyticsInstanceNetworkEndpointRequest.analyticsInstanceId
232
237
  };
@@ -252,7 +257,7 @@ class AnalyticsClient {
252
257
  queryParams: queryParams
253
258
  });
254
259
  try {
255
- const response = yield retrier.makeServiceCall(this._httpClient, request);
260
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
256
261
  const sdkResponse = oci_common_2.composeResponse({
257
262
  responseObject: {},
258
263
  responseHeaders: [
@@ -283,12 +288,14 @@ class AnalyticsClient {
283
288
  * @param CreateAnalyticsInstanceRequest
284
289
  * @return CreateAnalyticsInstanceResponse
285
290
  * @throws OciError when an error occurs
286
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/CreateAnalyticsInstance.ts.html |here} to see how to use CreateAnalyticsInstance API.
291
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/CreateAnalyticsInstance.ts.html |here} to see how to use CreateAnalyticsInstance API.
287
292
  */
288
293
  createAnalyticsInstance(createAnalyticsInstanceRequest) {
289
294
  return __awaiter(this, void 0, void 0, function* () {
290
295
  if (this.logger)
291
296
  this.logger.debug("Calling operation AnalyticsClient#createAnalyticsInstance.");
297
+ const operationName = "createAnalyticsInstance";
298
+ const apiReferenceLink = "";
292
299
  const pathParams = {};
293
300
  const queryParams = {};
294
301
  let headerParams = {
@@ -311,7 +318,7 @@ class AnalyticsClient {
311
318
  queryParams: queryParams
312
319
  });
313
320
  try {
314
- const response = yield retrier.makeServiceCall(this._httpClient, request);
321
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
315
322
  const sdkResponse = oci_common_2.composeResponse({
316
323
  responseObject: {},
317
324
  body: yield response.json(),
@@ -356,12 +363,14 @@ class AnalyticsClient {
356
363
  * @param CreatePrivateAccessChannelRequest
357
364
  * @return CreatePrivateAccessChannelResponse
358
365
  * @throws OciError when an error occurs
359
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/CreatePrivateAccessChannel.ts.html |here} to see how to use CreatePrivateAccessChannel API.
366
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/CreatePrivateAccessChannel.ts.html |here} to see how to use CreatePrivateAccessChannel API.
360
367
  */
361
368
  createPrivateAccessChannel(createPrivateAccessChannelRequest) {
362
369
  return __awaiter(this, void 0, void 0, function* () {
363
370
  if (this.logger)
364
371
  this.logger.debug("Calling operation AnalyticsClient#createPrivateAccessChannel.");
372
+ const operationName = "createPrivateAccessChannel";
373
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/CreatePrivateAccessChannel";
365
374
  const pathParams = {
366
375
  "{analyticsInstanceId}": createPrivateAccessChannelRequest.analyticsInstanceId
367
376
  };
@@ -386,7 +395,7 @@ class AnalyticsClient {
386
395
  queryParams: queryParams
387
396
  });
388
397
  try {
389
- const response = yield retrier.makeServiceCall(this._httpClient, request);
398
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
390
399
  const sdkResponse = oci_common_2.composeResponse({
391
400
  responseObject: {},
392
401
  responseHeaders: [
@@ -417,12 +426,14 @@ class AnalyticsClient {
417
426
  * @param CreateVanityUrlRequest
418
427
  * @return CreateVanityUrlResponse
419
428
  * @throws OciError when an error occurs
420
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/CreateVanityUrl.ts.html |here} to see how to use CreateVanityUrl API.
429
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/CreateVanityUrl.ts.html |here} to see how to use CreateVanityUrl API.
421
430
  */
422
431
  createVanityUrl(createVanityUrlRequest) {
423
432
  return __awaiter(this, void 0, void 0, function* () {
424
433
  if (this.logger)
425
434
  this.logger.debug("Calling operation AnalyticsClient#createVanityUrl.");
435
+ const operationName = "createVanityUrl";
436
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/CreateVanityUrl";
426
437
  const pathParams = {
427
438
  "{analyticsInstanceId}": createVanityUrlRequest.analyticsInstanceId
428
439
  };
@@ -447,7 +458,7 @@ class AnalyticsClient {
447
458
  queryParams: queryParams
448
459
  });
449
460
  try {
450
- const response = yield retrier.makeServiceCall(this._httpClient, request);
461
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
451
462
  const sdkResponse = oci_common_2.composeResponse({
452
463
  responseObject: {},
453
464
  responseHeaders: [
@@ -478,12 +489,14 @@ class AnalyticsClient {
478
489
  * @param DeleteAnalyticsInstanceRequest
479
490
  * @return DeleteAnalyticsInstanceResponse
480
491
  * @throws OciError when an error occurs
481
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/DeleteAnalyticsInstance.ts.html |here} to see how to use DeleteAnalyticsInstance API.
492
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/DeleteAnalyticsInstance.ts.html |here} to see how to use DeleteAnalyticsInstance API.
482
493
  */
483
494
  deleteAnalyticsInstance(deleteAnalyticsInstanceRequest) {
484
495
  return __awaiter(this, void 0, void 0, function* () {
485
496
  if (this.logger)
486
497
  this.logger.debug("Calling operation AnalyticsClient#deleteAnalyticsInstance.");
498
+ const operationName = "deleteAnalyticsInstance";
499
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/DeleteAnalyticsInstance";
487
500
  const pathParams = {
488
501
  "{analyticsInstanceId}": deleteAnalyticsInstanceRequest.analyticsInstanceId
489
502
  };
@@ -508,7 +521,7 @@ class AnalyticsClient {
508
521
  queryParams: queryParams
509
522
  });
510
523
  try {
511
- const response = yield retrier.makeServiceCall(this._httpClient, request);
524
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
512
525
  const sdkResponse = oci_common_2.composeResponse({
513
526
  responseObject: {},
514
527
  responseHeaders: [
@@ -538,12 +551,14 @@ class AnalyticsClient {
538
551
  * @param DeletePrivateAccessChannelRequest
539
552
  * @return DeletePrivateAccessChannelResponse
540
553
  * @throws OciError when an error occurs
541
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/DeletePrivateAccessChannel.ts.html |here} to see how to use DeletePrivateAccessChannel API.
554
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/DeletePrivateAccessChannel.ts.html |here} to see how to use DeletePrivateAccessChannel API.
542
555
  */
543
556
  deletePrivateAccessChannel(deletePrivateAccessChannelRequest) {
544
557
  return __awaiter(this, void 0, void 0, function* () {
545
558
  if (this.logger)
546
559
  this.logger.debug("Calling operation AnalyticsClient#deletePrivateAccessChannel.");
560
+ const operationName = "deletePrivateAccessChannel";
561
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/DeletePrivateAccessChannel";
547
562
  const pathParams = {
548
563
  "{privateAccessChannelKey}": deletePrivateAccessChannelRequest.privateAccessChannelKey,
549
564
  "{analyticsInstanceId}": deletePrivateAccessChannelRequest.analyticsInstanceId
@@ -569,7 +584,7 @@ class AnalyticsClient {
569
584
  queryParams: queryParams
570
585
  });
571
586
  try {
572
- const response = yield retrier.makeServiceCall(this._httpClient, request);
587
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
573
588
  const sdkResponse = oci_common_2.composeResponse({
574
589
  responseObject: {},
575
590
  responseHeaders: [
@@ -599,12 +614,14 @@ class AnalyticsClient {
599
614
  * @param DeleteVanityUrlRequest
600
615
  * @return DeleteVanityUrlResponse
601
616
  * @throws OciError when an error occurs
602
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/DeleteVanityUrl.ts.html |here} to see how to use DeleteVanityUrl API.
617
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/DeleteVanityUrl.ts.html |here} to see how to use DeleteVanityUrl API.
603
618
  */
604
619
  deleteVanityUrl(deleteVanityUrlRequest) {
605
620
  return __awaiter(this, void 0, void 0, function* () {
606
621
  if (this.logger)
607
622
  this.logger.debug("Calling operation AnalyticsClient#deleteVanityUrl.");
623
+ const operationName = "deleteVanityUrl";
624
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/DeleteVanityUrl";
608
625
  const pathParams = {
609
626
  "{analyticsInstanceId}": deleteVanityUrlRequest.analyticsInstanceId,
610
627
  "{vanityUrlKey}": deleteVanityUrlRequest.vanityUrlKey
@@ -630,7 +647,7 @@ class AnalyticsClient {
630
647
  queryParams: queryParams
631
648
  });
632
649
  try {
633
- const response = yield retrier.makeServiceCall(this._httpClient, request);
650
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
634
651
  const sdkResponse = oci_common_2.composeResponse({
635
652
  responseObject: {},
636
653
  responseHeaders: [
@@ -660,12 +677,14 @@ class AnalyticsClient {
660
677
  * @param DeleteWorkRequestRequest
661
678
  * @return DeleteWorkRequestResponse
662
679
  * @throws OciError when an error occurs
663
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
680
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
664
681
  */
665
682
  deleteWorkRequest(deleteWorkRequestRequest) {
666
683
  return __awaiter(this, void 0, void 0, function* () {
667
684
  if (this.logger)
668
685
  this.logger.debug("Calling operation AnalyticsClient#deleteWorkRequest.");
686
+ const operationName = "deleteWorkRequest";
687
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequest/DeleteWorkRequest";
669
688
  const pathParams = {
670
689
  "{workRequestId}": deleteWorkRequestRequest.workRequestId
671
690
  };
@@ -689,7 +708,7 @@ class AnalyticsClient {
689
708
  queryParams: queryParams
690
709
  });
691
710
  try {
692
- const response = yield retrier.makeServiceCall(this._httpClient, request);
711
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
693
712
  const sdkResponse = oci_common_2.composeResponse({
694
713
  responseObject: {},
695
714
  responseHeaders: [
@@ -714,12 +733,14 @@ class AnalyticsClient {
714
733
  * @param GetAnalyticsInstanceRequest
715
734
  * @return GetAnalyticsInstanceResponse
716
735
  * @throws OciError when an error occurs
717
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/GetAnalyticsInstance.ts.html |here} to see how to use GetAnalyticsInstance API.
736
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/GetAnalyticsInstance.ts.html |here} to see how to use GetAnalyticsInstance API.
718
737
  */
719
738
  getAnalyticsInstance(getAnalyticsInstanceRequest) {
720
739
  return __awaiter(this, void 0, void 0, function* () {
721
740
  if (this.logger)
722
741
  this.logger.debug("Calling operation AnalyticsClient#getAnalyticsInstance.");
742
+ const operationName = "getAnalyticsInstance";
743
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/GetAnalyticsInstance";
723
744
  const pathParams = {
724
745
  "{analyticsInstanceId}": getAnalyticsInstanceRequest.analyticsInstanceId
725
746
  };
@@ -742,7 +763,7 @@ class AnalyticsClient {
742
763
  queryParams: queryParams
743
764
  });
744
765
  try {
745
- const response = yield retrier.makeServiceCall(this._httpClient, request);
766
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
746
767
  const sdkResponse = oci_common_2.composeResponse({
747
768
  responseObject: {},
748
769
  body: yield response.json(),
@@ -776,12 +797,14 @@ class AnalyticsClient {
776
797
  * @param GetPrivateAccessChannelRequest
777
798
  * @return GetPrivateAccessChannelResponse
778
799
  * @throws OciError when an error occurs
779
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/GetPrivateAccessChannel.ts.html |here} to see how to use GetPrivateAccessChannel API.
800
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/GetPrivateAccessChannel.ts.html |here} to see how to use GetPrivateAccessChannel API.
780
801
  */
781
802
  getPrivateAccessChannel(getPrivateAccessChannelRequest) {
782
803
  return __awaiter(this, void 0, void 0, function* () {
783
804
  if (this.logger)
784
805
  this.logger.debug("Calling operation AnalyticsClient#getPrivateAccessChannel.");
806
+ const operationName = "getPrivateAccessChannel";
807
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/GetPrivateAccessChannel";
785
808
  const pathParams = {
786
809
  "{privateAccessChannelKey}": getPrivateAccessChannelRequest.privateAccessChannelKey,
787
810
  "{analyticsInstanceId}": getPrivateAccessChannelRequest.analyticsInstanceId
@@ -805,7 +828,7 @@ class AnalyticsClient {
805
828
  queryParams: queryParams
806
829
  });
807
830
  try {
808
- const response = yield retrier.makeServiceCall(this._httpClient, request);
831
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
809
832
  const sdkResponse = oci_common_2.composeResponse({
810
833
  responseObject: {},
811
834
  body: yield response.json(),
@@ -839,12 +862,14 @@ class AnalyticsClient {
839
862
  * @param GetWorkRequestRequest
840
863
  * @return GetWorkRequestResponse
841
864
  * @throws OciError when an error occurs
842
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
865
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
843
866
  */
844
867
  getWorkRequest(getWorkRequestRequest) {
845
868
  return __awaiter(this, void 0, void 0, function* () {
846
869
  if (this.logger)
847
870
  this.logger.debug("Calling operation AnalyticsClient#getWorkRequest.");
871
+ const operationName = "getWorkRequest";
872
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequest/GetWorkRequest";
848
873
  const pathParams = {
849
874
  "{workRequestId}": getWorkRequestRequest.workRequestId
850
875
  };
@@ -867,7 +892,7 @@ class AnalyticsClient {
867
892
  queryParams: queryParams
868
893
  });
869
894
  try {
870
- const response = yield retrier.makeServiceCall(this._httpClient, request);
895
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
871
896
  const sdkResponse = oci_common_2.composeResponse({
872
897
  responseObject: {},
873
898
  body: yield response.json(),
@@ -906,12 +931,14 @@ class AnalyticsClient {
906
931
  * @param ListAnalyticsInstancesRequest
907
932
  * @return ListAnalyticsInstancesResponse
908
933
  * @throws OciError when an error occurs
909
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/ListAnalyticsInstances.ts.html |here} to see how to use ListAnalyticsInstances API.
934
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/ListAnalyticsInstances.ts.html |here} to see how to use ListAnalyticsInstances API.
910
935
  */
911
936
  listAnalyticsInstances(listAnalyticsInstancesRequest) {
912
937
  return __awaiter(this, void 0, void 0, function* () {
913
938
  if (this.logger)
914
939
  this.logger.debug("Calling operation AnalyticsClient#listAnalyticsInstances.");
940
+ const operationName = "listAnalyticsInstances";
941
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstanceSummary/ListAnalyticsInstances";
915
942
  const pathParams = {};
916
943
  const queryParams = {
917
944
  "compartmentId": listAnalyticsInstancesRequest.compartmentId,
@@ -942,7 +969,7 @@ class AnalyticsClient {
942
969
  queryParams: queryParams
943
970
  });
944
971
  try {
945
- const response = yield retrier.makeServiceCall(this._httpClient, request);
972
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
946
973
  const sdkResponse = oci_common_2.composeResponse({
947
974
  responseObject: {},
948
975
  body: yield response.json(),
@@ -1016,12 +1043,14 @@ class AnalyticsClient {
1016
1043
  * @param ListWorkRequestErrorsRequest
1017
1044
  * @return ListWorkRequestErrorsResponse
1018
1045
  * @throws OciError when an error occurs
1019
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1046
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
1020
1047
  */
1021
1048
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
1022
1049
  return __awaiter(this, void 0, void 0, function* () {
1023
1050
  if (this.logger)
1024
1051
  this.logger.debug("Calling operation AnalyticsClient#listWorkRequestErrors.");
1052
+ const operationName = "listWorkRequestErrors";
1053
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequestError/ListWorkRequestErrors";
1025
1054
  const pathParams = {
1026
1055
  "{workRequestId}": listWorkRequestErrorsRequest.workRequestId
1027
1056
  };
@@ -1047,7 +1076,7 @@ class AnalyticsClient {
1047
1076
  queryParams: queryParams
1048
1077
  });
1049
1078
  try {
1050
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1079
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1051
1080
  const sdkResponse = oci_common_2.composeResponse({
1052
1081
  responseObject: {},
1053
1082
  body: yield response.json(),
@@ -1121,12 +1150,14 @@ class AnalyticsClient {
1121
1150
  * @param ListWorkRequestLogsRequest
1122
1151
  * @return ListWorkRequestLogsResponse
1123
1152
  * @throws OciError when an error occurs
1124
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1153
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
1125
1154
  */
1126
1155
  listWorkRequestLogs(listWorkRequestLogsRequest) {
1127
1156
  return __awaiter(this, void 0, void 0, function* () {
1128
1157
  if (this.logger)
1129
1158
  this.logger.debug("Calling operation AnalyticsClient#listWorkRequestLogs.");
1159
+ const operationName = "listWorkRequestLogs";
1160
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequestLog/ListWorkRequestLogs";
1130
1161
  const pathParams = {
1131
1162
  "{workRequestId}": listWorkRequestLogsRequest.workRequestId
1132
1163
  };
@@ -1152,7 +1183,7 @@ class AnalyticsClient {
1152
1183
  queryParams: queryParams
1153
1184
  });
1154
1185
  try {
1155
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1186
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1156
1187
  const sdkResponse = oci_common_2.composeResponse({
1157
1188
  responseObject: {},
1158
1189
  body: yield response.json(),
@@ -1226,12 +1257,14 @@ class AnalyticsClient {
1226
1257
  * @param ListWorkRequestsRequest
1227
1258
  * @return ListWorkRequestsResponse
1228
1259
  * @throws OciError when an error occurs
1229
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1260
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
1230
1261
  */
1231
1262
  listWorkRequests(listWorkRequestsRequest) {
1232
1263
  return __awaiter(this, void 0, void 0, function* () {
1233
1264
  if (this.logger)
1234
1265
  this.logger.debug("Calling operation AnalyticsClient#listWorkRequests.");
1266
+ const operationName = "listWorkRequests";
1267
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/WorkRequestSummary/ListWorkRequests";
1235
1268
  const pathParams = {};
1236
1269
  const queryParams = {
1237
1270
  "compartmentId": listWorkRequestsRequest.compartmentId,
@@ -1261,7 +1294,7 @@ class AnalyticsClient {
1261
1294
  queryParams: queryParams
1262
1295
  });
1263
1296
  try {
1264
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1297
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1265
1298
  const sdkResponse = oci_common_2.composeResponse({
1266
1299
  responseObject: {},
1267
1300
  body: yield response.json(),
@@ -1336,12 +1369,14 @@ class AnalyticsClient {
1336
1369
  * @param ScaleAnalyticsInstanceRequest
1337
1370
  * @return ScaleAnalyticsInstanceResponse
1338
1371
  * @throws OciError when an error occurs
1339
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/ScaleAnalyticsInstance.ts.html |here} to see how to use ScaleAnalyticsInstance API.
1372
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/ScaleAnalyticsInstance.ts.html |here} to see how to use ScaleAnalyticsInstance API.
1340
1373
  */
1341
1374
  scaleAnalyticsInstance(scaleAnalyticsInstanceRequest) {
1342
1375
  return __awaiter(this, void 0, void 0, function* () {
1343
1376
  if (this.logger)
1344
1377
  this.logger.debug("Calling operation AnalyticsClient#scaleAnalyticsInstance.");
1378
+ const operationName = "scaleAnalyticsInstance";
1379
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/ScaleAnalyticsInstance";
1345
1380
  const pathParams = {
1346
1381
  "{analyticsInstanceId}": scaleAnalyticsInstanceRequest.analyticsInstanceId
1347
1382
  };
@@ -1367,7 +1402,7 @@ class AnalyticsClient {
1367
1402
  queryParams: queryParams
1368
1403
  });
1369
1404
  try {
1370
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1405
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1371
1406
  const sdkResponse = oci_common_2.composeResponse({
1372
1407
  responseObject: {},
1373
1408
  responseHeaders: [
@@ -1397,12 +1432,14 @@ class AnalyticsClient {
1397
1432
  * @param SetKmsKeyRequest
1398
1433
  * @return SetKmsKeyResponse
1399
1434
  * @throws OciError when an error occurs
1400
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/SetKmsKey.ts.html |here} to see how to use SetKmsKey API.
1435
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/SetKmsKey.ts.html |here} to see how to use SetKmsKey API.
1401
1436
  */
1402
1437
  setKmsKey(setKmsKeyRequest) {
1403
1438
  return __awaiter(this, void 0, void 0, function* () {
1404
1439
  if (this.logger)
1405
1440
  this.logger.debug("Calling operation AnalyticsClient#setKmsKey.");
1441
+ const operationName = "setKmsKey";
1442
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/SetKmsKey";
1406
1443
  const pathParams = {
1407
1444
  "{analyticsInstanceId}": setKmsKeyRequest.analyticsInstanceId
1408
1445
  };
@@ -1428,7 +1465,7 @@ class AnalyticsClient {
1428
1465
  queryParams: queryParams
1429
1466
  });
1430
1467
  try {
1431
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1468
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1432
1469
  const sdkResponse = oci_common_2.composeResponse({
1433
1470
  responseObject: {},
1434
1471
  responseHeaders: [
@@ -1459,12 +1496,14 @@ class AnalyticsClient {
1459
1496
  * @param StartAnalyticsInstanceRequest
1460
1497
  * @return StartAnalyticsInstanceResponse
1461
1498
  * @throws OciError when an error occurs
1462
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/StartAnalyticsInstance.ts.html |here} to see how to use StartAnalyticsInstance API.
1499
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/StartAnalyticsInstance.ts.html |here} to see how to use StartAnalyticsInstance API.
1463
1500
  */
1464
1501
  startAnalyticsInstance(startAnalyticsInstanceRequest) {
1465
1502
  return __awaiter(this, void 0, void 0, function* () {
1466
1503
  if (this.logger)
1467
1504
  this.logger.debug("Calling operation AnalyticsClient#startAnalyticsInstance.");
1505
+ const operationName = "startAnalyticsInstance";
1506
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/StartAnalyticsInstance";
1468
1507
  const pathParams = {
1469
1508
  "{analyticsInstanceId}": startAnalyticsInstanceRequest.analyticsInstanceId
1470
1509
  };
@@ -1489,7 +1528,7 @@ class AnalyticsClient {
1489
1528
  queryParams: queryParams
1490
1529
  });
1491
1530
  try {
1492
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1531
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1493
1532
  const sdkResponse = oci_common_2.composeResponse({
1494
1533
  responseObject: {},
1495
1534
  responseHeaders: [
@@ -1520,12 +1559,14 @@ class AnalyticsClient {
1520
1559
  * @param StopAnalyticsInstanceRequest
1521
1560
  * @return StopAnalyticsInstanceResponse
1522
1561
  * @throws OciError when an error occurs
1523
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/StopAnalyticsInstance.ts.html |here} to see how to use StopAnalyticsInstance API.
1562
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/StopAnalyticsInstance.ts.html |here} to see how to use StopAnalyticsInstance API.
1524
1563
  */
1525
1564
  stopAnalyticsInstance(stopAnalyticsInstanceRequest) {
1526
1565
  return __awaiter(this, void 0, void 0, function* () {
1527
1566
  if (this.logger)
1528
1567
  this.logger.debug("Calling operation AnalyticsClient#stopAnalyticsInstance.");
1568
+ const operationName = "stopAnalyticsInstance";
1569
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/StopAnalyticsInstance";
1529
1570
  const pathParams = {
1530
1571
  "{analyticsInstanceId}": stopAnalyticsInstanceRequest.analyticsInstanceId
1531
1572
  };
@@ -1550,7 +1591,7 @@ class AnalyticsClient {
1550
1591
  queryParams: queryParams
1551
1592
  });
1552
1593
  try {
1553
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1594
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1554
1595
  const sdkResponse = oci_common_2.composeResponse({
1555
1596
  responseObject: {},
1556
1597
  responseHeaders: [
@@ -1581,12 +1622,14 @@ class AnalyticsClient {
1581
1622
  * @param UpdateAnalyticsInstanceRequest
1582
1623
  * @return UpdateAnalyticsInstanceResponse
1583
1624
  * @throws OciError when an error occurs
1584
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/UpdateAnalyticsInstance.ts.html |here} to see how to use UpdateAnalyticsInstance API.
1625
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/UpdateAnalyticsInstance.ts.html |here} to see how to use UpdateAnalyticsInstance API.
1585
1626
  */
1586
1627
  updateAnalyticsInstance(updateAnalyticsInstanceRequest) {
1587
1628
  return __awaiter(this, void 0, void 0, function* () {
1588
1629
  if (this.logger)
1589
1630
  this.logger.debug("Calling operation AnalyticsClient#updateAnalyticsInstance.");
1631
+ const operationName = "updateAnalyticsInstance";
1632
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/UpdateAnalyticsInstance";
1590
1633
  const pathParams = {
1591
1634
  "{analyticsInstanceId}": updateAnalyticsInstanceRequest.analyticsInstanceId
1592
1635
  };
@@ -1611,7 +1654,7 @@ class AnalyticsClient {
1611
1654
  queryParams: queryParams
1612
1655
  });
1613
1656
  try {
1614
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1657
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1615
1658
  const sdkResponse = oci_common_2.composeResponse({
1616
1659
  responseObject: {},
1617
1660
  body: yield response.json(),
@@ -1645,12 +1688,14 @@ class AnalyticsClient {
1645
1688
  * @param UpdatePrivateAccessChannelRequest
1646
1689
  * @return UpdatePrivateAccessChannelResponse
1647
1690
  * @throws OciError when an error occurs
1648
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/UpdatePrivateAccessChannel.ts.html |here} to see how to use UpdatePrivateAccessChannel API.
1691
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/UpdatePrivateAccessChannel.ts.html |here} to see how to use UpdatePrivateAccessChannel API.
1649
1692
  */
1650
1693
  updatePrivateAccessChannel(updatePrivateAccessChannelRequest) {
1651
1694
  return __awaiter(this, void 0, void 0, function* () {
1652
1695
  if (this.logger)
1653
1696
  this.logger.debug("Calling operation AnalyticsClient#updatePrivateAccessChannel.");
1697
+ const operationName = "updatePrivateAccessChannel";
1698
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/UpdatePrivateAccessChannel";
1654
1699
  const pathParams = {
1655
1700
  "{privateAccessChannelKey}": updatePrivateAccessChannelRequest.privateAccessChannelKey,
1656
1701
  "{analyticsInstanceId}": updatePrivateAccessChannelRequest.analyticsInstanceId
@@ -1677,7 +1722,7 @@ class AnalyticsClient {
1677
1722
  queryParams: queryParams
1678
1723
  });
1679
1724
  try {
1680
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1725
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1681
1726
  const sdkResponse = oci_common_2.composeResponse({
1682
1727
  responseObject: {},
1683
1728
  responseHeaders: [
@@ -1707,12 +1752,14 @@ class AnalyticsClient {
1707
1752
  * @param UpdateVanityUrlRequest
1708
1753
  * @return UpdateVanityUrlResponse
1709
1754
  * @throws OciError when an error occurs
1710
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/analytics/UpdateVanityUrl.ts.html |here} to see how to use UpdateVanityUrl API.
1755
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.29.0/analytics/UpdateVanityUrl.ts.html |here} to see how to use UpdateVanityUrl API.
1711
1756
  */
1712
1757
  updateVanityUrl(updateVanityUrlRequest) {
1713
1758
  return __awaiter(this, void 0, void 0, function* () {
1714
1759
  if (this.logger)
1715
1760
  this.logger.debug("Calling operation AnalyticsClient#updateVanityUrl.");
1761
+ const operationName = "updateVanityUrl";
1762
+ const apiReferenceLink = "https://docs.oracle.com/iaas/api/#/en/analytics/20190331/AnalyticsInstance/UpdateVanityUrl";
1716
1763
  const pathParams = {
1717
1764
  "{analyticsInstanceId}": updateVanityUrlRequest.analyticsInstanceId,
1718
1765
  "{vanityUrlKey}": updateVanityUrlRequest.vanityUrlKey
@@ -1739,7 +1786,7 @@ class AnalyticsClient {
1739
1786
  queryParams: queryParams
1740
1787
  });
1741
1788
  try {
1742
- const response = yield retrier.makeServiceCall(this._httpClient, request);
1789
+ const response = yield retrier.makeServiceCall(this._httpClient, request, this.targetService, operationName, apiReferenceLink);
1743
1790
  const sdkResponse = oci_common_2.composeResponse({
1744
1791
  responseObject: {},
1745
1792
  responseHeaders: [