Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.15 KB

Name.md

File metadata and controls

28 lines (22 loc) · 1.15 KB

Akeyless::Name

Properties

Name Type Description Notes
country Array<String> [optional]
extra_names Array<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 Array<String> [optional]
names Array<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]
serial_number String [optional]
street_address Array<String> [optional]

Example

require 'akeyless'

instance = Akeyless::Name.new(
  country: null,
  extra_names: null,
  locality: null,
  names: null,
  serial_number: null,
  street_address: null
)