import { ASN1Element as _Element, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { Name } from "../InformationFramework/Name.ta.mjs"; import { RelativeDistinguishedName } from "../InformationFramework/RelativeDistinguishedName.ta.mjs"; import { AARQ_apdu_protocol_version } from "../OSIProtocolSpecification/AARQ-apdu-protocol-version.ta.mjs"; import { AE_invocation_identifier } from "../OSIProtocolSpecification/AE-invocation-identifier.ta.mjs"; import { AP_invocation_identifier } from "../OSIProtocolSpecification/AP-invocation-identifier.ta.mjs"; import { Application_context_name } from "../OSIProtocolSpecification/Application-context-name.ta.mjs"; import { Association_informationBind } from "../OSIProtocolSpecification/Association-informationBind.ta.mjs"; import { Implementation_data } from "../OSIProtocolSpecification/Implementation-data.ta.mjs"; /** * @summary AARQ_apdu * @description * * ### ASN.1 Definition: * * ```asn1 * AARQ-apdu{APPLICATION-CONTEXT:Protocols} ::= [APPLICATION 0] IMPLICIT SEQUENCE { * protocol-version [0] IMPLICIT BIT STRING {version1(0)} * DEFAULT {version1}, * application-context-name [1] Application-context-name, * called-AP-title [2] Name OPTIONAL, * called-AE-qualifier [3] RelativeDistinguishedName OPTIONAL, * called-AP-invocation-identifier [4] AP-invocation-identifier OPTIONAL, * called-AE-invocation-identifier [5] AE-invocation-identifier OPTIONAL, * calling-AP-title [6] Name OPTIONAL, * calling-AE-qualifier [7] RelativeDistinguishedName OPTIONAL, * calling-AP-invocation-identifier [8] AP-invocation-identifier OPTIONAL, * calling-AE-invocation-identifier [9] AE-invocation-identifier OPTIONAL, * implementation-information [29] IMPLICIT Implementation-data OPTIONAL, * user-information [30] IMPLICIT * Association-informationBind{{Protocols}}} * ``` * */ export declare class AARQ_apdu { /** * @summary `protocol_version`. * @public * @readonly */ readonly protocol_version: OPTIONAL; /** * @summary `application_context_name`. * @public * @readonly */ readonly application_context_name: Application_context_name; /** * @summary `called_AP_title`. * @public * @readonly */ readonly called_AP_title: OPTIONAL; /** * @summary `called_AE_qualifier`. * @public * @readonly */ readonly called_AE_qualifier: OPTIONAL; /** * @summary `called_AP_invocation_identifier`. * @public * @readonly */ readonly called_AP_invocation_identifier: OPTIONAL; /** * @summary `called_AE_invocation_identifier`. * @public * @readonly */ readonly called_AE_invocation_identifier: OPTIONAL; /** * @summary `calling_AP_title`. * @public * @readonly */ readonly calling_AP_title: OPTIONAL; /** * @summary `calling_AE_qualifier`. * @public * @readonly */ readonly calling_AE_qualifier: OPTIONAL; /** * @summary `calling_AP_invocation_identifier`. * @public * @readonly */ readonly calling_AP_invocation_identifier: OPTIONAL; /** * @summary `calling_AE_invocation_identifier`. * @public * @readonly */ readonly calling_AE_invocation_identifier: OPTIONAL; /** * @summary `implementation_information`. * @public * @readonly */ readonly implementation_information: OPTIONAL; /** * @summary `user_information`. * @public * @readonly */ readonly user_information: Association_informationBind; constructor( /** * @summary `protocol_version`. * @public * @readonly */ protocol_version: OPTIONAL, /** * @summary `application_context_name`. * @public * @readonly */ application_context_name: Application_context_name, /** * @summary `called_AP_title`. * @public * @readonly */ called_AP_title: OPTIONAL, /** * @summary `called_AE_qualifier`. * @public * @readonly */ called_AE_qualifier: OPTIONAL, /** * @summary `called_AP_invocation_identifier`. * @public * @readonly */ called_AP_invocation_identifier: OPTIONAL, /** * @summary `called_AE_invocation_identifier`. * @public * @readonly */ called_AE_invocation_identifier: OPTIONAL, /** * @summary `calling_AP_title`. * @public * @readonly */ calling_AP_title: OPTIONAL, /** * @summary `calling_AE_qualifier`. * @public * @readonly */ calling_AE_qualifier: OPTIONAL, /** * @summary `calling_AP_invocation_identifier`. * @public * @readonly */ calling_AP_invocation_identifier: OPTIONAL, /** * @summary `calling_AE_invocation_identifier`. * @public * @readonly */ calling_AE_invocation_identifier: OPTIONAL, /** * @summary `implementation_information`. * @public * @readonly */ implementation_information: OPTIONAL, /** * @summary `user_information`. * @public * @readonly */ user_information: Association_informationBind); /** * @summary Restructures an object into a AARQ_apdu * @description * * This takes an `object` and converts it to a `AARQ_apdu`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `AARQ_apdu`. * @returns {AARQ_apdu} */ static _from_object(_o: { [_K in keyof AARQ_apdu]: AARQ_apdu[_K]; }): AARQ_apdu; /** * @summary Getter that returns the default value for `protocol_version`. * @public * @static * @method */ static get _default_value_for_protocol_version(): AARQ_apdu_protocol_version; } /** * @summary The Leading Root Component Types of AARQ_apdu * @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_AARQ_apdu: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of AARQ_apdu * @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_AARQ_apdu: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of AARQ_apdu * @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_AARQ_apdu: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) AARQ_apdu * @function * @param {_Element} el The element being decoded. * @returns {AARQ_apdu} The decoded data structure. */ export declare function _decode_AARQ_apdu(el: _Element): AARQ_apdu; /** * @summary Encodes a(n) AARQ_apdu 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 AARQ_apdu, encoded as an ASN.1 Element. */ export declare function _encode_AARQ_apdu(value: AARQ_apdu, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=AARQ-apdu.ta.d.mts.map