Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
@@ -0,0 +1,28 @@
{
"parameters": {
"clusterName": "cache1",
"resourceGroupName": "rg1",
"api-version": "2025-05-01-preview",
"subscriptionId": "e7b5a9d2-6b6a-4d2f-9143-20d9a10f5b8f"
},
"responses": {
"200": {
"body": {
"skus": [
{
"name": "MemoryOptimized_M100",
"customerFacingSizeInGb": 120.0
},
{
"name": "ComputeOptimized_X700",
"customerFacingSizeInGb": 720.0
},
{
"name": "Balanced_B5",
"customerFacingSizeInGb": 6.0
}
]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1213,6 +1213,48 @@
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/listskusforscaling": {
"post": {
"tags": [
"RedisEnterprise"
],
"operationId": "RedisEnterprise_ListSkusForScaling",
"description": "Lists the available SKUs for scaling the Redis Enterprise cluster.",
"x-ms-examples": {
"RedisEnterpriseListSkusForScaling": {
"$ref": "./examples/RedisEnterpriseListSkusForScaling.json"
}
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/ClusterNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Retuns the available SKUs for scaling up or scaling down.",
"schema": {
"$ref": "#/definitions/SkuDetailsList"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName}/privateEndpointConnections": {
"get": {
"tags": [
Expand Down Expand Up @@ -1630,7 +1672,7 @@
{
"name": "parameters",
"in": "body",
"required": true,
"required": false,
"schema": {
"$ref": "#/definitions/FlushParameters"
},
Expand Down Expand Up @@ -2645,6 +2687,41 @@
}
},
"description": "Parameters for a Redis Enterprise active geo-replication flush operation"
},
"SkuDetails": {
"title": "SKU details",
"description": "The SKU details of every Redis Enterprise cluster.",
"type": "object",
"properties": {
"name": {
"readOnly": true,
"type": "string",
"description": "The name of the SKU."
},
"customerFacingSizeInGb": {
"readOnly": true,
"type": "number",
"description": "The size in GB of the cache."
}
}
},
"SkuDetailsList": {
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/SkuDetails"
},
"description": "List of SKUS available to scale up or scale down."
},
"nextLink": {
"type": "string",
"readOnly": true,
"description": "The URI to fetch the next page of results."
}
},
"description": "The response of a listskusforscaling operation."
}
},
"parameters": {
Expand Down