com.pulumi.azurenative.dataprotection.outputs.SecuritySettingsResponse 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.dataprotection.outputs;
import com.pulumi.azurenative.dataprotection.outputs.ImmutabilitySettingsResponse;
import com.pulumi.azurenative.dataprotection.outputs.SoftDeleteSettingsResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SecuritySettingsResponse {
/**
* @return Immutability Settings at vault level
*
*/
private @Nullable ImmutabilitySettingsResponse immutabilitySettings;
/**
* @return Soft delete related settings
*
*/
private @Nullable SoftDeleteSettingsResponse softDeleteSettings;
private SecuritySettingsResponse() {}
/**
* @return Immutability Settings at vault level
*
*/
public Optional immutabilitySettings() {
return Optional.ofNullable(this.immutabilitySettings);
}
/**
* @return Soft delete related settings
*
*/
public Optional softDeleteSettings() {
return Optional.ofNullable(this.softDeleteSettings);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SecuritySettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable ImmutabilitySettingsResponse immutabilitySettings;
private @Nullable SoftDeleteSettingsResponse softDeleteSettings;
public Builder() {}
public Builder(SecuritySettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.immutabilitySettings = defaults.immutabilitySettings;
this.softDeleteSettings = defaults.softDeleteSettings;
}
@CustomType.Setter
public Builder immutabilitySettings(@Nullable ImmutabilitySettingsResponse immutabilitySettings) {
this.immutabilitySettings = immutabilitySettings;
return this;
}
@CustomType.Setter
public Builder softDeleteSettings(@Nullable SoftDeleteSettingsResponse softDeleteSettings) {
this.softDeleteSettings = softDeleteSettings;
return this;
}
public SecuritySettingsResponse build() {
final var _resultValue = new SecuritySettingsResponse();
_resultValue.immutabilitySettings = immutabilitySettings;
_resultValue.softDeleteSettings = softDeleteSettings;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy