Skip to content

Commit

Permalink
Problem: in previous pr #6665 we modify accessModes and applicationTy…
Browse files Browse the repository at this point in the history
…pe to enum, this will bring breaking change in java sdk. Solution: remove the two enum, change it to string type (#6785)
  • Loading branch information
aim-for-better authored and anuchandy committed Jul 31, 2019
1 parent 1650794 commit b9db593
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,14 +233,7 @@
"accessModes": {
"type": "array",
"items": {
"type": "string",
"enum": [
"WebPage"
],
"x-ms-enum": {
"name": "ApplicationHttpsEndpointAccessMode",
"modelAsString": true
}
"type": "string"
},
"description": "The list of access modes for the application."
},
Expand Down Expand Up @@ -331,15 +324,7 @@
},
"applicationType": {
"type": "string",
"description": "The application type.",
"enum": [
"CustomApplication",
"RServer"
],
"x-ms-enum": {
"name": "ApplicationType",
"modelAsString": true
}
"description": "The application type."
},
"applicationState": {
"readOnly": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,14 +233,7 @@
"accessModes": {
"type": "array",
"items": {
"type": "string",
"enum": [
"WebPage"
],
"x-ms-enum": {
"name": "ApplicationHttpsEndpointAccessMode",
"modelAsString": true
}
"type": "string"
},
"description": "The list of access modes for the application."
},
Expand Down Expand Up @@ -331,15 +324,7 @@
},
"applicationType": {
"type": "string",
"description": "The application type.",
"enum": [
"CustomApplication",
"RServer"
],
"x-ms-enum": {
"name": "ApplicationType",
"modelAsString": true
}
"description": "The application type."
},
"applicationState": {
"readOnly": true,
Expand Down

0 comments on commit b9db593

Please sign in to comment.