@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
50 lines (49 loc) • 1.33 kB
TypeScript
/**
* 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 { FindingMuteReason } from "./FindingMuteReason";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Information about the mute status of this finding.
*/
export declare class FindingMute {
/**
* Additional information about the reason why this finding is muted or unmuted.
*/
"description"?: string;
/**
* The expiration date of the mute or unmute action (Unix ms).
*/
"expirationDate"?: number;
/**
* Whether this finding is muted or unmuted.
*/
"muted"?: boolean;
/**
* The reason why this finding is muted or unmuted.
*/
"reason"?: FindingMuteReason;
/**
* The start of the mute period.
*/
"startDate"?: number;
/**
* The ID of the user who muted or unmuted this finding.
*/
"uuid"?: string;
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}