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 @@ -85,6 +85,7 @@
},
"hbiWorkspace": false,
"allowPublicAccessWhenBehindVnet": false,
"publicNetworkAccess": "Disabled",
"sharedPrivateLinkResources": [
{
"name": "testdbresource",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"serviceProvisionedResourceGroup": "testworkspace_0000111122223333",
"privateLinkCount": 0,
"allowPublicAccessWhenBehindVnet": false,
"publicNetworkAccess": "Disabled",
"imageBuildCompute": "testcompute",
"privateEndpointConnections": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"parameters": {
"properties": {
"friendlyName": "New friendly name",
"description": "new description"
"description": "new description",
"publicNetworkAccess": "Disabled"
}
}
},
Expand All @@ -30,7 +31,8 @@
"storageAccount": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
"discoveryUrl": "http://example.com",
"friendlyName": "New friendly name",
"description": "new description"
"description": "new description",
"publicNetworkAccess": "Disabled"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2113,6 +2113,18 @@
"description": "The flag to indicate whether to allow public access when behind VNet.",
"default": false
},
"publicNetworkAccess": {
"type": "string",
"description": "Whether requests from Public Network are allowed.",
"enum": [
"Enabled",
"Disabled"
],
"x-ms-enum": {
"modelAsString": true,
"name": "PublicNetworkAccess"
}
},
"privateEndpointConnections": {
"readOnly": true,
"type": "array",
Expand Down Expand Up @@ -2205,6 +2217,18 @@
"primaryUserAssignedIdentity": {
"description": "The user assigned identity resource id that represents the workspace identity.",
"type": "string"
},
"publicNetworkAccess": {
"type": "string",
"description": "Whether requests from Public Network are allowed.",
"enum": [
"Enabled",
"Disabled"
],
"x-ms-enum": {
"modelAsString": true,
"name": "PublicNetworkAccess"
}
}
}
},
Expand Down