Skip to content

Commit

Permalink
Generated from 17c053479cbd0b616d81d3a0e86e98305b46e5b4
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Oct 2, 2020
1 parent 54b5ec6 commit b7ac777
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 13 deletions.
2 changes: 1 addition & 1 deletion schemas/2019-06-01-preview/Microsoft.Sql.json
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The storage account type used to store backups for this database. Currently the only supported option is GRS (GeoRedundantStorage)."
"description": "The storage account type used to store backups for this database."
},
"zoneRedundant": {
"oneOf": [
Expand Down
37 changes: 25 additions & 12 deletions schemas/2020-08-01-preview/Microsoft.Sql.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"location": {
"type": "string",
"description": "Resource location."
"description": "The geo-location where the resource lives"
},
"name": {
"type": "string",
Expand All @@ -41,7 +41,7 @@
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "An ARM Resource SKU."
"description": "The resource model definition representing SKU"
},
"tags": {
"oneOf": [
Expand Down Expand Up @@ -85,7 +85,7 @@
},
"location": {
"type": "string",
"description": "Resource location."
"description": "The geo-location where the resource lives"
},
"name": {
"type": "string",
Expand All @@ -111,7 +111,7 @@
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "An ARM Resource SKU."
"description": "The resource model definition representing SKU"
},
"tags": {
"oneOf": [
Expand Down Expand Up @@ -238,7 +238,7 @@
},
"maintenanceConfigurationId": {
"type": "string",
"description": "Maintenance configuration id assigned to the database. This configuration defines the period when the maintenance updates will be rolled out."
"description": "Maintenance configuration id assigned to the database. This configuration defines the period when the maintenance updates will occur."
},
"maxSizeBytes": {
"oneOf": [
Expand Down Expand Up @@ -412,7 +412,7 @@
},
"maintenanceConfigurationId": {
"type": "string",
"description": "Maintenance configuration id assigned to the elastic pool. This configuration defines the period when the maintenance updates will be rolled out."
"description": "Maintenance configuration id assigned to the elastic pool. This configuration defines the period when the maintenance updates will will occur."
},
"maxSizeBytes": {
"oneOf": [
Expand Down Expand Up @@ -462,29 +462,42 @@
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Capacity of the particular SKU."
"description": "If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted."
},
"family": {
"type": "string",
"description": "If the service has different generations of hardware, for the same SKU, then that can be captured here."
},
"name": {
"type": "string",
"description": "The name of the SKU, typically, a letter + Number code, e.g. P3."
"description": "The name of the SKU. Ex - P3. It is typically a letter+number code"
},
"size": {
"type": "string",
"description": "Size of the particular SKU"
"description": "The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. "
},
"tier": {
"type": "string",
"description": "The tier or edition of the particular SKU, e.g. Basic, Premium."
"oneOf": [
{
"type": "string",
"enum": [
"Free",
"Basic",
"Standard",
"Premium"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT."
}
},
"required": [
"name"
],
"description": "An ARM Resource SKU."
"description": "The resource model definition representing SKU"
}
}
}

0 comments on commit b7ac777

Please sign in to comment.