You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The $queue has EntityAvailabilityStatus, EnableBatchedOperations, IsAnonymousAccessible and SupportOrdering property
110
-
$queue = Get-AzureRmServiceBusQueue <parameters>
111
-
$queue.EntityAvailabilityStatus
112
-
$queue.EnableBatchedOperations
113
-
$queue.IsAnonymousAccessible
114
-
$queue.SupportOrdering
115
-
116
-
# New
117
-
118
-
# The call remains the same, but the returned values Queue object will not have the EntityAvailabilityStatus, EnableBatchedOperations, IsAnonymousAccessible and SupportOrdering properties
119
-
$queue = Get-AzureRmServiceBusQueue <parameters>
120
-
121
-
```
122
-
105
+
```powershell
106
+
# Old
107
+
# The $queue has EntityAvailabilityStatus, EnableBatchedOperations, IsAnonymousAccessible and SupportOrdering property
108
+
$queue = Get-AzureRmServiceBusQueue <parameters>
109
+
$queue.EntityAvailabilityStatus
110
+
$queue.EnableBatchedOperations
111
+
$queue.IsAnonymousAccessible
112
+
$queue.SupportOrdering
113
+
114
+
# New
115
+
# The call remains the same, but the returned values Queue object will not have the EntityAvailabilityStatus, EnableBatchedOperations, IsAnonymousAccessible and SupportOrdering properties
116
+
$queue = Get-AzureRmServiceBusQueue <parameters>
117
+
```
118
+
123
119
**Topic**
124
120
- Location
125
121
- IsExpress
126
122
- IsAnonymousAccessible
127
123
- FilteringMessagesBeforePublishing
128
124
- EnableSubscriptionPartitioning
129
125
- EntityAvailabilityStatus
130
-
131
-
132
-
```powershell
133
-
134
-
# Old
135
-
# The $topic has EntityAvailabilityStatus, EnableSubscriptionPartitioning, IsAnonymousAccessible, IsExpress, Location and FilteringMessagesBeforePublishing property
136
-
$topic = Get-AzureRmServiceBusTopic <parameters>
137
-
$topic.EntityAvailabilityStatus
138
-
$topic.EnableSubscriptionPartitioning
139
-
$topic.IsAnonymousAccessible
140
-
$topic.IsExpress
141
-
$topic.FilteringMessagesBeforePublishing
142
-
$topic.Location
143
-
144
-
# New
145
-
146
-
# The call remains the same, but the returned values Topic object will not have the EntityAvailabilityStatus, EnableSubscriptionPartitioning, IsAnonymousAccessible, IsExpress, FilteringMessagesBeforePublishing and Location properties
147
-
$topic = Get-AzureRmServiceBusTopic <parameters>
148
-
149
-
```
150
-
126
+
127
+
```powershell
128
+
# Old
129
+
# The $topic has EntityAvailabilityStatus, EnableSubscriptionPartitioning, IsAnonymousAccessible, IsExpress, Location and FilteringMessagesBeforePublishing property
130
+
$topic = Get-AzureRmServiceBusTopic <parameters>
131
+
$topic.EntityAvailabilityStatus
132
+
$topic.EnableSubscriptionPartitioning
133
+
$topic.IsAnonymousAccessible
134
+
$topic.IsExpress
135
+
$topic.FilteringMessagesBeforePublishing
136
+
$topic.Location
137
+
138
+
# New
139
+
140
+
# The call remains the same, but the returned values Topic object will not have the EntityAvailabilityStatus, EnableSubscriptionPartitioning, IsAnonymousAccessible, IsExpress, FilteringMessagesBeforePublishing and Location properties
141
+
$topic = Get-AzureRmServiceBusTopic <parameters>
142
+
```
143
+
151
144
**Subscription**
152
145
- EntityAvailabilityStatus
153
146
- DeadLetteringOnFilterEvaluationExceptions
154
147
- Location
155
148
- IsReadOnly
156
149
157
-
```powershell
158
-
159
-
# Old
160
-
# The $subscription has EntityAvailabilityStatus, DeadLetteringOnFilterEvaluationExceptions, Location, and IsReadOnly property
# The call remains the same, but the returned values Topic object will not have the EntityAvailabilityStatus, DeadLetteringOnFilterEvaluationExceptions, Location, and IsReadOnly properties
# The call remains the same, but the returned values Topic object will not have the EntityAvailabilityStatus, DeadLetteringOnFilterEvaluationExceptions, Location, and IsReadOnly properties
0 commit comments