UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

65 lines (64 loc) 1.84 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"; /** * Metadata and content of a datastore item. */ export declare class ItemApiPayloadDataAttributes { /** * Timestamp when the item was first created. */ "createdAt"?: Date; /** * Timestamp when the item was last modified. */ "modifiedAt"?: Date; /** * The ID of the organization that owns this item. */ "orgId"?: number; /** * The name of the primary key column for this datastore. Primary column names: * - Must abide by both [PostgreSQL naming conventions](https://www.postgresql.org/docs/7.0/syntax525.htm) * - Cannot exceed 63 characters */ "primaryColumnName"?: string; /** * A unique signature identifying this item version. */ "signature"?: string; /** * The unique identifier of the datastore containing this item. */ "storeId"?: string; /** * The data content (as key-value pairs) of a datastore item. */ "value"?: { [key: string]: any; }; /** * 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(); }