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