com.pulumi.googlenative.compute.alpha.outputs.HelpResponse Maven / Gradle / Ivy
// *** 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.googlenative.compute.alpha.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.googlenative.compute.alpha.outputs.HelpLinkResponse;
import java.util.List;
import java.util.Objects;
@CustomType
public final class HelpResponse {
/**
* @return URL(s) pointing to additional information on handling the current error.
*
*/
private List links;
private HelpResponse() {}
/**
* @return URL(s) pointing to additional information on handling the current error.
*
*/
public List links() {
return this.links;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HelpResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List links;
public Builder() {}
public Builder(HelpResponse defaults) {
Objects.requireNonNull(defaults);
this.links = defaults.links;
}
@CustomType.Setter
public Builder links(List links) {
this.links = Objects.requireNonNull(links);
return this;
}
public Builder links(HelpLinkResponse... links) {
return links(List.of(links));
}
public HelpResponse build() {
final var o = new HelpResponse();
o.links = links;
return o;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy