Skip to content
Closed
5 changes: 4 additions & 1 deletion arm-hdinsight/2015-03-01-preview/swagger/cluster.json
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@
"description": "The payload for a Configure HTTP settings request."
},
"ClusterDefinition": {
"description": "The cluste definition.",
"description": "The cluster definition.",
"properties": {
"blueprint": {
"type": "string",
Expand All @@ -404,6 +404,9 @@
},
"configurations": {
"type": "object",
"additionalProperties": {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This's still breaking changes. In .Net, it became a Dictionary instead of an object.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For example, this code worked before:

clusterDefinition.configurations = new { A = new { C = "Hello!" } };

but it will be a compilation error now.

"type": "object"
},
"description": "The cluster configurations."
}
}
Expand Down