Queries the code versions of a function (routine) by page.
Operation description
Call this operation to query the code versions of a specific function. Paged query and fuzzy search are supported. You can configure Name to specify the name of a function.
Specify PageNumber and PageSize to control the number of entries returned in a request, and use SearchKeyWord to specify a keyword for fuzzy search.
The response includes the number, description, and creation time of each code version.
Debugging
Authorization information
The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:
- Operation: the value that you can use in the Action element to specify the operation on a resource.
- Access level: the access level of each operation. The levels are read, write, and list.
- Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
- For mandatory resource types, indicate with a prefix of * .
- If the permissions cannot be granted at the resource level,
All Resourcesis used in the Resource type column of the operation.
- Condition Key: the condition key that is defined by the cloud service.
- Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
| Operation | Access level | Resource type | Condition key | Associated operation |
|---|---|---|---|---|
| esa:ListRoutineCodeVersions | none | *All Resources * |
| none |
Request parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
| Name | string | Yes | The function name. | ListRoutineCodeVersions |
| PageNumber | long | No | The page number of the returned page. Default value: 1. Valid values: 1 and 2. | 1 |
| PageSize | long | No | The number of entries per page. Valid values: 1 to 20. | 20 |
| SearchKeyWord | string | No | The keyword used for fuzzy search. | hello |
Response parameters
Examples
Sample success responses
JSONformat
{
"RequestId": "04F0F334-1335-436C-A1D7-6C044FE73368",
"PageNumber": 1,
"PageSize": 20,
"TotalCount": 5,
"CodeVersions": [
{
"CodeDescription": "test desc",
"CreateTime": "2024-04-16T09:42:47Z",
"CodeVersion": 1723599747213377300,
"Status": "Available",
"ExtraInfo": "{\\\"approver\\\":[\\\"348678\\\",\\\"111133\\\",\\\"411544\\\"]}",
"BuildId": 25801233,
"ConfOptions": {
"NotFoundStrategy": "SinglePageApplication"
}
}
]
}Error codes
| HTTP status code | Error code | Error message | Description |
|---|---|---|---|
| 400 | InternalException | Failed to call the service. Try again later or contact technical support. | Failed to call the service. Try again later or contact technical support. |
| 400 | InvalidParameter | The specified parameter is invalid. | The specified parameter is invalid. |
| 400 | RoutineNotExist | The routine name does not exist. Check the routine name and try again. | The routine name does not exist. Check the routine name and try again. |
| 400 | InternalOperationError | Failed to call the service. Try again later or contact technical support. | Failed to call the service. Try again later or contact technical support. |
For a list of error codes, visit the Service error codes.
