Skip to content

Commit

Permalink
Merge pull request #21 from otubukhay/newVersion20210701
Browse files Browse the repository at this point in the history
Add AllowPublicAccess Property
  • Loading branch information
zhaomuzhi authored Jul 8, 2021
2 parents 71ca668 + aa13bb5 commit 482f5a6
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 2 deletions.
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

0 comments on commit 482f5a6

Please sign in to comment.