UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

59 lines (58 loc) 2.15 kB
/** * 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. */ import { ChangeEventCustomAttributesAuthor } from "./ChangeEventCustomAttributesAuthor"; import { ChangeEventCustomAttributesChangedResource } from "./ChangeEventCustomAttributesChangedResource"; import { ChangeEventCustomAttributesImpactedResourcesItems } from "./ChangeEventCustomAttributesImpactedResourcesItems"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * Change event attributes. */ export declare class ChangeEventCustomAttributes { /** * The entity that made the change. Optional, if provided it must include `type` and `name`. */ "author"?: ChangeEventCustomAttributesAuthor; /** * Free form JSON object with information related to the `change` event. Supports up to 100 properties per object and a maximum nesting depth of 10 levels. */ "changeMetadata"?: { [key: string]: any; }; /** * A uniquely identified resource. */ "changedResource": ChangeEventCustomAttributesChangedResource; /** * A list of resources impacted by this change. It is recommended to provide an impacted resource to display * the change event at the correct location. Only resources of type `service` are supported. Maximum of 100 impacted resources allowed. */ "impactedResources"?: Array<ChangeEventCustomAttributesImpactedResourcesItems>; /** * Free form JSON object representing the new state of the changed resource. */ "newValue"?: { [key: string]: any; }; /** * Free form JSON object representing the previous state of the changed resource. */ "prevValue"?: { [key: string]: any; }; /** * @ignore */ "_unparsed"?: boolean; /** * @ignore */ static readonly attributeTypeMap: AttributeTypeMap; /** * @ignore */ static getAttributeTypeMap(): AttributeTypeMap; constructor(); }