Skip to content

Commit de77aca

Browse files
authored
Fixed order (#15367)
C# needs required fields to be before any optional fields. Because username and password are no longer required, autorest is ordering these parameters alphabetically.
1 parent 0d5cc91 commit de77aca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

specification/batch/resource-manager/Microsoft.Batch/stable/2021-06-01/BatchManagement.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4258,11 +4258,6 @@
42584258
"ContainerRegistry": {
42594259
"type": "object",
42604260
"properties": {
4261-
"registryServer": {
4262-
"type": "string",
4263-
"title": "The registry URL.",
4264-
"description": "If omitted, the default is \"docker.io\"."
4265-
},
42664261
"username": {
42674262
"type": "string",
42684263
"x-ms-client-name": "userName",
@@ -4272,6 +4267,11 @@
42724267
"type": "string",
42734268
"title": "The password to log into the registry server."
42744269
},
4270+
"registryServer": {
4271+
"type": "string",
4272+
"title": "The registry URL.",
4273+
"description": "If omitted, the default is \"docker.io\"."
4274+
},
42754275
"identityReference": {
42764276
"title": "The reference to the user assigned identity to use to access an Azure Container Registry instead of username and password.",
42774277
"$ref": "#/definitions/ComputeNodeIdentityReference"

0 commit comments

Comments
 (0)