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

com.volcengine.model.tls.response.DescribeShardsResponse Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.tls.response;

import com.alibaba.fastjson.annotation.JSONField;
import com.volcengine.model.tls.Shard;
import com.volcengine.model.tls.exception.LogException;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
import org.apache.http.Header;

import java.util.List;

import static com.volcengine.model.tls.Const.SHARDS;
import static com.volcengine.model.tls.Const.TOTAL_KEY;

@Data
@ToString(callSuper = true)
@NoArgsConstructor
public class DescribeShardsResponse extends CommonResponse {
    @JSONField(name = TOTAL_KEY)
    int total;
    @JSONField(name = SHARDS)
    List shards;

    public DescribeShardsResponse(Header[] headers) {
        super(headers);
    }

    @Override
    public DescribeShardsResponse deSerialize(byte[] data, Class clazz) throws LogException {
        DescribeShardsResponse response = (DescribeShardsResponse) super.deSerialize(data, clazz);
        this.setShards(response.getShards());
        this.setTotal(response.getTotal());
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy