View Source GoogleApi.PrivateCA.V1.Model.NameConstraints (google_api_private_ca v0.15.2)
Describes the X.509 name constraints extension, per https://tools.ietf.org/html/rfc5280#section-4.2.1.10
Attributes
-
critical
(type:boolean()
, default:nil
) - Indicates whether or not the name constraints are marked critical. -
excludedDnsNames
(type:list(String.t)
, default:nil
) - Contains excluded DNS names. Any DNS name that can be constructed by simply adding zero or more labels to the left-hand side of the name satisfies the name constraint. For example,example.com
,www.example.com
,www.sub.example.com
would satisfyexample.com
whileexample1.com
does not. -
excludedEmailAddresses
(type:list(String.t)
, default:nil
) - Contains the excluded email addresses. The value can be a particular email address, a hostname to indicate all email addresses on that host or a domain with a leading period (e.g..example.com
) to indicate all email addresses in that domain. -
excludedIpRanges
(type:list(String.t)
, default:nil
) - Contains the excluded IP ranges. For IPv4 addresses, the ranges are expressed using CIDR notation as specified in RFC 4632. For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 addresses. -
excludedUris
(type:list(String.t)
, default:nil
) - Contains the excluded URIs that apply to the host part of the name. The value can be a hostname or a domain with a leading period (like.example.com
) -
permittedDnsNames
(type:list(String.t)
, default:nil
) - Contains permitted DNS names. Any DNS name that can be constructed by simply adding zero or more labels to the left-hand side of the name satisfies the name constraint. For example,example.com
,www.example.com
,www.sub.example.com
would satisfyexample.com
whileexample1.com
does not. -
permittedEmailAddresses
(type:list(String.t)
, default:nil
) - Contains the permitted email addresses. The value can be a particular email address, a hostname to indicate all email addresses on that host or a domain with a leading period (e.g..example.com
) to indicate all email addresses in that domain. -
permittedIpRanges
(type:list(String.t)
, default:nil
) - Contains the permitted IP ranges. For IPv4 addresses, the ranges are expressed using CIDR notation as specified in RFC 4632. For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 addresses. -
permittedUris
(type:list(String.t)
, default:nil
) - Contains the permitted URIs that apply to the host part of the name. The value can be a hostname or a domain with a leading period (like.example.com
)
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.PrivateCA.V1.Model.NameConstraints{ critical: boolean() | nil, excludedDnsNames: [String.t()] | nil, excludedEmailAddresses: [String.t()] | nil, excludedIpRanges: [String.t()] | nil, excludedUris: [String.t()] | nil, permittedDnsNames: [String.t()] | nil, permittedEmailAddresses: [String.t()] | nil, permittedIpRanges: [String.t()] | nil, permittedUris: [String.t()] | nil }
Functions
Unwrap a decoded JSON object into its complex fields.