Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kd_clients/core/Enums.ts>NuGetHttpStatusCodes

Various HTTP clients for miscellaneous use.
Latest
enum NuGetHttpStatusCodes
import { NuGetHttpStatusCodes } from "https://deno.land/x/kd_clients@v1.0.0-preview.13/core/Enums.ts";

HTTP status codes for the NuGet API.

Members

ActionNotAllowedWithCreds = 403

The action is not allowed given the provided credentials.

CredentialsInvalid = 401

The provided credentials are invalid.

InternalServerError = 500

The service has encountered an unexpected error.

NotFound = 404

The requested resource doesn't exist.

ParamsNotValid = 400

The parameters in the URL or in the request body aren't valid.

PermanentRedirect = 301

A permanent redirect.

ResourceConflicts = 409

The request conflicts with an existing resource.

SuccessIncompleteOrCompletedAsync = 202

Success, the request has been accepted but some work may still be incomplete and completed asynchronously.

SuccessResourceCreated = 201

Success, and the resource was created.

SuccessWithNoResponseBody = 204

Success, but there is no response body.

SuccessWithResponseBody = 200

Success, and there is a response body.

TemporarilyUnavailable = 503

The service is temporarily unavailable.

TemporaryRedirect = 302

A temporary redirect.