
com.pulumi.azurenative.logic.outputs.IntegrationServiceEnvironmenEncryptionConfigurationResponse 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.logic.outputs;
import com.pulumi.azurenative.logic.outputs.IntegrationServiceEnvironmenEncryptionKeyReferenceResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class IntegrationServiceEnvironmenEncryptionConfigurationResponse {
/**
* @return The encryption key reference.
*
*/
private @Nullable IntegrationServiceEnvironmenEncryptionKeyReferenceResponse encryptionKeyReference;
private IntegrationServiceEnvironmenEncryptionConfigurationResponse() {}
/**
* @return The encryption key reference.
*
*/
public Optional encryptionKeyReference() {
return Optional.ofNullable(this.encryptionKeyReference);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IntegrationServiceEnvironmenEncryptionConfigurationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable IntegrationServiceEnvironmenEncryptionKeyReferenceResponse encryptionKeyReference;
public Builder() {}
public Builder(IntegrationServiceEnvironmenEncryptionConfigurationResponse defaults) {
Objects.requireNonNull(defaults);
this.encryptionKeyReference = defaults.encryptionKeyReference;
}
@CustomType.Setter
public Builder encryptionKeyReference(@Nullable IntegrationServiceEnvironmenEncryptionKeyReferenceResponse encryptionKeyReference) {
this.encryptionKeyReference = encryptionKeyReference;
return this;
}
public IntegrationServiceEnvironmenEncryptionConfigurationResponse build() {
final var _resultValue = new IntegrationServiceEnvironmenEncryptionConfigurationResponse();
_resultValue.encryptionKeyReference = encryptionKeyReference;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy