NamespacesOperations Class
Warning
DO NOT instantiate this class directly.
Instead, you should access the following operations through
<xref:namespaces> attribute.
- Inheritance
-
builtins.objectNamespacesOperations
Constructor
NamespacesOperations(*args, **kwargs)
Methods
begin_create_or_update |
Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent. |
begin_delete |
Deletes an existing namespace. This operation also removes all associated resources under the namespace. |
check_name_availability |
Check the give Namespace name availability. |
create_or_update_authorization_rule |
Creates or updates an AuthorizationRule for a Namespace. |
create_or_update_network_rule_set |
Create or update NetworkRuleSet for a Namespace. |
delete_authorization_rule |
Deletes an AuthorizationRule for a Namespace. |
get |
Gets the description of the specified namespace. |
get_authorization_rule |
Gets an AuthorizationRule for a Namespace by rule name. |
get_network_rule_set |
Gets NetworkRuleSet for a Namespace. |
list |
Lists all the available Namespaces within a subscription, irrespective of the resource groups. |
list_authorization_rules |
Gets a list of authorization rules for a Namespace. |
list_by_resource_group |
Lists the available Namespaces within a resource group. |
list_keys |
Gets the primary and secondary connection strings for the Namespace. |
list_network_rule_set |
Gets NetworkRuleSet for a Namespace. |
regenerate_keys |
Regenerates the primary or secondary connection strings for the specified Namespace. |
update |
Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent. |
begin_create_or_update
Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.
begin_create_or_update(resource_group_name: str, namespace_name: str, parameters: _models.EHNamespace, *, content_type: str = 'application/json', **kwargs: Any) -> LROPoller[_models.EHNamespace]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
parameters
Required
|
Parameters for creating a namespace resource. Is either a EHNamespace type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
An instance of LROPoller that returns either EHNamespace or the result of cls(response) |
Exceptions
Type | Description |
---|---|
begin_delete
Deletes an existing namespace. This operation also removes all associated resources under the namespace.
begin_delete(resource_group_name: str, namespace_name: str, **kwargs: Any) -> LROPoller[None]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
Returns
Type | Description |
---|---|
An instance of LROPoller that returns either None or the result of cls(response) |
Exceptions
Type | Description |
---|---|
check_name_availability
Check the give Namespace name availability.
check_name_availability(parameters: _models.CheckNameAvailabilityParameter, *, content_type: str = 'application/json', **kwargs: Any) -> _models.CheckNameAvailabilityResult
Parameters
Name | Description |
---|---|
parameters
Required
|
Parameters to check availability of the given Namespace name. Is either a CheckNameAvailabilityParameter type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
CheckNameAvailabilityResult or the result of cls(response) |
Exceptions
Type | Description |
---|---|
create_or_update_authorization_rule
Creates or updates an AuthorizationRule for a Namespace.
create_or_update_authorization_rule(resource_group_name: str, namespace_name: str, authorization_rule_name: str, parameters: _models.AuthorizationRule, *, content_type: str = 'application/json', **kwargs: Any) -> _models.AuthorizationRule
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
authorization_rule_name
Required
|
The authorization rule name. Required. |
parameters
Required
|
The shared access AuthorizationRule. Is either a AuthorizationRule type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
AuthorizationRule or the result of cls(response) |
Exceptions
Type | Description |
---|---|
create_or_update_network_rule_set
Create or update NetworkRuleSet for a Namespace.
create_or_update_network_rule_set(resource_group_name: str, namespace_name: str, parameters: _models.NetworkRuleSet, *, content_type: str = 'application/json', **kwargs: Any) -> _models.NetworkRuleSet
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
parameters
Required
|
The Namespace IpFilterRule. Is either a NetworkRuleSet type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
NetworkRuleSet or the result of cls(response) |
Exceptions
Type | Description |
---|---|
delete_authorization_rule
Deletes an AuthorizationRule for a Namespace.
delete_authorization_rule(resource_group_name: str, namespace_name: str, authorization_rule_name: str, **kwargs: Any) -> None
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
authorization_rule_name
Required
|
The authorization rule name. Required. |
Returns
Type | Description |
---|---|
None or the result of cls(response) |
Exceptions
Type | Description |
---|---|
get
Gets the description of the specified namespace.
get(resource_group_name: str, namespace_name: str, **kwargs: Any) -> EHNamespace
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
Returns
Type | Description |
---|---|
EHNamespace or the result of cls(response) |
Exceptions
Type | Description |
---|---|
get_authorization_rule
Gets an AuthorizationRule for a Namespace by rule name.
get_authorization_rule(resource_group_name: str, namespace_name: str, authorization_rule_name: str, **kwargs: Any) -> AuthorizationRule
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
authorization_rule_name
Required
|
The authorization rule name. Required. |
Returns
Type | Description |
---|---|
AuthorizationRule or the result of cls(response) |
Exceptions
Type | Description |
---|---|
get_network_rule_set
Gets NetworkRuleSet for a Namespace.
get_network_rule_set(resource_group_name: str, namespace_name: str, **kwargs: Any) -> NetworkRuleSet
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
Returns
Type | Description |
---|---|
NetworkRuleSet or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list
Lists all the available Namespaces within a subscription, irrespective of the resource groups.
list(**kwargs: Any) -> Iterable[EHNamespace]
Returns
Type | Description |
---|---|
An iterator like instance of either EHNamespace or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list_authorization_rules
Gets a list of authorization rules for a Namespace.
list_authorization_rules(resource_group_name: str, namespace_name: str, **kwargs: Any) -> Iterable[AuthorizationRule]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
Returns
Type | Description |
---|---|
An iterator like instance of either AuthorizationRule or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list_by_resource_group
Lists the available Namespaces within a resource group.
list_by_resource_group(resource_group_name: str, **kwargs: Any) -> Iterable[EHNamespace]
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
Returns
Type | Description |
---|---|
An iterator like instance of either EHNamespace or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list_keys
Gets the primary and secondary connection strings for the Namespace.
list_keys(resource_group_name: str, namespace_name: str, authorization_rule_name: str, **kwargs: Any) -> AccessKeys
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
authorization_rule_name
Required
|
The authorization rule name. Required. |
Returns
Type | Description |
---|---|
AccessKeys or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list_network_rule_set
Gets NetworkRuleSet for a Namespace.
list_network_rule_set(resource_group_name: str, namespace_name: str, **kwargs: Any) -> NetworkRuleSetListResult
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
Returns
Type | Description |
---|---|
NetworkRuleSetListResult or the result of cls(response) |
Exceptions
Type | Description |
---|---|
regenerate_keys
Regenerates the primary or secondary connection strings for the specified Namespace.
regenerate_keys(resource_group_name: str, namespace_name: str, authorization_rule_name: str, parameters: _models.RegenerateAccessKeyParameters, *, content_type: str = 'application/json', **kwargs: Any) -> _models.AccessKeys
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
authorization_rule_name
Required
|
The authorization rule name. Required. |
parameters
Required
|
Parameters required to regenerate the connection string. Is either a RegenerateAccessKeyParameters type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
AccessKeys or the result of cls(response) |
Exceptions
Type | Description |
---|---|
update
Creates or updates a namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.
update(resource_group_name: str, namespace_name: str, parameters: _models.EHNamespace, *, content_type: str = 'application/json', **kwargs: Any) -> _models.EHNamespace | None
Parameters
Name | Description |
---|---|
resource_group_name
Required
|
Name of the resource group within the azure subscription. Required. |
namespace_name
Required
|
The Namespace name. Required. |
parameters
Required
|
Parameters for updating a namespace resource. Is either a EHNamespace type or a IO[bytes] type. Required. |
Returns
Type | Description |
---|---|
EHNamespace 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