@@ -147,7 +147,7 @@ export class AIServiceVisionClient {
147
147
/**
148
148
* Perform different types of image analysis.
149
149
*
150
- * This operation does not retry by default if the user has not defined a retry configuration .
150
+ * This operation uses { @link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user .
151
151
* @param AnalyzeDocumentRequest
152
152
* @return AnalyzeDocumentResponse
153
153
* @throws OciError when an error occurs
@@ -166,7 +166,7 @@ export class AIServiceVisionClient {
166
166
"opc-request-id" : analyzeDocumentRequest . opcRequestId
167
167
} ;
168
168
169
- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
169
+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
170
170
const retrier = GenericRetrier . createPreferredRetrier (
171
171
this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
172
172
analyzeDocumentRequest . retryConfiguration ,
@@ -218,7 +218,7 @@ export class AIServiceVisionClient {
218
218
/**
219
219
* Perform different types of image analysis.
220
220
*
221
- * This operation does not retry by default if the user has not defined a retry configuration .
221
+ * This operation uses { @link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user .
222
222
* @param AnalyzeImageRequest
223
223
* @return AnalyzeImageResponse
224
224
* @throws OciError when an error occurs
@@ -237,7 +237,7 @@ export class AIServiceVisionClient {
237
237
"opc-request-id" : analyzeImageRequest . opcRequestId
238
238
} ;
239
239
240
- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
240
+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
241
241
const retrier = GenericRetrier . createPreferredRetrier (
242
242
this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
243
243
analyzeImageRequest . retryConfiguration ,
0 commit comments