Class ValidatePatternDetails
Validate pattern using the expression and file list.
Inherited Members
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.
|
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.
|
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. |