import { ASN1Element as _Element, BIT_STRING, BOOLEAN, INTEGER, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { ContextSelection } from "../DirectoryAbstractService/ContextSelection.ta.mjs"; import { FamilyGrouping, _enum_for_FamilyGrouping } from "../DirectoryAbstractService/FamilyGrouping.ta.mjs"; import { LinkId } from "../DirectoryAbstractService/LinkId.ta.mjs"; import { SecurityParameters } from "../DirectoryAbstractService/SecurityParameters.ta.mjs"; import { ServiceControls } from "../DirectoryAbstractService/ServiceControls.ta.mjs"; import { Exclusions } from "../DistributedOperations/Exclusions.ta.mjs"; import { OperationProgress } from "../DistributedOperations/OperationProgress.ta.mjs"; import { ReferenceType, _enum_for_ReferenceType } from "../DistributedOperations/ReferenceType.ta.mjs"; import { DistinguishedName } from "../InformationFramework/DistinguishedName.ta.mjs"; import { LDAPMessage } from "@wildboar/ldap"; import { CommonArgumentsSeq } from "../DirectoryAbstractService/CommonArgumentsSeq.ta.mjs"; /** * @summary LinkedArgumentData * @description * * ### ASN.1 Definition: * * ```asn1 * LinkedArgumentData ::= SEQUENCE { * object DistinguishedName, * ldapMessage LDAPMessage, * linkId LinkId, * returnToClient BOOLEAN DEFAULT FALSE, * ..., * ..., * COMPONENTS OF CommonArgumentsSeq } * ``` * */ export declare class LinkedArgumentData implements CommonArgumentsSeq { /** * @summary `object`. * @public * @readonly */ readonly object: DistinguishedName; /** * @summary `ldapMessage`. * @public * @readonly */ readonly ldapMessage: LDAPMessage; /** * @summary `linkId`. * @public * @readonly */ readonly linkId: LinkId; /** * @summary `returnToClient`. * @public * @readonly */ readonly returnToClient?: OPTIONAL; /** * @summary Extensions that are not recognized. * @public * @readonly */ readonly _unrecognizedExtensionsList: _Element[]; /** * @summary `serviceControls`. * @public * @readonly */ readonly serviceControls?: OPTIONAL; /** * @summary `securityParameters`. * @public * @readonly */ readonly securityParameters?: OPTIONAL; /** * @summary `requestor`. * @public * @readonly */ readonly requestor?: OPTIONAL; /** * @summary `operationProgress`. * @public * @readonly */ readonly operationProgress?: OPTIONAL; /** * @summary `aliasedRDNs`. * @public * @readonly */ readonly aliasedRDNs?: OPTIONAL; /** * @summary `criticalExtensions`. * @public * @readonly */ readonly criticalExtensions?: OPTIONAL; /** * @summary `referenceType`. * @public * @readonly */ readonly referenceType?: OPTIONAL; /** * @summary `entryOnly`. * @public * @readonly */ readonly entryOnly?: OPTIONAL; /** * @summary `exclusions`. * @public * @readonly */ readonly exclusions?: OPTIONAL; /** * @summary `nameResolveOnMaster`. * @public * @readonly */ readonly nameResolveOnMaster?: OPTIONAL; /** * @summary `operationContexts`. * @public * @readonly */ readonly operationContexts?: OPTIONAL; /** * @summary `familyGrouping`. * @public * @readonly */ readonly familyGrouping?: OPTIONAL; constructor( /** * @summary `object`. * @public * @readonly */ object: DistinguishedName, /** * @summary `ldapMessage`. * @public * @readonly */ ldapMessage: LDAPMessage, /** * @summary `linkId`. * @public * @readonly */ linkId: LinkId, /** * @summary `returnToClient`. * @public * @readonly */ returnToClient?: OPTIONAL, /** * @summary Extensions that are not recognized. * @public * @readonly */ _unrecognizedExtensionsList?: _Element[], /** * @summary `serviceControls`. * @public * @readonly */ serviceControls?: OPTIONAL, /** * @summary `securityParameters`. * @public * @readonly */ securityParameters?: OPTIONAL, /** * @summary `requestor`. * @public * @readonly */ requestor?: OPTIONAL, /** * @summary `operationProgress`. * @public * @readonly */ operationProgress?: OPTIONAL, /** * @summary `aliasedRDNs`. * @public * @readonly */ aliasedRDNs?: OPTIONAL, /** * @summary `criticalExtensions`. * @public * @readonly */ criticalExtensions?: OPTIONAL, /** * @summary `referenceType`. * @public * @readonly */ referenceType?: OPTIONAL, /** * @summary `entryOnly`. * @public * @readonly */ entryOnly?: OPTIONAL, /** * @summary `exclusions`. * @public * @readonly */ exclusions?: OPTIONAL, /** * @summary `nameResolveOnMaster`. * @public * @readonly */ nameResolveOnMaster?: OPTIONAL, /** * @summary `operationContexts`. * @public * @readonly */ operationContexts?: OPTIONAL, /** * @summary `familyGrouping`. * @public * @readonly */ familyGrouping?: OPTIONAL); /** * @summary Restructures an object into a LinkedArgumentData * @description * * This takes an `object` and converts it to a `LinkedArgumentData`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `LinkedArgumentData`. * @returns {LinkedArgumentData} */ static _from_object(_o: { [_K in keyof LinkedArgumentData]: LinkedArgumentData[_K]; }): LinkedArgumentData; /** * @summary Getter that returns the default value for `returnToClient`. * @public * @static * @method */ static get _default_value_for_returnToClient(): BOOLEAN; /** * @summary Getter that returns the default value for `serviceControls`. * @public * @static * @method */ static get _default_value_for_serviceControls(): ServiceControls; /** * @summary Getter that returns the default value for `operationProgress`. * @public * @static * @method */ static get _default_value_for_operationProgress(): OperationProgress; /** * @summary Getter that returns the default value for `entryOnly`. * @public * @static * @method */ static get _default_value_for_entryOnly(): BOOLEAN; /** * @summary Getter that returns the default value for `nameResolveOnMaster`. * @public * @static * @method */ static get _default_value_for_nameResolveOnMaster(): BOOLEAN; /** * @summary Getter that returns the default value for `familyGrouping`. * @public * @static * @method */ static get _default_value_for_familyGrouping(): FamilyGrouping; /** * @summary The enum used as the type of the component `referenceType` * @public * @static */ static _enum_for_referenceType: typeof _enum_for_ReferenceType; /** * @summary The enum used as the type of the component `familyGrouping` * @public * @static */ static _enum_for_familyGrouping: typeof _enum_for_FamilyGrouping; } /** * @summary The Leading Root Component Types of LinkedArgumentData * @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_LinkedArgumentData: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of LinkedArgumentData * @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_LinkedArgumentData: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of LinkedArgumentData * @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_LinkedArgumentData: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) LinkedArgumentData * @function * @param {_Element} el The element being decoded. * @returns {LinkedArgumentData} The decoded data structure. */ export declare function _decode_LinkedArgumentData(el: _Element): LinkedArgumentData; /** * @summary Encodes a(n) LinkedArgumentData 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 LinkedArgumentData, encoded as an ASN.1 Element. */ export declare function _encode_LinkedArgumentData(value: LinkedArgumentData, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=LinkedArgumentData.ta.d.mts.map