Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions sdk/trafficmanager/azure-mgmt-trafficmanager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 1.2.0b1 (2026-05-26)

tool can't generate changelog for this release, please update manually.

Comment on lines +3 to +6
## 2.0.0b1 (2026-05-08)

### Features Added
Expand Down
4 changes: 2 additions & 2 deletions sdk/trafficmanager/azure-mgmt-trafficmanager/_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"apiVersions": {
"Microsoft.Network": "2024-04-01-preview"
},
"commit": "28e08376806422730d28d8dd90479d0ad68397ac",
"commit": "ca0784fe187196aedbb4e71056746cbdfcc8106b",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/trafficmanager/resource-manager/Microsoft.Network/TrafficManager",
"emitterVersion": "0.61.3"
"emitterVersion": "0.62.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,6 @@
"azure.mgmt.trafficmanager.aio.operations.TrafficManagerUserMetricsKeysOperations.create_or_update": "Microsoft.Network.UserMetricsModels.createOrUpdate",
"azure.mgmt.trafficmanager.operations.TrafficManagerUserMetricsKeysOperations.delete": "Microsoft.Network.UserMetricsModels.delete",
"azure.mgmt.trafficmanager.aio.operations.TrafficManagerUserMetricsKeysOperations.delete": "Microsoft.Network.UserMetricsModels.delete"
}
},
"CrossLanguageVersion": "59af86e7fca0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# --------------------------------------------------------------------------

from copy import deepcopy
import sys
from typing import Any, Optional, TYPE_CHECKING, cast
from typing_extensions import Self

from azure.core.pipeline import policies
from azure.core.rest import HttpRequest, HttpResponse
Expand All @@ -27,6 +27,11 @@
TrafficManagerUserMetricsKeysOperations,
)

if sys.version_info >= (3, 11):
from typing import Self
else:
from typing_extensions import Self # type: ignore

if TYPE_CHECKING:
from azure.core import AzureClouds
from azure.core.credentials import TokenCredential
Expand Down Expand Up @@ -57,8 +62,9 @@ class TrafficManagerManagementClient:
None.
:paramtype cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2024-04-01-preview". Default value is "2024-04-01-preview". Note that overriding this default
value may result in unsupported behavior.
"2024-04-01-preview" and None. Default value is None. If not set, the operation's default API
version will be used. Note that overriding this default value may result in unsupported
behavior.
:paramtype api_version: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ class TrafficManagerManagementClientConfiguration: # pylint: disable=too-many-i
None.
:type cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2024-04-01-preview". Default value is "2024-04-01-preview". Note that overriding this default
value may result in unsupported behavior.
"2024-04-01-preview" and None. Default value is None. If not set, the operation's default API
version will be used. Note that overriding this default value may result in unsupported
behavior.
:paramtype api_version: str
"""

Expand Down
Loading
Loading