com.azure.resourcemanager.compute.fluent.models.VirtualMachineInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.Resource;
import com.azure.core.management.SubResource;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.compute.models.AdditionalCapabilities;
import com.azure.resourcemanager.compute.models.ApplicationProfile;
import com.azure.resourcemanager.compute.models.BillingProfile;
import com.azure.resourcemanager.compute.models.CapacityReservationProfile;
import com.azure.resourcemanager.compute.models.DiagnosticsProfile;
import com.azure.resourcemanager.compute.models.ExtendedLocation;
import com.azure.resourcemanager.compute.models.HardwareProfile;
import com.azure.resourcemanager.compute.models.NetworkProfile;
import com.azure.resourcemanager.compute.models.OSProfile;
import com.azure.resourcemanager.compute.models.Plan;
import com.azure.resourcemanager.compute.models.ScheduledEventsPolicy;
import com.azure.resourcemanager.compute.models.ScheduledEventsProfile;
import com.azure.resourcemanager.compute.models.SecurityProfile;
import com.azure.resourcemanager.compute.models.StorageProfile;
import com.azure.resourcemanager.compute.models.VirtualMachineEvictionPolicyTypes;
import com.azure.resourcemanager.compute.models.VirtualMachineIdentity;
import com.azure.resourcemanager.compute.models.VirtualMachinePriorityTypes;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.List;
import java.util.Map;
/**
* Describes a Virtual Machine.
*/
@Fluent
public final class VirtualMachineInner extends Resource {
/*
* Specifies information about the marketplace image used to create the virtual machine. This element is only used
* for marketplace images. Before you can use a marketplace image from an API, you must enable the image for
* programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to
* deploy programmatically, Get Started ->**. Enter any required information and then click **Save**.
*/
private Plan plan;
/*
* Describes the properties of a Virtual Machine.
*/
private VirtualMachinePropertiesInner innerProperties;
/*
* The virtual machine child extension resources.
*/
private List resources;
/*
* The identity of the virtual machine, if configured.
*/
private VirtualMachineIdentity identity;
/*
* The virtual machine zones.
*/
private List zones;
/*
* The extended location of the Virtual Machine.
*/
private ExtendedLocation extendedLocation;
/*
* ManagedBy is set to Virtual Machine Scale Set(VMSS) flex ARM resourceID, if the VM is part of the VMSS. This
* property is used by platform for internal resource group delete optimization.
*/
private String managedBy;
/*
* Etag is property returned in Create/Update/Get response of the VM, so that customer can supply it in the header
* to ensure optimistic updates.
*/
private String etag;
/*
* Fully qualified resource Id for the resource.
*/
private String id;
/*
* The name of the resource.
*/
private String name;
/*
* The type of the resource.
*/
private String type;
/**
* Creates an instance of VirtualMachineInner class.
*/
public VirtualMachineInner() {
}
/**
* Get the plan property: Specifies information about the marketplace image used to create the virtual machine. This
* element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable
* the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then
* click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click
* **Save**.
*
* @return the plan value.
*/
public Plan plan() {
return this.plan;
}
/**
* Set the plan property: Specifies information about the marketplace image used to create the virtual machine. This
* element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable
* the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then
* click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click
* **Save**.
*
* @param plan the plan value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withPlan(Plan plan) {
this.plan = plan;
return this;
}
/**
* Get the innerProperties property: Describes the properties of a Virtual Machine.
*
* @return the innerProperties value.
*/
private VirtualMachinePropertiesInner innerProperties() {
return this.innerProperties;
}
/**
* Get the resources property: The virtual machine child extension resources.
*
* @return the resources value.
*/
public List resources() {
return this.resources;
}
/**
* Get the identity property: The identity of the virtual machine, if configured.
*
* @return the identity value.
*/
public VirtualMachineIdentity identity() {
return this.identity;
}
/**
* Set the identity property: The identity of the virtual machine, if configured.
*
* @param identity the identity value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withIdentity(VirtualMachineIdentity identity) {
this.identity = identity;
return this;
}
/**
* Get the zones property: The virtual machine zones.
*
* @return the zones value.
*/
public List zones() {
return this.zones;
}
/**
* Set the zones property: The virtual machine zones.
*
* @param zones the zones value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withZones(List zones) {
this.zones = zones;
return this;
}
/**
* Get the extendedLocation property: The extended location of the Virtual Machine.
*
* @return the extendedLocation value.
*/
public ExtendedLocation extendedLocation() {
return this.extendedLocation;
}
/**
* Set the extendedLocation property: The extended location of the Virtual Machine.
*
* @param extendedLocation the extendedLocation value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withExtendedLocation(ExtendedLocation extendedLocation) {
this.extendedLocation = extendedLocation;
return this;
}
/**
* Get the managedBy property: ManagedBy is set to Virtual Machine Scale Set(VMSS) flex ARM resourceID, if the VM is
* part of the VMSS. This property is used by platform for internal resource group delete optimization.
*
* @return the managedBy value.
*/
public String managedBy() {
return this.managedBy;
}
/**
* Get the etag property: Etag is property returned in Create/Update/Get response of the VM, so that customer can
* supply it in the header to ensure optimistic updates.
*
* @return the etag value.
*/
public String etag() {
return this.etag;
}
/**
* Get the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
@Override
public String id() {
return this.id;
}
/**
* Get the name property: The name of the resource.
*
* @return the name value.
*/
@Override
public String name() {
return this.name;
}
/**
* Get the type property: The type of the resource.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* {@inheritDoc}
*/
@Override
public VirtualMachineInner withLocation(String location) {
super.withLocation(location);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public VirtualMachineInner withTags(Map tags) {
super.withTags(tags);
return this;
}
/**
* Get the hardwareProfile property: Specifies the hardware settings for the virtual machine.
*
* @return the hardwareProfile value.
*/
public HardwareProfile hardwareProfile() {
return this.innerProperties() == null ? null : this.innerProperties().hardwareProfile();
}
/**
* Set the hardwareProfile property: Specifies the hardware settings for the virtual machine.
*
* @param hardwareProfile the hardwareProfile value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withHardwareProfile(HardwareProfile hardwareProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withHardwareProfile(hardwareProfile);
return this;
}
/**
* Get the scheduledEventsPolicy property: Specifies Redeploy, Reboot and ScheduledEventsAdditionalPublishingTargets
* Scheduled Event related configurations for the virtual machine.
*
* @return the scheduledEventsPolicy value.
*/
public ScheduledEventsPolicy scheduledEventsPolicy() {
return this.innerProperties() == null ? null : this.innerProperties().scheduledEventsPolicy();
}
/**
* Set the scheduledEventsPolicy property: Specifies Redeploy, Reboot and ScheduledEventsAdditionalPublishingTargets
* Scheduled Event related configurations for the virtual machine.
*
* @param scheduledEventsPolicy the scheduledEventsPolicy value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withScheduledEventsPolicy(ScheduledEventsPolicy scheduledEventsPolicy) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withScheduledEventsPolicy(scheduledEventsPolicy);
return this;
}
/**
* Get the storageProfile property: Specifies the storage settings for the virtual machine disks.
*
* @return the storageProfile value.
*/
public StorageProfile storageProfile() {
return this.innerProperties() == null ? null : this.innerProperties().storageProfile();
}
/**
* Set the storageProfile property: Specifies the storage settings for the virtual machine disks.
*
* @param storageProfile the storageProfile value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withStorageProfile(StorageProfile storageProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withStorageProfile(storageProfile);
return this;
}
/**
* Get the additionalCapabilities property: Specifies additional capabilities enabled or disabled on the virtual
* machine.
*
* @return the additionalCapabilities value.
*/
public AdditionalCapabilities additionalCapabilities() {
return this.innerProperties() == null ? null : this.innerProperties().additionalCapabilities();
}
/**
* Set the additionalCapabilities property: Specifies additional capabilities enabled or disabled on the virtual
* machine.
*
* @param additionalCapabilities the additionalCapabilities value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withAdditionalCapabilities(AdditionalCapabilities additionalCapabilities) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withAdditionalCapabilities(additionalCapabilities);
return this;
}
/**
* Get the osProfile property: Specifies the operating system settings used while creating the virtual machine. Some
* of the settings cannot be changed once VM is provisioned.
*
* @return the osProfile value.
*/
public OSProfile osProfile() {
return this.innerProperties() == null ? null : this.innerProperties().osProfile();
}
/**
* Set the osProfile property: Specifies the operating system settings used while creating the virtual machine. Some
* of the settings cannot be changed once VM is provisioned.
*
* @param osProfile the osProfile value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withOsProfile(OSProfile osProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withOsProfile(osProfile);
return this;
}
/**
* Get the networkProfile property: Specifies the network interfaces of the virtual machine.
*
* @return the networkProfile value.
*/
public NetworkProfile networkProfile() {
return this.innerProperties() == null ? null : this.innerProperties().networkProfile();
}
/**
* Set the networkProfile property: Specifies the network interfaces of the virtual machine.
*
* @param networkProfile the networkProfile value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withNetworkProfile(NetworkProfile networkProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withNetworkProfile(networkProfile);
return this;
}
/**
* Get the securityProfile property: Specifies the Security related profile settings for the virtual machine.
*
* @return the securityProfile value.
*/
public SecurityProfile securityProfile() {
return this.innerProperties() == null ? null : this.innerProperties().securityProfile();
}
/**
* Set the securityProfile property: Specifies the Security related profile settings for the virtual machine.
*
* @param securityProfile the securityProfile value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withSecurityProfile(SecurityProfile securityProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withSecurityProfile(securityProfile);
return this;
}
/**
* Get the diagnosticsProfile property: Specifies the boot diagnostic settings state. Minimum api-version:
* 2015-06-15.
*
* @return the diagnosticsProfile value.
*/
public DiagnosticsProfile diagnosticsProfile() {
return this.innerProperties() == null ? null : this.innerProperties().diagnosticsProfile();
}
/**
* Set the diagnosticsProfile property: Specifies the boot diagnostic settings state. Minimum api-version:
* 2015-06-15.
*
* @param diagnosticsProfile the diagnosticsProfile value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withDiagnosticsProfile(DiagnosticsProfile diagnosticsProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withDiagnosticsProfile(diagnosticsProfile);
return this;
}
/**
* Get the availabilitySet property: Specifies information about the availability set that the virtual machine
* should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes
* to maximize availability. For more information about availability sets, see [Availability sets
* overview](https://docs.microsoft.com/azure/virtual-machines/availability-set-overview). For more information on
* Azure planned maintenance, see [Maintenance and updates for Virtual Machines in
* Azure](https://docs.microsoft.com/azure/virtual-machines/maintenance-and-updates). Currently, a VM can only be
* added to availability set at creation time. The availability set to which the VM is being added should be under
* the same resource group as the availability set resource. An existing VM cannot be added to an availability set.
* This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
*
* @return the availabilitySet value.
*/
public SubResource availabilitySet() {
return this.innerProperties() == null ? null : this.innerProperties().availabilitySet();
}
/**
* Set the availabilitySet property: Specifies information about the availability set that the virtual machine
* should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes
* to maximize availability. For more information about availability sets, see [Availability sets
* overview](https://docs.microsoft.com/azure/virtual-machines/availability-set-overview). For more information on
* Azure planned maintenance, see [Maintenance and updates for Virtual Machines in
* Azure](https://docs.microsoft.com/azure/virtual-machines/maintenance-and-updates). Currently, a VM can only be
* added to availability set at creation time. The availability set to which the VM is being added should be under
* the same resource group as the availability set resource. An existing VM cannot be added to an availability set.
* This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.
*
* @param availabilitySet the availabilitySet value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withAvailabilitySet(SubResource availabilitySet) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withAvailabilitySet(availabilitySet);
return this;
}
/**
* Get the virtualMachineScaleSet property: Specifies information about the virtual machine scale set that the
* virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are
* allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale
* set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist
* along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01.
*
* @return the virtualMachineScaleSet value.
*/
public SubResource virtualMachineScaleSet() {
return this.innerProperties() == null ? null : this.innerProperties().virtualMachineScaleSet();
}
/**
* Set the virtualMachineScaleSet property: Specifies information about the virtual machine scale set that the
* virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are
* allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale
* set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist
* along with a non-null properties.availabilitySet reference. Minimum api‐version: 2019‐03‐01.
*
* @param virtualMachineScaleSet the virtualMachineScaleSet value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withVirtualMachineScaleSet(SubResource virtualMachineScaleSet) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withVirtualMachineScaleSet(virtualMachineScaleSet);
return this;
}
/**
* Get the proximityPlacementGroup property: Specifies information about the proximity placement group that the
* virtual machine should be assigned to. Minimum api-version: 2018-04-01.
*
* @return the proximityPlacementGroup value.
*/
public SubResource proximityPlacementGroup() {
return this.innerProperties() == null ? null : this.innerProperties().proximityPlacementGroup();
}
/**
* Set the proximityPlacementGroup property: Specifies information about the proximity placement group that the
* virtual machine should be assigned to. Minimum api-version: 2018-04-01.
*
* @param proximityPlacementGroup the proximityPlacementGroup value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withProximityPlacementGroup(SubResource proximityPlacementGroup) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withProximityPlacementGroup(proximityPlacementGroup);
return this;
}
/**
* Get the priority property: Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01.
*
* @return the priority value.
*/
public VirtualMachinePriorityTypes priority() {
return this.innerProperties() == null ? null : this.innerProperties().priority();
}
/**
* Set the priority property: Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01.
*
* @param priority the priority value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withPriority(VirtualMachinePriorityTypes priority) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withPriority(priority);
return this;
}
/**
* Get the evictionPolicy property: Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot
* scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum
* api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the
* minimum api-version is 2017-10-30-preview.
*
* @return the evictionPolicy value.
*/
public VirtualMachineEvictionPolicyTypes evictionPolicy() {
return this.innerProperties() == null ? null : this.innerProperties().evictionPolicy();
}
/**
* Set the evictionPolicy property: Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot
* scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum
* api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the
* minimum api-version is 2017-10-30-preview.
*
* @param evictionPolicy the evictionPolicy value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withEvictionPolicy(VirtualMachineEvictionPolicyTypes evictionPolicy) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withEvictionPolicy(evictionPolicy);
return this;
}
/**
* Get the billingProfile property: Specifies the billing related details of a Azure Spot virtual machine. Minimum
* api-version: 2019-03-01.
*
* @return the billingProfile value.
*/
public BillingProfile billingProfile() {
return this.innerProperties() == null ? null : this.innerProperties().billingProfile();
}
/**
* Set the billingProfile property: Specifies the billing related details of a Azure Spot virtual machine. Minimum
* api-version: 2019-03-01.
*
* @param billingProfile the billingProfile value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withBillingProfile(BillingProfile billingProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withBillingProfile(billingProfile);
return this;
}
/**
* Get the host property: Specifies information about the dedicated host that the virtual machine resides in.
* Minimum api-version: 2018-10-01.
*
* @return the host value.
*/
public SubResource host() {
return this.innerProperties() == null ? null : this.innerProperties().host();
}
/**
* Set the host property: Specifies information about the dedicated host that the virtual machine resides in.
* Minimum api-version: 2018-10-01.
*
* @param host the host value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withHost(SubResource host) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withHost(host);
return this;
}
/**
* Get the hostGroup property: Specifies information about the dedicated host group that the virtual machine resides
* in. **Note:** User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01.
*
* @return the hostGroup value.
*/
public SubResource hostGroup() {
return this.innerProperties() == null ? null : this.innerProperties().hostGroup();
}
/**
* Set the hostGroup property: Specifies information about the dedicated host group that the virtual machine resides
* in. **Note:** User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01.
*
* @param hostGroup the hostGroup value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withHostGroup(SubResource hostGroup) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withHostGroup(hostGroup);
return this;
}
/**
* Get the provisioningState property: The provisioning state, which only appears in the response.
*
* @return the provisioningState value.
*/
public String provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
}
/**
* Get the instanceView property: The virtual machine instance view.
*
* @return the instanceView value.
*/
public VirtualMachineInstanceViewInner instanceView() {
return this.innerProperties() == null ? null : this.innerProperties().instanceView();
}
/**
* Get the licenseType property: Specifies that the image or disk that is being used was licensed on-premises.
* <br><br> Possible values for Windows Server operating system are: <br><br> Windows_Client
* <br><br> Windows_Server <br><br> Possible values for Linux Server operating system are:
* <br><br> RHEL_BYOS (for RHEL) <br><br> SLES_BYOS (for SUSE) <br><br> For more
* information, see [Azure Hybrid Use Benefit for Windows
* Server](https://docs.microsoft.com/azure/virtual-machines/windows/hybrid-use-benefit-licensing)
* <br><br> [Azure Hybrid Use Benefit for Linux
* Server](https://docs.microsoft.com/azure/virtual-machines/linux/azure-hybrid-benefit-linux) <br><br>
* Minimum api-version: 2015-06-15.
*
* @return the licenseType value.
*/
public String licenseType() {
return this.innerProperties() == null ? null : this.innerProperties().licenseType();
}
/**
* Set the licenseType property: Specifies that the image or disk that is being used was licensed on-premises.
* <br><br> Possible values for Windows Server operating system are: <br><br> Windows_Client
* <br><br> Windows_Server <br><br> Possible values for Linux Server operating system are:
* <br><br> RHEL_BYOS (for RHEL) <br><br> SLES_BYOS (for SUSE) <br><br> For more
* information, see [Azure Hybrid Use Benefit for Windows
* Server](https://docs.microsoft.com/azure/virtual-machines/windows/hybrid-use-benefit-licensing)
* <br><br> [Azure Hybrid Use Benefit for Linux
* Server](https://docs.microsoft.com/azure/virtual-machines/linux/azure-hybrid-benefit-linux) <br><br>
* Minimum api-version: 2015-06-15.
*
* @param licenseType the licenseType value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withLicenseType(String licenseType) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withLicenseType(licenseType);
return this;
}
/**
* Get the vmId property: Specifies the VM unique ID which is a 128-bits identifier that is encoded and stored in
* all Azure IaaS VMs SMBIOS and can be read using platform BIOS commands.
*
* @return the vmId value.
*/
public String vmId() {
return this.innerProperties() == null ? null : this.innerProperties().vmId();
}
/**
* Get the extensionsTimeBudget property: Specifies the time alloted for all extensions to start. The time duration
* should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default
* value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
*
* @return the extensionsTimeBudget value.
*/
public String extensionsTimeBudget() {
return this.innerProperties() == null ? null : this.innerProperties().extensionsTimeBudget();
}
/**
* Set the extensionsTimeBudget property: Specifies the time alloted for all extensions to start. The time duration
* should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default
* value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
*
* @param extensionsTimeBudget the extensionsTimeBudget value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withExtensionsTimeBudget(String extensionsTimeBudget) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withExtensionsTimeBudget(extensionsTimeBudget);
return this;
}
/**
* Get the platformFaultDomain property: Specifies the scale set logical fault domain into which the Virtual Machine
* will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best
* maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet'
* property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have
* 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created.
* Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api‐version: 2020‐12‐01.
*
* @return the platformFaultDomain value.
*/
public Integer platformFaultDomain() {
return this.innerProperties() == null ? null : this.innerProperties().platformFaultDomain();
}
/**
* Set the platformFaultDomain property: Specifies the scale set logical fault domain into which the Virtual Machine
* will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best
* maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet'
* property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have
* 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created.
* Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api‐version: 2020‐12‐01.
*
* @param platformFaultDomain the platformFaultDomain value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withPlatformFaultDomain(Integer platformFaultDomain) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withPlatformFaultDomain(platformFaultDomain);
return this;
}
/**
* Get the scheduledEventsProfile property: Specifies Scheduled Event related configurations.
*
* @return the scheduledEventsProfile value.
*/
public ScheduledEventsProfile scheduledEventsProfile() {
return this.innerProperties() == null ? null : this.innerProperties().scheduledEventsProfile();
}
/**
* Set the scheduledEventsProfile property: Specifies Scheduled Event related configurations.
*
* @param scheduledEventsProfile the scheduledEventsProfile value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withScheduledEventsProfile(ScheduledEventsProfile scheduledEventsProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withScheduledEventsProfile(scheduledEventsProfile);
return this;
}
/**
* Get the userData property: UserData for the VM, which must be base-64 encoded. Customer should not pass any
* secrets in here. Minimum api-version: 2021-03-01.
*
* @return the userData value.
*/
public String userData() {
return this.innerProperties() == null ? null : this.innerProperties().userData();
}
/**
* Set the userData property: UserData for the VM, which must be base-64 encoded. Customer should not pass any
* secrets in here. Minimum api-version: 2021-03-01.
*
* @param userData the userData value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withUserData(String userData) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withUserData(userData);
return this;
}
/**
* Get the capacityReservation property: Specifies information about the capacity reservation that is used to
* allocate virtual machine. Minimum api-version: 2021-04-01.
*
* @return the capacityReservation value.
*/
public CapacityReservationProfile capacityReservation() {
return this.innerProperties() == null ? null : this.innerProperties().capacityReservation();
}
/**
* Set the capacityReservation property: Specifies information about the capacity reservation that is used to
* allocate virtual machine. Minimum api-version: 2021-04-01.
*
* @param capacityReservation the capacityReservation value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withCapacityReservation(CapacityReservationProfile capacityReservation) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withCapacityReservation(capacityReservation);
return this;
}
/**
* Get the applicationProfile property: Specifies the gallery applications that should be made available to the
* VM/VMSS.
*
* @return the applicationProfile value.
*/
public ApplicationProfile applicationProfile() {
return this.innerProperties() == null ? null : this.innerProperties().applicationProfile();
}
/**
* Set the applicationProfile property: Specifies the gallery applications that should be made available to the
* VM/VMSS.
*
* @param applicationProfile the applicationProfile value to set.
* @return the VirtualMachineInner object itself.
*/
public VirtualMachineInner withApplicationProfile(ApplicationProfile applicationProfile) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachinePropertiesInner();
}
this.innerProperties().withApplicationProfile(applicationProfile);
return this;
}
/**
* Get the timeCreated property: Specifies the time at which the Virtual Machine resource was created. Minimum
* api-version: 2021-11-01.
*
* @return the timeCreated value.
*/
public OffsetDateTime timeCreated() {
return this.innerProperties() == null ? null : this.innerProperties().timeCreated();
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (plan() != null) {
plan().validate();
}
if (innerProperties() != null) {
innerProperties().validate();
}
if (resources() != null) {
resources().forEach(e -> e.validate());
}
if (identity() != null) {
identity().validate();
}
if (extendedLocation() != null) {
extendedLocation().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("location", location());
jsonWriter.writeMapField("tags", tags(), (writer, element) -> writer.writeString(element));
jsonWriter.writeJsonField("plan", this.plan);
jsonWriter.writeJsonField("properties", this.innerProperties);
jsonWriter.writeJsonField("identity", this.identity);
jsonWriter.writeArrayField("zones", this.zones, (writer, element) -> writer.writeString(element));
jsonWriter.writeJsonField("extendedLocation", this.extendedLocation);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of VirtualMachineInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VirtualMachineInner if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the VirtualMachineInner.
*/
public static VirtualMachineInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VirtualMachineInner deserializedVirtualMachineInner = new VirtualMachineInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedVirtualMachineInner.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedVirtualMachineInner.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedVirtualMachineInner.type = reader.getString();
} else if ("location".equals(fieldName)) {
deserializedVirtualMachineInner.withLocation(reader.getString());
} else if ("tags".equals(fieldName)) {
Map tags = reader.readMap(reader1 -> reader1.getString());
deserializedVirtualMachineInner.withTags(tags);
} else if ("plan".equals(fieldName)) {
deserializedVirtualMachineInner.plan = Plan.fromJson(reader);
} else if ("properties".equals(fieldName)) {
deserializedVirtualMachineInner.innerProperties = VirtualMachinePropertiesInner.fromJson(reader);
} else if ("resources".equals(fieldName)) {
List resources
= reader.readArray(reader1 -> VirtualMachineExtensionInner.fromJson(reader1));
deserializedVirtualMachineInner.resources = resources;
} else if ("identity".equals(fieldName)) {
deserializedVirtualMachineInner.identity = VirtualMachineIdentity.fromJson(reader);
} else if ("zones".equals(fieldName)) {
List zones = reader.readArray(reader1 -> reader1.getString());
deserializedVirtualMachineInner.zones = zones;
} else if ("extendedLocation".equals(fieldName)) {
deserializedVirtualMachineInner.extendedLocation = ExtendedLocation.fromJson(reader);
} else if ("managedBy".equals(fieldName)) {
deserializedVirtualMachineInner.managedBy = reader.getString();
} else if ("etag".equals(fieldName)) {
deserializedVirtualMachineInner.etag = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedVirtualMachineInner;
});
}
}