
com.blazebit.query.connector.kandji.model.InstalledProfiles200ResponseDataInnerProfileDataInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blaze-query-connector-kandji-jersey3 Show documentation
Show all versions of blaze-query-connector-kandji-jersey3 Show documentation
A multi-platform querying library
The newest version!
/*
* Kandji API
* # Welcome to the Kandji API Documentation You can find your API URL in Settings > Access. The API URL will follow the below formats. - US - `https://SubDomain.api.kandji.io` - EU - `https://SubDomain.api.eu.kandji.io` For information on how to obtain an API token, please refer to the following support article. [https://support.kandji.io/api](https://support.kandji.io/api) #### Rate Limit The Kandji API currently has an API rate limit of 10,000 requests per hour per customer. #### Request Methods HTTP request methods supported by the Kandji API. | Method | Definition | | --- | --- | | GET | The `GET` method requests a representation of the specified resource. | | POST | The `POST` method submits an entity to the specified resource. | | PATCH | The `PATCH` method applies partial modifications to a resource. | | DELETE | The `DELETE` method deletes the specified resource. | #### Response codes Not all response codes apply to every endpoint. | Code | Response | | --- | --- | | 200 | OK | | 201 | Created | | 204 | No content | | | Typical response when sending the DELETE method. | | 400 | Bad Request | | | \"Command already running\" - The command may already be running in a _Pending_ state waiting on the device. | | | \"Command is not allowed for current device\" - The command may not be compatible with the target device. | | | \"JSON parse error - Expecting ',' delimiter: line 3 column 2 (char 65)\" | | 401 | Unauthorized | | | This error can occur if the token is incorrect, was revoked, or the token has expired. | | 403 | Forbidden | | | The request was understood but cannot be authorized. | | 404 | Not found | | | Unable to locate the resource in the Kandji tenant. | | 415 | Unsupported Media Type | | | The request contains a media type which the server or resource does not support. | | 500 | Internal server error | | 503 | Service unavailable | | | This error can occur if a file upload is still being processed via the custom apps API. | #### Data structure The API returns all structured responses in JSON schema format. #### Examples Code examples using the API can be found in the Kandji support [GitHub](https://github.com/kandji-inc/support/tree/main/api-tools).
*
* The version of the OpenAPI document: 1.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.blazebit.query.connector.kandji.model;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
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.math.BigDecimal;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.blazebit.query.connector.kandji.invoker.JSON;
/**
* InstalledProfiles200ResponseDataInnerProfileDataInner
*/
@JsonPropertyOrder({
InstalledProfiles200ResponseDataInnerProfileDataInner.JSON_PROPERTY_DESCRIPTION,
InstalledProfiles200ResponseDataInnerProfileDataInner.JSON_PROPERTY_DISPLAY_NAME,
InstalledProfiles200ResponseDataInnerProfileDataInner.JSON_PROPERTY_IDENTIFIER,
InstalledProfiles200ResponseDataInnerProfileDataInner.JSON_PROPERTY_ORGANIZATION,
InstalledProfiles200ResponseDataInnerProfileDataInner.JSON_PROPERTY_TYPE,
InstalledProfiles200ResponseDataInnerProfileDataInner.JSON_PROPERTY_UUID,
InstalledProfiles200ResponseDataInnerProfileDataInner.JSON_PROPERTY_VERSION
})
@JsonTypeName("installedProfiles_200_response_data_inner_profile_data_inner")
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-04-30T07:19:31.168100307Z[Etc/UTC]", comments = "Generator version: 7.10.0")
public class InstalledProfiles200ResponseDataInnerProfileDataInner {
public static final String JSON_PROPERTY_DESCRIPTION = "description";
@jakarta.annotation.Nullable
private String description;
public static final String JSON_PROPERTY_DISPLAY_NAME = "display_name";
@jakarta.annotation.Nullable
private String displayName;
public static final String JSON_PROPERTY_IDENTIFIER = "identifier";
@jakarta.annotation.Nullable
private String identifier;
public static final String JSON_PROPERTY_ORGANIZATION = "organization";
@jakarta.annotation.Nullable
private String organization;
public static final String JSON_PROPERTY_TYPE = "type";
@jakarta.annotation.Nullable
private String type;
public static final String JSON_PROPERTY_UUID = "uuid";
@jakarta.annotation.Nullable
private String uuid;
public static final String JSON_PROPERTY_VERSION = "version";
@jakarta.annotation.Nullable
private BigDecimal version;
public InstalledProfiles200ResponseDataInnerProfileDataInner() {
}
public InstalledProfiles200ResponseDataInnerProfileDataInner description(@jakarta.annotation.Nullable String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDescription() {
return description;
}
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDescription(@jakarta.annotation.Nullable String description) {
this.description = description;
}
public InstalledProfiles200ResponseDataInnerProfileDataInner displayName(@jakarta.annotation.Nullable String displayName) {
this.displayName = displayName;
return this;
}
/**
* Get displayName
* @return displayName
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDisplayName() {
return displayName;
}
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDisplayName(@jakarta.annotation.Nullable String displayName) {
this.displayName = displayName;
}
public InstalledProfiles200ResponseDataInnerProfileDataInner identifier(@jakarta.annotation.Nullable String identifier) {
this.identifier = identifier;
return this;
}
/**
* Get identifier
* @return identifier
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getIdentifier() {
return identifier;
}
@JsonProperty(JSON_PROPERTY_IDENTIFIER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setIdentifier(@jakarta.annotation.Nullable String identifier) {
this.identifier = identifier;
}
public InstalledProfiles200ResponseDataInnerProfileDataInner organization(@jakarta.annotation.Nullable String organization) {
this.organization = organization;
return this;
}
/**
* Get organization
* @return organization
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ORGANIZATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getOrganization() {
return organization;
}
@JsonProperty(JSON_PROPERTY_ORGANIZATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setOrganization(@jakarta.annotation.Nullable String organization) {
this.organization = organization;
}
public InstalledProfiles200ResponseDataInnerProfileDataInner type(@jakarta.annotation.Nullable String type) {
this.type = type;
return this;
}
/**
* Get type
* @return type
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getType() {
return type;
}
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setType(@jakarta.annotation.Nullable String type) {
this.type = type;
}
public InstalledProfiles200ResponseDataInnerProfileDataInner uuid(@jakarta.annotation.Nullable String uuid) {
this.uuid = uuid;
return this;
}
/**
* Get uuid
* @return uuid
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_UUID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getUuid() {
return uuid;
}
@JsonProperty(JSON_PROPERTY_UUID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setUuid(@jakarta.annotation.Nullable String uuid) {
this.uuid = uuid;
}
public InstalledProfiles200ResponseDataInnerProfileDataInner version(@jakarta.annotation.Nullable BigDecimal version) {
this.version = version;
return this;
}
/**
* Get version
* @return version
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public BigDecimal getVersion() {
return version;
}
@JsonProperty(JSON_PROPERTY_VERSION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setVersion(@jakarta.annotation.Nullable BigDecimal version) {
this.version = version;
}
/**
* Return true if this installedProfiles_200_response_data_inner_profile_data_inner object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InstalledProfiles200ResponseDataInnerProfileDataInner installedProfiles200ResponseDataInnerProfileDataInner = (InstalledProfiles200ResponseDataInnerProfileDataInner) o;
return Objects.equals(this.description, installedProfiles200ResponseDataInnerProfileDataInner.description) &&
Objects.equals(this.displayName, installedProfiles200ResponseDataInnerProfileDataInner.displayName) &&
Objects.equals(this.identifier, installedProfiles200ResponseDataInnerProfileDataInner.identifier) &&
Objects.equals(this.organization, installedProfiles200ResponseDataInnerProfileDataInner.organization) &&
Objects.equals(this.type, installedProfiles200ResponseDataInnerProfileDataInner.type) &&
Objects.equals(this.uuid, installedProfiles200ResponseDataInnerProfileDataInner.uuid) &&
Objects.equals(this.version, installedProfiles200ResponseDataInnerProfileDataInner.version);
}
@Override
public int hashCode() {
return Objects.hash(description, displayName, identifier, organization, type, uuid, version);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InstalledProfiles200ResponseDataInnerProfileDataInner {\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" displayName: ").append(toIndentedString(displayName)).append("\n");
sb.append(" identifier: ").append(toIndentedString(identifier)).append("\n");
sb.append(" organization: ").append(toIndentedString(organization)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" uuid: ").append(toIndentedString(uuid)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy