mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-27 19:39:52 +00:00
fix(ingest): update generated files (#3292)
This commit is contained in:
parent
106be099f3
commit
507d1e7658
@ -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": {
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user