
com.pulumi.azurenative.appconfiguration.outputs.KeyVaultPropertiesResponse 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.azurenative.appconfiguration.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class KeyVaultPropertiesResponse {
/**
* @return The client id of the identity which will be used to access key vault.
*
*/
private @Nullable String identityClientId;
/**
* @return The URI of the key vault key used to encrypt data.
*
*/
private @Nullable String keyIdentifier;
private KeyVaultPropertiesResponse() {}
/**
* @return The client id of the identity which will be used to access key vault.
*
*/
public Optional identityClientId() {
return Optional.ofNullable(this.identityClientId);
}
/**
* @return The URI of the key vault key used to encrypt data.
*
*/
public Optional keyIdentifier() {
return Optional.ofNullable(this.keyIdentifier);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(KeyVaultPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String identityClientId;
private @Nullable String keyIdentifier;
public Builder() {}
public Builder(KeyVaultPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.identityClientId = defaults.identityClientId;
this.keyIdentifier = defaults.keyIdentifier;
}
@CustomType.Setter
public Builder identityClientId(@Nullable String identityClientId) {
this.identityClientId = identityClientId;
return this;
}
@CustomType.Setter
public Builder keyIdentifier(@Nullable String keyIdentifier) {
this.keyIdentifier = keyIdentifier;
return this;
}
public KeyVaultPropertiesResponse build() {
final var _resultValue = new KeyVaultPropertiesResponse();
_resultValue.identityClientId = identityClientId;
_resultValue.keyIdentifier = keyIdentifier;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy