Skip to content
Open
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
87 changes: 86 additions & 1 deletion schemas/2020-03-01/Microsoft.ServiceFabric.json
Original file line number Diff line number Diff line change
Expand Up @@ -1694,6 +1694,48 @@
},
"description": "Describes the managed identities for an Azure resource."
},
"NamedPartitionSchemeDescription": {
"type": "object",
"properties": {
"count": {
"oneOf": [
{
"type": "integer"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The number of partitions."
},
"names": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Array of size specified by the ‘count’ parameter, for the names of the partitions."
},
"partitionScheme": {
"type": "string",
"enum": [
"Named"
]
}
},
"required": [
"count",
"names",
"partitionScheme"
],
"description": "Describes the named partition scheme of the service."
},
"NodeTypeDescription": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1839,8 +1881,14 @@
"PartitionSchemeDescription": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/NamedPartitionSchemeDescription"
},
{
"$ref": "#/definitions/SingletonPartitionSchemeDescription"
},
{
"$ref": "#/definitions/UniformInt64RangePartitionSchemeDescription"
}
],
"properties": {},
Expand Down Expand Up @@ -2214,7 +2262,7 @@
"required": [
"partitionScheme"
],
"description": "SingletonPartitionSchemeDescription"
"description": "Describes the partition scheme of a singleton-partitioned, or non-partitioned service."
},
"StatefulServiceProperties": {
"type": "object",
Expand Down Expand Up @@ -2312,6 +2360,43 @@
],
"description": "The properties of a stateless service resource."
},
"UniformInt64RangePartitionSchemeDescription": {
"type": "object",
"properties": {
"count": {
"oneOf": [
{
"type": "integer"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The number of partitions."
},
"highKey": {
"type": "string",
"description": "String indicating the upper bound of the partition key range that\nshould be split between the partition ‘count’\n"
},
"lowKey": {
"type": "string",
"description": "String indicating the lower bound of the partition key range that\nshould be split between the partition ‘count’\n"
},
"partitionScheme": {
"type": "string",
"enum": [
"UniformInt64Range"
]
}
},
"required": [
"count",
"highKey",
"lowKey",
"partitionScheme"
],
"description": "Describes a partitioning scheme where an integer range is allocated evenly across a number of partitions."
},
"UserAssignedIdentity": {
"type": "object",
"properties": {}
Expand Down
2 changes: 1 addition & 1 deletion schemas/common/autogeneratedResources.json
Original file line number Diff line number Diff line change
Expand Up @@ -5551,4 +5551,4 @@
]
}
]
}
}