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

com.aliyun.bpstudio20210931.models.GetPotentialFailZonesResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetPotentialFailZonesResponseBody extends TeaModel {
    /**
     * example:
     * 

200

*/ @NameInMap("Code") public String code; @NameInMap("Data") public java.util.List data; /** * example: *

The specified ResourceIds are not found in our records.

*/ @NameInMap("Message") public String message; /** * example: *

BFB7F5C8-FE7A-06CA-9F87-ABBF6B848F0C

*/ @NameInMap("RequestId") public String requestId; public static GetPotentialFailZonesResponseBody build(java.util.Map map) throws Exception { GetPotentialFailZonesResponseBody self = new GetPotentialFailZonesResponseBody(); return TeaModel.build(map, self); } public GetPotentialFailZonesResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public GetPotentialFailZonesResponseBody setData(java.util.List data) { this.data = data; return this; } public java.util.List getData() { return this.data; } public GetPotentialFailZonesResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public GetPotentialFailZonesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy