@@ -219,7 +219,7 @@ export class AppmgmtControlClient {
219
219
220
220
/**
221
221
* Gets a monitored instance by identifier
222
- * This operation does not retry by default if the user has not defined a retry configuration .
222
+ * This operation uses { @link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user .
223
223
* @param GetMonitoredInstanceRequest
224
224
* @return GetMonitoredInstanceResponse
225
225
* @throws OciError when an error occurs
@@ -241,7 +241,7 @@ export class AppmgmtControlClient {
241
241
"opc-request-id" : getMonitoredInstanceRequest . opcRequestId
242
242
} ;
243
243
244
- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
244
+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
245
245
const retrier = GenericRetrier . createPreferredRetrier (
246
246
this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
247
247
getMonitoredInstanceRequest . retryConfiguration ,
@@ -287,7 +287,7 @@ export class AppmgmtControlClient {
287
287
288
288
/**
289
289
* Gets the status of the work request with the given ID.
290
- * This operation does not retry by default if the user has not defined a retry configuration .
290
+ * This operation uses { @link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user .
291
291
* @param GetWorkRequestRequest
292
292
* @return GetWorkRequestResponse
293
293
* @throws OciError when an error occurs
@@ -308,7 +308,7 @@ export class AppmgmtControlClient {
308
308
"opc-request-id" : getWorkRequestRequest . opcRequestId
309
309
} ;
310
310
311
- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
311
+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
312
312
const retrier = GenericRetrier . createPreferredRetrier (
313
313
this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
314
314
getWorkRequestRequest . retryConfiguration ,
@@ -355,7 +355,7 @@ export class AppmgmtControlClient {
355
355
/**
356
356
* Returns a list of monitored instances.
357
357
*
358
- * This operation does not retry by default if the user has not defined a retry configuration .
358
+ * This operation uses { @link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user .
359
359
* @param ListMonitoredInstancesRequest
360
360
* @return ListMonitoredInstancesResponse
361
361
* @throws OciError when an error occurs
@@ -382,7 +382,7 @@ export class AppmgmtControlClient {
382
382
"opc-request-id" : listMonitoredInstancesRequest . opcRequestId
383
383
} ;
384
384
385
- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
385
+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
386
386
const retrier = GenericRetrier . createPreferredRetrier (
387
387
this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
388
388
listMonitoredInstancesRequest . retryConfiguration ,
@@ -429,7 +429,7 @@ export class AppmgmtControlClient {
429
429
/**
430
430
* Return a (paginated) list of errors for a given work request.
431
431
*
432
- * This operation does not retry by default if the user has not defined a retry configuration .
432
+ * This operation uses { @link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user .
433
433
* @param ListWorkRequestErrorsRequest
434
434
* @return ListWorkRequestErrorsResponse
435
435
* @throws OciError when an error occurs
@@ -454,7 +454,7 @@ export class AppmgmtControlClient {
454
454
"opc-request-id" : listWorkRequestErrorsRequest . opcRequestId
455
455
} ;
456
456
457
- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
457
+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
458
458
const retrier = GenericRetrier . createPreferredRetrier (
459
459
this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
460
460
listWorkRequestErrorsRequest . retryConfiguration ,
@@ -501,7 +501,7 @@ export class AppmgmtControlClient {
501
501
/**
502
502
* Return a (paginated) list of logs for a given work request.
503
503
*
504
- * This operation does not retry by default if the user has not defined a retry configuration .
504
+ * This operation uses { @link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user .
505
505
* @param ListWorkRequestLogsRequest
506
506
* @return ListWorkRequestLogsResponse
507
507
* @throws OciError when an error occurs
@@ -526,7 +526,7 @@ export class AppmgmtControlClient {
526
526
"opc-request-id" : listWorkRequestLogsRequest . opcRequestId
527
527
} ;
528
528
529
- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
529
+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
530
530
const retrier = GenericRetrier . createPreferredRetrier (
531
531
this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
532
532
listWorkRequestLogsRequest . retryConfiguration ,
@@ -573,7 +573,7 @@ export class AppmgmtControlClient {
573
573
/**
574
574
* Lists the work requests in a compartment.
575
575
*
576
- * This operation does not retry by default if the user has not defined a retry configuration .
576
+ * This operation uses { @link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user .
577
577
* @param ListWorkRequestsRequest
578
578
* @return ListWorkRequestsResponse
579
579
* @throws OciError when an error occurs
@@ -597,7 +597,7 @@ export class AppmgmtControlClient {
597
597
"opc-request-id" : listWorkRequestsRequest . opcRequestId
598
598
} ;
599
599
600
- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
600
+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
601
601
const retrier = GenericRetrier . createPreferredRetrier (
602
602
this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
603
603
listWorkRequestsRequest . retryConfiguration ,
0 commit comments