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

com.aliyun.sdk.service.ens20171110.models.DescribeDiskIopsListRequest Maven / Gradle / Ivy

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

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

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

DescribeDiskIopsListRequest

*/ public class DescribeDiskIopsListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DiskId") @com.aliyun.core.annotation.Validation(required = true) private String diskId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndTime") @com.aliyun.core.annotation.Validation(required = true) private String endTime; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartTime") @com.aliyun.core.annotation.Validation(required = true) private String startTime; private DescribeDiskIopsListRequest(Builder builder) { super(builder); this.diskId = builder.diskId; this.endTime = builder.endTime; this.startTime = builder.startTime; } public static Builder builder() { return new Builder(); } public static DescribeDiskIopsListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return diskId */ public String getDiskId() { return this.diskId; } /** * @return endTime */ public String getEndTime() { return this.endTime; } /** * @return startTime */ public String getStartTime() { return this.startTime; } public static final class Builder extends Request.Builder { private String diskId; private String endTime; private String startTime; private Builder() { super(); } private Builder(DescribeDiskIopsListRequest request) { super(request); this.diskId = request.diskId; this.endTime = request.endTime; this.startTime = request.startTime; } /** *

The ID of the disk. Format: d-***********.

*

This parameter is required.

* * example: *

d-5tzm9wnhzlhjzcbtxo465****

*/ public Builder diskId(String diskId) { this.putQueryParameter("DiskId", diskId); this.diskId = diskId; return this; } /** *

The beginning of the time range to query. Specify the time in the format of yyyy-MM-dd HH:mm:ss. The time range specified by the StartTime and EndTime parameters cannot exceed one day for a query.

*

This parameter is required.

* * example: *

2023-12-14 23:59:59

*/ public Builder endTime(String endTime) { this.putQueryParameter("EndTime", endTime); this.endTime = endTime; return this; } /** *

The beginning of the time range to query. Specify the time in the format of yyyy-MM-dd HH:mm:ss.

*

This parameter is required.

* * example: *

2023-12-14 00:00:00

*/ public Builder startTime(String startTime) { this.putQueryParameter("StartTime", startTime); this.startTime = startTime; return this; } @Override public DescribeDiskIopsListRequest build() { return new DescribeDiskIopsListRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy