Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
*/
package com.oracle.bmc.cloudguard.model;
/**
* Overriden settings of a detector rule in recipe attached to target.
* Note: Objects should always be created or deserialized using the {@link Builder}. This model
* distinguishes fields that are {@code null} because they are unset from fields that are explicitly
* set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a
* set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link
* #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set
* fields into account. The constructor, on the other hand, does not take the explicitly set fields
* into account (since the constructor cannot distinguish explicit {@code null} from unset {@code
* null}).
*/
@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20200131")
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(
builder = TargetDetectorDetails.Builder.class)
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class TargetDetectorDetails
extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel {
@Deprecated
@java.beans.ConstructorProperties({
"isEnabled",
"riskLevel",
"configurations",
"conditionGroups",
"labels",
"isConfigurationAllowed",
"problemThreshold",
"targetTypes",
"sightingTypes"
})
public TargetDetectorDetails(
Boolean isEnabled,
RiskLevel riskLevel,
java.util.List configurations,
java.util.List conditionGroups,
java.util.List labels,
Boolean isConfigurationAllowed,
Integer problemThreshold,
java.util.List targetTypes,
java.util.List sightingTypes) {
super();
this.isEnabled = isEnabled;
this.riskLevel = riskLevel;
this.configurations = configurations;
this.conditionGroups = conditionGroups;
this.labels = labels;
this.isConfigurationAllowed = isConfigurationAllowed;
this.problemThreshold = problemThreshold;
this.targetTypes = targetTypes;
this.sightingTypes = sightingTypes;
}
@com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "")
public static class Builder {
/** Enablement state of the detector rule */
@com.fasterxml.jackson.annotation.JsonProperty("isEnabled")
private Boolean isEnabled;
/**
* Enablement state of the detector rule
*
* @param isEnabled the value to set
* @return this builder
*/
public Builder isEnabled(Boolean isEnabled) {
this.isEnabled = isEnabled;
this.__explicitlySet__.add("isEnabled");
return this;
}
/** The risk level of the detector rule */
@com.fasterxml.jackson.annotation.JsonProperty("riskLevel")
private RiskLevel riskLevel;
/**
* The risk level of the detector rule
*
* @param riskLevel the value to set
* @return this builder
*/
public Builder riskLevel(RiskLevel riskLevel) {
this.riskLevel = riskLevel;
this.__explicitlySet__.add("riskLevel");
return this;
}
/** List of detector rule configurations */
@com.fasterxml.jackson.annotation.JsonProperty("configurations")
private java.util.List configurations;
/**
* List of detector rule configurations
*
* @param configurations the value to set
* @return this builder
*/
public Builder configurations(java.util.List configurations) {
this.configurations = configurations;
this.__explicitlySet__.add("configurations");
return this;
}
/** Condition group corresponding to each compartment */
@com.fasterxml.jackson.annotation.JsonProperty("conditionGroups")
private java.util.List conditionGroups;
/**
* Condition group corresponding to each compartment
*
* @param conditionGroups the value to set
* @return this builder
*/
public Builder conditionGroups(java.util.List conditionGroups) {
this.conditionGroups = conditionGroups;
this.__explicitlySet__.add("conditionGroups");
return this;
}
/** User-defined labels for a detector rule */
@com.fasterxml.jackson.annotation.JsonProperty("labels")
private java.util.List labels;
/**
* User-defined labels for a detector rule
*
* @param labels the value to set
* @return this builder
*/
public Builder labels(java.util.List labels) {
this.labels = labels;
this.__explicitlySet__.add("labels");
return this;
}
/** Configuration allowed or not */
@com.fasterxml.jackson.annotation.JsonProperty("isConfigurationAllowed")
private Boolean isConfigurationAllowed;
/**
* Configuration allowed or not
*
* @param isConfigurationAllowed the value to set
* @return this builder
*/
public Builder isConfigurationAllowed(Boolean isConfigurationAllowed) {
this.isConfigurationAllowed = isConfigurationAllowed;
this.__explicitlySet__.add("isConfigurationAllowed");
return this;
}
/** Point at which an elevated resource risk score creates a problem */
@com.fasterxml.jackson.annotation.JsonProperty("problemThreshold")
private Integer problemThreshold;
/**
* Point at which an elevated resource risk score creates a problem
*
* @param problemThreshold the value to set
* @return this builder
*/
public Builder problemThreshold(Integer problemThreshold) {
this.problemThreshold = problemThreshold;
this.__explicitlySet__.add("problemThreshold");
return this;
}
/** List of target types for which the detector rule is applicable */
@com.fasterxml.jackson.annotation.JsonProperty("targetTypes")
private java.util.List targetTypes;
/**
* List of target types for which the detector rule is applicable
*
* @param targetTypes the value to set
* @return this builder
*/
public Builder targetTypes(java.util.List targetTypes) {
this.targetTypes = targetTypes;
this.__explicitlySet__.add("targetTypes");
return this;
}
/** List of sighting types */
@com.fasterxml.jackson.annotation.JsonProperty("sightingTypes")
private java.util.List sightingTypes;
/**
* List of sighting types
*
* @param sightingTypes the value to set
* @return this builder
*/
public Builder sightingTypes(java.util.List sightingTypes) {
this.sightingTypes = sightingTypes;
this.__explicitlySet__.add("sightingTypes");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public TargetDetectorDetails build() {
TargetDetectorDetails model =
new TargetDetectorDetails(
this.isEnabled,
this.riskLevel,
this.configurations,
this.conditionGroups,
this.labels,
this.isConfigurationAllowed,
this.problemThreshold,
this.targetTypes,
this.sightingTypes);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(TargetDetectorDetails model) {
if (model.wasPropertyExplicitlySet("isEnabled")) {
this.isEnabled(model.getIsEnabled());
}
if (model.wasPropertyExplicitlySet("riskLevel")) {
this.riskLevel(model.getRiskLevel());
}
if (model.wasPropertyExplicitlySet("configurations")) {
this.configurations(model.getConfigurations());
}
if (model.wasPropertyExplicitlySet("conditionGroups")) {
this.conditionGroups(model.getConditionGroups());
}
if (model.wasPropertyExplicitlySet("labels")) {
this.labels(model.getLabels());
}
if (model.wasPropertyExplicitlySet("isConfigurationAllowed")) {
this.isConfigurationAllowed(model.getIsConfigurationAllowed());
}
if (model.wasPropertyExplicitlySet("problemThreshold")) {
this.problemThreshold(model.getProblemThreshold());
}
if (model.wasPropertyExplicitlySet("targetTypes")) {
this.targetTypes(model.getTargetTypes());
}
if (model.wasPropertyExplicitlySet("sightingTypes")) {
this.sightingTypes(model.getSightingTypes());
}
return this;
}
}
/** Create a new builder. */
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return new Builder().copy(this);
}
/** Enablement state of the detector rule */
@com.fasterxml.jackson.annotation.JsonProperty("isEnabled")
private final Boolean isEnabled;
/**
* Enablement state of the detector rule
*
* @return the value
*/
public Boolean getIsEnabled() {
return isEnabled;
}
/** The risk level of the detector rule */
@com.fasterxml.jackson.annotation.JsonProperty("riskLevel")
private final RiskLevel riskLevel;
/**
* The risk level of the detector rule
*
* @return the value
*/
public RiskLevel getRiskLevel() {
return riskLevel;
}
/** List of detector rule configurations */
@com.fasterxml.jackson.annotation.JsonProperty("configurations")
private final java.util.List configurations;
/**
* List of detector rule configurations
*
* @return the value
*/
public java.util.List getConfigurations() {
return configurations;
}
/** Condition group corresponding to each compartment */
@com.fasterxml.jackson.annotation.JsonProperty("conditionGroups")
private final java.util.List conditionGroups;
/**
* Condition group corresponding to each compartment
*
* @return the value
*/
public java.util.List getConditionGroups() {
return conditionGroups;
}
/** User-defined labels for a detector rule */
@com.fasterxml.jackson.annotation.JsonProperty("labels")
private final java.util.List labels;
/**
* User-defined labels for a detector rule
*
* @return the value
*/
public java.util.List getLabels() {
return labels;
}
/** Configuration allowed or not */
@com.fasterxml.jackson.annotation.JsonProperty("isConfigurationAllowed")
private final Boolean isConfigurationAllowed;
/**
* Configuration allowed or not
*
* @return the value
*/
public Boolean getIsConfigurationAllowed() {
return isConfigurationAllowed;
}
/** Point at which an elevated resource risk score creates a problem */
@com.fasterxml.jackson.annotation.JsonProperty("problemThreshold")
private final Integer problemThreshold;
/**
* Point at which an elevated resource risk score creates a problem
*
* @return the value
*/
public Integer getProblemThreshold() {
return problemThreshold;
}
/** List of target types for which the detector rule is applicable */
@com.fasterxml.jackson.annotation.JsonProperty("targetTypes")
private final java.util.List targetTypes;
/**
* List of target types for which the detector rule is applicable
*
* @return the value
*/
public java.util.List getTargetTypes() {
return targetTypes;
}
/** List of sighting types */
@com.fasterxml.jackson.annotation.JsonProperty("sightingTypes")
private final java.util.List sightingTypes;
/**
* List of sighting types
*
* @return the value
*/
public java.util.List getSightingTypes() {
return sightingTypes;
}
@Override
public String toString() {
return this.toString(true);
}
/**
* Return a string representation of the object.
*
* @param includeByteArrayContents true to include the full contents of byte arrays
* @return string representation
*/
public String toString(boolean includeByteArrayContents) {
java.lang.StringBuilder sb = new java.lang.StringBuilder();
sb.append("TargetDetectorDetails(");
sb.append("super=").append(super.toString());
sb.append("isEnabled=").append(String.valueOf(this.isEnabled));
sb.append(", riskLevel=").append(String.valueOf(this.riskLevel));
sb.append(", configurations=").append(String.valueOf(this.configurations));
sb.append(", conditionGroups=").append(String.valueOf(this.conditionGroups));
sb.append(", labels=").append(String.valueOf(this.labels));
sb.append(", isConfigurationAllowed=").append(String.valueOf(this.isConfigurationAllowed));
sb.append(", problemThreshold=").append(String.valueOf(this.problemThreshold));
sb.append(", targetTypes=").append(String.valueOf(this.targetTypes));
sb.append(", sightingTypes=").append(String.valueOf(this.sightingTypes));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof TargetDetectorDetails)) {
return false;
}
TargetDetectorDetails other = (TargetDetectorDetails) o;
return java.util.Objects.equals(this.isEnabled, other.isEnabled)
&& java.util.Objects.equals(this.riskLevel, other.riskLevel)
&& java.util.Objects.equals(this.configurations, other.configurations)
&& java.util.Objects.equals(this.conditionGroups, other.conditionGroups)
&& java.util.Objects.equals(this.labels, other.labels)
&& java.util.Objects.equals(
this.isConfigurationAllowed, other.isConfigurationAllowed)
&& java.util.Objects.equals(this.problemThreshold, other.problemThreshold)
&& java.util.Objects.equals(this.targetTypes, other.targetTypes)
&& java.util.Objects.equals(this.sightingTypes, other.sightingTypes)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = (result * PRIME) + (this.isEnabled == null ? 43 : this.isEnabled.hashCode());
result = (result * PRIME) + (this.riskLevel == null ? 43 : this.riskLevel.hashCode());
result =
(result * PRIME)
+ (this.configurations == null ? 43 : this.configurations.hashCode());
result =
(result * PRIME)
+ (this.conditionGroups == null ? 43 : this.conditionGroups.hashCode());
result = (result * PRIME) + (this.labels == null ? 43 : this.labels.hashCode());
result =
(result * PRIME)
+ (this.isConfigurationAllowed == null
? 43
: this.isConfigurationAllowed.hashCode());
result =
(result * PRIME)
+ (this.problemThreshold == null ? 43 : this.problemThreshold.hashCode());
result = (result * PRIME) + (this.targetTypes == null ? 43 : this.targetTypes.hashCode());
result =
(result * PRIME)
+ (this.sightingTypes == null ? 43 : this.sightingTypes.hashCode());
result = (result * PRIME) + super.hashCode();
return result;
}
}