com.pulumi.azurenative.serialconsole.SerialPortArgs 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.serialconsole;
import com.pulumi.azurenative.serialconsole.enums.SerialPortState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class SerialPortArgs extends com.pulumi.resources.ResourceArgs {
public static final SerialPortArgs Empty = new SerialPortArgs();
/**
* The resource name, or subordinate path, for the parent of the serial port. For example: the name of the virtual machine.
*
*/
@Import(name="parentResource", required=true)
private Output parentResource;
/**
* @return The resource name, or subordinate path, for the parent of the serial port. For example: the name of the virtual machine.
*
*/
public Output parentResource() {
return this.parentResource;
}
/**
* The resource type of the parent resource. For example: 'virtualMachines' or 'virtualMachineScaleSets'
*
*/
@Import(name="parentResourceType", required=true)
private Output parentResourceType;
/**
* @return The resource type of the parent resource. For example: 'virtualMachines' or 'virtualMachineScaleSets'
*
*/
public Output parentResourceType() {
return this.parentResourceType;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The namespace of the resource provider.
*
*/
@Import(name="resourceProviderNamespace", required=true)
private Output resourceProviderNamespace;
/**
* @return The namespace of the resource provider.
*
*/
public Output resourceProviderNamespace() {
return this.resourceProviderNamespace;
}
/**
* The name of the serial port to create.
*
*/
@Import(name="serialPort")
private @Nullable Output serialPort;
/**
* @return The name of the serial port to create.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy