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 @@ -180,6 +180,11 @@
"$ref": "#/definitions/ServiceObjectiveCapability"
},
"description": "The list of supported service objectives for the edition."
},
"zoneRedundant": {
"description": "Whether or not zone redundancy is supported for the edition.",
"type": "boolean",
"readOnly": true
}
},
"description": "The database edition capabilities."
Expand Down Expand Up @@ -260,6 +265,11 @@
"$ref": "#/definitions/ElasticPoolDtuCapability"
},
"description": "The list of supported elastic pool DTU levels for the edition."
},
"zoneRedundant": {
"description": "Whether or not zone redundancy is supported for the edition.",
"type": "boolean",
"readOnly": true
}
},
"description": "The elastic pool edition capabilities."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1566,6 +1566,10 @@
"type": "integer",
"format": "int32",
"description": "Gets storage limit for the database elastic pool in MB."
},
"zoneRedundant": {
"description": "Whether or not this database elastic pool is zone redundant, which means the replicas of this database will be spread across multiple availability zones.",
"type": "boolean"
}
},
"description": "Represents the properties of an elastic pool."
Expand Down Expand Up @@ -2291,6 +2295,10 @@
"name": "SampleName"
},
"x-ms-mutability": [ "create" ]
},
"zoneRedundant": {
"description": "Whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones.",
"type": "boolean"
}
},
"description": "Represents the properties of a database."
Expand Down