fix(ingest): update generated files (#3292)

This commit is contained in:
Gabe Lyons 2021-09-23 12:02:01 -07:00 committed by GitHub
parent 106be099f3
commit 507d1e7658
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 14 deletions

View File

@ -5703,8 +5703,8 @@
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
},
"type": "string",
"name": "dataset",
"doc": "Dataset associated with the schema field"
"name": "parent",
"doc": "Parent associated with the schema field"
},
{
"Searchable": {

View File

@ -5107,12 +5107,12 @@ class SchemaFieldKeyClass(DictWrapper):
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
def __init__(self,
dataset: str,
parent: str,
fieldPath: str,
):
super().__init__()
self.dataset = dataset
self.parent = parent
self.fieldPath = fieldPath
@classmethod
@ -5123,19 +5123,19 @@ class SchemaFieldKeyClass(DictWrapper):
return self
def _restore_defaults(self) -> None:
self.dataset = str()
self.parent = str()
self.fieldPath = str()
@property
def dataset(self) -> str:
"""Getter: Dataset associated with the schema field"""
return self._inner_dict.get('dataset') # type: ignore
def parent(self) -> str:
"""Getter: Parent associated with the schema field"""
return self._inner_dict.get('parent') # type: ignore
@dataset.setter
def dataset(self, value: str) -> None:
"""Setter: Dataset associated with the schema field"""
self._inner_dict['dataset'] = value
@parent.setter
def parent(self, value: str) -> None:
"""Setter: Parent associated with the schema field"""
self._inner_dict['parent'] = value
@property

View File

@ -5632,9 +5632,9 @@
"doc": "Key for a SchemaField",
"fields": [
{
"name": "dataset",
"name": "parent",
"type": "string",
"doc": "Dataset associated with the schema field",
"doc": "Parent associated with the schema field",
"Searchable": {
"fieldType": "URN"
},