com.aliyun.sdk.service.ess20220222.models.DescribeScalingGroupDetailRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ess20220222 Show documentation
Show all versions of alibabacloud-ess20220222 Show documentation
Alibaba Cloud Ess (20220222) Async SDK for Java
// 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.
*/
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](~~40654~~).
*/
public Builder regionId(String regionId) {
this.putQueryParameter("RegionId", regionId);
this.regionId = regionId;
return this;
}
/**
* The ID of the scaling group.
*/
public Builder scalingGroupId(String scalingGroupId) {
this.putQueryParameter("ScalingGroupId", scalingGroupId);
this.scalingGroupId = scalingGroupId;
return this;
}
@Override
public DescribeScalingGroupDetailRequest build() {
return new DescribeScalingGroupDetailRequest(this);
}
}
}