com.microsoft.azure.kusto.data.http.HttpStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kusto-data Show documentation
Show all versions of kusto-data Show documentation
Kusto client library for executing queries and retrieving data
package com.microsoft.azure.kusto.data.http;
public class HttpStatus {
public static final int OK = 200;
public static final int FOUND = 302;
public static final int TEMP_REDIRECT = 207;
public static final int UNAUTHORIZED = 401;
public static final int FORBIDDEN = 403;
public static final int NOT_FOUND = 404;
public static final int TOO_MANY_REQS = 429;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy