-
Notifications
You must be signed in to change notification settings - Fork 5.7k
[HDInsight] Fix specs not support subdomainsuffix parameter #6150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -250,6 +250,14 @@ | |
| "type": "integer", | ||
| "format": "int32", | ||
| "description": "The public port to connect to." | ||
| }, | ||
| "subDomainSuffix":{ | ||
| "type": "string", | ||
| "description": "The subDomainSuffix of the application and can not greater than 3 characters." | ||
| }, | ||
| "disableGatewayAuth":{ | ||
| "type": "boolean", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI ARM team advises against boolean properties in specs, it will be a breaking change if you ever decide to add a third value and make it a string.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Thanks for your reminder. It makes sense to me. We think it should be boolean. |
||
| "description": "The value indicates whether to disable GatewayAuth." | ||
| } | ||
| } | ||
| }, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,7 +32,6 @@ | |
| "WebPage" | ||
| ] | ||
| }], | ||
| "provisioningState": "", | ||
| "applicationType": "CustomApplication", | ||
| "errors": [] | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I understand correctly, the description should say "The subDomainSuffix of the application. It cannot be greater than 3 characters."