Microsoft.ApiManagement service/caches 2021-01-01-preview
- Latest
- 2024-06-01-preview
- 2024-05-01
- 2023-09-01-preview
- 2023-05-01-preview
- 2023-03-01-preview
- 2022-09-01-preview
- 2022-08-01
- 2022-04-01-preview
- 2021-12-01-preview
- 2021-08-01
- 2021-04-01-preview
- 2021-01-01-preview
- 2020-12-01
- 2020-06-01-preview
- 2019-12-01
- 2019-12-01-preview
- 2019-01-01
- 2018-06-01-preview
Bicep resource definition
The service/caches resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.ApiManagement/service/caches resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.ApiManagement/service/caches@2021-01-01-preview' = {
parent: resourceSymbolicName
name: 'string'
properties: {
connectionString: 'string'
description: 'string'
resourceId: 'string'
useFromLocation: 'string'
}
}
Property values
CacheContractProperties
Name | Description | Value |
---|---|---|
connectionString | Runtime connection string to cache | string Constraints: Max length = (required) |
description | Cache description | string Constraints: Max length = |
resourceId | Original uri of entity in external system cache points to | string Constraints: Max length = |
useFromLocation | Location identifier to use cache from (should be either 'default' or valid Azure region identifier) | string Constraints: Max length = (required) |
Microsoft.ApiManagement/service/caches
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Min length = 1 Max length = 1 Pattern = ^[^*#&+:<>?]+$ (required) |
parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: service |
properties | Cache properties details. | CacheContractProperties |
Quickstart samples
The following quickstart samples deploy this resource type.
Bicep File | Description |
---|---|
Deploy API Management with an external Azure Cache for Redis | This template demonstrates how to create an instance of Azure API Management in the Consumption tier with an external Azure Cache for Redis instance as the API Management external cache. |
ARM template resource definition
The service/caches resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.ApiManagement/service/caches resource, add the following JSON to your template.
{
"type": "Microsoft.ApiManagement/service/caches",
"apiVersion": "2021-01-01-preview",
"name": "string",
"properties": {
"connectionString": "string",
"description": "string",
"resourceId": "string",
"useFromLocation": "string"
}
}
Property values
CacheContractProperties
Name | Description | Value |
---|---|---|
connectionString | Runtime connection string to cache | string Constraints: Max length = (required) |
description | Cache description | string Constraints: Max length = |
resourceId | Original uri of entity in external system cache points to | string Constraints: Max length = |
useFromLocation | Location identifier to use cache from (should be either 'default' or valid Azure region identifier) | string Constraints: Max length = (required) |
Microsoft.ApiManagement/service/caches
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2021-01-01-preview' |
name | The resource name | string Constraints: Min length = 1 Max length = 1 Pattern = ^[^*#&+:<>?]+$ (required) |
properties | Cache properties details. | CacheContractProperties |
type | The resource type | 'Microsoft.ApiManagement/service/caches' |
Quickstart templates
The following quickstart templates deploy this resource type.
Template | Description |
---|---|
Deploy API Management with an external Azure Cache for Redis |
This template demonstrates how to create an instance of Azure API Management in the Consumption tier with an external Azure Cache for Redis instance as the API Management external cache. |
Terraform (AzAPI provider) resource definition
The service/caches resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.ApiManagement/service/caches resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.ApiManagement/service/caches@2021-01-01-preview"
name = "string"
body = jsonencode({
properties = {
connectionString = "string"
description = "string"
resourceId = "string"
useFromLocation = "string"
}
})
}
Property values
CacheContractProperties
Name | Description | Value |
---|---|---|
connectionString | Runtime connection string to cache | string Constraints: Max length = (required) |
description | Cache description | string Constraints: Max length = |
resourceId | Original uri of entity in external system cache points to | string Constraints: Max length = |
useFromLocation | Location identifier to use cache from (should be either 'default' or valid Azure region identifier) | string Constraints: Max length = (required) |
Microsoft.ApiManagement/service/caches
Name | Description | Value |
---|---|---|
name | The resource name | string Constraints: Min length = 1 Max length = 1 Pattern = ^[^*#&+:<>?]+$ (required) |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: service |
properties | Cache properties details. | CacheContractProperties |
type | The resource type | "Microsoft.ApiManagement/service/caches@2021-01-01-preview" |