azurite
Version:
An open source Azure Storage API compatible server
15 lines • 966 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
class BatchErrorConstants {
}
BatchErrorConstants.BODY_NULL = "Body null when calling getBody on BatchRequest.";
BatchErrorConstants.NO_PARTITION_KEY = "Partition key not found in request.";
BatchErrorConstants.METHOD_INVALID = "HttpMethod invalid on batch operation.";
BatchErrorConstants.METHOD_NOT_IMPLEMENTED = "Method not implemented.";
BatchErrorConstants.PATH_NULL = "Path null when calling getPath on BatchRequest.";
BatchErrorConstants.PROTOCOL_NULL = "Protocol null when calling getProtocol on BatchRequest";
BatchErrorConstants.TOO_MANY_OPERATIONS = "0:The batch request operation exceeds the maximum 100 changes per change set.";
BatchErrorConstants.UNKNOWN_QUERYOPTION = "Unknown query options type.";
BatchErrorConstants.URI_NULL = "URI or path null when calling getUrl on BatchRequest.";
exports.default = BatchErrorConstants;
//# sourceMappingURL=BatchErrorConstants.js.map
;