com.pulumi.scm.outputs.GetAntiSpywareProfileListData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scm Show documentation
Show all versions of scm Show documentation
A Pulumi package for managing resources on Strata Cloud Manager.
// *** 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.scm.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.scm.outputs.GetAntiSpywareProfileListDataMicaEngineSpywareEnabledList;
import com.pulumi.scm.outputs.GetAntiSpywareProfileListDataRule;
import com.pulumi.scm.outputs.GetAntiSpywareProfileListDataThreatException;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetAntiSpywareProfileListData {
/**
* @return The CloudInlineAnalysis param. Default: `false`.
*
*/
private Boolean cloudInlineAnalysis;
/**
* @return The Description param.
*
*/
private String description;
/**
* @return UUID of the resource.
*
*/
private String id;
/**
* @return The InlineExceptionEdlUrls param.
*
*/
private List inlineExceptionEdlUrls;
/**
* @return The InlineExceptionIpAddresses param.
*
*/
private List inlineExceptionIpAddresses;
/**
* @return The MicaEngineSpywareEnabledList param.
*
*/
private List micaEngineSpywareEnabledLists;
/**
* @return The Name param.
*
*/
private String name;
/**
* @return The Rules param.
*
*/
private List rules;
/**
* @return The ThreatExceptions param.
*
*/
private List threatExceptions;
private GetAntiSpywareProfileListData() {}
/**
* @return The CloudInlineAnalysis param. Default: `false`.
*
*/
public Boolean cloudInlineAnalysis() {
return this.cloudInlineAnalysis;
}
/**
* @return The Description param.
*
*/
public String description() {
return this.description;
}
/**
* @return UUID of the resource.
*
*/
public String id() {
return this.id;
}
/**
* @return The InlineExceptionEdlUrls param.
*
*/
public List inlineExceptionEdlUrls() {
return this.inlineExceptionEdlUrls;
}
/**
* @return The InlineExceptionIpAddresses param.
*
*/
public List inlineExceptionIpAddresses() {
return this.inlineExceptionIpAddresses;
}
/**
* @return The MicaEngineSpywareEnabledList param.
*
*/
public List micaEngineSpywareEnabledLists() {
return this.micaEngineSpywareEnabledLists;
}
/**
* @return The Name param.
*
*/
public String name() {
return this.name;
}
/**
* @return The Rules param.
*
*/
public List rules() {
return this.rules;
}
/**
* @return The ThreatExceptions param.
*
*/
public List threatExceptions() {
return this.threatExceptions;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAntiSpywareProfileListData defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Boolean cloudInlineAnalysis;
private String description;
private String id;
private List inlineExceptionEdlUrls;
private List inlineExceptionIpAddresses;
private List micaEngineSpywareEnabledLists;
private String name;
private List rules;
private List threatExceptions;
public Builder() {}
public Builder(GetAntiSpywareProfileListData defaults) {
Objects.requireNonNull(defaults);
this.cloudInlineAnalysis = defaults.cloudInlineAnalysis;
this.description = defaults.description;
this.id = defaults.id;
this.inlineExceptionEdlUrls = defaults.inlineExceptionEdlUrls;
this.inlineExceptionIpAddresses = defaults.inlineExceptionIpAddresses;
this.micaEngineSpywareEnabledLists = defaults.micaEngineSpywareEnabledLists;
this.name = defaults.name;
this.rules = defaults.rules;
this.threatExceptions = defaults.threatExceptions;
}
@CustomType.Setter
public Builder cloudInlineAnalysis(Boolean cloudInlineAnalysis) {
if (cloudInlineAnalysis == null) {
throw new MissingRequiredPropertyException("GetAntiSpywareProfileListData", "cloudInlineAnalysis");
}
this.cloudInlineAnalysis = cloudInlineAnalysis;
return this;
}
@CustomType.Setter
public Builder description(String description) {
if (description == null) {
throw new MissingRequiredPropertyException("GetAntiSpywareProfileListData", "description");
}
this.description = description;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetAntiSpywareProfileListData", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder inlineExceptionEdlUrls(List inlineExceptionEdlUrls) {
if (inlineExceptionEdlUrls == null) {
throw new MissingRequiredPropertyException("GetAntiSpywareProfileListData", "inlineExceptionEdlUrls");
}
this.inlineExceptionEdlUrls = inlineExceptionEdlUrls;
return this;
}
public Builder inlineExceptionEdlUrls(String... inlineExceptionEdlUrls) {
return inlineExceptionEdlUrls(List.of(inlineExceptionEdlUrls));
}
@CustomType.Setter
public Builder inlineExceptionIpAddresses(List inlineExceptionIpAddresses) {
if (inlineExceptionIpAddresses == null) {
throw new MissingRequiredPropertyException("GetAntiSpywareProfileListData", "inlineExceptionIpAddresses");
}
this.inlineExceptionIpAddresses = inlineExceptionIpAddresses;
return this;
}
public Builder inlineExceptionIpAddresses(String... inlineExceptionIpAddresses) {
return inlineExceptionIpAddresses(List.of(inlineExceptionIpAddresses));
}
@CustomType.Setter
public Builder micaEngineSpywareEnabledLists(List micaEngineSpywareEnabledLists) {
if (micaEngineSpywareEnabledLists == null) {
throw new MissingRequiredPropertyException("GetAntiSpywareProfileListData", "micaEngineSpywareEnabledLists");
}
this.micaEngineSpywareEnabledLists = micaEngineSpywareEnabledLists;
return this;
}
public Builder micaEngineSpywareEnabledLists(GetAntiSpywareProfileListDataMicaEngineSpywareEnabledList... micaEngineSpywareEnabledLists) {
return micaEngineSpywareEnabledLists(List.of(micaEngineSpywareEnabledLists));
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetAntiSpywareProfileListData", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder rules(List rules) {
if (rules == null) {
throw new MissingRequiredPropertyException("GetAntiSpywareProfileListData", "rules");
}
this.rules = rules;
return this;
}
public Builder rules(GetAntiSpywareProfileListDataRule... rules) {
return rules(List.of(rules));
}
@CustomType.Setter
public Builder threatExceptions(List threatExceptions) {
if (threatExceptions == null) {
throw new MissingRequiredPropertyException("GetAntiSpywareProfileListData", "threatExceptions");
}
this.threatExceptions = threatExceptions;
return this;
}
public Builder threatExceptions(GetAntiSpywareProfileListDataThreatException... threatExceptions) {
return threatExceptions(List.of(threatExceptions));
}
public GetAntiSpywareProfileListData build() {
final var _resultValue = new GetAntiSpywareProfileListData();
_resultValue.cloudInlineAnalysis = cloudInlineAnalysis;
_resultValue.description = description;
_resultValue.id = id;
_resultValue.inlineExceptionEdlUrls = inlineExceptionEdlUrls;
_resultValue.inlineExceptionIpAddresses = inlineExceptionIpAddresses;
_resultValue.micaEngineSpywareEnabledLists = micaEngineSpywareEnabledLists;
_resultValue.name = name;
_resultValue.rules = rules;
_resultValue.threatExceptions = threatExceptions;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy