tencent cloud

文档反馈

ListLayerVersions

最后更新时间:2023-05-05 10:16:42

1. API Description

Domain name for API request: scf.tencentcloudapi.com.

This API is used to get the information of all versions of a specified layer.

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: ListLayerVersions.
Version Yes String Common Params. The value used for this API: 2018-04-16.
Region No String Common Params. This parameter is not required for this API.
LayerName Yes String Layer name
CompatibleRuntime.N No Array of String Compatible runtimes

3. Output Parameters

Parameter Name Type Description
LayerVersions Array of LayerVersionInfo Layer version list
RequestId String The unique request ID, which is returned for each request. RequestId is required for locating a problem.

4. Example

Example1 Getting layer version list

This example shows you how to get the layer version list.

Input Example

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

{
    "LayerName": "abc",
    "CompatibleRuntime": [
        "abc"
    ]
}

Output Example

{
    "Response": {
        "LayerVersions": [
            {
                "Status": "Active",
                "LayerVersion": 1,
                "Description": "desc",
                "LicenseInfo": "",
                "AddTime": "2019-11-26 16:15:33",
                "CompatibleRuntimes": [
                    "Nodejs8.9",
                    "Nodejs6.10"
                ],
                "LayerName": "layer3"
            }
        ],
        "RequestId": "4e9bc0ab-0b7c-45f1-8eec-e4f1f4f73e2b"
    }
}

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
InternalError Internal error.
InternalError.System Internal system error.
InvalidParameterValue.Name Incorrect Name parameter.
InvalidParameterValue.Runtime Runtime error.
ResourceNotFound.Layer The layer does not exist.
UnauthorizedOperation.CAM CAM authentication failed.