Skip to content
Merged
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
18 changes: 18 additions & 0 deletions sdk/confluent/azure-mgmt-confluent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Release History

## 2.1.0 (2024-03-18)

### Features Added

- Added operation AccessOperations.create_role_binding
- Added operation AccessOperations.delete_role_binding
- Added operation AccessOperations.list_role_binding_name_list
- Added operation OrganizationOperations.create_api_key
- Added operation OrganizationOperations.delete_cluster_api_key
- Added operation OrganizationOperations.get_cluster_api_key
- Added operation OrganizationOperations.get_cluster_by_id
- Added operation OrganizationOperations.get_environment_by_id
- Added operation OrganizationOperations.get_schema_registry_cluster_by_id
- Added operation OrganizationOperations.list_clusters
- Added operation OrganizationOperations.list_environments
- Added operation OrganizationOperations.list_regions
- Added operation OrganizationOperations.list_schema_registry_clusters

## 2.0.0 (2023-11-20)

### Features Added
Expand Down
4 changes: 2 additions & 2 deletions sdk/confluent/azure-mgmt-confluent/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 Confluent Management Client Library.
This package has been tested with Python 3.7+.
This package has been tested with Python 3.8+.
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.7+ is required to use this package.
- Python 3.8+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package
Expand Down
2 changes: 1 addition & 1 deletion sdk/confluent/azure-mgmt-confluent/_meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"commit": "58e92dd03733bc175e6a9540f4bc53703b57fcc9",
"commit": "cf5ad1932d00c7d15497705ad6b71171d3d68b1e",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.9.7",
"use": [
Expand Down
2 changes: 1 addition & 1 deletion sdk/confluent/azure-mgmt-confluent/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "python",
"TagPrefix": "python/confluent/azure-mgmt-confluent",
"Tag": "python/confluent/azure-mgmt-confluent_69ba061428"
"Tag": "python/confluent/azure-mgmt-confluent_4eb7f31513"
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ class ConfluentManagementClientConfiguration(Configuration): # pylint: disable=

:param credential: Credential needed for the client to connect to Azure. Required.
:type credential: ~azure.core.credentials.TokenCredential
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
:param subscription_id: Microsoft Azure subscription id. Required.
:type subscription_id: str
:keyword api_version: Api Version. Default value is "2023-08-22". Note that overriding this
:keyword api_version: Api Version. Default value is "2024-02-13". Note that overriding this
default value may result in unsupported behavior.
:paramtype api_version: str
"""

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

if credential is None:
raise ValueError("Parameter 'credential' must not be None.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ class ConfluentManagementClient: # pylint: disable=client-accepts-api-version-k
:vartype access: azure.mgmt.confluent.operations.AccessOperations
:param credential: Credential needed for the client to connect to Azure. Required.
:type credential: ~azure.core.credentials.TokenCredential
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
:param subscription_id: Microsoft Azure subscription id. Required.
:type subscription_id: str
:param base_url: Service URL. Default value is "https://management.azure.com".
:type base_url: str
:keyword api_version: Api Version. Default value is "2023-08-22". Note that overriding this
:keyword api_version: Api Version. Default value is "2024-02-13". 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "2.0.0"
VERSION = "2.1.0"
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ class ConfluentManagementClientConfiguration(Configuration): # pylint: disable=

:param credential: Credential needed for the client to connect to Azure. Required.
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
:param subscription_id: Microsoft Azure subscription id. Required.
:type subscription_id: str
:keyword api_version: Api Version. Default value is "2023-08-22". Note that overriding this
:keyword api_version: Api Version. Default value is "2024-02-13". Note that overriding this
default value may result in unsupported behavior.
:paramtype api_version: str
"""

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

if credential is None:
raise ValueError("Parameter 'credential' must not be None.")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ class ConfluentManagementClient: # pylint: disable=client-accepts-api-version-k
:vartype access: azure.mgmt.confluent.aio.operations.AccessOperations
:param credential: Credential needed for the client to connect to Azure. Required.
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
:param subscription_id: Microsoft Azure subscription id. Required.
:type subscription_id: str
:param base_url: Service URL. Default value is "https://management.azure.com".
:type base_url: str
:keyword api_version: Api Version. Default value is "2023-08-22". Note that overriding this
:keyword api_version: Api Version. Default value is "2024-02-13". 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
Expand Down
Loading