All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.bmc.identity.model.WorkRequest Maven / Gradle / Ivy

/**
 * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
 */
package com.oracle.bmc.identity.model;

/**
 * The asynchronous API request does not take effect immediately. This request spawns an asynchronous
 * workflow to fulfill the request. WorkRequest objects provide visibility for in-progress workflows.
 *
 * 
* 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 #__explicitlySet__}. The {@link #hashCode()} and {@link #equals(Object)} methods are implemented to take * {@link #__explicitlySet__} into account. The constructor, on the other hand, does not set {@link #__explicitlySet__} * (since the constructor cannot distinguish explicit {@code null} from unset {@code null}). **/ @javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918") @lombok.AllArgsConstructor(onConstructor = @__({@Deprecated})) @lombok.Value @com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = WorkRequest.Builder.class) @com.fasterxml.jackson.annotation.JsonFilter(com.oracle.bmc.http.internal.ExplicitlySetFilter.NAME) public class WorkRequest { @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @lombok.experimental.Accessors(fluent = true) public static class Builder { @com.fasterxml.jackson.annotation.JsonProperty("id") private String id; public Builder id(String id) { this.id = id; this.__explicitlySet__.add("id"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("operationType") private OperationType operationType; public Builder operationType(OperationType operationType) { this.operationType = operationType; this.__explicitlySet__.add("operationType"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") private String compartmentId; public Builder compartmentId(String compartmentId) { this.compartmentId = compartmentId; this.__explicitlySet__.add("compartmentId"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("status") private Status status; public Builder status(Status status) { this.status = status; this.__explicitlySet__.add("status"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("resources") private java.util.List resources; public Builder resources(java.util.List resources) { this.resources = resources; this.__explicitlySet__.add("resources"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("errors") private java.util.List errors; public Builder errors(java.util.List errors) { this.errors = errors; this.__explicitlySet__.add("errors"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("logs") private java.util.List logs; public Builder logs(java.util.List logs) { this.logs = logs; this.__explicitlySet__.add("logs"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("timeAccepted") private java.util.Date timeAccepted; public Builder timeAccepted(java.util.Date timeAccepted) { this.timeAccepted = timeAccepted; this.__explicitlySet__.add("timeAccepted"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("timeStarted") private java.util.Date timeStarted; public Builder timeStarted(java.util.Date timeStarted) { this.timeStarted = timeStarted; this.__explicitlySet__.add("timeStarted"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("timeFinished") private java.util.Date timeFinished; public Builder timeFinished(java.util.Date timeFinished) { this.timeFinished = timeFinished; this.__explicitlySet__.add("timeFinished"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("percentComplete") private Float percentComplete; public Builder percentComplete(Float percentComplete) { this.percentComplete = percentComplete; this.__explicitlySet__.add("percentComplete"); return this; } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); public WorkRequest build() { WorkRequest __instance__ = new WorkRequest( id, operationType, compartmentId, status, resources, errors, logs, timeAccepted, timeStarted, timeFinished, percentComplete); __instance__.__explicitlySet__.addAll(__explicitlySet__); return __instance__; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(WorkRequest o) { Builder copiedBuilder = id(o.getId()) .operationType(o.getOperationType()) .compartmentId(o.getCompartmentId()) .status(o.getStatus()) .resources(o.getResources()) .errors(o.getErrors()) .logs(o.getLogs()) .timeAccepted(o.getTimeAccepted()) .timeStarted(o.getTimeStarted()) .timeFinished(o.getTimeFinished()) .percentComplete(o.getPercentComplete()); copiedBuilder.__explicitlySet__.retainAll(o.__explicitlySet__); return copiedBuilder; } } /** * Create a new builder. */ public static Builder builder() { return new Builder(); } /** * The OCID of the work request. **/ @com.fasterxml.jackson.annotation.JsonProperty("id") String id; /** * An enum-like description of the type of work the work request is doing. **/ @lombok.extern.slf4j.Slf4j public enum OperationType { DeleteCompartment("DELETE_COMPARTMENT"), DeleteTagDefinition("DELETE_TAG_DEFINITION"), /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownEnumValue(null); private final String value; private static java.util.Map map; static { map = new java.util.HashMap<>(); for (OperationType v : OperationType.values()) { if (v != UnknownEnumValue) { map.put(v.getValue(), v); } } } OperationType(String value) { this.value = value; } @com.fasterxml.jackson.annotation.JsonValue public String getValue() { return value; } @com.fasterxml.jackson.annotation.JsonCreator public static OperationType create(String key) { if (map.containsKey(key)) { return map.get(key); } LOG.warn( "Received unknown value '{}' for enum 'OperationType', returning UnknownEnumValue", key); return UnknownEnumValue; } }; /** * An enum-like description of the type of work the work request is doing. **/ @com.fasterxml.jackson.annotation.JsonProperty("operationType") OperationType operationType; /** * The OCID of the compartment that contains the work request. **/ @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") String compartmentId; /** * The current status of the work request. **/ @lombok.extern.slf4j.Slf4j public enum Status { Accepted("ACCEPTED"), InProgress("IN_PROGRESS"), Failed("FAILED"), Succeeded("SUCCEEDED"), Canceling("CANCELING"), Canceled("CANCELED"), /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownEnumValue(null); private final String value; private static java.util.Map map; static { map = new java.util.HashMap<>(); for (Status v : Status.values()) { if (v != UnknownEnumValue) { map.put(v.getValue(), v); } } } Status(String value) { this.value = value; } @com.fasterxml.jackson.annotation.JsonValue public String getValue() { return value; } @com.fasterxml.jackson.annotation.JsonCreator public static Status create(String key) { if (map.containsKey(key)) { return map.get(key); } LOG.warn( "Received unknown value '{}' for enum 'Status', returning UnknownEnumValue", key); return UnknownEnumValue; } }; /** * The current status of the work request. **/ @com.fasterxml.jackson.annotation.JsonProperty("status") Status status; /** * The resources this work request affects. * **/ @com.fasterxml.jackson.annotation.JsonProperty("resources") java.util.List resources; /** * The errors for work request. * **/ @com.fasterxml.jackson.annotation.JsonProperty("errors") java.util.List errors; /** * The logs for work request. * **/ @com.fasterxml.jackson.annotation.JsonProperty("logs") java.util.List logs; /** * Date and time the work was accepted, in the format defined by RFC3339. * Example: `2016-08-25T21:10:29.600Z` * **/ @com.fasterxml.jackson.annotation.JsonProperty("timeAccepted") java.util.Date timeAccepted; /** * Date and time the work started, in the format defined by RFC3339. * Example: `2016-08-25T21:10:29.600Z` * **/ @com.fasterxml.jackson.annotation.JsonProperty("timeStarted") java.util.Date timeStarted; /** * Date and time the work completed, in the format defined by RFC3339. * Example: `2016-08-25T21:10:29.600Z` * **/ @com.fasterxml.jackson.annotation.JsonProperty("timeFinished") java.util.Date timeFinished; /** * How much progress the operation has made. * **/ @com.fasterxml.jackson.annotation.JsonProperty("percentComplete") Float percentComplete; @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy