@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
70 lines (69 loc) • 1.89 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 { AiMemoryViolationType } from "./AiMemoryViolationType";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Response attributes of an AI memory violation result.
*/
export declare class AiMemoryViolationResultResponseAttributes {
/**
* The creation timestamp.
*/
"createdAt": Date;
/**
* The identifier of the user who created the result.
*/
"createdBy": string;
/**
* The line number where the violation was found.
*/
"line": number;
/**
* A message explaining the violation result.
*/
"message": string;
/**
* The file path where the violation was found.
*/
"name": string;
/**
* The repository identifier.
*/
"repositoryId": string;
/**
* The rule identifier in the format ruleset/rule.
*/
"rule": string;
/**
* The git commit SHA where the violation was found.
*/
"sha": string;
/**
* The type of AI memory violation result indicating whether it is a true positive or false positive.
*/
"type": AiMemoryViolationType;
/**
* 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();
}