Retrieves a list of dynamic parameters for a specified service.
Operation description
Description
ClusterIdspecifies the service's region.ConfigTypespecifies the configuration type. Onlyserviceis supported.Namespecifies the service name.Use the
PageandPageSizeparameters to paginate the results.The response contains the details of the dynamic parameters and pagination information.
Try it now
Test
RAM authorization
Request syntax
GET /api/v2/configs/{ClusterId}/{ConfigType}/{Name} HTTP/1.1
Path Parameters
|
Parameter |
Type |
Required |
Description |
Example |
| ClusterId |
string |
No |
The service region. (Required) |
cn-hangzhou |
| ConfigType |
string |
No |
The configuration type. (Required) Only |
service |
| Name |
string |
No |
The service name. (Required) |
my-llm-service |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| Page |
integer |
No |
The page number. Default: 1. |
1 |
| PageSize |
integer |
No |
The number of entries per page. Default: 100. Maximum: 200. |
100 |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
The response structure. |
||
| Type |
string |
The configuration type. |
Service |
| Name |
string |
The service name. |
my-service |
| Configs |
array<object> |
The list of dynamic parameters. |
[{"Key": "rate_limit", "Value": "{\"limit\": 100}", "CreatedAt": "2024-01-15T10:30:00Z", "UpdatedAt": "2024-01-15T10:30:00Z"}] |
|
object |
|||
| Key |
string |
The name of the dynamic parameter. |
rate_limit |
| Value |
string |
The value of the dynamic parameter. |
100 |
| CreatedAt |
string |
The time when the dynamic parameter was created, in UTC and ISO 8601 format. |
2024-01-01T10:00:00Z |
| UpdatedAt |
string |
The time when the dynamic parameter was last updated, in UTC and ISO 8601 format. |
2024-01-01T10:00:00Z |
| Page |
integer |
The current page number. |
1 |
| PageSize |
integer |
The number of entries on the current page. |
100 |
| Total |
integer |
The total number of entries found. |
150 |
| HasMore |
boolean |
Indicates if more entries are available. |
true |
Examples
Success response
JSON format
{
"Type": "Service",
"Name": "my-service",
"Configs": [
{
"Key": "rate_limit",
"Value": "100",
"CreatedAt": "2024-01-01T10:00:00Z",
"UpdatedAt": "2024-01-01T10:00:00Z"
}
],
"Page": 1,
"PageSize": 100,
"Total": 150,
"HasMore": true
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.