com.oracle.bmc.vulnerabilityscanning.model.HostScanTargetErrorSummary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oci-java-sdk-vulnerabilityscanning Show documentation
Show all versions of oci-java-sdk-vulnerabilityscanning Show documentation
This project contains the SDK used for Oracle Cloud Infrastructure Vulnerability Scanning
The newest version!
/**
* 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.vulnerabilityscanning.model;
/**
* One of the error during scanning on instances associated with a host scan target (application of
* a host scan recipe to a compartment or list of hosts).
* 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: 20210215")
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(
builder = HostScanTargetErrorSummary.Builder.class)
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class HostScanTargetErrorSummary
extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel {
@Deprecated
@java.beans.ConstructorProperties({
"vendor",
"task",
"message",
"errorCode",
"instanceId",
"lifecycleState",
"timeUpdated",
"freeformTags",
"definedTags",
"systemTags"
})
public HostScanTargetErrorSummary(
VendorType vendor,
String task,
String message,
String errorCode,
String instanceId,
LifecycleState lifecycleState,
java.util.Date timeUpdated,
java.util.Map freeformTags,
java.util.Map> definedTags,
java.util.Map> systemTags) {
super();
this.vendor = vendor;
this.task = task;
this.message = message;
this.errorCode = errorCode;
this.instanceId = instanceId;
this.lifecycleState = lifecycleState;
this.timeUpdated = timeUpdated;
this.freeformTags = freeformTags;
this.definedTags = definedTags;
this.systemTags = systemTags;
}
@com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "")
public static class Builder {
/** Vendor which was used for the host scan agent. */
@com.fasterxml.jackson.annotation.JsonProperty("vendor")
private VendorType vendor;
/**
* Vendor which was used for the host scan agent.
*
* @param vendor the value to set
* @return this builder
*/
public Builder vendor(VendorType vendor) {
this.vendor = vendor;
this.__explicitlySet__.add("vendor");
return this;
}
/** Task during scan which failed. */
@com.fasterxml.jackson.annotation.JsonProperty("task")
private String task;
/**
* Task during scan which failed.
*
* @param task the value to set
* @return this builder
*/
public Builder task(String task) {
this.task = task;
this.__explicitlySet__.add("task");
return this;
}
/** Error message detailing task failure. */
@com.fasterxml.jackson.annotation.JsonProperty("message")
private String message;
/**
* Error message detailing task failure.
*
* @param message the value to set
* @return this builder
*/
public Builder message(String message) {
this.message = message;
this.__explicitlySet__.add("message");
return this;
}
/** Error code of task failure. */
@com.fasterxml.jackson.annotation.JsonProperty("errorCode")
private String errorCode;
/**
* Error code of task failure.
*
* @param errorCode the value to set
* @return this builder
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
this.__explicitlySet__.add("errorCode");
return this;
}
/** OCID of the host instance where scan was done. */
@com.fasterxml.jackson.annotation.JsonProperty("instanceId")
private String instanceId;
/**
* OCID of the host instance where scan was done.
*
* @param instanceId the value to set
* @return this builder
*/
public Builder instanceId(String instanceId) {
this.instanceId = instanceId;
this.__explicitlySet__.add("instanceId");
return this;
}
/** The current state of the config. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleState")
private LifecycleState lifecycleState;
/**
* The current state of the config.
*
* @param lifecycleState the value to set
* @return this builder
*/
public Builder lifecycleState(LifecycleState lifecycleState) {
this.lifecycleState = lifecycleState;
this.__explicitlySet__.add("lifecycleState");
return this;
}
/**
* Date and time the error was updated, format as described in [RFC
* 3339](https://tools.ietf.org/rfc/rfc3339).
*/
@com.fasterxml.jackson.annotation.JsonProperty("timeUpdated")
private java.util.Date timeUpdated;
/**
* Date and time the error was updated, format as described in [RFC
* 3339](https://tools.ietf.org/rfc/rfc3339).
*
* @param timeUpdated the value to set
* @return this builder
*/
public Builder timeUpdated(java.util.Date timeUpdated) {
this.timeUpdated = timeUpdated;
this.__explicitlySet__.add("timeUpdated");
return this;
}
/**
* Simple key-value pair that is applied without any predefined name, type or scope. Exists
* for cross-compatibility only. Example: {@code {"bar-key": "value"}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("freeformTags")
private java.util.Map freeformTags;
/**
* Simple key-value pair that is applied without any predefined name, type or scope. Exists
* for cross-compatibility only. Example: {@code {"bar-key": "value"}}
*
* @param freeformTags the value to set
* @return this builder
*/
public Builder freeformTags(java.util.Map freeformTags) {
this.freeformTags = freeformTags;
this.__explicitlySet__.add("freeformTags");
return this;
}
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
* Example: {@code {"foo-namespace": {"bar-key": "value"}}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("definedTags")
private java.util.Map> definedTags;
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
* Example: {@code {"foo-namespace": {"bar-key": "value"}}}
*
* @param definedTags the value to set
* @return this builder
*/
public Builder definedTags(
java.util.Map> definedTags) {
this.definedTags = definedTags;
this.__explicitlySet__.add("definedTags");
return this;
}
/**
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code
* {"orcl-cloud": {"free-tier-retained": "true"}}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("systemTags")
private java.util.Map> systemTags;
/**
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code
* {"orcl-cloud": {"free-tier-retained": "true"}}}
*
* @param systemTags the value to set
* @return this builder
*/
public Builder systemTags(java.util.Map> systemTags) {
this.systemTags = systemTags;
this.__explicitlySet__.add("systemTags");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public HostScanTargetErrorSummary build() {
HostScanTargetErrorSummary model =
new HostScanTargetErrorSummary(
this.vendor,
this.task,
this.message,
this.errorCode,
this.instanceId,
this.lifecycleState,
this.timeUpdated,
this.freeformTags,
this.definedTags,
this.systemTags);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(HostScanTargetErrorSummary model) {
if (model.wasPropertyExplicitlySet("vendor")) {
this.vendor(model.getVendor());
}
if (model.wasPropertyExplicitlySet("task")) {
this.task(model.getTask());
}
if (model.wasPropertyExplicitlySet("message")) {
this.message(model.getMessage());
}
if (model.wasPropertyExplicitlySet("errorCode")) {
this.errorCode(model.getErrorCode());
}
if (model.wasPropertyExplicitlySet("instanceId")) {
this.instanceId(model.getInstanceId());
}
if (model.wasPropertyExplicitlySet("lifecycleState")) {
this.lifecycleState(model.getLifecycleState());
}
if (model.wasPropertyExplicitlySet("timeUpdated")) {
this.timeUpdated(model.getTimeUpdated());
}
if (model.wasPropertyExplicitlySet("freeformTags")) {
this.freeformTags(model.getFreeformTags());
}
if (model.wasPropertyExplicitlySet("definedTags")) {
this.definedTags(model.getDefinedTags());
}
if (model.wasPropertyExplicitlySet("systemTags")) {
this.systemTags(model.getSystemTags());
}
return this;
}
}
/** Create a new builder. */
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return new Builder().copy(this);
}
/** Vendor which was used for the host scan agent. */
@com.fasterxml.jackson.annotation.JsonProperty("vendor")
private final VendorType vendor;
/**
* Vendor which was used for the host scan agent.
*
* @return the value
*/
public VendorType getVendor() {
return vendor;
}
/** Task during scan which failed. */
@com.fasterxml.jackson.annotation.JsonProperty("task")
private final String task;
/**
* Task during scan which failed.
*
* @return the value
*/
public String getTask() {
return task;
}
/** Error message detailing task failure. */
@com.fasterxml.jackson.annotation.JsonProperty("message")
private final String message;
/**
* Error message detailing task failure.
*
* @return the value
*/
public String getMessage() {
return message;
}
/** Error code of task failure. */
@com.fasterxml.jackson.annotation.JsonProperty("errorCode")
private final String errorCode;
/**
* Error code of task failure.
*
* @return the value
*/
public String getErrorCode() {
return errorCode;
}
/** OCID of the host instance where scan was done. */
@com.fasterxml.jackson.annotation.JsonProperty("instanceId")
private final String instanceId;
/**
* OCID of the host instance where scan was done.
*
* @return the value
*/
public String getInstanceId() {
return instanceId;
}
/** The current state of the config. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleState")
private final LifecycleState lifecycleState;
/**
* The current state of the config.
*
* @return the value
*/
public LifecycleState getLifecycleState() {
return lifecycleState;
}
/**
* Date and time the error was updated, format as described in [RFC
* 3339](https://tools.ietf.org/rfc/rfc3339).
*/
@com.fasterxml.jackson.annotation.JsonProperty("timeUpdated")
private final java.util.Date timeUpdated;
/**
* Date and time the error was updated, format as described in [RFC
* 3339](https://tools.ietf.org/rfc/rfc3339).
*
* @return the value
*/
public java.util.Date getTimeUpdated() {
return timeUpdated;
}
/**
* Simple key-value pair that is applied without any predefined name, type or scope. Exists for
* cross-compatibility only. Example: {@code {"bar-key": "value"}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("freeformTags")
private final java.util.Map freeformTags;
/**
* Simple key-value pair that is applied without any predefined name, type or scope. Exists for
* cross-compatibility only. Example: {@code {"bar-key": "value"}}
*
* @return the value
*/
public java.util.Map getFreeformTags() {
return freeformTags;
}
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
* {@code {"foo-namespace": {"bar-key": "value"}}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("definedTags")
private final java.util.Map> definedTags;
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
* {@code {"foo-namespace": {"bar-key": "value"}}}
*
* @return the value
*/
public java.util.Map> getDefinedTags() {
return definedTags;
}
/**
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code
* {"orcl-cloud": {"free-tier-retained": "true"}}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("systemTags")
private final java.util.Map> systemTags;
/**
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code
* {"orcl-cloud": {"free-tier-retained": "true"}}}
*
* @return the value
*/
public java.util.Map> getSystemTags() {
return systemTags;
}
@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("HostScanTargetErrorSummary(");
sb.append("super=").append(super.toString());
sb.append("vendor=").append(String.valueOf(this.vendor));
sb.append(", task=").append(String.valueOf(this.task));
sb.append(", message=").append(String.valueOf(this.message));
sb.append(", errorCode=").append(String.valueOf(this.errorCode));
sb.append(", instanceId=").append(String.valueOf(this.instanceId));
sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState));
sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated));
sb.append(", freeformTags=").append(String.valueOf(this.freeformTags));
sb.append(", definedTags=").append(String.valueOf(this.definedTags));
sb.append(", systemTags=").append(String.valueOf(this.systemTags));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof HostScanTargetErrorSummary)) {
return false;
}
HostScanTargetErrorSummary other = (HostScanTargetErrorSummary) o;
return java.util.Objects.equals(this.vendor, other.vendor)
&& java.util.Objects.equals(this.task, other.task)
&& java.util.Objects.equals(this.message, other.message)
&& java.util.Objects.equals(this.errorCode, other.errorCode)
&& java.util.Objects.equals(this.instanceId, other.instanceId)
&& java.util.Objects.equals(this.lifecycleState, other.lifecycleState)
&& java.util.Objects.equals(this.timeUpdated, other.timeUpdated)
&& java.util.Objects.equals(this.freeformTags, other.freeformTags)
&& java.util.Objects.equals(this.definedTags, other.definedTags)
&& java.util.Objects.equals(this.systemTags, other.systemTags)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = (result * PRIME) + (this.vendor == null ? 43 : this.vendor.hashCode());
result = (result * PRIME) + (this.task == null ? 43 : this.task.hashCode());
result = (result * PRIME) + (this.message == null ? 43 : this.message.hashCode());
result = (result * PRIME) + (this.errorCode == null ? 43 : this.errorCode.hashCode());
result = (result * PRIME) + (this.instanceId == null ? 43 : this.instanceId.hashCode());
result =
(result * PRIME)
+ (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode());
result = (result * PRIME) + (this.timeUpdated == null ? 43 : this.timeUpdated.hashCode());
result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode());
result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode());
result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode());
result = (result * PRIME) + super.hashCode();
return result;
}
}