import { OPTIONAL, GeneralizedTime, ASN1Element as _Element, type INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { TimePeriod } from '../MetricModule/TimePeriod.ta.mjs'; import { SuspectIntervals } from '../SummarizationASN1Productions/SuspectIntervals.ta.mjs'; import { BufferedObservationList } from '../SummarizationASN1Productions/BufferedObservationList.ta.mjs'; import { IncompleteScan } from '../SummarizationASN1Productions/IncompleteScan.ta.mjs'; import { AdditionalText } from '@wildboar/attribute-asn1module'; import { AdditionalInformation } from '@wildboar/attribute-asn1module'; /** * @summary BufferedScanReportInformation * @description * * ### ASN.1 Definition: * * ```asn1 * BufferedScanReportInformation ::= SEQUENCE { * granularityPeriod TimePeriod, * firstScanInitiationTime [1] GeneralizedTime OPTIONAL, * -- time of first scan initiation. Required if timeStampReportMode attribute * -- is present with non-zero value. * suspectIntervals [4] SuspectIntervals DEFAULT 0, * -- count of number of scheduled scans which have data missing or suspect for any attribute * bufferedObservationList [6] BufferedObservationList, * incompleteScan [7] IncompleteScan OPTIONAL, * -- presence indicates that the scan was incomplete. * additionalText [8] AdditionalText OPTIONAL, * additionalInformation [9] AdditionalInformation OPTIONAL * } * ``` * */ export declare class BufferedScanReportInformation { /** * @summary `granularityPeriod`. * @public * @readonly */ readonly granularityPeriod: TimePeriod; /** * @summary `firstScanInitiationTime`. * @public * @readonly */ readonly firstScanInitiationTime: OPTIONAL; /** * @summary `suspectIntervals`. * @public * @readonly */ readonly suspectIntervals: OPTIONAL; /** * @summary `bufferedObservationList`. * @public * @readonly */ readonly bufferedObservationList: BufferedObservationList; /** * @summary `incompleteScan`. * @public * @readonly */ readonly incompleteScan?: OPTIONAL; /** * @summary `additionalText`. * @public * @readonly */ readonly additionalText?: OPTIONAL; /** * @summary `additionalInformation`. * @public * @readonly */ readonly additionalInformation?: OPTIONAL; constructor( /** * @summary `granularityPeriod`. * @public * @readonly */ granularityPeriod: TimePeriod, /** * @summary `firstScanInitiationTime`. * @public * @readonly */ firstScanInitiationTime: OPTIONAL, /** * @summary `suspectIntervals`. * @public * @readonly */ suspectIntervals: OPTIONAL, /** * @summary `bufferedObservationList`. * @public * @readonly */ bufferedObservationList: BufferedObservationList, /** * @summary `incompleteScan`. * @public * @readonly */ incompleteScan?: OPTIONAL, /** * @summary `additionalText`. * @public * @readonly */ additionalText?: OPTIONAL, /** * @summary `additionalInformation`. * @public * @readonly */ additionalInformation?: OPTIONAL); /** * @summary Restructures an object into a BufferedScanReportInformation * @description * * This takes an `object` and converts it to a `BufferedScanReportInformation`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `BufferedScanReportInformation`. * @returns {BufferedScanReportInformation} */ static _from_object(_o: { [_K in keyof BufferedScanReportInformation]: BufferedScanReportInformation[_K]; }): BufferedScanReportInformation; /** * @summary Getter that returns the default value for `suspectIntervals`. * @public * @static * @method */ static get _default_value_for_suspectIntervals(): INTEGER; } /** * @summary The Leading Root Component Types of BufferedScanReportInformation * @description * * This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_1_spec_for_BufferedScanReportInformation: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of BufferedScanReportInformation * @description * * This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_2_spec_for_BufferedScanReportInformation: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of BufferedScanReportInformation * @description * * This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE. * * @constant */ export declare const _extension_additions_list_spec_for_BufferedScanReportInformation: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) BufferedScanReportInformation * @function * @param {_Element} el The element being decoded. * @returns {BufferedScanReportInformation} The decoded data structure. */ export declare function _decode_BufferedScanReportInformation(el: _Element): BufferedScanReportInformation; /** * @summary Encodes a(n) BufferedScanReportInformation into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The BufferedScanReportInformation, encoded as an ASN.1 Element. */ export declare function _encode_BufferedScanReportInformation(value: BufferedScanReportInformation, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=BufferedScanReportInformation.ta.d.mts.map