Show / Hide Table of Contents

Class JobDefinitionScope

Defines the rules or criteria based on which the scope for job definition is circumscribed.

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

Properties

EntityName

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

Name of the entity for this metadata harvest.

EntityNameFilter

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

Filter rules with regular expression to specify entity names for this metadata harvest.

FolderName

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

Name of the folder or schema for this metadata harvest.

FolderNameFilter

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

Filter rules with regular expression to specify folder names for this metadata harvest.

IsSampleDataExtracted

Declaration
[JsonProperty(PropertyName = "isSampleDataExtracted")]
public bool? IsSampleDataExtracted { get; set; }
Property Value
Type Description
bool?

Specify if sample data to be extracted as part of this harvest.

SampleDataSizeInMBs

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

Specify the sample data size in MB, specified as number of rows, for this metadata harvest.

In this article
Back to top