
com.pulumi.azurenative.web.outputs.ListConnectionKeysResult 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.web.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ListConnectionKeysResult {
/**
* @return Connection Key
*
*/
private @Nullable String connectionKey;
/**
* @return Tokens/Claim
*
*/
private @Nullable Map parameterValues;
private ListConnectionKeysResult() {}
/**
* @return Connection Key
*
*/
public Optional connectionKey() {
return Optional.ofNullable(this.connectionKey);
}
/**
* @return Tokens/Claim
*
*/
public Map parameterValues() {
return this.parameterValues == null ? Map.of() : this.parameterValues;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListConnectionKeysResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String connectionKey;
private @Nullable Map parameterValues;
public Builder() {}
public Builder(ListConnectionKeysResult defaults) {
Objects.requireNonNull(defaults);
this.connectionKey = defaults.connectionKey;
this.parameterValues = defaults.parameterValues;
}
@CustomType.Setter
public Builder connectionKey(@Nullable String connectionKey) {
this.connectionKey = connectionKey;
return this;
}
@CustomType.Setter
public Builder parameterValues(@Nullable Map parameterValues) {
this.parameterValues = parameterValues;
return this;
}
public ListConnectionKeysResult build() {
final var _resultValue = new ListConnectionKeysResult();
_resultValue.connectionKey = connectionKey;
_resultValue.parameterValues = parameterValues;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy