@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
61 lines (60 loc) • 1.9 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 { EntityV3APIVersion } from "./EntityV3APIVersion";
import { EntityV3Integrations } from "./EntityV3Integrations";
import { EntityV3Metadata } from "./EntityV3Metadata";
import { EntityV3QueueDatadog } from "./EntityV3QueueDatadog";
import { EntityV3QueueKind } from "./EntityV3QueueKind";
import { EntityV3QueueSpec } from "./EntityV3QueueSpec";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Schema for queue entities.
*/
export declare class EntityV3Queue {
/**
* The schema version of entity type. The field is known as schema-version in the previous version.
*/
"apiVersion": EntityV3APIVersion;
/**
* Datadog product integrations for the datastore entity.
*/
"datadog"?: EntityV3QueueDatadog;
/**
* Custom extensions. This is the free-formed field to send client-side metadata. No Datadog features are affected by this field.
*/
"extensions"?: {
[key: string]: any;
};
/**
* A base schema for defining third-party integrations.
*/
"integrations"?: EntityV3Integrations;
/**
* The definition of Entity V3 Queue Kind object.
*/
"kind": EntityV3QueueKind;
/**
* The definition of Entity V3 Metadata object.
*/
"metadata": EntityV3Metadata;
/**
* The definition of Entity V3 Queue Spec object.
*/
"spec"?: EntityV3QueueSpec;
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}