public sealed class X509Parameters.Types.NameConstraints : IMessage<X509Parameters.Types.NameConstraints>, IEquatable<X509Parameters.Types.NameConstraints>, IDeepCloneable<X509Parameters.Types.NameConstraints>, IBufferMessage, IMessage
Reference documentation and code samples for the Certificate Authority v1 API class X509Parameters.Types.NameConstraints.
Describes the X.509 name constraints extension, per https://tools.ietf.org/html/rfc5280#section-4.2.1.10
Implements
IMessageX509ParametersTypesNameConstraints, IEquatableX509ParametersTypesNameConstraints, IDeepCloneableX509ParametersTypesNameConstraints, IBufferMessage, IMessageNamespace
Google.Cloud.Security.PrivateCA.V1Assembly
Google.Cloud.Security.PrivateCA.V1.dll
Constructors
NameConstraints()
public NameConstraints()
NameConstraints(NameConstraints)
public NameConstraints(X509Parameters.Types.NameConstraints other)
Parameter | |
---|---|
Name | Description |
other |
X509ParametersTypesNameConstraints |
Properties
Critical
public bool Critical { get; set; }
Indicates whether or not the name constraints are marked critical.
Property Value | |
---|---|
Type | Description |
bool |
ExcludedDnsNames
public RepeatedField<string> ExcludedDnsNames { get; }
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.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
ExcludedEmailAddresses
public RepeatedField<string> ExcludedEmailAddresses { get; }
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.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
ExcludedIpRanges
public RepeatedField<string> ExcludedIpRanges { get; }
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.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
ExcludedUris
public RepeatedField<string> ExcludedUris { get; }
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
)
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
PermittedDnsNames
public RepeatedField<string> PermittedDnsNames { get; }
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.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
PermittedEmailAddresses
public RepeatedField<string> PermittedEmailAddresses { get; }
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.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
PermittedIpRanges
public RepeatedField<string> PermittedIpRanges { get; }
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.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
PermittedUris
public RepeatedField<string> PermittedUris { get; }
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
)
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |