Show / Hide Table of Contents

Class ValidatePatternDetails

Validate pattern using the expression and file list.

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

Properties

CheckFailureLimit

Declaration
[JsonProperty(PropertyName = "checkFailureLimit")]
public int? CheckFailureLimit { get; set; }
Property Value
Type Description
int?

The maximum number of UNMATCHED files, in checkFilePathList, above which the check fails. Optional, if checkFilePathList is provided.
If provided with the request, this overrides the value which already exists as part of the pattern, if any.

CheckFilePathList

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

List of file paths against which the pattern can be tried, as a check. This documents, for reference purposes, some example objects a pattern is meant to work with.
If provided with the request,this overrides the list which already exists as part of the pattern, if any.

Expression

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

Input string which drives the selection process, allowing for fine-grained control using qualifiers. Refer to the user documentation for details of the format and examples. A pattern cannot include both a prefix and an expression.

FilePathPrefix

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

Input string which drives the selection process. Refer to the user documentation for details of the format and examples. A pattern cannot include both a prefix and an expression.

In this article
Back to top