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

Update InfrastructureEncryption property description for PostgreSQL and MySQL #9390

Merged
merged 2 commits into from
Jun 3, 2020
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 @@ -1524,14 +1524,24 @@
},
"InfrastructureEncryption": {
"type": "string",
"description": "Status showing whether the server enabled infrastructure encryption.",
"description": "Add a second layer of encryption for your data using new encryption algorithm which gives additional data protection. Value is optional but if passed in, must be 'Disabled' or 'Enabled'.",
"enum": [
"Enabled",
"Disabled"
],
"x-ms-enum": {
"name": "InfrastructureEncryption",
"modelAsString": true
"modelAsString": true,
"values": [
{
"value": "Enabled",
"description": "Default value for single layer of encryption for data at rest."
},
{
"value": "Disabled",
"description": "Additional (2nd) layer of encryption for data at rest"
}
]
}
},
"PublicNetworkAccess": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1527,14 +1527,24 @@
},
"InfrastructureEncryption": {
"type": "string",
"description": "Status showing whether the server enabled infrastructure encryption.",
"description": "Add a second layer of encryption for your data using new encryption algorithm which gives additional data protection. Value is optional but if passed in, must be 'Disabled' or 'Enabled'.",
"enum": [
"Enabled",
"Disabled"
],
"x-ms-enum": {
"name": "InfrastructureEncryption",
"modelAsString": true
"modelAsString": true,
"values": [
{
"value": "Enabled",
"description": "Default value for single layer of encryption for data at rest."
},
{
"value": "Disabled",
"description": "Additional (2nd) layer of encryption for data at rest"
}
]
}
},
"PublicNetworkAccess": {
Expand Down