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

com.aliyun.sdk.service.ess20220222.models.DeleteNotificationConfigurationRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ess20220222.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link DeleteNotificationConfigurationRequest} extends {@link RequestModel}
 *
 * 

DeleteNotificationConfigurationRequest

*/ public class DeleteNotificationConfigurationRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("NotificationArn") @com.aliyun.core.annotation.Validation(required = true) private String notificationArn; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("RegionId") private String regionId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ResourceOwnerAccount") private String resourceOwnerAccount; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ScalingGroupId") @com.aliyun.core.annotation.Validation(required = true) private String scalingGroupId; private DeleteNotificationConfigurationRequest(Builder builder) { super(builder); this.notificationArn = builder.notificationArn; this.ownerId = builder.ownerId; this.regionId = builder.regionId; this.resourceOwnerAccount = builder.resourceOwnerAccount; this.scalingGroupId = builder.scalingGroupId; } public static Builder builder() { return new Builder(); } public static DeleteNotificationConfigurationRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return notificationArn */ public String getNotificationArn() { return this.notificationArn; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return resourceOwnerAccount */ public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } /** * @return scalingGroupId */ public String getScalingGroupId() { return this.scalingGroupId; } public static final class Builder extends Request.Builder { private String notificationArn; private Long ownerId; private String regionId; private String resourceOwnerAccount; private String scalingGroupId; private Builder() { super(); } private Builder(DeleteNotificationConfigurationRequest request) { super(request); this.notificationArn = request.notificationArn; this.ownerId = request.ownerId; this.regionId = request.regionId; this.resourceOwnerAccount = request.resourceOwnerAccount; this.scalingGroupId = request.scalingGroupId; } /** *

The Alibaba Cloud Resource Name (ARN) of the notification method. The following list describes the value formats of this parameter:

*
    *
  • If you use CloudMonitor as the notification party, the value format of this parameter is acs:ess:{region-id}:{account-id}:cloudmonitor.
  • *
  • If you use an MNS queue as the notification party, the value format of this parameter is acs:mns:{region-id}:{account-id}:queue/{queuename}.
  • *
  • If you use an MNS topic as the notification party, the value format of this parameter is acs:mns:{region-id}:{account-id}:topic/{topicname}.
  • *
*

The variables in the preceding formats have the following meanings:

*
    *
  • region-id: the region ID of the scaling group.
  • *
  • account-id: the ID of the Alibaba Cloud account.
  • *
  • queuename: the name of the MNS queue.
  • *
  • topicname: the name of the MNS topic.
  • *
*

This parameter is required.

* * example: *

acs:ess:cn-beijing:161456884340****:cloudmonitor

*/ public Builder notificationArn(String notificationArn) { this.putQueryParameter("NotificationArn", notificationArn); this.notificationArn = notificationArn; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** *

The region ID of the scaling group.

* * example: *

cn-beijing

*/ public Builder regionId(String regionId) { this.putQueryParameter("RegionId", regionId); this.regionId = regionId; return this; } /** * ResourceOwnerAccount. */ public Builder resourceOwnerAccount(String resourceOwnerAccount) { this.putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount); this.resourceOwnerAccount = resourceOwnerAccount; return this; } /** *

The ID of the scaling group.

*

This parameter is required.

* * example: *

asg-bp18p2yfxow2dloq****

*/ public Builder scalingGroupId(String scalingGroupId) { this.putQueryParameter("ScalingGroupId", scalingGroupId); this.scalingGroupId = scalingGroupId; return this; } @Override public DeleteNotificationConfigurationRequest build() { return new DeleteNotificationConfigurationRequest(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy