com.oracle.bmc.psql.model.ConfigParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oci-java-sdk-psql Show documentation
Show all versions of oci-java-sdk-psql Show documentation
This project contains the SDK used for Oracle Cloud Infrastructure Psql
/**
* 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.psql.model;
/**
* Database configuration.
* 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: 20220915")
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = ConfigParams.Builder.class)
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class ConfigParams extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel {
@Deprecated
@java.beans.ConstructorProperties({
"configKey",
"defaultConfigValue",
"overridenConfigValue",
"allowedValues",
"isRestartRequired",
"dataType",
"isOverridable",
"description"
})
public ConfigParams(
String configKey,
String defaultConfigValue,
String overridenConfigValue,
String allowedValues,
Boolean isRestartRequired,
String dataType,
Boolean isOverridable,
String description) {
super();
this.configKey = configKey;
this.defaultConfigValue = defaultConfigValue;
this.overridenConfigValue = overridenConfigValue;
this.allowedValues = allowedValues;
this.isRestartRequired = isRestartRequired;
this.dataType = dataType;
this.isOverridable = isOverridable;
this.description = description;
}
@com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "")
public static class Builder {
/** The configuration variable name. */
@com.fasterxml.jackson.annotation.JsonProperty("configKey")
private String configKey;
/**
* The configuration variable name.
*
* @param configKey the value to set
* @return this builder
*/
public Builder configKey(String configKey) {
this.configKey = configKey;
this.__explicitlySet__.add("configKey");
return this;
}
/** Default value for the configuration variable. */
@com.fasterxml.jackson.annotation.JsonProperty("defaultConfigValue")
private String defaultConfigValue;
/**
* Default value for the configuration variable.
*
* @param defaultConfigValue the value to set
* @return this builder
*/
public Builder defaultConfigValue(String defaultConfigValue) {
this.defaultConfigValue = defaultConfigValue;
this.__explicitlySet__.add("defaultConfigValue");
return this;
}
/** User-selected configuration variable value. */
@com.fasterxml.jackson.annotation.JsonProperty("overridenConfigValue")
private String overridenConfigValue;
/**
* User-selected configuration variable value.
*
* @param overridenConfigValue the value to set
* @return this builder
*/
public Builder overridenConfigValue(String overridenConfigValue) {
this.overridenConfigValue = overridenConfigValue;
this.__explicitlySet__.add("overridenConfigValue");
return this;
}
/** Range or list of allowed values. */
@com.fasterxml.jackson.annotation.JsonProperty("allowedValues")
private String allowedValues;
/**
* Range or list of allowed values.
*
* @param allowedValues the value to set
* @return this builder
*/
public Builder allowedValues(String allowedValues) {
this.allowedValues = allowedValues;
this.__explicitlySet__.add("allowedValues");
return this;
}
/** If true, modifying this configuration value will require a restart of the database. */
@com.fasterxml.jackson.annotation.JsonProperty("isRestartRequired")
private Boolean isRestartRequired;
/**
* If true, modifying this configuration value will require a restart of the database.
*
* @param isRestartRequired the value to set
* @return this builder
*/
public Builder isRestartRequired(Boolean isRestartRequired) {
this.isRestartRequired = isRestartRequired;
this.__explicitlySet__.add("isRestartRequired");
return this;
}
/** Data type of the variable. */
@com.fasterxml.jackson.annotation.JsonProperty("dataType")
private String dataType;
/**
* Data type of the variable.
*
* @param dataType the value to set
* @return this builder
*/
public Builder dataType(String dataType) {
this.dataType = dataType;
this.__explicitlySet__.add("dataType");
return this;
}
/** Whether the value can be overridden or not. */
@com.fasterxml.jackson.annotation.JsonProperty("isOverridable")
private Boolean isOverridable;
/**
* Whether the value can be overridden or not.
*
* @param isOverridable the value to set
* @return this builder
*/
public Builder isOverridable(Boolean isOverridable) {
this.isOverridable = isOverridable;
this.__explicitlySet__.add("isOverridable");
return this;
}
/** Details about the PostgreSQL parameter. */
@com.fasterxml.jackson.annotation.JsonProperty("description")
private String description;
/**
* Details about the PostgreSQL parameter.
*
* @param description the value to set
* @return this builder
*/
public Builder description(String description) {
this.description = description;
this.__explicitlySet__.add("description");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public ConfigParams build() {
ConfigParams model =
new ConfigParams(
this.configKey,
this.defaultConfigValue,
this.overridenConfigValue,
this.allowedValues,
this.isRestartRequired,
this.dataType,
this.isOverridable,
this.description);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(ConfigParams model) {
if (model.wasPropertyExplicitlySet("configKey")) {
this.configKey(model.getConfigKey());
}
if (model.wasPropertyExplicitlySet("defaultConfigValue")) {
this.defaultConfigValue(model.getDefaultConfigValue());
}
if (model.wasPropertyExplicitlySet("overridenConfigValue")) {
this.overridenConfigValue(model.getOverridenConfigValue());
}
if (model.wasPropertyExplicitlySet("allowedValues")) {
this.allowedValues(model.getAllowedValues());
}
if (model.wasPropertyExplicitlySet("isRestartRequired")) {
this.isRestartRequired(model.getIsRestartRequired());
}
if (model.wasPropertyExplicitlySet("dataType")) {
this.dataType(model.getDataType());
}
if (model.wasPropertyExplicitlySet("isOverridable")) {
this.isOverridable(model.getIsOverridable());
}
if (model.wasPropertyExplicitlySet("description")) {
this.description(model.getDescription());
}
return this;
}
}
/** Create a new builder. */
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return new Builder().copy(this);
}
/** The configuration variable name. */
@com.fasterxml.jackson.annotation.JsonProperty("configKey")
private final String configKey;
/**
* The configuration variable name.
*
* @return the value
*/
public String getConfigKey() {
return configKey;
}
/** Default value for the configuration variable. */
@com.fasterxml.jackson.annotation.JsonProperty("defaultConfigValue")
private final String defaultConfigValue;
/**
* Default value for the configuration variable.
*
* @return the value
*/
public String getDefaultConfigValue() {
return defaultConfigValue;
}
/** User-selected configuration variable value. */
@com.fasterxml.jackson.annotation.JsonProperty("overridenConfigValue")
private final String overridenConfigValue;
/**
* User-selected configuration variable value.
*
* @return the value
*/
public String getOverridenConfigValue() {
return overridenConfigValue;
}
/** Range or list of allowed values. */
@com.fasterxml.jackson.annotation.JsonProperty("allowedValues")
private final String allowedValues;
/**
* Range or list of allowed values.
*
* @return the value
*/
public String getAllowedValues() {
return allowedValues;
}
/** If true, modifying this configuration value will require a restart of the database. */
@com.fasterxml.jackson.annotation.JsonProperty("isRestartRequired")
private final Boolean isRestartRequired;
/**
* If true, modifying this configuration value will require a restart of the database.
*
* @return the value
*/
public Boolean getIsRestartRequired() {
return isRestartRequired;
}
/** Data type of the variable. */
@com.fasterxml.jackson.annotation.JsonProperty("dataType")
private final String dataType;
/**
* Data type of the variable.
*
* @return the value
*/
public String getDataType() {
return dataType;
}
/** Whether the value can be overridden or not. */
@com.fasterxml.jackson.annotation.JsonProperty("isOverridable")
private final Boolean isOverridable;
/**
* Whether the value can be overridden or not.
*
* @return the value
*/
public Boolean getIsOverridable() {
return isOverridable;
}
/** Details about the PostgreSQL parameter. */
@com.fasterxml.jackson.annotation.JsonProperty("description")
private final String description;
/**
* Details about the PostgreSQL parameter.
*
* @return the value
*/
public String getDescription() {
return description;
}
@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("ConfigParams(");
sb.append("super=").append(super.toString());
sb.append("configKey=").append(String.valueOf(this.configKey));
sb.append(", defaultConfigValue=").append(String.valueOf(this.defaultConfigValue));
sb.append(", overridenConfigValue=").append(String.valueOf(this.overridenConfigValue));
sb.append(", allowedValues=").append(String.valueOf(this.allowedValues));
sb.append(", isRestartRequired=").append(String.valueOf(this.isRestartRequired));
sb.append(", dataType=").append(String.valueOf(this.dataType));
sb.append(", isOverridable=").append(String.valueOf(this.isOverridable));
sb.append(", description=").append(String.valueOf(this.description));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof ConfigParams)) {
return false;
}
ConfigParams other = (ConfigParams) o;
return java.util.Objects.equals(this.configKey, other.configKey)
&& java.util.Objects.equals(this.defaultConfigValue, other.defaultConfigValue)
&& java.util.Objects.equals(this.overridenConfigValue, other.overridenConfigValue)
&& java.util.Objects.equals(this.allowedValues, other.allowedValues)
&& java.util.Objects.equals(this.isRestartRequired, other.isRestartRequired)
&& java.util.Objects.equals(this.dataType, other.dataType)
&& java.util.Objects.equals(this.isOverridable, other.isOverridable)
&& java.util.Objects.equals(this.description, other.description)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = (result * PRIME) + (this.configKey == null ? 43 : this.configKey.hashCode());
result =
(result * PRIME)
+ (this.defaultConfigValue == null
? 43
: this.defaultConfigValue.hashCode());
result =
(result * PRIME)
+ (this.overridenConfigValue == null
? 43
: this.overridenConfigValue.hashCode());
result =
(result * PRIME)
+ (this.allowedValues == null ? 43 : this.allowedValues.hashCode());
result =
(result * PRIME)
+ (this.isRestartRequired == null ? 43 : this.isRestartRequired.hashCode());
result = (result * PRIME) + (this.dataType == null ? 43 : this.dataType.hashCode());
result =
(result * PRIME)
+ (this.isOverridable == null ? 43 : this.isOverridable.hashCode());
result = (result * PRIME) + (this.description == null ? 43 : this.description.hashCode());
result = (result * PRIME) + super.hashCode();
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy