Skip to content

Commit 284ca19

Browse files
author
Ajit Maruti Navasare (MINDTREE LIMITED)
committed
cheangelog.md formating
1 parent 7d88537 commit 284ca19

File tree

1 file changed

+58
-67
lines changed

1 file changed

+58
-67
lines changed

src/ResourceManager/ServiceBus/ChangeLog.md

Lines changed: 58 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -79,97 +79,88 @@ The following cmdlets were affected this release:
7979

8080
The following properties are removed in this release:
8181

82+
8283
**NamespceAttributes**
8384
- Status
8485
- Enabled
8586

8687
```powershell
87-
# Old
88-
# The $namespace has Status and Enabled property
89-
$namespace = Get-AzureRmServiceBusNamespace <parameters>
90-
$namespace.Status
91-
$namespace.Enabled
92-
# New
93-
94-
# The call remains the same, but the returned values NameSpace object will not have the Enabled and Status properties
95-
$namespace = Get-AzureRmServiceBusNamespace <parameters>
96-
97-
```
98-
99-
88+
# Old
89+
# The $namespace has Status and Enabled property
90+
$namespace = Get-AzureRmServiceBusNamespace <parameters>
91+
$namespace.Status
92+
$namespace.Enabled
93+
# New
94+
95+
# The call remains the same, but the returned values NameSpace object will not have the Enabled and Status properties
96+
$namespace = Get-AzureRmServiceBusNamespace <parameters>
97+
```
98+
10099
**Queue**
101100
- EntityAvailabilityStatus
102101
- EnableBatchedOperations
103102
- IsAnonymousAccessible
104103
- SupportOrdering
105104

106-
```powershell
107-
108-
# Old
109-
# 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+
123119
**Topic**
124120
- Location
125121
- IsExpress
126122
- IsAnonymousAccessible
127123
- FilteringMessagesBeforePublishing
128124
- EnableSubscriptionPartitioning
129125
- 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+
151144
**Subscription**
152145
- EntityAvailabilityStatus
153146
- DeadLetteringOnFilterEvaluationExceptions
154147
- Location
155148
- IsReadOnly
156149

157-
```powershell
158-
159-
# Old
160-
# The $subscription has EntityAvailabilityStatus, DeadLetteringOnFilterEvaluationExceptions, Location, and IsReadOnly property
161-
$subscription = Get-AzureRmServiceBussubscription <parameters>
162-
$subscription.EntityAvailabilityStatus
163-
$subscription.DeadLetteringOnFilterEvaluationExceptions
164-
$subscription.Location
165-
$subscription.IsReadOnly
166-
167-
# New
168-
169-
# The call remains the same, but the returned values Topic object will not have the EntityAvailabilityStatus, DeadLetteringOnFilterEvaluationExceptions, Location, and IsReadOnly properties
170-
$subscription = Get-AzureRmServiceBussubscription <parameters>
171-
172-
```
150+
```powershell
151+
# Old
152+
# The $subscription has EntityAvailabilityStatus, DeadLetteringOnFilterEvaluationExceptions, Location, and IsReadOnly property
153+
$subscription = Get-AzureRmServiceBussubscription <parameters>
154+
$subscription.EntityAvailabilityStatus
155+
$subscription.DeadLetteringOnFilterEvaluationExceptions
156+
$subscription.Location
157+
$subscription.IsReadOnly
158+
159+
# New
160+
161+
# The call remains the same, but the returned values Topic object will not have the EntityAvailabilityStatus, DeadLetteringOnFilterEvaluationExceptions, Location, and IsReadOnly properties
162+
$subscription = Get-AzureRmServiceBussubscription <parameters>
163+
```
173164

174165
## Version 0.4.7
175166

0 commit comments

Comments
 (0)