@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
52 lines • 1.36 kB
JavaScript
/**
* 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.AuditLogsEventAttributes = void 0;
/**
* JSON object containing all event attributes and their associated values.
*/
class AuditLogsEventAttributes {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return AuditLogsEventAttributes.attributeTypeMap;
}
}
exports.AuditLogsEventAttributes = AuditLogsEventAttributes;
/**
* @ignore
*/
AuditLogsEventAttributes.attributeTypeMap = {
attributes: {
baseName: "attributes",
type: "{ [key: string]: any; }",
},
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: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=AuditLogsEventAttributes.js.map
;