Skip to content

Files

Latest commit

3056b8f · Feb 20, 2025

History

History
16 lines (12 loc) · 1.37 KB

Name.md

File metadata and controls

16 lines (12 loc) · 1.37 KB

akeyless.Model.Name

Name represents an X.509 distinguished name. This only includes the common elements of a DN. Note that Name is only an approximation of the X.509 structure. If an accurate representation is needed, asn1.Unmarshal the raw subject or issuer as an [RDNSequence].

Properties

Name Type Description Notes
Country List<string> [optional]
ExtraNames List<AttributeTypeAndValue> ExtraNames contains attributes to be copied, raw, into any marshaled distinguished names. Values override any attributes with the same OID. The ExtraNames field is not populated when parsing, see Names. [optional]
Locality List<string> [optional]
Names List<AttributeTypeAndValue> Names contains all parsed attributes. When parsing distinguished names, this can be used to extract non-standard attributes that are not parsed by this package. When marshaling to RDNSequences, the Names field is ignored, see ExtraNames. [optional]
SerialNumber string [optional]
StreetAddress List<string> [optional]

[Back to Model list] [Back to API list] [Back to README]