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

com.oracle.bmc.lockbox.model.CreateAccessRequestDetails Maven / Gradle / Ivy

There is a newer version: 3.49.0
Show 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.lockbox.model;

/**
 * The configuration details for a new access request. We don't accept a compartmentId parameter
 * because it is implied to be the same as the lockbox as a subsidiary resource. The requestorId is
 * also based on the caller user info. 
* 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: 20220126") @com.fasterxml.jackson.databind.annotation.JsonDeserialize( builder = CreateAccessRequestDetails.Builder.class) @com.fasterxml.jackson.annotation.JsonFilter( com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) public final class CreateAccessRequestDetails extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { @Deprecated @java.beans.ConstructorProperties({ "lockboxId", "displayName", "description", "context", "accessDuration", "ticketNumber" }) public CreateAccessRequestDetails( String lockboxId, String displayName, String description, java.util.Map context, String accessDuration, String ticketNumber) { super(); this.lockboxId = lockboxId; this.displayName = displayName; this.description = description; this.context = context; this.accessDuration = accessDuration; this.ticketNumber = ticketNumber; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { /** * The unique identifier (OCID) of the lockbox box that the access request is associated * with which is immutable. */ @com.fasterxml.jackson.annotation.JsonProperty("lockboxId") private String lockboxId; /** * The unique identifier (OCID) of the lockbox box that the access request is associated * with which is immutable. * * @param lockboxId the value to set * @return this builder */ public Builder lockboxId(String lockboxId) { this.lockboxId = lockboxId; this.__explicitlySet__.add("lockboxId"); return this; } /** The name of the access request. */ @com.fasterxml.jackson.annotation.JsonProperty("displayName") private String displayName; /** * The name of the access request. * * @param displayName the value to set * @return this builder */ public Builder displayName(String displayName) { this.displayName = displayName; this.__explicitlySet__.add("displayName"); return this; } /** The rationale for requesting the access request. */ @com.fasterxml.jackson.annotation.JsonProperty("description") private String description; /** * The rationale for requesting the access request. * * @param description the value to set * @return this builder */ public Builder description(String description) { this.description = description; this.__explicitlySet__.add("description"); return this; } /** The context object containing the access request specific details. */ @com.fasterxml.jackson.annotation.JsonProperty("context") private java.util.Map context; /** * The context object containing the access request specific details. * * @param context the value to set * @return this builder */ public Builder context(java.util.Map context) { this.context = context; this.__explicitlySet__.add("context"); return this; } /** The maximum amount of time operator has access to associated resources. */ @com.fasterxml.jackson.annotation.JsonProperty("accessDuration") private String accessDuration; /** * The maximum amount of time operator has access to associated resources. * * @param accessDuration the value to set * @return this builder */ public Builder accessDuration(String accessDuration) { this.accessDuration = accessDuration; this.__explicitlySet__.add("accessDuration"); return this; } /** The ticket number raised by external customers Example: {@code 3-37509643121} */ @com.fasterxml.jackson.annotation.JsonProperty("ticketNumber") private String ticketNumber; /** * The ticket number raised by external customers Example: {@code 3-37509643121} * * @param ticketNumber the value to set * @return this builder */ public Builder ticketNumber(String ticketNumber) { this.ticketNumber = ticketNumber; this.__explicitlySet__.add("ticketNumber"); return this; } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); public CreateAccessRequestDetails build() { CreateAccessRequestDetails model = new CreateAccessRequestDetails( this.lockboxId, this.displayName, this.description, this.context, this.accessDuration, this.ticketNumber); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } return model; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(CreateAccessRequestDetails model) { if (model.wasPropertyExplicitlySet("lockboxId")) { this.lockboxId(model.getLockboxId()); } if (model.wasPropertyExplicitlySet("displayName")) { this.displayName(model.getDisplayName()); } if (model.wasPropertyExplicitlySet("description")) { this.description(model.getDescription()); } if (model.wasPropertyExplicitlySet("context")) { this.context(model.getContext()); } if (model.wasPropertyExplicitlySet("accessDuration")) { this.accessDuration(model.getAccessDuration()); } if (model.wasPropertyExplicitlySet("ticketNumber")) { this.ticketNumber(model.getTicketNumber()); } return this; } } /** Create a new builder. */ public static Builder builder() { return new Builder(); } public Builder toBuilder() { return new Builder().copy(this); } /** * The unique identifier (OCID) of the lockbox box that the access request is associated with * which is immutable. */ @com.fasterxml.jackson.annotation.JsonProperty("lockboxId") private final String lockboxId; /** * The unique identifier (OCID) of the lockbox box that the access request is associated with * which is immutable. * * @return the value */ public String getLockboxId() { return lockboxId; } /** The name of the access request. */ @com.fasterxml.jackson.annotation.JsonProperty("displayName") private final String displayName; /** * The name of the access request. * * @return the value */ public String getDisplayName() { return displayName; } /** The rationale for requesting the access request. */ @com.fasterxml.jackson.annotation.JsonProperty("description") private final String description; /** * The rationale for requesting the access request. * * @return the value */ public String getDescription() { return description; } /** The context object containing the access request specific details. */ @com.fasterxml.jackson.annotation.JsonProperty("context") private final java.util.Map context; /** * The context object containing the access request specific details. * * @return the value */ public java.util.Map getContext() { return context; } /** The maximum amount of time operator has access to associated resources. */ @com.fasterxml.jackson.annotation.JsonProperty("accessDuration") private final String accessDuration; /** * The maximum amount of time operator has access to associated resources. * * @return the value */ public String getAccessDuration() { return accessDuration; } /** The ticket number raised by external customers Example: {@code 3-37509643121} */ @com.fasterxml.jackson.annotation.JsonProperty("ticketNumber") private final String ticketNumber; /** * The ticket number raised by external customers Example: {@code 3-37509643121} * * @return the value */ public String getTicketNumber() { return ticketNumber; } @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("CreateAccessRequestDetails("); sb.append("super=").append(super.toString()); sb.append("lockboxId=").append(String.valueOf(this.lockboxId)); sb.append(", displayName=").append(String.valueOf(this.displayName)); sb.append(", description=").append(String.valueOf(this.description)); sb.append(", context=").append(String.valueOf(this.context)); sb.append(", accessDuration=").append(String.valueOf(this.accessDuration)); sb.append(", ticketNumber=").append(String.valueOf(this.ticketNumber)); sb.append(")"); return sb.toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof CreateAccessRequestDetails)) { return false; } CreateAccessRequestDetails other = (CreateAccessRequestDetails) o; return java.util.Objects.equals(this.lockboxId, other.lockboxId) && java.util.Objects.equals(this.displayName, other.displayName) && java.util.Objects.equals(this.description, other.description) && java.util.Objects.equals(this.context, other.context) && java.util.Objects.equals(this.accessDuration, other.accessDuration) && java.util.Objects.equals(this.ticketNumber, other.ticketNumber) && super.equals(other); } @Override public int hashCode() { final int PRIME = 59; int result = 1; result = (result * PRIME) + (this.lockboxId == null ? 43 : this.lockboxId.hashCode()); result = (result * PRIME) + (this.displayName == null ? 43 : this.displayName.hashCode()); result = (result * PRIME) + (this.description == null ? 43 : this.description.hashCode()); result = (result * PRIME) + (this.context == null ? 43 : this.context.hashCode()); result = (result * PRIME) + (this.accessDuration == null ? 43 : this.accessDuration.hashCode()); result = (result * PRIME) + (this.ticketNumber == null ? 43 : this.ticketNumber.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy