TopicSpacesOperations Class  
Warning
DO NOT instantiate this class directly.
Instead, you should access the following operations through
<xref:topic_spaces> attribute.
Constructor
TopicSpacesOperations(*args, **kwargs)
	Methods
| begin_create_or_update | 
					 Create or update a topic space. Create or update a topic space with the specified parameters.  | 
			
| begin_delete | 
					 Delete a topic space. Delete an existing topic space.  | 
			
| get | 
					 Get a topic space. Get properties of a topic space.  | 
			
| list_by_namespace | 
					 List all topic spaces under a namespace. Get all the topic spaces under a namespace.  | 
			
begin_create_or_update
Create or update a topic space.
Create or update a topic space with the specified parameters.
async begin_create_or_update(resource_group_name: str, namespace_name: str, topic_space_name: str, topic_space_info: _models.TopicSpace, *, content_type: str = 'application/json', **kwargs: Any) -> AsyncLROPoller[_models.TopicSpace]
		Parameters
| Name | Description | 
|---|---|
| 
		 resource_group_name 
			
				Required
			 
	 | 
	
		
		 The name of the resource group within the user's subscription. Required.  | 
| 
		 namespace_name 
			
				Required
			 
	 | 
	
		
		 Name of the namespace. Required.  | 
| 
		 topic_space_name 
			
				Required
			 
	 | 
	
		
		 The topic space name. Required.  | 
| 
		 topic_space_info 
			
				Required
			 
	 | 
	
		
		 Topic space information. Is either a TopicSpace type or a IO[bytes] type. Required.  | 
Returns
| Type | Description | 
|---|---|
| 
					 An instance of AsyncLROPoller that returns either TopicSpace or the result of cls(response)  | 
		
Exceptions
| Type | Description | 
|---|---|
begin_delete
Delete a topic space.
Delete an existing topic space.
async begin_delete(resource_group_name: str, namespace_name: str, topic_space_name: str, **kwargs: Any) -> AsyncLROPoller[None]
		Parameters
| Name | Description | 
|---|---|
| 
		 resource_group_name 
			
				Required
			 
	 | 
	
		
		 The name of the resource group within the user's subscription. Required.  | 
| 
		 namespace_name 
			
				Required
			 
	 | 
	
		
		 Name of the namespace. Required.  | 
| 
		 topic_space_name 
			
				Required
			 
	 | 
	
		
		 Name of the Topic space. Required.  | 
Returns
| Type | Description | 
|---|---|
| 
					 An instance of AsyncLROPoller that returns either None or the result of cls(response)  | 
		
Exceptions
| Type | Description | 
|---|---|
get
Get a topic space.
Get properties of a topic space.
async get(resource_group_name: str, namespace_name: str, topic_space_name: str, **kwargs: Any) -> TopicSpace
		Parameters
| Name | Description | 
|---|---|
| 
		 resource_group_name 
			
				Required
			 
	 | 
	
		
		 The name of the resource group within the user's subscription. Required.  | 
| 
		 namespace_name 
			
				Required
			 
	 | 
	
		
		 Name of the namespace. Required.  | 
| 
		 topic_space_name 
			
				Required
			 
	 | 
	
		
		 Name of the Topic space. Required.  | 
Returns
| Type | Description | 
|---|---|
| 
					 TopicSpace or the result of cls(response)  | 
		
Exceptions
| Type | Description | 
|---|---|
list_by_namespace
List all topic spaces under a namespace.
Get all the topic spaces under a namespace.
list_by_namespace(resource_group_name: str, namespace_name: str, filter: str | None = None, top: int | None = None, **kwargs: Any) -> AsyncItemPaged[TopicSpace]
		Parameters
| Name | Description | 
|---|---|
| 
		 resource_group_name 
			
				Required
			 
	 | 
	
		
		 The name of the resource group within the user's subscription. Required.  | 
| 
		 namespace_name 
			
				Required
			 
	 | 
	
		
		 Name of the namespace. Required.  | 
| 
		 filter 
	 | 
	
		
		 The query used to filter the search results using OData syntax. Filtering is permitted on the 'name' property only and with limited number of OData operations. These operations are: the 'contains' function as well as the following logical operations: not, and, or, eq (for equal), and ne (for not equal). No arithmetic operations are supported. The following is a valid filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The following is not a valid filter example: $filter=location eq 'westus'. Default value is None. Default value: None 
			 | 
| 
		 top 
	 | 
	
		
		 The number of results to return per page for the list operation. Valid range for top parameter is 1 to 100. If not specified, the default number of results to be returned is 20 items per page. Default value is None. Default value: None 
			 | 
Returns
| Type | Description | 
|---|---|
| 
					 An iterator like instance of either TopicSpace or the result of cls(response)  | 
		
Exceptions
| Type | Description | 
|---|---|
Attributes
models
models = <module 'azure.mgmt.eventgrid.models' from 'C:\\ToolCache\\Python\\3.11.9\\x64\\Lib\\site-packages\\py2docfx\\venv\\venv137\\Lib\\site-packages\\azure\\mgmt\\eventgrid\\models\\__init__.py'>