Skip to content

Commit

Permalink
correcting the placement constraint of publicnetworkaccess (#13674)
Browse files Browse the repository at this point in the history
Co-authored-by: srinivas thatipamula <[email protected]>
  • Loading branch information
srinuthati and srinivas thatipamula authored Mar 30, 2021
1 parent 148997e commit 9cbb172
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
}
}
},
"networkSettings": {
"publicNetworkAccess": "Enabled"
}
"publicNetworkAccess": "Enabled"
},
"location": "East US",
"tags": {
Expand Down Expand Up @@ -118,9 +116,7 @@
}
}
},
"networkSettings": {
"publicNetworkAccess": "Enabled"
}
"publicNetworkAccess": "Enabled"
},
"tags": {
"key": "value"
Expand Down Expand Up @@ -167,9 +163,7 @@
}
}
},
"networkSettings": {
"publicNetworkAccess": "Enabled"
}
"publicNetworkAccess": "Enabled"
},
"tags": {
"key": "value"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"keyVaultUrl": "https://vault.azure.net/keys/key1"
}
}
}
},
"publicNetworkAccess": "Enabled"
}
}
},
Expand Down Expand Up @@ -82,7 +83,8 @@
"keyVaultUrl": "https://vault.azure.net/keys/key1"
}
}
}
},
"publicNetworkAccess": "Enabled"
},
"tags": {
"key": "value"
Expand Down Expand Up @@ -127,7 +129,8 @@
"keyVaultUrl": "https://vault.azure.net/keys/key1"
}
}
}
},
"publicNetworkAccess": "Enabled"
},
"tags": {
"key": "value"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1211,9 +1211,17 @@
"type": "string",
"readOnly": true
},
"networkSettings": {
"description": "Network Settings",
"$ref": "#/definitions/NetworkSettings"
"publicNetworkAccess": {
"enum": [
"Enabled",
"Disabled"
],
"description": "Enable or Disable pubic network access to workspace",
"type": "string",
"x-ms-enum": {
"name": "WorkspacePublicNetworkAccess",
"modelAsString": true
}
}
}
},
Expand Down Expand Up @@ -1268,9 +1276,17 @@
"description": "The encryption details of the workspace",
"$ref": "#/definitions/EncryptionDetails"
},
"networkSettings": {
"description": "Network Settings",
"$ref": "#/definitions/NetworkSettings"
"publicNetworkAccess": {
"enum": [
"Enabled",
"Disabled"
],
"description": "Enable or Disable pubic network access to workspace",
"type": "string",
"x-ms-enum": {
"name": "WorkspacePublicNetworkAccess",
"modelAsString": true
}
}
}
},
Expand Down Expand Up @@ -1401,24 +1417,6 @@
"value"
],
"description": "The response to a list restorable dropped Sql pools request"
},
"NetworkSettings": {
"description": "Network Settings",
"type": "object",
"properties": {
"publicNetworkAccess": {
"enum": [
"Enabled",
"Disabled"
],
"description": "Enable or Disable pubic network access to workspace",
"type": "string",
"x-ms-enum": {
"name": "WorkspacePublicNetworkAccess",
"modelAsString": true
}
}
}
}
},
"parameters": {
Expand Down

0 comments on commit 9cbb172

Please sign in to comment.