/** * 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"; /** * Attributes of a Kubernetes cluster in the fleet. */ export declare class FleetClusterAttributes { /** * Datadog Agent versions running in the cluster. */ "agentVersions"?: Array; /** * API key names used by agents in the cluster. */ "apiKeyNames"?: Array; /** * API key UUIDs used by agents in the cluster. */ "apiKeyUuids"?: Array; /** * Cloud providers hosting the cluster. */ "cloudProviders"?: Array; /** * The name of the Kubernetes cluster. */ "clusterName"?: string; /** * Datadog products enabled in the cluster. */ "enabledProducts"?: Array; /** * Environments associated with the cluster. */ "envs"?: Array; /** * Timestamp when the cluster was first seen. */ "firstSeenAt"?: number; /** * The tool used to install agents in the cluster. */ "installMethodTool"?: string; /** * Total number of nodes in the cluster. */ "nodeCount"?: number; /** * Node counts grouped by status. */ "nodeCountByStatus"?: { [key: string]: number; }; /** * Operating systems of nodes in the cluster. */ "operatingSystems"?: Array; /** * OpenTelemetry collector distributions in the cluster. */ "otelCollectorDistributions"?: Array; /** * OpenTelemetry collector versions in the cluster. */ "otelCollectorVersions"?: Array; /** * Pod counts grouped by state. */ "podCountByState"?: { [key: string]: number; }; /** * Services running in the cluster. */ "services"?: Array; /** * Teams associated with the cluster. */ "teams"?: Array; /** * 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(); }