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 { 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"; /** * @summary CommonArguments * @description * * ### ASN.1 Definition: * * ```asn1 * CommonArguments ::= SET { * serviceControls [30] ServiceControls DEFAULT {}, * securityParameters [29] SecurityParameters OPTIONAL, * requestor [28] DistinguishedName OPTIONAL, * operationProgress [27] OperationProgress * DEFAULT {nameResolutionPhase notStarted}, * aliasedRDNs [26] INTEGER OPTIONAL, * criticalExtensions [25] BIT STRING OPTIONAL, * referenceType [24] ReferenceType OPTIONAL, * entryOnly [23] BOOLEAN DEFAULT TRUE, * exclusions [22] Exclusions OPTIONAL, * nameResolveOnMaster [21] BOOLEAN DEFAULT FALSE, * operationContexts [20] ContextSelection OPTIONAL, * familyGrouping [19] FamilyGrouping DEFAULT entryOnly, * ... } * ``` * */ export declare class CommonArguments { /** * @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; /** * @summary Extensions that are not recognized. * @public * @readonly */ readonly _unrecognizedExtensionsList: _Element[]; constructor( /** * @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 Extensions that are not recognized. * @public * @readonly */ _unrecognizedExtensionsList?: _Element[]); /** * @summary Restructures an object into a CommonArguments * @description * * This takes an `object` and converts it to a `CommonArguments`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `CommonArguments`. * @returns {CommonArguments} */ static _from_object(_o: { [_K in keyof CommonArguments]: CommonArguments[_K]; }): CommonArguments; /** * @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 CommonArguments * @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_CommonArguments: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of CommonArguments * @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_CommonArguments: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of CommonArguments * @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_CommonArguments: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) CommonArguments * @function * @param {_Element} el The element being decoded. * @returns {CommonArguments} The decoded data structure. */ export declare function _decode_CommonArguments(el: _Element): CommonArguments; /** * @summary Encodes a(n) CommonArguments 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 CommonArguments, encoded as an ASN.1 Element. */ export declare function _encode_CommonArguments(value: CommonArguments, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=CommonArguments.ta.d.mts.map