Skip to content

Commit

Permalink
Creating a single definition for ComputeModeOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Mar 13, 2018
1 parent 39f9498 commit 372c1a5
Showing 1 changed file with 19 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,19 @@
}
}
},
"ComputeModeOptions": {
"description": "Shared or dedicated app hosting.",
"enum": [
"Shared",
"Dedicated",
"Dynamic"
],
"type": "string",
"x-ms-enum": {
"name": "ComputeModeOptions",
"modelAsString": true
}
},
"ConnStringInfo": {
"description": "Database connection string information.",
"type": "object",
Expand Down Expand Up @@ -2229,17 +2242,8 @@
"type": "string"
},
"computeMode": {
"description": "Shared or dedicated app hosting.",
"enum": [
"Shared",
"Dedicated",
"Dynamic"
],
"type": "string",
"x-ms-enum": {
"name": "ComputeModeOptions",
"modelAsString": true
}
"$ref": "#/definitions/ComputeModeOptions",
"description": "Shared or dedicated app hosting."
},
"capacity": {
"format": "int32",
Expand Down Expand Up @@ -2384,17 +2388,8 @@
"type": "string"
},
"computeMode": {
"description": "Shared/dedicated workers.",
"enum": [
"Shared",
"Dedicated",
"Dynamic"
],
"type": "string",
"x-ms-enum": {
"name": "ComputeModeOptions",
"modelAsString": true
}
"$ref": "#/definitions/ComputeModeOptions",
"description": "Shared or dedicated app hosting."
},
"workerSize": {
"description": "Size of the machines.",
Expand Down Expand Up @@ -2755,17 +2750,8 @@
"type": "integer"
},
"computeMode": {
"description": "Shared or dedicated app hosting.",
"enum": [
"Shared",
"Dedicated",
"Dynamic"
],
"type": "string",
"x-ms-enum": {
"name": "ComputeModeOptions",
"modelAsString": true
}
"$ref": "#/definitions/ComputeModeOptions",
"description": "Shared or dedicated app hosting."
},
"workerSize": {
"description": "VM size of the worker pool instances.",
Expand Down

0 comments on commit 372c1a5

Please sign in to comment.