com.aliyun.sdk.service.ens20171110.models.ResetDiskRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ens20171110 Show documentation
Show all versions of alibabacloud-ens20171110 Show documentation
Alibaba Cloud Ens (20171110) Async SDK for Java
The newest version!
// 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 ResetDiskRequest} extends {@link RequestModel}
*
* ResetDiskRequest
*/
public class ResetDiskRequest 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("SnapshotId")
@com.aliyun.core.annotation.Validation(required = true)
private String snapshotId;
private ResetDiskRequest(Builder builder) {
super(builder);
this.diskId = builder.diskId;
this.snapshotId = builder.snapshotId;
}
public static Builder builder() {
return new Builder();
}
public static ResetDiskRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return diskId
*/
public String getDiskId() {
return this.diskId;
}
/**
* @return snapshotId
*/
public String getSnapshotId() {
return this.snapshotId;
}
public static final class Builder extends Request.Builder {
private String diskId;
private String snapshotId;
private Builder() {
super();
}
private Builder(ResetDiskRequest request) {
super(request);
this.diskId = request.diskId;
this.snapshotId = request.snapshotId;
}
/**
* The ID of the disk that you want to roll back.
* This parameter is required.
*
* example:
* d-bp199lyny9b3****
*/
public Builder diskId(String diskId) {
this.putQueryParameter("DiskId", diskId);
this.diskId = diskId;
return this;
}
/**
* The ID of the snapshot that you want to use to roll back the disk.
* This parameter is required.
*
* example:
* sp-bp199lyny9b3****
*/
public Builder snapshotId(String snapshotId) {
this.putQueryParameter("SnapshotId", snapshotId);
this.snapshotId = snapshotId;
return this;
}
@Override
public ResetDiskRequest build() {
return new ResetDiskRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy