![JAR search and dependency download from the Maven repository](/logo.png)
com.equinix.pulumi.networkedge.inputs.GetDevicePlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of equinix Show documentation
Show all versions of equinix Show documentation
A Pulumi package for creating and managing equinix cloud 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.equinix.pulumi.networkedge.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetDevicePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDevicePlainArgs Empty = new GetDevicePlainArgs();
/**
* Name of an existing Equinix Network Edge device
*
*/
@Import(name="name")
private @Nullable String name;
/**
* @return Name of an existing Equinix Network Edge device
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* UUID of an existing Equinix Network Edge device
*
*/
@Import(name="uuid")
private @Nullable String uuid;
/**
* @return UUID of an existing Equinix Network Edge device
*
*/
public Optional uuid() {
return Optional.ofNullable(this.uuid);
}
/**
* Device states to be considered valid when searching for a device by name
*
* NOTE: Exactly one of either `uuid` or `name` must be specified.
*
*/
@Import(name="validStatusList")
private @Nullable String validStatusList;
/**
* @return Device states to be considered valid when searching for a device by name
*
* NOTE: Exactly one of either `uuid` or `name` must be specified.
*
*/
public Optional validStatusList() {
return Optional.ofNullable(this.validStatusList);
}
private GetDevicePlainArgs() {}
private GetDevicePlainArgs(GetDevicePlainArgs $) {
this.name = $.name;
this.uuid = $.uuid;
this.validStatusList = $.validStatusList;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDevicePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDevicePlainArgs $;
public Builder() {
$ = new GetDevicePlainArgs();
}
public Builder(GetDevicePlainArgs defaults) {
$ = new GetDevicePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param name Name of an existing Equinix Network Edge device
*
* @return builder
*
*/
public Builder name(@Nullable String name) {
$.name = name;
return this;
}
/**
* @param uuid UUID of an existing Equinix Network Edge device
*
* @return builder
*
*/
public Builder uuid(@Nullable String uuid) {
$.uuid = uuid;
return this;
}
/**
* @param validStatusList Device states to be considered valid when searching for a device by name
*
* NOTE: Exactly one of either `uuid` or `name` must be specified.
*
* @return builder
*
*/
public Builder validStatusList(@Nullable String validStatusList) {
$.validStatusList = validStatusList;
return this;
}
public GetDevicePlainArgs build() {
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy