com.volcengine.model.acep.v20231030.ResultConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.acep.v20231030;
import com.alibaba.fastjson.JSON;
/**
* ResultConfiguration
*/
@lombok.Data
public final class ResultConfiguration {
/**
* 内存大小
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Memory")
private Double memory;
/**
* cpu核数
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CpuCore")
private Double cpuCore;
/**
* 云机规格。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ServerTypeCode")
private String serverTypeCode;
/**
* 云手机实例规格 ID。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ConfigurationCode")
private String configurationCode;
/**
* 云手机实例规格名称。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ConfigurationName")
private String configurationName;
/**
* 配置类型。取值如下:
*
*
*
* - `1`:正式
*
* - `2`:试用
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ConfigurationType")
private Integer configurationType;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy