EventGridManagementClient Class
Azure EventGrid Management Client.
Constructor
EventGridManagementClient(credential: TokenCredential, subscription_id: str, base_url: str | None = None, *, cloud_setting: AzureClouds | None = None, **kwargs: Any)
Parameters
| Name | Description |
|---|---|
|
credential
Required
|
Credential used to authenticate requests to the service. Required. |
|
subscription_id
Required
|
The ID of the target subscription. The value must be an UUID. Required. |
|
base_url
|
Service host. Default value is None. Default value: None
|
Keyword-Only Parameters
| Name | Description |
|---|---|
|
cloud_setting
|
The cloud setting for which to get the ARM endpoint. Default value is None. Default value: None
|
|
api_version
|
The API version to use for this operation. Known values are "2025-07-15-preview". Default value is "2025-07-15-preview". Note that overriding this default value may result in unsupported behavior. |
|
polling_interval
|
Default waiting time between two polls for LRO operations if no Retry-After header is present. |
Variables
| Name | Description |
|---|---|
|
operations
|
Operations operations |
|
ca_certificates
|
CaCertificatesOperations operations |
|
namespaces
|
NamespacesOperations operations |
|
channels
|
ChannelsOperations operations |
|
partner_namespaces
|
PartnerNamespacesOperations operations |
|
client_groups
|
ClientGroupsOperations operations |
|
clients
|
ClientsOperations operations |
|
domains
|
DomainsOperations operations |
|
domain_topics
|
DomainTopicsOperations operations |
|
event_subscriptions
|
EventSubscriptionsOperations operations |
|
topic_event_subscriptions
|
TopicEventSubscriptionsOperations operations |
|
domain_event_subscriptions
|
DomainEventSubscriptionsOperations operations |
|
system_topic_event_subscriptions
|
SystemTopicEventSubscriptionsOperations operations |
|
partner_topic_event_subscriptions
|
PartnerTopicEventSubscriptionsOperations operations |
|
namespace_topics
|
NamespaceTopicsOperations operations |
|
partner_configurations
|
PartnerConfigurationsOperations operations |
|
partner_destinations
|
PartnerDestinationsOperations operations |
|
partner_registrations
|
PartnerRegistrationsOperations operations |
|
partner_topics
|
PartnerTopicsOperations operations |
|
network_security_perimeter_configurations
|
NetworkSecurityPerimeterConfigurationsOperations operations |
|
permission_bindings
|
PermissionBindingsOperations operations |
|
private_endpoint_connections
|
PrivateEndpointConnectionsOperations operations |
|
private_link_resources
|
PrivateLinkResourcesOperations operations |
|
system_topics
|
SystemTopicsOperations operations |
|
topics
|
TopicsOperations operations |
|
extension_topics
|
ExtensionTopicsOperations operations |
|
topic_spaces
|
TopicSpacesOperations operations |
|
verified_partners
|
VerifiedPartnersOperations operations |
|
domain_topic_event_subscriptions
|
DomainTopicEventSubscriptionsOperations operations |
|
namespace_topic_event_subscriptions
|
NamespaceTopicEventSubscriptionsOperations operations |
|
topic_types
|
TopicTypesOperations operations |
Methods
| close | |
| send_request |
Runs the network request through the client's chained policies.
For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request |
close
close() -> None
send_request
Runs the network request through the client's chained policies.
>>> from azure.core.rest import HttpRequest
>>> request = HttpRequest("GET", "https://www.example.org/")
<HttpRequest [GET], url: 'https://www.example.org/'>
>>> response = client.send_request(request)
<HttpResponse: 200 OK>
For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request
send_request(request: HttpRequest, *, stream: bool = False, **kwargs: Any) -> HttpResponse
Parameters
| Name | Description |
|---|---|
|
request
Required
|
The network request you want to make. Required. |
Keyword-Only Parameters
| Name | Description |
|---|---|
|
stream
|
Whether the response payload will be streamed. Defaults to False. Default value: False
|
Returns
| Type | Description |
|---|---|
|
The response of your network call. Does not do error handling on your response. |