/** * 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 group of instrumented pods targeted for SSI injection. */ export declare class FleetInstrumentedPodGroupAttributes { /** * The SSI injection target configuration applied to the pod group. */ "appliedTarget"?: { [key: string]: any; }; /** * The name of the applied SSI injection target. */ "appliedTargetName"?: string; /** * Tags injected into the pods by the Admission Controller. */ "injectedTags"?: Array; /** * The kind of the Kubernetes owner reference. */ "kubeOwnerrefKind"?: string; /** * The name of the Kubernetes owner reference (deployment, statefulset, etc.). */ "kubeOwnerrefName"?: string; /** * Library injection annotations on the pod group. */ "libInjectionAnnotations"?: Array; /** * The Kubernetes namespace of the pod group. */ "namespace"?: string; /** * Total number of pods in the group. */ "podCount"?: number; /** * Names of the individual pods in the group. */ "podNames"?: Array; /** * Additional tags associated with the pod group. */ "tags"?: { [key: string]: 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(); }