Class NameConstraints
Describes the X.509 name constraints extension, per https://tools.ietf.org/html/rfc5280#section-4.2.1.10
Implements
Inherited Members
Namespace: Google.Apis.CertificateAuthorityService.v1.Data
Assembly: Google.Apis.CertificateAuthorityService.v1.dll
Syntax
public class NameConstraints : IDirectResponseSchema
Properties
Critical
Indicates whether or not the name constraints are marked critical.
Declaration
[JsonProperty("critical")]
public virtual bool? Critical { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ExcludedDnsNames
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.
Declaration
[JsonProperty("excludedDnsNames")]
public virtual IList<string> ExcludedDnsNames { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ExcludedEmailAddresses
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.
Declaration
[JsonProperty("excludedEmailAddresses")]
public virtual IList<string> ExcludedEmailAddresses { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ExcludedIpRanges
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.
Declaration
[JsonProperty("excludedIpRanges")]
public virtual IList<string> ExcludedIpRanges { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ExcludedUris
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
)
Declaration
[JsonProperty("excludedUris")]
public virtual IList<string> ExcludedUris { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
PermittedDnsNames
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.
Declaration
[JsonProperty("permittedDnsNames")]
public virtual IList<string> PermittedDnsNames { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
PermittedEmailAddresses
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.
Declaration
[JsonProperty("permittedEmailAddresses")]
public virtual IList<string> PermittedEmailAddresses { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
PermittedIpRanges
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.
Declaration
[JsonProperty("permittedIpRanges")]
public virtual IList<string> PermittedIpRanges { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
PermittedUris
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
)
Declaration
[JsonProperty("permittedUris")]
public virtual IList<string> PermittedUris { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |