Skip to content
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

Add support for HDIinsight cluster with Enterprise Serurity Package #4780

Merged
merged 1 commit into from
Dec 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -571,6 +571,10 @@
"encryptedCredential": {
"type": "object",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
},
"isEspEnabled": {
"type": "object",
Copy link
Member

Choose a reason for hiding this comment

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

Curious why this is modeled as an object if the type is boolean?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Because object allows user to put some expressions to indicate a boolean value.

"description": "Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean."
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1719,6 +1719,18 @@
"type": "object",
"description": "Type: string (or Expression with resultType string)."
}
},
"variables": {
"description": "User specified arguments under hivevar namespace.",
"type": "array",
"items": {
"type": "object",
"description": "Type: string (or Expression with resultType string)."
}
},
"queryTimeout": {
"type": "integer",
"description": "Query timeout value (in minutes). Effective when the HDInsight culster is with ESP (Enterprise Security Package)"
}
}
},
Expand Down