oci-analytics 2.53.1 → 2.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +44 -44
- package/lib/client.js +65 -65
- package/lib/client.js.map +1 -1
- package/lib/request/change-analytics-instance-compartment-request.d.ts +1 -1
- package/lib/request/change-analytics-instance-network-endpoint-request.d.ts +1 -1
- package/lib/request/create-analytics-instance-request.d.ts +1 -1
- package/lib/request/create-private-access-channel-request.d.ts +1 -1
- package/lib/request/create-vanity-url-request.d.ts +1 -1
- package/lib/request/delete-analytics-instance-request.d.ts +1 -1
- package/lib/request/delete-private-access-channel-request.d.ts +1 -1
- package/lib/request/delete-vanity-url-request.d.ts +1 -1
- package/lib/request/delete-work-request-request.d.ts +1 -1
- package/lib/request/get-analytics-instance-request.d.ts +1 -1
- package/lib/request/get-private-access-channel-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-analytics-instances-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/scale-analytics-instance-request.d.ts +1 -1
- package/lib/request/set-kms-key-request.d.ts +1 -1
- package/lib/request/start-analytics-instance-request.d.ts +1 -1
- package/lib/request/stop-analytics-instance-request.d.ts +1 -1
- package/lib/request/update-analytics-instance-request.d.ts +1 -1
- package/lib/request/update-private-access-channel-request.d.ts +1 -1
- package/lib/request/update-vanity-url-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -156,11 +156,11 @@ class AnalyticsClient {
|
|
|
156
156
|
* Change the compartment of an Analytics instance. The operation is long-running
|
|
157
157
|
* and creates a new WorkRequest.
|
|
158
158
|
*
|
|
159
|
-
* This operation
|
|
159
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
160
160
|
* @param ChangeAnalyticsInstanceCompartmentRequest
|
|
161
161
|
* @return ChangeAnalyticsInstanceCompartmentResponse
|
|
162
162
|
* @throws OciError when an error occurs
|
|
163
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
163
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/ChangeAnalyticsInstanceCompartment.ts.html |here} to see how to use ChangeAnalyticsInstanceCompartment API.
|
|
164
164
|
*/
|
|
165
165
|
changeAnalyticsInstanceCompartment(changeAnalyticsInstanceCompartmentRequest) {
|
|
166
166
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -178,7 +178,7 @@ class AnalyticsClient {
|
|
|
178
178
|
"opc-request-id": changeAnalyticsInstanceCompartmentRequest.opcRequestId,
|
|
179
179
|
"opc-retry-token": changeAnalyticsInstanceCompartmentRequest.opcRetryToken
|
|
180
180
|
};
|
|
181
|
-
const specRetryConfiguration = common.
|
|
181
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
182
182
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeAnalyticsInstanceCompartmentRequest.retryConfiguration, specRetryConfiguration);
|
|
183
183
|
if (this.logger)
|
|
184
184
|
retrier.logger = this.logger;
|
|
@@ -220,11 +220,11 @@ class AnalyticsClient {
|
|
|
220
220
|
* Change an Analytics instance network endpoint. The operation is long-running
|
|
221
221
|
* and creates a new WorkRequest.
|
|
222
222
|
*
|
|
223
|
-
* This operation
|
|
223
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
224
224
|
* @param ChangeAnalyticsInstanceNetworkEndpointRequest
|
|
225
225
|
* @return ChangeAnalyticsInstanceNetworkEndpointResponse
|
|
226
226
|
* @throws OciError when an error occurs
|
|
227
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
227
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/ChangeAnalyticsInstanceNetworkEndpoint.ts.html |here} to see how to use ChangeAnalyticsInstanceNetworkEndpoint API.
|
|
228
228
|
*/
|
|
229
229
|
changeAnalyticsInstanceNetworkEndpoint(changeAnalyticsInstanceNetworkEndpointRequest) {
|
|
230
230
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -242,7 +242,7 @@ class AnalyticsClient {
|
|
|
242
242
|
"opc-request-id": changeAnalyticsInstanceNetworkEndpointRequest.opcRequestId,
|
|
243
243
|
"opc-retry-token": changeAnalyticsInstanceNetworkEndpointRequest.opcRetryToken
|
|
244
244
|
};
|
|
245
|
-
const specRetryConfiguration = common.
|
|
245
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
246
246
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, changeAnalyticsInstanceNetworkEndpointRequest.retryConfiguration, specRetryConfiguration);
|
|
247
247
|
if (this.logger)
|
|
248
248
|
retrier.logger = this.logger;
|
|
@@ -284,11 +284,11 @@ class AnalyticsClient {
|
|
|
284
284
|
* Create a new AnalyticsInstance in the specified compartment. The operation is long-running
|
|
285
285
|
* and creates a new WorkRequest.
|
|
286
286
|
*
|
|
287
|
-
* This operation
|
|
287
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
288
288
|
* @param CreateAnalyticsInstanceRequest
|
|
289
289
|
* @return CreateAnalyticsInstanceResponse
|
|
290
290
|
* @throws OciError when an error occurs
|
|
291
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
291
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/CreateAnalyticsInstance.ts.html |here} to see how to use CreateAnalyticsInstance API.
|
|
292
292
|
*/
|
|
293
293
|
createAnalyticsInstance(createAnalyticsInstanceRequest) {
|
|
294
294
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -303,7 +303,7 @@ class AnalyticsClient {
|
|
|
303
303
|
"opc-request-id": createAnalyticsInstanceRequest.opcRequestId,
|
|
304
304
|
"opc-retry-token": createAnalyticsInstanceRequest.opcRetryToken
|
|
305
305
|
};
|
|
306
|
-
const specRetryConfiguration = common.
|
|
306
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
307
307
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
308
308
|
if (this.logger)
|
|
309
309
|
retrier.logger = this.logger;
|
|
@@ -359,11 +359,11 @@ class AnalyticsClient {
|
|
|
359
359
|
* Create an Private access Channel for the Analytics instance. The operation is long-running
|
|
360
360
|
* and creates a new WorkRequest.
|
|
361
361
|
*
|
|
362
|
-
* This operation
|
|
362
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
363
363
|
* @param CreatePrivateAccessChannelRequest
|
|
364
364
|
* @return CreatePrivateAccessChannelResponse
|
|
365
365
|
* @throws OciError when an error occurs
|
|
366
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
366
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/CreatePrivateAccessChannel.ts.html |here} to see how to use CreatePrivateAccessChannel API.
|
|
367
367
|
*/
|
|
368
368
|
createPrivateAccessChannel(createPrivateAccessChannelRequest) {
|
|
369
369
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -380,7 +380,7 @@ class AnalyticsClient {
|
|
|
380
380
|
"opc-request-id": createPrivateAccessChannelRequest.opcRequestId,
|
|
381
381
|
"opc-retry-token": createPrivateAccessChannelRequest.opcRetryToken
|
|
382
382
|
};
|
|
383
|
-
const specRetryConfiguration = common.
|
|
383
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
384
384
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createPrivateAccessChannelRequest.retryConfiguration, specRetryConfiguration);
|
|
385
385
|
if (this.logger)
|
|
386
386
|
retrier.logger = this.logger;
|
|
@@ -422,11 +422,11 @@ class AnalyticsClient {
|
|
|
422
422
|
* Allows specifying a custom host name to be used to access the analytics instance. This requires prior setup of DNS entry and certificate
|
|
423
423
|
* for this host.
|
|
424
424
|
*
|
|
425
|
-
* This operation
|
|
425
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
426
426
|
* @param CreateVanityUrlRequest
|
|
427
427
|
* @return CreateVanityUrlResponse
|
|
428
428
|
* @throws OciError when an error occurs
|
|
429
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
429
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/CreateVanityUrl.ts.html |here} to see how to use CreateVanityUrl API.
|
|
430
430
|
*/
|
|
431
431
|
createVanityUrl(createVanityUrlRequest) {
|
|
432
432
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -443,7 +443,7 @@ class AnalyticsClient {
|
|
|
443
443
|
"opc-request-id": createVanityUrlRequest.opcRequestId,
|
|
444
444
|
"opc-retry-token": createVanityUrlRequest.opcRetryToken
|
|
445
445
|
};
|
|
446
|
-
const specRetryConfiguration = common.
|
|
446
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
447
447
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createVanityUrlRequest.retryConfiguration, specRetryConfiguration);
|
|
448
448
|
if (this.logger)
|
|
449
449
|
retrier.logger = this.logger;
|
|
@@ -485,11 +485,11 @@ class AnalyticsClient {
|
|
|
485
485
|
* Terminates the specified Analytics instance. The operation is long-running
|
|
486
486
|
* and creates a new WorkRequest.
|
|
487
487
|
*
|
|
488
|
-
* This operation
|
|
488
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
489
489
|
* @param DeleteAnalyticsInstanceRequest
|
|
490
490
|
* @return DeleteAnalyticsInstanceResponse
|
|
491
491
|
* @throws OciError when an error occurs
|
|
492
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
492
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/DeleteAnalyticsInstance.ts.html |here} to see how to use DeleteAnalyticsInstance API.
|
|
493
493
|
*/
|
|
494
494
|
deleteAnalyticsInstance(deleteAnalyticsInstanceRequest) {
|
|
495
495
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -507,7 +507,7 @@ class AnalyticsClient {
|
|
|
507
507
|
"opc-request-id": deleteAnalyticsInstanceRequest.opcRequestId,
|
|
508
508
|
"opc-retry-token": deleteAnalyticsInstanceRequest.opcRetryToken
|
|
509
509
|
};
|
|
510
|
-
const specRetryConfiguration = common.
|
|
510
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
511
511
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
512
512
|
if (this.logger)
|
|
513
513
|
retrier.logger = this.logger;
|
|
@@ -547,11 +547,11 @@ class AnalyticsClient {
|
|
|
547
547
|
/**
|
|
548
548
|
* Delete an Analytics instance's Private access channel with the given unique identifier key.
|
|
549
549
|
*
|
|
550
|
-
* This operation
|
|
550
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
551
551
|
* @param DeletePrivateAccessChannelRequest
|
|
552
552
|
* @return DeletePrivateAccessChannelResponse
|
|
553
553
|
* @throws OciError when an error occurs
|
|
554
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
554
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/DeletePrivateAccessChannel.ts.html |here} to see how to use DeletePrivateAccessChannel API.
|
|
555
555
|
*/
|
|
556
556
|
deletePrivateAccessChannel(deletePrivateAccessChannelRequest) {
|
|
557
557
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -570,7 +570,7 @@ class AnalyticsClient {
|
|
|
570
570
|
"opc-request-id": deletePrivateAccessChannelRequest.opcRequestId,
|
|
571
571
|
"opc-retry-token": deletePrivateAccessChannelRequest.opcRetryToken
|
|
572
572
|
};
|
|
573
|
-
const specRetryConfiguration = common.
|
|
573
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
574
574
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deletePrivateAccessChannelRequest.retryConfiguration, specRetryConfiguration);
|
|
575
575
|
if (this.logger)
|
|
576
576
|
retrier.logger = this.logger;
|
|
@@ -610,11 +610,11 @@ class AnalyticsClient {
|
|
|
610
610
|
/**
|
|
611
611
|
* Allows deleting a previously created vanity url.
|
|
612
612
|
*
|
|
613
|
-
* This operation
|
|
613
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
614
614
|
* @param DeleteVanityUrlRequest
|
|
615
615
|
* @return DeleteVanityUrlResponse
|
|
616
616
|
* @throws OciError when an error occurs
|
|
617
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
617
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/DeleteVanityUrl.ts.html |here} to see how to use DeleteVanityUrl API.
|
|
618
618
|
*/
|
|
619
619
|
deleteVanityUrl(deleteVanityUrlRequest) {
|
|
620
620
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -633,7 +633,7 @@ class AnalyticsClient {
|
|
|
633
633
|
"opc-request-id": deleteVanityUrlRequest.opcRequestId,
|
|
634
634
|
"opc-retry-token": deleteVanityUrlRequest.opcRetryToken
|
|
635
635
|
};
|
|
636
|
-
const specRetryConfiguration = common.
|
|
636
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
637
637
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, deleteVanityUrlRequest.retryConfiguration, specRetryConfiguration);
|
|
638
638
|
if (this.logger)
|
|
639
639
|
retrier.logger = this.logger;
|
|
@@ -677,7 +677,7 @@ class AnalyticsClient {
|
|
|
677
677
|
* @param DeleteWorkRequestRequest
|
|
678
678
|
* @return DeleteWorkRequestResponse
|
|
679
679
|
* @throws OciError when an error occurs
|
|
680
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
680
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/DeleteWorkRequest.ts.html |here} to see how to use DeleteWorkRequest API.
|
|
681
681
|
*/
|
|
682
682
|
deleteWorkRequest(deleteWorkRequestRequest) {
|
|
683
683
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -729,11 +729,11 @@ class AnalyticsClient {
|
|
|
729
729
|
/**
|
|
730
730
|
* Info for a specific Analytics instance.
|
|
731
731
|
*
|
|
732
|
-
* This operation
|
|
732
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
733
733
|
* @param GetAnalyticsInstanceRequest
|
|
734
734
|
* @return GetAnalyticsInstanceResponse
|
|
735
735
|
* @throws OciError when an error occurs
|
|
736
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
736
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/GetAnalyticsInstance.ts.html |here} to see how to use GetAnalyticsInstance API.
|
|
737
737
|
*/
|
|
738
738
|
getAnalyticsInstance(getAnalyticsInstanceRequest) {
|
|
739
739
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -749,7 +749,7 @@ class AnalyticsClient {
|
|
|
749
749
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
750
750
|
"opc-request-id": getAnalyticsInstanceRequest.opcRequestId
|
|
751
751
|
};
|
|
752
|
-
const specRetryConfiguration = common.
|
|
752
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
753
753
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
754
754
|
if (this.logger)
|
|
755
755
|
retrier.logger = this.logger;
|
|
@@ -793,11 +793,11 @@ class AnalyticsClient {
|
|
|
793
793
|
/**
|
|
794
794
|
* Retrieve private access channel in the specified Analytics Instance.
|
|
795
795
|
*
|
|
796
|
-
* This operation
|
|
796
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
797
797
|
* @param GetPrivateAccessChannelRequest
|
|
798
798
|
* @return GetPrivateAccessChannelResponse
|
|
799
799
|
* @throws OciError when an error occurs
|
|
800
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
800
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/GetPrivateAccessChannel.ts.html |here} to see how to use GetPrivateAccessChannel API.
|
|
801
801
|
*/
|
|
802
802
|
getPrivateAccessChannel(getPrivateAccessChannelRequest) {
|
|
803
803
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -814,7 +814,7 @@ class AnalyticsClient {
|
|
|
814
814
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
815
815
|
"opc-request-id": getPrivateAccessChannelRequest.opcRequestId
|
|
816
816
|
};
|
|
817
|
-
const specRetryConfiguration = common.
|
|
817
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
818
818
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getPrivateAccessChannelRequest.retryConfiguration, specRetryConfiguration);
|
|
819
819
|
if (this.logger)
|
|
820
820
|
retrier.logger = this.logger;
|
|
@@ -858,11 +858,11 @@ class AnalyticsClient {
|
|
|
858
858
|
/**
|
|
859
859
|
* Get the details of a work request.
|
|
860
860
|
*
|
|
861
|
-
* This operation
|
|
861
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
862
862
|
* @param GetWorkRequestRequest
|
|
863
863
|
* @return GetWorkRequestResponse
|
|
864
864
|
* @throws OciError when an error occurs
|
|
865
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
865
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
866
866
|
*/
|
|
867
867
|
getWorkRequest(getWorkRequestRequest) {
|
|
868
868
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -878,7 +878,7 @@ class AnalyticsClient {
|
|
|
878
878
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
879
879
|
"opc-request-id": getWorkRequestRequest.opcRequestId
|
|
880
880
|
};
|
|
881
|
-
const specRetryConfiguration = common.
|
|
881
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
882
882
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getWorkRequestRequest.retryConfiguration, specRetryConfiguration);
|
|
883
883
|
if (this.logger)
|
|
884
884
|
retrier.logger = this.logger;
|
|
@@ -927,11 +927,11 @@ class AnalyticsClient {
|
|
|
927
927
|
/**
|
|
928
928
|
* List Analytics instances.
|
|
929
929
|
*
|
|
930
|
-
* This operation
|
|
930
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
931
931
|
* @param ListAnalyticsInstancesRequest
|
|
932
932
|
* @return ListAnalyticsInstancesResponse
|
|
933
933
|
* @throws OciError when an error occurs
|
|
934
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
934
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/ListAnalyticsInstances.ts.html |here} to see how to use ListAnalyticsInstances API.
|
|
935
935
|
*/
|
|
936
936
|
listAnalyticsInstances(listAnalyticsInstancesRequest) {
|
|
937
937
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -955,7 +955,7 @@ class AnalyticsClient {
|
|
|
955
955
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
956
956
|
"opc-request-id": listAnalyticsInstancesRequest.opcRequestId
|
|
957
957
|
};
|
|
958
|
-
const specRetryConfiguration = common.
|
|
958
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
959
959
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listAnalyticsInstancesRequest.retryConfiguration, specRetryConfiguration);
|
|
960
960
|
if (this.logger)
|
|
961
961
|
retrier.logger = this.logger;
|
|
@@ -1039,11 +1039,11 @@ class AnalyticsClient {
|
|
|
1039
1039
|
/**
|
|
1040
1040
|
* Get the errors of a work request.
|
|
1041
1041
|
*
|
|
1042
|
-
* This operation
|
|
1042
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1043
1043
|
* @param ListWorkRequestErrorsRequest
|
|
1044
1044
|
* @return ListWorkRequestErrorsResponse
|
|
1045
1045
|
* @throws OciError when an error occurs
|
|
1046
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1046
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1047
1047
|
*/
|
|
1048
1048
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1049
1049
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1062,7 +1062,7 @@ class AnalyticsClient {
|
|
|
1062
1062
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1063
1063
|
"opc-request-id": listWorkRequestErrorsRequest.opcRequestId
|
|
1064
1064
|
};
|
|
1065
|
-
const specRetryConfiguration = common.
|
|
1065
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1066
1066
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestErrorsRequest.retryConfiguration, specRetryConfiguration);
|
|
1067
1067
|
if (this.logger)
|
|
1068
1068
|
retrier.logger = this.logger;
|
|
@@ -1146,11 +1146,11 @@ class AnalyticsClient {
|
|
|
1146
1146
|
/**
|
|
1147
1147
|
* Get the logs of a work request.
|
|
1148
1148
|
*
|
|
1149
|
-
* This operation
|
|
1149
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1150
1150
|
* @param ListWorkRequestLogsRequest
|
|
1151
1151
|
* @return ListWorkRequestLogsResponse
|
|
1152
1152
|
* @throws OciError when an error occurs
|
|
1153
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1153
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1154
1154
|
*/
|
|
1155
1155
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1156
1156
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1169,7 +1169,7 @@ class AnalyticsClient {
|
|
|
1169
1169
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1170
1170
|
"opc-request-id": listWorkRequestLogsRequest.opcRequestId
|
|
1171
1171
|
};
|
|
1172
|
-
const specRetryConfiguration = common.
|
|
1172
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1173
1173
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestLogsRequest.retryConfiguration, specRetryConfiguration);
|
|
1174
1174
|
if (this.logger)
|
|
1175
1175
|
retrier.logger = this.logger;
|
|
@@ -1253,11 +1253,11 @@ class AnalyticsClient {
|
|
|
1253
1253
|
/**
|
|
1254
1254
|
* List all work requests in a compartment.
|
|
1255
1255
|
*
|
|
1256
|
-
* This operation
|
|
1256
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1257
1257
|
* @param ListWorkRequestsRequest
|
|
1258
1258
|
* @return ListWorkRequestsResponse
|
|
1259
1259
|
* @throws OciError when an error occurs
|
|
1260
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1260
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1261
1261
|
*/
|
|
1262
1262
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1263
1263
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1280,7 +1280,7 @@ class AnalyticsClient {
|
|
|
1280
1280
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
1281
1281
|
"opc-request-id": listWorkRequestsRequest.opcRequestId
|
|
1282
1282
|
};
|
|
1283
|
-
const specRetryConfiguration = common.
|
|
1283
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1284
1284
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listWorkRequestsRequest.retryConfiguration, specRetryConfiguration);
|
|
1285
1285
|
if (this.logger)
|
|
1286
1286
|
retrier.logger = this.logger;
|
|
@@ -1365,11 +1365,11 @@ class AnalyticsClient {
|
|
|
1365
1365
|
* Scale an Analytics instance up or down. The operation is long-running
|
|
1366
1366
|
* and creates a new WorkRequest.
|
|
1367
1367
|
*
|
|
1368
|
-
* This operation
|
|
1368
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1369
1369
|
* @param ScaleAnalyticsInstanceRequest
|
|
1370
1370
|
* @return ScaleAnalyticsInstanceResponse
|
|
1371
1371
|
* @throws OciError when an error occurs
|
|
1372
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1372
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/ScaleAnalyticsInstance.ts.html |here} to see how to use ScaleAnalyticsInstance API.
|
|
1373
1373
|
*/
|
|
1374
1374
|
scaleAnalyticsInstance(scaleAnalyticsInstanceRequest) {
|
|
1375
1375
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1387,7 +1387,7 @@ class AnalyticsClient {
|
|
|
1387
1387
|
"opc-request-id": scaleAnalyticsInstanceRequest.opcRequestId,
|
|
1388
1388
|
"opc-retry-token": scaleAnalyticsInstanceRequest.opcRetryToken
|
|
1389
1389
|
};
|
|
1390
|
-
const specRetryConfiguration = common.
|
|
1390
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1391
1391
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, scaleAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
1392
1392
|
if (this.logger)
|
|
1393
1393
|
retrier.logger = this.logger;
|
|
@@ -1428,11 +1428,11 @@ class AnalyticsClient {
|
|
|
1428
1428
|
/**
|
|
1429
1429
|
* Encrypts the customer data of this Analytics instance using either a customer OCI Vault Key or Oracle managed default key.
|
|
1430
1430
|
*
|
|
1431
|
-
* This operation
|
|
1431
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1432
1432
|
* @param SetKmsKeyRequest
|
|
1433
1433
|
* @return SetKmsKeyResponse
|
|
1434
1434
|
* @throws OciError when an error occurs
|
|
1435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1435
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/SetKmsKey.ts.html |here} to see how to use SetKmsKey API.
|
|
1436
1436
|
*/
|
|
1437
1437
|
setKmsKey(setKmsKeyRequest) {
|
|
1438
1438
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1450,7 +1450,7 @@ class AnalyticsClient {
|
|
|
1450
1450
|
"opc-request-id": setKmsKeyRequest.opcRequestId,
|
|
1451
1451
|
"opc-retry-token": setKmsKeyRequest.opcRetryToken
|
|
1452
1452
|
};
|
|
1453
|
-
const specRetryConfiguration = common.
|
|
1453
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1454
1454
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, setKmsKeyRequest.retryConfiguration, specRetryConfiguration);
|
|
1455
1455
|
if (this.logger)
|
|
1456
1456
|
retrier.logger = this.logger;
|
|
@@ -1492,11 +1492,11 @@ class AnalyticsClient {
|
|
|
1492
1492
|
* Starts the specified Analytics instance. The operation is long-running
|
|
1493
1493
|
* and creates a new WorkRequest.
|
|
1494
1494
|
*
|
|
1495
|
-
* This operation
|
|
1495
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1496
1496
|
* @param StartAnalyticsInstanceRequest
|
|
1497
1497
|
* @return StartAnalyticsInstanceResponse
|
|
1498
1498
|
* @throws OciError when an error occurs
|
|
1499
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1499
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/StartAnalyticsInstance.ts.html |here} to see how to use StartAnalyticsInstance API.
|
|
1500
1500
|
*/
|
|
1501
1501
|
startAnalyticsInstance(startAnalyticsInstanceRequest) {
|
|
1502
1502
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1514,7 +1514,7 @@ class AnalyticsClient {
|
|
|
1514
1514
|
"opc-request-id": startAnalyticsInstanceRequest.opcRequestId,
|
|
1515
1515
|
"opc-retry-token": startAnalyticsInstanceRequest.opcRetryToken
|
|
1516
1516
|
};
|
|
1517
|
-
const specRetryConfiguration = common.
|
|
1517
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1518
1518
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, startAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
1519
1519
|
if (this.logger)
|
|
1520
1520
|
retrier.logger = this.logger;
|
|
@@ -1555,11 +1555,11 @@ class AnalyticsClient {
|
|
|
1555
1555
|
* Stop the specified Analytics instance. The operation is long-running
|
|
1556
1556
|
* and creates a new WorkRequest.
|
|
1557
1557
|
*
|
|
1558
|
-
* This operation
|
|
1558
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1559
1559
|
* @param StopAnalyticsInstanceRequest
|
|
1560
1560
|
* @return StopAnalyticsInstanceResponse
|
|
1561
1561
|
* @throws OciError when an error occurs
|
|
1562
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1562
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/StopAnalyticsInstance.ts.html |here} to see how to use StopAnalyticsInstance API.
|
|
1563
1563
|
*/
|
|
1564
1564
|
stopAnalyticsInstance(stopAnalyticsInstanceRequest) {
|
|
1565
1565
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1577,7 +1577,7 @@ class AnalyticsClient {
|
|
|
1577
1577
|
"opc-request-id": stopAnalyticsInstanceRequest.opcRequestId,
|
|
1578
1578
|
"opc-retry-token": stopAnalyticsInstanceRequest.opcRetryToken
|
|
1579
1579
|
};
|
|
1580
|
-
const specRetryConfiguration = common.
|
|
1580
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1581
1581
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, stopAnalyticsInstanceRequest.retryConfiguration, specRetryConfiguration);
|
|
1582
1582
|
if (this.logger)
|
|
1583
1583
|
retrier.logger = this.logger;
|
|
@@ -1622,7 +1622,7 @@ class AnalyticsClient {
|
|
|
1622
1622
|
* @param UpdateAnalyticsInstanceRequest
|
|
1623
1623
|
* @return UpdateAnalyticsInstanceResponse
|
|
1624
1624
|
* @throws OciError when an error occurs
|
|
1625
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1625
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/UpdateAnalyticsInstance.ts.html |here} to see how to use UpdateAnalyticsInstance API.
|
|
1626
1626
|
*/
|
|
1627
1627
|
updateAnalyticsInstance(updateAnalyticsInstanceRequest) {
|
|
1628
1628
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1684,11 +1684,11 @@ class AnalyticsClient {
|
|
|
1684
1684
|
/**
|
|
1685
1685
|
* Update the Private Access Channel with the given unique identifier key in the specified Analytics Instance.
|
|
1686
1686
|
*
|
|
1687
|
-
* This operation
|
|
1687
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1688
1688
|
* @param UpdatePrivateAccessChannelRequest
|
|
1689
1689
|
* @return UpdatePrivateAccessChannelResponse
|
|
1690
1690
|
* @throws OciError when an error occurs
|
|
1691
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1691
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/UpdatePrivateAccessChannel.ts.html |here} to see how to use UpdatePrivateAccessChannel API.
|
|
1692
1692
|
*/
|
|
1693
1693
|
updatePrivateAccessChannel(updatePrivateAccessChannelRequest) {
|
|
1694
1694
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1707,7 +1707,7 @@ class AnalyticsClient {
|
|
|
1707
1707
|
"opc-request-id": updatePrivateAccessChannelRequest.opcRequestId,
|
|
1708
1708
|
"opc-retry-token": updatePrivateAccessChannelRequest.opcRetryToken
|
|
1709
1709
|
};
|
|
1710
|
-
const specRetryConfiguration = common.
|
|
1710
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1711
1711
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updatePrivateAccessChannelRequest.retryConfiguration, specRetryConfiguration);
|
|
1712
1712
|
if (this.logger)
|
|
1713
1713
|
retrier.logger = this.logger;
|
|
@@ -1748,11 +1748,11 @@ class AnalyticsClient {
|
|
|
1748
1748
|
/**
|
|
1749
1749
|
* Allows uploading a new certificate for a vanity url, which will have to be done when the current certificate is expiring.
|
|
1750
1750
|
*
|
|
1751
|
-
* This operation
|
|
1751
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
1752
1752
|
* @param UpdateVanityUrlRequest
|
|
1753
1753
|
* @return UpdateVanityUrlResponse
|
|
1754
1754
|
* @throws OciError when an error occurs
|
|
1755
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1755
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.55.0/analytics/UpdateVanityUrl.ts.html |here} to see how to use UpdateVanityUrl API.
|
|
1756
1756
|
*/
|
|
1757
1757
|
updateVanityUrl(updateVanityUrlRequest) {
|
|
1758
1758
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1771,7 +1771,7 @@ class AnalyticsClient {
|
|
|
1771
1771
|
"opc-request-id": updateVanityUrlRequest.opcRequestId,
|
|
1772
1772
|
"opc-retry-token": updateVanityUrlRequest.opcRetryToken
|
|
1773
1773
|
};
|
|
1774
|
-
const specRetryConfiguration = common.
|
|
1774
|
+
const specRetryConfiguration = common.OciSdkDefaultRetryConfiguration;
|
|
1775
1775
|
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, updateVanityUrlRequest.retryConfiguration, specRetryConfiguration);
|
|
1776
1776
|
if (this.logger)
|
|
1777
1777
|
retrier.logger = this.logger;
|