Skip to content

Commit 75c3683

Browse files
[AutoRelease] t2-confluent-2024-03-01-81493(can only be merged by SDK owner) (#34548)
* code and test * Update dev_requirements.txt * Update assets.json --------- Co-authored-by: azure-sdk <PythonSdkPipelines> Co-authored-by: ChenxiJiang333 <[email protected]> Co-authored-by: ChenxiJiang333 <[email protected]>
1 parent 8fb3490 commit 75c3683

File tree

52 files changed

+5551
-625
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+5551
-625
lines changed

sdk/confluent/azure-mgmt-confluent/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Release History
22

3+
## 2.1.0 (2024-03-18)
4+
5+
### Features Added
6+
7+
- Added operation AccessOperations.create_role_binding
8+
- Added operation AccessOperations.delete_role_binding
9+
- Added operation AccessOperations.list_role_binding_name_list
10+
- Added operation OrganizationOperations.create_api_key
11+
- Added operation OrganizationOperations.delete_cluster_api_key
12+
- Added operation OrganizationOperations.get_cluster_api_key
13+
- Added operation OrganizationOperations.get_cluster_by_id
14+
- Added operation OrganizationOperations.get_environment_by_id
15+
- Added operation OrganizationOperations.get_schema_registry_cluster_by_id
16+
- Added operation OrganizationOperations.list_clusters
17+
- Added operation OrganizationOperations.list_environments
18+
- Added operation OrganizationOperations.list_regions
19+
- Added operation OrganizationOperations.list_schema_registry_clusters
20+
321
## 2.0.0 (2023-11-20)
422

523
### Features Added

sdk/confluent/azure-mgmt-confluent/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Microsoft Azure SDK for Python
22

33
This is the Microsoft Azure Confluent Management Client Library.
4-
This package has been tested with Python 3.7+.
4+
This package has been tested with Python 3.8+.
55
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
66

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

1313
### Prerequisites
1414

15-
- Python 3.7+ is required to use this package.
15+
- Python 3.8+ is required to use this package.
1616
- [Azure subscription](https://azure.microsoft.com/free/)
1717

1818
### Install the package

sdk/confluent/azure-mgmt-confluent/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"commit": "58e92dd03733bc175e6a9540f4bc53703b57fcc9",
2+
"commit": "cf5ad1932d00c7d15497705ad6b71171d3d68b1e",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.9.7",
55
"use": [

sdk/confluent/azure-mgmt-confluent/assets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"AssetsRepo": "Azure/azure-sdk-assets",
33
"AssetsRepoPrefixPath": "python",
44
"TagPrefix": "python/confluent/azure-mgmt-confluent",
5-
"Tag": "python/confluent/azure-mgmt-confluent_69ba061428"
5+
"Tag": "python/confluent/azure-mgmt-confluent_4eb7f31513"
66
}

sdk/confluent/azure-mgmt-confluent/azure/mgmt/confluent/_configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ class ConfluentManagementClientConfiguration(Configuration): # pylint: disable=
2727
2828
:param credential: Credential needed for the client to connect to Azure. Required.
2929
:type credential: ~azure.core.credentials.TokenCredential
30-
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
30+
:param subscription_id: Microsoft Azure subscription id. Required.
3131
:type subscription_id: str
32-
:keyword api_version: Api Version. Default value is "2023-08-22". Note that overriding this
32+
:keyword api_version: Api Version. Default value is "2024-02-13". Note that overriding this
3333
default value may result in unsupported behavior.
3434
:paramtype api_version: str
3535
"""
3636

3737
def __init__(self, credential: "TokenCredential", subscription_id: str, **kwargs: Any) -> None:
3838
super(ConfluentManagementClientConfiguration, self).__init__(**kwargs)
39-
api_version: str = kwargs.pop("api_version", "2023-08-22")
39+
api_version: str = kwargs.pop("api_version", "2024-02-13")
4040

4141
if credential is None:
4242
raise ValueError("Parameter 'credential' must not be None.")

sdk/confluent/azure-mgmt-confluent/azure/mgmt/confluent/_confluent_management_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ class ConfluentManagementClient: # pylint: disable=client-accepts-api-version-k
4545
:vartype access: azure.mgmt.confluent.operations.AccessOperations
4646
:param credential: Credential needed for the client to connect to Azure. Required.
4747
:type credential: ~azure.core.credentials.TokenCredential
48-
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
48+
:param subscription_id: Microsoft Azure subscription id. Required.
4949
:type subscription_id: str
5050
:param base_url: Service URL. Default value is "https://management.azure.com".
5151
:type base_url: str
52-
:keyword api_version: Api Version. Default value is "2023-08-22". Note that overriding this
52+
:keyword api_version: Api Version. Default value is "2024-02-13". Note that overriding this
5353
default value may result in unsupported behavior.
5454
:paramtype api_version: str
5555
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no

sdk/confluent/azure-mgmt-confluent/azure/mgmt/confluent/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "2.0.0"
9+
VERSION = "2.1.0"

sdk/confluent/azure-mgmt-confluent/azure/mgmt/confluent/aio/_configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ class ConfluentManagementClientConfiguration(Configuration): # pylint: disable=
2727
2828
:param credential: Credential needed for the client to connect to Azure. Required.
2929
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
30-
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
30+
:param subscription_id: Microsoft Azure subscription id. Required.
3131
:type subscription_id: str
32-
:keyword api_version: Api Version. Default value is "2023-08-22". Note that overriding this
32+
:keyword api_version: Api Version. Default value is "2024-02-13". Note that overriding this
3333
default value may result in unsupported behavior.
3434
:paramtype api_version: str
3535
"""
3636

3737
def __init__(self, credential: "AsyncTokenCredential", subscription_id: str, **kwargs: Any) -> None:
3838
super(ConfluentManagementClientConfiguration, self).__init__(**kwargs)
39-
api_version: str = kwargs.pop("api_version", "2023-08-22")
39+
api_version: str = kwargs.pop("api_version", "2024-02-13")
4040

4141
if credential is None:
4242
raise ValueError("Parameter 'credential' must not be None.")

sdk/confluent/azure-mgmt-confluent/azure/mgmt/confluent/aio/_confluent_management_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ class ConfluentManagementClient: # pylint: disable=client-accepts-api-version-k
4545
:vartype access: azure.mgmt.confluent.aio.operations.AccessOperations
4646
:param credential: Credential needed for the client to connect to Azure. Required.
4747
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
48-
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
48+
:param subscription_id: Microsoft Azure subscription id. Required.
4949
:type subscription_id: str
5050
:param base_url: Service URL. Default value is "https://management.azure.com".
5151
:type base_url: str
52-
:keyword api_version: Api Version. Default value is "2023-08-22". Note that overriding this
52+
:keyword api_version: Api Version. Default value is "2024-02-13". Note that overriding this
5353
default value may result in unsupported behavior.
5454
:paramtype api_version: str
5555
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no

0 commit comments

Comments
 (0)