All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ess20220222.models.DeleteLifecycleHookRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ess20220222.models;

import com.aliyun.tea.*;

public class DeleteLifecycleHookRequest extends TeaModel {
    /**
     * 

The ID of the lifecycle hook.

* * example: *

ash-bp14g3ee6bt3sc98****

*/ @NameInMap("LifecycleHookId") public String lifecycleHookId; /** *

The name of the lifecycle hook.

* * example: *

lifecyclehook****

*/ @NameInMap("LifecycleHookName") public String lifecycleHookName; @NameInMap("OwnerAccount") public String ownerAccount; @NameInMap("OwnerId") public Long ownerId; /** *

The region ID of the scaling group.

* * example: *

cn-hangzhou

*/ @NameInMap("RegionId") public String regionId; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; /** *

The ID of the scaling group.

* * example: *

asg-bp18p2yfxow2dloq****

*/ @NameInMap("ScalingGroupId") public String scalingGroupId; public static DeleteLifecycleHookRequest build(java.util.Map map) throws Exception { DeleteLifecycleHookRequest self = new DeleteLifecycleHookRequest(); return TeaModel.build(map, self); } public DeleteLifecycleHookRequest setLifecycleHookId(String lifecycleHookId) { this.lifecycleHookId = lifecycleHookId; return this; } public String getLifecycleHookId() { return this.lifecycleHookId; } public DeleteLifecycleHookRequest setLifecycleHookName(String lifecycleHookName) { this.lifecycleHookName = lifecycleHookName; return this; } public String getLifecycleHookName() { return this.lifecycleHookName; } public DeleteLifecycleHookRequest setOwnerAccount(String ownerAccount) { this.ownerAccount = ownerAccount; return this; } public String getOwnerAccount() { return this.ownerAccount; } public DeleteLifecycleHookRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public DeleteLifecycleHookRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } public DeleteLifecycleHookRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public DeleteLifecycleHookRequest setScalingGroupId(String scalingGroupId) { this.scalingGroupId = scalingGroupId; return this; } public String getScalingGroupId() { return this.scalingGroupId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy