You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
417 B
30 lines
417 B
package net.educoder.model.param;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @Author: youys
|
|
* @Date: 2022/8/16
|
|
* @Description:
|
|
*/
|
|
@Data
|
|
public class CreateCloudHostParam {
|
|
|
|
/**
|
|
* 随机生成
|
|
*/
|
|
private String name;
|
|
/**
|
|
* 镜像id
|
|
*/
|
|
private String imageRef;
|
|
/**
|
|
* 规格id x核xG
|
|
*/
|
|
private String flavorRef;
|
|
/**
|
|
* 网络id
|
|
*/
|
|
private String networkId;
|
|
}
|