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

com.aliyun.ens20171110.models.ReInitDiskRequest Maven / Gradle / Ivy

There is a newer version: 7.4.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class ReInitDiskRequest extends TeaModel {
    /**
     * 

The ID of the disk to be initialized. You can initialize only one disk at a time.

*

This parameter is required.

* * example: *

d-5r7v69e0bejrnzger09w71yjv

*/ @NameInMap("DiskId") public String diskId; /** *

The ID of the image to use to create the instance.

*

This parameter is required.

* * example: *

m-5rz3i231o531s4p4ozanxmgx7

*/ @NameInMap("ImageId") public String imageId; public static ReInitDiskRequest build(java.util.Map map) throws Exception { ReInitDiskRequest self = new ReInitDiskRequest(); return TeaModel.build(map, self); } public ReInitDiskRequest setDiskId(String diskId) { this.diskId = diskId; return this; } public String getDiskId() { return this.diskId; } public ReInitDiskRequest setImageId(String imageId) { this.imageId = imageId; return this; } public String getImageId() { return this.imageId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy