com.aliyun.sdk.service.ecs20140526.models.DescribeInstancesFullStatusRequest Maven / Gradle / Ivy
Show all versions of alibabacloud-ecs20140526 Show documentation
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeInstancesFullStatusRequest} extends {@link RequestModel}
*
* DescribeInstancesFullStatusRequest
*/
public class DescribeInstancesFullStatusRequest extends Request {
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("EventPublishTime")
private EventPublishTime eventPublishTime;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("NotBefore")
private NotBefore notBefore;
@com.aliyun.core.annotation.Host
@com.aliyun.core.annotation.NameInMap("SourceRegionId")
private String sourceRegionId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("EventId")
private java.util.List < String > eventId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("EventType")
private String eventType;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("HealthStatus")
private String healthStatus;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("InstanceEventType")
private java.util.List < String > instanceEventType;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("InstanceId")
private java.util.List < String > instanceId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("OwnerAccount")
private String ownerAccount;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("OwnerId")
private Long ownerId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("PageNumber")
private Integer pageNumber;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("PageSize")
private Integer pageSize;
@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("ResourceOwnerAccount")
private String resourceOwnerAccount;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("ResourceOwnerId")
private Long resourceOwnerId;
@com.aliyun.core.annotation.Query
@com.aliyun.core.annotation.NameInMap("Status")
private String status;
private DescribeInstancesFullStatusRequest(Builder builder) {
super(builder);
this.eventPublishTime = builder.eventPublishTime;
this.notBefore = builder.notBefore;
this.sourceRegionId = builder.sourceRegionId;
this.eventId = builder.eventId;
this.eventType = builder.eventType;
this.healthStatus = builder.healthStatus;
this.instanceEventType = builder.instanceEventType;
this.instanceId = builder.instanceId;
this.ownerAccount = builder.ownerAccount;
this.ownerId = builder.ownerId;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.regionId = builder.regionId;
this.resourceOwnerAccount = builder.resourceOwnerAccount;
this.resourceOwnerId = builder.resourceOwnerId;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static DescribeInstancesFullStatusRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return eventPublishTime
*/
public EventPublishTime getEventPublishTime() {
return this.eventPublishTime;
}
/**
* @return notBefore
*/
public NotBefore getNotBefore() {
return this.notBefore;
}
/**
* @return sourceRegionId
*/
public String getSourceRegionId() {
return this.sourceRegionId;
}
/**
* @return eventId
*/
public java.util.List < String > getEventId() {
return this.eventId;
}
/**
* @return eventType
*/
public String getEventType() {
return this.eventType;
}
/**
* @return healthStatus
*/
public String getHealthStatus() {
return this.healthStatus;
}
/**
* @return instanceEventType
*/
public java.util.List < String > getInstanceEventType() {
return this.instanceEventType;
}
/**
* @return instanceId
*/
public java.util.List < String > getInstanceId() {
return this.instanceId;
}
/**
* @return ownerAccount
*/
public String getOwnerAccount() {
return this.ownerAccount;
}
/**
* @return ownerId
*/
public Long getOwnerId() {
return this.ownerId;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return resourceOwnerAccount
*/
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
/**
* @return resourceOwnerId
*/
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
public static final class Builder extends Request.Builder {
private EventPublishTime eventPublishTime;
private NotBefore notBefore;
private String sourceRegionId;
private java.util.List < String > eventId;
private String eventType;
private String healthStatus;
private java.util.List < String > instanceEventType;
private java.util.List < String > instanceId;
private String ownerAccount;
private Long ownerId;
private Integer pageNumber;
private Integer pageSize;
private String regionId;
private String resourceOwnerAccount;
private Long resourceOwnerId;
private String status;
private Builder() {
super();
}
private Builder(DescribeInstancesFullStatusRequest request) {
super(request);
this.eventPublishTime = request.eventPublishTime;
this.notBefore = request.notBefore;
this.sourceRegionId = request.sourceRegionId;
this.eventId = request.eventId;
this.eventType = request.eventType;
this.healthStatus = request.healthStatus;
this.instanceEventType = request.instanceEventType;
this.instanceId = request.instanceId;
this.ownerAccount = request.ownerAccount;
this.ownerId = request.ownerId;
this.pageNumber = request.pageNumber;
this.pageSize = request.pageSize;
this.regionId = request.regionId;
this.resourceOwnerAccount = request.resourceOwnerAccount;
this.resourceOwnerId = request.resourceOwnerId;
this.status = request.status;
}
/**
* EventPublishTime.
*/
public Builder eventPublishTime(EventPublishTime eventPublishTime) {
this.putQueryParameter("EventPublishTime", eventPublishTime);
this.eventPublishTime = eventPublishTime;
return this;
}
/**
* NotBefore.
*/
public Builder notBefore(NotBefore notBefore) {
this.putQueryParameter("NotBefore", notBefore);
this.notBefore = notBefore;
return this;
}
/**
* SourceRegionId.
*/
public Builder sourceRegionId(String sourceRegionId) {
this.putHostParameter("SourceRegionId", sourceRegionId);
this.sourceRegionId = sourceRegionId;
return this;
}
/**
* The IDs of the system events. You can specify up to 100 event IDs in a single request.
*
* example:
* e-bp1hygp5b04o56l0****
*/
public Builder eventId(java.util.List < String > eventId) {
this.putQueryParameter("EventId", eventId);
this.eventId = eventId;
return this;
}
/**
* The type of the system event. This parameter is valid only when InstanceEventType.N is not specified. Valid values:
*
* - SystemMaintenance.Reboot: The instance is restarted due to system maintenance.
* - SystemFailure.Reboot: The instance is restarted due to a system failure.
* - InstanceFailure.Reboot: The instance is restarted due to an instance failure.
* - InstanceExpiration.Stop: The subscription instance is stopped due to expiration.
* - InstanceExpiration.Delete: The subscription instance is released due to expiration.
* - AccountUnbalanced.Stop: The pay-as-you-go instance is stopped due to an overdue payment.
* - AccountUnbalanced.Delete: The pay-as-you-go instance is released due to an overdue payment.
*
*
* example:
* InstanceExpiration.Stop
*/
public Builder eventType(String eventType) {
this.putQueryParameter("EventType", eventType);
this.eventType = eventType;
return this;
}
/**
* The health status of the instance. Valid values:
*
* - OK
* - Impaired
* - Initializing
* - InsufficientData
* - NotApplicable
*
* All the values are case-sensitive.
*
* example:
* Maintaining
*/
public Builder healthStatus(String healthStatus) {
this.putQueryParameter("HealthStatus", healthStatus);
this.healthStatus = healthStatus;
return this;
}
/**
* The types of system events. You can specify up to 30 event types in a single request.
*
* example:
* InstanceExpiration.Stop
*/
public Builder instanceEventType(java.util.List < String > instanceEventType) {
this.putQueryParameter("InstanceEventType", instanceEventType);
this.instanceEventType = instanceEventType;
return this;
}
/**
* The IDs of the instances. You can specify up to 100 instance IDs in a single request.
*
* example:
* i-bp67acfmxazb4p****
*/
public Builder instanceId(java.util.List < String > instanceId) {
this.putQueryParameter("InstanceId", instanceId);
this.instanceId = instanceId;
return this;
}
/**
* OwnerAccount.
*/
public Builder ownerAccount(String ownerAccount) {
this.putQueryParameter("OwnerAccount", ownerAccount);
this.ownerAccount = ownerAccount;
return this;
}
/**
* OwnerId.
*/
public Builder ownerId(Long ownerId) {
this.putQueryParameter("OwnerId", ownerId);
this.ownerId = ownerId;
return this;
}
/**
* The page number. The value must be a positive integer.
* Default value: 1.
*
* example:
* 1
*/
public Builder pageNumber(Integer pageNumber) {
this.putQueryParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* The number of entries per page. Valid values: 1 to 100.
* Default value: 10.
*
* example:
* 10
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* The region ID of the instance. You can call the DescribeRegions operation to query the most recent region list.
* This parameter is required.
*
* example:
* cn-hangzhou
*/
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;
}
/**
* ResourceOwnerId.
*/
public Builder resourceOwnerId(Long resourceOwnerId) {
this.putQueryParameter("ResourceOwnerId", resourceOwnerId);
this.resourceOwnerId = resourceOwnerId;
return this;
}
/**
* The lifecycle status of the instance. Valid values:
*
* - Starting
* - Running
* - Stopped
*
*
* example:
* Running
*/
public Builder status(String status) {
this.putQueryParameter("Status", status);
this.status = status;
return this;
}
@Override
public DescribeInstancesFullStatusRequest build() {
return new DescribeInstancesFullStatusRequest(this);
}
}
/**
*
* {@link DescribeInstancesFullStatusRequest} extends {@link TeaModel}
*
* DescribeInstancesFullStatusRequest
*/
public static class EventPublishTime extends TeaModel {
@com.aliyun.core.annotation.NameInMap("End")
private String end;
@com.aliyun.core.annotation.NameInMap("Start")
private String start;
private EventPublishTime(Builder builder) {
this.end = builder.end;
this.start = builder.start;
}
public static Builder builder() {
return new Builder();
}
public static EventPublishTime create() {
return builder().build();
}
/**
* @return end
*/
public String getEnd() {
return this.end;
}
/**
* @return start
*/
public String getStart() {
return this.start;
}
public static final class Builder {
private String end;
private String start;
/**
* The end of the time range during which system events are published. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
*
* example:
* 2017-12-07T00:00:00Z
*/
public Builder end(String end) {
this.end = end;
return this;
}
/**
* The beginning of the time range during which system events are published. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
*
* example:
* 2017-11-30T00:00:00Z
*/
public Builder start(String start) {
this.start = start;
return this;
}
public EventPublishTime build() {
return new EventPublishTime(this);
}
}
}
/**
*
* {@link DescribeInstancesFullStatusRequest} extends {@link TeaModel}
*
* DescribeInstancesFullStatusRequest
*/
public static class NotBefore extends TeaModel {
@com.aliyun.core.annotation.NameInMap("End")
private String end;
@com.aliyun.core.annotation.NameInMap("Start")
private String start;
private NotBefore(Builder builder) {
this.end = builder.end;
this.start = builder.start;
}
public static Builder builder() {
return new Builder();
}
public static NotBefore create() {
return builder().build();
}
/**
* @return end
*/
public String getEnd() {
return this.end;
}
/**
* @return start
*/
public String getStart() {
return this.start;
}
public static final class Builder {
private String end;
private String start;
/**
* The end of the time range during which O&M tasks related to scheduled system events are executed. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
*
* example:
* 2017-11-30T00:00:00Z
*/
public Builder end(String end) {
this.end = end;
return this;
}
/**
* The beginning of the time range during which O&M tasks related to scheduled system events are executed. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.
*
* example:
* 2017-12-07T00:00:00Z
*/
public Builder start(String start) {
this.start = start;
return this;
}
public NotBefore build() {
return new NotBefore(this);
}
}
}
}