Skip to content
Closed
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/servicegroups/azure-mgmt-servicegroups/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 1.0.0b2 (2026-05-20)

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

Comment on lines +3 to +6
## 1.0.0b1 (2026-03-31)

### Other Changes
Expand Down
4 changes: 2 additions & 2 deletions sdk/servicegroups/azure-mgmt-servicegroups/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Microsoft Azure SDK for Python

This is the Microsoft Azure Service Groups Management Client Library.
This package has been tested with Python 3.9+.
This package has been tested with Python 3.10+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).

## _Disclaimer_
Expand All @@ -12,7 +12,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For

### Prerequisites

- Python 3.9+ is required to use this package.
- Python 3.10+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package
Expand Down
4 changes: 2 additions & 2 deletions sdk/servicegroups/azure-mgmt-servicegroups/_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"apiVersions": {
"Microsoft.Management": "2024-02-01-preview"
},
"commit": "75b0c9a8539f7c64386ff6ff10cb6c75711bdefc",
"commit": "6d50d64d3eeca46ecf1b4af80e9994bac920a7d0",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/management/resource-manager/Microsoft.Management/ServiceGroups",
"emitterVersion": "0.61.2"
"emitterVersion": "0.62.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@
"azure.mgmt.servicegroups.aio.ServiceGroupsMgmtClient.begin_update_service_group": "Microsoft.Management.ServiceGroups.updateServiceGroup",
"azure.mgmt.servicegroups.ServiceGroupsMgmtClient.begin_delete_service_group": "Microsoft.Management.ServiceGroups.deleteServiceGroup",
"azure.mgmt.servicegroups.aio.ServiceGroupsMgmtClient.begin_delete_service_group": "Microsoft.Management.ServiceGroups.deleteServiceGroup"
}
},
"CrossLanguageVersion": "c5308d55a0d6"
}
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 @@ -21,15 +21,18 @@
from ._utils.serialization import Deserializer, Serializer
from .operations import ServiceGroupsOperations, _ServiceGroupsMgmtClientOperationsMixin

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


class ServiceGroupsMgmtClient(_ServiceGroupsMgmtClientOperationsMixin):
"""The Groups RP provides Service Groups as a construct to group multiple resources, resource
groups, subscriptions and other service groups into an organizational hierarchy and centrally
manage access control, policies, alerting and reporting for those resources.
"""ServiceGroupsMgmtClient.

:ivar service_groups: ServiceGroupsOperations operations
:vartype service_groups: azure.mgmt.servicegroups.operations.ServiceGroupsOperations
Expand All @@ -41,8 +44,9 @@ class ServiceGroupsMgmtClient(_ServiceGroupsMgmtClientOperationsMixin):
None.
:paramtype cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2024-02-01-preview". Default value is "2024-02-01-preview". Note that overriding this default
value may result in unsupported behavior.
"2024-02-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
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
Retry-After header is present.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ class ServiceGroupsMgmtClientConfiguration: # pylint: disable=too-many-instance
None.
:type cloud_setting: ~azure.core.AzureClouds
:keyword api_version: The API version to use for this operation. Known values are
"2024-02-01-preview". Default value is "2024-02-01-preview". Note that overriding this default
value may result in unsupported behavior.
"2024-02-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 @@ -8,7 +8,6 @@
Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
"""


__all__: list[str] = [] # Add all objects you want publicly available to users at this package level


Expand Down
Loading
Loading