Show / Hide Table of Contents

Class NameConstraint

A constraint that specifies permitted and excluded namespaces for the hierarchical name forms in certificates that any CA in the certificate chain issues. You can define name constraints on a directory name, DNS address, or IP address. If you have a name constraint, you must define at least one permitted namespace or one excluded namespace.

Inheritance
object
NameConstraint
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CertificatesmanagementService.Models
Assembly: OCI.DotNetSDK.Certificatesmanagement.dll
Syntax
public class NameConstraint

Properties

ExcludedSubtree

Declaration
[JsonProperty(PropertyName = "excludedSubtree")]
public List<NameConstraintSubtreeNode> ExcludedSubtree { get; set; }
Property Value
Type Description
List<NameConstraintSubtreeNode>

A list that contains excluded (or prohibited) namespaces. If you have a name constraint with no permitted namespaces, you must specify at least one excluded namespace.

PermittedSubtree

Declaration
[JsonProperty(PropertyName = "permittedSubtree")]
public List<NameConstraintSubtreeNode> PermittedSubtree { get; set; }
Property Value
Type Description
List<NameConstraintSubtreeNode>

A list that contains permitted namespaces. If you have a name constraint with no excluded namespaces, you must specify at least one permitted namespace.

In this article
Back to top