Class: IControl::Management::KeyCertificate::X509Data
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::Management::KeyCertificate::X509Data
- Defined in:
- lib/icontrol/management/key_certificate.rb,
lib/icontrol/management/key_certificate.rb
Overview
A struct that describes the information of the x509 data that our key/certificate management library will read from or include in a certificate.
Instance Attribute Summary (collapse)
-
- (String) common_name
The common name of the certificate, normally a domain name.
-
- (String) country_name
The country name.
-
- (String) division_name
The department or division name.
-
- (String) locality_name
The locality or city name.
-
- (String) organization_name
The organization or company name.
-
- (String) state_name
The state name.
Method Summary
Methods inherited from Base::Struct
from_soap, icontrol_attribute, #to_soap
Instance Attribute Details
- (String) common_name
The common name of the certificate, normally a domain name.
731 732 733 |
# File 'lib/icontrol/management/key_certificate.rb', line 731 def common_name @common_name end |
- (String) country_name
The country name.
731 732 733 |
# File 'lib/icontrol/management/key_certificate.rb', line 731 def country_name @country_name end |
- (String) division_name
The department or division name.
731 732 733 |
# File 'lib/icontrol/management/key_certificate.rb', line 731 def division_name @division_name end |
- (String) locality_name
The locality or city name.
731 732 733 |
# File 'lib/icontrol/management/key_certificate.rb', line 731 def locality_name @locality_name end |
- (String) organization_name
The organization or company name.
731 732 733 |
# File 'lib/icontrol/management/key_certificate.rb', line 731 def organization_name @organization_name end |
- (String) state_name
The state name.
731 732 733 |
# File 'lib/icontrol/management/key_certificate.rb', line 731 def state_name @state_name end |