0.4.8 ingestion - 0.6.0 branch (#1512)

* Published 0.4.8 package

* setup.py version change
This commit is contained in:
Ayush Shah 2021-12-02 10:01:45 +05:30 committed by GitHub
parent 3e1e8cb534
commit 8e25b4fd3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
103 changed files with 272 additions and 143 deletions

View File

@ -59,7 +59,6 @@ base_requirements = {
"PyYAML",
}
pii_requirements = {
"en_core_web_sm@https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.0.0/en_core_web_sm-3.0.0.tar.gz#egg=en_core_web",
"spacy==3.0.5",
}
@ -78,7 +77,7 @@ base_plugins = {
}
plugins: Dict[str, Set[str]] = {
"athena": {"PyAthena[SQLAlchemy]"},
"bigquery": {"openmetadata-sqlalchemy-bigquery==0.2.0"},
"bigquery": {"openmetadata-sqlalchemy-bigquery==0.2.2"},
"bigquery-usage": {"google-cloud-logging", "cachetools"},
"docker": {"docker==5.0.3"},
"dbt": {},
@ -126,7 +125,7 @@ plugins: Dict[str, Set[str]] = {
build_options = {"includes": ["_cffi_backend"]}
setup(
name="openmetadata-ingestion",
version="0.4.4",
version="0.4.8",
url="https://open-metadata.org/",
author="OpenMetadata Committers",
license="Apache License 2.0",

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: data/tags/personalDataTags.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: data/tags/piiTags.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: data/tags/tierTags.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: data/tags/userTags.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/catalogVersion.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createChart.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createDashboard.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createDatabase.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -0,0 +1,36 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createDbtModel.json
# timestamp: 2021-12-02T02:28:42+00:00
from __future__ import annotations
from typing import List, Optional
from pydantic import BaseModel, Field
from ...entity.data import dbtmodel, table
from ...type import basic, entityReference, tagLabel
class CreateDbtModelEntityRequest(BaseModel):
name: dbtmodel.DbtModelName = Field(
...,
description='Name that identifies the this entity instance uniquely. Same as id if when name is not unique',
)
description: Optional[str] = Field(
None, description='Description of DBTModel instance.'
)
dbtNodeType: Optional[dbtmodel.DbtNodeType] = None
columns: List[table.Column] = Field(..., description='Schema of the Model')
owner: Optional[entityReference.EntityReference] = Field(
None, description='Owner of this entity'
)
database: Optional[basic.Uuid] = Field(
None, description='Database corresponding to this table'
)
tags: Optional[List[tagLabel.TagLabel]] = Field(
None, description='Tags for this model'
)
viewDefinition: Optional[basic.SqlQuery] = Field(
None, description='View Definition in SQL.'
)

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createLocation.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createMlModel.json
# timestamp: 2021-11-20T15:09:34+00:00
# filename: schema/api/data/createMLModel.json
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createModel.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createPipeline.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createTable.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/data/createTopic.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/feed/createThread.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/lineage/addLineage.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/operations/workflows/createIngestion.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/policies/createPolicy.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/createDashboardService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/createDatabaseService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/createMessagingService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/createPipelineService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/createStorageService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/updateDashboardService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/updateDatabaseService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/updateMessagingService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/updatePipelineService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/services/updateStorageService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/setOwner.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/tags/createTag.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/tags/createTagCategory.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/teams/createTeam.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/api/teams/createUser.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/bots.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/chart.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/dashboard.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/database.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -0,0 +1,90 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/dbtmodel.json
# timestamp: 2021-12-02T02:28:42+00:00
from __future__ import annotations
from enum import Enum
from typing import List, Optional
from pydantic import BaseModel, Extra, Field, constr
from ...type import basic, entityHistory, entityReference, tagLabel
from . import table
class DbtNodeType(Enum):
Seed = 'Seed'
Model = 'Model'
class DbtCatalogType(Enum):
BaseTable = 'BaseTable'
class DbtMaterializationType(Enum):
Table = 'Table'
Seed = 'Seed'
class DbtModelName(BaseModel):
__root__: constr(regex=r'^[^.]*$', min_length=1, max_length=128) = Field(
..., description='Local name (not fully qualified name) of a table.'
)
class FullyQualifiedColumnName(BaseModel):
__root__: constr(min_length=1, max_length=256) = Field(
...,
description='Fully qualified name of the column that includes `serviceName.databaseName.tableName.columnName[.nestedColumnName]`. When columnName is null for dataType struct fields, `field_#` where `#` is field index is used. For map dataType, for key the field name `key` is used and for the value field `value` is used.',
)
class DbtModel(BaseModel):
class Config:
extra = Extra.forbid
id: basic.Uuid = Field(..., description='Unique identifier of this model instance.')
name: DbtModelName = Field(
..., description='Name of a model. Expected to be unique within a database.'
)
displayName: Optional[str] = Field(
None,
description='Display Name that identifies this model. It could be title or label from the source services.',
)
fullyQualifiedName: Optional[str] = Field(
None,
description='Fully qualified name of a model in the form `serviceName.databaseName.dbtModelName`.',
)
description: Optional[str] = Field(None, description='Description of a DBT Model.')
version: Optional[entityHistory.EntityVersion] = Field(
None, description='Metadata version of the entity.'
)
updatedAt: Optional[basic.DateTime] = Field(
None,
description='Last update time corresponding to the new version of the entity.',
)
updatedBy: Optional[str] = Field(None, description='User who made the update.')
href: Optional[basic.Href] = Field(None, description='Link to this table resource.')
dbtNodeType: Optional[DbtNodeType] = None
dbtCatalogType: Optional[DbtCatalogType] = None
dbtMaterializationType: Optional[DbtMaterializationType] = None
columns: List[table.Column] = Field(..., description='Columns in this DBT Model.')
owner: Optional[entityReference.EntityReference] = Field(
None, description='Owner of this DBT Model.'
)
database: Optional[entityReference.EntityReference] = Field(
None, description='Reference to Database that uses this DBT Model.'
)
viewDefinition: Optional[basic.SqlQuery] = Field(
None, description='View Definition in SQL.'
)
tags: Optional[List[tagLabel.TagLabel]] = Field(
None, description='Tags for this DBT.'
)
followers: Optional[entityReference.EntityReferenceList] = Field(
None, description='Followers of this table.'
)
changeDescription: Optional[entityHistory.ChangeDescription] = Field(
None, description='Change that lead to this version of the entity.'
)

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/location.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/metrics.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/mlmodel.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/model.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/pipeline.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/report.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/table.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/data/topic.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/feed/thread.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/policies/accessControl/rule.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/policies/accessControl/tagBased.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/policies/filters.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/policies/lifecycle/deleteAction.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/policies/lifecycle/moveAction.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/policies/lifecycle/rule.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/policies/policy.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/services/dashboardService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/services/databaseService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/services/messagingService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/services/pipelineService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/services/storageService.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/tags/tagCategory.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/teams/team.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/entity/teams/user.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/operations/workflows/ingestion.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,3 +1,3 @@
# generated by datamodel-codegen:
# filename: json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/auditLog.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/basic.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/changeEvent.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/collectionDescriptor.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/dailyCount.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/entityHistory.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/entityLineage.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/entityReference.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/entityUsage.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/jdbcConnection.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/paging.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/profile.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/schedule.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

View File

@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: schema/type/storage.json
# timestamp: 2021-11-20T15:09:34+00:00
# timestamp: 2021-12-02T02:38:07+00:00
from __future__ import annotations

Some files were not shown because too many files have changed in this diff Show More