com.pulumi.consul.outputs.GetAclTokenNodeIdentity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of consul Show documentation
Show all versions of consul Show documentation
A Pulumi package for creating and managing consul 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.consul.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetAclTokenNodeIdentity {
private String datacenter;
private String nodeName;
private GetAclTokenNodeIdentity() {}
public String datacenter() {
return this.datacenter;
}
public String nodeName() {
return this.nodeName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAclTokenNodeIdentity defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String datacenter;
private String nodeName;
public Builder() {}
public Builder(GetAclTokenNodeIdentity defaults) {
Objects.requireNonNull(defaults);
this.datacenter = defaults.datacenter;
this.nodeName = defaults.nodeName;
}
@CustomType.Setter
public Builder datacenter(String datacenter) {
this.datacenter = Objects.requireNonNull(datacenter);
return this;
}
@CustomType.Setter
public Builder nodeName(String nodeName) {
this.nodeName = Objects.requireNonNull(nodeName);
return this;
}
public GetAclTokenNodeIdentity build() {
final var _resultValue = new GetAclTokenNodeIdentity();
_resultValue.datacenter = datacenter;
_resultValue.nodeName = nodeName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy