Help Center> Host Security Service (New)> API Reference> API Description> Asset Management> Querying Automatic Startup Item Information
Updated on 2024-01-31 GMT+08:00

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.

Calling Method

For details, see Calling APIs.

URI

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

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

User ID

Minimum: 1

Maximum: 256

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

name

No

String

Auto-started item name

Minimum: 1

Maximum: 256

type

No

String

Auto-started item type

Minimum: 1

Maximum: 256

enterprise_project_id

No

String

Enterprise project

Minimum: 1

Maximum: 256

limit

No

Integer

Default value: 10

Minimum: 10

Maximum: 100

Default: 10

offset

No

Integer

Default value: 0

Minimum: 0

Maximum: 10000

Default: 0

Request Parameters

Table 3 Request header parameters

Parameter

Mandatory

Type

Description

x-auth-token

Yes

String

iam token

Minimum: 32

Maximum: 4096

Response Parameters

Status code: 200

Table 4 Response body parameters

Parameter

Type

Description

total_num

Integer

Total number of auto-started items

Minimum: 0

Maximum: 10000

data_list

Array of AutoLaunchStatisticsResponseInfo objects

List of auto-started item statistics

Array Length: 0 - 10000

Table 5 AutoLaunchStatisticsResponseInfo

Parameter

Type

Description

name

String

Auto-started item name

Minimum: 1

Maximum: 256

type

String

Auto-started item type

Minimum: 1

Maximum: 11

num

Integer

Quantity

Minimum: 0

Maximum: 10000

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

Number of servers having the process

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

Status Codes

Status Code

Description

200

Number of servers having the process

Error Codes

See Error Codes.