ListConfigs

更新时间:
复制 MD 格式

Retrieves a list of dynamic parameters for a specified service.

Operation description

Description

  • ClusterId specifies the service's region.

  • ConfigType specifies the configuration type. Only service is supported.

  • Name specifies the service name.

  • Use the Page and PageSize parameters to paginate the results.

  • The response contains the details of the dynamic parameters and pagination information.

Try it now

Try this API in OpenAPI Explorer, no manual signing needed. Successful calls auto-generate SDK code matching your parameters. Download it with built-in credential security for local usage.

Test

RAM authorization

No authorization for this operation. If you encounter issues with this operation, contact technical support.

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 is supported.

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 if more entries exist; otherwise, false.

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.