Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
7de9821
Configurations: 'specification/communication/data-plane/Identity/tsp…
azure-sdk Sep 9, 2026
4407fde
ACS Identity: rebase convenience layer onto DPG client
johnfraser-msft Sep 3, 2026
6c061b1
ACS Identity: release 2.0.0 targeting api-version 2026-09-23
johnfraser-msft Sep 4, 2026
699525d
ACS Identity: document why expiresOn is read by key
johnfraser-msft Sep 9, 2026
dc5c474
ACS Identity: add committed wire-contract tests
johnfraser-msft Sep 9, 2026
2f5fc35
ACS Identity: restore three request headers dropped by DPG
johnfraser-msft Sep 9, 2026
26724d9
ACS Identity: restore files the pipeline rmtree deleted
johnfraser-msft Sep 10, 2026
c299e83
ACS Identity: drop the enum alias made obsolete by client.tsp
johnfraser-msft Sep 10, 2026
d73bafe
ACS Identity: reapply header restoration lost in conflict resolution
johnfraser-msft Sep 10, 2026
fa08a48
ACS Identity: fix development status classifier for the GA release
johnfraser-msft Sep 10, 2026
f9b1364
ACS Identity: sanitize api-version so recorded tests match
johnfraser-msft Sep 10, 2026
199625e
ACS Identity: omit scopes from the request body when None
johnfraser-msft Sep 11, 2026
2e22973
ACS Identity: send JSON content type for an empty request body
johnfraser-msft Sep 11, 2026
333d8d2
ACS Identity: pin error-status handling for non-envelope bodies
johnfraser-msft Sep 11, 2026
35be82c
Revert full Communication Identity migration
johnfraser-msft Sep 11, 2026
ee65654
Update Communication Identity API version
johnfraser-msft Sep 11, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class ApiVersion(str, Enum, metaclass=CaseInsensitiveEnumMeta):
V2022_06_01 = "2022-06-01"
V2022_10_01 = "2022-10-01"
V2023_10_01 = "2023-10-01"
V2026_09_23 = "2026-09-23"


DEFAULT_VERSION = ApiVersion.V2023_10_01
DEFAULT_VERSION = ApiVersion.V2026_09_23
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class CommunicationIdentityClient(object):
:param Union[TokenCredential, AzureKeyCredential] credential:
The credential we use to authenticate against the service.
:keyword api_version: Azure Communication Identity API version.
Default value is "2022-10-01". Note that overriding this default value may result in unsupported behavior.
Default value is "2026-09-23". Note that overriding this default value may result in unsupported behavior.
:paramtype api_version: str

.. admonition:: Example:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class CommunicationIdentityClient:
:param Union[AsyncTokenCredential, AzureKeyCredential] credential:
The credential we use to authenticate against the service.
:keyword api_version: Azure Communication Identity API version.
Default value is "2022-06-01". Note that overriding this default value may result in unsupported behavior.
Default value is "2026-09-23". Note that overriding this default value may result in unsupported behavior.
:paramtype api_version: str

.. admonition:: Example:
Expand Down
Loading