All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.softlayer.api.service.virtual.Guest Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package com.softlayer.api.service.virtual;

import com.softlayer.api.ApiClient;
import com.softlayer.api.ResponseHandler;
import com.softlayer.api.annotation.ApiMethod;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Account;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.Hardware;
import com.softlayer.api.service.Location;
import com.softlayer.api.service.Ticket;
import com.softlayer.api.service.container.Graph;
import com.softlayer.api.service.container.bandwidth.GraphOutputs;
import com.softlayer.api.service.container.disk.image.capture.Template;
import com.softlayer.api.service.container.hardware.server.Configuration;
import com.softlayer.api.service.container.monitoring.alarm.History;
import com.softlayer.api.service.container.product.Order;
import com.softlayer.api.service.dns.Domain;
import com.softlayer.api.service.location.group.Regional;
import com.softlayer.api.service.metric.tracking.Object;
import com.softlayer.api.service.metric.tracking.object.Data;
import com.softlayer.api.service.metric.tracking.object.bandwidth.Summary;
import com.softlayer.api.service.monitoring.Agent;
import com.softlayer.api.service.monitoring.Robot;
import com.softlayer.api.service.network.Storage;
import com.softlayer.api.service.network.Subnet;
import com.softlayer.api.service.network.Vlan;
import com.softlayer.api.service.network.application.delivery.Controller;
import com.softlayer.api.service.network.bandwidth.Usage;
import com.softlayer.api.service.network.bandwidth.version1.Allotment;
import com.softlayer.api.service.network.bandwidth.version1.allotment.Detail;
import com.softlayer.api.service.network.component.Firewall;
import com.softlayer.api.service.network.logging.Syslog;
import com.softlayer.api.service.network.monitor.version1.Incident;
import com.softlayer.api.service.network.monitor.version1.query.Host;
import com.softlayer.api.service.network.monitor.version1.query.host.Stratum;
import com.softlayer.api.service.network.regional.internet.Registry;
import com.softlayer.api.service.network.subnet.IpAddress;
import com.softlayer.api.service.notification.occurrence.Event;
import com.softlayer.api.service.product.Item;
import com.softlayer.api.service.product.item.Price;
import com.softlayer.api.service.product.upgrade.Request;
import com.softlayer.api.service.provisioning.version1.Transaction;
import com.softlayer.api.service.scale.Asset;
import com.softlayer.api.service.security.ssh.Key;
import com.softlayer.api.service.software.Component;
import com.softlayer.api.service.software.Description;
import com.softlayer.api.service.software.component.OperatingSystem;
import com.softlayer.api.service.tag.Reference;
import com.softlayer.api.service.user.Customer;
import com.softlayer.api.service.virtual.DedicatedHost;
import com.softlayer.api.service.virtual.disk.Image;
import com.softlayer.api.service.virtual.guest.Attribute;
import com.softlayer.api.service.virtual.guest.Status;
import com.softlayer.api.service.virtual.guest.SupplementalCreateObjectOptions;
import com.softlayer.api.service.virtual.guest.Type;
import com.softlayer.api.service.virtual.guest.block.Device;
import com.softlayer.api.service.virtual.guest.block.device.template.Group;
import com.softlayer.api.service.virtual.guest.boot.Parameter;
import com.softlayer.api.service.virtual.guest.power.State;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.GregorianCalendar;
import java.util.List;
import java.util.concurrent.Future;

/**
 * The virtual guest data type presents the structure in which all virtual guests will be presented. Internally, the structure supports various virtualization platforms with no change to external interaction. 
*
* A guest, also known as a virtual server, represents an allocation of resources on a virtual host. * * @see SoftLayer_Virtual_Guest */ @ApiType("SoftLayer_Virtual_Guest") public class Guest extends Entity { /** * The account that a virtual guest belongs to. */ @ApiProperty protected Account account; public Account getAccount() { return account; } public void setAccount(Account account) { this.account = account; } @ApiProperty protected Boolean accountOwnedPoolFlag; public Boolean getAccountOwnedPoolFlag() { return accountOwnedPoolFlag; } public void setAccountOwnedPoolFlag(Boolean accountOwnedPoolFlag) { this.accountOwnedPoolFlag = accountOwnedPoolFlag; } /** * A virtual guest's currently active network monitoring incidents. */ @ApiProperty protected List activeNetworkMonitorIncident; public List getActiveNetworkMonitorIncident() { if (activeNetworkMonitorIncident == null) { activeNetworkMonitorIncident = new ArrayList(); } return activeNetworkMonitorIncident; } @ApiProperty protected List activeTickets; public List getActiveTickets() { if (activeTickets == null) { activeTickets = new ArrayList(); } return activeTickets; } /** * A transaction that is still be performed on a cloud server. */ @ApiProperty protected Transaction activeTransaction; public Transaction getActiveTransaction() { return activeTransaction; } public void setActiveTransaction(Transaction activeTransaction) { this.activeTransaction = activeTransaction; } /** * Any active transaction(s) that are currently running for the server (example: os reload). */ @ApiProperty protected List activeTransactions; public List getActiveTransactions() { if (activeTransactions == null) { activeTransactions = new ArrayList(); } return activeTransactions; } /** * The SoftLayer_Network_Storage_Allowed_Host information to connect this Virtual Guest to Network Storage volumes that require access control lists. */ @ApiProperty protected com.softlayer.api.service.network.storage.allowed.Host allowedHost; public com.softlayer.api.service.network.storage.allowed.Host getAllowedHost() { return allowedHost; } public void setAllowedHost(com.softlayer.api.service.network.storage.allowed.Host allowedHost) { this.allowedHost = allowedHost; } /** * The SoftLayer_Network_Storage objects that this SoftLayer_Virtual_Guest has access to. */ @ApiProperty protected List allowedNetworkStorage; public List getAllowedNetworkStorage() { if (allowedNetworkStorage == null) { allowedNetworkStorage = new ArrayList(); } return allowedNetworkStorage; } /** * The SoftLayer_Network_Storage objects whose Replica that this SoftLayer_Virtual_Guest has access to. */ @ApiProperty protected List allowedNetworkStorageReplicas; public List getAllowedNetworkStorageReplicas() { if (allowedNetworkStorageReplicas == null) { allowedNetworkStorageReplicas = new ArrayList(); } return allowedNetworkStorageReplicas; } /** * A antivirus / spyware software component object. */ @ApiProperty protected Component antivirusSpywareSoftwareComponent; public Component getAntivirusSpywareSoftwareComponent() { return antivirusSpywareSoftwareComponent; } public void setAntivirusSpywareSoftwareComponent(Component antivirusSpywareSoftwareComponent) { this.antivirusSpywareSoftwareComponent = antivirusSpywareSoftwareComponent; } @ApiProperty protected Controller applicationDeliveryController; public Controller getApplicationDeliveryController() { return applicationDeliveryController; } public void setApplicationDeliveryController(Controller applicationDeliveryController) { this.applicationDeliveryController = applicationDeliveryController; } @ApiProperty protected List attributes; public List getAttributes() { if (attributes == null) { attributes = new ArrayList(); } return attributes; } /** * An object that stores the maximum level for the monitoring query types and response types. */ @ApiProperty protected List availableMonitoring; public List getAvailableMonitoring() { if (availableMonitoring == null) { availableMonitoring = new ArrayList(); } return availableMonitoring; } /** * The average daily private bandwidth usage for the current billing cycle. */ @ApiProperty protected BigDecimal averageDailyPrivateBandwidthUsage; public BigDecimal getAverageDailyPrivateBandwidthUsage() { return averageDailyPrivateBandwidthUsage; } public void setAverageDailyPrivateBandwidthUsage(BigDecimal averageDailyPrivateBandwidthUsage) { this.averageDailyPrivateBandwidthUsage = averageDailyPrivateBandwidthUsage; } /** * The average daily public bandwidth usage for the current billing cycle. */ @ApiProperty protected BigDecimal averageDailyPublicBandwidthUsage; public BigDecimal getAverageDailyPublicBandwidthUsage() { return averageDailyPublicBandwidthUsage; } public void setAverageDailyPublicBandwidthUsage(BigDecimal averageDailyPublicBandwidthUsage) { this.averageDailyPublicBandwidthUsage = averageDailyPublicBandwidthUsage; } /** * A guests's backend network components. */ @ApiProperty protected List backendNetworkComponents; public List getBackendNetworkComponents() { if (backendNetworkComponents == null) { backendNetworkComponents = new ArrayList(); } return backendNetworkComponents; } /** * A guest's backend or private router. */ @ApiProperty protected List backendRouters; public List getBackendRouters() { if (backendRouters == null) { backendRouters = new ArrayList(); } return backendRouters; } /** * A computing instance's allotted bandwidth (measured in GB). */ @ApiProperty protected BigDecimal bandwidthAllocation; public BigDecimal getBandwidthAllocation() { return bandwidthAllocation; } public void setBandwidthAllocation(BigDecimal bandwidthAllocation) { this.bandwidthAllocation = bandwidthAllocation; } /** * A computing instance's allotted detail record. Allotment details link bandwidth allocation with allotments. */ @ApiProperty protected Detail bandwidthAllotmentDetail; public Detail getBandwidthAllotmentDetail() { return bandwidthAllotmentDetail; } public void setBandwidthAllotmentDetail(Detail bandwidthAllotmentDetail) { this.bandwidthAllotmentDetail = bandwidthAllotmentDetail; } /** * The raw bandwidth usage data for the current billing cycle. One object will be returned for each network this server is attached to. */ @ApiProperty protected List billingCycleBandwidthUsage; public List getBillingCycleBandwidthUsage() { if (billingCycleBandwidthUsage == null) { billingCycleBandwidthUsage = new ArrayList(); } return billingCycleBandwidthUsage; } /** * The raw private bandwidth usage data for the current billing cycle. */ @ApiProperty protected Usage billingCyclePrivateBandwidthUsage; public Usage getBillingCyclePrivateBandwidthUsage() { return billingCyclePrivateBandwidthUsage; } public void setBillingCyclePrivateBandwidthUsage(Usage billingCyclePrivateBandwidthUsage) { this.billingCyclePrivateBandwidthUsage = billingCyclePrivateBandwidthUsage; } /** * The raw public bandwidth usage data for the current billing cycle. */ @ApiProperty protected Usage billingCyclePublicBandwidthUsage; public Usage getBillingCyclePublicBandwidthUsage() { return billingCyclePublicBandwidthUsage; } public void setBillingCyclePublicBandwidthUsage(Usage billingCyclePublicBandwidthUsage) { this.billingCyclePublicBandwidthUsage = billingCyclePublicBandwidthUsage; } /** * The billing item for a CloudLayer Compute Instance. */ @ApiProperty protected com.softlayer.api.service.billing.item.virtual.Guest billingItem; public com.softlayer.api.service.billing.item.virtual.Guest getBillingItem() { return billingItem; } public void setBillingItem(com.softlayer.api.service.billing.item.virtual.Guest billingItem) { this.billingItem = billingItem; } /** * Determines whether the instance is ineligible for cancellation because it is disconnected. */ @ApiProperty protected Boolean blockCancelBecauseDisconnectedFlag; public Boolean getBlockCancelBecauseDisconnectedFlag() { return blockCancelBecauseDisconnectedFlag; } public void setBlockCancelBecauseDisconnectedFlag(Boolean blockCancelBecauseDisconnectedFlag) { this.blockCancelBecauseDisconnectedFlag = blockCancelBecauseDisconnectedFlag; } /** * The global identifier for the image template that was used to provision or reload a guest. */ @ApiProperty protected Group blockDeviceTemplateGroup; public Group getBlockDeviceTemplateGroup() { return blockDeviceTemplateGroup; } public void setBlockDeviceTemplateGroup(Group blockDeviceTemplateGroup) { this.blockDeviceTemplateGroup = blockDeviceTemplateGroup; } /** * A computing instance's block devices. Block devices link [[SoftLayer_Virtual_Disk_Image|disk images]] to computing instances. */ @ApiProperty protected List blockDevices; public List getBlockDevices() { if (blockDevices == null) { blockDevices = new ArrayList(); } return blockDevices; } /** * A flag indicating a computing instance's console IP address is assigned. */ @ApiProperty protected Boolean consoleIpAddressFlag; public Boolean getConsoleIpAddressFlag() { return consoleIpAddressFlag; } public void setConsoleIpAddressFlag(Boolean consoleIpAddressFlag) { this.consoleIpAddressFlag = consoleIpAddressFlag; } /** * A record containing information about a computing instance's console IP and port number. */ @ApiProperty protected com.softlayer.api.service.virtual.guest.network.component.IpAddress consoleIpAddressRecord; public com.softlayer.api.service.virtual.guest.network.component.IpAddress getConsoleIpAddressRecord() { return consoleIpAddressRecord; } public void setConsoleIpAddressRecord(com.softlayer.api.service.virtual.guest.network.component.IpAddress consoleIpAddressRecord) { this.consoleIpAddressRecord = consoleIpAddressRecord; } /** * A continuous data protection software component object. */ @ApiProperty protected Component continuousDataProtectionSoftwareComponent; public Component getContinuousDataProtectionSoftwareComponent() { return continuousDataProtectionSoftwareComponent; } public void setContinuousDataProtectionSoftwareComponent(Component continuousDataProtectionSoftwareComponent) { this.continuousDataProtectionSoftwareComponent = continuousDataProtectionSoftwareComponent; } /** * A guest's control panel. */ @ApiProperty protected Component controlPanel; public Component getControlPanel() { return controlPanel; } public void setControlPanel(Component controlPanel) { this.controlPanel = controlPanel; } /** * An object that provides commonly used bandwidth summary components for the current billing cycle. */ @ApiProperty protected Summary currentBandwidthSummary; public Summary getCurrentBandwidthSummary() { return currentBandwidthSummary; } public void setCurrentBandwidthSummary(Summary currentBandwidthSummary) { this.currentBandwidthSummary = currentBandwidthSummary; } /** * The datacenter that a virtual guest resides in. */ @ApiProperty protected Location datacenter; public Location getDatacenter() { return datacenter; } public void setDatacenter(Location datacenter) { this.datacenter = datacenter; } /** * The dedicated host associated with this guest. */ @ApiProperty protected DedicatedHost dedicatedHost; public DedicatedHost getDedicatedHost() { return dedicatedHost; } public void setDedicatedHost(DedicatedHost dedicatedHost) { this.dedicatedHost = dedicatedHost; } /** * A guest's associated EVault network storage service account. */ @ApiProperty protected List evaultNetworkStorage; public List getEvaultNetworkStorage() { if (evaultNetworkStorage == null) { evaultNetworkStorage = new ArrayList(); } return evaultNetworkStorage; } /** * A computing instance's hardware firewall services. */ @ApiProperty protected Firewall firewallServiceComponent; public Firewall getFirewallServiceComponent() { return firewallServiceComponent; } public void setFirewallServiceComponent(Firewall firewallServiceComponent) { this.firewallServiceComponent = firewallServiceComponent; } /** * A guest's frontend network components. */ @ApiProperty protected List frontendNetworkComponents; public List getFrontendNetworkComponents() { if (frontendNetworkComponents == null) { frontendNetworkComponents = new ArrayList(); } return frontendNetworkComponents; } /** * A guest's frontend or public router. */ @ApiProperty protected Hardware frontendRouters; public Hardware getFrontendRouters() { return frontendRouters; } public void setFrontendRouters(Hardware frontendRouters) { this.frontendRouters = frontendRouters; } /** * A guest's universally unique identifier. */ @ApiProperty protected String globalIdentifier; public String getGlobalIdentifier() { return globalIdentifier; } public void setGlobalIdentifier(String globalIdentifier) { this.globalIdentifier = globalIdentifier; } @ApiProperty protected Parameter guestBootParameter; public Parameter getGuestBootParameter() { return guestBootParameter; } public void setGuestBootParameter(Parameter guestBootParameter) { this.guestBootParameter = guestBootParameter; } /** * The virtual host on which a virtual guest resides (available only on private clouds). */ @ApiProperty protected com.softlayer.api.service.virtual.Host host; public com.softlayer.api.service.virtual.Host getHost() { return host; } public void setHost(com.softlayer.api.service.virtual.Host host) { this.host = host; } /** * A host IPS software component object. */ @ApiProperty protected Component hostIpsSoftwareComponent; public Component getHostIpsSoftwareComponent() { return hostIpsSoftwareComponent; } public void setHostIpsSoftwareComponent(Component hostIpsSoftwareComponent) { this.hostIpsSoftwareComponent = hostIpsSoftwareComponent; } /** * Whether or not a computing instance is billed hourly instead of monthly. */ @ApiProperty protected Boolean hourlyBillingFlag; public Boolean getHourlyBillingFlag() { return hourlyBillingFlag; } public void setHourlyBillingFlag(Boolean hourlyBillingFlag) { this.hourlyBillingFlag = hourlyBillingFlag; } /** * The total private inbound bandwidth for this computing instance for the current billing cycle. */ @ApiProperty protected BigDecimal inboundPrivateBandwidthUsage; public BigDecimal getInboundPrivateBandwidthUsage() { return inboundPrivateBandwidthUsage; } public void setInboundPrivateBandwidthUsage(BigDecimal inboundPrivateBandwidthUsage) { this.inboundPrivateBandwidthUsage = inboundPrivateBandwidthUsage; } /** * The total public inbound bandwidth for this computing instance for the current billing cycle. */ @ApiProperty protected BigDecimal inboundPublicBandwidthUsage; public BigDecimal getInboundPublicBandwidthUsage() { return inboundPublicBandwidthUsage; } public void setInboundPublicBandwidthUsage(BigDecimal inboundPublicBandwidthUsage) { this.inboundPublicBandwidthUsage = inboundPublicBandwidthUsage; } @ApiProperty protected List internalTagReferences; public List getInternalTagReferences() { if (internalTagReferences == null) { internalTagReferences = new ArrayList(); } return internalTagReferences; } /** * The last known power state of a virtual guest in the event the guest is turned off outside of IMS or has gone offline. */ @ApiProperty protected State lastKnownPowerState; public State getLastKnownPowerState() { return lastKnownPowerState; } public void setLastKnownPowerState(State lastKnownPowerState) { this.lastKnownPowerState = lastKnownPowerState; } /** * The last transaction that a cloud server's operating system was loaded. */ @ApiProperty protected Transaction lastOperatingSystemReload; public Transaction getLastOperatingSystemReload() { return lastOperatingSystemReload; } public void setLastOperatingSystemReload(Transaction lastOperatingSystemReload) { this.lastOperatingSystemReload = lastOperatingSystemReload; } /** * The last transaction a cloud server had performed. */ @ApiProperty protected Transaction lastTransaction; public Transaction getLastTransaction() { return lastTransaction; } public void setLastTransaction(Transaction lastTransaction) { this.lastTransaction = lastTransaction; } /** * A virtual guest's latest network monitoring incident. */ @ApiProperty protected Incident latestNetworkMonitorIncident; public Incident getLatestNetworkMonitorIncident() { return latestNetworkMonitorIncident; } public void setLatestNetworkMonitorIncident(Incident latestNetworkMonitorIncident) { this.latestNetworkMonitorIncident = latestNetworkMonitorIncident; } /** * A flag indicating that the virtual guest has at least one disk which is local to the host it runs on. This does not include a SWAP device. */ @ApiProperty protected Boolean localDiskFlag; public Boolean getLocalDiskFlag() { return localDiskFlag; } public void setLocalDiskFlag(Boolean localDiskFlag) { this.localDiskFlag = localDiskFlag; } /** * Where guest is located within SoftLayer's location hierarchy. */ @ApiProperty protected Location location; public Location getLocation() { return location; } public void setLocation(Location location) { this.location = location; } /** * A flag indicating that the virtual guest is a managed resource. */ @ApiProperty protected Boolean managedResourceFlag; public Boolean getManagedResourceFlag() { return managedResourceFlag; } public void setManagedResourceFlag(Boolean managedResourceFlag) { this.managedResourceFlag = managedResourceFlag; } /** * A guest's metric tracking object. */ @ApiProperty protected Object metricTrackingObject; public Object getMetricTrackingObject() { return metricTrackingObject; } public void setMetricTrackingObject(Object metricTrackingObject) { this.metricTrackingObject = metricTrackingObject; } /** * The metric tracking object id for this guest. */ @ApiProperty protected Long metricTrackingObjectId; public Long getMetricTrackingObjectId() { return metricTrackingObjectId; } public void setMetricTrackingObjectId(Long metricTrackingObjectId) { this.metricTrackingObjectId = metricTrackingObjectId; } @ApiProperty protected List monitoringAgents; public List getMonitoringAgents() { if (monitoringAgents == null) { monitoringAgents = new ArrayList(); } return monitoringAgents; } @ApiProperty protected Robot monitoringRobot; public Robot getMonitoringRobot() { return monitoringRobot; } public void setMonitoringRobot(Robot monitoringRobot) { this.monitoringRobot = monitoringRobot; } /** * A virtual guest's network monitoring services. */ @ApiProperty protected Stratum monitoringServiceComponent; public Stratum getMonitoringServiceComponent() { return monitoringServiceComponent; } public void setMonitoringServiceComponent(Stratum monitoringServiceComponent) { this.monitoringServiceComponent = monitoringServiceComponent; } @ApiProperty protected Boolean monitoringServiceEligibilityFlag; public Boolean getMonitoringServiceEligibilityFlag() { return monitoringServiceEligibilityFlag; } public void setMonitoringServiceEligibilityFlag(Boolean monitoringServiceEligibilityFlag) { this.monitoringServiceEligibilityFlag = monitoringServiceEligibilityFlag; } @ApiProperty protected Boolean monitoringServiceFlag; public Boolean getMonitoringServiceFlag() { return monitoringServiceFlag; } public void setMonitoringServiceFlag(Boolean monitoringServiceFlag) { this.monitoringServiceFlag = monitoringServiceFlag; } /** * The monitoring notification objects for this guest. Each object links this guest instance to a user account that will be notified if monitoring on this guest object fails */ @ApiProperty protected List monitoringUserNotification; public List getMonitoringUserNotification() { if (monitoringUserNotification == null) { monitoringUserNotification = new ArrayList(); } return monitoringUserNotification; } /** * A guests's network components. */ @ApiProperty protected List networkComponents; public List getNetworkComponents() { if (networkComponents == null) { networkComponents = new ArrayList(); } return networkComponents; } /** * All of a virtual guest's network monitoring incidents. */ @ApiProperty protected List networkMonitorIncidents; public List getNetworkMonitorIncidents() { if (networkMonitorIncidents == null) { networkMonitorIncidents = new ArrayList(); } return networkMonitorIncidents; } /** * A guests's network monitors. */ @ApiProperty protected List networkMonitors; public List getNetworkMonitors() { if (networkMonitors == null) { networkMonitors = new ArrayList(); } return networkMonitors; } /** * A guest's associated network storage accounts. */ @ApiProperty protected List networkStorage; public List getNetworkStorage() { if (networkStorage == null) { networkStorage = new ArrayList(); } return networkStorage; } /** * The network Vlans that a guest's network components are associated with. */ @ApiProperty protected List networkVlans; public List getNetworkVlans() { if (networkVlans == null) { networkVlans = new ArrayList(); } return networkVlans; } /** * An open ticket requesting cancellation of this server, if one exists. */ @ApiProperty protected Ticket openCancellationTicket; public Ticket getOpenCancellationTicket() { return openCancellationTicket; } public void setOpenCancellationTicket(Ticket openCancellationTicket) { this.openCancellationTicket = openCancellationTicket; } /** * A guest's operating system. */ @ApiProperty protected OperatingSystem operatingSystem; public OperatingSystem getOperatingSystem() { return operatingSystem; } public void setOperatingSystem(OperatingSystem operatingSystem) { this.operatingSystem = operatingSystem; } /** * A guest's operating system software description. */ @ApiProperty protected String operatingSystemReferenceCode; public String getOperatingSystemReferenceCode() { return operatingSystemReferenceCode; } public void setOperatingSystemReferenceCode(String operatingSystemReferenceCode) { this.operatingSystemReferenceCode = operatingSystemReferenceCode; } /** * The original package id provided with the order for a Cloud Computing Instance. */ @ApiProperty protected String orderedPackageId; public String getOrderedPackageId() { return orderedPackageId; } public void setOrderedPackageId(String orderedPackageId) { this.orderedPackageId = orderedPackageId; } /** * The total private outbound bandwidth for this computing instance for the current billing cycle. */ @ApiProperty protected BigDecimal outboundPrivateBandwidthUsage; public BigDecimal getOutboundPrivateBandwidthUsage() { return outboundPrivateBandwidthUsage; } public void setOutboundPrivateBandwidthUsage(BigDecimal outboundPrivateBandwidthUsage) { this.outboundPrivateBandwidthUsage = outboundPrivateBandwidthUsage; } /** * The total public outbound bandwidth for this computing instance for the current billing cycle. */ @ApiProperty protected BigDecimal outboundPublicBandwidthUsage; public BigDecimal getOutboundPublicBandwidthUsage() { return outboundPublicBandwidthUsage; } public void setOutboundPublicBandwidthUsage(BigDecimal outboundPublicBandwidthUsage) { this.outboundPublicBandwidthUsage = outboundPublicBandwidthUsage; } /** * Whether the bandwidth usage for this computing instance for the current billing cycle exceeds the allocation. */ @ApiProperty protected Long overBandwidthAllocationFlag; public Long getOverBandwidthAllocationFlag() { return overBandwidthAllocationFlag; } public void setOverBandwidthAllocationFlag(Long overBandwidthAllocationFlag) { this.overBandwidthAllocationFlag = overBandwidthAllocationFlag; } /** * When true this virtual guest must be migrated using SoftLayer_Virtual_Guest::migrate. */ @ApiProperty protected Boolean pendingMigrationFlag; public Boolean getPendingMigrationFlag() { return pendingMigrationFlag; } public void setPendingMigrationFlag(Boolean pendingMigrationFlag) { this.pendingMigrationFlag = pendingMigrationFlag; } /** * The current power state of a virtual guest. */ @ApiProperty protected State powerState; public State getPowerState() { return powerState; } public void setPowerState(State powerState) { this.powerState = powerState; } /** * A guest's primary private IP address. */ @ApiProperty protected String primaryBackendIpAddress; public String getPrimaryBackendIpAddress() { return primaryBackendIpAddress; } public void setPrimaryBackendIpAddress(String primaryBackendIpAddress) { this.primaryBackendIpAddress = primaryBackendIpAddress; } /** * A guest's primary backend network component. */ @ApiProperty protected com.softlayer.api.service.virtual.guest.network.Component primaryBackendNetworkComponent; public com.softlayer.api.service.virtual.guest.network.Component getPrimaryBackendNetworkComponent() { return primaryBackendNetworkComponent; } public void setPrimaryBackendNetworkComponent(com.softlayer.api.service.virtual.guest.network.Component primaryBackendNetworkComponent) { this.primaryBackendNetworkComponent = primaryBackendNetworkComponent; } /** * The guest's primary public IP address. */ @ApiProperty protected String primaryIpAddress; public String getPrimaryIpAddress() { return primaryIpAddress; } public void setPrimaryIpAddress(String primaryIpAddress) { this.primaryIpAddress = primaryIpAddress; } /** * A guest's primary public network component. */ @ApiProperty protected com.softlayer.api.service.virtual.guest.network.Component primaryNetworkComponent; public com.softlayer.api.service.virtual.guest.network.Component getPrimaryNetworkComponent() { return primaryNetworkComponent; } public void setPrimaryNetworkComponent(com.softlayer.api.service.virtual.guest.network.Component primaryNetworkComponent) { this.primaryNetworkComponent = primaryNetworkComponent; } /** * Whether the computing instance only has access to the private network. */ @ApiProperty protected Boolean privateNetworkOnlyFlag; public Boolean getPrivateNetworkOnlyFlag() { return privateNetworkOnlyFlag; } public void setPrivateNetworkOnlyFlag(Boolean privateNetworkOnlyFlag) { this.privateNetworkOnlyFlag = privateNetworkOnlyFlag; } /** * Whether the bandwidth usage for this computing instance for the current billing cycle is projected to exceed the allocation. */ @ApiProperty protected Long projectedOverBandwidthAllocationFlag; public Long getProjectedOverBandwidthAllocationFlag() { return projectedOverBandwidthAllocationFlag; } public void setProjectedOverBandwidthAllocationFlag(Long projectedOverBandwidthAllocationFlag) { this.projectedOverBandwidthAllocationFlag = projectedOverBandwidthAllocationFlag; } /** * The projected public outbound bandwidth for this computing instance for the current billing cycle. */ @ApiProperty protected BigDecimal projectedPublicBandwidthUsage; public BigDecimal getProjectedPublicBandwidthUsage() { return projectedPublicBandwidthUsage; } public void setProjectedPublicBandwidthUsage(BigDecimal projectedPublicBandwidthUsage) { this.projectedPublicBandwidthUsage = projectedPublicBandwidthUsage; } /** * Recent events that impact this computing instance. */ @ApiProperty protected List recentEvents; public List getRecentEvents() { if (recentEvents == null) { recentEvents = new ArrayList(); } return recentEvents; } /** * The regional group this guest is in. */ @ApiProperty protected Regional regionalGroup; public Regional getRegionalGroup() { return regionalGroup; } public void setRegionalGroup(Regional regionalGroup) { this.regionalGroup = regionalGroup; } @ApiProperty protected Registry regionalInternetRegistry; public Registry getRegionalInternetRegistry() { return regionalInternetRegistry; } public void setRegionalInternetRegistry(Registry regionalInternetRegistry) { this.regionalInternetRegistry = regionalInternetRegistry; } /** * Collection of scale assets this guest corresponds to. */ @ApiProperty protected List scaleAssets; public List getScaleAssets() { if (scaleAssets == null) { scaleAssets = new ArrayList(); } return scaleAssets; } /** * The scale member for this guest, if applicable. */ @ApiProperty protected com.softlayer.api.service.scale.member.virtual.Guest scaleMember; public com.softlayer.api.service.scale.member.virtual.Guest getScaleMember() { return scaleMember; } public void setScaleMember(com.softlayer.api.service.scale.member.virtual.Guest scaleMember) { this.scaleMember = scaleMember; } /** * Whether or not this guest is a member of a scale group and was automatically created as part of a scale group action. */ @ApiProperty protected Boolean scaledFlag; public Boolean getScaledFlag() { return scaledFlag; } public void setScaledFlag(Boolean scaledFlag) { this.scaledFlag = scaledFlag; } /** * A guest's vulnerability scan requests. */ @ApiProperty protected List securityScanRequests; public List getSecurityScanRequests() { if (securityScanRequests == null) { securityScanRequests = new ArrayList(); } return securityScanRequests; } /** * The server room that a guest is located at. There may be more than one server room for every data center. */ @ApiProperty protected Location serverRoom; public Location getServerRoom() { return serverRoom; } public void setServerRoom(Location serverRoom) { this.serverRoom = serverRoom; } /** * A guest's installed software. */ @ApiProperty protected List softwareComponents; public List getSoftwareComponents() { if (softwareComponents == null) { softwareComponents = new ArrayList(); } return softwareComponents; } /** * SSH keys to be installed on the server during provisioning or an OS reload. */ @ApiProperty protected List sshKeys; public List getSshKeys() { if (sshKeys == null) { sshKeys = new ArrayList(); } return sshKeys; } /** * A computing instance's status. */ @ApiProperty protected Status status; public Status getStatus() { return status; } public void setStatus(Status status) { this.status = status; } @ApiProperty protected List tagReferences; public List getTagReferences() { if (tagReferences == null) { tagReferences = new ArrayList(); } return tagReferences; } /** * The type of this virtual guest. */ @ApiProperty protected Type type; public Type getType() { return type; } public void setType(Type type) { this.type = type; } /** * A computing instance's associated upgrade request object if any. */ @ApiProperty protected Request upgradeRequest; public Request getUpgradeRequest() { return upgradeRequest; } public void setUpgradeRequest(Request upgradeRequest) { this.upgradeRequest = upgradeRequest; } /** * A base64 encoded string containing custom user data for a Cloud Computing Instance order. */ @ApiProperty protected List userData; public List getUserData() { if (userData == null) { userData = new ArrayList(); } return userData; } /** * A list of users that have access to this computing instance. */ @ApiProperty protected List users; public List getUsers() { if (users == null) { users = new ArrayList(); } return users; } /** * The name of the bandwidth allotment that a hardware belongs too. */ @ApiProperty protected Allotment virtualRack; public Allotment getVirtualRack() { return virtualRack; } public void setVirtualRack(Allotment virtualRack) { this.virtualRack = virtualRack; } /** * The id of the bandwidth allotment that a computing instance belongs too. */ @ApiProperty protected Long virtualRackId; public Long getVirtualRackId() { return virtualRackId; } public void setVirtualRackId(Long virtualRackId) { this.virtualRackId = virtualRackId; } /** * The name of the bandwidth allotment that a computing instance belongs too. */ @ApiProperty protected String virtualRackName; public String getVirtualRackName() { return virtualRackName; } public void setVirtualRackName(String virtualRackName) { this.virtualRackName = virtualRackName; } /** * A computing instance's associated [[SoftLayer_Account|account]] id */ @ApiProperty(canBeNullOrNotSet = true) protected Long accountId; public Long getAccountId() { return accountId; } public void setAccountId(Long accountId) { accountIdSpecified = true; this.accountId = accountId; } protected boolean accountIdSpecified; public boolean isAccountIdSpecified() { return accountIdSpecified; } public void unsetAccountId() { accountId = null; accountIdSpecified = false; } /** * The date a virtual computing instance was created. */ @ApiProperty(canBeNullOrNotSet = true) protected GregorianCalendar createDate; public GregorianCalendar getCreateDate() { return createDate; } public void setCreateDate(GregorianCalendar createDate) { createDateSpecified = true; this.createDate = createDate; } protected boolean createDateSpecified; public boolean isCreateDateSpecified() { return createDateSpecified; } public void unsetCreateDate() { createDate = null; createDateSpecified = false; } /** * When true this flag specifies that a compute instance is to run on hosts that only have guests from the same account. */ @ApiProperty(canBeNullOrNotSet = true) protected Boolean dedicatedAccountHostOnlyFlag; public Boolean getDedicatedAccountHostOnlyFlag() { return dedicatedAccountHostOnlyFlag; } public void setDedicatedAccountHostOnlyFlag(Boolean dedicatedAccountHostOnlyFlag) { dedicatedAccountHostOnlyFlagSpecified = true; this.dedicatedAccountHostOnlyFlag = dedicatedAccountHostOnlyFlag; } protected boolean dedicatedAccountHostOnlyFlagSpecified; public boolean isDedicatedAccountHostOnlyFlagSpecified() { return dedicatedAccountHostOnlyFlagSpecified; } public void unsetDedicatedAccountHostOnlyFlag() { dedicatedAccountHostOnlyFlag = null; dedicatedAccountHostOnlyFlagSpecified = false; } /** * A computing instance's domain name */ @ApiProperty(canBeNullOrNotSet = true) protected String domain; public String getDomain() { return domain; } public void setDomain(String domain) { domainSpecified = true; this.domain = domain; } protected boolean domainSpecified; public boolean isDomainSpecified() { return domainSpecified; } public void unsetDomain() { domain = null; domainSpecified = false; } /** * A name reflecting the hostname and domain of the computing instance. */ @ApiProperty(canBeNullOrNotSet = true) protected String fullyQualifiedDomainName; public String getFullyQualifiedDomainName() { return fullyQualifiedDomainName; } public void setFullyQualifiedDomainName(String fullyQualifiedDomainName) { fullyQualifiedDomainNameSpecified = true; this.fullyQualifiedDomainName = fullyQualifiedDomainName; } protected boolean fullyQualifiedDomainNameSpecified; public boolean isFullyQualifiedDomainNameSpecified() { return fullyQualifiedDomainNameSpecified; } public void unsetFullyQualifiedDomainName() { fullyQualifiedDomainName = null; fullyQualifiedDomainNameSpecified = false; } /** * A virtual computing instance's hostname */ @ApiProperty(canBeNullOrNotSet = true) protected String hostname; public String getHostname() { return hostname; } public void setHostname(String hostname) { hostnameSpecified = true; this.hostname = hostname; } protected boolean hostnameSpecified; public boolean isHostnameSpecified() { return hostnameSpecified; } public void unsetHostname() { hostname = null; hostnameSpecified = false; } /** * Unique ID for a computing instance. */ @ApiProperty(canBeNullOrNotSet = true) protected Long id; public Long getId() { return id; } public void setId(Long id) { idSpecified = true; this.id = id; } protected boolean idSpecified; public boolean isIdSpecified() { return idSpecified; } public void unsetId() { id = null; idSpecified = false; } @ApiProperty(canBeNullOrNotSet = true) protected Long lastPowerStateId; public Long getLastPowerStateId() { return lastPowerStateId; } public void setLastPowerStateId(Long lastPowerStateId) { lastPowerStateIdSpecified = true; this.lastPowerStateId = lastPowerStateId; } protected boolean lastPowerStateIdSpecified; public boolean isLastPowerStateIdSpecified() { return lastPowerStateIdSpecified; } public void unsetLastPowerStateId() { lastPowerStateId = null; lastPowerStateIdSpecified = false; } /** * The last timestamp of when the guest was verified as a resident virtual machine on the host's hypervisor platform. */ @ApiProperty(canBeNullOrNotSet = true) protected GregorianCalendar lastVerifiedDate; public GregorianCalendar getLastVerifiedDate() { return lastVerifiedDate; } public void setLastVerifiedDate(GregorianCalendar lastVerifiedDate) { lastVerifiedDateSpecified = true; this.lastVerifiedDate = lastVerifiedDate; } protected boolean lastVerifiedDateSpecified; public boolean isLastVerifiedDateSpecified() { return lastVerifiedDateSpecified; } public void unsetLastVerifiedDate() { lastVerifiedDate = null; lastVerifiedDateSpecified = false; } /** * The maximum amount of CPU resources a computing instance may utilize. */ @ApiProperty(canBeNullOrNotSet = true) protected Long maxCpu; public Long getMaxCpu() { return maxCpu; } public void setMaxCpu(Long maxCpu) { maxCpuSpecified = true; this.maxCpu = maxCpu; } protected boolean maxCpuSpecified; public boolean isMaxCpuSpecified() { return maxCpuSpecified; } public void unsetMaxCpu() { maxCpu = null; maxCpuSpecified = false; } /** * The unit of the maximum amount of CPU resources a computing instance may utilize. */ @ApiProperty(canBeNullOrNotSet = true) protected String maxCpuUnits; public String getMaxCpuUnits() { return maxCpuUnits; } public void setMaxCpuUnits(String maxCpuUnits) { maxCpuUnitsSpecified = true; this.maxCpuUnits = maxCpuUnits; } protected boolean maxCpuUnitsSpecified; public boolean isMaxCpuUnitsSpecified() { return maxCpuUnitsSpecified; } public void unsetMaxCpuUnits() { maxCpuUnits = null; maxCpuUnitsSpecified = false; } /** * The maximum amount of memory a computing instance may utilize. */ @ApiProperty(canBeNullOrNotSet = true) protected Long maxMemory; public Long getMaxMemory() { return maxMemory; } public void setMaxMemory(Long maxMemory) { maxMemorySpecified = true; this.maxMemory = maxMemory; } protected boolean maxMemorySpecified; public boolean isMaxMemorySpecified() { return maxMemorySpecified; } public void unsetMaxMemory() { maxMemory = null; maxMemorySpecified = false; } /** * The date of the most recent metric tracking poll performed. */ @ApiProperty(canBeNullOrNotSet = true) protected GregorianCalendar metricPollDate; public GregorianCalendar getMetricPollDate() { return metricPollDate; } public void setMetricPollDate(GregorianCalendar metricPollDate) { metricPollDateSpecified = true; this.metricPollDate = metricPollDate; } protected boolean metricPollDateSpecified; public boolean isMetricPollDateSpecified() { return metricPollDateSpecified; } public void unsetMetricPollDate() { metricPollDate = null; metricPollDateSpecified = false; } /** * The date a virtual computing instance was last modified. */ @ApiProperty(canBeNullOrNotSet = true) protected GregorianCalendar modifyDate; public GregorianCalendar getModifyDate() { return modifyDate; } public void setModifyDate(GregorianCalendar modifyDate) { modifyDateSpecified = true; this.modifyDate = modifyDate; } protected boolean modifyDateSpecified; public boolean isModifyDateSpecified() { return modifyDateSpecified; } public void unsetModifyDate() { modifyDate = null; modifyDateSpecified = false; } /** * A note of up to 1,000 characters about a virtual server. */ @ApiProperty(canBeNullOrNotSet = true) protected String notes; public String getNotes() { return notes; } public void setNotes(String notes) { notesSpecified = true; this.notes = notes; } protected boolean notesSpecified; public boolean isNotesSpecified() { return notesSpecified; } public void unsetNotes() { notes = null; notesSpecified = false; } /** * URI of the script to be downloaded and executed after installation is complete. This is deprecated in favor of supplementalCreateObjectOptions' postInstallScriptUri. */ @ApiProperty(canBeNullOrNotSet = true) protected String postInstallScriptUri; public String getPostInstallScriptUri() { return postInstallScriptUri; } public void setPostInstallScriptUri(String postInstallScriptUri) { postInstallScriptUriSpecified = true; this.postInstallScriptUri = postInstallScriptUri; } protected boolean postInstallScriptUriSpecified; public boolean isPostInstallScriptUriSpecified() { return postInstallScriptUriSpecified; } public void unsetPostInstallScriptUri() { postInstallScriptUri = null; postInstallScriptUriSpecified = false; } @ApiProperty(canBeNullOrNotSet = true) protected GregorianCalendar provisionDate; public GregorianCalendar getProvisionDate() { return provisionDate; } public void setProvisionDate(GregorianCalendar provisionDate) { provisionDateSpecified = true; this.provisionDate = provisionDate; } protected boolean provisionDateSpecified; public boolean isProvisionDateSpecified() { return provisionDateSpecified; } public void unsetProvisionDate() { provisionDate = null; provisionDateSpecified = false; } /** * The number of CPUs available to a computing instance upon startup. */ @ApiProperty(canBeNullOrNotSet = true) protected Long startCpus; public Long getStartCpus() { return startCpus; } public void setStartCpus(Long startCpus) { startCpusSpecified = true; this.startCpus = startCpus; } protected boolean startCpusSpecified; public boolean isStartCpusSpecified() { return startCpusSpecified; } public void unsetStartCpus() { startCpus = null; startCpusSpecified = false; } /** * A computing instances [[SoftLayer_Virtual_Guest_Status|status]] ID */ @ApiProperty(canBeNullOrNotSet = true) protected Long statusId; public Long getStatusId() { return statusId; } public void setStatusId(Long statusId) { statusIdSpecified = true; this.statusId = statusId; } protected boolean statusIdSpecified; public boolean isStatusIdSpecified() { return statusIdSpecified; } public void unsetStatusId() { statusId = null; statusIdSpecified = false; } /** * Extra options needed for [[SoftLayer_Virtual_Guest/createObject|createObject]] and [[SoftLayer_Virtual_Guest/createObjects|createObjects]]. */ @ApiProperty(canBeNullOrNotSet = true) protected SupplementalCreateObjectOptions supplementalCreateObjectOptions; public SupplementalCreateObjectOptions getSupplementalCreateObjectOptions() { return supplementalCreateObjectOptions; } public void setSupplementalCreateObjectOptions(SupplementalCreateObjectOptions supplementalCreateObjectOptions) { supplementalCreateObjectOptionsSpecified = true; this.supplementalCreateObjectOptions = supplementalCreateObjectOptions; } protected boolean supplementalCreateObjectOptionsSpecified; public boolean isSupplementalCreateObjectOptionsSpecified() { return supplementalCreateObjectOptionsSpecified; } public void unsetSupplementalCreateObjectOptions() { supplementalCreateObjectOptions = null; supplementalCreateObjectOptionsSpecified = false; } /** * Gives the type of guest categorized as PUBLIC, DEDICATED or PRIVATE. */ @ApiProperty(canBeNullOrNotSet = true) protected Long typeId; public Long getTypeId() { return typeId; } public void setTypeId(Long typeId) { typeIdSpecified = true; this.typeId = typeId; } protected boolean typeIdSpecified; public boolean isTypeIdSpecified() { return typeIdSpecified; } public void unsetTypeId() { typeId = null; typeIdSpecified = false; } /** * Unique ID for a computing instance's record on a virtualization platform. */ @ApiProperty(canBeNullOrNotSet = true) protected String uuid; public String getUuid() { return uuid; } public void setUuid(String uuid) { uuidSpecified = true; this.uuid = uuid; } protected boolean uuidSpecified; public boolean isUuidSpecified() { return uuidSpecified; } public void unsetUuid() { uuid = null; uuidSpecified = false; } /** * A count of a virtual guest's currently active network monitoring incidents. */ @ApiProperty protected Long activeNetworkMonitorIncidentCount; public Long getActiveNetworkMonitorIncidentCount() { return activeNetworkMonitorIncidentCount; } public void setActiveNetworkMonitorIncidentCount(Long activeNetworkMonitorIncidentCount) { this.activeNetworkMonitorIncidentCount = activeNetworkMonitorIncidentCount; } /** * A count of */ @ApiProperty protected Long activeTicketCount; public Long getActiveTicketCount() { return activeTicketCount; } public void setActiveTicketCount(Long activeTicketCount) { this.activeTicketCount = activeTicketCount; } /** * A count of any active transaction(s) that are currently running for the server (example: os reload). */ @ApiProperty protected Long activeTransactionCount; public Long getActiveTransactionCount() { return activeTransactionCount; } public void setActiveTransactionCount(Long activeTransactionCount) { this.activeTransactionCount = activeTransactionCount; } /** * A count of the SoftLayer_Network_Storage objects that this SoftLayer_Virtual_Guest has access to. */ @ApiProperty protected Long allowedNetworkStorageCount; public Long getAllowedNetworkStorageCount() { return allowedNetworkStorageCount; } public void setAllowedNetworkStorageCount(Long allowedNetworkStorageCount) { this.allowedNetworkStorageCount = allowedNetworkStorageCount; } /** * A count of the SoftLayer_Network_Storage objects whose Replica that this SoftLayer_Virtual_Guest has access to. */ @ApiProperty protected Long allowedNetworkStorageReplicaCount; public Long getAllowedNetworkStorageReplicaCount() { return allowedNetworkStorageReplicaCount; } public void setAllowedNetworkStorageReplicaCount(Long allowedNetworkStorageReplicaCount) { this.allowedNetworkStorageReplicaCount = allowedNetworkStorageReplicaCount; } /** * A count of */ @ApiProperty protected Long attributeCount; public Long getAttributeCount() { return attributeCount; } public void setAttributeCount(Long attributeCount) { this.attributeCount = attributeCount; } /** * A count of an object that stores the maximum level for the monitoring query types and response types. */ @ApiProperty protected Long availableMonitoringCount; public Long getAvailableMonitoringCount() { return availableMonitoringCount; } public void setAvailableMonitoringCount(Long availableMonitoringCount) { this.availableMonitoringCount = availableMonitoringCount; } /** * A count of a guests's backend network components. */ @ApiProperty protected Long backendNetworkComponentCount; public Long getBackendNetworkComponentCount() { return backendNetworkComponentCount; } public void setBackendNetworkComponentCount(Long backendNetworkComponentCount) { this.backendNetworkComponentCount = backendNetworkComponentCount; } /** * A count of a guest's backend or private router. */ @ApiProperty protected Long backendRouterCount; public Long getBackendRouterCount() { return backendRouterCount; } public void setBackendRouterCount(Long backendRouterCount) { this.backendRouterCount = backendRouterCount; } /** * A count of the raw bandwidth usage data for the current billing cycle. One object will be returned for each network this server is attached to. */ @ApiProperty protected Long billingCycleBandwidthUsageCount; public Long getBillingCycleBandwidthUsageCount() { return billingCycleBandwidthUsageCount; } public void setBillingCycleBandwidthUsageCount(Long billingCycleBandwidthUsageCount) { this.billingCycleBandwidthUsageCount = billingCycleBandwidthUsageCount; } /** * A count of a computing instance's block devices. Block devices link [[SoftLayer_Virtual_Disk_Image|disk images]] to computing instances. */ @ApiProperty protected Long blockDeviceCount; public Long getBlockDeviceCount() { return blockDeviceCount; } public void setBlockDeviceCount(Long blockDeviceCount) { this.blockDeviceCount = blockDeviceCount; } /** * A count of a guest's associated EVault network storage service account. */ @ApiProperty protected Long evaultNetworkStorageCount; public Long getEvaultNetworkStorageCount() { return evaultNetworkStorageCount; } public void setEvaultNetworkStorageCount(Long evaultNetworkStorageCount) { this.evaultNetworkStorageCount = evaultNetworkStorageCount; } /** * A count of a guest's frontend network components. */ @ApiProperty protected Long frontendNetworkComponentCount; public Long getFrontendNetworkComponentCount() { return frontendNetworkComponentCount; } public void setFrontendNetworkComponentCount(Long frontendNetworkComponentCount) { this.frontendNetworkComponentCount = frontendNetworkComponentCount; } /** * A count of */ @ApiProperty protected Long internalTagReferenceCount; public Long getInternalTagReferenceCount() { return internalTagReferenceCount; } public void setInternalTagReferenceCount(Long internalTagReferenceCount) { this.internalTagReferenceCount = internalTagReferenceCount; } /** * A count of */ @ApiProperty protected Long monitoringAgentCount; public Long getMonitoringAgentCount() { return monitoringAgentCount; } public void setMonitoringAgentCount(Long monitoringAgentCount) { this.monitoringAgentCount = monitoringAgentCount; } /** * A count of the monitoring notification objects for this guest. Each object links this guest instance to a user account that will be notified if monitoring on this guest object fails */ @ApiProperty protected Long monitoringUserNotificationCount; public Long getMonitoringUserNotificationCount() { return monitoringUserNotificationCount; } public void setMonitoringUserNotificationCount(Long monitoringUserNotificationCount) { this.monitoringUserNotificationCount = monitoringUserNotificationCount; } /** * A count of a guests's network components. */ @ApiProperty protected Long networkComponentCount; public Long getNetworkComponentCount() { return networkComponentCount; } public void setNetworkComponentCount(Long networkComponentCount) { this.networkComponentCount = networkComponentCount; } /** * A count of a guests's network monitors. */ @ApiProperty protected Long networkMonitorCount; public Long getNetworkMonitorCount() { return networkMonitorCount; } public void setNetworkMonitorCount(Long networkMonitorCount) { this.networkMonitorCount = networkMonitorCount; } /** * A count of all of a virtual guest's network monitoring incidents. */ @ApiProperty protected Long networkMonitorIncidentCount; public Long getNetworkMonitorIncidentCount() { return networkMonitorIncidentCount; } public void setNetworkMonitorIncidentCount(Long networkMonitorIncidentCount) { this.networkMonitorIncidentCount = networkMonitorIncidentCount; } /** * A count of a guest's associated network storage accounts. */ @ApiProperty protected Long networkStorageCount; public Long getNetworkStorageCount() { return networkStorageCount; } public void setNetworkStorageCount(Long networkStorageCount) { this.networkStorageCount = networkStorageCount; } /** * A count of the network Vlans that a guest's network components are associated with. */ @ApiProperty protected Long networkVlanCount; public Long getNetworkVlanCount() { return networkVlanCount; } public void setNetworkVlanCount(Long networkVlanCount) { this.networkVlanCount = networkVlanCount; } /** * A count of recent events that impact this computing instance. */ @ApiProperty protected Long recentEventCount; public Long getRecentEventCount() { return recentEventCount; } public void setRecentEventCount(Long recentEventCount) { this.recentEventCount = recentEventCount; } /** * A count of collection of scale assets this guest corresponds to. */ @ApiProperty protected Long scaleAssetCount; public Long getScaleAssetCount() { return scaleAssetCount; } public void setScaleAssetCount(Long scaleAssetCount) { this.scaleAssetCount = scaleAssetCount; } /** * A count of a guest's vulnerability scan requests. */ @ApiProperty protected Long securityScanRequestCount; public Long getSecurityScanRequestCount() { return securityScanRequestCount; } public void setSecurityScanRequestCount(Long securityScanRequestCount) { this.securityScanRequestCount = securityScanRequestCount; } /** * A count of a guest's installed software. */ @ApiProperty protected Long softwareComponentCount; public Long getSoftwareComponentCount() { return softwareComponentCount; } public void setSoftwareComponentCount(Long softwareComponentCount) { this.softwareComponentCount = softwareComponentCount; } /** * A count of sSH keys to be installed on the server during provisioning or an OS reload. */ @ApiProperty protected Long sshKeyCount; public Long getSshKeyCount() { return sshKeyCount; } public void setSshKeyCount(Long sshKeyCount) { this.sshKeyCount = sshKeyCount; } /** * A count of */ @ApiProperty protected Long tagReferenceCount; public Long getTagReferenceCount() { return tagReferenceCount; } public void setTagReferenceCount(Long tagReferenceCount) { this.tagReferenceCount = tagReferenceCount; } /** * A count of a list of users that have access to this computing instance. */ @ApiProperty protected Long userCount; public Long getUserCount() { return userCount; } public void setUserCount(Long userCount) { this.userCount = userCount; } /** * A count of a base64 encoded string containing custom user data for a Cloud Computing Instance order. */ @ApiProperty protected Long userDataCount; public Long getUserDataCount() { return userDataCount; } public void setUserDataCount(Long userDataCount) { this.userDataCount = userDataCount; } public Service asService(ApiClient client) { if (id != null) { return service(client, id); } else { return service(client, globalIdentifier); } } public static Service service(ApiClient client) { return client.createService(Service.class, null); } public static Service service(ApiClient client, Long id) { return client.createService(Service.class, id == null ? null : id.toString()); } public static Service service(ApiClient client, String globalIdentifier) { return client.createService(Service.class, globalIdentifier); } /** * The virtual guest service provides a common interface to any virtualization platform supported by SoftLayer. The interaction with various third party APIs is not needed when implementing this service to administer your guests. The SoftLayer_Virtual_Guest service also controls individual CloudLayer Computing Instances purchased from SoftLayer in a way that is analogous to the [[SoftLayer_Hardware_Server]] service's control over physical hardware purchased form SoftLayer. * * @see SoftLayer_Virtual_Guest */ @com.softlayer.api.annotation.ApiService("SoftLayer_Virtual_Guest") public static interface Service extends com.softlayer.api.Service { public ServiceAsync asAsync(); public Mask withNewMask(); public Mask withMask(); public void setMask(Mask mask); /** * Activate the private network port * * @see SoftLayer_Virtual_Guest::activatePrivatePort */ @ApiMethod(instanceRequired = true) public Boolean activatePrivatePort(); /** * Activate the public network port * * @see SoftLayer_Virtual_Guest::activatePublicPort */ @ApiMethod(instanceRequired = true) public Boolean activatePublicPort(); /** * This method is used to allow access to a SoftLayer_Network_Storage volume that supports host- or network-level access control. * * @see SoftLayer_Virtual_Guest::allowAccessToNetworkStorage */ @ApiMethod(instanceRequired = true) public Boolean allowAccessToNetworkStorage(Storage networkStorageTemplateObject); /** * This method is used to allow access to multiple SoftLayer_Network_Storage volumes that support host- or network-level access control. * * @see SoftLayer_Virtual_Guest::allowAccessToNetworkStorageList */ @ApiMethod(instanceRequired = true) public Boolean allowAccessToNetworkStorageList(List networkStorageTemplateObjects); /** * Creates a transaction to attach a guest's disk image. If the disk image is already attached it will be ignored.
*
* WARNING: SoftLayer_Virtual_Guest::checkHostDiskAvailability should be called before this method. If the SoftLayer_Virtual_Guest::checkHostDiskAvailability method is not called before this method, the guest migration will happen automatically. * * @see SoftLayer_Virtual_Guest::attachDiskImage */ @ApiMethod(instanceRequired = true) public Transaction attachDiskImage(Long imageId); /** * Reopens the public and/or private ports to reverse the changes made when the server was isolated for a destructive action. * * @see SoftLayer_Virtual_Guest::cancelIsolationForDestructiveAction */ @ApiMethod(instanceRequired = true) public Void cancelIsolationForDestructiveAction(); /** * Captures a Flex Image of the hard disk on the virtual machine, based on the capture template parameter. Returns the image template group containing the disk image. * * @see SoftLayer_Virtual_Guest::captureImage */ @ApiMethod(instanceRequired = true) public Group captureImage(Template captureTemplate); /** * Checks the associated host for available disk space to determine if guest migration is necessary. This method is only used with local disks. If this method returns false, calling attachDiskImage($imageId) will automatically migrate the destination guest to a new host before attaching the portable volume. * * @see SoftLayer_Virtual_Guest::checkHostDiskAvailability */ @ApiMethod(instanceRequired = true) public Boolean checkHostDiskAvailability(Long diskCapacity); /** * Returns monitoring alarm detailed history * * @see SoftLayer_Virtual_Guest::closeAlarm */ @ApiMethod(instanceRequired = true) public Boolean closeAlarm(String alarmId); /** * Creates a transaction to configure the guest's metadata disk. If the guest has user data associated with it, the transaction will create a small virtual drive and write the metadata to a file on the drive; if the drive already exists, the metadata will be rewritten. If the guest has no user data associated with it, the transaction will remove the virtual drive if it exists.
*
* WARNING: The transaction created by this service will shut down the guest while the metadata disk is configured. The guest will be turned back on once this process is complete. * * @see SoftLayer_Virtual_Guest::configureMetadataDisk */ @ApiMethod(instanceRequired = true) public Transaction configureMetadataDisk(); /** * Create a transaction to archive a computing instance's block devices * * @see SoftLayer_Virtual_Guest::createArchiveTransaction */ @ApiMethod(instanceRequired = true) public Transaction createArchiveTransaction(String groupName, List blockDevices, String note); /** *
*
* createObject() enables the creation of computing instances on an account. This
* method is a simplified alternative to interacting with the ordering system directly.
*
*
* In order to create a computing instance, a template object must be sent in with a few required
* values.
*
*
* When this method returns an order will have been placed for a computing instance of the specified configuration.
*
*
* To determine when the instance is available you can poll the instance via [[SoftLayer_Virtual_Guest/getObject|getObject]], with an [[Extended-Object-Masks|object mask]] requesting the provisionDate relational property. When provisionDate is not null, the instance will be ready.
*
*
* Warning: Computing instances created via this method will incur charges on your account. For testing input parameters see [[SoftLayer_Virtual_Guest/generateOrderTemplate|generateOrderTemplate]].
*
*
* Input - [[SoftLayer_Virtual_Guest (type)|SoftLayer_Virtual_Guest]]
*

    *
  • hostname
    *
    Hostname for the computing instance.

      *
    • Required

    • *
    • Type - string

    • *

    *

    *

  • *
  • domain
    *
    Domain for the computing instance.

      *
    • Required

    • *
    • Type - string

    • *

    *

    *

  • *
  • startCpus
    *
    The number of CPU cores to allocate.

      *
    • Required

    • *
    • Type - int

    • *
    • See [[SoftLayer_Virtual_Guest/getCreateObjectOptions|getCreateObjectOptions]] for available options.

    • *

    *

    *

  • *
  • maxMemory
    *
    The amount of memory to allocate in megabytes.

      *
    • Required

    • *
    • Type - int

    • *
    • See [[SoftLayer_Virtual_Guest/getCreateObjectOptions|getCreateObjectOptions]] for available options.

    • *

    *

    *

  • *
  • datacenter.name
    *
    Specifies which datacenter the instance is to be provisioned in.

      *
    • Required

    • *
    • Type - string

    • *
    • The datacenter property is a [[SoftLayer_Location (type)|location]] structure with the name field set.

    • *
    • See [[SoftLayer_Virtual_Guest/getCreateObjectOptions|getCreateObjectOptions]] for available options.

    • *

    * {
    * "datacenter": {
    * "name": "dal05"
    * }
    * }

    *

    *

  • *
  • hourlyBillingFlag
    *
    Specifies the billing type for the instance.

      *
    • Required

    • *
    • Type - boolean

    • *
    • When true the computing instance will be billed on hourly usage, otherwise it will be billed on a monthly basis.

    • *

    *

    *

  • *
  • localDiskFlag
    *
    Specifies the disk type for the instance.

      *
    • Required

    • *
    • Type - boolean

    • *
    • When true the disks for the computing instance will be provisioned on the host which it runs, otherwise SAN disks will be provisioned.

    • *

    *

    *

  • *
  • dedicatedAccountHostOnlyFlag
    *
    Specifies whether or not the instance must only run on hosts with instances from the same account

      *
    • Optional

    • *
    • Type - boolean

    • *
    • Default - false

    • *
    • When true this flag specifies that a compute instance is to run on hosts that only have guests from the same account.

    • *

    *

    *

  • *
  • operatingSystemReferenceCode
    *
    An identifier for the operating system to provision the computing instance with.

      *
    • Conditionally required - Disallowed when blockDeviceTemplateGroup.globalIdentifier is provided, as the template will specify the operating system.

    • *
    • Type - string

    • *
    • Notice - Some operating systems are charged based on the value specified in startCpus. The price which is used can be determined by calling [[SoftLayer_Virtual_Guest/generateOrderTemplate|generateOrderTemplate]] with your desired device specifications.

    • *
    • See [[SoftLayer_Virtual_Guest/getCreateObjectOptions|getCreateObjectOptions]] for available options.

    • *

    *

    *

  • *
  • blockDeviceTemplateGroup.globalIdentifier
    *
    A global identifier for the template to be used to provision the computing instance.

      *
    • Conditionally required - Disallowed when operatingSystemReferenceCode is provided, as the template will specify the operating system.

    • *
    • Type - string

    • *
    • Notice - Some operating systems are charged based on the value specified in startCpus. The price which is used can be determined by calling [[SoftLayer_Virtual_Guest/generateOrderTemplate|generateOrderTemplate]] with your desired device specifications.

    • *
    • Both public and non-public images may be specified.

    • *
    • A list of public images may be obtained via a request to [[SoftLayer_Virtual_Guest_Block_Device_Template_Group/getPublicImages|getPublicImages]].

    • *
    • A list of non-public images, images owned by an account or specifically shared with an account, may be obtained via a request to [[SoftLayer_Account/getBlockDeviceTemplateGroups|getBlockDeviceTemplateGroups]].

    • *

    * {
    * "blockDeviceTemplateGroup": {
    * "globalIdentifier": "07beadaa-1e11-476e-a188-3f7795feb9fb"
    * }
    * }

    *

    *

  • *
  • networkComponents.maxSpeed
    *
    Specifies the connection speed for the instance's network components.

      *
    • Optional

    • *
    • Type - int

    • *
    • Default - 10

    • *
    • Description - The networkComponents property is an array with a single [[SoftLayer_Virtual_Guest_Network_Component (type)|network component]] structure. The maxSpeed property must be set to specify the network uplink speed, in megabits per second, of the computing instance.

    • *
    • See [[SoftLayer_Virtual_Guest/getCreateObjectOptions|getCreateObjectOptions]] for available options.

    • *

    * {
    * "networkComponents": [
    * {
    * "maxSpeed": 1000
    * }
    * ]
    * }

    *

    *

  • *
  • privateNetworkOnlyFlag
    *
    Specifies whether or not the instance only has access to the private network

      *
    • Optional

    • *
    • Type - boolean

    • *
    • Default - false

    • *
    • When true this flag specifies that a compute instance is to only have access to the private network.

    • *

    *

    *

  • *
  • primaryNetworkComponent.networkVlan.id
    *
    Specifies the network vlan which is to be used for the frontend interface of the computing instance.

      *
    • Optional

    • *
    • Type - int

    • *
    • Description - The primaryNetworkComponent property is a [[SoftLayer_Virtual_Guest_Network_Component (type)|network component]] structure with the networkVlan property populated with a [[SoftLayer_Network_Vlan (type)|vlan]] structure. The id property must be set to specify the frontend network vlan of the computing instance.

    • *

    * {
    * "primaryNetworkComponent": {
    * "networkVlan": {
    * "id": 1
    * }
    * }
    * }

    *

    *

  • *
  • primaryBackendNetworkComponent.networkVlan.id
    *
    Specifies the network vlan which is to be used for the backend interface of the computing instance.

      *
    • Optional

    • *
    • Type - int

    • *
    • Description - The primaryBackendNetworkComponent property is a [[SoftLayer_Virtual_Guest_Network_Component (type)|network component]] structure with the networkVlan property populated with a [[SoftLayer_Network_Vlan (type)|vlan]] structure. The id property must be set to specify the backend network vlan of the computing instance.

    • *

    * {
    * "primaryBackendNetworkComponent": {
    * "networkVlan": {
    * "id": 2
    * }
    * }
    * }

    *

    *

  • *
  • blockDevices
    *
    Block device and disk image settings for the computing instance

      *
    • Optional

    • *
    • Type - array of [[SoftLayer_Virtual_Guest_Block_Device (type)|SoftLayer_Virtual_Guest_Block_Device]

    • *
    • Default - The smallest available capacity for the primary disk will be used. If an image template is specified the disk capacity will be be provided by the template.

    • *
    • Description - The blockDevices property is an array of [[SoftLayer_Virtual_Guest_Block_Device (type)|block device]] structures.
      *
    • Each block device must specify the device property along with the diskImage property, which is a [[SoftLayer_Virtual_Disk_Image (type)|disk image]] structure with the capacity property set.

    • *
    • The device number '1' is reserved for the SWAP disk attached to the computing instance.

    • *
    • See [[SoftLayer_Virtual_Guest/getCreateObjectOptions|getCreateObjectOptions]] for available options.

    • *

    * {
    * "blockDevices": [
    * {
    * "device": "0",
    * "diskImage": {
    * "capacity": 100
    * }
    * }
    * ],
    * "localDiskFlag": true
    * }

    *

    *

  • *
  • userData.value
    *
    Arbitrary data to be made available to the computing instance.

      *
    • Optional

    • *
    • Type - string

    • *
    • Description - The userData property is an array with a single [[SoftLayer_Virtual_Guest_Attribute (type)|attribute]] structure with the value property set to an arbitrary value.

    • *
    • This value can be retrieved via the [[SoftLayer_Resource_Metadata/getUserMetadata|getUserMetadata]] method from a request originating from the computing instance. This is primarily useful for providing data to software that may be on the instance and configured to execute upon first boot.

    • *

    * {
    * "userData": [
    * {
    * "value": "someValue"
    * }
    * ]
    * }

    *

    *

  • *
  • sshKeys
    *
    SSH keys to install on the computing instance upon provisioning.

      *
    • Optional

    • *
    • Type - array of [[SoftLayer_Security_Ssh_Key (type)|SoftLayer_Security_Ssh_Key]]

    • *
    • Description - The sshKeys property is an array of [[SoftLayer_Security_Ssh_Key (type)|SSH Key]] structures with the id property set to the value of an existing SSH key.

    • *
    • To create a new SSH key, call [[SoftLayer_Security_Ssh_Key/createObject|createObject]] on the [[SoftLayer_Security_Ssh_Key]] service.

    • *
    • To obtain a list of existing SSH keys, call [[SoftLayer_Account/getSshKeys|getSshKeys]] on the [[SoftLayer_Account]] service.
      *

    * {
    * "sshKeys": [
    * {
    * "id": 123
    * }
    * ]
    * }

    *

    *

  • *
  • postInstallScriptUri
    *
    Specifies the uri location of the script to be downloaded and run after installation is complete.

      *
    • Optional

    • *
    • Type - string

    • *

    *

    *

  • *

*
*
*

REST Example


* curl -X POST -d '{
* "parameters":[
* {
* "hostname": "host1",
* "domain": "example.com",
* "startCpus": 1,
* "maxMemory": 1024,
* "hourlyBillingFlag": true,
* "localDiskFlag": true,
* "operatingSystemReferenceCode": "UBUNTU_LATEST"
* }
* ]
* }' https://api.softlayer.com/rest/v3/SoftLayer_Virtual_Guest.json
*

* HTTP/1.1 201 Created
* Location: https://api.softlayer.com/rest/v3/SoftLayer_Virtual_Guest/1301396/getObject
*
*
* {
* "accountId": 232298,
* "createDate": "2012-11-30T16:28:17-06:00",
* "dedicatedAccountHostOnlyFlag": false,
* "domain": "example.com",
* "hostname": "host1",
* "id": 1301396,
* "lastPowerStateId": null,
* "lastVerifiedDate": null,
* "maxCpu": 1,
* "maxCpuUnits": "CORE",
* "maxMemory": 1024,
* "metricPollDate": null,
* "modifyDate": null,
* "privateNetworkOnlyFlag": false,
* "startCpus": 1,
* "statusId": 1001,
* "globalIdentifier": "2d203774-0ee1-49f5-9599-6ef67358dd31"
* }
*
* * @see SoftLayer_Virtual_Guest::createObject */ @ApiMethod public Guest createObject(Guest templateObject); /** *
* createObjects() enables the creation of multiple computing instances on an account in a single call. This
* method is a simplified alternative to interacting with the ordering system directly.
*
*
* In order to create a computing instance a set of template objects must be sent in with a few required
* values.
*
*
* Warning: Computing instances created via this method will incur charges on your account.
*
*
* See [[SoftLayer_Virtual_Guest/createObject|createObject]] for specifics on the requirements of each template object.
*
*
*

Example


* curl -X POST -d '{
* "parameters":[
* [
* {
* "hostname": "host1",
* "domain": "example.com",
* "startCpus": 1,
* "maxMemory": 1024,
* "hourlyBillingFlag": true,
* "localDiskFlag": true,
* "operatingSystemReferenceCode": "UBUNTU_LATEST"
* },
* {
* "hostname": "host2",
* "domain": "example.com",
* "startCpus": 1,
* "maxMemory": 1024,
* "hourlyBillingFlag": true,
* "localDiskFlag": true,
* "operatingSystemReferenceCode": "UBUNTU_LATEST"
* }
* ]
* ]
* }' https://api.softlayer.com/rest/v3/SoftLayer_Virtual_Guest/createObjects.json
*

* HTTP/1.1 200 OK
*
*
* [
* {
* "accountId": 232298,
* "createDate": "2012-11-30T23:56:48-06:00",
* "dedicatedAccountHostOnlyFlag": false,
* "domain": "softlayer.com",
* "hostname": "ubuntu1",
* "id": 1301456,
* "lastPowerStateId": null,
* "lastVerifiedDate": null,
* "maxCpu": 1,
* "maxCpuUnits": "CORE",
* "maxMemory": 1024,
* "metricPollDate": null,
* "modifyDate": null,
* "privateNetworkOnlyFlag": false,
* "startCpus": 1,
* "statusId": 1001,
* "globalIdentifier": "fed4c822-48c0-45d0-85e2-90476aa0c542"
* },
* {
* "accountId": 232298,
* "createDate": "2012-11-30T23:56:49-06:00",
* "dedicatedAccountHostOnlyFlag": false,
* "domain": "softlayer.com",
* "hostname": "ubuntu2",
* "id": 1301457,
* "lastPowerStateId": null,
* "lastVerifiedDate": null,
* "maxCpu": 1,
* "maxCpuUnits": "CORE",
* "maxMemory": 1024,
* "metricPollDate": null,
* "modifyDate": null,
* "privateNetworkOnlyFlag": false,
* "startCpus": 1,
* "statusId": 1001,
* "globalIdentifier": "bed4c686-9562-4ade-9049-dc4d5b6b200c"
* }
* ]
*
* * @see SoftLayer_Virtual_Guest::createObjects */ @ApiMethod public List createObjects(List templateObjects); /** * @see SoftLayer_Virtual_Guest::createPostSoftwareInstallTransaction */ @ApiMethod(instanceRequired = true) public Boolean createPostSoftwareInstallTransaction(String data, Boolean returnBoolean); /** *
* This method will cancel a computing instance effective immediately. For instances billed hourly, the charges will stop immediately after the method returns. * * @see SoftLayer_Virtual_Guest::deleteObject */ @ApiMethod(instanceRequired = true) public Boolean deleteObject(); /** * Creates a transaction to detach a guest's disk image. If the disk image is already detached it will be ignored.
*
* WARNING: The transaction created by this service will shut down the guest while the disk image is attached. The guest will be turned back on once this process is complete. * * @see SoftLayer_Virtual_Guest::detachDiskImage */ @ApiMethod(instanceRequired = true) public Transaction detachDiskImage(Long imageId); /** * Edit a computing instance's properties * * @see SoftLayer_Virtual_Guest::editObject */ @ApiMethod(instanceRequired = true) public Boolean editObject(Guest templateObject); /** * Reboot a guest into the Idera Bare Metal Restore image. * * @see SoftLayer_Virtual_Guest::executeIderaBareMetalRestore */ @ApiMethod(instanceRequired = true) public Boolean executeIderaBareMetalRestore(); /** * Reboot a guest into the R1Soft Bare Metal Restore image. * * @see SoftLayer_Virtual_Guest::executeR1SoftBareMetalRestore */ @ApiMethod(instanceRequired = true) public Boolean executeR1SoftBareMetalRestore(); /** * Download and run remote script from uri on virtual guests. * * @see SoftLayer_Virtual_Guest::executeRemoteScript */ @ApiMethod(instanceRequired = true) public Void executeRemoteScript(String uri); /** * Reboot a Linux guest into the Xen rescue image. * * @see SoftLayer_Virtual_Guest::executeRescueLayer */ @ApiMethod(instanceRequired = true) public Boolean executeRescueLayer(); /** * Find CCI by only its primary public or private IP address. IP addresses within secondary subnets tied to the CCI will not return the CCI. If no CCI is found, no errors are generated and no data is returned. * * @see SoftLayer_Virtual_Guest::findByIpAddress */ @ApiMethod public Guest findByIpAddress(String ipAddress); /** *
* Obtain an [[SoftLayer_Container_Product_Order_Virtual_Guest (type)|order container]] that can be sent to [[SoftLayer_Product_Order/verifyOrder|verifyOrder]] or [[SoftLayer_Product_Order/placeOrder|placeOrder]].
*
*
* This is primarily useful when there is a necessity to confirm the price which will be charged for an order.
*
*
* See [[SoftLayer_Virtual_Guest/createObject|createObject]] for specifics on the requirements of the template object parameter. * * @see SoftLayer_Virtual_Guest::generateOrderTemplate */ @ApiMethod public Order generateOrderTemplate(Guest templateObject); /** * Return a collection of SoftLayer_Item_Price objects for an OS reload * * @see SoftLayer_Virtual_Guest::getAdditionalRequiredPricesForOsReload */ @ApiMethod(instanceRequired = true) public List getAdditionalRequiredPricesForOsReload(Configuration config); /** * Returns monitoring alarm detailed history * * @see SoftLayer_Virtual_Guest::getAlarmHistory */ @ApiMethod(instanceRequired = true) public List getAlarmHistory(GregorianCalendar startDate, GregorianCalendar endDate, String alarmId); /** * This method is retrieve a list of SoftLayer_Network_Storage volumes that are authorized access to this SoftLayer_Virtual_Guest. * * @see SoftLayer_Virtual_Guest::getAttachedNetworkStorages */ @ApiMethod(instanceRequired = true) public List getAttachedNetworkStorages(String nasType); /** * @see SoftLayer_Virtual_Guest::getAvailableBlockDevicePositions */ @ApiMethod(instanceRequired = true) public List getAvailableBlockDevicePositions(); /** * This method retrieves a list of SoftLayer_Network_Storage volumes that can be authorized to this SoftLayer_Virtual_Guest. * * @see SoftLayer_Virtual_Guest::getAvailableNetworkStorages */ @ApiMethod(instanceRequired = true) public List getAvailableNetworkStorages(String nasType); /** * Use this method when needing the metric data for bandwidth for a single guest. It will gather the correct input parameters based on the date ranges * * @see SoftLayer_Virtual_Guest::getBandwidthDataByDate */ @ApiMethod(instanceRequired = true) public List getBandwidthDataByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, String networkType); /** * Retrieve a collection of bandwidth data from an individual public or private network tracking object. Data is ideal if you with to employ your own traffic storage and graphing systems. * * @see SoftLayer_Virtual_Guest::getBandwidthForDateRange */ @ApiMethod(instanceRequired = true) public List getBandwidthForDateRange(GregorianCalendar startDate, GregorianCalendar endDate); /** * Use this method when needing a bandwidth image for a single guest. It will gather the correct input parameters for the generic graphing utility automatically based on the snapshot specified. * * @see SoftLayer_Virtual_Guest::getBandwidthImage */ @ApiMethod(instanceRequired = true) public GraphOutputs getBandwidthImage(String networkType, String snapshotRange, GregorianCalendar dateSpecified, GregorianCalendar dateSpecifiedEnd); /** * Use this method when needing a bandwidth image for a single guest. It will gather the correct input parameters for the generic graphing utility based on the date ranges * * @see SoftLayer_Virtual_Guest::getBandwidthImageByDate */ @ApiMethod(instanceRequired = true) public GraphOutputs getBandwidthImageByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, String networkType); /** * Returns the total amount of bandwidth used during the time specified for a computing instance. * * @see SoftLayer_Virtual_Guest::getBandwidthTotal */ @ApiMethod(instanceRequired = true) public Long getBandwidthTotal(GregorianCalendar startDateTime, GregorianCalendar endDateTime, String direction, String side); /** * @see SoftLayer_Virtual_Guest::getBootOrder */ @ApiMethod(instanceRequired = true) public String getBootOrder(); /** * Gets the console access logs for a computing instance * * @see SoftLayer_Virtual_Guest::getConsoleAccessLog */ @ApiMethod(instanceRequired = true) public List getConsoleAccessLog(); /** * If the virtual server currently has an operating system that has a core capacity restriction, return the associated core-restricted operating system item price. Some operating systems (e.g., Red Hat Enterprise Linux) may be billed by the number of processor cores, so therefore require that a certain number of cores be present on the server. * * @see SoftLayer_Virtual_Guest::getCoreRestrictedOperatingSystemPrice */ @ApiMethod(instanceRequired = true) public Price getCoreRestrictedOperatingSystemPrice(); /** * Use this method when needing the metric data for a single guest's CPUs. It will gather the correct input parameters based on the date ranges * * @see SoftLayer_Virtual_Guest::getCpuMetricDataByDate */ @ApiMethod(instanceRequired = true) public List getCpuMetricDataByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, List cpuIndexes); /** * Use this method when needing a cpu usage image for a single guest. It will gather the correct input parameters for the generic graphing utility automatically based on the snapshot specified. * * @see SoftLayer_Virtual_Guest::getCpuMetricImage */ @ApiMethod(instanceRequired = true) public GraphOutputs getCpuMetricImage(String snapshotRange, GregorianCalendar dateSpecified); /** * Use this method when needing a CPU usage image for a single guest. It will gather the correct input parameters for the generic graphing utility based on the date ranges * * @see SoftLayer_Virtual_Guest::getCpuMetricImageByDate */ @ApiMethod(instanceRequired = true) public GraphOutputs getCpuMetricImageByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, List cpuIndexes); /** *
* There are many options that may be provided while ordering a computing instance, this method can be used to determine what these options are.
*
*
* Detailed information on the return value can be found on the data type page for [[SoftLayer_Container_Virtual_Guest_Configuration (type)]]. * * @see SoftLayer_Virtual_Guest::getCreateObjectOptions */ @ApiMethod public com.softlayer.api.service.container.virtual.guest.Configuration getCreateObjectOptions(); /** * getUpgradeItemPrices() retrieves a list of all upgrades available to a CloudLayer Computing Instance. Upgradeable items include, but are not limited to, number of cores, amount of RAM, storage configuration, and network port speed. * * @see SoftLayer_Virtual_Guest::getCurrentBillingDetail */ @ApiMethod(instanceRequired = true) public List getCurrentBillingDetail(); /** * Get the total billing price in US Dollars ($) for this instance. This includes all bandwidth used up to this point for this instance. * * @see SoftLayer_Virtual_Guest::getCurrentBillingTotal */ @ApiMethod(instanceRequired = true) public BigDecimal getCurrentBillingTotal(); /** * Retrieve bandwidth graph by date. * * @see SoftLayer_Virtual_Guest::getCustomBandwidthDataByDate */ @ApiMethod(instanceRequired = true) public Graph getCustomBandwidthDataByDate(Graph graphData); /** * Retrieve bandwidth graph by date. * * @see SoftLayer_Virtual_Guest::getCustomMetricDataByDate */ @ApiMethod(instanceRequired = true) public Graph getCustomMetricDataByDate(Graph graphData); /** * Return a drive retention SoftLayer_Item_Price object for a guest. * * @see SoftLayer_Virtual_Guest::getDriveRetentionItemPrice */ @ApiMethod(instanceRequired = true) public Price getDriveRetentionItemPrice(); /** * Get the subnets associated with this CloudLayer computing instance that are protectable by a network component firewall. * * @see SoftLayer_Virtual_Guest::getFirewallProtectableSubnets */ @ApiMethod(instanceRequired = true) public List getFirewallProtectableSubnets(); /** * @see SoftLayer_Virtual_Guest::getFirstAvailableBlockDevicePosition */ @ApiMethod(instanceRequired = true) public String getFirstAvailableBlockDevicePosition(); /** * @see SoftLayer_Virtual_Guest::getIsoBootImage */ @ApiMethod(instanceRequired = true) public Image getIsoBootImage(); /** * Return a collection of SoftLayer_Item_Price objects from a collection of SoftLayer_Software_Description * * @see SoftLayer_Virtual_Guest::getItemPricesFromSoftwareDescriptions */ @ApiMethod(instanceRequired = true) public List getItemPricesFromSoftwareDescriptions(List softwareDescriptions, Boolean includeTranslationsFlag, Boolean returnAllPricesFlag); /** * Use this method when needing the metric data for memory for a single computing instance. * * @see SoftLayer_Virtual_Guest::getMemoryMetricDataByDate */ @ApiMethod(instanceRequired = true) public List getMemoryMetricDataByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime); /** * Use this method when needing a memory usage image for a single guest. It will gather the correct input parameters for the generic graphing utility automatically based on the snapshot specified. * * @see SoftLayer_Virtual_Guest::getMemoryMetricImage */ @ApiMethod(instanceRequired = true) public GraphOutputs getMemoryMetricImage(String snapshotRange, GregorianCalendar dateSpecified); /** * Use this method when needing a image displaying the amount of memory used over time for a single computing instance. It will gather the correct input parameters for the generic graphing utility based on the date ranges * * @see SoftLayer_Virtual_Guest::getMemoryMetricImageByDate */ @ApiMethod(instanceRequired = true) public GraphOutputs getMemoryMetricImageByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime); /** * Returns open monitoring alarms for a given time period * * @see SoftLayer_Virtual_Guest::getMonitoringActiveAlarms */ @ApiMethod(instanceRequired = true) public List getMonitoringActiveAlarms(GregorianCalendar startDate, GregorianCalendar endDate); /** * Returns closed monitoring alarms for a given time period * * @see SoftLayer_Virtual_Guest::getMonitoringClosedAlarms */ @ApiMethod(instanceRequired = true) public List getMonitoringClosedAlarms(GregorianCalendar startDate, GregorianCalendar endDate); /** * Get the IP addresses associated with this CloudLayer computing instance that are protectable by a network component firewall. Note, this may not return all values for IPv6 subnets for this CloudLayer computing instance. Please use getFirewallProtectableSubnets to get all protectable subnets. * * @see SoftLayer_Virtual_Guest::getNetworkComponentFirewallProtectableIpAddresses */ @ApiMethod(instanceRequired = true) public List getNetworkComponentFirewallProtectableIpAddresses(); /** * @see SoftLayer_Virtual_Guest::getObject */ @ApiMethod(instanceRequired = true) public Guest getObject(); /** * Obtain an order container that is ready to be sent to the [[SoftLayer_Product_Order#placeOrder|SoftLayer_Product_Order::placeOrder]] method. This container will include all services that the selected computing instance has. If desired you may remove prices which were returned. * * @see SoftLayer_Virtual_Guest::getOrderTemplate */ @ApiMethod(instanceRequired = true) public Order getOrderTemplate(String billingType, List orderPrices); /** * @see SoftLayer_Virtual_Guest::getProvisionDate */ @ApiMethod(instanceRequired = true) public GregorianCalendar getProvisionDate(); /** * Recent metric data for a guest * * @see SoftLayer_Virtual_Guest::getRecentMetricData */ @ApiMethod(instanceRequired = true) public List getRecentMetricData(Long time); /** * Returns open monitoring alarms generated by monitoring agents that reside in the SoftLayer monitoring cluster.
*
* A monitoring agent with "remoteMonitoringAgentFlag" indicates that it work from SoftLayer monitoring cluster. If a monitoring agent does not have the flag, it resides in your cloud instance. * * @see SoftLayer_Virtual_Guest::getRemoteMonitoringActiveAlarms */ @ApiMethod(instanceRequired = true) public List getRemoteMonitoringActiveAlarms(GregorianCalendar startDate, GregorianCalendar endDate); /** * Returns closed monitoring alarms generated by monitoring agents that reside in the SoftLayer monitoring cluster.
*
* A monitoring agent with "remoteMonitoringAgentFlag" indicates that it work from SoftLayer monitoring cluster. If a monitoring agent does not have the flag, it resides in your cloud instance. * * @see SoftLayer_Virtual_Guest::getRemoteMonitoringClosedAlarms */ @ApiMethod(instanceRequired = true) public List getRemoteMonitoringClosedAlarms(GregorianCalendar startDate, GregorianCalendar endDate); /** * Retrieve the reverse domain records associated with this server. * * @see SoftLayer_Virtual_Guest::getReverseDomainRecords */ @ApiMethod(instanceRequired = true) public List getReverseDomainRecords(); /** * getUpgradeItemPrices() retrieves a list of all upgrades available to a CloudLayer Computing Instance. Upgradeable items include, but are not limited to, number of cores, amount of RAM, storage configuration, and network port speed.
*
* This method exclude downgrade item prices by default. You can set the "includeDowngradeItemPrices" parameter to true so that it can include downgrade item prices. * * @see SoftLayer_Virtual_Guest::getUpgradeItemPrices */ @ApiMethod(instanceRequired = true) public List getUpgradeItemPrices(Boolean includeDowngradeItemPrices); /** * This method will return the list of block device template groups that are valid to the host. For instance, it will validate that the template groups returned are compatible with the size and number of disks on the host. * * @see SoftLayer_Virtual_Guest::getValidBlockDeviceTemplateGroups */ @ApiMethod(instanceRequired = true) public List getValidBlockDeviceTemplateGroups(String visibility); /** * Issues a ping command and returns the success (true) or failure (false) of the ping command. * * @see SoftLayer_Virtual_Guest::isBackendPingable */ @ApiMethod(instanceRequired = true) public Boolean isBackendPingable(); /** * Issues a ping command and returns the success (true) or failure (false) of the ping command. * * @see SoftLayer_Virtual_Guest::isPingable */ @ApiMethod(instanceRequired = true) public Boolean isPingable(); /** * Closes the public or private ports to isolate the instance before a destructive action. * * @see SoftLayer_Virtual_Guest::isolateInstanceForDestructiveAction */ @ApiMethod(instanceRequired = true) public Void isolateInstanceForDestructiveAction(); /** * Creates a transaction to migrate a virtual guest to a new host. NOTE: Will only migrate if SoftLayer_Virtual_Guest property pendingMigrationFlag = true * * @see SoftLayer_Virtual_Guest::migrate */ @ApiMethod(instanceRequired = true) public Transaction migrate(); /** * Create a transaction to migrate an instance from one dedicated host to another dedicated host * * @see SoftLayer_Virtual_Guest::migrateDedicatedHost */ @ApiMethod(instanceRequired = true) public Void migrateDedicatedHost(Long destinationHostId); /** * @see SoftLayer_Virtual_Guest::mountIsoImage */ @ApiMethod(instanceRequired = true) public Transaction mountIsoImage(Long diskImageId); /** * Pause a virtual guest * * @see SoftLayer_Virtual_Guest::pause */ @ApiMethod(instanceRequired = true) public Boolean pause(); /** * Power cycle a virtual guest * * @see SoftLayer_Virtual_Guest::powerCycle */ @ApiMethod(instanceRequired = true) public Boolean powerCycle(); /** * Power off a virtual guest * * @see SoftLayer_Virtual_Guest::powerOff */ @ApiMethod(instanceRequired = true) public Boolean powerOff(); /** * Power off a virtual guest * * @see SoftLayer_Virtual_Guest::powerOffSoft */ @ApiMethod(instanceRequired = true) public Boolean powerOffSoft(); /** * Power on a virtual guest * * @see SoftLayer_Virtual_Guest::powerOn */ @ApiMethod(instanceRequired = true) public Boolean powerOn(); /** * Power cycle a virtual guest * * @see SoftLayer_Virtual_Guest::rebootDefault */ @ApiMethod(instanceRequired = true) public Boolean rebootDefault(); /** * Power cycle a guest. * * @see SoftLayer_Virtual_Guest::rebootHard */ @ApiMethod(instanceRequired = true) public Boolean rebootHard(); /** * Attempt to complete a soft reboot of a guest by shutting down the operating system. * * @see SoftLayer_Virtual_Guest::rebootSoft */ @ApiMethod(instanceRequired = true) public Boolean rebootSoft(); /** * Create a transaction to perform an OS reload * * @see SoftLayer_Virtual_Guest::reloadCurrentOperatingSystemConfiguration */ @ApiMethod(instanceRequired = true) public Transaction reloadCurrentOperatingSystemConfiguration(); /** * Reloads current operating system configuration.
*
* This service has a confirmation protocol for proceeding with the reload. To proceed with the reload without confirmation, simply pass in 'FORCE' as the token parameter. To proceed with the reload with confirmation, simply call the service with no parameter. A token string will be returned by this service. The token will remain active for 10 minutes. Use this token as the parameter to confirm that a reload is to be performed for the server.
*
* As a precaution, we strongly recommend backing up all data before reloading the operating system. The reload will format the primary disk and will reconfigure the computing instance to the current specifications on record.
*
* If reloading from an image template, we recommend first getting the list of valid private block device template groups, by calling the getOperatingSystemReloadImages method. * * @see SoftLayer_Virtual_Guest::reloadOperatingSystem */ @ApiMethod(instanceRequired = true) public String reloadOperatingSystem(String token, Configuration config); /** * This method is used to remove access to a SoftLayer_Network_Storage volume that supports host- or network-level access control. * * @see SoftLayer_Virtual_Guest::removeAccessToNetworkStorage */ @ApiMethod(instanceRequired = true) public Boolean removeAccessToNetworkStorage(Storage networkStorageTemplateObject); /** * This method is used to allow access to multiple SoftLayer_Network_Storage volumes that support host- or network-level access control. * * @see SoftLayer_Virtual_Guest::removeAccessToNetworkStorageList */ @ApiMethod(instanceRequired = true) public Boolean removeAccessToNetworkStorageList(List networkStorageTemplateObjects); /** * Resume a virtual guest * * @see SoftLayer_Virtual_Guest::resume */ @ApiMethod(instanceRequired = true) public Boolean resume(); /** * Sets the private network interface speed to the new speed. Speed values can only be 0 (Disconnect), 10, 100, or 1000. The new speed must be equal to or less than the max speed of the interface.
*
* It will take less than a minute to update the port speed. * * @see SoftLayer_Virtual_Guest::setPrivateNetworkInterfaceSpeed */ @ApiMethod(instanceRequired = true) public Boolean setPrivateNetworkInterfaceSpeed(Long newSpeed); /** * Sets the public network interface speed to the new speed. Speed values can only be 0 (Disconnect), 10, 100, or 1000. The new speed must be equal to or less than the max speed of the interface.
*
* It will take less than a minute to update the port speed. * * @see SoftLayer_Virtual_Guest::setPublicNetworkInterfaceSpeed */ @ApiMethod(instanceRequired = true) public Boolean setPublicNetworkInterfaceSpeed(Long newSpeed); /** * @see SoftLayer_Virtual_Guest::setTags */ @ApiMethod(instanceRequired = true) public Boolean setTags(String tags); /** * Sets the data that will be written to the configuration drive. * * @see SoftLayer_Virtual_Guest::setUserMetadata */ @ApiMethod(instanceRequired = true) public Boolean setUserMetadata(List metadata); /** * Shuts down the private network port * * @see SoftLayer_Virtual_Guest::shutdownPrivatePort */ @ApiMethod(instanceRequired = true) public Boolean shutdownPrivatePort(); /** * Shuts down the public network port * * @see SoftLayer_Virtual_Guest::shutdownPublicPort */ @ApiMethod(instanceRequired = true) public Boolean shutdownPublicPort(); /** * @see SoftLayer_Virtual_Guest::unmountIsoImage */ @ApiMethod(instanceRequired = true) public Transaction unmountIsoImage(); /** * Validate an image template for OS Reload * * @see SoftLayer_Virtual_Guest::validateImageTemplate */ @ApiMethod(instanceRequired = true) public Boolean validateImageTemplate(Long imageTemplateId); /** * Verify that a virtual server can go through the operating system reload process. It may be useful to call this method before attempting to actually reload the operating system just to verify that the reload will go smoothly. If the server configuration is not setup correctly or there is some other issue, an exception will be thrown indicating the error. If there were no issues, this will just return true. * * @see SoftLayer_Virtual_Guest::verifyReloadOperatingSystem */ @ApiMethod(instanceRequired = true) public Boolean verifyReloadOperatingSystem(Configuration config); /** * The account that a virtual guest belongs to. * * @see SoftLayer_Virtual_Guest::getAccount */ @ApiMethod(instanceRequired = true) public Account getAccount(); /** * @see SoftLayer_Virtual_Guest::getAccountOwnedPoolFlag */ @ApiMethod(instanceRequired = true) public Boolean getAccountOwnedPoolFlag(); /** * A virtual guest's currently active network monitoring incidents. * * @see SoftLayer_Virtual_Guest::getActiveNetworkMonitorIncident */ @ApiMethod(instanceRequired = true) public List getActiveNetworkMonitorIncident(); /** * @see SoftLayer_Virtual_Guest::getActiveTickets */ @ApiMethod(instanceRequired = true) public List getActiveTickets(); /** * A transaction that is still be performed on a cloud server. * * @see SoftLayer_Virtual_Guest::getActiveTransaction */ @ApiMethod(instanceRequired = true) public Transaction getActiveTransaction(); /** * Any active transaction(s) that are currently running for the server (example: os reload). * * @see SoftLayer_Virtual_Guest::getActiveTransactions */ @ApiMethod(instanceRequired = true) public List getActiveTransactions(); /** * The SoftLayer_Network_Storage_Allowed_Host information to connect this Virtual Guest to Network Storage volumes that require access control lists. * * @see SoftLayer_Virtual_Guest::getAllowedHost */ @ApiMethod(instanceRequired = true) public com.softlayer.api.service.network.storage.allowed.Host getAllowedHost(); /** * The SoftLayer_Network_Storage objects that this SoftLayer_Virtual_Guest has access to. * * @see SoftLayer_Virtual_Guest::getAllowedNetworkStorage */ @ApiMethod(instanceRequired = true) public List getAllowedNetworkStorage(); /** * The SoftLayer_Network_Storage objects whose Replica that this SoftLayer_Virtual_Guest has access to. * * @see SoftLayer_Virtual_Guest::getAllowedNetworkStorageReplicas */ @ApiMethod(instanceRequired = true) public List getAllowedNetworkStorageReplicas(); /** * A antivirus / spyware software component object. * * @see SoftLayer_Virtual_Guest::getAntivirusSpywareSoftwareComponent */ @ApiMethod(instanceRequired = true) public Component getAntivirusSpywareSoftwareComponent(); /** * @see SoftLayer_Virtual_Guest::getApplicationDeliveryController */ @ApiMethod(instanceRequired = true) public Controller getApplicationDeliveryController(); /** * @see SoftLayer_Virtual_Guest::getAttributes */ @ApiMethod(instanceRequired = true) public List getAttributes(); /** * An object that stores the maximum level for the monitoring query types and response types. * * @see SoftLayer_Virtual_Guest::getAvailableMonitoring */ @ApiMethod(instanceRequired = true) public List getAvailableMonitoring(); /** * The average daily private bandwidth usage for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getAverageDailyPrivateBandwidthUsage */ @ApiMethod(instanceRequired = true) public BigDecimal getAverageDailyPrivateBandwidthUsage(); /** * The average daily public bandwidth usage for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getAverageDailyPublicBandwidthUsage */ @ApiMethod(instanceRequired = true) public BigDecimal getAverageDailyPublicBandwidthUsage(); /** * A guests's backend network components. * * @see SoftLayer_Virtual_Guest::getBackendNetworkComponents */ @ApiMethod(instanceRequired = true) public List getBackendNetworkComponents(); /** * A guest's backend or private router. * * @see SoftLayer_Virtual_Guest::getBackendRouters */ @ApiMethod(instanceRequired = true) public List getBackendRouters(); /** * A computing instance's allotted bandwidth (measured in GB). * * @see SoftLayer_Virtual_Guest::getBandwidthAllocation */ @ApiMethod(instanceRequired = true) public BigDecimal getBandwidthAllocation(); /** * A computing instance's allotted detail record. Allotment details link bandwidth allocation with allotments. * * @see SoftLayer_Virtual_Guest::getBandwidthAllotmentDetail */ @ApiMethod(instanceRequired = true) public Detail getBandwidthAllotmentDetail(); /** * The raw bandwidth usage data for the current billing cycle. One object will be returned for each network this server is attached to. * * @see SoftLayer_Virtual_Guest::getBillingCycleBandwidthUsage */ @ApiMethod(instanceRequired = true) public List getBillingCycleBandwidthUsage(); /** * The raw private bandwidth usage data for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getBillingCyclePrivateBandwidthUsage */ @ApiMethod(instanceRequired = true) public Usage getBillingCyclePrivateBandwidthUsage(); /** * The raw public bandwidth usage data for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getBillingCyclePublicBandwidthUsage */ @ApiMethod(instanceRequired = true) public Usage getBillingCyclePublicBandwidthUsage(); /** * The billing item for a CloudLayer Compute Instance. * * @see SoftLayer_Virtual_Guest::getBillingItem */ @ApiMethod(instanceRequired = true) public com.softlayer.api.service.billing.item.virtual.Guest getBillingItem(); /** * Determines whether the instance is ineligible for cancellation because it is disconnected. * * @see SoftLayer_Virtual_Guest::getBlockCancelBecauseDisconnectedFlag */ @ApiMethod(instanceRequired = true) public Boolean getBlockCancelBecauseDisconnectedFlag(); /** * The global identifier for the image template that was used to provision or reload a guest. * * @see SoftLayer_Virtual_Guest::getBlockDeviceTemplateGroup */ @ApiMethod(instanceRequired = true) public Group getBlockDeviceTemplateGroup(); /** * A computing instance's block devices. Block devices link [[SoftLayer_Virtual_Disk_Image|disk images]] to computing instances. * * @see SoftLayer_Virtual_Guest::getBlockDevices */ @ApiMethod(instanceRequired = true) public List getBlockDevices(); /** * A flag indicating a computing instance's console IP address is assigned. * * @see SoftLayer_Virtual_Guest::getConsoleIpAddressFlag */ @ApiMethod(instanceRequired = true) public Boolean getConsoleIpAddressFlag(); /** * A record containing information about a computing instance's console IP and port number. * * @see SoftLayer_Virtual_Guest::getConsoleIpAddressRecord */ @ApiMethod(instanceRequired = true) public com.softlayer.api.service.virtual.guest.network.component.IpAddress getConsoleIpAddressRecord(); /** * A continuous data protection software component object. * * @see SoftLayer_Virtual_Guest::getContinuousDataProtectionSoftwareComponent */ @ApiMethod(instanceRequired = true) public Component getContinuousDataProtectionSoftwareComponent(); /** * A guest's control panel. * * @see SoftLayer_Virtual_Guest::getControlPanel */ @ApiMethod(instanceRequired = true) public Component getControlPanel(); /** * An object that provides commonly used bandwidth summary components for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getCurrentBandwidthSummary */ @ApiMethod(instanceRequired = true) public Summary getCurrentBandwidthSummary(); /** * The datacenter that a virtual guest resides in. * * @see SoftLayer_Virtual_Guest::getDatacenter */ @ApiMethod(instanceRequired = true) public Location getDatacenter(); /** * The dedicated host associated with this guest. * * @see SoftLayer_Virtual_Guest::getDedicatedHost */ @ApiMethod(instanceRequired = true) public DedicatedHost getDedicatedHost(); /** * A guest's associated EVault network storage service account. * * @see SoftLayer_Virtual_Guest::getEvaultNetworkStorage */ @ApiMethod(instanceRequired = true) public List getEvaultNetworkStorage(); /** * A computing instance's hardware firewall services. * * @see SoftLayer_Virtual_Guest::getFirewallServiceComponent */ @ApiMethod(instanceRequired = true) public Firewall getFirewallServiceComponent(); /** * A guest's frontend network components. * * @see SoftLayer_Virtual_Guest::getFrontendNetworkComponents */ @ApiMethod(instanceRequired = true) public List getFrontendNetworkComponents(); /** * A guest's frontend or public router. * * @see SoftLayer_Virtual_Guest::getFrontendRouters */ @ApiMethod(instanceRequired = true) public Hardware getFrontendRouters(); /** * A guest's universally unique identifier. * * @see SoftLayer_Virtual_Guest::getGlobalIdentifier */ @ApiMethod(instanceRequired = true) public String getGlobalIdentifier(); /** * @see SoftLayer_Virtual_Guest::getGuestBootParameter */ @ApiMethod(instanceRequired = true) public Parameter getGuestBootParameter(); /** * The virtual host on which a virtual guest resides (available only on private clouds). * * @see SoftLayer_Virtual_Guest::getHost */ @ApiMethod(instanceRequired = true) public com.softlayer.api.service.virtual.Host getHost(); /** * A host IPS software component object. * * @see SoftLayer_Virtual_Guest::getHostIpsSoftwareComponent */ @ApiMethod(instanceRequired = true) public Component getHostIpsSoftwareComponent(); /** * Whether or not a computing instance is billed hourly instead of monthly. * * @see SoftLayer_Virtual_Guest::getHourlyBillingFlag */ @ApiMethod(instanceRequired = true) public Boolean getHourlyBillingFlag(); /** * The total private inbound bandwidth for this computing instance for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getInboundPrivateBandwidthUsage */ @ApiMethod(instanceRequired = true) public BigDecimal getInboundPrivateBandwidthUsage(); /** * The total public inbound bandwidth for this computing instance for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getInboundPublicBandwidthUsage */ @ApiMethod(instanceRequired = true) public BigDecimal getInboundPublicBandwidthUsage(); /** * @see SoftLayer_Virtual_Guest::getInternalTagReferences */ @ApiMethod(instanceRequired = true) public List getInternalTagReferences(); /** * The last known power state of a virtual guest in the event the guest is turned off outside of IMS or has gone offline. * * @see SoftLayer_Virtual_Guest::getLastKnownPowerState */ @ApiMethod(instanceRequired = true) public State getLastKnownPowerState(); /** * The last transaction that a cloud server's operating system was loaded. * * @see SoftLayer_Virtual_Guest::getLastOperatingSystemReload */ @ApiMethod(instanceRequired = true) public Transaction getLastOperatingSystemReload(); /** * The last transaction a cloud server had performed. * * @see SoftLayer_Virtual_Guest::getLastTransaction */ @ApiMethod(instanceRequired = true) public Transaction getLastTransaction(); /** * A virtual guest's latest network monitoring incident. * * @see SoftLayer_Virtual_Guest::getLatestNetworkMonitorIncident */ @ApiMethod(instanceRequired = true) public Incident getLatestNetworkMonitorIncident(); /** * A flag indicating that the virtual guest has at least one disk which is local to the host it runs on. This does not include a SWAP device. * * @see SoftLayer_Virtual_Guest::getLocalDiskFlag */ @ApiMethod(instanceRequired = true) public Boolean getLocalDiskFlag(); /** * Where guest is located within SoftLayer's location hierarchy. * * @see SoftLayer_Virtual_Guest::getLocation */ @ApiMethod(instanceRequired = true) public Location getLocation(); /** * A flag indicating that the virtual guest is a managed resource. * * @see SoftLayer_Virtual_Guest::getManagedResourceFlag */ @ApiMethod(instanceRequired = true) public Boolean getManagedResourceFlag(); /** * A guest's metric tracking object. * * @see SoftLayer_Virtual_Guest::getMetricTrackingObject */ @ApiMethod(instanceRequired = true) public Object getMetricTrackingObject(); /** * The metric tracking object id for this guest. * * @see SoftLayer_Virtual_Guest::getMetricTrackingObjectId */ @ApiMethod(instanceRequired = true) public Long getMetricTrackingObjectId(); /** * @see SoftLayer_Virtual_Guest::getMonitoringAgents */ @ApiMethod(instanceRequired = true) public List getMonitoringAgents(); /** * @see SoftLayer_Virtual_Guest::getMonitoringRobot */ @ApiMethod(instanceRequired = true) public Robot getMonitoringRobot(); /** * A virtual guest's network monitoring services. * * @see SoftLayer_Virtual_Guest::getMonitoringServiceComponent */ @ApiMethod(instanceRequired = true) public Stratum getMonitoringServiceComponent(); /** * @see SoftLayer_Virtual_Guest::getMonitoringServiceEligibilityFlag */ @ApiMethod(instanceRequired = true) public Boolean getMonitoringServiceEligibilityFlag(); /** * @see SoftLayer_Virtual_Guest::getMonitoringServiceFlag */ @ApiMethod(instanceRequired = true) public Boolean getMonitoringServiceFlag(); /** * The monitoring notification objects for this guest. Each object links this guest instance to a user account that will be notified if monitoring on this guest object fails * * @see SoftLayer_Virtual_Guest::getMonitoringUserNotification */ @ApiMethod(instanceRequired = true) public List getMonitoringUserNotification(); /** * A guests's network components. * * @see SoftLayer_Virtual_Guest::getNetworkComponents */ @ApiMethod(instanceRequired = true) public List getNetworkComponents(); /** * All of a virtual guest's network monitoring incidents. * * @see SoftLayer_Virtual_Guest::getNetworkMonitorIncidents */ @ApiMethod(instanceRequired = true) public List getNetworkMonitorIncidents(); /** * A guests's network monitors. * * @see SoftLayer_Virtual_Guest::getNetworkMonitors */ @ApiMethod(instanceRequired = true) public List getNetworkMonitors(); /** * A guest's associated network storage accounts. * * @see SoftLayer_Virtual_Guest::getNetworkStorage */ @ApiMethod(instanceRequired = true) public List getNetworkStorage(); /** * The network Vlans that a guest's network components are associated with. * * @see SoftLayer_Virtual_Guest::getNetworkVlans */ @ApiMethod(instanceRequired = true) public List getNetworkVlans(); /** * An open ticket requesting cancellation of this server, if one exists. * * @see SoftLayer_Virtual_Guest::getOpenCancellationTicket */ @ApiMethod(instanceRequired = true) public Ticket getOpenCancellationTicket(); /** * A guest's operating system. * * @see SoftLayer_Virtual_Guest::getOperatingSystem */ @ApiMethod(instanceRequired = true) public OperatingSystem getOperatingSystem(); /** * A guest's operating system software description. * * @see SoftLayer_Virtual_Guest::getOperatingSystemReferenceCode */ @ApiMethod(instanceRequired = true) public String getOperatingSystemReferenceCode(); /** * The original package id provided with the order for a Cloud Computing Instance. * * @see SoftLayer_Virtual_Guest::getOrderedPackageId */ @ApiMethod(instanceRequired = true) public String getOrderedPackageId(); /** * The total private outbound bandwidth for this computing instance for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getOutboundPrivateBandwidthUsage */ @ApiMethod(instanceRequired = true) public BigDecimal getOutboundPrivateBandwidthUsage(); /** * The total public outbound bandwidth for this computing instance for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getOutboundPublicBandwidthUsage */ @ApiMethod(instanceRequired = true) public BigDecimal getOutboundPublicBandwidthUsage(); /** * Whether the bandwidth usage for this computing instance for the current billing cycle exceeds the allocation. * * @see SoftLayer_Virtual_Guest::getOverBandwidthAllocationFlag */ @ApiMethod(instanceRequired = true) public Long getOverBandwidthAllocationFlag(); /** * When true this virtual guest must be migrated using SoftLayer_Virtual_Guest::migrate. * * @see SoftLayer_Virtual_Guest::getPendingMigrationFlag */ @ApiMethod(instanceRequired = true) public Boolean getPendingMigrationFlag(); /** * The current power state of a virtual guest. * * @see SoftLayer_Virtual_Guest::getPowerState */ @ApiMethod(instanceRequired = true) public State getPowerState(); /** * A guest's primary private IP address. * * @see SoftLayer_Virtual_Guest::getPrimaryBackendIpAddress */ @ApiMethod(instanceRequired = true) public String getPrimaryBackendIpAddress(); /** * A guest's primary backend network component. * * @see SoftLayer_Virtual_Guest::getPrimaryBackendNetworkComponent */ @ApiMethod(instanceRequired = true) public com.softlayer.api.service.virtual.guest.network.Component getPrimaryBackendNetworkComponent(); /** * The guest's primary public IP address. * * @see SoftLayer_Virtual_Guest::getPrimaryIpAddress */ @ApiMethod(instanceRequired = true) public String getPrimaryIpAddress(); /** * A guest's primary public network component. * * @see SoftLayer_Virtual_Guest::getPrimaryNetworkComponent */ @ApiMethod(instanceRequired = true) public com.softlayer.api.service.virtual.guest.network.Component getPrimaryNetworkComponent(); /** * Whether the computing instance only has access to the private network. * * @see SoftLayer_Virtual_Guest::getPrivateNetworkOnlyFlag */ @ApiMethod(instanceRequired = true) public Boolean getPrivateNetworkOnlyFlag(); /** * Whether the bandwidth usage for this computing instance for the current billing cycle is projected to exceed the allocation. * * @see SoftLayer_Virtual_Guest::getProjectedOverBandwidthAllocationFlag */ @ApiMethod(instanceRequired = true) public Long getProjectedOverBandwidthAllocationFlag(); /** * The projected public outbound bandwidth for this computing instance for the current billing cycle. * * @see SoftLayer_Virtual_Guest::getProjectedPublicBandwidthUsage */ @ApiMethod(instanceRequired = true) public BigDecimal getProjectedPublicBandwidthUsage(); /** * Recent events that impact this computing instance. * * @see SoftLayer_Virtual_Guest::getRecentEvents */ @ApiMethod(instanceRequired = true) public List getRecentEvents(); /** * The regional group this guest is in. * * @see SoftLayer_Virtual_Guest::getRegionalGroup */ @ApiMethod(instanceRequired = true) public Regional getRegionalGroup(); /** * @see SoftLayer_Virtual_Guest::getRegionalInternetRegistry */ @ApiMethod(instanceRequired = true) public Registry getRegionalInternetRegistry(); /** * Collection of scale assets this guest corresponds to. * * @see SoftLayer_Virtual_Guest::getScaleAssets */ @ApiMethod(instanceRequired = true) public List getScaleAssets(); /** * The scale member for this guest, if applicable. * * @see SoftLayer_Virtual_Guest::getScaleMember */ @ApiMethod(instanceRequired = true) public com.softlayer.api.service.scale.member.virtual.Guest getScaleMember(); /** * Whether or not this guest is a member of a scale group and was automatically created as part of a scale group action. * * @see SoftLayer_Virtual_Guest::getScaledFlag */ @ApiMethod(instanceRequired = true) public Boolean getScaledFlag(); /** * A guest's vulnerability scan requests. * * @see SoftLayer_Virtual_Guest::getSecurityScanRequests */ @ApiMethod(instanceRequired = true) public List getSecurityScanRequests(); /** * The server room that a guest is located at. There may be more than one server room for every data center. * * @see SoftLayer_Virtual_Guest::getServerRoom */ @ApiMethod(instanceRequired = true) public Location getServerRoom(); /** * A guest's installed software. * * @see SoftLayer_Virtual_Guest::getSoftwareComponents */ @ApiMethod(instanceRequired = true) public List getSoftwareComponents(); /** * SSH keys to be installed on the server during provisioning or an OS reload. * * @see SoftLayer_Virtual_Guest::getSshKeys */ @ApiMethod(instanceRequired = true) public List getSshKeys(); /** * A computing instance's status. * * @see SoftLayer_Virtual_Guest::getStatus */ @ApiMethod(instanceRequired = true) public Status getStatus(); /** * @see SoftLayer_Virtual_Guest::getTagReferences */ @ApiMethod(instanceRequired = true) public List getTagReferences(); /** * The type of this virtual guest. * * @see SoftLayer_Virtual_Guest::getType */ @ApiMethod(instanceRequired = true) public Type getType(); /** * A computing instance's associated upgrade request object if any. * * @see SoftLayer_Virtual_Guest::getUpgradeRequest */ @ApiMethod(instanceRequired = true) public Request getUpgradeRequest(); /** * A base64 encoded string containing custom user data for a Cloud Computing Instance order. * * @see SoftLayer_Virtual_Guest::getUserData */ @ApiMethod(instanceRequired = true) public List getUserData(); /** * A list of users that have access to this computing instance. * * @see SoftLayer_Virtual_Guest::getUsers */ @ApiMethod(instanceRequired = true) public List getUsers(); /** * The name of the bandwidth allotment that a hardware belongs too. * * @see SoftLayer_Virtual_Guest::getVirtualRack */ @ApiMethod(instanceRequired = true) public Allotment getVirtualRack(); /** * The id of the bandwidth allotment that a computing instance belongs too. * * @see SoftLayer_Virtual_Guest::getVirtualRackId */ @ApiMethod(instanceRequired = true) public Long getVirtualRackId(); /** * The name of the bandwidth allotment that a computing instance belongs too. * * @see SoftLayer_Virtual_Guest::getVirtualRackName */ @ApiMethod(instanceRequired = true) public String getVirtualRackName(); } public static interface ServiceAsync extends com.softlayer.api.ServiceAsync { public Mask withNewMask(); public Mask withMask(); public void setMask(Mask mask); /** * Async version of {@link Service#activatePrivatePort} */ public Future activatePrivatePort(); public Future activatePrivatePort(ResponseHandler callback); /** * Async version of {@link Service#activatePublicPort} */ public Future activatePublicPort(); public Future activatePublicPort(ResponseHandler callback); /** * Async version of {@link Service#allowAccessToNetworkStorage} */ public Future allowAccessToNetworkStorage(Storage networkStorageTemplateObject); public Future allowAccessToNetworkStorage(Storage networkStorageTemplateObject, ResponseHandler callback); /** * Async version of {@link Service#allowAccessToNetworkStorageList} */ public Future allowAccessToNetworkStorageList(List networkStorageTemplateObjects); public Future allowAccessToNetworkStorageList(List networkStorageTemplateObjects, ResponseHandler callback); /** * Async version of {@link Service#attachDiskImage} */ public Future attachDiskImage(Long imageId); public Future attachDiskImage(Long imageId, ResponseHandler callback); /** * Async version of {@link Service#cancelIsolationForDestructiveAction} */ public Future cancelIsolationForDestructiveAction(); public Future cancelIsolationForDestructiveAction(ResponseHandler callback); /** * Async version of {@link Service#captureImage} */ public Future captureImage(Template captureTemplate); public Future captureImage(Template captureTemplate, ResponseHandler callback); /** * Async version of {@link Service#checkHostDiskAvailability} */ public Future checkHostDiskAvailability(Long diskCapacity); public Future checkHostDiskAvailability(Long diskCapacity, ResponseHandler callback); /** * Async version of {@link Service#closeAlarm} */ public Future closeAlarm(String alarmId); public Future closeAlarm(String alarmId, ResponseHandler callback); /** * Async version of {@link Service#configureMetadataDisk} */ public Future configureMetadataDisk(); public Future configureMetadataDisk(ResponseHandler callback); /** * Async version of {@link Service#createArchiveTransaction} */ public Future createArchiveTransaction(String groupName, List blockDevices, String note); public Future createArchiveTransaction(String groupName, List blockDevices, String note, ResponseHandler callback); /** * Async version of {@link Service#createObject} */ public Future createObject(Guest templateObject); public Future createObject(Guest templateObject, ResponseHandler callback); /** * Async version of {@link Service#createObjects} */ public Future> createObjects(List templateObjects); public Future createObjects(List templateObjects, ResponseHandler> callback); /** * Async version of {@link Service#createPostSoftwareInstallTransaction} */ public Future createPostSoftwareInstallTransaction(String data, Boolean returnBoolean); public Future createPostSoftwareInstallTransaction(String data, Boolean returnBoolean, ResponseHandler callback); /** * Async version of {@link Service#deleteObject} */ public Future deleteObject(); public Future deleteObject(ResponseHandler callback); /** * Async version of {@link Service#detachDiskImage} */ public Future detachDiskImage(Long imageId); public Future detachDiskImage(Long imageId, ResponseHandler callback); /** * Async version of {@link Service#editObject} */ public Future editObject(Guest templateObject); public Future editObject(Guest templateObject, ResponseHandler callback); /** * Async version of {@link Service#executeIderaBareMetalRestore} */ public Future executeIderaBareMetalRestore(); public Future executeIderaBareMetalRestore(ResponseHandler callback); /** * Async version of {@link Service#executeR1SoftBareMetalRestore} */ public Future executeR1SoftBareMetalRestore(); public Future executeR1SoftBareMetalRestore(ResponseHandler callback); /** * Async version of {@link Service#executeRemoteScript} */ public Future executeRemoteScript(String uri); public Future executeRemoteScript(String uri, ResponseHandler callback); /** * Async version of {@link Service#executeRescueLayer} */ public Future executeRescueLayer(); public Future executeRescueLayer(ResponseHandler callback); /** * Async version of {@link Service#findByIpAddress} */ public Future findByIpAddress(String ipAddress); public Future findByIpAddress(String ipAddress, ResponseHandler callback); /** * Async version of {@link Service#generateOrderTemplate} */ public Future generateOrderTemplate(Guest templateObject); public Future generateOrderTemplate(Guest templateObject, ResponseHandler callback); /** * Async version of {@link Service#getAdditionalRequiredPricesForOsReload} */ public Future> getAdditionalRequiredPricesForOsReload(Configuration config); public Future getAdditionalRequiredPricesForOsReload(Configuration config, ResponseHandler> callback); /** * Async version of {@link Service#getAlarmHistory} */ public Future> getAlarmHistory(GregorianCalendar startDate, GregorianCalendar endDate, String alarmId); public Future getAlarmHistory(GregorianCalendar startDate, GregorianCalendar endDate, String alarmId, ResponseHandler> callback); /** * Async version of {@link Service#getAttachedNetworkStorages} */ public Future> getAttachedNetworkStorages(String nasType); public Future getAttachedNetworkStorages(String nasType, ResponseHandler> callback); /** * Async version of {@link Service#getAvailableBlockDevicePositions} */ public Future> getAvailableBlockDevicePositions(); public Future getAvailableBlockDevicePositions(ResponseHandler> callback); /** * Async version of {@link Service#getAvailableNetworkStorages} */ public Future> getAvailableNetworkStorages(String nasType); public Future getAvailableNetworkStorages(String nasType, ResponseHandler> callback); /** * Async version of {@link Service#getBandwidthDataByDate} */ public Future> getBandwidthDataByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, String networkType); public Future getBandwidthDataByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, String networkType, ResponseHandler> callback); /** * Async version of {@link Service#getBandwidthForDateRange} */ public Future> getBandwidthForDateRange(GregorianCalendar startDate, GregorianCalendar endDate); public Future getBandwidthForDateRange(GregorianCalendar startDate, GregorianCalendar endDate, ResponseHandler> callback); /** * Async version of {@link Service#getBandwidthImage} */ public Future getBandwidthImage(String networkType, String snapshotRange, GregorianCalendar dateSpecified, GregorianCalendar dateSpecifiedEnd); public Future getBandwidthImage(String networkType, String snapshotRange, GregorianCalendar dateSpecified, GregorianCalendar dateSpecifiedEnd, ResponseHandler callback); /** * Async version of {@link Service#getBandwidthImageByDate} */ public Future getBandwidthImageByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, String networkType); public Future getBandwidthImageByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, String networkType, ResponseHandler callback); /** * Async version of {@link Service#getBandwidthTotal} */ public Future getBandwidthTotal(GregorianCalendar startDateTime, GregorianCalendar endDateTime, String direction, String side); public Future getBandwidthTotal(GregorianCalendar startDateTime, GregorianCalendar endDateTime, String direction, String side, ResponseHandler callback); /** * Async version of {@link Service#getBootOrder} */ public Future getBootOrder(); public Future getBootOrder(ResponseHandler callback); /** * Async version of {@link Service#getConsoleAccessLog} */ public Future> getConsoleAccessLog(); public Future getConsoleAccessLog(ResponseHandler> callback); /** * Async version of {@link Service#getCoreRestrictedOperatingSystemPrice} */ public Future getCoreRestrictedOperatingSystemPrice(); public Future getCoreRestrictedOperatingSystemPrice(ResponseHandler callback); /** * Async version of {@link Service#getCpuMetricDataByDate} */ public Future> getCpuMetricDataByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, List cpuIndexes); public Future getCpuMetricDataByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, List cpuIndexes, ResponseHandler> callback); /** * Async version of {@link Service#getCpuMetricImage} */ public Future getCpuMetricImage(String snapshotRange, GregorianCalendar dateSpecified); public Future getCpuMetricImage(String snapshotRange, GregorianCalendar dateSpecified, ResponseHandler callback); /** * Async version of {@link Service#getCpuMetricImageByDate} */ public Future getCpuMetricImageByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, List cpuIndexes); public Future getCpuMetricImageByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, List cpuIndexes, ResponseHandler callback); /** * Async version of {@link Service#getCreateObjectOptions} */ public Future getCreateObjectOptions(); public Future getCreateObjectOptions(ResponseHandler callback); /** * Async version of {@link Service#getCurrentBillingDetail} */ public Future> getCurrentBillingDetail(); public Future getCurrentBillingDetail(ResponseHandler> callback); /** * Async version of {@link Service#getCurrentBillingTotal} */ public Future getCurrentBillingTotal(); public Future getCurrentBillingTotal(ResponseHandler callback); /** * Async version of {@link Service#getCustomBandwidthDataByDate} */ public Future getCustomBandwidthDataByDate(Graph graphData); public Future getCustomBandwidthDataByDate(Graph graphData, ResponseHandler callback); /** * Async version of {@link Service#getCustomMetricDataByDate} */ public Future getCustomMetricDataByDate(Graph graphData); public Future getCustomMetricDataByDate(Graph graphData, ResponseHandler callback); /** * Async version of {@link Service#getDriveRetentionItemPrice} */ public Future getDriveRetentionItemPrice(); public Future getDriveRetentionItemPrice(ResponseHandler callback); /** * Async version of {@link Service#getFirewallProtectableSubnets} */ public Future> getFirewallProtectableSubnets(); public Future getFirewallProtectableSubnets(ResponseHandler> callback); /** * Async version of {@link Service#getFirstAvailableBlockDevicePosition} */ public Future getFirstAvailableBlockDevicePosition(); public Future getFirstAvailableBlockDevicePosition(ResponseHandler callback); /** * Async version of {@link Service#getIsoBootImage} */ public Future getIsoBootImage(); public Future getIsoBootImage(ResponseHandler callback); /** * Async version of {@link Service#getItemPricesFromSoftwareDescriptions} */ public Future> getItemPricesFromSoftwareDescriptions(List softwareDescriptions, Boolean includeTranslationsFlag, Boolean returnAllPricesFlag); public Future getItemPricesFromSoftwareDescriptions(List softwareDescriptions, Boolean includeTranslationsFlag, Boolean returnAllPricesFlag, ResponseHandler> callback); /** * Async version of {@link Service#getMemoryMetricDataByDate} */ public Future> getMemoryMetricDataByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime); public Future getMemoryMetricDataByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, ResponseHandler> callback); /** * Async version of {@link Service#getMemoryMetricImage} */ public Future getMemoryMetricImage(String snapshotRange, GregorianCalendar dateSpecified); public Future getMemoryMetricImage(String snapshotRange, GregorianCalendar dateSpecified, ResponseHandler callback); /** * Async version of {@link Service#getMemoryMetricImageByDate} */ public Future getMemoryMetricImageByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime); public Future getMemoryMetricImageByDate(GregorianCalendar startDateTime, GregorianCalendar endDateTime, ResponseHandler callback); /** * Async version of {@link Service#getMonitoringActiveAlarms} */ public Future> getMonitoringActiveAlarms(GregorianCalendar startDate, GregorianCalendar endDate); public Future getMonitoringActiveAlarms(GregorianCalendar startDate, GregorianCalendar endDate, ResponseHandler> callback); /** * Async version of {@link Service#getMonitoringClosedAlarms} */ public Future> getMonitoringClosedAlarms(GregorianCalendar startDate, GregorianCalendar endDate); public Future getMonitoringClosedAlarms(GregorianCalendar startDate, GregorianCalendar endDate, ResponseHandler> callback); /** * Async version of {@link Service#getNetworkComponentFirewallProtectableIpAddresses} */ public Future> getNetworkComponentFirewallProtectableIpAddresses(); public Future getNetworkComponentFirewallProtectableIpAddresses(ResponseHandler> callback); /** * Async version of {@link Service#getObject} */ public Future getObject(); public Future getObject(ResponseHandler callback); /** * Async version of {@link Service#getOrderTemplate} */ public Future getOrderTemplate(String billingType, List orderPrices); public Future getOrderTemplate(String billingType, List orderPrices, ResponseHandler callback); /** * Async version of {@link Service#getProvisionDate} */ public Future getProvisionDate(); public Future getProvisionDate(ResponseHandler callback); /** * Async version of {@link Service#getRecentMetricData} */ public Future> getRecentMetricData(Long time); public Future getRecentMetricData(Long time, ResponseHandler> callback); /** * Async version of {@link Service#getRemoteMonitoringActiveAlarms} */ public Future> getRemoteMonitoringActiveAlarms(GregorianCalendar startDate, GregorianCalendar endDate); public Future getRemoteMonitoringActiveAlarms(GregorianCalendar startDate, GregorianCalendar endDate, ResponseHandler> callback); /** * Async version of {@link Service#getRemoteMonitoringClosedAlarms} */ public Future> getRemoteMonitoringClosedAlarms(GregorianCalendar startDate, GregorianCalendar endDate); public Future getRemoteMonitoringClosedAlarms(GregorianCalendar startDate, GregorianCalendar endDate, ResponseHandler> callback); /** * Async version of {@link Service#getReverseDomainRecords} */ public Future> getReverseDomainRecords(); public Future getReverseDomainRecords(ResponseHandler> callback); /** * Async version of {@link Service#getUpgradeItemPrices} */ public Future> getUpgradeItemPrices(Boolean includeDowngradeItemPrices); public Future getUpgradeItemPrices(Boolean includeDowngradeItemPrices, ResponseHandler> callback); /** * Async version of {@link Service#getValidBlockDeviceTemplateGroups} */ public Future> getValidBlockDeviceTemplateGroups(String visibility); public Future getValidBlockDeviceTemplateGroups(String visibility, ResponseHandler> callback); /** * Async version of {@link Service#isBackendPingable} */ public Future isBackendPingable(); public Future isBackendPingable(ResponseHandler callback); /** * Async version of {@link Service#isPingable} */ public Future isPingable(); public Future isPingable(ResponseHandler callback); /** * Async version of {@link Service#isolateInstanceForDestructiveAction} */ public Future isolateInstanceForDestructiveAction(); public Future isolateInstanceForDestructiveAction(ResponseHandler callback); /** * Async version of {@link Service#migrate} */ public Future migrate(); public Future migrate(ResponseHandler callback); /** * Async version of {@link Service#migrateDedicatedHost} */ public Future migrateDedicatedHost(Long destinationHostId); public Future migrateDedicatedHost(Long destinationHostId, ResponseHandler callback); /** * Async version of {@link Service#mountIsoImage} */ public Future mountIsoImage(Long diskImageId); public Future mountIsoImage(Long diskImageId, ResponseHandler callback); /** * Async version of {@link Service#pause} */ public Future pause(); public Future pause(ResponseHandler callback); /** * Async version of {@link Service#powerCycle} */ public Future powerCycle(); public Future powerCycle(ResponseHandler callback); /** * Async version of {@link Service#powerOff} */ public Future powerOff(); public Future powerOff(ResponseHandler callback); /** * Async version of {@link Service#powerOffSoft} */ public Future powerOffSoft(); public Future powerOffSoft(ResponseHandler callback); /** * Async version of {@link Service#powerOn} */ public Future powerOn(); public Future powerOn(ResponseHandler callback); /** * Async version of {@link Service#rebootDefault} */ public Future rebootDefault(); public Future rebootDefault(ResponseHandler callback); /** * Async version of {@link Service#rebootHard} */ public Future rebootHard(); public Future rebootHard(ResponseHandler callback); /** * Async version of {@link Service#rebootSoft} */ public Future rebootSoft(); public Future rebootSoft(ResponseHandler callback); /** * Async version of {@link Service#reloadCurrentOperatingSystemConfiguration} */ public Future reloadCurrentOperatingSystemConfiguration(); public Future reloadCurrentOperatingSystemConfiguration(ResponseHandler callback); /** * Async version of {@link Service#reloadOperatingSystem} */ public Future reloadOperatingSystem(String token, Configuration config); public Future reloadOperatingSystem(String token, Configuration config, ResponseHandler callback); /** * Async version of {@link Service#removeAccessToNetworkStorage} */ public Future removeAccessToNetworkStorage(Storage networkStorageTemplateObject); public Future removeAccessToNetworkStorage(Storage networkStorageTemplateObject, ResponseHandler callback); /** * Async version of {@link Service#removeAccessToNetworkStorageList} */ public Future removeAccessToNetworkStorageList(List networkStorageTemplateObjects); public Future removeAccessToNetworkStorageList(List networkStorageTemplateObjects, ResponseHandler callback); /** * Async version of {@link Service#resume} */ public Future resume(); public Future resume(ResponseHandler callback); /** * Async version of {@link Service#setPrivateNetworkInterfaceSpeed} */ public Future setPrivateNetworkInterfaceSpeed(Long newSpeed); public Future setPrivateNetworkInterfaceSpeed(Long newSpeed, ResponseHandler callback); /** * Async version of {@link Service#setPublicNetworkInterfaceSpeed} */ public Future setPublicNetworkInterfaceSpeed(Long newSpeed); public Future setPublicNetworkInterfaceSpeed(Long newSpeed, ResponseHandler callback); /** * Async version of {@link Service#setTags} */ public Future setTags(String tags); public Future setTags(String tags, ResponseHandler callback); /** * Async version of {@link Service#setUserMetadata} */ public Future setUserMetadata(List metadata); public Future setUserMetadata(List metadata, ResponseHandler callback); /** * Async version of {@link Service#shutdownPrivatePort} */ public Future shutdownPrivatePort(); public Future shutdownPrivatePort(ResponseHandler callback); /** * Async version of {@link Service#shutdownPublicPort} */ public Future shutdownPublicPort(); public Future shutdownPublicPort(ResponseHandler callback); /** * Async version of {@link Service#unmountIsoImage} */ public Future unmountIsoImage(); public Future unmountIsoImage(ResponseHandler callback); /** * Async version of {@link Service#validateImageTemplate} */ public Future validateImageTemplate(Long imageTemplateId); public Future validateImageTemplate(Long imageTemplateId, ResponseHandler callback); /** * Async version of {@link Service#verifyReloadOperatingSystem} */ public Future verifyReloadOperatingSystem(Configuration config); public Future verifyReloadOperatingSystem(Configuration config, ResponseHandler callback); /** * Async version of {@link Service#getAccount} */ public Future getAccount(); /** * Async callback version of {@link Service#getAccount} */ public Future getAccount(ResponseHandler callback); /** * Async version of {@link Service#getAccountOwnedPoolFlag} */ public Future getAccountOwnedPoolFlag(); /** * Async callback version of {@link Service#getAccountOwnedPoolFlag} */ public Future getAccountOwnedPoolFlag(ResponseHandler callback); /** * Async version of {@link Service#getActiveNetworkMonitorIncident} */ public Future> getActiveNetworkMonitorIncident(); /** * Async callback version of {@link Service#getActiveNetworkMonitorIncident} */ public Future getActiveNetworkMonitorIncident(ResponseHandler> callback); /** * Async version of {@link Service#getActiveTickets} */ public Future> getActiveTickets(); /** * Async callback version of {@link Service#getActiveTickets} */ public Future getActiveTickets(ResponseHandler> callback); /** * Async version of {@link Service#getActiveTransaction} */ public Future getActiveTransaction(); /** * Async callback version of {@link Service#getActiveTransaction} */ public Future getActiveTransaction(ResponseHandler callback); /** * Async version of {@link Service#getActiveTransactions} */ public Future> getActiveTransactions(); /** * Async callback version of {@link Service#getActiveTransactions} */ public Future getActiveTransactions(ResponseHandler> callback); /** * Async version of {@link Service#getAllowedHost} */ public Future getAllowedHost(); /** * Async callback version of {@link Service#getAllowedHost} */ public Future getAllowedHost(ResponseHandler callback); /** * Async version of {@link Service#getAllowedNetworkStorage} */ public Future> getAllowedNetworkStorage(); /** * Async callback version of {@link Service#getAllowedNetworkStorage} */ public Future getAllowedNetworkStorage(ResponseHandler> callback); /** * Async version of {@link Service#getAllowedNetworkStorageReplicas} */ public Future> getAllowedNetworkStorageReplicas(); /** * Async callback version of {@link Service#getAllowedNetworkStorageReplicas} */ public Future getAllowedNetworkStorageReplicas(ResponseHandler> callback); /** * Async version of {@link Service#getAntivirusSpywareSoftwareComponent} */ public Future getAntivirusSpywareSoftwareComponent(); /** * Async callback version of {@link Service#getAntivirusSpywareSoftwareComponent} */ public Future getAntivirusSpywareSoftwareComponent(ResponseHandler callback); /** * Async version of {@link Service#getApplicationDeliveryController} */ public Future getApplicationDeliveryController(); /** * Async callback version of {@link Service#getApplicationDeliveryController} */ public Future getApplicationDeliveryController(ResponseHandler callback); /** * Async version of {@link Service#getAttributes} */ public Future> getAttributes(); /** * Async callback version of {@link Service#getAttributes} */ public Future getAttributes(ResponseHandler> callback); /** * Async version of {@link Service#getAvailableMonitoring} */ public Future> getAvailableMonitoring(); /** * Async callback version of {@link Service#getAvailableMonitoring} */ public Future getAvailableMonitoring(ResponseHandler> callback); /** * Async version of {@link Service#getAverageDailyPrivateBandwidthUsage} */ public Future getAverageDailyPrivateBandwidthUsage(); /** * Async callback version of {@link Service#getAverageDailyPrivateBandwidthUsage} */ public Future getAverageDailyPrivateBandwidthUsage(ResponseHandler callback); /** * Async version of {@link Service#getAverageDailyPublicBandwidthUsage} */ public Future getAverageDailyPublicBandwidthUsage(); /** * Async callback version of {@link Service#getAverageDailyPublicBandwidthUsage} */ public Future getAverageDailyPublicBandwidthUsage(ResponseHandler callback); /** * Async version of {@link Service#getBackendNetworkComponents} */ public Future> getBackendNetworkComponents(); /** * Async callback version of {@link Service#getBackendNetworkComponents} */ public Future getBackendNetworkComponents(ResponseHandler> callback); /** * Async version of {@link Service#getBackendRouters} */ public Future> getBackendRouters(); /** * Async callback version of {@link Service#getBackendRouters} */ public Future getBackendRouters(ResponseHandler> callback); /** * Async version of {@link Service#getBandwidthAllocation} */ public Future getBandwidthAllocation(); /** * Async callback version of {@link Service#getBandwidthAllocation} */ public Future getBandwidthAllocation(ResponseHandler callback); /** * Async version of {@link Service#getBandwidthAllotmentDetail} */ public Future getBandwidthAllotmentDetail(); /** * Async callback version of {@link Service#getBandwidthAllotmentDetail} */ public Future getBandwidthAllotmentDetail(ResponseHandler callback); /** * Async version of {@link Service#getBillingCycleBandwidthUsage} */ public Future> getBillingCycleBandwidthUsage(); /** * Async callback version of {@link Service#getBillingCycleBandwidthUsage} */ public Future getBillingCycleBandwidthUsage(ResponseHandler> callback); /** * Async version of {@link Service#getBillingCyclePrivateBandwidthUsage} */ public Future getBillingCyclePrivateBandwidthUsage(); /** * Async callback version of {@link Service#getBillingCyclePrivateBandwidthUsage} */ public Future getBillingCyclePrivateBandwidthUsage(ResponseHandler callback); /** * Async version of {@link Service#getBillingCyclePublicBandwidthUsage} */ public Future getBillingCyclePublicBandwidthUsage(); /** * Async callback version of {@link Service#getBillingCyclePublicBandwidthUsage} */ public Future getBillingCyclePublicBandwidthUsage(ResponseHandler callback); /** * Async version of {@link Service#getBillingItem} */ public Future getBillingItem(); /** * Async callback version of {@link Service#getBillingItem} */ public Future getBillingItem(ResponseHandler callback); /** * Async version of {@link Service#getBlockCancelBecauseDisconnectedFlag} */ public Future getBlockCancelBecauseDisconnectedFlag(); /** * Async callback version of {@link Service#getBlockCancelBecauseDisconnectedFlag} */ public Future getBlockCancelBecauseDisconnectedFlag(ResponseHandler callback); /** * Async version of {@link Service#getBlockDeviceTemplateGroup} */ public Future getBlockDeviceTemplateGroup(); /** * Async callback version of {@link Service#getBlockDeviceTemplateGroup} */ public Future getBlockDeviceTemplateGroup(ResponseHandler callback); /** * Async version of {@link Service#getBlockDevices} */ public Future> getBlockDevices(); /** * Async callback version of {@link Service#getBlockDevices} */ public Future getBlockDevices(ResponseHandler> callback); /** * Async version of {@link Service#getConsoleIpAddressFlag} */ public Future getConsoleIpAddressFlag(); /** * Async callback version of {@link Service#getConsoleIpAddressFlag} */ public Future getConsoleIpAddressFlag(ResponseHandler callback); /** * Async version of {@link Service#getConsoleIpAddressRecord} */ public Future getConsoleIpAddressRecord(); /** * Async callback version of {@link Service#getConsoleIpAddressRecord} */ public Future getConsoleIpAddressRecord(ResponseHandler callback); /** * Async version of {@link Service#getContinuousDataProtectionSoftwareComponent} */ public Future getContinuousDataProtectionSoftwareComponent(); /** * Async callback version of {@link Service#getContinuousDataProtectionSoftwareComponent} */ public Future getContinuousDataProtectionSoftwareComponent(ResponseHandler callback); /** * Async version of {@link Service#getControlPanel} */ public Future getControlPanel(); /** * Async callback version of {@link Service#getControlPanel} */ public Future getControlPanel(ResponseHandler callback); /** * Async version of {@link Service#getCurrentBandwidthSummary} */ public Future getCurrentBandwidthSummary(); /** * Async callback version of {@link Service#getCurrentBandwidthSummary} */ public Future getCurrentBandwidthSummary(ResponseHandler callback); /** * Async version of {@link Service#getDatacenter} */ public Future getDatacenter(); /** * Async callback version of {@link Service#getDatacenter} */ public Future getDatacenter(ResponseHandler callback); /** * Async version of {@link Service#getDedicatedHost} */ public Future getDedicatedHost(); /** * Async callback version of {@link Service#getDedicatedHost} */ public Future getDedicatedHost(ResponseHandler callback); /** * Async version of {@link Service#getEvaultNetworkStorage} */ public Future> getEvaultNetworkStorage(); /** * Async callback version of {@link Service#getEvaultNetworkStorage} */ public Future getEvaultNetworkStorage(ResponseHandler> callback); /** * Async version of {@link Service#getFirewallServiceComponent} */ public Future getFirewallServiceComponent(); /** * Async callback version of {@link Service#getFirewallServiceComponent} */ public Future getFirewallServiceComponent(ResponseHandler callback); /** * Async version of {@link Service#getFrontendNetworkComponents} */ public Future> getFrontendNetworkComponents(); /** * Async callback version of {@link Service#getFrontendNetworkComponents} */ public Future getFrontendNetworkComponents(ResponseHandler> callback); /** * Async version of {@link Service#getFrontendRouters} */ public Future getFrontendRouters(); /** * Async callback version of {@link Service#getFrontendRouters} */ public Future getFrontendRouters(ResponseHandler callback); /** * Async version of {@link Service#getGlobalIdentifier} */ public Future getGlobalIdentifier(); /** * Async callback version of {@link Service#getGlobalIdentifier} */ public Future getGlobalIdentifier(ResponseHandler callback); /** * Async version of {@link Service#getGuestBootParameter} */ public Future getGuestBootParameter(); /** * Async callback version of {@link Service#getGuestBootParameter} */ public Future getGuestBootParameter(ResponseHandler callback); /** * Async version of {@link Service#getHost} */ public Future getHost(); /** * Async callback version of {@link Service#getHost} */ public Future getHost(ResponseHandler callback); /** * Async version of {@link Service#getHostIpsSoftwareComponent} */ public Future getHostIpsSoftwareComponent(); /** * Async callback version of {@link Service#getHostIpsSoftwareComponent} */ public Future getHostIpsSoftwareComponent(ResponseHandler callback); /** * Async version of {@link Service#getHourlyBillingFlag} */ public Future getHourlyBillingFlag(); /** * Async callback version of {@link Service#getHourlyBillingFlag} */ public Future getHourlyBillingFlag(ResponseHandler callback); /** * Async version of {@link Service#getInboundPrivateBandwidthUsage} */ public Future getInboundPrivateBandwidthUsage(); /** * Async callback version of {@link Service#getInboundPrivateBandwidthUsage} */ public Future getInboundPrivateBandwidthUsage(ResponseHandler callback); /** * Async version of {@link Service#getInboundPublicBandwidthUsage} */ public Future getInboundPublicBandwidthUsage(); /** * Async callback version of {@link Service#getInboundPublicBandwidthUsage} */ public Future getInboundPublicBandwidthUsage(ResponseHandler callback); /** * Async version of {@link Service#getInternalTagReferences} */ public Future> getInternalTagReferences(); /** * Async callback version of {@link Service#getInternalTagReferences} */ public Future getInternalTagReferences(ResponseHandler> callback); /** * Async version of {@link Service#getLastKnownPowerState} */ public Future getLastKnownPowerState(); /** * Async callback version of {@link Service#getLastKnownPowerState} */ public Future getLastKnownPowerState(ResponseHandler callback); /** * Async version of {@link Service#getLastOperatingSystemReload} */ public Future getLastOperatingSystemReload(); /** * Async callback version of {@link Service#getLastOperatingSystemReload} */ public Future getLastOperatingSystemReload(ResponseHandler callback); /** * Async version of {@link Service#getLastTransaction} */ public Future getLastTransaction(); /** * Async callback version of {@link Service#getLastTransaction} */ public Future getLastTransaction(ResponseHandler callback); /** * Async version of {@link Service#getLatestNetworkMonitorIncident} */ public Future getLatestNetworkMonitorIncident(); /** * Async callback version of {@link Service#getLatestNetworkMonitorIncident} */ public Future getLatestNetworkMonitorIncident(ResponseHandler callback); /** * Async version of {@link Service#getLocalDiskFlag} */ public Future getLocalDiskFlag(); /** * Async callback version of {@link Service#getLocalDiskFlag} */ public Future getLocalDiskFlag(ResponseHandler callback); /** * Async version of {@link Service#getLocation} */ public Future getLocation(); /** * Async callback version of {@link Service#getLocation} */ public Future getLocation(ResponseHandler callback); /** * Async version of {@link Service#getManagedResourceFlag} */ public Future getManagedResourceFlag(); /** * Async callback version of {@link Service#getManagedResourceFlag} */ public Future getManagedResourceFlag(ResponseHandler callback); /** * Async version of {@link Service#getMetricTrackingObject} */ public Future getMetricTrackingObject(); /** * Async callback version of {@link Service#getMetricTrackingObject} */ public Future getMetricTrackingObject(ResponseHandler callback); /** * Async version of {@link Service#getMetricTrackingObjectId} */ public Future getMetricTrackingObjectId(); /** * Async callback version of {@link Service#getMetricTrackingObjectId} */ public Future getMetricTrackingObjectId(ResponseHandler callback); /** * Async version of {@link Service#getMonitoringAgents} */ public Future> getMonitoringAgents(); /** * Async callback version of {@link Service#getMonitoringAgents} */ public Future getMonitoringAgents(ResponseHandler> callback); /** * Async version of {@link Service#getMonitoringRobot} */ public Future getMonitoringRobot(); /** * Async callback version of {@link Service#getMonitoringRobot} */ public Future getMonitoringRobot(ResponseHandler callback); /** * Async version of {@link Service#getMonitoringServiceComponent} */ public Future getMonitoringServiceComponent(); /** * Async callback version of {@link Service#getMonitoringServiceComponent} */ public Future getMonitoringServiceComponent(ResponseHandler callback); /** * Async version of {@link Service#getMonitoringServiceEligibilityFlag} */ public Future getMonitoringServiceEligibilityFlag(); /** * Async callback version of {@link Service#getMonitoringServiceEligibilityFlag} */ public Future getMonitoringServiceEligibilityFlag(ResponseHandler callback); /** * Async version of {@link Service#getMonitoringServiceFlag} */ public Future getMonitoringServiceFlag(); /** * Async callback version of {@link Service#getMonitoringServiceFlag} */ public Future getMonitoringServiceFlag(ResponseHandler callback); /** * Async version of {@link Service#getMonitoringUserNotification} */ public Future> getMonitoringUserNotification(); /** * Async callback version of {@link Service#getMonitoringUserNotification} */ public Future getMonitoringUserNotification(ResponseHandler> callback); /** * Async version of {@link Service#getNetworkComponents} */ public Future> getNetworkComponents(); /** * Async callback version of {@link Service#getNetworkComponents} */ public Future getNetworkComponents(ResponseHandler> callback); /** * Async version of {@link Service#getNetworkMonitorIncidents} */ public Future> getNetworkMonitorIncidents(); /** * Async callback version of {@link Service#getNetworkMonitorIncidents} */ public Future getNetworkMonitorIncidents(ResponseHandler> callback); /** * Async version of {@link Service#getNetworkMonitors} */ public Future> getNetworkMonitors(); /** * Async callback version of {@link Service#getNetworkMonitors} */ public Future getNetworkMonitors(ResponseHandler> callback); /** * Async version of {@link Service#getNetworkStorage} */ public Future> getNetworkStorage(); /** * Async callback version of {@link Service#getNetworkStorage} */ public Future getNetworkStorage(ResponseHandler> callback); /** * Async version of {@link Service#getNetworkVlans} */ public Future> getNetworkVlans(); /** * Async callback version of {@link Service#getNetworkVlans} */ public Future getNetworkVlans(ResponseHandler> callback); /** * Async version of {@link Service#getOpenCancellationTicket} */ public Future getOpenCancellationTicket(); /** * Async callback version of {@link Service#getOpenCancellationTicket} */ public Future getOpenCancellationTicket(ResponseHandler callback); /** * Async version of {@link Service#getOperatingSystem} */ public Future getOperatingSystem(); /** * Async callback version of {@link Service#getOperatingSystem} */ public Future getOperatingSystem(ResponseHandler callback); /** * Async version of {@link Service#getOperatingSystemReferenceCode} */ public Future getOperatingSystemReferenceCode(); /** * Async callback version of {@link Service#getOperatingSystemReferenceCode} */ public Future getOperatingSystemReferenceCode(ResponseHandler callback); /** * Async version of {@link Service#getOrderedPackageId} */ public Future getOrderedPackageId(); /** * Async callback version of {@link Service#getOrderedPackageId} */ public Future getOrderedPackageId(ResponseHandler callback); /** * Async version of {@link Service#getOutboundPrivateBandwidthUsage} */ public Future getOutboundPrivateBandwidthUsage(); /** * Async callback version of {@link Service#getOutboundPrivateBandwidthUsage} */ public Future getOutboundPrivateBandwidthUsage(ResponseHandler callback); /** * Async version of {@link Service#getOutboundPublicBandwidthUsage} */ public Future getOutboundPublicBandwidthUsage(); /** * Async callback version of {@link Service#getOutboundPublicBandwidthUsage} */ public Future getOutboundPublicBandwidthUsage(ResponseHandler callback); /** * Async version of {@link Service#getOverBandwidthAllocationFlag} */ public Future getOverBandwidthAllocationFlag(); /** * Async callback version of {@link Service#getOverBandwidthAllocationFlag} */ public Future getOverBandwidthAllocationFlag(ResponseHandler callback); /** * Async version of {@link Service#getPendingMigrationFlag} */ public Future getPendingMigrationFlag(); /** * Async callback version of {@link Service#getPendingMigrationFlag} */ public Future getPendingMigrationFlag(ResponseHandler callback); /** * Async version of {@link Service#getPowerState} */ public Future getPowerState(); /** * Async callback version of {@link Service#getPowerState} */ public Future getPowerState(ResponseHandler callback); /** * Async version of {@link Service#getPrimaryBackendIpAddress} */ public Future getPrimaryBackendIpAddress(); /** * Async callback version of {@link Service#getPrimaryBackendIpAddress} */ public Future getPrimaryBackendIpAddress(ResponseHandler callback); /** * Async version of {@link Service#getPrimaryBackendNetworkComponent} */ public Future getPrimaryBackendNetworkComponent(); /** * Async callback version of {@link Service#getPrimaryBackendNetworkComponent} */ public Future getPrimaryBackendNetworkComponent(ResponseHandler callback); /** * Async version of {@link Service#getPrimaryIpAddress} */ public Future getPrimaryIpAddress(); /** * Async callback version of {@link Service#getPrimaryIpAddress} */ public Future getPrimaryIpAddress(ResponseHandler callback); /** * Async version of {@link Service#getPrimaryNetworkComponent} */ public Future getPrimaryNetworkComponent(); /** * Async callback version of {@link Service#getPrimaryNetworkComponent} */ public Future getPrimaryNetworkComponent(ResponseHandler callback); /** * Async version of {@link Service#getPrivateNetworkOnlyFlag} */ public Future getPrivateNetworkOnlyFlag(); /** * Async callback version of {@link Service#getPrivateNetworkOnlyFlag} */ public Future getPrivateNetworkOnlyFlag(ResponseHandler callback); /** * Async version of {@link Service#getProjectedOverBandwidthAllocationFlag} */ public Future getProjectedOverBandwidthAllocationFlag(); /** * Async callback version of {@link Service#getProjectedOverBandwidthAllocationFlag} */ public Future getProjectedOverBandwidthAllocationFlag(ResponseHandler callback); /** * Async version of {@link Service#getProjectedPublicBandwidthUsage} */ public Future getProjectedPublicBandwidthUsage(); /** * Async callback version of {@link Service#getProjectedPublicBandwidthUsage} */ public Future getProjectedPublicBandwidthUsage(ResponseHandler callback); /** * Async version of {@link Service#getRecentEvents} */ public Future> getRecentEvents(); /** * Async callback version of {@link Service#getRecentEvents} */ public Future getRecentEvents(ResponseHandler> callback); /** * Async version of {@link Service#getRegionalGroup} */ public Future getRegionalGroup(); /** * Async callback version of {@link Service#getRegionalGroup} */ public Future getRegionalGroup(ResponseHandler callback); /** * Async version of {@link Service#getRegionalInternetRegistry} */ public Future getRegionalInternetRegistry(); /** * Async callback version of {@link Service#getRegionalInternetRegistry} */ public Future getRegionalInternetRegistry(ResponseHandler callback); /** * Async version of {@link Service#getScaleAssets} */ public Future> getScaleAssets(); /** * Async callback version of {@link Service#getScaleAssets} */ public Future getScaleAssets(ResponseHandler> callback); /** * Async version of {@link Service#getScaleMember} */ public Future getScaleMember(); /** * Async callback version of {@link Service#getScaleMember} */ public Future getScaleMember(ResponseHandler callback); /** * Async version of {@link Service#getScaledFlag} */ public Future getScaledFlag(); /** * Async callback version of {@link Service#getScaledFlag} */ public Future getScaledFlag(ResponseHandler callback); /** * Async version of {@link Service#getSecurityScanRequests} */ public Future> getSecurityScanRequests(); /** * Async callback version of {@link Service#getSecurityScanRequests} */ public Future getSecurityScanRequests(ResponseHandler> callback); /** * Async version of {@link Service#getServerRoom} */ public Future getServerRoom(); /** * Async callback version of {@link Service#getServerRoom} */ public Future getServerRoom(ResponseHandler callback); /** * Async version of {@link Service#getSoftwareComponents} */ public Future> getSoftwareComponents(); /** * Async callback version of {@link Service#getSoftwareComponents} */ public Future getSoftwareComponents(ResponseHandler> callback); /** * Async version of {@link Service#getSshKeys} */ public Future> getSshKeys(); /** * Async callback version of {@link Service#getSshKeys} */ public Future getSshKeys(ResponseHandler> callback); /** * Async version of {@link Service#getStatus} */ public Future getStatus(); /** * Async callback version of {@link Service#getStatus} */ public Future getStatus(ResponseHandler callback); /** * Async version of {@link Service#getTagReferences} */ public Future> getTagReferences(); /** * Async callback version of {@link Service#getTagReferences} */ public Future getTagReferences(ResponseHandler> callback); /** * Async version of {@link Service#getType} */ public Future getType(); /** * Async callback version of {@link Service#getType} */ public Future getType(ResponseHandler callback); /** * Async version of {@link Service#getUpgradeRequest} */ public Future getUpgradeRequest(); /** * Async callback version of {@link Service#getUpgradeRequest} */ public Future getUpgradeRequest(ResponseHandler callback); /** * Async version of {@link Service#getUserData} */ public Future> getUserData(); /** * Async callback version of {@link Service#getUserData} */ public Future getUserData(ResponseHandler> callback); /** * Async version of {@link Service#getUsers} */ public Future> getUsers(); /** * Async callback version of {@link Service#getUsers} */ public Future getUsers(ResponseHandler> callback); /** * Async version of {@link Service#getVirtualRack} */ public Future getVirtualRack(); /** * Async callback version of {@link Service#getVirtualRack} */ public Future getVirtualRack(ResponseHandler callback); /** * Async version of {@link Service#getVirtualRackId} */ public Future getVirtualRackId(); /** * Async callback version of {@link Service#getVirtualRackId} */ public Future getVirtualRackId(ResponseHandler callback); /** * Async version of {@link Service#getVirtualRackName} */ public Future getVirtualRackName(); /** * Async callback version of {@link Service#getVirtualRackName} */ public Future getVirtualRackName(ResponseHandler callback); } public static class Mask extends com.softlayer.api.service.Entity.Mask { public com.softlayer.api.service.Account.Mask account() { return withSubMask("account", com.softlayer.api.service.Account.Mask.class); } public Mask accountOwnedPoolFlag() { withLocalProperty("accountOwnedPoolFlag"); return this; } public com.softlayer.api.service.network.monitor.version1.Incident.Mask activeNetworkMonitorIncident() { return withSubMask("activeNetworkMonitorIncident", com.softlayer.api.service.network.monitor.version1.Incident.Mask.class); } public com.softlayer.api.service.Ticket.Mask activeTickets() { return withSubMask("activeTickets", com.softlayer.api.service.Ticket.Mask.class); } public com.softlayer.api.service.provisioning.version1.Transaction.Mask activeTransaction() { return withSubMask("activeTransaction", com.softlayer.api.service.provisioning.version1.Transaction.Mask.class); } public com.softlayer.api.service.provisioning.version1.Transaction.Mask activeTransactions() { return withSubMask("activeTransactions", com.softlayer.api.service.provisioning.version1.Transaction.Mask.class); } public com.softlayer.api.service.network.storage.allowed.Host.Mask allowedHost() { return withSubMask("allowedHost", com.softlayer.api.service.network.storage.allowed.Host.Mask.class); } public com.softlayer.api.service.network.Storage.Mask allowedNetworkStorage() { return withSubMask("allowedNetworkStorage", com.softlayer.api.service.network.Storage.Mask.class); } public com.softlayer.api.service.network.Storage.Mask allowedNetworkStorageReplicas() { return withSubMask("allowedNetworkStorageReplicas", com.softlayer.api.service.network.Storage.Mask.class); } public com.softlayer.api.service.software.Component.Mask antivirusSpywareSoftwareComponent() { return withSubMask("antivirusSpywareSoftwareComponent", com.softlayer.api.service.software.Component.Mask.class); } public com.softlayer.api.service.network.application.delivery.Controller.Mask applicationDeliveryController() { return withSubMask("applicationDeliveryController", com.softlayer.api.service.network.application.delivery.Controller.Mask.class); } public com.softlayer.api.service.virtual.guest.Attribute.Mask attributes() { return withSubMask("attributes", com.softlayer.api.service.virtual.guest.Attribute.Mask.class); } public com.softlayer.api.service.network.monitor.version1.query.host.Stratum.Mask availableMonitoring() { return withSubMask("availableMonitoring", com.softlayer.api.service.network.monitor.version1.query.host.Stratum.Mask.class); } public Mask averageDailyPrivateBandwidthUsage() { withLocalProperty("averageDailyPrivateBandwidthUsage"); return this; } public Mask averageDailyPublicBandwidthUsage() { withLocalProperty("averageDailyPublicBandwidthUsage"); return this; } public com.softlayer.api.service.virtual.guest.network.Component.Mask backendNetworkComponents() { return withSubMask("backendNetworkComponents", com.softlayer.api.service.virtual.guest.network.Component.Mask.class); } public com.softlayer.api.service.Hardware.Mask backendRouters() { return withSubMask("backendRouters", com.softlayer.api.service.Hardware.Mask.class); } public Mask bandwidthAllocation() { withLocalProperty("bandwidthAllocation"); return this; } public com.softlayer.api.service.network.bandwidth.version1.allotment.Detail.Mask bandwidthAllotmentDetail() { return withSubMask("bandwidthAllotmentDetail", com.softlayer.api.service.network.bandwidth.version1.allotment.Detail.Mask.class); } public com.softlayer.api.service.network.bandwidth.Usage.Mask billingCycleBandwidthUsage() { return withSubMask("billingCycleBandwidthUsage", com.softlayer.api.service.network.bandwidth.Usage.Mask.class); } public com.softlayer.api.service.network.bandwidth.Usage.Mask billingCyclePrivateBandwidthUsage() { return withSubMask("billingCyclePrivateBandwidthUsage", com.softlayer.api.service.network.bandwidth.Usage.Mask.class); } public com.softlayer.api.service.network.bandwidth.Usage.Mask billingCyclePublicBandwidthUsage() { return withSubMask("billingCyclePublicBandwidthUsage", com.softlayer.api.service.network.bandwidth.Usage.Mask.class); } public com.softlayer.api.service.billing.item.virtual.Guest.Mask billingItem() { return withSubMask("billingItem", com.softlayer.api.service.billing.item.virtual.Guest.Mask.class); } public Mask blockCancelBecauseDisconnectedFlag() { withLocalProperty("blockCancelBecauseDisconnectedFlag"); return this; } public com.softlayer.api.service.virtual.guest.block.device.template.Group.Mask blockDeviceTemplateGroup() { return withSubMask("blockDeviceTemplateGroup", com.softlayer.api.service.virtual.guest.block.device.template.Group.Mask.class); } public com.softlayer.api.service.virtual.guest.block.Device.Mask blockDevices() { return withSubMask("blockDevices", com.softlayer.api.service.virtual.guest.block.Device.Mask.class); } public Mask consoleIpAddressFlag() { withLocalProperty("consoleIpAddressFlag"); return this; } public com.softlayer.api.service.virtual.guest.network.component.IpAddress.Mask consoleIpAddressRecord() { return withSubMask("consoleIpAddressRecord", com.softlayer.api.service.virtual.guest.network.component.IpAddress.Mask.class); } public com.softlayer.api.service.software.Component.Mask continuousDataProtectionSoftwareComponent() { return withSubMask("continuousDataProtectionSoftwareComponent", com.softlayer.api.service.software.Component.Mask.class); } public com.softlayer.api.service.software.Component.Mask controlPanel() { return withSubMask("controlPanel", com.softlayer.api.service.software.Component.Mask.class); } public com.softlayer.api.service.metric.tracking.object.bandwidth.Summary.Mask currentBandwidthSummary() { return withSubMask("currentBandwidthSummary", com.softlayer.api.service.metric.tracking.object.bandwidth.Summary.Mask.class); } public com.softlayer.api.service.Location.Mask datacenter() { return withSubMask("datacenter", com.softlayer.api.service.Location.Mask.class); } public DedicatedHost.Mask dedicatedHost() { return withSubMask("dedicatedHost", DedicatedHost.Mask.class); } public com.softlayer.api.service.network.Storage.Mask evaultNetworkStorage() { return withSubMask("evaultNetworkStorage", com.softlayer.api.service.network.Storage.Mask.class); } public com.softlayer.api.service.network.component.Firewall.Mask firewallServiceComponent() { return withSubMask("firewallServiceComponent", com.softlayer.api.service.network.component.Firewall.Mask.class); } public com.softlayer.api.service.virtual.guest.network.Component.Mask frontendNetworkComponents() { return withSubMask("frontendNetworkComponents", com.softlayer.api.service.virtual.guest.network.Component.Mask.class); } public com.softlayer.api.service.Hardware.Mask frontendRouters() { return withSubMask("frontendRouters", com.softlayer.api.service.Hardware.Mask.class); } public Mask globalIdentifier() { withLocalProperty("globalIdentifier"); return this; } public com.softlayer.api.service.virtual.guest.boot.Parameter.Mask guestBootParameter() { return withSubMask("guestBootParameter", com.softlayer.api.service.virtual.guest.boot.Parameter.Mask.class); } public Host.Mask host() { return withSubMask("host", Host.Mask.class); } public com.softlayer.api.service.software.Component.Mask hostIpsSoftwareComponent() { return withSubMask("hostIpsSoftwareComponent", com.softlayer.api.service.software.Component.Mask.class); } public Mask hourlyBillingFlag() { withLocalProperty("hourlyBillingFlag"); return this; } public Mask inboundPrivateBandwidthUsage() { withLocalProperty("inboundPrivateBandwidthUsage"); return this; } public Mask inboundPublicBandwidthUsage() { withLocalProperty("inboundPublicBandwidthUsage"); return this; } public com.softlayer.api.service.tag.Reference.Mask internalTagReferences() { return withSubMask("internalTagReferences", com.softlayer.api.service.tag.Reference.Mask.class); } public com.softlayer.api.service.virtual.guest.power.State.Mask lastKnownPowerState() { return withSubMask("lastKnownPowerState", com.softlayer.api.service.virtual.guest.power.State.Mask.class); } public com.softlayer.api.service.provisioning.version1.Transaction.Mask lastOperatingSystemReload() { return withSubMask("lastOperatingSystemReload", com.softlayer.api.service.provisioning.version1.Transaction.Mask.class); } public com.softlayer.api.service.provisioning.version1.Transaction.Mask lastTransaction() { return withSubMask("lastTransaction", com.softlayer.api.service.provisioning.version1.Transaction.Mask.class); } public com.softlayer.api.service.network.monitor.version1.Incident.Mask latestNetworkMonitorIncident() { return withSubMask("latestNetworkMonitorIncident", com.softlayer.api.service.network.monitor.version1.Incident.Mask.class); } public Mask localDiskFlag() { withLocalProperty("localDiskFlag"); return this; } public com.softlayer.api.service.Location.Mask location() { return withSubMask("location", com.softlayer.api.service.Location.Mask.class); } public Mask managedResourceFlag() { withLocalProperty("managedResourceFlag"); return this; } public com.softlayer.api.service.metric.tracking.Object.Mask metricTrackingObject() { return withSubMask("metricTrackingObject", com.softlayer.api.service.metric.tracking.Object.Mask.class); } public Mask metricTrackingObjectId() { withLocalProperty("metricTrackingObjectId"); return this; } public com.softlayer.api.service.monitoring.Agent.Mask monitoringAgents() { return withSubMask("monitoringAgents", com.softlayer.api.service.monitoring.Agent.Mask.class); } public com.softlayer.api.service.monitoring.Robot.Mask monitoringRobot() { return withSubMask("monitoringRobot", com.softlayer.api.service.monitoring.Robot.Mask.class); } public com.softlayer.api.service.network.monitor.version1.query.host.Stratum.Mask monitoringServiceComponent() { return withSubMask("monitoringServiceComponent", com.softlayer.api.service.network.monitor.version1.query.host.Stratum.Mask.class); } public Mask monitoringServiceEligibilityFlag() { withLocalProperty("monitoringServiceEligibilityFlag"); return this; } public Mask monitoringServiceFlag() { withLocalProperty("monitoringServiceFlag"); return this; } public com.softlayer.api.service.user.customer.notification.virtual.Guest.Mask monitoringUserNotification() { return withSubMask("monitoringUserNotification", com.softlayer.api.service.user.customer.notification.virtual.Guest.Mask.class); } public com.softlayer.api.service.virtual.guest.network.Component.Mask networkComponents() { return withSubMask("networkComponents", com.softlayer.api.service.virtual.guest.network.Component.Mask.class); } public com.softlayer.api.service.network.monitor.version1.Incident.Mask networkMonitorIncidents() { return withSubMask("networkMonitorIncidents", com.softlayer.api.service.network.monitor.version1.Incident.Mask.class); } public com.softlayer.api.service.network.monitor.version1.query.Host.Mask networkMonitors() { return withSubMask("networkMonitors", com.softlayer.api.service.network.monitor.version1.query.Host.Mask.class); } public com.softlayer.api.service.network.Storage.Mask networkStorage() { return withSubMask("networkStorage", com.softlayer.api.service.network.Storage.Mask.class); } public com.softlayer.api.service.network.Vlan.Mask networkVlans() { return withSubMask("networkVlans", com.softlayer.api.service.network.Vlan.Mask.class); } public com.softlayer.api.service.Ticket.Mask openCancellationTicket() { return withSubMask("openCancellationTicket", com.softlayer.api.service.Ticket.Mask.class); } public com.softlayer.api.service.software.component.OperatingSystem.Mask operatingSystem() { return withSubMask("operatingSystem", com.softlayer.api.service.software.component.OperatingSystem.Mask.class); } public Mask operatingSystemReferenceCode() { withLocalProperty("operatingSystemReferenceCode"); return this; } public Mask orderedPackageId() { withLocalProperty("orderedPackageId"); return this; } public Mask outboundPrivateBandwidthUsage() { withLocalProperty("outboundPrivateBandwidthUsage"); return this; } public Mask outboundPublicBandwidthUsage() { withLocalProperty("outboundPublicBandwidthUsage"); return this; } public Mask overBandwidthAllocationFlag() { withLocalProperty("overBandwidthAllocationFlag"); return this; } public Mask pendingMigrationFlag() { withLocalProperty("pendingMigrationFlag"); return this; } public com.softlayer.api.service.virtual.guest.power.State.Mask powerState() { return withSubMask("powerState", com.softlayer.api.service.virtual.guest.power.State.Mask.class); } public Mask primaryBackendIpAddress() { withLocalProperty("primaryBackendIpAddress"); return this; } public com.softlayer.api.service.virtual.guest.network.Component.Mask primaryBackendNetworkComponent() { return withSubMask("primaryBackendNetworkComponent", com.softlayer.api.service.virtual.guest.network.Component.Mask.class); } public Mask primaryIpAddress() { withLocalProperty("primaryIpAddress"); return this; } public com.softlayer.api.service.virtual.guest.network.Component.Mask primaryNetworkComponent() { return withSubMask("primaryNetworkComponent", com.softlayer.api.service.virtual.guest.network.Component.Mask.class); } public Mask privateNetworkOnlyFlag() { withLocalProperty("privateNetworkOnlyFlag"); return this; } public Mask projectedOverBandwidthAllocationFlag() { withLocalProperty("projectedOverBandwidthAllocationFlag"); return this; } public Mask projectedPublicBandwidthUsage() { withLocalProperty("projectedPublicBandwidthUsage"); return this; } public com.softlayer.api.service.notification.occurrence.Event.Mask recentEvents() { return withSubMask("recentEvents", com.softlayer.api.service.notification.occurrence.Event.Mask.class); } public com.softlayer.api.service.location.group.Regional.Mask regionalGroup() { return withSubMask("regionalGroup", com.softlayer.api.service.location.group.Regional.Mask.class); } public com.softlayer.api.service.network.regional.internet.Registry.Mask regionalInternetRegistry() { return withSubMask("regionalInternetRegistry", com.softlayer.api.service.network.regional.internet.Registry.Mask.class); } public com.softlayer.api.service.scale.Asset.Mask scaleAssets() { return withSubMask("scaleAssets", com.softlayer.api.service.scale.Asset.Mask.class); } public com.softlayer.api.service.scale.member.virtual.Guest.Mask scaleMember() { return withSubMask("scaleMember", com.softlayer.api.service.scale.member.virtual.Guest.Mask.class); } public Mask scaledFlag() { withLocalProperty("scaledFlag"); return this; } public com.softlayer.api.service.network.security.scanner.Request.Mask securityScanRequests() { return withSubMask("securityScanRequests", com.softlayer.api.service.network.security.scanner.Request.Mask.class); } public com.softlayer.api.service.Location.Mask serverRoom() { return withSubMask("serverRoom", com.softlayer.api.service.Location.Mask.class); } public com.softlayer.api.service.software.Component.Mask softwareComponents() { return withSubMask("softwareComponents", com.softlayer.api.service.software.Component.Mask.class); } public com.softlayer.api.service.security.ssh.Key.Mask sshKeys() { return withSubMask("sshKeys", com.softlayer.api.service.security.ssh.Key.Mask.class); } public com.softlayer.api.service.virtual.guest.Status.Mask status() { return withSubMask("status", com.softlayer.api.service.virtual.guest.Status.Mask.class); } public com.softlayer.api.service.tag.Reference.Mask tagReferences() { return withSubMask("tagReferences", com.softlayer.api.service.tag.Reference.Mask.class); } public com.softlayer.api.service.virtual.guest.Type.Mask type() { return withSubMask("type", com.softlayer.api.service.virtual.guest.Type.Mask.class); } public com.softlayer.api.service.product.upgrade.Request.Mask upgradeRequest() { return withSubMask("upgradeRequest", com.softlayer.api.service.product.upgrade.Request.Mask.class); } public com.softlayer.api.service.virtual.guest.Attribute.Mask userData() { return withSubMask("userData", com.softlayer.api.service.virtual.guest.Attribute.Mask.class); } public com.softlayer.api.service.user.Customer.Mask users() { return withSubMask("users", com.softlayer.api.service.user.Customer.Mask.class); } public com.softlayer.api.service.network.bandwidth.version1.Allotment.Mask virtualRack() { return withSubMask("virtualRack", com.softlayer.api.service.network.bandwidth.version1.Allotment.Mask.class); } public Mask virtualRackId() { withLocalProperty("virtualRackId"); return this; } public Mask virtualRackName() { withLocalProperty("virtualRackName"); return this; } public Mask accountId() { withLocalProperty("accountId"); return this; } public Mask createDate() { withLocalProperty("createDate"); return this; } public Mask dedicatedAccountHostOnlyFlag() { withLocalProperty("dedicatedAccountHostOnlyFlag"); return this; } public Mask domain() { withLocalProperty("domain"); return this; } public Mask fullyQualifiedDomainName() { withLocalProperty("fullyQualifiedDomainName"); return this; } public Mask hostname() { withLocalProperty("hostname"); return this; } public Mask id() { withLocalProperty("id"); return this; } public Mask lastPowerStateId() { withLocalProperty("lastPowerStateId"); return this; } public Mask lastVerifiedDate() { withLocalProperty("lastVerifiedDate"); return this; } public Mask maxCpu() { withLocalProperty("maxCpu"); return this; } public Mask maxCpuUnits() { withLocalProperty("maxCpuUnits"); return this; } public Mask maxMemory() { withLocalProperty("maxMemory"); return this; } public Mask metricPollDate() { withLocalProperty("metricPollDate"); return this; } public Mask modifyDate() { withLocalProperty("modifyDate"); return this; } public Mask notes() { withLocalProperty("notes"); return this; } public Mask postInstallScriptUri() { withLocalProperty("postInstallScriptUri"); return this; } public Mask provisionDate() { withLocalProperty("provisionDate"); return this; } public Mask startCpus() { withLocalProperty("startCpus"); return this; } public Mask statusId() { withLocalProperty("statusId"); return this; } public com.softlayer.api.service.virtual.guest.SupplementalCreateObjectOptions.Mask supplementalCreateObjectOptions() { return withSubMask("supplementalCreateObjectOptions", com.softlayer.api.service.virtual.guest.SupplementalCreateObjectOptions.Mask.class); } public Mask typeId() { withLocalProperty("typeId"); return this; } public Mask uuid() { withLocalProperty("uuid"); return this; } public Mask activeNetworkMonitorIncidentCount() { withLocalProperty("activeNetworkMonitorIncidentCount"); return this; } public Mask activeTicketCount() { withLocalProperty("activeTicketCount"); return this; } public Mask activeTransactionCount() { withLocalProperty("activeTransactionCount"); return this; } public Mask allowedNetworkStorageCount() { withLocalProperty("allowedNetworkStorageCount"); return this; } public Mask allowedNetworkStorageReplicaCount() { withLocalProperty("allowedNetworkStorageReplicaCount"); return this; } public Mask attributeCount() { withLocalProperty("attributeCount"); return this; } public Mask availableMonitoringCount() { withLocalProperty("availableMonitoringCount"); return this; } public Mask backendNetworkComponentCount() { withLocalProperty("backendNetworkComponentCount"); return this; } public Mask backendRouterCount() { withLocalProperty("backendRouterCount"); return this; } public Mask billingCycleBandwidthUsageCount() { withLocalProperty("billingCycleBandwidthUsageCount"); return this; } public Mask blockDeviceCount() { withLocalProperty("blockDeviceCount"); return this; } public Mask evaultNetworkStorageCount() { withLocalProperty("evaultNetworkStorageCount"); return this; } public Mask frontendNetworkComponentCount() { withLocalProperty("frontendNetworkComponentCount"); return this; } public Mask internalTagReferenceCount() { withLocalProperty("internalTagReferenceCount"); return this; } public Mask monitoringAgentCount() { withLocalProperty("monitoringAgentCount"); return this; } public Mask monitoringUserNotificationCount() { withLocalProperty("monitoringUserNotificationCount"); return this; } public Mask networkComponentCount() { withLocalProperty("networkComponentCount"); return this; } public Mask networkMonitorCount() { withLocalProperty("networkMonitorCount"); return this; } public Mask networkMonitorIncidentCount() { withLocalProperty("networkMonitorIncidentCount"); return this; } public Mask networkStorageCount() { withLocalProperty("networkStorageCount"); return this; } public Mask networkVlanCount() { withLocalProperty("networkVlanCount"); return this; } public Mask recentEventCount() { withLocalProperty("recentEventCount"); return this; } public Mask scaleAssetCount() { withLocalProperty("scaleAssetCount"); return this; } public Mask securityScanRequestCount() { withLocalProperty("securityScanRequestCount"); return this; } public Mask softwareComponentCount() { withLocalProperty("softwareComponentCount"); return this; } public Mask sshKeyCount() { withLocalProperty("sshKeyCount"); return this; } public Mask tagReferenceCount() { withLocalProperty("tagReferenceCount"); return this; } public Mask userCount() { withLocalProperty("userCount"); return this; } public Mask userDataCount() { withLocalProperty("userDataCount"); return this; } } }