Skip to content

Commit c810bc5

Browse files
committed
Acrolynx
1 parent b1478a1 commit c810bc5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/event-grid/query-event-subscriptions.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ This article describes how to list the Event Grid subscriptions in your Azure su
1414

1515
## Resource groups and Azure subscriptions
1616

17-
Azure subscriptions and resource groups aren't Azure resources. Therefore, event grid subscriptions to resource groups or Azure subscriptions do not have the same properties as event grid subscriptions to Azure resources. Event grid subscriptions to resource groups or Azure subscriptions are considered global.
17+
Azure subscriptions and resource groups aren't Azure resources. Therefore, Event Grid subscriptions to resource groups or Azure subscriptions don't have the same properties as Event Grid subscriptions to Azure resources. Event Grid subscriptions to resource groups or Azure subscriptions are considered global.
1818

19-
To get event grid subscriptions for an Azure subscription and its resource groups, you don't need to provide any parameters. Make sure you've selected the Azure subscription you want to query. The following examples don't get event grid subscriptions for custom topics or Azure resources.
19+
To get Event Grid subscriptions for an Azure subscription and its resource groups, you don't need to provide any parameters. Make sure you've selected the Azure subscription you want to query. The following examples don't get Event Grid subscriptions for custom topics or Azure resources.
2020

2121
For Azure CLI, use:
2222

@@ -32,7 +32,7 @@ Set-AzContext -Subscription "My Azure Subscription"
3232
Get-AzEventGridSubscription
3333
```
3434

35-
To get event grid subscriptions for an Azure subscription, provide the topic type of **Microsoft.Resources.Subscriptions**.
35+
To get Event Grid subscriptions for an Azure subscription, provide the topic type of **Microsoft.Resources.Subscriptions**.
3636

3737
For Azure CLI, use:
3838

@@ -46,7 +46,7 @@ For PowerShell, use:
4646
Get-AzEventGridSubscription -TopicTypeName "Microsoft.Resources.Subscriptions"
4747
```
4848

49-
To get event grid subscriptions for all resource groups within an Azure subscription, provide the topic type of **Microsoft.Resources.ResourceGroups**.
49+
To get Event Grid subscriptions for all resource groups within an Azure subscription, provide the topic type of **Microsoft.Resources.ResourceGroups**.
5050

5151
For Azure CLI, use:
5252

@@ -60,7 +60,7 @@ For PowerShell, use:
6060
Get-AzEventGridSubscription -TopicTypeName "Microsoft.Resources.ResourceGroups"
6161
```
6262

63-
To get event grid subscriptions for a specified resource group, provide the name of the resource group as a parameter.
63+
To get Event Grid subscriptions for a specified resource group, provide the name of the resource group as a parameter.
6464

6565
For Azure CLI, use:
6666

@@ -76,9 +76,9 @@ Get-AzEventGridSubscription -ResourceGroupName myResourceGroup
7676

7777
## Custom topics and Azure resources
7878

79-
Event grid custom topics are Azure resources. Therefore, you query event grid subscriptions for custom topics and other resources, like Blob storage account, in the same way. To get event grid subscriptions for custom topics, you must provide parameters that identify the resource or identify the location of the resource. It's not possible to broadly query event grid subscriptions for resources across your Azure subscription.
79+
Event Grid custom topics are Azure resources. Therefore, you query Event Grid subscriptions for custom topics and other resources, like Blob storage account, in the same way. To get Event Grid subscriptions for custom topics, you must provide parameters that identify the resource or identify the location of the resource. It's not possible to broadly query Event Grid subscriptions for resources across your Azure subscription.
8080

81-
To get event grid subscriptions for custom topics and other resources in a location, provide the name of the location.
81+
To get Event Grid subscriptions for custom topics and other resources in a location, provide the name of the location.
8282

8383
For Azure CLI, use:
8484

@@ -120,7 +120,7 @@ For PowerShell, use:
120120
Get-AzEventGridSubscription -TopicTypeName "Microsoft.Storage.StorageAccounts" -Location westus2
121121
```
122122

123-
To get event grid subscriptions for a custom topic, provide the name of the custom topic and the name of its resource group.
123+
To get Event Grid subscriptions for a custom topic, provide the name of the custom topic and the name of its resource group.
124124

125125
For Azure CLI, use:
126126

@@ -134,7 +134,7 @@ For PowerShell, use:
134134
Get-AzEventGridSubscription -TopicName myCustomTopic -ResourceGroupName myResourceGroup
135135
```
136136

137-
To get event grid subscriptions for a particular resource, provide the resource ID.
137+
To get Event Grid subscriptions for a particular resource, provide the resource ID.
138138

139139
For Azure CLI, use:
140140

0 commit comments

Comments
 (0)