
com.tencentcloudapi.tione.v20211111.models.ResourceInfo Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.tione.v20211111.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ResourceInfo extends AbstractModel{
/**
* 处理器资源, 单位为1/1000核
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Cpu")
@Expose
private Long Cpu;
/**
* 内存资源, 单位为1M
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Memory")
@Expose
private Long Memory;
/**
* Gpu卡个数资源, 单位为0.01单位的GpuType.
Gpu=100表示使用了“一张”gpu卡, 但此处的“一张”卡有可能是虚拟化后的1/4卡, 也有可能是整张卡. 取决于实例的机型
例1 实例的机型带有1张虚拟gpu卡, 每张虚拟gpu卡对应1/4张实际T4卡, 则此时 GpuType=T4, Gpu=100, RealGpu=25.
例2 实例的机型带有4张gpu整卡, 每张卡对应1张实际T4卡, 则 此时 GpuType=T4, Gpu=400, RealGpu=400.
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("Gpu")
@Expose
private Long Gpu;
/**
* Gpu卡型号 T4或者V100
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("GpuType")
@Expose
private String GpuType;
/**
* 创建或更新时无需填写,仅展示需要关注
后付费非整卡实例对应的实际的Gpu卡资源, 表示gpu资源对应实际的gpu卡个数.
RealGpu=100表示实际使用了一张gpu卡, 对应实际的实例机型, 有可能代表带有1/4卡的实例4个, 或者带有1/2卡的实例2个, 或者带有1卡的实力1个.
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("RealGpu")
@Expose
private Long RealGpu;
/**
* Get 处理器资源, 单位为1/1000核
注意:此字段可能返回 null,表示取不到有效值。
* @return Cpu 处理器资源, 单位为1/1000核
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getCpu() {
return this.Cpu;
}
/**
* Set 处理器资源, 单位为1/1000核
注意:此字段可能返回 null,表示取不到有效值。
* @param Cpu 处理器资源, 单位为1/1000核
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setCpu(Long Cpu) {
this.Cpu = Cpu;
}
/**
* Get 内存资源, 单位为1M
注意:此字段可能返回 null,表示取不到有效值。
* @return Memory 内存资源, 单位为1M
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getMemory() {
return this.Memory;
}
/**
* Set 内存资源, 单位为1M
注意:此字段可能返回 null,表示取不到有效值。
* @param Memory 内存资源, 单位为1M
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setMemory(Long Memory) {
this.Memory = Memory;
}
/**
* Get Gpu卡个数资源, 单位为0.01单位的GpuType.
Gpu=100表示使用了“一张”gpu卡, 但此处的“一张”卡有可能是虚拟化后的1/4卡, 也有可能是整张卡. 取决于实例的机型
例1 实例的机型带有1张虚拟gpu卡, 每张虚拟gpu卡对应1/4张实际T4卡, 则此时 GpuType=T4, Gpu=100, RealGpu=25.
例2 实例的机型带有4张gpu整卡, 每张卡对应1张实际T4卡, 则 此时 GpuType=T4, Gpu=400, RealGpu=400.
注意:此字段可能返回 null,表示取不到有效值。
* @return Gpu Gpu卡个数资源, 单位为0.01单位的GpuType.
Gpu=100表示使用了“一张”gpu卡, 但此处的“一张”卡有可能是虚拟化后的1/4卡, 也有可能是整张卡. 取决于实例的机型
例1 实例的机型带有1张虚拟gpu卡, 每张虚拟gpu卡对应1/4张实际T4卡, 则此时 GpuType=T4, Gpu=100, RealGpu=25.
例2 实例的机型带有4张gpu整卡, 每张卡对应1张实际T4卡, 则 此时 GpuType=T4, Gpu=400, RealGpu=400.
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getGpu() {
return this.Gpu;
}
/**
* Set Gpu卡个数资源, 单位为0.01单位的GpuType.
Gpu=100表示使用了“一张”gpu卡, 但此处的“一张”卡有可能是虚拟化后的1/4卡, 也有可能是整张卡. 取决于实例的机型
例1 实例的机型带有1张虚拟gpu卡, 每张虚拟gpu卡对应1/4张实际T4卡, 则此时 GpuType=T4, Gpu=100, RealGpu=25.
例2 实例的机型带有4张gpu整卡, 每张卡对应1张实际T4卡, 则 此时 GpuType=T4, Gpu=400, RealGpu=400.
注意:此字段可能返回 null,表示取不到有效值。
* @param Gpu Gpu卡个数资源, 单位为0.01单位的GpuType.
Gpu=100表示使用了“一张”gpu卡, 但此处的“一张”卡有可能是虚拟化后的1/4卡, 也有可能是整张卡. 取决于实例的机型
例1 实例的机型带有1张虚拟gpu卡, 每张虚拟gpu卡对应1/4张实际T4卡, 则此时 GpuType=T4, Gpu=100, RealGpu=25.
例2 实例的机型带有4张gpu整卡, 每张卡对应1张实际T4卡, 则 此时 GpuType=T4, Gpu=400, RealGpu=400.
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setGpu(Long Gpu) {
this.Gpu = Gpu;
}
/**
* Get Gpu卡型号 T4或者V100
注意:此字段可能返回 null,表示取不到有效值。
* @return GpuType Gpu卡型号 T4或者V100
注意:此字段可能返回 null,表示取不到有效值。
*/
public String getGpuType() {
return this.GpuType;
}
/**
* Set Gpu卡型号 T4或者V100
注意:此字段可能返回 null,表示取不到有效值。
* @param GpuType Gpu卡型号 T4或者V100
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setGpuType(String GpuType) {
this.GpuType = GpuType;
}
/**
* Get 创建或更新时无需填写,仅展示需要关注
后付费非整卡实例对应的实际的Gpu卡资源, 表示gpu资源对应实际的gpu卡个数.
RealGpu=100表示实际使用了一张gpu卡, 对应实际的实例机型, 有可能代表带有1/4卡的实例4个, 或者带有1/2卡的实例2个, 或者带有1卡的实力1个.
注意:此字段可能返回 null,表示取不到有效值。
* @return RealGpu 创建或更新时无需填写,仅展示需要关注
后付费非整卡实例对应的实际的Gpu卡资源, 表示gpu资源对应实际的gpu卡个数.
RealGpu=100表示实际使用了一张gpu卡, 对应实际的实例机型, 有可能代表带有1/4卡的实例4个, 或者带有1/2卡的实例2个, 或者带有1卡的实力1个.
注意:此字段可能返回 null,表示取不到有效值。
*/
public Long getRealGpu() {
return this.RealGpu;
}
/**
* Set 创建或更新时无需填写,仅展示需要关注
后付费非整卡实例对应的实际的Gpu卡资源, 表示gpu资源对应实际的gpu卡个数.
RealGpu=100表示实际使用了一张gpu卡, 对应实际的实例机型, 有可能代表带有1/4卡的实例4个, 或者带有1/2卡的实例2个, 或者带有1卡的实力1个.
注意:此字段可能返回 null,表示取不到有效值。
* @param RealGpu 创建或更新时无需填写,仅展示需要关注
后付费非整卡实例对应的实际的Gpu卡资源, 表示gpu资源对应实际的gpu卡个数.
RealGpu=100表示实际使用了一张gpu卡, 对应实际的实例机型, 有可能代表带有1/4卡的实例4个, 或者带有1/2卡的实例2个, 或者带有1卡的实力1个.
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setRealGpu(Long RealGpu) {
this.RealGpu = RealGpu;
}
public ResourceInfo() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public ResourceInfo(ResourceInfo source) {
if (source.Cpu != null) {
this.Cpu = new Long(source.Cpu);
}
if (source.Memory != null) {
this.Memory = new Long(source.Memory);
}
if (source.Gpu != null) {
this.Gpu = new Long(source.Gpu);
}
if (source.GpuType != null) {
this.GpuType = new String(source.GpuType);
}
if (source.RealGpu != null) {
this.RealGpu = new Long(source.RealGpu);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Cpu", this.Cpu);
this.setParamSimple(map, prefix + "Memory", this.Memory);
this.setParamSimple(map, prefix + "Gpu", this.Gpu);
this.setParamSimple(map, prefix + "GpuType", this.GpuType);
this.setParamSimple(map, prefix + "RealGpu", this.RealGpu);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy