26 lines
804 B
JavaScript
26 lines
804 B
JavaScript
|
"use strict";
|
||
|
// Copyright (c) Microsoft Corporation.
|
||
|
// Licensed under the MIT license.
|
||
|
// Generated from ../../../cs/src/Contracts/ErrorCodes.cs
|
||
|
/* eslint-disable */
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.ErrorCodes = void 0;
|
||
|
/**
|
||
|
* Error codes for ErrorDetail.Code and `x-ms-error-code` header.
|
||
|
*/
|
||
|
var ErrorCodes;
|
||
|
(function (ErrorCodes) {
|
||
|
/**
|
||
|
* Operation timed out.
|
||
|
*/
|
||
|
ErrorCodes["Timeout"] = "Timeout";
|
||
|
/**
|
||
|
* Operation cannot be performed because the service is not available.
|
||
|
*/
|
||
|
ErrorCodes["ServiceUnavailable"] = "ServiceUnavailable";
|
||
|
/**
|
||
|
* Internal error.
|
||
|
*/
|
||
|
ErrorCodes["InternalError"] = "InternalError";
|
||
|
})(ErrorCodes = exports.ErrorCodes || (exports.ErrorCodes = {}));
|
||
|
//# sourceMappingURL=errorCodes.js.map
|