TopicTypesOperations Class
TopicTypesOperations async operations.
You should not instantiate this class directly. Instead, you should create a Client instance that instantiates it for you and attaches it as an attribute.
- Inheritance
-
builtins.objectTopicTypesOperations
Constructor
TopicTypesOperations(client, config, serializer, deserializer)
Parameters
Name | Description |
---|---|
client
Required
|
Client for service requests. |
config
Required
|
Configuration of service client. |
serializer
Required
|
An object model serializer. |
deserializer
Required
|
An object model deserializer. |
Variables
Name | Description |
---|---|
models
|
Alias to model classes used in this operation group. |
Methods
get |
Get a topic type. Get information about a topic type. |
list |
List topic types. List all registered topic types. |
list_event_types |
List event types. List event types for a topic type. |
get
Get a topic type.
Get information about a topic type.
async get(topic_type_name: str, **kwargs: Any) -> TopicTypeInfo
Parameters
Name | Description |
---|---|
topic_type_name
Required
|
Name of the topic type. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
Returns
Type | Description |
---|---|
TopicTypeInfo, or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list
List topic types.
List all registered topic types.
list(**kwargs: Any) -> AsyncIterable[TopicTypesListResult]
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
Returns
Type | Description |
---|---|
An iterator like instance of either TopicTypesListResult or the result of cls(response) |
Exceptions
Type | Description |
---|---|
list_event_types
List event types.
List event types for a topic type.
list_event_types(topic_type_name: str, **kwargs: Any) -> AsyncIterable[EventTypesListResult]
Parameters
Name | Description |
---|---|
topic_type_name
Required
|
Name of the topic type. |
Keyword-Only Parameters
Name | Description |
---|---|
cls
|
A custom type or function that will be passed the direct response |
Returns
Type | Description |
---|---|
An iterator like instance of either EventTypesListResult or the result of cls(response) |
Exceptions
Type | Description |
---|---|
Attributes
models
models = <module 'azure.mgmt.eventgrid.models' from 'C:\\hostedtoolcache\\windows\\Python\\3.11.9\\x64\\Lib\\site-packages\\azure\\mgmt\\eventgrid\\models\\__init__.py'>
Azure SDK for Python