Skip to content

Commit

Permalink
Update InfrastructureEncryption property description for PostgreSQL a…
Browse files Browse the repository at this point in the history
…nd MySQL (Azure#9390)

* Update InfrastructureEncryption property description for PostgreSQL and MySQL

* Update InfrastructureEncryption property description for PostgreSQL and MySQL
  • Loading branch information
shinilm authored and 00Kai0 committed Oct 12, 2020
1 parent 52b1d5e commit e463c86
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
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

0 comments on commit e463c86

Please sign in to comment.