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

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

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

import com.aliyun.tea.*;

public class CopySnapshotResponseBody extends TeaModel {
    /**
     * 

The list of created snapshots.

*/ @NameInMap("AllocationId") public java.util.List allocationId; /** *

The success status code.

*
    *
  • PartSuccess: partially succeeded.
  • *
  • AllSuccess: all succeeded.
  • *
* * example: *

AllSuccess

*/ @NameInMap("BizStatusCode") public String bizStatusCode; /** *

The request ID.

* * example: *

EA3758E0-8899-17D3-9526-5F62CF33A586

*/ @NameInMap("RequestId") public String requestId; /** *

The list of nodes that are not created.

*/ @NameInMap("UnAllocationId") public java.util.List unAllocationId; public static CopySnapshotResponseBody build(java.util.Map map) throws Exception { CopySnapshotResponseBody self = new CopySnapshotResponseBody(); return TeaModel.build(map, self); } public CopySnapshotResponseBody setAllocationId(java.util.List allocationId) { this.allocationId = allocationId; return this; } public java.util.List getAllocationId() { return this.allocationId; } public CopySnapshotResponseBody setBizStatusCode(String bizStatusCode) { this.bizStatusCode = bizStatusCode; return this; } public String getBizStatusCode() { return this.bizStatusCode; } public CopySnapshotResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public CopySnapshotResponseBody setUnAllocationId(java.util.List unAllocationId) { this.unAllocationId = unAllocationId; return this; } public java.util.List getUnAllocationId() { return this.unAllocationId; } public static class CopySnapshotResponseBodyAllocationId extends TeaModel { /** *

The ID of the node.

* * example: *

cn-chengdu-telecom-4

*/ @NameInMap("EnsRegionId") public String ensRegionId; /** *

The IDs of the instances.

*/ @NameInMap("InstanceId") public java.util.List instanceId; public static CopySnapshotResponseBodyAllocationId build(java.util.Map map) throws Exception { CopySnapshotResponseBodyAllocationId self = new CopySnapshotResponseBodyAllocationId(); return TeaModel.build(map, self); } public CopySnapshotResponseBodyAllocationId setEnsRegionId(String ensRegionId) { this.ensRegionId = ensRegionId; return this; } public String getEnsRegionId() { return this.ensRegionId; } public CopySnapshotResponseBodyAllocationId setInstanceId(java.util.List instanceId) { this.instanceId = instanceId; return this; } public java.util.List getInstanceId() { return this.instanceId; } } public static class CopySnapshotResponseBodyUnAllocationId extends TeaModel { /** *

The ID of the node.

* * example: *

cn-chengdu-26

*/ @NameInMap("EnsRegionId") public String ensRegionId; public static CopySnapshotResponseBodyUnAllocationId build(java.util.Map map) throws Exception { CopySnapshotResponseBodyUnAllocationId self = new CopySnapshotResponseBodyUnAllocationId(); return TeaModel.build(map, self); } public CopySnapshotResponseBodyUnAllocationId setEnsRegionId(String ensRegionId) { this.ensRegionId = ensRegionId; return this; } public String getEnsRegionId() { return this.ensRegionId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy