diff --git a/arm-redis/2015-08-01/swagger/redis.json b/arm-redis/2015-08-01/swagger/redis.json index e6b6435ec44bf..b5e084214c21f 100644 --- a/arm-redis/2015-08-01/swagger/redis.json +++ b/arm-redis/2015-08-01/swagger/redis.json @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "RedisManagementClient", - "description": ".Net client wrapper for the REST API for Azure Redis Cache Management Service", + "description": "REST API for Azure Redis Cache Service.", "version": "2015-08-01" }, "host": "management.azure.com", @@ -29,7 +29,7 @@ "type": "oauth2", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", "flow": "implicit", - "description": "Azure Active Directory OAuth2 Flow", + "description": "Azure Active Directory OAuth2 Flow.", "scopes": { "user_impersonation": "impersonate your user account" } @@ -42,7 +42,7 @@ "Redis" ], "operationId": "Redis_CreateOrUpdate", - "description": "Create a redis cache, or replace (overwrite/recreate, with potential downtime) an existing cache", + "description": "Create a Redis cache, or replace (overwrite/recreate, with potential downtime) an existing cache.", "parameters": [ { "name": "resourceGroupName", @@ -56,7 +56,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -65,7 +65,7 @@ "schema": { "$ref": "#/definitions/RedisCreateOrUpdateParameters" }, - "description": "Parameters supplied to the CreateOrUpdate redis operation." + "description": "Parameters supplied to the CreateOrUpdate Redis operation." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -94,7 +94,7 @@ "Redis" ], "operationId": "Redis_Delete", - "description": "Deletes a redis cache. This operation takes a while to complete.", + "description": "Deletes a Redis cache.", "parameters": [ { "name": "resourceGroupName", @@ -108,7 +108,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -134,7 +134,7 @@ "Redis" ], "operationId": "Redis_Get", - "description": "Gets a redis cache (resource description).", + "description": "Gets a Redis cache (resource description).", "parameters": [ { "name": "resourceGroupName", @@ -148,7 +148,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -173,7 +173,7 @@ "Redis" ], "operationId": "Redis_ListByResourceGroup", - "description": "Gets all redis caches in a resource group.", + "description": "Gets all Redis caches in a resource group.", "parameters": [ { "name": "resourceGroupName", @@ -208,7 +208,7 @@ "Redis" ], "operationId": "Redis_List", - "description": "Gets all redis caches in the specified subscription.", + "description": "Gets all Redis caches in the specified subscription.", "parameters": [ { "$ref": "#/parameters/ApiVersionParameter" @@ -236,7 +236,7 @@ "Redis" ], "operationId": "Redis_ListKeys", - "description": "Retrieve a redis cache's access keys. This operation requires write permission to the cache resource.", + "description": "Retrieve a Redis cache's access keys. This operation requires write permission to the cache resource.", "parameters": [ { "name": "resourceGroupName", @@ -250,7 +250,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -261,7 +261,7 @@ ], "responses": { "200": { - "description": "Lists the keys for Redis Cache", + "description": "Lists the keys for a Redis Cache.", "schema": { "$ref": "#/definitions/RedisListKeysResult" } @@ -275,7 +275,7 @@ "Redis" ], "operationId": "Redis_RegenerateKey", - "description": "Regenerate redis cache's access keys. This operation requires write permission to the cache resource.", + "description": "Regenerate the access keys for a Redis cache. This operation requires write permission to the cache resource.", "parameters": [ { "name": "resourceGroupName", @@ -289,7 +289,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -309,7 +309,7 @@ ], "responses": { "200": { - "description": "Lists the regenerated keys for Redis Cache", + "description": "Lists the regenerated keys for a Redis Cache.", "schema": { "$ref": "#/definitions/RedisListKeysResult" } @@ -323,7 +323,7 @@ "Redis" ], "operationId": "Redis_ForceReboot", - "description": "Reboot specified redis node(s). This operation requires write permission to the cache resource. There can be potential data loss.", + "description": "Reboot specified Redis node(s). This operation requires write permission to the cache resource. There can be potential data loss.", "parameters": [ { "name": "resourceGroupName", @@ -337,7 +337,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -346,7 +346,7 @@ "schema": { "$ref": "#/definitions/RedisRebootParameters" }, - "description": "Specifies which redis node(s) to reboot." + "description": "Specifies which Redis node(s) to reboot." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -374,7 +374,7 @@ "properties": { "name": { "type": "string", - "description": "What type of redis cache to deploy. Valid values: (Basic, Standard, Premium)", + "description": "What type of Redis cache to deploy. Valid values: (Basic, Standard, Premium).", "enum": [ "Basic", "Standard", @@ -387,7 +387,7 @@ }, "family": { "type": "string", - "description": "Which family to use. Valid values: (C, P)", + "description": "Which family to use. Valid values: (C, P).", "enum": [ "C", "P" @@ -400,7 +400,7 @@ "capacity": { "type": "integer", "format": "int32", - "description": "What size of redis cache to deploy. Valid values: for C family (0, 1, 2, 3, 4, 5, 6), for P family (1, 2, 3, 4)" + "description": "What size of Redis cache to deploy. Valid values: for C family (0, 1, 2, 3, 4, 5, 6), for P family (1, 2, 3, 4)." } }, "required": [ @@ -408,19 +408,19 @@ "family", "capacity" ], - "description": "Sku parameters supplied to the create redis operation." + "description": "SKU parameters supplied to the create Redis operation." }, "RedisProperties": { "properties": { - "redisVersion": { + "RedisVersion": { "type": "string", "description": "RedisVersion parameter has been deprecated. As such, it is no longer necessary to provide this parameter and any value specified is ignored." }, "sku": { "$ref": "#/definitions/Sku", - "description": "What sku of redis cache to deploy." + "description": "What SKU of Redis cache to deploy." }, - "redisConfiguration": { + "RedisConfiguration": { "type": "object", "additionalProperties": { "type": "string" @@ -429,7 +429,7 @@ }, "enableNonSslPort": { "type": "boolean", - "description": "If the value is true, then the non-ssl redis server port (6379) will be enabled." + "description": "If the value is true, then the non-SLL Redis server port (6379) will be enabled." }, "tenantSettings": { "type": "object", @@ -445,49 +445,49 @@ }, "virtualNetwork": { "type": "string", - "description": "The exact ARM resource ID of the virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1" + "description": "The exact ARM resource ID of the virtual network to deploy the Redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.ClassicNetwork/VirtualNetworks/vnet1" }, "subnet": { "type": "string", - "description": "Required when deploying a redis cache inside an existing Azure Virtual Network." + "description": "Required when deploying a Redis cache inside an existing Azure Virtual Network." }, "staticIP": { "type": "string", - "description": "Required when deploying a redis cache inside an existing Azure Virtual Network." + "description": "Required when deploying a Redis cache inside an existing Azure Virtual Network." } }, "required": [ "sku" ], - "description": "Parameters supplied to CreateOrUpdate redis operation." + "description": "Parameters supplied to CreateOrUpdate Redis operation." }, "Resource": { "properties": { "id": { "readOnly": true, "type": "string", - "description": "Resource Id" + "description": "Resource ID." }, "name": { "readOnly": true, "type": "string", - "description": "Resource name" + "description": "Resource name." }, "type": { "readOnly": true, "type": "string", - "description": "Resource type" + "description": "Resource type." }, "location": { "type": "string", - "description": "Resource location" + "description": "Resource location." }, "tags": { "type": "object", "additionalProperties": { "type": "string" }, - "description": "Resource tags" + "description": "Resource tags." } }, "required": [ @@ -517,11 +517,11 @@ "properties": { "primaryKey": { "type": "string", - "description": "The current primary key that clients can use to authenticate with redis cache." + "description": "The current primary key that clients can use to authenticate with Redis cache." }, "secondaryKey": { "type": "string", - "description": "The current secondary key that clients can use to authenticate with redis cache." + "description": "The current secondary key that clients can use to authenticate with Redis cache." } }, "description": "Redis cache access keys." @@ -530,21 +530,21 @@ "properties": { "provisioningState": { "type": "string", - "description": "Redis instance provisioning status" + "description": "Redis instance provisioning status." }, "hostName": { "type": "string", - "description": "Redis host name" + "description": "Redis host name." }, "port": { "type": "integer", "format": "int32", - "description": "Redis non-ssl port" + "description": "Redis non-SSL port." }, "sslPort": { "type": "integer", "format": "int32", - "description": "Redis ssl port" + "description": "Redis SSL port." } }, "allOf": [ @@ -552,7 +552,7 @@ "$ref": "#/definitions/RedisProperties" } ], - "description": "Parameters describing a redis instance" + "description": "Parameters describing a Redis instance" }, "RedisReadablePropertiesWithAccessKey": { "properties": { @@ -566,14 +566,14 @@ "$ref": "#/definitions/RedisReadableProperties" } ], - "description": "Properties generated only in response to CreateOrUpdate redis operation." + "description": "Properties generated only in response to CreateOrUpdate Redis operation." }, "RedisResourceWithAccessKey": { "properties": { "properties": { "x-ms-client-flatten": true, "$ref": "#/definitions/RedisReadablePropertiesWithAccessKey", - "description": "Redis cache properties" + "description": "Redis cache properties." } }, "allOf": [ @@ -581,14 +581,14 @@ "$ref": "#/definitions/Resource" } ], - "description": "A redis item in CreateOrUpdate Operation response." + "description": "A Redis item in CreateOrUpdate Operation response." }, "RedisResource": { "properties": { "properties": { "x-ms-client-flatten": true, "$ref": "#/definitions/RedisReadableProperties", - "description": "Redis cache properties" + "description": "Redis cache properties." } }, "allOf": [ @@ -596,7 +596,7 @@ "$ref": "#/definitions/Resource" } ], - "description": "A single redis item in List or Get Operation." + "description": "A single Redis item in List or Get Operation." }, "RedisListResult": { "properties": { @@ -605,33 +605,33 @@ "items": { "$ref": "#/definitions/RedisResource" }, - "description": "Results of the list operation" + "description": "Results of the list operation." }, "nextLink": { "type": "string", "description": "Link for next set of locations." } }, - "description": "The response of list redis operation." + "description": "The response of list Redis operation." }, "RedisListKeysResult": { "properties": { "primaryKey": { "type": "string", - "description": "The current primary key that clients can use to authenticate with redis cache." + "description": "The current primary key that clients can use to authenticate with Redis cache." }, "secondaryKey": { "type": "string", - "description": "The current secondary key that clients can use to authenticate with redis cache." + "description": "The current secondary key that clients can use to authenticate with Redis cache." } }, - "description": "The response of redis list keys operation." + "description": "The response of Redis list keys operation." }, "RedisRegenerateKeyParameters": { "properties": { "keyType": { "type": "string", - "description": "Which redis access key to reset", + "description": "Which Redis access key to reset.", "enum": [ "Primary", "Secondary" @@ -645,13 +645,13 @@ "required": [ "keyType" ], - "description": "Specifies which redis access keys to reset." + "description": "Specifies which Redis access keys to reset." }, "RedisRebootParameters": { "properties": { "rebootType": { "type": "string", - "description": "Which redis node(s) to reboot. Depending on this value data loss is possible.", + "description": "Which Redis node(s) to reboot. Depending on this value data loss is possible.", "enum": [ "PrimaryNode", "SecondaryNode", @@ -665,13 +665,13 @@ "shardId": { "type": "integer", "format": "int32", - "description": "In case of cluster cache, this specifies shard id which should be rebooted." + "description": "If clustering is enabled, the ID of the shared be rebooted." } }, "required": [ "rebootType" ], - "description": "Specifies which redis node(s) to reboot." + "description": "Specifies which Redis node(s) to reboot." } }, "parameters": { @@ -680,14 +680,14 @@ "in": "path", "required": true, "type": "string", - "description": "Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." + "description": "Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." }, "ApiVersionParameter": { "name": "api-version", "in": "query", "required": true, "type": "string", - "description": "Client Api Version." + "description": "Client API Version." } } } \ No newline at end of file diff --git a/arm-redis/2016-04-01/swagger/redis.json b/arm-redis/2016-04-01/swagger/redis.json index 7c056f5be9e09..984c05ea8dc0b 100644 --- a/arm-redis/2016-04-01/swagger/redis.json +++ b/arm-redis/2016-04-01/swagger/redis.json @@ -2,7 +2,7 @@ "swagger": "2.0", "info": { "title": "RedisManagementClient", - "description": "REST API for Azure Redis Cache Service", + "description": "REST API for Azure Redis Cache Service.", "version": "2016-04-01" }, "host": "management.azure.com", @@ -29,7 +29,7 @@ "type": "oauth2", "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", "flow": "implicit", - "description": "Azure Active Directory OAuth2 Flow", + "description": "Azure Active Directory OAuth2 Flow.", "scopes": { "user_impersonation": "impersonate your user account" } @@ -42,7 +42,7 @@ "Redis" ], "operationId": "Redis_Create", - "description": "Create or replace (overwrite/recreate, with potential downtime) an existing redis cache", + "description": "Create or replace (overwrite/recreate, with potential downtime) an existing Redis cache.", "x-ms-long-running-operation": true, "parameters": [ { @@ -57,7 +57,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -66,7 +66,7 @@ "schema": { "$ref": "#/definitions/RedisCreateParameters" }, - "description": "Parameters supplied to the Create redis operation." + "description": "Parameters supplied to the Create Redis operation." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -92,7 +92,7 @@ "Redis" ], "operationId": "Redis_Update", - "description": "Update an existing Redis cache", + "description": "Update an existing Redis cache.", "x-ms-long-running-operation": true, "parameters": [ { @@ -107,7 +107,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -116,7 +116,7 @@ "schema": { "$ref": "#/definitions/RedisUpdateParameters" }, - "description": "Parameters supplied to the Update redis operation." + "description": "Parameters supplied to the Update Redis operation." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -139,7 +139,7 @@ "Redis" ], "operationId": "Redis_Delete", - "description": "Deletes a redis cache. This operation takes a while to complete.", + "description": "Deletes a Redis cache.", "x-ms-long-running-operation": true, "parameters": [ { @@ -154,7 +154,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -177,7 +177,7 @@ "Redis" ], "operationId": "Redis_Get", - "description": "Gets a redis cache (resource description).", + "description": "Gets a Redis cache (resource description).", "parameters": [ { "name": "resourceGroupName", @@ -191,7 +191,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -216,7 +216,7 @@ "Redis" ], "operationId": "Redis_ListByResourceGroup", - "description": "Gets all redis caches in a resource group.", + "description": "Lists all Redis caches in a resource group.", "parameters": [ { "name": "resourceGroupName", @@ -251,7 +251,7 @@ "Redis" ], "operationId": "Redis_List", - "description": "Gets all redis caches in the specified subscription.", + "description": "Gets all Redis caches in the specified subscription.", "parameters": [ { "$ref": "#/parameters/ApiVersionParameter" @@ -279,7 +279,7 @@ "Redis" ], "operationId": "Redis_ListKeys", - "description": "Retrieve a redis cache's access keys. This operation requires write permission to the cache resource.", + "description": "Retrieve a Redis cache's access keys. This operation requires write permission to the cache resource.", "parameters": [ { "name": "resourceGroupName", @@ -293,7 +293,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -304,7 +304,7 @@ ], "responses": { "200": { - "description": "Lists the keys for Redis Cache", + "description": "Lists the keys for the specified Redis cache.", "schema": { "$ref": "#/definitions/RedisAccessKeys" } @@ -318,7 +318,7 @@ "Redis" ], "operationId": "Redis_RegenerateKey", - "description": "Regenerate redis cache's access keys. This operation requires write permission to the cache resource.", + "description": "Regenerate Redis cache's access keys. This operation requires write permission to the cache resource.", "parameters": [ { "name": "resourceGroupName", @@ -332,7 +332,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -341,7 +341,7 @@ "schema": { "$ref": "#/definitions/RedisRegenerateKeyParameters" }, - "description": "Specifies which key to reset." + "description": "Specifies which key to regenerate." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -366,7 +366,7 @@ "Redis" ], "operationId": "Redis_ForceReboot", - "description": "Reboot specified redis node(s). This operation requires write permission to the cache resource. There can be potential data loss.", + "description": "Reboot specified Redis node(s). This operation requires write permission to the cache resource. There can be potential data loss.", "parameters": [ { "name": "resourceGroupName", @@ -380,7 +380,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -389,7 +389,7 @@ "schema": { "$ref": "#/definitions/RedisRebootParameters" }, - "description": "Specifies which redis node(s) to reboot." + "description": "Specifies which Redis node(s) to reboot." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -415,7 +415,7 @@ ], "operationId": "Redis_ImportData", "x-ms-long-running-operation": true, - "description": "Import data into redis cache.", + "description": "Import data into Redis cache.", "parameters": [ { "name": "resourceGroupName", @@ -429,7 +429,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -438,7 +438,7 @@ "schema": { "$ref": "#/definitions/ImportRDBParameters" }, - "description": "Parameters for redis import operation." + "description": "Parameters for Redis import operation." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -461,7 +461,7 @@ ], "operationId": "Redis_ExportData", "x-ms-long-running-operation": true, - "description": "Import data into redis cache.", + "description": "Import data into Redis cache.", "parameters": [ { "name": "resourceGroupName", @@ -475,7 +475,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -484,7 +484,7 @@ "schema": { "$ref": "#/definitions/ExportRDBParameters" }, - "description": "Parameters for redis export operation." + "description": "Parameters for Redis export operation." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -506,7 +506,7 @@ "Redis" ], "operationId": "PatchSchedules_CreateOrUpdate", - "description": "Create or replace the patching schedule for redis cache.", + "description": "Create or replace the patching schedule for Redis cache.", "parameters": [ { "name": "resourceGroupName", @@ -520,7 +520,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "name": "parameters", @@ -529,7 +529,7 @@ "schema": { "$ref": "#/definitions/RedisPatchSchedule" }, - "description": "Parameters to set patch schedules for redis cache." + "description": "Parameters to set patch schedules for Redis cache." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -552,7 +552,7 @@ "Redis" ], "operationId": "PatchSchedules_Delete", - "description": "Deletes the patching schedule for redis cache.", + "description": "Deletes the patching schedule for Redis cache.", "parameters": [ { "name": "resourceGroupName", @@ -566,7 +566,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -586,7 +586,7 @@ "Redis" ], "operationId": "PatchSchedules_Get", - "description": "Gets the patching schedule for redis cache.", + "description": "Gets the patching schedule for Redis cache.", "parameters": [ { "name": "resourceGroupName", @@ -600,7 +600,7 @@ "in": "path", "required": true, "type": "string", - "description": "The name of the redis cache." + "description": "The name of the Redis cache." }, { "$ref": "#/parameters/ApiVersionParameter" @@ -628,7 +628,7 @@ "properties": { "name": { "type": "string", - "description": "What type of redis cache to deploy. Valid values: (Basic, Standard, Premium)", + "description": "The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)", "enum": [ "Basic", "Standard", @@ -641,7 +641,7 @@ }, "family": { "type": "string", - "description": "Which family to use. Valid values: (C, P)", + "description": "The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).", "enum": [ "C", "P" @@ -654,7 +654,7 @@ "capacity": { "type": "integer", "format": "int32", - "description": "What size of redis cache to deploy. Valid values: for C family (0, 1, 2, 3, 4, 5, 6), for P family (1, 2, 3, 4)" + "description": "The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4)." } }, "required": [ @@ -662,11 +662,11 @@ "family", "capacity" ], - "description": "Sku parameters supplied to the create redis operation." + "description": "SKU parameters supplied to the create Redis operation." }, "RedisProperties": { "properties": { - "redisConfiguration": { + "RedisConfiguration": { "type": "object", "additionalProperties": { "type": "string" @@ -675,7 +675,7 @@ }, "enableNonSslPort": { "type": "boolean", - "description": "If the value is true, then the non-ssl redis server port (6379) will be enabled." + "description": "Specifies whether the non-ssl Redis server port (6379) is enabled." }, "tenantSettings": { "type": "object", @@ -692,22 +692,22 @@ "subnetId": { "type": "string", "pattern": "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$", - "description": "The full resource ID of a subnet in a virtual network to deploy the redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1" + "description": "The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subid}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1" }, "staticIP": { "type": "string", "pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$", - "description": "Required when deploying a redis cache inside an existing Azure Virtual Network." + "description": "Static IP address. Required when deploying a Redis cache inside an existing Azure Virtual Network." } }, - "description": "Properties supplied to Create Or Update redis operation.", + "description": "Properties supplied to Create or Update Redis operation.", "x-ms-external": true }, "RedisCreateProperties" : { "properties": { "sku": { "$ref": "#/definitions/Sku", - "description": "What sku of redis cache to deploy." + "description": "The SKU of the Redis cache to deploy." } }, "required": [ @@ -718,20 +718,20 @@ "$ref": "#/definitions/RedisProperties" } ], - "description": "Properties supplied to Create redis operation." + "description": "Properties supplied to Create Redis operation." }, "RedisUpdateProperties" : { "properties": { "sku": { "$ref": "#/definitions/Sku", - "description": "What sku of redis cache to deploy." + "description": "The SKU of the Redis cache to deploy." }, "tags": { "type": "object", "additionalProperties": { "type": "string" }, - "description": "Resource tags" + "description": "Resource tags." } }, "allOf": [ @@ -739,7 +739,7 @@ "$ref": "#/definitions/RedisProperties" } ], - "description": "Properties supplied to Update redis operation." + "description": "Properties supplied to Update Redis operation." }, "Resource": { "description": "The Resource definition.", @@ -747,28 +747,28 @@ "id": { "readOnly": true, "type": "string", - "description": "Resource Id" + "description": "Resource ID." }, "name": { "readOnly": true, "type": "string", - "description": "Resource name" + "description": "Resource name." }, "type": { "readOnly": true, "type": "string", - "description": "Resource type" + "description": "Resource type." }, "location": { "type": "string", - "description": "Resource location" + "description": "Resource location." }, "tags": { "type": "object", "additionalProperties": { "type": "string" }, - "description": "Resource tags" + "description": "Resource tags." } }, "required": [ @@ -809,58 +809,58 @@ "primaryKey": { "readOnly": true, "type": "string", - "description": "The current primary key that clients can use to authenticate with redis cache." + "description": "The current primary key that clients can use to authenticate with Redis cache." }, "secondaryKey": { "readOnly": true, "type": "string", - "description": "The current secondary key that clients can use to authenticate with redis cache." + "description": "The current secondary key that clients can use to authenticate with Redis cache." } }, "description": "Redis cache access keys." }, "RedisResourceProperties": { "properties": { - "redisVersion": { + "RedisVersion": { "readOnly": true, "type": "string", - "description": "Redis Version." + "description": "Redis version." }, "provisioningState": { "readOnly": true, "type": "string", - "description": "Redis instance provisioning status" + "description": "Redis instance provisioning status." }, "hostName": { "readOnly": true, "type": "string", - "description": "Redis host name" + "description": "Redis host name." }, "port": { "readOnly": true, "type": "integer", "format": "int32", - "description": "Redis non-ssl port" + "description": "Redis non-SSL port." }, "sslPort": { "readOnly": true, "type": "integer", "format": "int32", - "description": "Redis ssl port" + "description": "Redis SSL port." }, "properties": { "$ref": "#/definitions/RedisCreateProperties", "x-ms-client-flatten": true } }, - "description": "Parameters describing a redis instance" + "description": "Parameters describing a Redis instance." }, "RedisResource": { "properties": { "properties": { "x-ms-client-flatten": true, "$ref": "#/definitions/RedisResourceProperties", - "description": "Redis cache properties" + "description": "Redis cache properties." } }, "allOf": [ @@ -868,7 +868,7 @@ "$ref": "#/definitions/Resource" } ], - "description": "A single redis item in List or Get Operation." + "description": "A single Redis item in List or Get Operation." }, "RedisListResult": { "properties": { @@ -877,20 +877,20 @@ "items": { "$ref": "#/definitions/RedisResource" }, - "description": "Results of the list operation" + "description": "List of Redis cache instances." }, "nextLink": { "type": "string", "description": "Link for next set of locations." } }, - "description": "The response of list redis operation." + "description": "The response of list Redis operation." }, "RedisRegenerateKeyParameters": { "properties": { "keyType": { "type": "string", - "description": "Which redis access key to reset", + "description": "The Redis access key to regenerate.", "enum": [ "Primary", "Secondary" @@ -904,13 +904,13 @@ "required": [ "keyType" ], - "description": "Specifies which redis access keys to reset." + "description": "Specifies which Redis access keys to reset." }, "RedisRebootParameters": { "properties": { "rebootType": { "type": "string", - "description": "Which redis node(s) to reboot. Depending on this value data loss is possible.", + "description": "Which Redis node(s) to reboot. Depending on this value data loss is possible.", "enum": [ "PrimaryNode", "SecondaryNode", @@ -924,13 +924,13 @@ "shardId": { "type": "integer", "format": "int32", - "description": "In case of cluster cache, this specifies shard id which should be rebooted." + "description": "If clustering is enabled, the ID of the shard to be rebooted." } }, "required": [ "rebootType" ], - "description": "Specifies which redis node(s) to reboot." + "description": "Specifies which Redis node(s) to reboot." }, "ExportRDBParameters": { "properties": { @@ -951,7 +951,7 @@ "container", "prefix" ], - "description": "Parameters for redis export operation." + "description": "Parameters for Redis export operation." }, "ImportRDBParameters": { "properties": { @@ -961,7 +961,7 @@ }, "files": { "type": "array", - "description": "files to import", + "description": "files to import.", "items": { "type": "string" } @@ -970,13 +970,13 @@ "required": [ "files" ], - "description": "Parameters for redis import operation." + "description": "Parameters for Redis import operation." }, "ScheduleEntry": { "properties": { "dayOfWeek": { "type": "string", - "description": "Day of week when cache can be patched.", + "description": "Day of the week when a cache can be patched.", "enum": [ "Monday", "Tuesday", @@ -1008,7 +1008,7 @@ "dayOfWeek", "startHourUtc" ], - "description": "Patch schedule entry for Premium Redis Cache." + "description": "Patch schedule entry for a Premium Redis Cache." }, "ScheduleEntries": { "properties": { @@ -1017,46 +1017,46 @@ "items": { "$ref": "#/definitions/ScheduleEntry" }, - "description": "List of patch schedules for redis cache." + "description": "List of patch schedules for a Redis cache." } }, "required": [ "scheduleEntries" ], - "description": "List of patch schedules for redis cache." + "description": "List of patch schedules for a Redis cache." }, "RedisPatchSchedule": { "properties": { "id": { "readOnly": true, "type": "string", - "description": "Resource Id" + "description": "Resource ID." }, "name": { "readOnly": true, "type": "string", - "description": "Resource name" + "description": "Resource name." }, "type": { "readOnly": true, "type": "string", - "description": "Resource type" + "description": "Resource type." }, "location": { "readOnly": true, "type": "string", - "description": "Resource location" + "description": "Resource location." }, "properties": { "x-ms-client-flatten": true, "$ref": "#/definitions/ScheduleEntries", - "description": "List of patch schedules for redis cache." + "description": "List of patch schedules for a Redis cache." } }, "required": [ "properties" ], - "description": "Response to put/get patch schedules for redis cache." + "description": "Response to put/get patch schedules for Redis cache." } }, "parameters": { @@ -1065,7 +1065,7 @@ "in": "path", "required": true, "type": "string", - "description": "Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." + "description": "Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." }, "ApiVersionParameter": { "name": "api-version",