UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

85 lines (84 loc) 2.38 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 { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * Deletion attribute for data deletion response. */ export declare class DataDeletionResponseItemAttributes { /** * Creation time of the deletion request. */ "createdAt": string; /** * User who created the deletion request. */ "createdBy": string; /** * Start of requested time window, milliseconds since Unix epoch. */ "fromTime": number; /** * List of indexes for the search. If not provided, the search is performed in all indexes. */ "indexes"?: Array<string>; /** * Whether the deletion request is fully created or not. It can take several minutes to fully create a deletion request depending on the target query and timeframe. */ "isCreated": boolean; /** * Organization ID. */ "orgId": number; /** * Product name. */ "product": string; /** * Query for creating a data deletion request. */ "query": string; /** * Starting time of the process to delete the requested data. */ "startingAt": string; /** * Status of the deletion request. */ "status": string; /** * End of requested time window, milliseconds since Unix epoch. */ "toTime": number; /** * Total number of elements to be deleted. Only the data accessible to the current user that matches the query and timeframe provided will be deleted. */ "totalUnrestricted": number; /** * Update time of the deletion request. */ "updatedAt": string; /** * 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(); }