Skip to content

Commit 6e082ec

Browse files
committed
updating version number
1 parent c11e1d4 commit 6e082ec

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

sdk/communication/azure-communication-callautomation/azure/communication/callautomation/_generated/aio/operations/_operations.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# --------------------------------------------------------------------------
99
from collections.abc import MutableMapping
1010
from io import IOBase
11-
from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, overload
11+
from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, overload
1212
import urllib.parse
1313

1414
from azure.core import AsyncPipelineClient
@@ -72,7 +72,9 @@
7272

7373

7474
class AzureCommunicationCallAutomationServiceOperationsMixin( # pylint: disable=name-too-long
75-
ClientMixinABC[AsyncPipelineClient, AzureCommunicationCallAutomationServiceConfiguration]
75+
ClientMixinABC[
76+
AsyncPipelineClient[HttpRequest, AsyncHttpResponse], AzureCommunicationCallAutomationServiceConfiguration
77+
]
7678
):
7779

7880
@overload
@@ -909,7 +911,7 @@ async def transfer_to_participant(
909911
return deserialized # type: ignore
910912

911913
@distributed_trace
912-
def get_participants(self, call_connection_id: str, **kwargs: Any) -> AsyncIterable["_models.CallParticipant"]:
914+
def get_participants(self, call_connection_id: str, **kwargs: Any) -> AsyncItemPaged["_models.CallParticipant"]:
913915
"""Get participants from a call. Recording and transcription bots are omitted from this list.
914916
915917
Get participants from a call. Recording and transcription bots are omitted from this list.

sdk/communication/azure-communication-callautomation/azure/communication/callautomation/_generated/operations/_operations.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from collections.abc import MutableMapping
1010
import datetime
1111
from io import IOBase
12-
from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, overload
12+
from typing import Any, Callable, Dict, IO, Optional, TypeVar, Union, overload
1313
import urllib.parse
1414
import uuid
1515

@@ -1001,7 +1001,7 @@ def build_call_recording_resume_recording_request( # pylint: disable=name-too-l
10011001

10021002

10031003
class AzureCommunicationCallAutomationServiceOperationsMixin( # pylint: disable=name-too-long
1004-
ClientMixinABC[PipelineClient, AzureCommunicationCallAutomationServiceConfiguration]
1004+
ClientMixinABC[PipelineClient[HttpRequest, HttpResponse], AzureCommunicationCallAutomationServiceConfiguration]
10051005
):
10061006

10071007
@overload
@@ -1542,7 +1542,7 @@ class CallConnectionOperations:
15421542

15431543
models = _models
15441544

1545-
def __init__(self, *args, **kwargs):
1545+
def __init__(self, *args, **kwargs) -> None:
15461546
input_args = list(args)
15471547
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
15481548
self._config: AzureCommunicationCallAutomationServiceConfiguration = (
@@ -1842,7 +1842,7 @@ def transfer_to_participant(
18421842
return deserialized # type: ignore
18431843

18441844
@distributed_trace
1845-
def get_participants(self, call_connection_id: str, **kwargs: Any) -> Iterable["_models.CallParticipant"]:
1845+
def get_participants(self, call_connection_id: str, **kwargs: Any) -> ItemPaged["_models.CallParticipant"]:
18461846
"""Get participants from a call. Recording and transcription bots are omitted from this list.
18471847
18481848
Get participants from a call. Recording and transcription bots are omitted from this list.
@@ -2512,7 +2512,7 @@ class CallMediaOperations:
25122512

25132513
models = _models
25142514

2515-
def __init__(self, *args, **kwargs):
2515+
def __init__(self, *args, **kwargs) -> None:
25162516
input_args = list(args)
25172517
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
25182518
self._config: AzureCommunicationCallAutomationServiceConfiguration = (
@@ -4037,7 +4037,7 @@ class CallRecordingOperations:
40374037

40384038
models = _models
40394039

4040-
def __init__(self, *args, **kwargs):
4040+
def __init__(self, *args, **kwargs) -> None:
40414041
input_args = list(args)
40424042
self._client: PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
40434043
self._config: AzureCommunicationCallAutomationServiceConfiguration = (

sdk/communication/azure-communication-callautomation/azure/communication/callautomation/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7-
VERSION = "1.4.0b2"
7+
VERSION = "1.4.0"
88

99
SDK_MONIKER = f"communication-callautomation/{format(VERSION)}"

0 commit comments

Comments
 (0)