
com.pulumi.azurenative.network.inputs.VM 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.network.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Describes a Virtual Machine.
*
*/
public final class VM extends com.pulumi.resources.InvokeArgs {
public static final VM Empty = new VM();
/**
* Resource ID.
*
*/
@Import(name="id")
private @Nullable String id;
/**
* @return Resource ID.
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* Resource location.
*
*/
@Import(name="location")
private @Nullable String location;
/**
* @return Resource location.
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* Resource tags.
*
*/
@Import(name="tags")
private @Nullable Map tags;
/**
* @return Resource tags.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy