|
27 | 27 | from ... import models as _models
|
28 | 28 | from ..._model_base import SdkJSONEncoder, _deserialize
|
29 | 29 | from ..._operations._operations import (
|
30 |
| - build_image_analysis_analyze_from_buffer_request, |
| 30 | + build_image_analysis_analyze_from_image_data_request, |
31 | 31 | build_image_analysis_analyze_from_url_request,
|
32 | 32 | )
|
33 | 33 | from .._vendor import ImageAnalysisClientMixinABC
|
|
43 | 43 |
|
44 | 44 | class ImageAnalysisClientOperationsMixin(ImageAnalysisClientMixinABC):
|
45 | 45 | @distributed_trace_async
|
46 |
| - async def _analyze_from_buffer( |
| 46 | + async def _analyze_from_image_data( |
47 | 47 | self,
|
48 | 48 | image_content: bytes,
|
49 | 49 | *,
|
@@ -92,8 +92,6 @@ async def _analyze_from_buffer(
|
92 | 92 | :keyword content_type: The format of the HTTP payload. Default value is
|
93 | 93 | "application/octet-stream".
|
94 | 94 | :paramtype content_type: str
|
95 |
| - :keyword bool stream: Whether to stream the response of this operation. Defaults to False. You |
96 |
| - will have to context manage the returned stream. |
97 | 95 | :return: ImageAnalysisResult. The ImageAnalysisResult is compatible with MutableMapping
|
98 | 96 | :rtype: ~azure.ai.vision.imageanalysis.models.ImageAnalysisResult
|
99 | 97 | :raises ~azure.core.exceptions.HttpResponseError:
|
@@ -276,7 +274,7 @@ async def _analyze_from_buffer(
|
276 | 274 |
|
277 | 275 | _content = image_content
|
278 | 276 |
|
279 |
| - _request = build_image_analysis_analyze_from_buffer_request( |
| 277 | + _request = build_image_analysis_analyze_from_image_data_request( |
280 | 278 | visual_features=visual_features,
|
281 | 279 | language=language,
|
282 | 280 | gender_neutral_caption=gender_neutral_caption,
|
@@ -411,8 +409,6 @@ async def _analyze_from_url(
|
411 | 409 | :paramtype model_version: str
|
412 | 410 | :keyword content_type: The format of the HTTP payload. Default value is None.
|
413 | 411 | :paramtype content_type: str
|
414 |
| - :keyword bool stream: Whether to stream the response of this operation. Defaults to False. You |
415 |
| - will have to context manage the returned stream. |
416 | 412 | :return: ImageAnalysisResult. The ImageAnalysisResult is compatible with MutableMapping
|
417 | 413 | :rtype: ~azure.ai.vision.imageanalysis.models.ImageAnalysisResult
|
418 | 414 | :raises ~azure.core.exceptions.HttpResponseError:
|
|
0 commit comments