Class: Google::Apis::PrivatecaV1::X509Parameters
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1::X509Parameters
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/privateca_v1/classes.rb,
lib/google/apis/privateca_v1/representations.rb,
lib/google/apis/privateca_v1/representations.rb
Overview
An X509Parameters is used to describe certain fields of an X.509 certificate, such as the key usage fields, fields specific to CA certificates, certificate policy extensions and custom extensions.
Instance Attribute Summary collapse
-
#additional_extensions ⇒ Array<Google::Apis::PrivatecaV1::X509Extension>
Optional.
-
#aia_ocsp_servers ⇒ Array<String>
Optional.
-
#ca_options ⇒ Google::Apis::PrivatecaV1::CaOptions
Describes the X.509 basic constraints extension, per RFC 5280 section 4.2.1.9 Corresponds to the JSON property
caOptions. -
#key_usage ⇒ Google::Apis::PrivatecaV1::KeyUsage
A KeyUsage describes key usage values that may appear in an X.509 certificate.
-
#name_constraints ⇒ Google::Apis::PrivatecaV1::NameConstraints
Describes the X.509 name constraints extension, per https://tools.ietf.org/ html/rfc5280#section-4.2.1.10 Corresponds to the JSON property
nameConstraints. -
#policy_ids ⇒ Array<Google::Apis::PrivatecaV1::ObjectIdProp>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ X509Parameters
constructor
A new instance of X509Parameters.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ X509Parameters
Returns a new instance of X509Parameters.
2992 2993 2994 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2992 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_extensions ⇒ Array<Google::Apis::PrivatecaV1::X509Extension>
Optional. Describes custom X.509 extensions.
Corresponds to the JSON property additionalExtensions
2960 2961 2962 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2960 def additional_extensions @additional_extensions end |
#aia_ocsp_servers ⇒ Array<String>
Optional. Describes Online Certificate Status Protocol (OCSP) endpoint
addresses that appear in the "Authority Information Access" extension in the
certificate.
Corresponds to the JSON property aiaOcspServers
2967 2968 2969 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2967 def aia_ocsp_servers @aia_ocsp_servers end |
#ca_options ⇒ Google::Apis::PrivatecaV1::CaOptions
Describes the X.509 basic constraints extension, per RFC 5280 section 4.2.1.9
Corresponds to the JSON property caOptions
2973 2974 2975 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2973 def @ca_options end |
#key_usage ⇒ Google::Apis::PrivatecaV1::KeyUsage
A KeyUsage describes key usage values that may appear in an X.509 certificate.
Corresponds to the JSON property keyUsage
2978 2979 2980 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2978 def key_usage @key_usage end |
#name_constraints ⇒ Google::Apis::PrivatecaV1::NameConstraints
Describes the X.509 name constraints extension, per https://tools.ietf.org/
html/rfc5280#section-4.2.1.10
Corresponds to the JSON property nameConstraints
2984 2985 2986 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2984 def name_constraints @name_constraints end |
#policy_ids ⇒ Array<Google::Apis::PrivatecaV1::ObjectIdProp>
Optional. Describes the X.509 certificate policy object identifiers, per https:
//tools.ietf.org/html/rfc5280#section-4.2.1.4.
Corresponds to the JSON property policyIds
2990 2991 2992 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2990 def policy_ids @policy_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2997 2998 2999 3000 3001 3002 3003 3004 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2997 def update!(**args) @additional_extensions = args[:additional_extensions] if args.key?(:additional_extensions) @aia_ocsp_servers = args[:aia_ocsp_servers] if args.key?(:aia_ocsp_servers) @ca_options = args[:ca_options] if args.key?(:ca_options) @key_usage = args[:key_usage] if args.key?(:key_usage) @name_constraints = args[:name_constraints] if args.key?(:name_constraints) @policy_ids = args[:policy_ids] if args.key?(:policy_ids) end |