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

com.dominodatalab.pub.model.EnvironmentToolV1 Maven / Gradle / Ivy

Go to download

Domino Data Lab API Client to connect to Domino web services using Java HTTP Client.

There is a newer version: 6.0.1.0
Show newest version
/*
 * Domino Public API
 * Domino Public API Endpoints
 *
 * The version of the OpenAPI document: 0.0.0
 * 
 *
 * 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.dominodatalab.pub.model;

import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.StringJoiner;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.dominodatalab.pub.model.ProxyConfigV1;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


import com.dominodatalab.pub.invoker.ApiClient;
/**
 * EnvironmentToolV1
 */
@JsonPropertyOrder({
  EnvironmentToolV1.JSON_PROPERTY_ICON_URL,
  EnvironmentToolV1.JSON_PROPERTY_NAME,
  EnvironmentToolV1.JSON_PROPERTY_PROXY_CONFIG,
  EnvironmentToolV1.JSON_PROPERTY_START_SCRIPTS,
  EnvironmentToolV1.JSON_PROPERTY_SUPPORTED_FILE_EXTENSIONS,
  EnvironmentToolV1.JSON_PROPERTY_TITLE
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-10-04T16:37:28.765500600-04:00[America/New_York]", comments = "Generator version: 7.8.0")
public class EnvironmentToolV1 {
  public static final String JSON_PROPERTY_ICON_URL = "iconUrl";
  private String iconUrl;

  public static final String JSON_PROPERTY_NAME = "name";
  private String name;

  public static final String JSON_PROPERTY_PROXY_CONFIG = "proxyConfig";
  private ProxyConfigV1 proxyConfig;

  public static final String JSON_PROPERTY_START_SCRIPTS = "startScripts";
  private List startScripts = new ArrayList<>();

  public static final String JSON_PROPERTY_SUPPORTED_FILE_EXTENSIONS = "supportedFileExtensions";
  private List supportedFileExtensions = new ArrayList<>();

  public static final String JSON_PROPERTY_TITLE = "title";
  private String title;

  public EnvironmentToolV1() { 
  }

  public EnvironmentToolV1 iconUrl(String iconUrl) {
    this.iconUrl = iconUrl;
    return this;
  }

  /**
   * Url to pull icon image from
   * @return iconUrl
   */
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_ICON_URL)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public String getIconUrl() {
    return iconUrl;
  }


  @JsonProperty(JSON_PROPERTY_ICON_URL)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setIconUrl(String iconUrl) {
    this.iconUrl = iconUrl;
  }


  public EnvironmentToolV1 name(String name) {
    this.name = name;
    return this;
  }

  /**
   * Name of environment tool
   * @return name
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public String getName() {
    return name;
  }


  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setName(String name) {
    this.name = name;
  }


  public EnvironmentToolV1 proxyConfig(ProxyConfigV1 proxyConfig) {
    this.proxyConfig = proxyConfig;
    return this;
  }

  /**
   * Get proxyConfig
   * @return proxyConfig
   */
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_PROXY_CONFIG)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public ProxyConfigV1 getProxyConfig() {
    return proxyConfig;
  }


  @JsonProperty(JSON_PROPERTY_PROXY_CONFIG)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setProxyConfig(ProxyConfigV1 proxyConfig) {
    this.proxyConfig = proxyConfig;
  }


  public EnvironmentToolV1 startScripts(List startScripts) {
    this.startScripts = startScripts;
    return this;
  }

  public EnvironmentToolV1 addStartScriptsItem(String startScriptsItem) {
    if (this.startScripts == null) {
      this.startScripts = new ArrayList<>();
    }
    this.startScripts.add(startScriptsItem);
    return this;
  }

  /**
   * Get startScripts
   * @return startScripts
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_START_SCRIPTS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public List getStartScripts() {
    return startScripts;
  }


  @JsonProperty(JSON_PROPERTY_START_SCRIPTS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setStartScripts(List startScripts) {
    this.startScripts = startScripts;
  }


  public EnvironmentToolV1 supportedFileExtensions(List supportedFileExtensions) {
    this.supportedFileExtensions = supportedFileExtensions;
    return this;
  }

  public EnvironmentToolV1 addSupportedFileExtensionsItem(String supportedFileExtensionsItem) {
    if (this.supportedFileExtensions == null) {
      this.supportedFileExtensions = new ArrayList<>();
    }
    this.supportedFileExtensions.add(supportedFileExtensionsItem);
    return this;
  }

  /**
   * Get supportedFileExtensions
   * @return supportedFileExtensions
   */
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_SUPPORTED_FILE_EXTENSIONS)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public List getSupportedFileExtensions() {
    return supportedFileExtensions;
  }


  @JsonProperty(JSON_PROPERTY_SUPPORTED_FILE_EXTENSIONS)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setSupportedFileExtensions(List supportedFileExtensions) {
    this.supportedFileExtensions = supportedFileExtensions;
  }


  public EnvironmentToolV1 title(String title) {
    this.title = title;
    return this;
  }

  /**
   * Title of environment tool.
   * @return title
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_TITLE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public String getTitle() {
    return title;
  }


  @JsonProperty(JSON_PROPERTY_TITLE)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setTitle(String title) {
    this.title = title;
  }


  /**
   * Return true if this EnvironmentToolV1 object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    EnvironmentToolV1 environmentToolV1 = (EnvironmentToolV1) o;
    return Objects.equals(this.iconUrl, environmentToolV1.iconUrl) &&
        Objects.equals(this.name, environmentToolV1.name) &&
        Objects.equals(this.proxyConfig, environmentToolV1.proxyConfig) &&
        Objects.equals(this.startScripts, environmentToolV1.startScripts) &&
        Objects.equals(this.supportedFileExtensions, environmentToolV1.supportedFileExtensions) &&
        Objects.equals(this.title, environmentToolV1.title);
  }

  @Override
  public int hashCode() {
    return Objects.hash(iconUrl, name, proxyConfig, startScripts, supportedFileExtensions, title);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class EnvironmentToolV1 {\n");
    sb.append("    iconUrl: ").append(toIndentedString(iconUrl)).append("\n");
    sb.append("    name: ").append(toIndentedString(name)).append("\n");
    sb.append("    proxyConfig: ").append(toIndentedString(proxyConfig)).append("\n");
    sb.append("    startScripts: ").append(toIndentedString(startScripts)).append("\n");
    sb.append("    supportedFileExtensions: ").append(toIndentedString(supportedFileExtensions)).append("\n");
    sb.append("    title: ").append(toIndentedString(title)).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    ");
  }

  /**
   * Convert the instance into URL query string.
   *
   * @return URL query string
   */
  public String toUrlQueryString() {
    return toUrlQueryString(null);
  }

  /**
   * Convert the instance into URL query string.
   *
   * @param prefix prefix of the query string
   * @return URL query string
   */
  public String toUrlQueryString(String prefix) {
    String suffix = "";
    String containerSuffix = "";
    String containerPrefix = "";
    if (prefix == null) {
      // style=form, explode=true, e.g. /pet?name=cat&type=manx
      prefix = "";
    } else {
      // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
      prefix = prefix + "[";
      suffix = "]";
      containerSuffix = "]";
      containerPrefix = "[";
    }

    StringJoiner joiner = new StringJoiner("&");

    // add `iconUrl` to the URL query string
    if (getIconUrl() != null) {
      joiner.add(String.format("%siconUrl%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getIconUrl()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `name` to the URL query string
    if (getName() != null) {
      joiner.add(String.format("%sname%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `proxyConfig` to the URL query string
    if (getProxyConfig() != null) {
      joiner.add(getProxyConfig().toUrlQueryString(prefix + "proxyConfig" + suffix));
    }

    // add `startScripts` to the URL query string
    if (getStartScripts() != null) {
      for (int i = 0; i < getStartScripts().size(); i++) {
        joiner.add(String.format("%sstartScripts%s%s=%s", prefix, suffix,
            "".equals(suffix) ? "" : String.format("%s%d%s", containerPrefix, i, containerSuffix),
            URLEncoder.encode(ApiClient.valueToString(getStartScripts().get(i)), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
      }
    }

    // add `supportedFileExtensions` to the URL query string
    if (getSupportedFileExtensions() != null) {
      for (int i = 0; i < getSupportedFileExtensions().size(); i++) {
        joiner.add(String.format("%ssupportedFileExtensions%s%s=%s", prefix, suffix,
            "".equals(suffix) ? "" : String.format("%s%d%s", containerPrefix, i, containerSuffix),
            URLEncoder.encode(ApiClient.valueToString(getSupportedFileExtensions().get(i)), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
      }
    }

    // add `title` to the URL query string
    if (getTitle() != null) {
      joiner.add(String.format("%stitle%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getTitle()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    return joiner.toString();
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy