CertificateCertificateDescriptionX509DescriptionNameConstraint

data class CertificateCertificateDescriptionX509DescriptionNameConstraint(val critical: Boolean? = null, val excludedDnsNames: List<String>? = null, val excludedEmailAddresses: List<String>? = null, val excludedIpRanges: List<String>? = null, val excludedUris: List<String>? = null, val permittedDnsNames: List<String>? = null, val permittedEmailAddresses: List<String>? = null, val permittedIpRanges: List<String>? = null, val permittedUris: List<String>? = null)

Constructors

constructor(critical: Boolean? = null, excludedDnsNames: List<String>? = null, excludedEmailAddresses: List<String>? = null, excludedIpRanges: List<String>? = null, excludedUris: List<String>? = null, permittedDnsNames: List<String>? = null, permittedEmailAddresses: List<String>? = null, permittedIpRanges: List<String>? = null, permittedUris: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val critical: Boolean? = null

Indicates whether or not the name constraints are marked critical.

Link copied to clipboard

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 satisfy example.com while example1.com does not.

Link copied to clipboard

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.

Link copied to clipboard

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.

Link copied to clipboard
val excludedUris: List<String>? = null

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)

Link copied to clipboard

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 satisfy example.com while example1.com does not.

Link copied to clipboard

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.

Link copied to clipboard

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.

Link copied to clipboard
val permittedUris: List<String>? = null

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)