调用ListLayerVersions接口获取层的版本列表。
请求头
该接口无特殊请求头,关于公共请求头信息,请参见公共参数。
请求语法
GET /layers/{layerName}/versions HTTP/1.1
请求参数
名称 | 类型 | 位置 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|---|
layerName | String | Path | 是 | Layer-name |
层的名称。 |
startVersion | Integer | Query | 否 | 1 |
层的起始版本。 |
limit | Integer | Query | 否 | 20 |
限定此次返回资源的数量。如果不设定,默认返回20,最大不能超过100。返回结果可以小于指定的数量,但不会多于指定的数量。 |
返回数据
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
layers | Array of Layer |
层的版本列表。 |
|
nextVersion | Integer | 2 |
用来返回更多结果。 说明 如果这个值没有返回,则说明没有更多结果。
|
示例
请求示例
GET /2016-08-15/layers/Layer-name/versions?startVersion=1&limit=20 HTTP/1.1
公共请求头
正常返回示例
JSON
格式
HTTP/1.1 200 OK
Content-Type:application/json
{
"layers" : [ {
"layerName" : "Layer-name",
"version" : 1,
"description" : "Layer-description",
"code" : {
"repositoryType" : "OSS",
"location" : "https://xyz.oss-cnxxx.aliyuncs.com/xxx/xxx/xxx"
},
"codeSize" : 421,
"codeChecksum" : "2825179536350****",
"createTime" : "2020-11-11T11:08:00Z",
"acl" : 0,
"compatibleRuntime" : [ "python3" ],
"arn" : "02f81d283888f5ec63442a88fe82b260#Layer-name#1"
} ],
"nextVersion" : 2
}