文档首页/ 云桌面 Workspace/ API参考/ 云桌面API/ 脚本/ 查询脚本执行记录列表
更新时间:2024-12-27 GMT+08:00
分享

查询脚本执行记录列表

功能介绍

查询脚本执行记录列表。

调试

您可以在API Explorer中调试该接口,支持自动认证鉴权。API Explorer可以自动生成SDK代码示例,并提供SDK代码示例调试功能。

URI

GET /v2/{project_id}/script-execution-records

表1 路径参数

参数

是否必选

参数类型

描述

project_id

String

项目ID。

表2 Query参数

参数

是否必选

参数类型

描述

offset

Integer

查询的偏移量。

limit

Integer

单次查询的大小[1-100]。

resource_id

Array of strings

执行脚本的资源ID列表。

resource_group_id

Array of strings

执行脚本的资源组ID。

script_id

Array of strings

执行的脚本ID。

script_name

Array of strings

执行的脚本名称。

status

String

执行脚本的执行情况。

is_first_order

Boolean

是否首批执行。

script_task_id

String

执行脚本的任务ID。

task_type

String

执行记录的任务类型(SCRIPT/COMMAND)。

show_history

Boolean

是否查询历史记录,默认为false,为true时需要同时传入resource_id与script_id。

execute_time_start

String

按执行时间查询的起始时间。指定该参数后,返回的结果为此时间之后的所有执行记录。时间格式如:“2021-10-01T12:00:00Z”。

execute_time_end

String

按执行时间查询的终止时间。指定该参数后,返回的结果为此时间之前的所有执行记录。时间格式如:“2021-10-01T12:00:00Z”。

请求参数

表3 请求Header参数

参数

是否必选

参数类型

描述

X-Auth-Token

String

用户Token。

通过调用IAM服务获取用户Token接口获取(响应消息头中X-Subject-Token的值)。

响应参数

状态码: 200

表4 响应Body参数

参数

参数类型

描述

count

Integer

总数。

script_records

Array of ScriptRecordSimpleInfo objects

脚本执行记录列表。

表5 ScriptRecordSimpleInfo

参数

参数类型

描述

id

String

脚本执行记录ID。

script_id

String

脚本ID。

script_name

String

脚本名称。

script_task_id

String

脚本执行的任务ID。

resource_id

String

执行脚本的资源ID,如桌面ID。

resource_name

String

执行脚本的资源名称,如桌面名称。

resource_type

String

资源类型,如桌面(DESKTOP)。

start_time

String

脚本执行开始时间。

end_time

String

脚本执行结束时间。

status

String

脚本执行状态。

execute_order

Integer

执行批次(默认:0,灰度:1,非灰度:2)。

result_code

String

错误码。

reason

String

原因。

状态码: 400

表6 响应Body参数

参数

参数类型

描述

error_code

String

错误码,失败时返回。

error_msg

String

错误描述。

状态码: 401

表7 响应Body参数

参数

参数类型

描述

error_code

String

错误码,失败时返回。

error_msg

String

错误描述。

状态码: 403

表8 响应Body参数

参数

参数类型

描述

error_code

String

错误码,失败时返回。

error_msg

String

错误描述。

状态码: 404

表9 响应Body参数

参数

参数类型

描述

error_code

String

错误码,失败时返回。

error_msg

String

错误描述。

状态码: 405

表10 响应Body参数

参数

参数类型

描述

error_code

String

错误码,失败时返回。

error_msg

String

错误描述。

状态码: 500

表11 响应Body参数

参数

参数类型

描述

error_code

String

错误码,失败时返回。

error_msg

String

错误描述。

状态码: 503

表12 响应Body参数

参数

参数类型

描述

error_code

String

错误码,失败时返回。

error_msg

String

错误描述。

请求示例

响应示例

状态码: 200

成功响应。

{
  "count" : 0,
  "script_records" : [ {
    "id" : "sawafaw12414214awfa",
    "script_id" : "string",
    "script_name" : "string",
    "script_task_id" : "string",
    "resource_id" : "string",
    "resource_name" : "string",
    "resource_type" : "string",
    "start_time" : "2024-12-25T07:10:49.357Z",
    "end_time" : "2024-12-25T07:10:49.357Z",
    "status" : "string",
    "execute_order" : 0,
    "command_content" : "string",
    "command_type" : "string",
    "result_code" : "string",
    "reason" : "string"
  } ]
}

状态码

状态码

描述

200

成功响应。

400

由于包含语法错误,当前请求无法被服务器理解。

401

鉴权失败。

403

没有操作权限。

404

找不到资源。

405

请求中指定的方法不被允许。

500

服务内部错误,具体返回错误码请参见错误码说明。

503

服务不可用。

错误码

请参见错误码

相关文档