Skip to content

Commit 24ae37e

Browse files
authored
Image Analysis SDK: Post-release updates, re-emitting SDK with latest TypeSpec files (no public API changes) (Azure#34000)
1 parent 7bf7f3d commit 24ae37e

File tree

7 files changed

+10
-26
lines changed

7 files changed

+10
-26
lines changed

sdk/vision/azure-ai-vision-imageanalysis/azure/ai/vision/imageanalysis/_model_base.py

+1-8
Original file line numberDiff line numberDiff line change
@@ -611,14 +611,7 @@ def _deserialize_model(model_deserializer: typing.Optional[typing.Callable], obj
611611

612612
# is it a literal?
613613
try:
614-
if sys.version_info >= (3, 8):
615-
from typing import (
616-
Literal,
617-
) # pylint: disable=no-name-in-module, ungrouped-imports
618-
else:
619-
from typing_extensions import Literal # type: ignore # pylint: disable=ungrouped-imports
620-
621-
if annotation.__origin__ == Literal:
614+
if annotation.__origin__ is typing.Literal:
622615
return None
623616
except AttributeError:
624617
pass

sdk/vision/azure-ai-vision-imageanalysis/azure/ai/vision/imageanalysis/_operations/_operations.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
_SERIALIZER.client_side_validation = False
4242

4343

44-
def build_image_analysis_analyze_from_buffer_request( # pylint: disable=name-too-long
44+
def build_image_analysis_analyze_from_image_data_request( # pylint: disable=name-too-long
4545
*,
4646
visual_features: List[Union[str, _models.VisualFeatures]],
4747
language: Optional[str] = None,
@@ -124,7 +124,7 @@ def build_image_analysis_analyze_from_url_request( # pylint: disable=name-too-l
124124

125125
class ImageAnalysisClientOperationsMixin(ImageAnalysisClientMixinABC):
126126
@distributed_trace
127-
def _analyze_from_buffer(
127+
def _analyze_from_image_data(
128128
self,
129129
image_content: bytes,
130130
*,
@@ -173,8 +173,6 @@ def _analyze_from_buffer(
173173
:keyword content_type: The format of the HTTP payload. Default value is
174174
"application/octet-stream".
175175
:paramtype content_type: str
176-
:keyword bool stream: Whether to stream the response of this operation. Defaults to False. You
177-
will have to context manage the returned stream.
178176
:return: ImageAnalysisResult. The ImageAnalysisResult is compatible with MutableMapping
179177
:rtype: ~azure.ai.vision.imageanalysis.models.ImageAnalysisResult
180178
:raises ~azure.core.exceptions.HttpResponseError:
@@ -357,7 +355,7 @@ def _analyze_from_buffer(
357355

358356
_content = image_content
359357

360-
_request = build_image_analysis_analyze_from_buffer_request(
358+
_request = build_image_analysis_analyze_from_image_data_request(
361359
visual_features=visual_features,
362360
language=language,
363361
gender_neutral_caption=gender_neutral_caption,
@@ -492,8 +490,6 @@ def _analyze_from_url(
492490
:paramtype model_version: str
493491
:keyword content_type: The format of the HTTP payload. Default value is None.
494492
:paramtype content_type: str
495-
:keyword bool stream: Whether to stream the response of this operation. Defaults to False. You
496-
will have to context manage the returned stream.
497493
:return: ImageAnalysisResult. The ImageAnalysisResult is compatible with MutableMapping
498494
:rtype: ~azure.ai.vision.imageanalysis.models.ImageAnalysisResult
499495
:raises ~azure.core.exceptions.HttpResponseError:

sdk/vision/azure-ai-vision-imageanalysis/azure/ai/vision/imageanalysis/_patch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def analyze(
128128
)
129129

130130
if image_data is not None:
131-
return ImageAnalysisClientOperationsMixin._analyze_from_buffer( # pylint: disable=protected-access
131+
return ImageAnalysisClientOperationsMixin._analyze_from_image_data( # pylint: disable=protected-access
132132
self,
133133
image_content=image_data,
134134
visual_features=visual_features_impl,

sdk/vision/azure-ai-vision-imageanalysis/azure/ai/vision/imageanalysis/aio/_operations/_operations.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from ... import models as _models
2828
from ..._model_base import SdkJSONEncoder, _deserialize
2929
from ..._operations._operations import (
30-
build_image_analysis_analyze_from_buffer_request,
30+
build_image_analysis_analyze_from_image_data_request,
3131
build_image_analysis_analyze_from_url_request,
3232
)
3333
from .._vendor import ImageAnalysisClientMixinABC
@@ -43,7 +43,7 @@
4343

4444
class ImageAnalysisClientOperationsMixin(ImageAnalysisClientMixinABC):
4545
@distributed_trace_async
46-
async def _analyze_from_buffer(
46+
async def _analyze_from_image_data(
4747
self,
4848
image_content: bytes,
4949
*,
@@ -92,8 +92,6 @@ async def _analyze_from_buffer(
9292
:keyword content_type: The format of the HTTP payload. Default value is
9393
"application/octet-stream".
9494
: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.
9795
:return: ImageAnalysisResult. The ImageAnalysisResult is compatible with MutableMapping
9896
:rtype: ~azure.ai.vision.imageanalysis.models.ImageAnalysisResult
9997
:raises ~azure.core.exceptions.HttpResponseError:
@@ -276,7 +274,7 @@ async def _analyze_from_buffer(
276274

277275
_content = image_content
278276

279-
_request = build_image_analysis_analyze_from_buffer_request(
277+
_request = build_image_analysis_analyze_from_image_data_request(
280278
visual_features=visual_features,
281279
language=language,
282280
gender_neutral_caption=gender_neutral_caption,
@@ -411,8 +409,6 @@ async def _analyze_from_url(
411409
:paramtype model_version: str
412410
:keyword content_type: The format of the HTTP payload. Default value is None.
413411
: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.
416412
:return: ImageAnalysisResult. The ImageAnalysisResult is compatible with MutableMapping
417413
:rtype: ~azure.ai.vision.imageanalysis.models.ImageAnalysisResult
418414
:raises ~azure.core.exceptions.HttpResponseError:

sdk/vision/azure-ai-vision-imageanalysis/azure/ai/vision/imageanalysis/aio/_patch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ async def analyze(
128128
)
129129

130130
if image_data is not None:
131-
return await ImageAnalysisClientOperationsMixin._analyze_from_buffer( # pylint: disable=protected-access
131+
return await ImageAnalysisClientOperationsMixin._analyze_from_image_data( # pylint: disable=protected-access
132132
self,
133133
image_content=image_data,
134134
visual_features=visual_features_impl,

sdk/vision/azure-ai-vision-imageanalysis/setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
install_requires=[
6767
"isodate<1.0.0,>=0.6.1",
6868
"azure-core<2.0.0,>=1.29.5",
69-
"typing-extensions>=4.3.0; python_version<'3.8.0'",
7069
],
7170
python_requires=">=3.8",
7271
)
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
additionalDirectories: []
22
repo: Azure/azure-rest-api-specs
33
directory: specification/ai/ImageAnalysis
4-
commit: f2d0e7863a591e538366b251cfd85cc725153384
4+
commit: 3cf7400ba3d65978bef86e9c4197a5e7f7bf5277
55

66

0 commit comments

Comments
 (0)