forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathVirtualMachineProfile.java
More file actions
206 lines (149 loc) · 5.7 KB
/
VirtualMachineProfile.java
File metadata and controls
206 lines (149 loc) · 5.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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.cloud.vm;
import java.util.List;
import java.util.Map;
import com.cloud.agent.api.to.DiskTO;
import com.cloud.host.Host;
import com.cloud.hypervisor.Hypervisor.HypervisorType;
import com.cloud.network.element.NetworkElement;
import com.cloud.offering.ServiceOffering;
import com.cloud.template.VirtualMachineTemplate;
import com.cloud.template.VirtualMachineTemplate.BootloaderType;
import com.cloud.user.Account;
/**
* VirtualMachineProfile describes one virtual machine. This object
* on what the virtual machine profile should look like before it is
* actually started on the hypervisor.
*
*/
public interface VirtualMachineProfile {
List<String[]> getVmData();
void setVmData(List<String[]> vmData);
void setDisks(List<DiskTO> disks);
void setNics(List<NicProfile> nics);
String getConfigDriveLabel();
void setConfigDriveLabel(String configDriveLabel);
String getConfigDriveIsoRootFolder();
void setConfigDriveIsoRootFolder(String configDriveIsoRootFolder);
String getConfigDriveIsoFile();
void setConfigDriveIsoFile(String isoFile);
NetworkElement.Location getConfigDriveLocation();
void setConfigDriveLocation(NetworkElement.Location location);
void setServiceOffering(ServiceOffering offering);
public static class Param {
public static final Param VmPassword = new Param("VmPassword");
public static final Param VmSshPubKey = new Param("VmSshPubKey");
public static final Param ControlNic = new Param("ControlNic");
public static final Param ReProgramGuestNetworks = new Param("RestartNetwork");
public static final Param RollingRestart = new Param("RollingRestart");
public static final Param PxeSeverType = new Param("PxeSeverType");
public static final Param HaTag = new Param("HaTag");
public static final Param HaOperation = new Param("HaOperation");
public static final Param UefiFlag = new Param("UefiFlag");
public static final Param BootMode = new Param("BootMode");
public static final Param BootType = new Param("BootType");
public static final Param BootIntoSetup = new Param("enterHardwareSetup");
public static final Param PreserveNics = new Param("PreserveNics");
public static final Param ConsiderLastHost = new Param("ConsiderLastHost");
public static final Param ReturnAfterVolumePrepare = new Param("ReturnAfterVolumePrepare");
private String name;
public Param(String name) {
synchronized (Param.class) {
this.name = name;
}
}
public String getName() {
return name;
}
@Override
public int hashCode() {
return this.getName() != null ? this.getName().hashCode() : 0;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Param other = (Param) obj;
return (other.getName().equals(this.getName()));
}
}
Long getHostId();
void setHost(Host host);
String getHostName();
String getInstanceName();
Account getOwner();
/**
* @return the virtual machine that backs up this profile.
*/
VirtualMachine getVirtualMachine();
/**
* @return service offering for this virtual machine.
*/
ServiceOffering getServiceOffering();
/**
* @return parameter specific for this type of virtual machine.
*/
Object getParameter(Param name);
/**
* @return the hypervisor type needed for this virtual machine.
*/
HypervisorType getHypervisorType();
/**
* @return template the virtual machine is based on.
*/
VirtualMachineTemplate getTemplate();
/**
* @return the template id
*/
long getTemplateId();
/**
* @return the service offering id
*/
long getServiceOfferingId();
/**
* @return virtual machine id.
*/
long getId();
/**
* @return virtual machine uuid.
*/
String getUuid();
List<NicProfile> getNics();
List<DiskTO> getDisks();
void addNic(int index, NicProfile nic);
void addDisk(int index, DiskTO disk);
StringBuilder getBootArgsBuilder();
void addBootArgs(String... args);
String getBootArgs();
void addNic(NicProfile nic);
void addDisk(DiskTO disk);
VirtualMachine.Type getType();
void setParameter(Param name, Object value);
void setBootLoaderType(BootloaderType bootLoader);
BootloaderType getBootLoaderType();
Map<Param, Object> getParameters();
void setCpuOvercommitRatio(Float cpuOvercommitRatio);
void setMemoryOvercommitRatio(Float memoryOvercommitRatio);
Float getCpuOvercommitRatio();
Float getMemoryOvercommitRatio();
boolean isRollingRestart();
}