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

com.twilio.rest.monitor.v1.Alert Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
/**
 * This code was generated by
 * \ / _    _  _|   _  _
 *  | (_)\/(_)(_|\/| |(/_  v1.0.0
 *       /       /
 */

package com.twilio.rest.monitor.v1;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.twilio.base.Resource;
import com.twilio.converter.DateConverter;
import com.twilio.exception.ApiConnectionException;
import com.twilio.exception.ApiException;
import com.twilio.exception.RestException;
import com.twilio.http.HttpMethod;
import com.twilio.http.Request;
import com.twilio.http.Response;
import com.twilio.http.TwilioRestClient;
import com.twilio.rest.Domains;
import lombok.ToString;

import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.time.ZonedDateTime;
import java.util.Map;
import java.util.Objects;

@JsonIgnoreProperties(ignoreUnknown = true)
@ToString
public class Alert extends Resource {
    private static final long serialVersionUID = 254359080075749L;

    /**
     * Create a AlertFetcher to execute fetch.
     *
     * @param pathSid The SID that identifies the resource to fetch
     * @return AlertFetcher capable of executing the fetch
     */
    public static AlertFetcher fetcher(final String pathSid) {
        return new AlertFetcher(pathSid);
    }

    /**
     * Create a AlertReader to execute read.
     *
     * @return AlertReader capable of executing the read
     */
    public static AlertReader reader() {
        return new AlertReader();
    }

    /**
     * Converts a JSON String into a Alert object using the provided ObjectMapper.
     *
     * @param json Raw JSON String
     * @param objectMapper Jackson ObjectMapper
     * @return Alert object represented by the provided JSON
     */
    public static Alert fromJson(final String json, final ObjectMapper objectMapper) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, Alert.class);
        } catch (final JsonMappingException | JsonParseException e) {
            throw new ApiException(e.getMessage(), e);
        } catch (final IOException e) {
            throw new ApiConnectionException(e.getMessage(), e);
        }
    }

    /**
     * Converts a JSON InputStream into a Alert object using the provided
     * ObjectMapper.
     *
     * @param json Raw JSON InputStream
     * @param objectMapper Jackson ObjectMapper
     * @return Alert object represented by the provided JSON
     */
    public static Alert fromJson(final InputStream json, final ObjectMapper objectMapper) {
        // Convert all checked exceptions to Runtime
        try {
            return objectMapper.readValue(json, Alert.class);
        } catch (final JsonMappingException | JsonParseException e) {
            throw new ApiException(e.getMessage(), e);
        } catch (final IOException e) {
            throw new ApiConnectionException(e.getMessage(), e);
        }
    }

    private final String accountSid;
    private final String alertText;
    private final String apiVersion;
    private final ZonedDateTime dateCreated;
    private final ZonedDateTime dateGenerated;
    private final ZonedDateTime dateUpdated;
    private final String errorCode;
    private final String logLevel;
    private final String moreInfo;
    private final HttpMethod requestMethod;
    private final String requestUrl;
    private final String requestVariables;
    private final String resourceSid;
    private final String responseBody;
    private final String responseHeaders;
    private final String sid;
    private final URI url;
    private final String requestHeaders;
    private final String serviceSid;

    @JsonCreator
    private Alert(@JsonProperty("account_sid")
                  final String accountSid,
                  @JsonProperty("alert_text")
                  final String alertText,
                  @JsonProperty("api_version")
                  final String apiVersion,
                  @JsonProperty("date_created")
                  final String dateCreated,
                  @JsonProperty("date_generated")
                  final String dateGenerated,
                  @JsonProperty("date_updated")
                  final String dateUpdated,
                  @JsonProperty("error_code")
                  final String errorCode,
                  @JsonProperty("log_level")
                  final String logLevel,
                  @JsonProperty("more_info")
                  final String moreInfo,
                  @JsonProperty("request_method")
                  final HttpMethod requestMethod,
                  @JsonProperty("request_url")
                  final String requestUrl,
                  @JsonProperty("request_variables")
                  final String requestVariables,
                  @JsonProperty("resource_sid")
                  final String resourceSid,
                  @JsonProperty("response_body")
                  final String responseBody,
                  @JsonProperty("response_headers")
                  final String responseHeaders,
                  @JsonProperty("sid")
                  final String sid,
                  @JsonProperty("url")
                  final URI url,
                  @JsonProperty("request_headers")
                  final String requestHeaders,
                  @JsonProperty("service_sid")
                  final String serviceSid) {
        this.accountSid = accountSid;
        this.alertText = alertText;
        this.apiVersion = apiVersion;
        this.dateCreated = DateConverter.iso8601DateTimeFromString(dateCreated);
        this.dateGenerated = DateConverter.iso8601DateTimeFromString(dateGenerated);
        this.dateUpdated = DateConverter.iso8601DateTimeFromString(dateUpdated);
        this.errorCode = errorCode;
        this.logLevel = logLevel;
        this.moreInfo = moreInfo;
        this.requestMethod = requestMethod;
        this.requestUrl = requestUrl;
        this.requestVariables = requestVariables;
        this.resourceSid = resourceSid;
        this.responseBody = responseBody;
        this.responseHeaders = responseHeaders;
        this.sid = sid;
        this.url = url;
        this.requestHeaders = requestHeaders;
        this.serviceSid = serviceSid;
    }

    /**
     * Returns The SID of the Account that created the resource.
     *
     * @return The SID of the Account that created the resource
     */
    public final String getAccountSid() {
        return this.accountSid;
    }

    /**
     * Returns The text of the alert.
     *
     * @return The text of the alert
     */
    public final String getAlertText() {
        return this.alertText;
    }

    /**
     * Returns The API version used when the alert was generated.
     *
     * @return The API version used when the alert was generated
     */
    public final String getApiVersion() {
        return this.apiVersion;
    }

    /**
     * Returns The ISO 8601 date and time in GMT when the resource was created.
     *
     * @return The ISO 8601 date and time in GMT when the resource was created
     */
    public final ZonedDateTime getDateCreated() {
        return this.dateCreated;
    }

    /**
     * Returns The date and time when the alert was generated specified in ISO 8601
     * format.
     *
     * @return The date and time when the alert was generated specified in ISO 8601
     *         format
     */
    public final ZonedDateTime getDateGenerated() {
        return this.dateGenerated;
    }

    /**
     * Returns The ISO 8601 date and time in GMT when the resource was last updated.
     *
     * @return The ISO 8601 date and time in GMT when the resource was last updated
     */
    public final ZonedDateTime getDateUpdated() {
        return this.dateUpdated;
    }

    /**
     * Returns The error code for the condition that generated the alert.
     *
     * @return The error code for the condition that generated the alert
     */
    public final String getErrorCode() {
        return this.errorCode;
    }

    /**
     * Returns The log level.
     *
     * @return The log level
     */
    public final String getLogLevel() {
        return this.logLevel;
    }

    /**
     * Returns The URL of the page in our Error Dictionary with more information
     * about the error condition.
     *
     * @return The URL of the page in our Error Dictionary with more information
     *         about the error condition
     */
    public final String getMoreInfo() {
        return this.moreInfo;
    }

    /**
     * Returns The method used by the request that generated the alert.
     *
     * @return The method used by the request that generated the alert
     */
    public final HttpMethod getRequestMethod() {
        return this.requestMethod;
    }

    /**
     * Returns The URL of the request that generated the alert.
     *
     * @return The URL of the request that generated the alert
     */
    public final String getRequestUrl() {
        return this.requestUrl;
    }

    /**
     * Returns The variables passed in the request that generated the alert.
     *
     * @return The variables passed in the request that generated the alert
     */
    public final String getRequestVariables() {
        return this.requestVariables;
    }

    /**
     * Returns The SID of the resource for which the alert was generated.
     *
     * @return The SID of the resource for which the alert was generated
     */
    public final String getResourceSid() {
        return this.resourceSid;
    }

    /**
     * Returns The response body of the request that generated the alert.
     *
     * @return The response body of the request that generated the alert
     */
    public final String getResponseBody() {
        return this.responseBody;
    }

    /**
     * Returns The response headers of the request that generated the alert.
     *
     * @return The response headers of the request that generated the alert
     */
    public final String getResponseHeaders() {
        return this.responseHeaders;
    }

    /**
     * Returns The unique string that identifies the resource.
     *
     * @return The unique string that identifies the resource
     */
    public final String getSid() {
        return this.sid;
    }

    /**
     * Returns The absolute URL of the Alert resource.
     *
     * @return The absolute URL of the Alert resource
     */
    public final URI getUrl() {
        return this.url;
    }

    /**
     * Returns The request headers of the request that generated the alert.
     *
     * @return The request headers of the request that generated the alert
     */
    public final String getRequestHeaders() {
        return this.requestHeaders;
    }

    /**
     * Returns The SID of the service or resource that generated the alert.
     *
     * @return The SID of the service or resource that generated the alert
     */
    public final String getServiceSid() {
        return this.serviceSid;
    }

    @Override
    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        }

        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        Alert other = (Alert) o;

        return Objects.equals(accountSid, other.accountSid) &&
               Objects.equals(alertText, other.alertText) &&
               Objects.equals(apiVersion, other.apiVersion) &&
               Objects.equals(dateCreated, other.dateCreated) &&
               Objects.equals(dateGenerated, other.dateGenerated) &&
               Objects.equals(dateUpdated, other.dateUpdated) &&
               Objects.equals(errorCode, other.errorCode) &&
               Objects.equals(logLevel, other.logLevel) &&
               Objects.equals(moreInfo, other.moreInfo) &&
               Objects.equals(requestMethod, other.requestMethod) &&
               Objects.equals(requestUrl, other.requestUrl) &&
               Objects.equals(requestVariables, other.requestVariables) &&
               Objects.equals(resourceSid, other.resourceSid) &&
               Objects.equals(responseBody, other.responseBody) &&
               Objects.equals(responseHeaders, other.responseHeaders) &&
               Objects.equals(sid, other.sid) &&
               Objects.equals(url, other.url) &&
               Objects.equals(requestHeaders, other.requestHeaders) &&
               Objects.equals(serviceSid, other.serviceSid);
    }

    @Override
    public int hashCode() {
        return Objects.hash(accountSid,
                            alertText,
                            apiVersion,
                            dateCreated,
                            dateGenerated,
                            dateUpdated,
                            errorCode,
                            logLevel,
                            moreInfo,
                            requestMethod,
                            requestUrl,
                            requestVariables,
                            resourceSid,
                            responseBody,
                            responseHeaders,
                            sid,
                            url,
                            requestHeaders,
                            serviceSid);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy