import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ProbableCause } from '@wildboar/attribute-asn1module'; import { SpecificProblems } from '@wildboar/attribute-asn1module'; import { PerceivedSeverity, _enum_for_PerceivedSeverity } from '@wildboar/attribute-asn1module'; import { BackedUpStatus } from '@wildboar/attribute-asn1module'; import { ObjectInstance } from '@wildboar/cmip'; import { TrendIndication, _enum_for_TrendIndication } from '@wildboar/attribute-asn1module'; import { ThresholdInfo } from '@wildboar/attribute-asn1module'; import { NotificationIdentifier } from '@wildboar/attribute-asn1module'; import { CorrelatedNotifications } from '@wildboar/attribute-asn1module'; import { AttributeValueChangeDefinition } from '@wildboar/attribute-asn1module'; import { MonitoredAttributes } from '@wildboar/attribute-asn1module'; import { ProposedRepairActions } from '@wildboar/attribute-asn1module'; import { AdditionalText } from '@wildboar/attribute-asn1module'; import { AdditionalInformation } from '@wildboar/attribute-asn1module'; /** * @summary AlarmInfo * @description * * ### ASN.1 Definition: * * ```asn1 * AlarmInfo ::= SEQUENCE { * probableCause ProbableCause, * specificProblems [1] SpecificProblems OPTIONAL, * perceivedSeverity PerceivedSeverity, * backedUpStatus BackedUpStatus OPTIONAL, * backUpObject [2] ObjectInstance OPTIONAL, * trendIndication [3] TrendIndication OPTIONAL, * thresholdInfo [4] ThresholdInfo OPTIONAL, * notificationIdentifier [5] NotificationIdentifier OPTIONAL, * correlatedNotifications [6] CorrelatedNotifications OPTIONAL, * stateChangeDefinition [7] AttributeValueChangeDefinition OPTIONAL, * monitoredAttributes [8] MonitoredAttributes OPTIONAL, * proposedRepairActions [9] ProposedRepairActions OPTIONAL, * additionalText AdditionalText OPTIONAL, * additionalInformation [10] AdditionalInformation OPTIONAL * } * ``` * */ export declare class AlarmInfo { /** * @summary `probableCause`. * @public * @readonly */ readonly probableCause: ProbableCause; /** * @summary `specificProblems`. * @public * @readonly */ readonly specificProblems: OPTIONAL; /** * @summary `perceivedSeverity`. * @public * @readonly */ readonly perceivedSeverity: PerceivedSeverity; /** * @summary `backedUpStatus`. * @public * @readonly */ readonly backedUpStatus?: OPTIONAL; /** * @summary `backUpObject`. * @public * @readonly */ readonly backUpObject?: OPTIONAL; /** * @summary `trendIndication`. * @public * @readonly */ readonly trendIndication?: OPTIONAL; /** * @summary `thresholdInfo`. * @public * @readonly */ readonly thresholdInfo?: OPTIONAL; /** * @summary `notificationIdentifier`. * @public * @readonly */ readonly notificationIdentifier?: OPTIONAL; /** * @summary `correlatedNotifications`. * @public * @readonly */ readonly correlatedNotifications?: OPTIONAL; /** * @summary `stateChangeDefinition`. * @public * @readonly */ readonly stateChangeDefinition?: OPTIONAL; /** * @summary `monitoredAttributes`. * @public * @readonly */ readonly monitoredAttributes?: OPTIONAL; /** * @summary `proposedRepairActions`. * @public * @readonly */ readonly proposedRepairActions?: OPTIONAL; /** * @summary `additionalText`. * @public * @readonly */ readonly additionalText?: OPTIONAL; /** * @summary `additionalInformation`. * @public * @readonly */ readonly additionalInformation?: OPTIONAL; constructor( /** * @summary `probableCause`. * @public * @readonly */ probableCause: ProbableCause, /** * @summary `specificProblems`. * @public * @readonly */ specificProblems: OPTIONAL, /** * @summary `perceivedSeverity`. * @public * @readonly */ perceivedSeverity: PerceivedSeverity, /** * @summary `backedUpStatus`. * @public * @readonly */ backedUpStatus?: OPTIONAL, /** * @summary `backUpObject`. * @public * @readonly */ backUpObject?: OPTIONAL, /** * @summary `trendIndication`. * @public * @readonly */ trendIndication?: OPTIONAL, /** * @summary `thresholdInfo`. * @public * @readonly */ thresholdInfo?: OPTIONAL, /** * @summary `notificationIdentifier`. * @public * @readonly */ notificationIdentifier?: OPTIONAL, /** * @summary `correlatedNotifications`. * @public * @readonly */ correlatedNotifications?: OPTIONAL, /** * @summary `stateChangeDefinition`. * @public * @readonly */ stateChangeDefinition?: OPTIONAL, /** * @summary `monitoredAttributes`. * @public * @readonly */ monitoredAttributes?: OPTIONAL, /** * @summary `proposedRepairActions`. * @public * @readonly */ proposedRepairActions?: OPTIONAL, /** * @summary `additionalText`. * @public * @readonly */ additionalText?: OPTIONAL, /** * @summary `additionalInformation`. * @public * @readonly */ additionalInformation?: OPTIONAL); /** * @summary Restructures an object into a AlarmInfo * @description * * This takes an `object` and converts it to a `AlarmInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `AlarmInfo`. * @returns {AlarmInfo} */ static _from_object(_o: { [_K in keyof AlarmInfo]: AlarmInfo[_K]; }): AlarmInfo; /** * @summary The enum used as the type of the component `perceivedSeverity` * @public * @static */ static _enum_for_perceivedSeverity: typeof _enum_for_PerceivedSeverity; /** * @summary The enum used as the type of the component `trendIndication` * @public * @static */ static _enum_for_trendIndication: typeof _enum_for_TrendIndication; } /** * @summary The Leading Root Component Types of AlarmInfo * @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_AlarmInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of AlarmInfo * @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_AlarmInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of AlarmInfo * @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_AlarmInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) AlarmInfo * @function * @param {_Element} el The element being decoded. * @returns {AlarmInfo} The decoded data structure. */ export declare function _decode_AlarmInfo(el: _Element): AlarmInfo; /** * @summary Encodes a(n) AlarmInfo 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 AlarmInfo, encoded as an ASN.1 Element. */ export declare function _encode_AlarmInfo(value: AlarmInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=AlarmInfo.ta.d.mts.map