import { ASN1Element as _Element, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { DomainLocalID } from "../DirectoryAbstractService/DomainLocalID.ta.mjs"; import { EntryInformationSelection } from "../DirectoryAbstractService/EntryInformationSelection.ta.mjs"; import { Filter } from "../DirectoryAbstractService/Filter.ta.mjs"; import { JoinArgument_joinSubset, _enum_for_JoinArgument_joinSubset } from "../DirectoryAbstractService/JoinArgument-joinSubset.ta.mjs"; import { JoinAttPair } from "../DirectoryAbstractService/JoinAttPair.ta.mjs"; import { Name } from "../InformationFramework/Name.ta.mjs"; /** * @summary JoinArgument * @description * * ### ASN.1 Definition: * * ```asn1 * JoinArgument ::= SEQUENCE { * joinBaseObject [0] Name, * domainLocalID [1] DomainLocalID OPTIONAL, * joinSubset [2] ENUMERATED { * baseObject (0), * oneLevel (1), * wholeSubtree (2), * ... } DEFAULT baseObject, * joinFilter [3] Filter OPTIONAL, * joinAttributes [4] SEQUENCE SIZE (1..MAX) OF JoinAttPair OPTIONAL, * joinSelection [5] EntryInformationSelection, * ... } * ``` * */ export declare class JoinArgument { /** * @summary `joinBaseObject`. * @public * @readonly */ readonly joinBaseObject: Name; /** * @summary `domainLocalID`. * @public * @readonly */ readonly domainLocalID: OPTIONAL; /** * @summary `joinSubset`. * @public * @readonly */ readonly joinSubset: OPTIONAL; /** * @summary `joinFilter`. * @public * @readonly */ readonly joinFilter: OPTIONAL; /** * @summary `joinAttributes`. * @public * @readonly */ readonly joinAttributes: OPTIONAL; /** * @summary `joinSelection`. * @public * @readonly */ readonly joinSelection: EntryInformationSelection; /** * @summary Extensions that are not recognized. * @public * @readonly */ readonly _unrecognizedExtensionsList: _Element[]; constructor( /** * @summary `joinBaseObject`. * @public * @readonly */ joinBaseObject: Name, /** * @summary `domainLocalID`. * @public * @readonly */ domainLocalID: OPTIONAL, /** * @summary `joinSubset`. * @public * @readonly */ joinSubset: OPTIONAL, /** * @summary `joinFilter`. * @public * @readonly */ joinFilter: OPTIONAL, /** * @summary `joinAttributes`. * @public * @readonly */ joinAttributes: OPTIONAL, /** * @summary `joinSelection`. * @public * @readonly */ joinSelection: EntryInformationSelection, /** * @summary Extensions that are not recognized. * @public * @readonly */ _unrecognizedExtensionsList?: _Element[]); /** * @summary Restructures an object into a JoinArgument * @description * * This takes an `object` and converts it to a `JoinArgument`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `JoinArgument`. * @returns {JoinArgument} */ static _from_object(_o: { [_K in keyof JoinArgument]: JoinArgument[_K]; }): JoinArgument; /** * @summary Getter that returns the default value for `joinSubset`. * @public * @static * @method */ static get _default_value_for_joinSubset(): JoinArgument_joinSubset; /** * @summary The enum used as the type of the component `joinSubset` * @public * @static */ static _enum_for_joinSubset: typeof _enum_for_JoinArgument_joinSubset; } /** * @summary The Leading Root Component Types of JoinArgument * @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_JoinArgument: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of JoinArgument * @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_JoinArgument: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of JoinArgument * @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_JoinArgument: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) JoinArgument * @function * @param {_Element} el The element being decoded. * @returns {JoinArgument} The decoded data structure. */ export declare function _decode_JoinArgument(el: _Element): JoinArgument; /** * @summary Encodes a(n) JoinArgument 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 JoinArgument, encoded as an ASN.1 Element. */ export declare function _encode_JoinArgument(value: JoinArgument, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=JoinArgument.ta.d.mts.map