com.pulumi.linode.inputs.GetVolumeArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linode Show documentation
Show all versions of linode Show documentation
A Pulumi package for creating and managing linode 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.pulumi.linode.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.util.Objects;
public final class GetVolumeArgs extends com.pulumi.resources.InvokeArgs {
public static final GetVolumeArgs Empty = new GetVolumeArgs();
/**
* The unique numeric ID of the Volume record to query.
*
*/
@Import(name="id", required=true)
private Output id;
/**
* @return The unique numeric ID of the Volume record to query.
*
*/
public Output id() {
return this.id;
}
private GetVolumeArgs() {}
private GetVolumeArgs(GetVolumeArgs $) {
this.id = $.id;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetVolumeArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetVolumeArgs $;
public Builder() {
$ = new GetVolumeArgs();
}
public Builder(GetVolumeArgs defaults) {
$ = new GetVolumeArgs(Objects.requireNonNull(defaults));
}
/**
* @param id The unique numeric ID of the Volume record to query.
*
* @return builder
*
*/
public Builder id(Output id) {
$.id = id;
return this;
}
/**
* @param id The unique numeric ID of the Volume record to query.
*
* @return builder
*
*/
public Builder id(Integer id) {
return id(Output.of(id));
}
public GetVolumeArgs build() {
if ($.id == null) {
throw new MissingRequiredPropertyException("GetVolumeArgs", "id");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy