@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
118 lines (117 loc) • 3.41 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 { SecurityMonitoringFilter } from "./SecurityMonitoringFilter";
import { SecurityMonitoringRuleCase } from "./SecurityMonitoringRuleCase";
import { SecurityMonitoringRuleOptions } from "./SecurityMonitoringRuleOptions";
import { SecurityMonitoringSignalRuleResponseQuery } from "./SecurityMonitoringSignalRuleResponseQuery";
import { SecurityMonitoringSignalRuleType } from "./SecurityMonitoringSignalRuleType";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Rule.
*/
export declare class SecurityMonitoringSignalRuleResponse {
/**
* Cases for generating signals.
*/
"cases"?: Array<SecurityMonitoringRuleCase>;
/**
* When the rule was created, timestamp in milliseconds.
*/
"createdAt"?: number;
/**
* User ID of the user who created the rule.
*/
"creationAuthorId"?: number;
/**
* Custom/Overridden message for generated signals (used in case of Default rule update).
*/
"customMessage"?: string;
/**
* Custom/Overridden name of the rule (used in case of Default rule update).
*/
"customName"?: string;
/**
* When the rule will be deprecated, timestamp in milliseconds.
*/
"deprecationDate"?: number;
/**
* Additional queries to filter matched events before they are processed. This field is deprecated for log detection, signal correlation, and workload security rules.
*/
"filters"?: Array<SecurityMonitoringFilter>;
/**
* Whether the notifications include the triggering group-by values in their title.
*/
"hasExtendedTitle"?: boolean;
/**
* The ID of the rule.
*/
"id"?: string;
/**
* Whether the rule is included by default.
*/
"isDefault"?: boolean;
/**
* Whether the rule has been deleted.
*/
"isDeleted"?: boolean;
/**
* Whether the rule is enabled.
*/
"isEnabled"?: boolean;
/**
* Message for generated signals.
*/
"message"?: string;
/**
* The name of the rule.
*/
"name"?: string;
/**
* Options.
*/
"options"?: SecurityMonitoringRuleOptions;
/**
* Queries for selecting logs which are part of the rule.
*/
"queries"?: Array<SecurityMonitoringSignalRuleResponseQuery>;
/**
* Tags for generated signals.
*/
"tags"?: Array<string>;
/**
* The rule type.
*/
"type"?: SecurityMonitoringSignalRuleType;
/**
* User ID of the user who updated the rule.
*/
"updateAuthorId"?: number;
/**
* The version of the rule.
*/
"version"?: number;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: {
[key: string]: any;
};
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}