getAutoScalingActivityLogList

Prev Next

Overview

Get all scaling action logs for the past six weeks as a result. Actions in progress appear at the top of the list.
You can also view the list separately by page. You can specify the size of each page (number of items) and the page number.

Request

Request parameters

Parameter name Required Type Restrictions Description
activityNoList No List - Scaling action (activity) identification number
autoScalingGroupName No String Min: 1, Max: 255 Enter the name of the auto scaling group you want to query.
pageNo No Integer Min: 0, Max: 2147483647 Enter the page information of pagination when querying the list.
If you enter the default value 0, all lists will be queried.
pageSize No Integer Min: 0, Max: 2147483647 Enter the number of information per page in pagination when querying the list.
If you enter the default value 0, all lists will be queried.
responseFormatType No String - Response result's format type
Options: xml | json
Default: xml

Response

Response body

Examples

Request example

{AUTOSCALILNG_API_URL}/getAutoScalingActivityLogList
?activityNoList.1=1939
&activityNoList.2=1943

Response example

<getAutoScalingActivityLogListResponse>
   <requestId>c9df714e-29b7-42dd-9a38-7ac2be68f191</requestId>
   <returnCode>0</returnCode>
   <returnMessage>success</returnMessage>
   <totalRows>2</totalRows>
   <activityLogList>
      <activityLog>
         <activityNo>1939</activityNo>
         <autoScalingGroupName>psw26-auto</autoScalingGroupName>
         <status>
            <code>INPRG</code>
            <codeName>IN_PROGRESS</codeName>
         </status>
         <statusMessage />
         <actionCause>MAINTAIN_INSTANCE_LEVEL psw26-auto</actionCause>
         <description>MAINTAIN_INSTANCE_LEVEL psw26-auto</description>
         <details>{}</details>
         <startTime>2014-02-17T13:28:47+0900</startTime>
      </activityLog>
      <activityLog>
         <activityNo>1943</activityNo>
         <autoScalingGroupName>asg-1</autoScalingGroupName>
         <status>
            <code>SUCCS</code>
            <codeName>SUCCESSFUL</codeName>
         </status>
         <statusMessage />
         <actionCause>updateAutoScalingGroup asg-1</actionCause>
         <description>updateAutoScalingGroup asg-1</description>
         <details>updateAutoScalingGroup {autoScalingGroupNo=273, autoScalingGroupName=asg-1, requestTypeCode=API, zoneNoList=null, launchConfigurationName=null, desiredCapacity=0, oldDesiredCapacity=1, healthCheckTypeCode=SVR, minSize=0, healthCheckGracePeriod=null, clientIp=10.64.49.152, launchConfigurationNo=293, maxSize=0, memberNo=212}</details>
         <startTime>2014-02-24T13:47:52+0900</startTime>
         <endTime>2014-02-24T13:52:55+0900</endTime>
      </activityLog>
   </activityLogList>
</getAutoScalingActivityLogListResponse>