com.pulumi.azurenative.fluidrelay.outputs.ListFluidRelayServerKeysResult 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.fluidrelay.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class ListFluidRelayServerKeysResult {
/**
* @return The primary key for this server
*
*/
private String key1;
/**
* @return The secondary key for this server
*
*/
private String key2;
private ListFluidRelayServerKeysResult() {}
/**
* @return The primary key for this server
*
*/
public String key1() {
return this.key1;
}
/**
* @return The secondary key for this server
*
*/
public String key2() {
return this.key2;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListFluidRelayServerKeysResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String key1;
private String key2;
public Builder() {}
public Builder(ListFluidRelayServerKeysResult defaults) {
Objects.requireNonNull(defaults);
this.key1 = defaults.key1;
this.key2 = defaults.key2;
}
@CustomType.Setter
public Builder key1(String key1) {
if (key1 == null) {
throw new MissingRequiredPropertyException("ListFluidRelayServerKeysResult", "key1");
}
this.key1 = key1;
return this;
}
@CustomType.Setter
public Builder key2(String key2) {
if (key2 == null) {
throw new MissingRequiredPropertyException("ListFluidRelayServerKeysResult", "key2");
}
this.key2 = key2;
return this;
}
public ListFluidRelayServerKeysResult build() {
final var _resultValue = new ListFluidRelayServerKeysResult();
_resultValue.key1 = key1;
_resultValue.key2 = key2;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy