You can call this operation to query software assets.
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | DescribePropertySoftwareItem |
The operation that you want to perform. Set the value to DescribePropertySoftwareItem. |
CurrentPage | Integer | No | 1 |
The number of the page to return. |
ForceFlush | Boolean | No | true |
Specifies whether to force refresh the data to be queried. |
Name | String | No | xxx |
The name of the software that you want to query. |
PageSize | Integer | No | 10 |
The number of entries to return on each page. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
PageInfo |
The page information. |
||
Count | Integer | 2 |
The number of entries returned on the current page. |
CurrentPage | Integer | 1 |
The page number of the returned page. |
PageSize | Integer | 2 |
The number of entries returned per page. |
TotalCount | Integer | 5037 |
The total number of returned entries. |
PropertyItems |
The returned software assets. |
||
Count | Integer | 23 |
The number of servers that correspond to the software asset. |
Name | String | aaa_base |
The name of the software asset. |
RequestId | String | null |
The ID of the request. |
Examples
Sample requests
http(s)://[Endpoint]/? Action=DescribePropertySoftwareItem
&<Common request parameters>
Sample success responses
XML
format
<DescribePropertySoftwareItem>
<code>200</code>
<data>
<PropertyItems>
<Name>a11y-profile-manager-indicator</Name>
<Count>1</Count>
</PropertyItems>
<PropertyItems>
<Name>aaa_base</Name>
<Count>23</Count>
</PropertyItems>
<PageInfo>
<Count>2</Count>
<PageSize>2</PageSize>
<TotalCount>5037</TotalCount>
<CurrentPage>1</CurrentPage>
</PageInfo>
</data>
<success>true</success>
<requestId></requestId>
<message>successful</message>
</DescribePropertySoftwareItem>
JSON
format
{
"message":"successful",
"data":{
"PropertyItems":[
{
"Name":"a11y-profile-manager-indicator",
"Count":1
},
{
"Name":"aaa_base",
"Count":23
}
],
"PageInfo":{
"Count":2,
"TotalCount":5037,
"PageSize":2,
"CurrentPage":1
}
},
"code":"200",
"success":true
}
Error codes
For a list of error codes, visit the API Error Center.