nav-img
Advanced

Querying Automatic Startup Item Information

Function

This API is used to query the automatic startup information. The startup type and number of servers can be queried based on the automatic startup name.

URI

GET /v5/{project_id}/asset/auto-launch/statistics

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID.

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

name

No

String

Auto-started item name

type

No

String

Auto-started item type

  • 0: auto-started service

  • 1: scheduled task

  • 2: Preload dynamic library

  • 3: Run registry key

  • 4: startup folder

enterprise_project_id

No

String

Enterprise project ID. To query all enterprise projects, set this parameter to all_granted_eps.

limit

No

Integer

Number of records on each page

offset

No

Integer

Offset, which specifies the start position of the record to be returned.

Request Parameters

Table 3 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

User token.

It can be obtained by calling the IAM API used to obtain a user token. The value of X-Subject-Token in the response header is a user token.

Response Parameters

Status code: 200

Table 4 Response body parameters

Parameter

Type

Description

total_num

Integer

Total number of auto-started items

data_list

List of auto-started item statistics

Table 5 AutoLaunchStatisticsResponseInfo

Parameter

Type

Description

name

String

Auto-started item name

type

String

Auto-started item type

  • 0: auto-started service

  • 1: scheduled task

  • 2: Preload dynamic library

  • 3: Run registry key

  • 4: startup folder

num

Integer

Number of servers that have the auto-startup items.

Example Requests

The first 10 auto-startup items are queried by default.

GET https://{endpoint}/v5/{project_id}/asset/auto-launch/statistics

Example Responses

Status code: 200

Request succeeded.

{
"total_num" : 1,
"data_list" : [ {
"name" : "S12hostguard",
"type" : "0",
"num" : 5
} ]
}

Status Codes

Status Code

Description

200

Request succeeded.

Error Codes