Skip to content

Commit

Permalink
Small changes to make to reduce the number of breaking changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
toddm committed Aug 23, 2021
1 parent 3c8a67c commit b9cff2e
Showing 1 changed file with 48 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,8 @@
"FulfillmentOutOfStockError",
"FulfillmentTransientError",
"FulfillmentError",
"CalculatePriceFailed"
"CalculatePriceFailed",
"AppliedScopesSameAsExisting"
],
"x-ms-enum": {
"name": "ErrorResponseCode",
Expand Down Expand Up @@ -956,7 +957,10 @@
"Swapped",
"PendingRefunds",
"Exchanged",
"PendingRefundCollection"
"PendingRefundCollection",
"PendingResourceHold",
"ConfirmedResourceHold",
"Split"
]
},
"ReservedResourceType": {
Expand Down Expand Up @@ -1232,6 +1236,36 @@
"items": {
"$ref": "#/definitions/SkuRestriction"
}
},
"tier": {
"type": "string",
"description": "The tier of this SKU",
"readOnly": true
},
"size": {
"type": "string",
"description": "The size of this SKU",
"readOnly": true
},
"capabilities": {
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/definitions/SkuCapability"
}
}
}
},
"SkuCapability": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "An invariant to describe the feature."
},
"value": {
"type": "string",
"description": "An invariant if the feature is measured by quantity."
}
}
},
Expand Down Expand Up @@ -1501,7 +1535,6 @@
"properties": {
"location": {
"type": "string",
"readOnly": true,
"description": "The Azure Region where the reserved resource lives."
},
"etag": {
Expand Down Expand Up @@ -1531,6 +1564,17 @@
"readOnly": true,
"description": "Type of resource. \"Microsoft.Capacity/reservationOrders/reservations\""
},
"kind": {
"type": "string",
"description": "Resource Provider type to be reserved.",
"enum": [
"Microsoft.Compute"
],
"x-ms-enum": {
"name": "Kind",
"modelAsString": false
}
},
"systemData": {
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/systemData",
"readOnly": true
Expand Down Expand Up @@ -2767,7 +2811,7 @@
"name": "reservedResourceType",
"x-ms-parameter-location": "method",
"in": "query",
"required": true,
"required": false,
"type": "string",
"description": "The type of the resource for which the skus should be provided."
},
Expand Down

0 comments on commit b9cff2e

Please sign in to comment.