ConfigurationOperations Class
Warning
DO NOT instantiate this class directly.
Instead, you should access the following operations through
<xref:configuration> attribute.
- Inheritance
-
builtins.objectConfigurationOperations
Constructor
ConfigurationOperations(*args, **kwargs)
Methods
get |
Get all Event Hubs Cluster settings - a collection of key/value pairs which represent the quotas and settings imposed on the cluster. |
patch |
Replace all specified Event Hubs Cluster settings with those contained in the request body. Leaves the settings not specified in the request body unmodified. |
get
Get all Event Hubs Cluster settings - a collection of key/value pairs which represent the quotas and settings imposed on the cluster.
get(resource_group_name: str, cluster_name: str, **kwargs: Any) -> ClusterQuotaConfigurationProperties
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
cluster_name
Required
|
The name of the Event Hubs Cluster. Required. |
Returns
Type | Description |
---|---|
ClusterQuotaConfigurationProperties or the result of cls(response) |
Exceptions
Type | Description |
---|---|
patch
Replace all specified Event Hubs Cluster settings with those contained in the request body. Leaves the settings not specified in the request body unmodified.
patch(resource_group_name: str, cluster_name: str, parameters: _models.ClusterQuotaConfigurationProperties, *, content_type: str = 'application/json', **kwargs: Any) -> _models.ClusterQuotaConfigurationProperties | None
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
cluster_name
Required
|
The name of the Event Hubs Cluster. Required. |
parameters
Required
|
Parameters for creating an Event Hubs Cluster resource. Is either a ClusterQuotaConfigurationProperties type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
ClusterQuotaConfigurationProperties or None or the result of cls(response) |
Exceptions
Type | Description |
---|---|
Attributes
models
models = <module 'azure.mgmt.eventhub.v2022_10_01_preview.models' from 'C:\\hostedtoolcache\\windows\\Python\\3.11.9\\x64\\Lib\\site-packages\\azure\\mgmt\\eventhub\\v2022_10_01_preview\\models\\__init__.py'>
Azure SDK for Python