Mengambil daftar parameter dinamis untuk layanan tertentu.
Deskripsi operasi
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.
Coba sekarang
Test
RAM authorization
Sintaks permintaan
GET /api/v2/configs/{ClusterId}/{ConfigType}/{Name} HTTP/1.1
Path Parameters
|
Parameter |
Type |
Required |
Description |
Example |
| ClusterId |
string |
No |
Wilayah layanan. (Wajib). |
cn-hangzhou |
| ConfigType |
string |
No |
Jenis konfigurasi. (Wajib) Hanya |
service |
| Name |
string |
No |
Nama layanan. (Wajib). |
my-llm-service |
Parameter permintaan
|
Parameter |
Type |
Required |
Description |
Example |
| Page |
integer |
No |
Nomor halaman. Default: 1. |
1 |
| PageSize |
integer |
No |
Jumlah entri per halaman. Default: 100. Maksimum: 200. |
100 |
Elemen respons
|
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 |
Contoh
Respons sukses
JSONformat
{
"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
}
Kode kesalahan
Lihat Error Codes untuk daftar lengkap.
Catatan rilis
Lihat Release Notes untuk daftar lengkap.