@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
60 lines (59 loc) • 2.08 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 { CreateTableRequestDataAttributesFileMetadata } from "./CreateTableRequestDataAttributesFileMetadata";
import { CreateTableRequestDataAttributesSchema } from "./CreateTableRequestDataAttributesSchema";
import { ReferenceTableCreateSourceType } from "./ReferenceTableCreateSourceType";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Attributes that define the reference table's configuration and properties.
*/
export declare class CreateTableRequestDataAttributes {
/**
* Optional text describing the purpose or contents of this reference table.
*/
"description"?: string;
/**
* Metadata specifying where and how to access the reference table's data file.
*/
"fileMetadata"?: CreateTableRequestDataAttributesFileMetadata;
/**
* Schema defining the structure and columns of the reference table.
*/
"schema": CreateTableRequestDataAttributesSchema;
/**
* The source type for creating reference table data. Only these source types can be created through this API.
*/
"source": ReferenceTableCreateSourceType;
/**
* Name to identify this reference table.
*/
"tableName": string;
/**
* Tags for organizing and filtering reference tables.
*/
"tags"?: Array<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();
}