Skip to content
Draft
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
20 changes: 18 additions & 2 deletions schemas/2021-06-01-preview/Microsoft.SignalRService.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,10 @@
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"sku",
"type"
],
"description": "Microsoft.SignalRService/signalR"
Expand Down Expand Up @@ -374,6 +376,9 @@
"description": "Connection state of the private endpoint connection"
}
},
"required": [
"privateLinkServiceConnectionState"
],
"description": "Private endpoint connection properties"
},
"PrivateLinkServiceConnectionState": {
Expand Down Expand Up @@ -422,8 +427,19 @@
"description": "Optional, integer. The unit count of the resource. 1 by default.\r\n\r\nIf present, following values are allowed:\r\n Free: 1\r\n Standard: 1,2,5,10,20,50,100"
},
"name": {
"type": "string",
"description": "The name of the SKU. Required.\r\n\r\nAllowed values: Standard_S1, Free_F1"
"oneOf": [
{
"type": "string",
"enum": [
"Standard_S1",
"Free_F1"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The name of the SKU. Required.\r\n\r\nAllowed values: Standard_S1, Free_F1."
},
"tier": {
"oneOf": [
Expand Down