com.configcat.publicapi.java.client.model.EnvironmentModel Maven / Gradle / Ivy
/*
* ConfigCat Public Management API
* The purpose of this API is to access the ConfigCat platform programmatically. You can **Create**, **Read**, **Update** and **Delete** any entities like **Feature Flags, Configs, Environments** or **Products** within ConfigCat. **Base API URL**: https://api.configcat.com If you prefer the swagger documentation, you can find it here: [Swagger UI](https://api.configcat.com/swagger). The API is based on HTTP REST, uses resource-oriented URLs, status codes and supports JSON format. **Important:** Do not use this API for accessing and evaluating feature flag values. Use the [SDKs](https://configcat.com/docs/sdk-reference/overview) or the [ConfigCat Proxy](https://configcat.com/docs/advanced/proxy/proxy-overview/) instead. # OpenAPI Specification The complete specification is publicly available in the following formats: - [OpenAPI v3](https://api.configcat.com/docs/v1/swagger.json) - [Swagger v2](https://api.configcat.com/docs/v1/swagger.v2.json) You can use it to generate client libraries in various languages with [OpenAPI Generator](https://github.com/OpenAPITools/openapi-generator) or [Swagger Codegen](https://swagger.io/tools/swagger-codegen/) to interact with this API. # Authentication This API uses the [Basic HTTP Authentication Scheme](https://en.wikipedia.org/wiki/Basic_access_authentication). # Throttling and rate limits All the rate limited API calls are returning information about the current rate limit period in the following HTTP headers: | Header | Description | | :- | :- | | X-Rate-Limit-Remaining | The maximum number of requests remaining in the current rate limit period. | | X-Rate-Limit-Reset | The time when the current rate limit period resets. | When the rate limit is exceeded by a request, the API returns with a `HTTP 429 - Too many requests` status along with a `Retry-After` HTTP header.
*
* The version of the OpenAPI document: v1
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.configcat.publicapi.java.client.model;
import com.configcat.publicapi.java.client.JSON;
import com.google.gson.Gson;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.TypeAdapter;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.annotations.SerializedName;
import com.google.gson.reflect.TypeToken;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.UUID;
import org.openapitools.jackson.nullable.JsonNullable;
/** Details of the Environment. */
@javax.annotation.Generated(
value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-09T12:38:06.739118192Z[Etc/UTC]",
comments = "Generator version: 7.7.0")
public class EnvironmentModel {
public static final String SERIALIZED_NAME_PRODUCT = "product";
@SerializedName(SERIALIZED_NAME_PRODUCT)
private ProductModel product;
public static final String SERIALIZED_NAME_ENVIRONMENT_ID = "environmentId";
@SerializedName(SERIALIZED_NAME_ENVIRONMENT_ID)
private UUID environmentId;
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
private String name;
public static final String SERIALIZED_NAME_COLOR = "color";
@SerializedName(SERIALIZED_NAME_COLOR)
private String color;
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
@SerializedName(SERIALIZED_NAME_DESCRIPTION)
private String description;
public static final String SERIALIZED_NAME_ORDER = "order";
@SerializedName(SERIALIZED_NAME_ORDER)
private Integer order;
public static final String SERIALIZED_NAME_REASON_REQUIRED = "reasonRequired";
@SerializedName(SERIALIZED_NAME_REASON_REQUIRED)
private Boolean reasonRequired;
public EnvironmentModel() {}
public EnvironmentModel product(ProductModel product) {
this.product = product;
return this;
}
/**
* Get product
*
* @return product
*/
@javax.annotation.Nullable
public ProductModel getProduct() {
return product;
}
public void setProduct(ProductModel product) {
this.product = product;
}
public EnvironmentModel environmentId(UUID environmentId) {
this.environmentId = environmentId;
return this;
}
/**
* Identifier of the Environment.
*
* @return environmentId
*/
@javax.annotation.Nullable
public UUID getEnvironmentId() {
return environmentId;
}
public void setEnvironmentId(UUID environmentId) {
this.environmentId = environmentId;
}
public EnvironmentModel name(String name) {
this.name = name;
return this;
}
/**
* Name of the Environment.
*
* @return name
*/
@javax.annotation.Nullable
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public EnvironmentModel color(String color) {
this.color = color;
return this;
}
/**
* The configured color of the Environment.
*
* @return color
*/
@javax.annotation.Nullable
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public EnvironmentModel description(String description) {
this.description = description;
return this;
}
/**
* Description of the Environment.
*
* @return description
*/
@javax.annotation.Nullable
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public EnvironmentModel order(Integer order) {
this.order = order;
return this;
}
/**
* The order of the Environment represented on the ConfigCat Dashboard.
*
* @return order
*/
@javax.annotation.Nullable
public Integer getOrder() {
return order;
}
public void setOrder(Integer order) {
this.order = order;
}
public EnvironmentModel reasonRequired(Boolean reasonRequired) {
this.reasonRequired = reasonRequired;
return this;
}
/**
* Determines whether a mandatory reason must be given every time when the Feature Flags or
* Settings in the given Environment are saved.
*
* @return reasonRequired
*/
@javax.annotation.Nullable
public Boolean getReasonRequired() {
return reasonRequired;
}
public void setReasonRequired(Boolean reasonRequired) {
this.reasonRequired = reasonRequired;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EnvironmentModel environmentModel = (EnvironmentModel) o;
return Objects.equals(this.product, environmentModel.product)
&& Objects.equals(this.environmentId, environmentModel.environmentId)
&& Objects.equals(this.name, environmentModel.name)
&& Objects.equals(this.color, environmentModel.color)
&& Objects.equals(this.description, environmentModel.description)
&& Objects.equals(this.order, environmentModel.order)
&& Objects.equals(this.reasonRequired, environmentModel.reasonRequired);
}
private static boolean equalsNullable(JsonNullable a, JsonNullable b) {
return a == b
|| (a != null
&& b != null
&& a.isPresent()
&& b.isPresent()
&& Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(
product, environmentId, name, color, description, order, reasonRequired);
}
private static int hashCodeNullable(JsonNullable a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[] {a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EnvironmentModel {\n");
sb.append(" product: ").append(toIndentedString(product)).append("\n");
sb.append(" environmentId: ").append(toIndentedString(environmentId)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" color: ").append(toIndentedString(color)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" order: ").append(toIndentedString(order)).append("\n");
sb.append(" reasonRequired: ").append(toIndentedString(reasonRequired)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first
* line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
public static HashSet openapiFields;
public static HashSet openapiRequiredFields;
static {
// a set of all properties/fields (JSON key names)
openapiFields = new HashSet();
openapiFields.add("product");
openapiFields.add("environmentId");
openapiFields.add("name");
openapiFields.add("color");
openapiFields.add("description");
openapiFields.add("order");
openapiFields.add("reasonRequired");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
}
/**
* Validates the JSON Element and throws an exception if issues found
*
* @param jsonElement JSON Element
* @throws IOException if the JSON Element is invalid with respect to EnvironmentModel
*/
public static void validateJsonElement(JsonElement jsonElement) throws IOException {
if (jsonElement == null) {
if (!EnvironmentModel.openapiRequiredFields
.isEmpty()) { // has required fields but JSON element is null
throw new IllegalArgumentException(
String.format(
"The required field(s) %s in EnvironmentModel is not found in the"
+ " empty JSON string",
EnvironmentModel.openapiRequiredFields.toString()));
}
}
Set> entries = jsonElement.getAsJsonObject().entrySet();
// check to see if the JSON string contains additional fields
for (Map.Entry entry : entries) {
if (!EnvironmentModel.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(
String.format(
"The field `%s` in the JSON string is not defined in the"
+ " `EnvironmentModel` properties. JSON: %s",
entry.getKey(), jsonElement.toString()));
}
}
JsonObject jsonObj = jsonElement.getAsJsonObject();
// validate the optional field `product`
if (jsonObj.get("product") != null && !jsonObj.get("product").isJsonNull()) {
ProductModel.validateJsonElement(jsonObj.get("product"));
}
if ((jsonObj.get("environmentId") != null && !jsonObj.get("environmentId").isJsonNull())
&& !jsonObj.get("environmentId").isJsonPrimitive()) {
throw new IllegalArgumentException(
String.format(
"Expected the field `environmentId` to be a primitive type in the JSON"
+ " string but got `%s`",
jsonObj.get("environmentId").toString()));
}
if ((jsonObj.get("name") != null && !jsonObj.get("name").isJsonNull())
&& !jsonObj.get("name").isJsonPrimitive()) {
throw new IllegalArgumentException(
String.format(
"Expected the field `name` to be a primitive type in the JSON string"
+ " but got `%s`",
jsonObj.get("name").toString()));
}
if ((jsonObj.get("color") != null && !jsonObj.get("color").isJsonNull())
&& !jsonObj.get("color").isJsonPrimitive()) {
throw new IllegalArgumentException(
String.format(
"Expected the field `color` to be a primitive type in the JSON string"
+ " but got `%s`",
jsonObj.get("color").toString()));
}
if ((jsonObj.get("description") != null && !jsonObj.get("description").isJsonNull())
&& !jsonObj.get("description").isJsonPrimitive()) {
throw new IllegalArgumentException(
String.format(
"Expected the field `description` to be a primitive type in the JSON"
+ " string but got `%s`",
jsonObj.get("description").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!EnvironmentModel.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'EnvironmentModel' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter =
gson.getDelegateAdapter(this, TypeToken.get(EnvironmentModel.class));
return (TypeAdapter)
new TypeAdapter() {
@Override
public void write(JsonWriter out, EnvironmentModel value)
throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public EnvironmentModel read(JsonReader in) throws IOException {
JsonElement jsonElement = elementAdapter.read(in);
validateJsonElement(jsonElement);
return thisAdapter.fromJsonTree(jsonElement);
}
}.nullSafe();
}
}
/**
* Create an instance of EnvironmentModel given an JSON string
*
* @param jsonString JSON string
* @return An instance of EnvironmentModel
* @throws IOException if the JSON string is invalid with respect to EnvironmentModel
*/
public static EnvironmentModel fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, EnvironmentModel.class);
}
/**
* Convert an instance of EnvironmentModel to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy