UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

56 lines 1.31 kB
"use strict"; /** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.LogContent = void 0; /** * JSON object containing all log attributes and their associated values. */ class LogContent { constructor() { } /** * @ignore */ static getAttributeTypeMap() { return LogContent.attributeTypeMap; } } exports.LogContent = LogContent; /** * @ignore */ LogContent.attributeTypeMap = { attributes: { baseName: "attributes", type: "{ [key: string]: any; }", }, host: { baseName: "host", type: "string", }, message: { baseName: "message", type: "string", }, service: { baseName: "service", type: "string", }, tags: { baseName: "tags", type: "Array<string>", }, timestamp: { baseName: "timestamp", type: "Date", format: "date-time", }, additionalProperties: { baseName: "additionalProperties", type: "any", }, }; //# sourceMappingURL=LogContent.js.map