Class VMDeployment
- java.lang.Object
-
- org.jclouds.azurecompute.arm.domain.VMDeployment
-
public abstract class VMDeployment extends Object
-
-
Constructor Summary
Constructors Constructor Description VMDeployment()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static VMDeployment
create(String deploymentId, VirtualMachine virtualMachine, List<PublicIPAddress> ipAddressList, List<NetworkInterfaceCard> networkInterfaceCards)
abstract String
deploymentId()
abstract List<PublicIPAddress>
ipAddressList()
abstract List<NetworkInterfaceCard>
networkInterfaceCards()
abstract VirtualMachine
virtualMachine()
-
-
-
Method Detail
-
deploymentId
public abstract String deploymentId()
-
virtualMachine
@Nullable public abstract VirtualMachine virtualMachine()
-
ipAddressList
@Nullable public abstract List<PublicIPAddress> ipAddressList()
-
networkInterfaceCards
@Nullable public abstract List<NetworkInterfaceCard> networkInterfaceCards()
-
create
public static VMDeployment create(String deploymentId, VirtualMachine virtualMachine, List<PublicIPAddress> ipAddressList, List<NetworkInterfaceCard> networkInterfaceCards)
-
-