@@ -147,7 +147,7 @@ export class AIServiceVisionClient {
147147 /**
148148 * Perform different types of image analysis.
149149 *
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 .
151151 * @param AnalyzeDocumentRequest
152152 * @return AnalyzeDocumentResponse
153153 * @throws OciError when an error occurs
@@ -166,7 +166,7 @@ export class AIServiceVisionClient {
166166 "opc-request-id" : analyzeDocumentRequest . opcRequestId
167167 } ;
168168
169- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
169+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
170170 const retrier = GenericRetrier . createPreferredRetrier (
171171 this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
172172 analyzeDocumentRequest . retryConfiguration ,
@@ -218,7 +218,7 @@ export class AIServiceVisionClient {
218218 /**
219219 * Perform different types of image analysis.
220220 *
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 .
222222 * @param AnalyzeImageRequest
223223 * @return AnalyzeImageResponse
224224 * @throws OciError when an error occurs
@@ -237,7 +237,7 @@ export class AIServiceVisionClient {
237237 "opc-request-id" : analyzeImageRequest . opcRequestId
238238 } ;
239239
240- const specRetryConfiguration = common . NoRetryConfigurationDetails ;
240+ const specRetryConfiguration = common . OciSdkDefaultRetryConfiguration ;
241241 const retrier = GenericRetrier . createPreferredRetrier (
242242 this . _clientConfiguration ? this . _clientConfiguration . retryConfiguration : undefined ,
243243 analyzeImageRequest . retryConfiguration ,
0 commit comments