1515from ._configuration import EventGridManagementClientConfiguration
1616from .operations import DomainsOperations
1717from .operations import DomainTopicsOperations
18+ from .operations import EventChannelsOperations
1819from .operations import EventSubscriptionsOperations
20+ from .operations import SystemTopicEventSubscriptionsOperations
21+ from .operations import PartnerTopicEventSubscriptionsOperations
1922from .operations import Operations
20- from .operations import TopicsOperations
23+ from .operations import PartnerNamespacesOperations
24+ from .operations import PartnerRegistrationsOperations
25+ from .operations import PartnerTopicsOperations
2126from .operations import PrivateEndpointConnectionsOperations
2227from .operations import PrivateLinkResourcesOperations
28+ from .operations import SystemTopicsOperations
29+ from .operations import TopicsOperations
30+ from .operations import ExtensionTopicsOperations
2331from .operations import TopicTypesOperations
2432from . import models
2533
@@ -34,16 +42,32 @@ class EventGridManagementClient(SDKClient):
3442 :vartype domains: azure.mgmt.eventgrid.operations.DomainsOperations
3543 :ivar domain_topics: DomainTopics operations
3644 :vartype domain_topics: azure.mgmt.eventgrid.operations.DomainTopicsOperations
45+ :ivar event_channels: EventChannels operations
46+ :vartype event_channels: azure.mgmt.eventgrid.operations.EventChannelsOperations
3747 :ivar event_subscriptions: EventSubscriptions operations
3848 :vartype event_subscriptions: azure.mgmt.eventgrid.operations.EventSubscriptionsOperations
49+ :ivar system_topic_event_subscriptions: SystemTopicEventSubscriptions operations
50+ :vartype system_topic_event_subscriptions: azure.mgmt.eventgrid.operations.SystemTopicEventSubscriptionsOperations
51+ :ivar partner_topic_event_subscriptions: PartnerTopicEventSubscriptions operations
52+ :vartype partner_topic_event_subscriptions: azure.mgmt.eventgrid.operations.PartnerTopicEventSubscriptionsOperations
3953 :ivar operations: Operations operations
4054 :vartype operations: azure.mgmt.eventgrid.operations.Operations
41- :ivar topics: Topics operations
42- :vartype topics: azure.mgmt.eventgrid.operations.TopicsOperations
55+ :ivar partner_namespaces: PartnerNamespaces operations
56+ :vartype partner_namespaces: azure.mgmt.eventgrid.operations.PartnerNamespacesOperations
57+ :ivar partner_registrations: PartnerRegistrations operations
58+ :vartype partner_registrations: azure.mgmt.eventgrid.operations.PartnerRegistrationsOperations
59+ :ivar partner_topics: PartnerTopics operations
60+ :vartype partner_topics: azure.mgmt.eventgrid.operations.PartnerTopicsOperations
4361 :ivar private_endpoint_connections: PrivateEndpointConnections operations
4462 :vartype private_endpoint_connections: azure.mgmt.eventgrid.operations.PrivateEndpointConnectionsOperations
4563 :ivar private_link_resources: PrivateLinkResources operations
4664 :vartype private_link_resources: azure.mgmt.eventgrid.operations.PrivateLinkResourcesOperations
65+ :ivar system_topics: SystemTopics operations
66+ :vartype system_topics: azure.mgmt.eventgrid.operations.SystemTopicsOperations
67+ :ivar topics: Topics operations
68+ :vartype topics: azure.mgmt.eventgrid.operations.TopicsOperations
69+ :ivar extension_topics: ExtensionTopics operations
70+ :vartype extension_topics: azure.mgmt.eventgrid.operations.ExtensionTopicsOperations
4771 :ivar topic_types: TopicTypes operations
4872 :vartype topic_types: azure.mgmt.eventgrid.operations.TopicTypesOperations
4973
@@ -64,23 +88,39 @@ def __init__(
6488 super (EventGridManagementClient , self ).__init__ (self .config .credentials , self .config )
6589
6690 client_models = {k : v for k , v in models .__dict__ .items () if isinstance (v , type )}
67- self .api_version = '2020-06-01 '
91+ self .api_version = '2020-10-15-preview '
6892 self ._serialize = Serializer (client_models )
6993 self ._deserialize = Deserializer (client_models )
7094
7195 self .domains = DomainsOperations (
7296 self ._client , self .config , self ._serialize , self ._deserialize )
7397 self .domain_topics = DomainTopicsOperations (
7498 self ._client , self .config , self ._serialize , self ._deserialize )
99+ self .event_channels = EventChannelsOperations (
100+ self ._client , self .config , self ._serialize , self ._deserialize )
75101 self .event_subscriptions = EventSubscriptionsOperations (
76102 self ._client , self .config , self ._serialize , self ._deserialize )
103+ self .system_topic_event_subscriptions = SystemTopicEventSubscriptionsOperations (
104+ self ._client , self .config , self ._serialize , self ._deserialize )
105+ self .partner_topic_event_subscriptions = PartnerTopicEventSubscriptionsOperations (
106+ self ._client , self .config , self ._serialize , self ._deserialize )
77107 self .operations = Operations (
78108 self ._client , self .config , self ._serialize , self ._deserialize )
79- self .topics = TopicsOperations (
109+ self .partner_namespaces = PartnerNamespacesOperations (
110+ self ._client , self .config , self ._serialize , self ._deserialize )
111+ self .partner_registrations = PartnerRegistrationsOperations (
112+ self ._client , self .config , self ._serialize , self ._deserialize )
113+ self .partner_topics = PartnerTopicsOperations (
80114 self ._client , self .config , self ._serialize , self ._deserialize )
81115 self .private_endpoint_connections = PrivateEndpointConnectionsOperations (
82116 self ._client , self .config , self ._serialize , self ._deserialize )
83117 self .private_link_resources = PrivateLinkResourcesOperations (
84118 self ._client , self .config , self ._serialize , self ._deserialize )
119+ self .system_topics = SystemTopicsOperations (
120+ self ._client , self .config , self ._serialize , self ._deserialize )
121+ self .topics = TopicsOperations (
122+ self ._client , self .config , self ._serialize , self ._deserialize )
123+ self .extension_topics = ExtensionTopicsOperations (
124+ self ._client , self .config , self ._serialize , self ._deserialize )
85125 self .topic_types = TopicTypesOperations (
86126 self ._client , self .config , self ._serialize , self ._deserialize )
0 commit comments