Show / Hide Table of Contents

Class ValidatePatternResult

Details regarding the validation of a pattern resource.

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

Properties

DerivedLogicalEntities

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

Collection of logical entities derived from the pattern, as applied to a list of file paths.

Expression

Declaration
[JsonProperty(PropertyName = "expression")]
public string Expression { get; set; }
Property Value
Type Description
string

The expression used in the pattern validation.

FilePathPrefix

Declaration
[JsonProperty(PropertyName = "filePathPrefix")]
public string FilePathPrefix { get; set; }
Property Value
Type Description
string

The prefix used in the pattern validation.

Message

Declaration
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
Type Description
string

The message from the pattern validation.

Status

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

The status returned from the pattern validation.

Remarks

Required

In this article
Back to top