deleteScalingPolicy
- Print
- PDF
deleteScalingPolicy
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Can be used in a VPC environment.
Summary
Delete scaling policies.
Request
Request Parameters
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | Region code You can decide the region of Auto Scaling Group to delete the scaling policy. You can obtain the regionCode through the getRegionList action. Default: Select the first region of the getRegionList search results | |
autoScalingGroupNo | Yes | String | Auto Scaling Group number You can obtain the autoScalingGroupNo through the getAutoScalingGroupList action. | |
policyNo | Yes | String | The scaling policy number to delete You can obtain the policyNo through the getAutoScalingPolicyList action. | |
responseFormatType | No | String | Format type of the response results Options : xml | json Default : xml |
Response
Response data type
- ScalingPolicyList type
ScalingPolicyList extends CommonResponse |
---|
private Integer totalRows; |
private List |
ScalingPolicy |
---|
private String autoScalingGroupNo; |
private String policyNo; |
private String policyName; |
private CommonCode adjustmentType; |
private Integer scalingAdjustment; |
private Integer minAdjustmentStep; |
private Integer coolDown; |
Example
Request example
ncloud vautoscaling deleteScalingPolicy --regionCode KR --autoScalingGroupNo ***700 --policyNo ***922
Response example
<deleteScalingPolicyResponse>
<requestId>dcbf41de-b9d4-460d-a594-60d77ec25bf1</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<scalingPolicyList>
<scalingPolicy>
<autoScalingGroupNo>***700</autoScalingGroupNo>
<policyNo>***922</policyNo>
<policyName>test-***</policyName>
<adjustmentType>
<code>CHANG</code>
<codeName>ChangeInCapacity</codeName>
</adjustmentType>
<scalingAdjustment>1</scalingAdjustment>
<coolDown>300</coolDown>
</scalingPolicy>
</scalingPolicyList>
</deleteScalingPolicyResponse>
Was this article helpful?