import { type AdditionalDataHolder, type Guid, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {Shield} */ export declare function createShieldFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param Shield The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoShield(shield?: Partial | undefined): Record void>; /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param Shield The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ export declare function serializeShield(writer: SerializationWriter, shield?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; export interface Shield extends AdditionalDataHolder, Parsable { /** * Primary key for the table, used to correlate multiple telemetry records together. */ correlationId?: Guid | null; /** * Timestamp indicating when the record was created. This value is automatically managed by Sequelize. */ createdAt?: Date | null; /** * Count of Enterprise Devices that are deployed in the CX environment. */ enterpriseDeviceCount?: number | null; /** * Number of active Enterprise interfaces. */ enterpriseInterfaceCount?: number | null; /** * Number of active Enterprise intermediaries. */ enterpriseIntermediaryCount?: number | null; /** * Count of Enterprise Users that are deployed in the CX environment. */ enterpriseUserCount?: number | null; /** * Number of active managed Enterprise users. */ monthlyActiveEntUsers?: number | null; /** * Number of active managed privileged users. */ monthlyActivePrivUsers?: number | null; /** * Number of active managed Specialized users. */ monthlyActiveSpecUsers?: number | null; /** * Count of Privileged Devices (PAW) that are deployed in the CX environment. */ privilegedDeviceCount?: number | null; /** * Number of active Privileged interfaces. */ privilegedInterfaceCount?: number | null; /** * Number of active Privileged intermediaries. */ privilegedIntermediaryCount?: number | null; /** * Count of Privileged Users that are deployed in the CX environment. */ privilegedUserCount?: number | null; /** * Version number of the architecture that is deployed. */ shieldArchitectureVersion?: string | null; /** * Version number of the product that the product is running. */ shieldCoreVersion?: string | null; /** * Count of Specialized Devices that are deployed in the CX environment. */ specializedDeviceCount?: number | null; /** * Number of active Specialized interfaces. */ specializedInterfaceCount?: number | null; /** * Number of active Specialized intermediaries. */ specializedIntermediaryCount?: number | null; /** * Count of Specialized Users that are deployed in the CX environment. */ specializedUserCount?: number | null; /** * Tenant ID for the CX in question. */ tenantId?: string | null; /** * Timestamp indicating when the record was last updated. This value is automatically managed by Sequelize. */ updatedAt?: Date | null; }