tencent cloud

Tencent Cloud Distributed Cache (Redis OSS-Compatible)

Release Notes and Announcements
Release Notes
Announcements
User Tutorial
Product Introduction
Overview
Product Strengths
Use Cases
Storage Engine
Product Series
Product Versions
Specifications and Performance
Read/Write Separation
Multi-AZ Deployment
Regions and AZs
Terms
Service Regions and Service Providers
Purchase Guide
Billing Overview
Pricing Center
Instance Purchasing
Renewal (Yearly/Monthly Subscription)
Refund (Yearly/Monthly Subscription)
Overdue Payments
Switching from Pay-as-You-Go to Yearly/Monthly Subscription
Getting Started
Quickly Creating an Instance
Connecting to Redis Instance
Operation Guide
Operation Overview
Connecting to a Database Instance
Managing Instances
Upgrade Instance
Management Node (Redis/ValKey Edition)
Multi-AZ Deployment Management
Backup and Restoration
Managing Accounts
Parameter Configuration
Slow Query
Access Management
Network and Security
Monitoring and Alarms
Event Management (Redis/ValKey Edition)
Data Migration
Global Replication for Redis Edition
Database Audit
Performance Optimization
Sentinel Mode
Development Guidelines
Naming Rules
Basic Usage Guidelines
Design Principles of Key and Value
Command Usage Guidelines
Design Principles of Client Programs
Connection Pool Configuration
Command Reference
Command Reference Overview
Redis Edition and Valkey Edition Command Compatibility
Version Command Usage Differences
Differences Between the Proxy Architecture and Direct Connection Mode
More Command Operations (Redis/Valkey Edition)
Memcached Edition Command Compatibility
Practical Tutorial
Building TencentDB for Redis® Client Monitoring Based on Spring Boot
Redis Client Connection Configuration Policy and Practice
Global SCAN Guide for Cluster Architecture
Eliminating Instances Securely
Hot Key and Big Key
AZ Migration Scheme
Troubleshooting
Connection Exception
Exception Analysis and Solution of Redisson Client Timeout Reconnection
Performance Troubleshooting and Fine-Tuning
API Documentation
History
Introduction
API Category
Making API Requests
Instance APIs
Parameter Management APIs
Other APIs
Backup and Restoration APIs
Region APIs
Monitoring and Management APIs
Log APIs
Data Types
Error Codes
FAQs
General
Connection and Login
Purchase
Service Agreement
Service Level Agreement
Terms of Service
Glossary
Contact Us

DescribeParamTemplateInfo

PDF
Focus Mode
Font Size
Last updated: 2025-10-28 22:22:01

1. API Description

Domain name for API request: redis.intl.tencentcloudapi.com.

This API is used to query the details of a parameter template.

A maximum of 20 requests can be initiated per second for this API.

We recommend you to use API Explorer
Try it
API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

2. Input Parameters

The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.

Parameter Name Required Type Description
Action Yes String Common Params. The value used for this API: DescribeParamTemplateInfo.
Version Yes String Common Params. The value used for this API: 2018-04-12.
Region Yes String Common Params. For more information, please see the list of regions supported by the product.
TemplateId Yes String The parameter template ID for query. Get parameter template list information through the DescribeParamTemplates API.

3. Output Parameters

Parameter Name Type Description
TotalCount Integer Quantity of parameters in the parameter template
TemplateId String Parameter template ID.
Name String Parameter template name.
ProductType Integer Product type.
- 2: Redis 2.8 Memory Edition (standard architecture).
- 3: CKV 3.2 Memory Edition (standard architecture).
- 4: CKV 3.2 Memory Edition (cluster architecture).
- 5: Redis 2.8 Memory Edition (stand-alone).
- 6: Redis 4.0 Memory Edition (standard architecture).
- 7: Redis 4.0 Memory Edition (cluster architecture).
- 8: Redis 5.0 Memory Edition (standard architecture).
- 9: Redis 5.0 Memory Edition (cluster architecture).
- 15: Redis 6.2 Memory Edition (standard architecture).
- 16: Redis 6.2 Memory Edition (cluster architecture).
- 17: Redis 7.0 Memory Edition (standard architecture).
- 18: Redis 7.0 Memory Edition (cluster architecture).
Description String Parameter template description
Items Array of ParameterDetail Parameter details, including parameter name, current value, default value, maximum value, minimum value, enumeration value and other information.
RequestId String The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.

4. Example

Example1 Querying Information of a Parameter Template

This example shows you how to query the template information by specifying a parameter template ID.

Input Example

POST / HTTP/1.1
Host: redis.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeParamTemplateInfo
<Common request parameters>

{
    "TemplateId": "crs-cfg-7mgt****"
}

Output Example

{
    "Response": {
        "Description": "MyCustomParamTemplate",
        "Items": [
            {
                "CurrentValue": "flushall",
                "Default": "param_default_value",
                "Description": "commands in such config will not be allowed to run in this instance,you can config multi commands like this 'flushdb,keys'",
                "EnumValue": [
                    "flushall",
                    "flushdb",
                    "keys",
                    "hgetall",
                    "eval",
                    "evalsha",
                    "script"
                ],
                "Max": "",
                "Min": "",
                "Name": "disable-command-list",
                "NeedReboot": 0,
                "ParamType": "multi"
            },
            {
                "CurrentValue": "512",
                "Default": "512",
                "Description": "Hashes are encoded using a memory efficient data structure when they have a small number of entries",
                "EnumValue": null,
                "Max": "10000",
                "Min": "1",
                "Name": "hash-max-ziplist-entries",
                "NeedReboot": 0,
                "ParamType": "integer"
            },
            {
                "CurrentValue": "64",
                "Default": "64",
                "Description": "Hashes are encoded using a memory efficient data structure when the biggest entry does not exceed a given threshold",
                "EnumValue": null,
                "Max": "10000",
                "Min": "1",
                "Name": "hash-max-ziplist-value",
                "NeedReboot": 0,
                "ParamType": "integer"
            },
            {
                "CurrentValue": "10",
                "Default": "10",
                "Description": "The frequency at which Redis background tasks are performed. A higher value results in higher CPU consumption but smaller latency. We recommend that you do not specify a value larger than 100.",
                "EnumValue": null,
                "Max": "500",
                "Min": "1",
                "Name": "hz",
                "NeedReboot": 0,
                "ParamType": "integer"
            }
        ],
        "Name": "redis_automation_is_awesome_1",
        "ProductType": 2,
        "RequestId": "72881d6c-c2a0-42af-862a-a5de09de104d",
        "TemplateId": "crs-cfg-7mgt****",
        "TotalCount": 14
    }
}

5. Developer Resources

SDK

TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

Command Line Interface

6. Error Code

The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.

Error Code Description
FailedOperation.SystemError Internal system error, which is irrelevant to the business.
InvalidParameter Incorrect parameter.
InvalidParameter.PermissionDenied The API has no CAM permissions.
UnauthorizedOperation The operation is unauthorized.
UnauthorizedOperation.NoCAMAuthed No CAM permissions.
UnauthorizedOperation.UserNotInWhiteList The user is not in the allowlist.
UnsupportedOperation.ClusterInstanceAccessedDeny The Redis cluster edition is not allowed to connect to a security group.

Help and Support

Was this page helpful?

Help us improve! Rate your documentation experience in 5 mins.

Feedback