com.aliyuncs.batchcompute.pojo.v20151111.GroupDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-batchcompute Show documentation
Show all versions of aliyun-java-sdk-batchcompute Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
package com.aliyuncs.batchcompute.pojo.v20151111;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Created by guangchun.luo on 15/12/7.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
public class GroupDescription {
@JsonProperty("DesiredVMCount")
private int desiredVMCount = -1;
@JsonProperty("InstanceType")
private String instanceType;
@JsonProperty("ImageId")
private String imageId;
@JsonProperty("ResourceType")
private String resourceType;
@JsonProperty("SpotStrategy")
private String spotStrategy;
@JsonProperty("SpotPriceLimit")
private float spotPriceLimit;
@JsonProperty("HostnamePrefix")
private String hostnamePrefix;
@JsonIgnore
public String getImageId() {
return imageId;
}
@JsonIgnore
public void setImageId(String imageId) {
this.imageId = imageId;
}
@JsonIgnore
public String getHostnamePrefix() {
return hostnamePrefix;
}
@JsonIgnore
public void setHostnamePrefix(String hostnamePrefix) {
this.hostnamePrefix = hostnamePrefix;
}
@JsonIgnore
public String getSpotStrategy() {
return spotStrategy;
}
@JsonIgnore
public void setSpotStrategy(String spotStrategy) {
this.spotStrategy = spotStrategy;
}
@JsonIgnore
public float getSpotPriceLimit() {
return spotPriceLimit;
}
@JsonIgnore
public void setSpotPriceLimit(float spotPriceLimit) {
this.spotPriceLimit = spotPriceLimit;
}
@JsonIgnore
public int getDesiredVMCount() {
return desiredVMCount;
}
@JsonIgnore
public void setDesiredVMCount(int desiredVMCount) {
this.desiredVMCount = desiredVMCount;
}
@JsonIgnore
public String getInstanceType() {
return instanceType;
}
@JsonIgnore
public void setInstanceType(String instanceType) {
this.instanceType = instanceType;
}
@JsonIgnore
public String getResourceType() {
return resourceType;
}
@JsonIgnore
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy