
com.pulumi.azurenative.operationalinsights.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.operationalinsights.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class KeyVaultPropertiesResponse {
/**
* @return The name of the key associated with the Log Analytics cluster.
*
*/
private @Nullable String keyName;
/**
* @return Selected key minimum required size.
*
*/
private @Nullable Integer keyRsaSize;
/**
* @return The Key Vault uri which holds they key associated with the Log Analytics cluster.
*
*/
private @Nullable String keyVaultUri;
/**
* @return The version of the key associated with the Log Analytics cluster.
*
*/
private @Nullable String keyVersion;
private KeyVaultPropertiesResponse() {}
/**
* @return The name of the key associated with the Log Analytics cluster.
*
*/
public Optional keyName() {
return Optional.ofNullable(this.keyName);
}
/**
* @return Selected key minimum required size.
*
*/
public Optional keyRsaSize() {
return Optional.ofNullable(this.keyRsaSize);
}
/**
* @return The Key Vault uri which holds they key associated with the Log Analytics cluster.
*
*/
public Optional keyVaultUri() {
return Optional.ofNullable(this.keyVaultUri);
}
/**
* @return The version of the key associated with the Log Analytics cluster.
*
*/
public Optional keyVersion() {
return Optional.ofNullable(this.keyVersion);
}
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 keyName;
private @Nullable Integer keyRsaSize;
private @Nullable String keyVaultUri;
private @Nullable String keyVersion;
public Builder() {}
public Builder(KeyVaultPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.keyName = defaults.keyName;
this.keyRsaSize = defaults.keyRsaSize;
this.keyVaultUri = defaults.keyVaultUri;
this.keyVersion = defaults.keyVersion;
}
@CustomType.Setter
public Builder keyName(@Nullable String keyName) {
this.keyName = keyName;
return this;
}
@CustomType.Setter
public Builder keyRsaSize(@Nullable Integer keyRsaSize) {
this.keyRsaSize = keyRsaSize;
return this;
}
@CustomType.Setter
public Builder keyVaultUri(@Nullable String keyVaultUri) {
this.keyVaultUri = keyVaultUri;
return this;
}
@CustomType.Setter
public Builder keyVersion(@Nullable String keyVersion) {
this.keyVersion = keyVersion;
return this;
}
public KeyVaultPropertiesResponse build() {
final var _resultValue = new KeyVaultPropertiesResponse();
_resultValue.keyName = keyName;
_resultValue.keyRsaSize = keyRsaSize;
_resultValue.keyVaultUri = keyVaultUri;
_resultValue.keyVersion = keyVersion;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy