Show / Hide Table of Contents

Class NameConstraintSubtreeNode

An object that imposes restrictions on specific name constraint types based on the name constraint value.

Inheritance
object
NameConstraintSubtreeNode
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 NameConstraintSubtreeNode

Properties

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NameConstraintType? Type { get; set; }
Property Value
Type Description
NameConstraintType?

The type of name constraint.

Remarks

Required

Value

Declaration
[Required(ErrorMessage = "Value is required.")]
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type Description
string

Name restrictions for the corresponding type of name constraint.

Remarks

Required

In this article
Back to top