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

com.aliyun.sdk.service.ess20220222.models.DescribeScalingGroupDetailRequest 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 DescribeScalingGroupDetailRequest} extends {@link RequestModel}
 *
 * 

DescribeScalingGroupDetailRequest

*/ public class DescribeScalingGroupDetailRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OutputFormat") private String outputFormat; @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") @com.aliyun.core.annotation.Validation(required = true) private String regionId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ScalingGroupId") @com.aliyun.core.annotation.Validation(required = true) private String scalingGroupId; private DescribeScalingGroupDetailRequest(Builder builder) { super(builder); this.outputFormat = builder.outputFormat; this.ownerId = builder.ownerId; this.regionId = builder.regionId; this.scalingGroupId = builder.scalingGroupId; } public static Builder builder() { return new Builder(); } public static DescribeScalingGroupDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return outputFormat */ public String getOutputFormat() { return this.outputFormat; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return scalingGroupId */ public String getScalingGroupId() { return this.scalingGroupId; } public static final class Builder extends Request.Builder { private String outputFormat; private Long ownerId; private String regionId; private String scalingGroupId; private Builder() { super(); } private Builder(DescribeScalingGroupDetailRequest request) { super(request); this.outputFormat = request.outputFormat; this.ownerId = request.ownerId; this.regionId = request.regionId; this.scalingGroupId = request.scalingGroupId; } /** *

The output format. Set the value to yaml.

* * example: *

yaml

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

The region ID of the scaling group. For more information, see Regions and zones.

*

This parameter is required.

* * example: *

cn-hangzhou

*/ public Builder regionId(String regionId) { this.putQueryParameter("RegionId", regionId); this.regionId = regionId; 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 DescribeScalingGroupDetailRequest build() { return new DescribeScalingGroupDetailRequest(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy