com.pulumi.azurenative.connectedvmwarevsphere.VirtualMachine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.connectedvmwarevsphere;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.connectedvmwarevsphere.VirtualMachineArgs;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.ExtendedLocationResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.GuestAgentProfileResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.HardwareProfileResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.IdentityResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.NetworkProfileResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.OsProfileResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.PlacementProfileResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.ResourceStatusResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.SecurityProfileResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.StorageProfileResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.SystemDataResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Define the virtualMachine.
* Azure REST API version: 2022-07-15-preview. Prior API version in Azure Native 1.x: 2020-10-01-preview.
*
* Other available API versions: 2023-03-01-preview.
*
* ## Example Usage
* ### CreateVirtualMachine
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.connectedvmwarevsphere.VirtualMachine;
* import com.pulumi.azurenative.connectedvmwarevsphere.VirtualMachineArgs;
* import com.pulumi.azurenative.connectedvmwarevsphere.inputs.ExtendedLocationArgs;
* import com.pulumi.azurenative.connectedvmwarevsphere.inputs.HardwareProfileArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
*
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
*
* public static void stack(Context ctx) {
* var virtualMachine = new VirtualMachine("virtualMachine", VirtualMachineArgs.builder()
* .extendedLocation(ExtendedLocationArgs.builder()
* .name("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso")
* .type("customLocation")
* .build())
* .hardwareProfile(HardwareProfileArgs.builder()
* .memorySizeMB(4196)
* .numCPUs(4)
* .build())
* .location("East US")
* .resourceGroupName("testrg")
* .resourcePoolId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/ResourcePools/HRPool")
* .templateId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VirtualMachineTemplates/WebFrontEndTemplate")
* .vCenterId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VCenters/ContosoVCenter")
* .virtualMachineName("DemoVM")
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:connectedvmwarevsphere:VirtualMachine DemoVM /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/virtualMachines/{virtualMachineName}
* ```
*
*/
@ResourceType(type="azure-native:connectedvmwarevsphere:VirtualMachine")
public class VirtualMachine extends com.pulumi.resources.CustomResource {
/**
* Gets the name of the corresponding resource in Kubernetes.
*
*/
@Export(name="customResourceName", refs={String.class}, tree="[0]")
private Output customResourceName;
/**
* @return Gets the name of the corresponding resource in Kubernetes.
*
*/
public Output customResourceName() {
return this.customResourceName;
}
/**
* Gets or sets the extended location.
*
*/
@Export(name="extendedLocation", refs={ExtendedLocationResponse.class}, tree="[0]")
private Output* @Nullable */ ExtendedLocationResponse> extendedLocation;
/**
* @return Gets or sets the extended location.
*
*/
public Output> extendedLocation() {
return Codegen.optional(this.extendedLocation);
}
/**
* Firmware type
*
*/
@Export(name="firmwareType", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> firmwareType;
/**
* @return Firmware type
*
*/
public Output> firmwareType() {
return Codegen.optional(this.firmwareType);
}
/**
* Gets or sets the folder path of the vm.
*
*/
@Export(name="folderPath", refs={String.class}, tree="[0]")
private Output folderPath;
/**
* @return Gets or sets the folder path of the vm.
*
*/
public Output folderPath() {
return this.folderPath;
}
/**
* Guest agent status properties.
*
*/
@Export(name="guestAgentProfile", refs={GuestAgentProfileResponse.class}, tree="[0]")
private Output* @Nullable */ GuestAgentProfileResponse> guestAgentProfile;
/**
* @return Guest agent status properties.
*
*/
public Output> guestAgentProfile() {
return Codegen.optional(this.guestAgentProfile);
}
/**
* Hardware properties.
*
*/
@Export(name="hardwareProfile", refs={HardwareProfileResponse.class}, tree="[0]")
private Output* @Nullable */ HardwareProfileResponse> hardwareProfile;
/**
* @return Hardware properties.
*
*/
public Output> hardwareProfile() {
return Codegen.optional(this.hardwareProfile);
}
/**
* The identity of the resource.
*
*/
@Export(name="identity", refs={IdentityResponse.class}, tree="[0]")
private Output* @Nullable */ IdentityResponse> identity;
/**
* @return The identity of the resource.
*
*/
public Output> identity() {
return Codegen.optional(this.identity);
}
/**
* Gets or sets the instance uuid of the vm.
*
*/
@Export(name="instanceUuid", refs={String.class}, tree="[0]")
private Output instanceUuid;
/**
* @return Gets or sets the instance uuid of the vm.
*
*/
public Output instanceUuid() {
return this.instanceUuid;
}
/**
* Gets or sets the inventory Item ID for the virtual machine.
*
*/
@Export(name="inventoryItemId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> inventoryItemId;
/**
* @return Gets or sets the inventory Item ID for the virtual machine.
*
*/
public Output> inventoryItemId() {
return Codegen.optional(this.inventoryItemId);
}
/**
* Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
*
*/
@Export(name="kind", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> kind;
/**
* @return Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
*
*/
public Output> kind() {
return Codegen.optional(this.kind);
}
/**
* Gets or sets the location.
*
*/
@Export(name="location", refs={String.class}, tree="[0]")
private Output location;
/**
* @return Gets or sets the location.
*
*/
public Output location() {
return this.location;
}
/**
* Gets or sets the vCenter Managed Object name for the virtual machine.
*
*/
@Export(name="moName", refs={String.class}, tree="[0]")
private Output moName;
/**
* @return Gets or sets the vCenter Managed Object name for the virtual machine.
*
*/
public Output moName() {
return this.moName;
}
/**
* Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine.
*
*/
@Export(name="moRefId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> moRefId;
/**
* @return Gets or sets the vCenter MoRef (Managed Object Reference) ID for the virtual machine.
*
*/
public Output> moRefId() {
return Codegen.optional(this.moRefId);
}
/**
* Gets or sets the name.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Gets or sets the name.
*
*/
public Output name() {
return this.name;
}
/**
* Network properties.
*
*/
@Export(name="networkProfile", refs={NetworkProfileResponse.class}, tree="[0]")
private Output* @Nullable */ NetworkProfileResponse> networkProfile;
/**
* @return Network properties.
*
*/
public Output> networkProfile() {
return Codegen.optional(this.networkProfile);
}
/**
* OS properties.
*
*/
@Export(name="osProfile", refs={OsProfileResponse.class}, tree="[0]")
private Output* @Nullable */ OsProfileResponse> osProfile;
/**
* @return OS properties.
*
*/
public Output> osProfile() {
return Codegen.optional(this.osProfile);
}
/**
* Placement properties.
*
*/
@Export(name="placementProfile", refs={PlacementProfileResponse.class}, tree="[0]")
private Output* @Nullable */ PlacementProfileResponse> placementProfile;
/**
* @return Placement properties.
*
*/
public Output> placementProfile() {
return Codegen.optional(this.placementProfile);
}
/**
* Gets the power state of the virtual machine.
*
*/
@Export(name="powerState", refs={String.class}, tree="[0]")
private Output powerState;
/**
* @return Gets the power state of the virtual machine.
*
*/
public Output powerState() {
return this.powerState;
}
/**
* Gets or sets the provisioning state.
*
*/
@Export(name="provisioningState", refs={String.class}, tree="[0]")
private Output provisioningState;
/**
* @return Gets or sets the provisioning state.
*
*/
public Output provisioningState() {
return this.provisioningState;
}
/**
* Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will
* deploy.
*
*/
@Export(name="resourcePoolId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> resourcePoolId;
/**
* @return Gets or sets the ARM Id of the resourcePool resource on which this virtual machine will
* deploy.
*
*/
public Output> resourcePoolId() {
return Codegen.optional(this.resourcePoolId);
}
/**
* Gets the security profile.
*
*/
@Export(name="securityProfile", refs={SecurityProfileResponse.class}, tree="[0]")
private Output* @Nullable */ SecurityProfileResponse> securityProfile;
/**
* @return Gets the security profile.
*
*/
public Output> securityProfile() {
return Codegen.optional(this.securityProfile);
}
/**
* Gets or sets the SMBIOS UUID of the vm.
*
*/
@Export(name="smbiosUuid", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> smbiosUuid;
/**
* @return Gets or sets the SMBIOS UUID of the vm.
*
*/
public Output> smbiosUuid() {
return Codegen.optional(this.smbiosUuid);
}
/**
* The resource status information.
*
*/
@Export(name="statuses", refs={List.class,ResourceStatusResponse.class}, tree="[0,1]")
private Output> statuses;
/**
* @return The resource status information.
*
*/
public Output> statuses() {
return this.statuses;
}
/**
* Storage properties.
*
*/
@Export(name="storageProfile", refs={StorageProfileResponse.class}, tree="[0]")
private Output* @Nullable */ StorageProfileResponse> storageProfile;
/**
* @return Storage properties.
*
*/
public Output> storageProfile() {
return Codegen.optional(this.storageProfile);
}
/**
* The system data.
*
*/
@Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]")
private Output systemData;
/**
* @return The system data.
*
*/
public Output systemData() {
return this.systemData;
}
/**
* Gets or sets the Resource tags.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return Gets or sets the Resource tags.
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* Gets or sets the ARM Id of the template resource to deploy the virtual machine.
*
*/
@Export(name="templateId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> templateId;
/**
* @return Gets or sets the ARM Id of the template resource to deploy the virtual machine.
*
*/
public Output> templateId() {
return Codegen.optional(this.templateId);
}
/**
* Gets or sets the type of the resource.
*
*/
@Export(name="type", refs={String.class}, tree="[0]")
private Output type;
/**
* @return Gets or sets the type of the resource.
*
*/
public Output type() {
return this.type;
}
/**
* Gets or sets a unique identifier for this resource.
*
*/
@Export(name="uuid", refs={String.class}, tree="[0]")
private Output uuid;
/**
* @return Gets or sets a unique identifier for this resource.
*
*/
public Output uuid() {
return this.uuid;
}
/**
* Gets or sets the ARM Id of the vCenter resource in which this resource pool resides.
*
*/
@Export(name="vCenterId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> vCenterId;
/**
* @return Gets or sets the ARM Id of the vCenter resource in which this resource pool resides.
*
*/
public Output> vCenterId() {
return Codegen.optional(this.vCenterId);
}
/**
* Gets or sets a unique identifier for the vm resource.
*
*/
@Export(name="vmId", refs={String.class}, tree="[0]")
private Output vmId;
/**
* @return Gets or sets a unique identifier for the vm resource.
*
*/
public Output vmId() {
return this.vmId;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public VirtualMachine(java.lang.String name) {
this(name, VirtualMachineArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public VirtualMachine(java.lang.String name, VirtualMachineArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public VirtualMachine(java.lang.String name, VirtualMachineArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:connectedvmwarevsphere:VirtualMachine", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private VirtualMachine(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:connectedvmwarevsphere:VirtualMachine", name, null, makeResourceOptions(options, id), false);
}
private static VirtualMachineArgs makeArgs(VirtualMachineArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? VirtualMachineArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.aliases(List.of(
Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20201001preview:VirtualMachine").build()),
Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20220110preview:VirtualMachine").build()),
Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20220715preview:VirtualMachine").build()),
Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20230301preview:VirtualMachine").build())
))
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static VirtualMachine get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new VirtualMachine(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy