15
15
from ._configuration import EventGridManagementClientConfiguration
16
16
from .operations import DomainsOperations
17
17
from .operations import DomainTopicsOperations
18
- from .operations import EventChannelsOperations
19
18
from .operations import EventSubscriptionsOperations
20
- from .operations import SystemTopicEventSubscriptionsOperations
21
- from .operations import PartnerTopicEventSubscriptionsOperations
22
19
from .operations import Operations
23
- from .operations import PartnerNamespacesOperations
24
- from .operations import PartnerRegistrationsOperations
25
- from .operations import PartnerTopicsOperations
20
+ from .operations import TopicsOperations
26
21
from .operations import PrivateEndpointConnectionsOperations
27
22
from .operations import PrivateLinkResourcesOperations
28
- from .operations import SystemTopicsOperations
29
- from .operations import TopicsOperations
30
- from .operations import ExtensionTopicsOperations
31
23
from .operations import TopicTypesOperations
32
24
from . import models
33
25
@@ -42,32 +34,16 @@ class EventGridManagementClient(SDKClient):
42
34
:vartype domains: azure.mgmt.eventgrid.operations.DomainsOperations
43
35
:ivar domain_topics: DomainTopics operations
44
36
:vartype domain_topics: azure.mgmt.eventgrid.operations.DomainTopicsOperations
45
- :ivar event_channels: EventChannels operations
46
- :vartype event_channels: azure.mgmt.eventgrid.operations.EventChannelsOperations
47
37
:ivar event_subscriptions: EventSubscriptions operations
48
38
: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
53
39
:ivar operations: Operations operations
54
40
:vartype operations: azure.mgmt.eventgrid.operations.Operations
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
41
+ :ivar topics: Topics operations
42
+ :vartype topics: azure.mgmt.eventgrid.operations.TopicsOperations
61
43
:ivar private_endpoint_connections: PrivateEndpointConnections operations
62
44
:vartype private_endpoint_connections: azure.mgmt.eventgrid.operations.PrivateEndpointConnectionsOperations
63
45
:ivar private_link_resources: PrivateLinkResources operations
64
46
: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
71
47
:ivar topic_types: TopicTypes operations
72
48
:vartype topic_types: azure.mgmt.eventgrid.operations.TopicTypesOperations
73
49
@@ -88,39 +64,23 @@ def __init__(
88
64
super (EventGridManagementClient , self ).__init__ (self .config .credentials , self .config )
89
65
90
66
client_models = {k : v for k , v in models .__dict__ .items () if isinstance (v , type )}
91
- self .api_version = '2020-04 -01-preview '
67
+ self .api_version = '2020-06 -01'
92
68
self ._serialize = Serializer (client_models )
93
69
self ._deserialize = Deserializer (client_models )
94
70
95
71
self .domains = DomainsOperations (
96
72
self ._client , self .config , self ._serialize , self ._deserialize )
97
73
self .domain_topics = DomainTopicsOperations (
98
74
self ._client , self .config , self ._serialize , self ._deserialize )
99
- self .event_channels = EventChannelsOperations (
100
- self ._client , self .config , self ._serialize , self ._deserialize )
101
75
self .event_subscriptions = EventSubscriptionsOperations (
102
76
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 )
107
77
self .operations = Operations (
108
78
self ._client , self .config , self ._serialize , self ._deserialize )
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 (
79
+ self .topics = TopicsOperations (
114
80
self ._client , self .config , self ._serialize , self ._deserialize )
115
81
self .private_endpoint_connections = PrivateEndpointConnectionsOperations (
116
82
self ._client , self .config , self ._serialize , self ._deserialize )
117
83
self .private_link_resources = PrivateLinkResourcesOperations (
118
84
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 )
125
85
self .topic_types = TopicTypesOperations (
126
86
self ._client , self .config , self ._serialize , self ._deserialize )
0 commit comments