Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"10.0.0.0/16"
]
},
"flowTimeoutInMinutes": null,
Copy link
Contributor

Choose a reason for hiding this comment

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

Please use meaningful value instead of null in example.

"subnets": [],
"virtualNetworkPeerings": []
}
Expand All @@ -47,6 +48,7 @@
"10.0.0.0/16"
]
},
"flowTimeoutInMinutes": null,
"subnets": [],
"virtualNetworkPeerings": []
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1702,6 +1702,10 @@
"$ref": "#/definitions/DhcpOptions",
"description": "The dhcpOptions that contains an array of DNS servers available to VMs deployed in the virtual network."
},
"flowTimeoutInMinutes": {
"type": "string",
Copy link
Contributor Author

Choose a reason for hiding this comment

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

In the code, flowTimeoutInMinutes is defined as uint?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Also, we want to show the flowTimeoutInMinutes value at all times during a Get call.

Copy link
Contributor

@kairu-ms kairu-ms Mar 23, 2021

Choose a reason for hiding this comment

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

Why it's a string? I think it's better to use integer.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I have updated it now.

"description": "The FlowTimeout value (in minutes) for the Virtual Network"
},
"subnets": {
"type": "array",
"items": {
Expand Down