Skip to content

Commit 825e668

Browse files
authored
Merge pull request Azure#4 from conniey/alphabetise_methods
Sort method names.
2 parents 095dbf6 + 3f20506 commit 825e668

File tree

1 file changed

+156
-156
lines changed

1 file changed

+156
-156
lines changed

sdk/servicebus/azure-servicebus/swagger/servicebus-swagger.json

+156-156
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@
3838
}
3939
],
4040
"parameters": {
41+
"ApiVersion": {
42+
"name": "api-version",
43+
"in": "query",
44+
"type": "string",
45+
"default": "2017-04",
46+
"description": "Specifies the version of the REST protocol used for processing the request. This is required when using shared key authorization.",
47+
"minLength": 1,
48+
"x-ms-parameter-location": "client"
49+
},
4150
"Endpoint": {
4251
"in": "path",
4352
"name": "endpoint",
@@ -54,18 +63,71 @@
5463
"type": "boolean",
5564
"default": false,
5665
"x-ms-parameter-location": "method"
57-
},
58-
"ApiVersion": {
59-
"name": "api-version",
60-
"in": "query",
61-
"type": "string",
62-
"default": "2017-04",
63-
"description": "Specifies the version of the REST protocol used for processing the request. This is required when using shared key authorization.",
64-
"minLength": 1,
65-
"x-ms-parameter-location": "client"
6666
}
6767
},
6868
"definitions": {
69+
"AccessRights": {
70+
"description": "Access rights of the entity",
71+
"type": "string",
72+
"xml":{
73+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
74+
},
75+
"enum": [
76+
"Manage",
77+
"Send",
78+
"Listen"
79+
]
80+
},
81+
"AuthorizationRule": {
82+
"description": "Authorization rule of an entity",
83+
"type": "object",
84+
"xml": {
85+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
86+
},
87+
"properties": {
88+
"ClaimType":{
89+
"type": "string",
90+
"xml": {
91+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
92+
}
93+
},
94+
"CreatedTime":{
95+
"type": "string",
96+
"format": "date-time",
97+
"xml": {
98+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
99+
}
100+
},
101+
"KeyName":{
102+
"type": "string",
103+
"xml": {
104+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
105+
}
106+
},
107+
"ModifiedTime":{
108+
"type": "string",
109+
"format": "date-time",
110+
"xml": {
111+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
112+
}
113+
},
114+
"Rights": {
115+
"description": "Access rights of the entity",
116+
"type": "array",
117+
"xml": {
118+
"wrapped": true,
119+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
120+
},
121+
"items": {
122+
"type": "string",
123+
"xml": {
124+
"name": "AccessRights",
125+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
126+
}
127+
}
128+
}
129+
}
130+
},
69131
"CreateQueueBody": {
70132
"description": "The request body for creating a queue.",
71133
"type": "object",
@@ -128,67 +190,6 @@
128190
}
129191
}
130192
},
131-
"MessageCountDetails": {
132-
"description": "Details about the message counts in queue.",
133-
"type": "object",
134-
"properties": {
135-
"ActiveMessageCount": {
136-
"description": "Number of active messages in the queue, topic, or subscription.",
137-
"type": "integer",
138-
"xml": {
139-
"prefix": "d2p1",
140-
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
141-
}
142-
},
143-
"DeadLetterMessageCount": {
144-
"description": "Number of messages that are dead lettered.",
145-
"type": "integer",
146-
"xml": {
147-
"prefix": "d2p1",
148-
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
149-
}
150-
},
151-
"ScheduledMessageCount": {
152-
"description": "Number of scheduled messages.",
153-
"type": "integer",
154-
"xml": {
155-
"prefix": "d2p1",
156-
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
157-
}
158-
},
159-
"TransferDeadLetterMessageCount": {
160-
"description": "Number of messages transferred into dead letters.",
161-
"type": "integer",
162-
"xml": {
163-
"prefix": "d2p1",
164-
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
165-
}
166-
},
167-
"TransferMessageCount": {
168-
"description": "Number of messages transferred to another queue, topic, or subscription.",
169-
"type": "integer",
170-
"xml": {
171-
"prefix": "d2p1",
172-
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
173-
}
174-
}
175-
},
176-
"xml": {
177-
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
178-
}
179-
},
180-
"AccessRights": {
181-
"description": "Access rights of the entity",
182-
"type": "string",
183-
"xml":{
184-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
185-
},
186-
"enum": [
187-
"Manage",
188-
"Send",
189-
"Listen"
190-
]
191-
},
192193
"EntityAvailabilityStatus": {
193194
"description": "Availibility status of the entity",
194195
"type": "string",
@@ -221,112 +222,53 @@
221222
"Unknown"
222223
]
223224
},
224-
"QueueRuntimeInfo":{
225-
"description": "Service Bus queue metrics.",
225+
"MessageCountDetails": {
226+
"description": "Details about the message counts in queue.",
226227
"type": "object",
227-
"xml": {
228-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
229-
},
230228
"properties": {
231-
"QueueName": {
232-
"description": "Name of the queue",
233-
"type": "string"
234-
},
235-
"AccessedAt": {
236-
"description": "Last time a message was sent, or the last time there was a receive request to this queue.",
237-
"type": "string",
238-
"format": "date-time",
239-
"xml": {
240-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
241-
}
242-
},
243-
"CreatedAt": {
244-
"description": "The exact time the queue was created.",
245-
"type": "string",
246-
"format": "date-time",
229+
"ActiveMessageCount": {
230+
"description": "Number of active messages in the queue, topic, or subscription.",
231+
"type": "integer",
247232
"xml": {
248-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
233+
"prefix": "d2p1",
234+
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
249235
}
250236
},
251-
"UpdatedAt": {
252-
"description": "The exact time a message was updated in the queue.",
253-
"type": "string",
254-
"format": "date-time",
237+
"DeadLetterMessageCount": {
238+
"description": "Number of messages that are dead lettered.",
239+
"type": "integer",
255240
"xml": {
256-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
241+
"prefix": "d2p1",
242+
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
257243
}
258244
},
259-
"SizeInBytes": {
260-
"description": "The size of the queue, in bytes.",
245+
"ScheduledMessageCount": {
246+
"description": "Number of scheduled messages.",
261247
"type": "integer",
262248
"xml": {
263-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
249+
"prefix": "d2p1",
250+
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
264251
}
265252
},
266-
"MessageCount": {
267-
"description": "The number of messages in the queue.",
253+
"TransferDeadLetterMessageCount": {
254+
"description": "Number of messages transferred into dead letters.",
268255
"type": "integer",
269256
"xml": {
270-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
257+
"prefix": "d2p1",
258+
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
271259
}
272260
},
273-
"MessageCountDetails": {
274-
"$ref": "#/definitions/MessageCountDetails",
261+
"TransferMessageCount": {
262+
"description": "Number of messages transferred to another queue, topic, or subscription.",
263+
"type": "integer",
275264
"xml": {
276-
"name": "CountDetails",
277-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
265+
"prefix": "d2p1",
266+
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
278267
}
279268
}
280-
}
281-
},
282-
"AuthorizationRule": {
283-
"description": "Authorization rule of an entity",
284-
"type": "object",
285-
"xml": {
286-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
287269
},
288-
"properties": {
289-
"ClaimType":{
290-
"type": "string",
291-
"xml": {
292-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
293-
}
294-
},
295-
"CreatedTime":{
296-
"type": "string",
297-
"format": "date-time",
298-
"xml": {
299-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
300-
}
301-
},
302-
"KeyName":{
303-
"type": "string",
304-
"xml": {
305-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
306-
}
307-
},
308-
"ModifiedTime":{
309-
"type": "string",
310-
"format": "date-time",
311-
"xml": {
312-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
313-
}
314-
},
315-
"Rights": {
316-
"description": "Access rights of the entity",
317-
"type": "array",
318-
"xml": {
319-
"wrapped": true,
320-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
321-
},
322-
"items": {
323-
"type": "string",
324-
"xml": {
325-
"name": "AccessRights",
326-
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
327-
}
328-
}
329-
}
270+
"xml": {
271+
"namespace": "http://schemas.microsoft.com/netservices/2011/06/servicebus"
330272
}
331273
},
332274
"QueueDescription": {
@@ -478,6 +420,64 @@
478420
}
479421
}
480422
},
423+
"QueueRuntimeInfo":{
424+
"description": "Service Bus queue metrics.",
425+
"type": "object",
426+
"xml": {
427+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
428+
},
429+
"properties": {
430+
"QueueName": {
431+
"description": "Name of the queue",
432+
"type": "string"
433+
},
434+
"AccessedAt": {
435+
"description": "Last time a message was sent, or the last time there was a receive request to this queue.",
436+
"type": "string",
437+
"format": "date-time",
438+
"xml": {
439+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
440+
}
441+
},
442+
"CreatedAt": {
443+
"description": "The exact time the queue was created.",
444+
"type": "string",
445+
"format": "date-time",
446+
"xml": {
447+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
448+
}
449+
},
450+
"UpdatedAt": {
451+
"description": "The exact time a message was updated in the queue.",
452+
"type": "string",
453+
"format": "date-time",
454+
"xml": {
455+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
456+
}
457+
},
458+
"SizeInBytes": {
459+
"description": "The size of the queue, in bytes.",
460+
"type": "integer",
461+
"xml": {
462+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
463+
}
464+
},
465+
"MessageCount": {
466+
"description": "The number of messages in the queue.",
467+
"type": "integer",
468+
"xml": {
469+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
470+
}
471+
},
472+
"MessageCountDetails": {
473+
"$ref": "#/definitions/MessageCountDetails",
474+
"xml": {
475+
"name": "CountDetails",
476+
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
477+
}
478+
}
479+
}
480+
},
481481
"ServiceBusManagementError": {
482482
"description": "The error response from Service Bus.",
483483
"type": "object",

0 commit comments

Comments
 (0)