import { ASN1Element as _Element, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { MasterAndShadowAccessPoints } from "../DistributedOperations/MasterAndShadowAccessPoints.ta.mjs"; import { SubentryInfo } from "../HierarchicalOperationalBindings/SubentryInfo.ta.mjs"; import { Attribute } from "../InformationFramework/Attribute.ta.mjs"; import { RelativeDistinguishedName } from "../InformationFramework/RelativeDistinguishedName.ta.mjs"; /** * @summary Vertex * @description * * ### ASN.1 Definition: * * ```asn1 * Vertex ::= SEQUENCE { * rdn [0] RelativeDistinguishedName, * admPointInfo [1] SET SIZE (1..MAX) OF Attribute{{SupportedAttributes}} OPTIONAL, * subentries [2] SET SIZE (1..MAX) OF SubentryInfo OPTIONAL, * accessPoints [3] MasterAndShadowAccessPoints OPTIONAL, * ... } * ``` * */ export declare class Vertex { /** * @summary `rdn`. * @public * @readonly */ readonly rdn: RelativeDistinguishedName; /** * @summary `admPointInfo`. * @public * @readonly */ readonly admPointInfo?: OPTIONAL; /** * @summary `subentries`. * @public * @readonly */ readonly subentries?: OPTIONAL; /** * @summary `accessPoints`. * @public * @readonly */ readonly accessPoints?: OPTIONAL; /** * @summary Extensions that are not recognized. * @public * @readonly */ readonly _unrecognizedExtensionsList: _Element[]; constructor( /** * @summary `rdn`. * @public * @readonly */ rdn: RelativeDistinguishedName, /** * @summary `admPointInfo`. * @public * @readonly */ admPointInfo?: OPTIONAL, /** * @summary `subentries`. * @public * @readonly */ subentries?: OPTIONAL, /** * @summary `accessPoints`. * @public * @readonly */ accessPoints?: OPTIONAL, /** * @summary Extensions that are not recognized. * @public * @readonly */ _unrecognizedExtensionsList?: _Element[]); /** * @summary Restructures an object into a Vertex * @description * * This takes an `object` and converts it to a `Vertex`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `Vertex`. * @returns {Vertex} */ static _from_object(_o: { [_K in keyof Vertex]: Vertex[_K]; }): Vertex; } /** * @summary The Leading Root Component Types of Vertex * @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_Vertex: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of Vertex * @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_Vertex: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of Vertex * @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_Vertex: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) Vertex * @function * @param {_Element} el The element being decoded. * @returns {Vertex} The decoded data structure. */ export declare function _decode_Vertex(el: _Element): Vertex; /** * @summary Encodes a(n) Vertex 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 Vertex, encoded as an ASN.1 Element. */ export declare function _encode_Vertex(value: Vertex, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=Vertex.ta.d.mts.map