feat:modify field to create virtual machine

This commit is contained in:
qiwang 2024-03-28 10:02:16 +08:00
parent 5ec7309b2f
commit db5bda5fd6
2 changed files with 2 additions and 2 deletions

View File

@ -17113,7 +17113,7 @@ type CreateServerReq_Server struct {
Personality []*CreateServerReq_Personality `protobuf:"bytes,14,rep,name=personality,proto3" json:"personality,omitempty"`
SecurityGroups []*CreateServerReq_SecurityGroups `protobuf:"bytes,15,rep,name=security_groups,json=securityGroups,proto3" json:"security_groups,omitempty"`
UserData string `protobuf:"bytes,16,opt,name=user_data,json=userData,proto3" json:"user_data,omitempty"`
Description string `protobuf:"bytes,17,opt,name=description,proto3" json:"description,omitempty"`
Description string `protobuf:"bytes,17,opt,name=description,proto3" json:"description,omitempty"` // @gotags: copier:"Description"
Hostname string `protobuf:"bytes,18,opt,name=hostname,proto3" json:"hostname,omitempty"`
Tags []string `protobuf:"bytes,19,rep,name=tags,proto3" json:"tags,omitempty"`
TrustedImageCertificates []string `protobuf:"bytes,20,rep,name=trusted_image_certificates,json=trustedImageCertificates,proto3" json:"trusted_image_certificates,omitempty"`

View File

@ -270,7 +270,7 @@ message CreateServerReq {
repeated Personality personality = 14;
repeated Security_groups security_groups = 15;
string user_data = 16;
string description = 17;
string description = 17; // @gotags: copier:"Description"
string hostname = 18;
repeated string tags = 19;
repeated string trusted_image_certificates = 20;