Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ServiceBus] Add maxMessageSizeInKilobytes to swagger #16125

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions specification/servicebus/data-plane/servicebus-swagger.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"swagger": "2.0",
"info": {
"version": "2017_04",
"version": "2021_05",
"title": "ServiceBusManagementClient",
"description": "Azure Service Bus client for managing Queues, Topics, and Subscriptions.",
"x-ms-code-generation-settings": {
Expand Down Expand Up @@ -67,7 +67,7 @@
"name": "api-version",
"in": "query",
"type": "string",
"default": "2017-04",
"default": "2021-05",
"description": "Specifies the version of the REST protocol used for processing the request. This is required when using shared key authorization.",
"minLength": 1,
"x-ms-parameter-location": "client"
Expand Down Expand Up @@ -766,6 +766,14 @@
"name": "ForwardDeadLetteredMessagesTo",
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
}
},
"maxMessageSizeInKilobytes": {
"description": "The maximum size in kilobytes of message payload that can be accepted by the queue.",
"type": "integer",
"xml": {
"name": "MaxMessageSizeInKilobytes",
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
}
}
}
},
Expand Down Expand Up @@ -1129,6 +1137,14 @@
"name": "UserMetadata",
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
}
},
"maxMessageSizeInKilobytes": {
"description": "The maximum size in kilobytes of message payload that can be accepted by the topic.",
"type": "integer",
"xml": {
"name": "MaxMessageSizeInKilobytes",
"namespace": "http://schemas.microsoft.com/netservices/2010/10/servicebus/connect"
}
}
}
},
Expand Down