com.pulumi.azure.waf.outputs.PolicyPolicySettingsLogScrubbing Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.waf.outputs;
import com.pulumi.azure.waf.outputs.PolicyPolicySettingsLogScrubbingRule;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class PolicyPolicySettingsLogScrubbing {
/**
* @return Whether the log scrubbing is enabled or disabled. Defaults to `true`.
*
*/
private @Nullable Boolean enabled;
/**
* @return One or more `scrubbing_rule` blocks as define below.
*
*/
private @Nullable List rules;
private PolicyPolicySettingsLogScrubbing() {}
/**
* @return Whether the log scrubbing is enabled or disabled. Defaults to `true`.
*
*/
public Optional enabled() {
return Optional.ofNullable(this.enabled);
}
/**
* @return One or more `scrubbing_rule` blocks as define below.
*
*/
public List rules() {
return this.rules == null ? List.of() : this.rules;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(PolicyPolicySettingsLogScrubbing defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Boolean enabled;
private @Nullable List rules;
public Builder() {}
public Builder(PolicyPolicySettingsLogScrubbing defaults) {
Objects.requireNonNull(defaults);
this.enabled = defaults.enabled;
this.rules = defaults.rules;
}
@CustomType.Setter
public Builder enabled(@Nullable Boolean enabled) {
this.enabled = enabled;
return this;
}
@CustomType.Setter
public Builder rules(@Nullable List rules) {
this.rules = rules;
return this;
}
public Builder rules(PolicyPolicySettingsLogScrubbingRule... rules) {
return rules(List.of(rules));
}
public PolicyPolicySettingsLogScrubbing build() {
final var _resultValue = new PolicyPolicySettingsLogScrubbing();
_resultValue.enabled = enabled;
_resultValue.rules = rules;
return _resultValue;
}
}
}