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 {ProgressBar} */ export declare function createProgressBarFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * 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 {SystemRequirements} */ export declare function createSystemRequirementsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param ProgressBar The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoProgressBar(progressBar?: Partial | undefined): Record void>; /** * The deserialization information for the current model * @param SystemRequirements The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoSystemRequirements(systemRequirements?: Partial | undefined): Record void>; /** * Used to indicate the progress of a long running operation. */ export interface ProgressBar extends AdditionalDataHolder, Parsable { /** * Sub progress bar that should appear below the current progress bar for a dependent execution branch. */ childBar?: ProgressBar[] | null; /** * Current step/value for the progress bar. This is in relation to the `totalStepCount` property. If undefined, an indeterminate/pulsing progress bar is used instead. */ currentStep?: number | null; /** * Long form text describing the current step. */ description?: string | null; /** * Text/label to render with the progress bar. */ displayName?: string | null; /** * Unique identifier to be able to select this specific instance via search. */ id?: Guid | null; /** * Number of steps before the progress bar is completely filed. */ totalStepCount?: number | null; } /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param ProgressBar The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ export declare function serializeProgressBar(writer: SerializationWriter, progressBar?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param SystemRequirements The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ export declare function serializeSystemRequirements(writer: SerializationWriter, systemRequirements?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Collection of indicators that notify the caller if the system requirements have been met for various sub components to operate. */ export interface SystemRequirements extends AdditionalDataHolder, Parsable { /** * Flag that indicates if the required core Azure RBAC assignment(s) are present or not. */ azurePermissions?: boolean | null; /** * Flag that indicates if the core permissions for the SHI - Data Gateway have been configured properly or not. */ dataGatewayPermissions?: boolean | null; /** * Flag that indicates if the required defend licenses are present or not. */ defendEntitlement?: boolean | null; /** * Flag that indicates if the required deploy licenses are present or not. */ deployEntitlement?: boolean | null; /** * Flag that indicates if the core permissions for the SHIELD - Authenticator App have been configured properly or not. */ desktopPermissions?: boolean | null; /** * Flag that indicates if the required discover licenses are present or not. */ discoverEntitlement?: boolean | null; /** * Flag that indicates if the core permissions for Entra Directory Role assignment have been configured properly or not. */ entraDirectoryRole?: boolean | null; /** * Flag that indicates if the core permissions for the Microsoft Graph API have been configured properly or not. */ msGraphPermissions?: boolean | null; }