acryl-datahub 1.0.0rc18__py3-none-any.whl → 1.3.0.1rc9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of acryl-datahub might be problematic. Click here for more details.
- {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.3.0.1rc9.dist-info}/METADATA +2686 -2563
- {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.3.0.1rc9.dist-info}/RECORD +499 -392
- {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.3.0.1rc9.dist-info}/WHEEL +1 -1
- {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.3.0.1rc9.dist-info}/entry_points.txt +7 -1
- datahub/_version.py +1 -1
- datahub/api/circuit_breaker/operation_circuit_breaker.py +2 -2
- datahub/api/entities/assertion/assertion.py +1 -1
- datahub/api/entities/common/serialized_value.py +1 -1
- datahub/api/entities/corpgroup/corpgroup.py +1 -1
- datahub/api/entities/datacontract/datacontract.py +35 -3
- datahub/api/entities/datajob/dataflow.py +18 -3
- datahub/api/entities/datajob/datajob.py +24 -4
- datahub/api/entities/dataprocess/dataprocess_instance.py +4 -0
- datahub/api/entities/dataproduct/dataproduct.py +32 -3
- datahub/api/entities/dataset/dataset.py +47 -72
- datahub/api/entities/external/__init__.py +0 -0
- datahub/api/entities/external/external_entities.py +724 -0
- datahub/api/entities/external/external_tag.py +147 -0
- datahub/api/entities/external/lake_formation_external_entites.py +162 -0
- datahub/api/entities/external/restricted_text.py +172 -0
- datahub/api/entities/external/unity_catalog_external_entites.py +172 -0
- datahub/api/entities/forms/forms.py +37 -37
- datahub/api/entities/structuredproperties/structuredproperties.py +6 -6
- datahub/api/graphql/assertion.py +1 -1
- datahub/api/graphql/base.py +8 -6
- datahub/api/graphql/operation.py +14 -10
- datahub/cli/check_cli.py +91 -9
- datahub/cli/cli_utils.py +63 -0
- datahub/cli/config_utils.py +20 -12
- datahub/cli/container_cli.py +5 -0
- datahub/cli/delete_cli.py +133 -34
- datahub/cli/docker_check.py +110 -14
- datahub/cli/docker_cli.py +155 -231
- datahub/cli/exists_cli.py +2 -3
- datahub/cli/get_cli.py +2 -3
- datahub/cli/graphql_cli.py +1422 -0
- datahub/cli/iceberg_cli.py +11 -5
- datahub/cli/ingest_cli.py +25 -26
- datahub/cli/migrate.py +12 -9
- datahub/cli/migration_utils.py +4 -3
- datahub/cli/put_cli.py +4 -6
- datahub/cli/quickstart_versioning.py +53 -10
- datahub/cli/specific/assertions_cli.py +39 -7
- datahub/cli/specific/datacontract_cli.py +57 -9
- datahub/cli/specific/dataproduct_cli.py +12 -24
- datahub/cli/specific/dataset_cli.py +31 -21
- datahub/cli/specific/forms_cli.py +2 -5
- datahub/cli/specific/group_cli.py +2 -3
- datahub/cli/specific/structuredproperties_cli.py +5 -7
- datahub/cli/specific/user_cli.py +174 -4
- datahub/cli/state_cli.py +2 -3
- datahub/cli/timeline_cli.py +2 -3
- datahub/configuration/common.py +46 -2
- datahub/configuration/connection_resolver.py +5 -2
- datahub/configuration/env_vars.py +331 -0
- datahub/configuration/import_resolver.py +7 -4
- datahub/configuration/kafka.py +21 -1
- datahub/configuration/pydantic_migration_helpers.py +6 -13
- datahub/configuration/source_common.py +4 -3
- datahub/configuration/validate_field_deprecation.py +5 -2
- datahub/configuration/validate_field_removal.py +8 -2
- datahub/configuration/validate_field_rename.py +6 -5
- datahub/configuration/validate_multiline_string.py +5 -2
- datahub/emitter/mce_builder.py +12 -8
- datahub/emitter/mcp.py +20 -5
- datahub/emitter/mcp_builder.py +12 -0
- datahub/emitter/request_helper.py +138 -15
- datahub/emitter/response_helper.py +111 -19
- datahub/emitter/rest_emitter.py +399 -163
- datahub/entrypoints.py +10 -5
- datahub/errors.py +12 -0
- datahub/ingestion/api/auto_work_units/auto_ensure_aspect_size.py +299 -2
- datahub/ingestion/api/auto_work_units/auto_validate_input_fields.py +87 -0
- datahub/ingestion/api/common.py +9 -0
- datahub/ingestion/api/decorators.py +15 -3
- datahub/ingestion/api/report.py +381 -3
- datahub/ingestion/api/sink.py +27 -2
- datahub/ingestion/api/source.py +174 -62
- datahub/ingestion/api/source_helpers.py +41 -3
- datahub/ingestion/api/source_protocols.py +23 -0
- datahub/ingestion/autogenerated/__init__.py +0 -0
- datahub/ingestion/autogenerated/capability_summary.json +3652 -0
- datahub/ingestion/autogenerated/lineage.json +402 -0
- datahub/ingestion/autogenerated/lineage_helper.py +177 -0
- datahub/ingestion/extractor/schema_util.py +31 -5
- datahub/ingestion/glossary/classification_mixin.py +9 -2
- datahub/ingestion/graph/client.py +492 -55
- datahub/ingestion/graph/config.py +18 -2
- datahub/ingestion/graph/filters.py +96 -32
- datahub/ingestion/graph/links.py +55 -0
- datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +21 -11
- datahub/ingestion/run/pipeline.py +90 -23
- datahub/ingestion/run/pipeline_config.py +3 -3
- datahub/ingestion/sink/datahub_kafka.py +1 -0
- datahub/ingestion/sink/datahub_rest.py +31 -23
- datahub/ingestion/sink/file.py +1 -0
- datahub/ingestion/source/abs/config.py +1 -1
- datahub/ingestion/source/abs/datalake_profiler_config.py +1 -1
- datahub/ingestion/source/abs/source.py +15 -30
- datahub/ingestion/source/apply/datahub_apply.py +6 -5
- datahub/ingestion/source/aws/aws_common.py +185 -13
- datahub/ingestion/source/aws/glue.py +517 -244
- datahub/ingestion/source/aws/platform_resource_repository.py +30 -0
- datahub/ingestion/source/aws/s3_boto_utils.py +100 -5
- datahub/ingestion/source/aws/sagemaker_processors/feature_groups.py +1 -1
- datahub/ingestion/source/aws/sagemaker_processors/models.py +4 -4
- datahub/ingestion/source/aws/tag_entities.py +270 -0
- datahub/ingestion/source/azure/azure_common.py +3 -3
- datahub/ingestion/source/bigquery_v2/bigquery.py +51 -7
- datahub/ingestion/source/bigquery_v2/bigquery_config.py +51 -81
- datahub/ingestion/source/bigquery_v2/bigquery_connection.py +81 -0
- datahub/ingestion/source/bigquery_v2/bigquery_queries.py +6 -1
- datahub/ingestion/source/bigquery_v2/bigquery_report.py +0 -2
- datahub/ingestion/source/bigquery_v2/bigquery_schema.py +23 -16
- datahub/ingestion/source/bigquery_v2/bigquery_schema_gen.py +20 -5
- datahub/ingestion/source/bigquery_v2/common.py +1 -1
- datahub/ingestion/source/bigquery_v2/lineage.py +1 -1
- datahub/ingestion/source/bigquery_v2/profiler.py +4 -2
- datahub/ingestion/source/bigquery_v2/queries.py +3 -3
- datahub/ingestion/source/bigquery_v2/queries_extractor.py +45 -9
- datahub/ingestion/source/cassandra/cassandra.py +7 -18
- datahub/ingestion/source/cassandra/cassandra_api.py +36 -0
- datahub/ingestion/source/cassandra/cassandra_config.py +20 -0
- datahub/ingestion/source/cassandra/cassandra_profiling.py +26 -24
- datahub/ingestion/source/cassandra/cassandra_utils.py +1 -2
- datahub/ingestion/source/common/data_platforms.py +23 -0
- datahub/ingestion/source/common/gcp_credentials_config.py +9 -1
- datahub/ingestion/source/common/subtypes.py +73 -1
- datahub/ingestion/source/data_lake_common/data_lake_utils.py +59 -10
- datahub/ingestion/source/data_lake_common/object_store.py +732 -0
- datahub/ingestion/source/data_lake_common/path_spec.py +87 -38
- datahub/ingestion/source/datahub/config.py +19 -5
- datahub/ingestion/source/datahub/datahub_database_reader.py +205 -36
- datahub/ingestion/source/datahub/datahub_source.py +11 -1
- datahub/ingestion/source/dbt/dbt_cloud.py +17 -10
- datahub/ingestion/source/dbt/dbt_common.py +270 -26
- datahub/ingestion/source/dbt/dbt_core.py +88 -47
- datahub/ingestion/source/dbt/dbt_tests.py +8 -6
- datahub/ingestion/source/debug/__init__.py +0 -0
- datahub/ingestion/source/debug/datahub_debug.py +300 -0
- datahub/ingestion/source/delta_lake/config.py +9 -5
- datahub/ingestion/source/delta_lake/source.py +8 -0
- datahub/ingestion/source/dremio/dremio_api.py +114 -73
- datahub/ingestion/source/dremio/dremio_aspects.py +3 -2
- datahub/ingestion/source/dremio/dremio_config.py +5 -4
- datahub/ingestion/source/dremio/dremio_datahub_source_mapping.py +1 -1
- datahub/ingestion/source/dremio/dremio_entities.py +6 -5
- datahub/ingestion/source/dremio/dremio_reporting.py +22 -3
- datahub/ingestion/source/dremio/dremio_source.py +228 -215
- datahub/ingestion/source/dremio/dremio_sql_queries.py +82 -21
- datahub/ingestion/source/dynamodb/dynamodb.py +19 -13
- datahub/ingestion/source/excel/__init__.py +0 -0
- datahub/ingestion/source/excel/config.py +92 -0
- datahub/ingestion/source/excel/excel_file.py +539 -0
- datahub/ingestion/source/excel/profiling.py +308 -0
- datahub/ingestion/source/excel/report.py +49 -0
- datahub/ingestion/source/excel/source.py +662 -0
- datahub/ingestion/source/excel/util.py +18 -0
- datahub/ingestion/source/feast.py +12 -14
- datahub/ingestion/source/file.py +3 -0
- datahub/ingestion/source/fivetran/config.py +67 -8
- datahub/ingestion/source/fivetran/fivetran.py +228 -43
- datahub/ingestion/source/fivetran/fivetran_log_api.py +42 -9
- datahub/ingestion/source/fivetran/fivetran_query.py +58 -36
- datahub/ingestion/source/fivetran/fivetran_rest_api.py +65 -0
- datahub/ingestion/source/fivetran/response_models.py +97 -0
- datahub/ingestion/source/gc/datahub_gc.py +0 -2
- datahub/ingestion/source/gc/soft_deleted_entity_cleanup.py +101 -104
- datahub/ingestion/source/gcs/gcs_source.py +53 -10
- datahub/ingestion/source/gcs/gcs_utils.py +36 -9
- datahub/ingestion/source/ge_data_profiler.py +146 -33
- datahub/ingestion/source/ge_profiling_config.py +26 -11
- datahub/ingestion/source/grafana/entity_mcp_builder.py +272 -0
- datahub/ingestion/source/grafana/field_utils.py +307 -0
- datahub/ingestion/source/grafana/grafana_api.py +142 -0
- datahub/ingestion/source/grafana/grafana_config.py +104 -0
- datahub/ingestion/source/grafana/grafana_source.py +522 -84
- datahub/ingestion/source/grafana/lineage.py +202 -0
- datahub/ingestion/source/grafana/models.py +137 -0
- datahub/ingestion/source/grafana/report.py +90 -0
- datahub/ingestion/source/grafana/types.py +16 -0
- datahub/ingestion/source/hex/__init__.py +0 -0
- datahub/ingestion/source/hex/api.py +402 -0
- datahub/ingestion/source/hex/constants.py +8 -0
- datahub/ingestion/source/hex/hex.py +311 -0
- datahub/ingestion/source/hex/mapper.py +412 -0
- datahub/ingestion/source/hex/model.py +78 -0
- datahub/ingestion/source/hex/query_fetcher.py +307 -0
- datahub/ingestion/source/iceberg/iceberg.py +385 -164
- datahub/ingestion/source/iceberg/iceberg_common.py +2 -2
- datahub/ingestion/source/iceberg/iceberg_profiler.py +25 -20
- datahub/ingestion/source/identity/azure_ad.py +1 -1
- datahub/ingestion/source/identity/okta.py +1 -14
- datahub/ingestion/source/kafka/kafka.py +28 -71
- datahub/ingestion/source/kafka/kafka_config.py +78 -0
- datahub/ingestion/source/kafka_connect/common.py +2 -2
- datahub/ingestion/source/kafka_connect/sink_connectors.py +157 -48
- datahub/ingestion/source/kafka_connect/source_connectors.py +63 -5
- datahub/ingestion/source/ldap.py +1 -1
- datahub/ingestion/source/looker/looker_common.py +216 -86
- datahub/ingestion/source/looker/looker_config.py +15 -4
- datahub/ingestion/source/looker/looker_constant.py +4 -0
- datahub/ingestion/source/looker/looker_lib_wrapper.py +37 -4
- datahub/ingestion/source/looker/looker_liquid_tag.py +56 -5
- datahub/ingestion/source/looker/looker_source.py +539 -555
- datahub/ingestion/source/looker/looker_view_id_cache.py +1 -1
- datahub/ingestion/source/looker/lookml_concept_context.py +1 -1
- datahub/ingestion/source/looker/lookml_config.py +31 -3
- datahub/ingestion/source/looker/lookml_refinement.py +1 -1
- datahub/ingestion/source/looker/lookml_source.py +103 -118
- datahub/ingestion/source/looker/view_upstream.py +494 -1
- datahub/ingestion/source/metabase.py +32 -6
- datahub/ingestion/source/metadata/business_glossary.py +7 -7
- datahub/ingestion/source/metadata/lineage.py +11 -10
- datahub/ingestion/source/mlflow.py +254 -23
- datahub/ingestion/source/mock_data/__init__.py +0 -0
- datahub/ingestion/source/mock_data/datahub_mock_data.py +533 -0
- datahub/ingestion/source/mock_data/datahub_mock_data_report.py +12 -0
- datahub/ingestion/source/mock_data/table_naming_helper.py +97 -0
- datahub/ingestion/source/mode.py +359 -181
- datahub/ingestion/source/mongodb.py +11 -1
- datahub/ingestion/source/neo4j/neo4j_source.py +122 -153
- datahub/ingestion/source/nifi.py +5 -5
- datahub/ingestion/source/openapi.py +85 -38
- datahub/ingestion/source/openapi_parser.py +59 -40
- datahub/ingestion/source/powerbi/config.py +92 -27
- datahub/ingestion/source/powerbi/m_query/data_classes.py +3 -0
- datahub/ingestion/source/powerbi/m_query/odbc.py +185 -0
- datahub/ingestion/source/powerbi/m_query/parser.py +2 -2
- datahub/ingestion/source/powerbi/m_query/pattern_handler.py +358 -14
- datahub/ingestion/source/powerbi/m_query/resolver.py +10 -0
- datahub/ingestion/source/powerbi/powerbi.py +66 -32
- datahub/ingestion/source/powerbi/rest_api_wrapper/data_resolver.py +2 -2
- datahub/ingestion/source/powerbi/rest_api_wrapper/powerbi_api.py +11 -12
- datahub/ingestion/source/powerbi_report_server/report_server.py +0 -23
- datahub/ingestion/source/powerbi_report_server/report_server_domain.py +2 -4
- datahub/ingestion/source/preset.py +3 -3
- datahub/ingestion/source/qlik_sense/data_classes.py +28 -8
- datahub/ingestion/source/qlik_sense/qlik_sense.py +2 -1
- datahub/ingestion/source/redash.py +1 -1
- datahub/ingestion/source/redshift/config.py +15 -9
- datahub/ingestion/source/redshift/datashares.py +1 -1
- datahub/ingestion/source/redshift/lineage.py +386 -687
- datahub/ingestion/source/redshift/profile.py +2 -2
- datahub/ingestion/source/redshift/query.py +24 -20
- datahub/ingestion/source/redshift/redshift.py +52 -111
- datahub/ingestion/source/redshift/redshift_schema.py +17 -12
- datahub/ingestion/source/redshift/report.py +0 -2
- datahub/ingestion/source/redshift/usage.py +13 -11
- datahub/ingestion/source/s3/report.py +4 -2
- datahub/ingestion/source/s3/source.py +515 -244
- datahub/ingestion/source/sac/sac.py +3 -1
- datahub/ingestion/source/salesforce.py +28 -13
- datahub/ingestion/source/schema/json_schema.py +14 -14
- datahub/ingestion/source/schema_inference/object.py +22 -6
- datahub/ingestion/source/sigma/config.py +75 -8
- datahub/ingestion/source/sigma/data_classes.py +3 -0
- datahub/ingestion/source/sigma/sigma.py +36 -7
- datahub/ingestion/source/sigma/sigma_api.py +99 -58
- datahub/ingestion/source/slack/slack.py +403 -140
- datahub/ingestion/source/snaplogic/__init__.py +0 -0
- datahub/ingestion/source/snaplogic/snaplogic.py +355 -0
- datahub/ingestion/source/snaplogic/snaplogic_config.py +37 -0
- datahub/ingestion/source/snaplogic/snaplogic_lineage_extractor.py +107 -0
- datahub/ingestion/source/snaplogic/snaplogic_parser.py +168 -0
- datahub/ingestion/source/snaplogic/snaplogic_utils.py +31 -0
- datahub/ingestion/source/snowflake/constants.py +4 -0
- datahub/ingestion/source/snowflake/snowflake_config.py +103 -34
- datahub/ingestion/source/snowflake/snowflake_connection.py +47 -25
- datahub/ingestion/source/snowflake/snowflake_lineage_v2.py +25 -6
- datahub/ingestion/source/snowflake/snowflake_profiler.py +1 -6
- datahub/ingestion/source/snowflake/snowflake_queries.py +511 -107
- datahub/ingestion/source/snowflake/snowflake_query.py +100 -72
- datahub/ingestion/source/snowflake/snowflake_report.py +4 -2
- datahub/ingestion/source/snowflake/snowflake_schema.py +381 -16
- datahub/ingestion/source/snowflake/snowflake_schema_gen.py +163 -52
- datahub/ingestion/source/snowflake/snowflake_summary.py +7 -1
- datahub/ingestion/source/snowflake/snowflake_tag.py +4 -1
- datahub/ingestion/source/snowflake/snowflake_usage_v2.py +8 -2
- datahub/ingestion/source/snowflake/snowflake_utils.py +62 -17
- datahub/ingestion/source/snowflake/snowflake_v2.py +56 -10
- datahub/ingestion/source/snowflake/stored_proc_lineage.py +143 -0
- datahub/ingestion/source/sql/athena.py +219 -26
- datahub/ingestion/source/sql/athena_properties_extractor.py +795 -0
- datahub/ingestion/source/sql/clickhouse.py +29 -9
- datahub/ingestion/source/sql/cockroachdb.py +5 -4
- datahub/ingestion/source/sql/druid.py +9 -4
- datahub/ingestion/source/sql/hana.py +3 -1
- datahub/ingestion/source/sql/hive.py +28 -8
- datahub/ingestion/source/sql/hive_metastore.py +24 -25
- datahub/ingestion/source/sql/mariadb.py +0 -1
- datahub/ingestion/source/sql/mssql/job_models.py +18 -2
- datahub/ingestion/source/sql/mssql/source.py +376 -62
- datahub/ingestion/source/sql/mysql.py +154 -4
- datahub/ingestion/source/sql/oracle.py +62 -11
- datahub/ingestion/source/sql/postgres.py +142 -6
- datahub/ingestion/source/sql/presto.py +20 -2
- datahub/ingestion/source/sql/sql_common.py +281 -49
- datahub/ingestion/source/sql/sql_config.py +1 -34
- datahub/ingestion/source/sql/sql_generic_profiler.py +2 -1
- datahub/ingestion/source/sql/sql_types.py +27 -2
- datahub/ingestion/source/sql/sqlalchemy_uri.py +68 -0
- datahub/ingestion/source/sql/stored_procedures/__init__.py +0 -0
- datahub/ingestion/source/sql/stored_procedures/base.py +253 -0
- datahub/ingestion/source/sql/{mssql/stored_procedure_lineage.py → stored_procedures/lineage.py} +2 -29
- datahub/ingestion/source/sql/teradata.py +1028 -245
- datahub/ingestion/source/sql/trino.py +43 -10
- datahub/ingestion/source/sql/two_tier_sql_source.py +3 -4
- datahub/ingestion/source/sql/vertica.py +14 -7
- datahub/ingestion/source/sql_queries.py +219 -121
- datahub/ingestion/source/state/checkpoint.py +8 -29
- datahub/ingestion/source/state/entity_removal_state.py +5 -2
- datahub/ingestion/source/state/redundant_run_skip_handler.py +21 -0
- datahub/ingestion/source/state/stale_entity_removal_handler.py +0 -1
- datahub/ingestion/source/state/stateful_ingestion_base.py +36 -11
- datahub/ingestion/source/state_provider/datahub_ingestion_checkpointing_provider.py +2 -1
- datahub/ingestion/source/superset.py +810 -126
- datahub/ingestion/source/tableau/tableau.py +172 -69
- datahub/ingestion/source/tableau/tableau_common.py +11 -4
- datahub/ingestion/source/tableau/tableau_constant.py +1 -4
- datahub/ingestion/source/tableau/tableau_server_wrapper.py +3 -0
- datahub/ingestion/source/tableau/tableau_validation.py +1 -1
- datahub/ingestion/source/unity/config.py +161 -40
- datahub/ingestion/source/unity/connection.py +61 -0
- datahub/ingestion/source/unity/connection_test.py +1 -0
- datahub/ingestion/source/unity/platform_resource_repository.py +19 -0
- datahub/ingestion/source/unity/proxy.py +794 -51
- datahub/ingestion/source/unity/proxy_patch.py +321 -0
- datahub/ingestion/source/unity/proxy_types.py +36 -2
- datahub/ingestion/source/unity/report.py +15 -3
- datahub/ingestion/source/unity/source.py +465 -131
- datahub/ingestion/source/unity/tag_entities.py +197 -0
- datahub/ingestion/source/unity/usage.py +46 -4
- datahub/ingestion/source/usage/clickhouse_usage.py +11 -4
- datahub/ingestion/source/usage/starburst_trino_usage.py +10 -5
- datahub/ingestion/source/usage/usage_common.py +4 -68
- datahub/ingestion/source/vertexai/__init__.py +0 -0
- datahub/ingestion/source/vertexai/vertexai.py +1367 -0
- datahub/ingestion/source/vertexai/vertexai_config.py +29 -0
- datahub/ingestion/source/vertexai/vertexai_result_type_utils.py +89 -0
- datahub/ingestion/source_config/pulsar.py +3 -1
- datahub/ingestion/source_report/ingestion_stage.py +50 -11
- datahub/ingestion/transformer/add_dataset_dataproduct.py +1 -1
- datahub/ingestion/transformer/add_dataset_ownership.py +19 -3
- datahub/ingestion/transformer/base_transformer.py +8 -5
- datahub/ingestion/transformer/dataset_domain.py +1 -1
- datahub/ingestion/transformer/set_browse_path.py +112 -0
- datahub/integrations/assertion/common.py +3 -2
- datahub/integrations/assertion/snowflake/compiler.py +4 -3
- datahub/lite/lite_util.py +2 -2
- datahub/metadata/{_schema_classes.py → _internal_schema_classes.py} +3095 -631
- datahub/metadata/_urns/urn_defs.py +1866 -1582
- datahub/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
- datahub/metadata/com/linkedin/pegasus2avro/common/__init__.py +2 -0
- datahub/metadata/com/linkedin/pegasus2avro/dataplatform/slack/__init__.py +15 -0
- datahub/metadata/com/linkedin/pegasus2avro/event/__init__.py +11 -0
- datahub/metadata/com/linkedin/pegasus2avro/event/notification/__init__.py +15 -0
- datahub/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +19 -0
- datahub/metadata/com/linkedin/pegasus2avro/file/__init__.py +19 -0
- datahub/metadata/com/linkedin/pegasus2avro/identity/__init__.py +2 -0
- datahub/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
- datahub/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +8 -0
- datahub/metadata/com/linkedin/pegasus2avro/module/__init__.py +31 -0
- datahub/metadata/com/linkedin/pegasus2avro/platform/event/v1/__init__.py +4 -0
- datahub/metadata/com/linkedin/pegasus2avro/role/__init__.py +2 -0
- datahub/metadata/com/linkedin/pegasus2avro/settings/asset/__init__.py +19 -0
- datahub/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +8 -0
- datahub/metadata/com/linkedin/pegasus2avro/template/__init__.py +31 -0
- datahub/metadata/schema.avsc +18404 -16617
- datahub/metadata/schema_classes.py +3 -3
- datahub/metadata/schemas/Actors.avsc +38 -1
- datahub/metadata/schemas/ApplicationKey.avsc +31 -0
- datahub/metadata/schemas/ApplicationProperties.avsc +72 -0
- datahub/metadata/schemas/Applications.avsc +38 -0
- datahub/metadata/schemas/AssetSettings.avsc +63 -0
- datahub/metadata/schemas/ChartInfo.avsc +2 -1
- datahub/metadata/schemas/ChartKey.avsc +1 -0
- datahub/metadata/schemas/ContainerKey.avsc +1 -0
- datahub/metadata/schemas/ContainerProperties.avsc +8 -0
- datahub/metadata/schemas/CorpUserEditableInfo.avsc +15 -1
- datahub/metadata/schemas/CorpUserKey.avsc +2 -1
- datahub/metadata/schemas/CorpUserSettings.avsc +145 -0
- datahub/metadata/schemas/DashboardKey.avsc +1 -0
- datahub/metadata/schemas/DataContractKey.avsc +2 -1
- datahub/metadata/schemas/DataFlowInfo.avsc +8 -0
- datahub/metadata/schemas/DataFlowKey.avsc +1 -0
- datahub/metadata/schemas/DataHubFileInfo.avsc +230 -0
- datahub/metadata/schemas/DataHubFileKey.avsc +21 -0
- datahub/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
- datahub/metadata/schemas/DataHubOpenAPISchemaKey.avsc +22 -0
- datahub/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
- datahub/metadata/schemas/DataHubPageModuleProperties.avsc +298 -0
- datahub/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
- datahub/metadata/schemas/DataHubPageTemplateProperties.avsc +251 -0
- datahub/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
- datahub/metadata/schemas/DataJobInfo.avsc +8 -0
- datahub/metadata/schemas/DataJobInputOutput.avsc +8 -0
- datahub/metadata/schemas/DataJobKey.avsc +1 -0
- datahub/metadata/schemas/DataProcessInstanceInput.avsc +2 -1
- datahub/metadata/schemas/DataProcessInstanceOutput.avsc +2 -1
- datahub/metadata/schemas/DataProcessKey.avsc +8 -0
- datahub/metadata/schemas/DataProductKey.avsc +3 -1
- datahub/metadata/schemas/DataProductProperties.avsc +1 -1
- datahub/metadata/schemas/DataTransformLogic.avsc +4 -2
- datahub/metadata/schemas/DatasetKey.avsc +11 -1
- datahub/metadata/schemas/DatasetUsageStatistics.avsc +8 -0
- datahub/metadata/schemas/Deprecation.avsc +2 -0
- datahub/metadata/schemas/DomainKey.avsc +2 -1
- datahub/metadata/schemas/ExecutionRequestInput.avsc +5 -0
- datahub/metadata/schemas/FormInfo.avsc +5 -0
- datahub/metadata/schemas/GlobalSettingsInfo.avsc +134 -0
- datahub/metadata/schemas/GlossaryNodeKey.avsc +2 -1
- datahub/metadata/schemas/GlossaryTermKey.avsc +3 -1
- datahub/metadata/schemas/IcebergWarehouseInfo.avsc +8 -0
- datahub/metadata/schemas/IncidentInfo.avsc +3 -3
- datahub/metadata/schemas/InstitutionalMemory.avsc +31 -0
- datahub/metadata/schemas/LogicalParent.avsc +145 -0
- datahub/metadata/schemas/MLFeatureKey.avsc +1 -0
- datahub/metadata/schemas/MLFeatureTableKey.avsc +1 -0
- datahub/metadata/schemas/MLModelDeploymentKey.avsc +8 -0
- datahub/metadata/schemas/MLModelDeploymentProperties.avsc +3 -0
- datahub/metadata/schemas/MLModelGroupKey.avsc +11 -1
- datahub/metadata/schemas/MLModelGroupProperties.avsc +16 -0
- datahub/metadata/schemas/MLModelKey.avsc +9 -0
- datahub/metadata/schemas/MLPrimaryKeyKey.avsc +1 -0
- datahub/metadata/schemas/MetadataChangeEvent.avsc +189 -47
- datahub/metadata/schemas/MetadataChangeLog.avsc +65 -44
- datahub/metadata/schemas/MetadataChangeProposal.avsc +64 -0
- datahub/metadata/schemas/NotebookKey.avsc +1 -0
- datahub/metadata/schemas/Operation.avsc +21 -2
- datahub/metadata/schemas/Ownership.avsc +69 -0
- datahub/metadata/schemas/QueryProperties.avsc +24 -2
- datahub/metadata/schemas/QuerySubjects.avsc +1 -12
- datahub/metadata/schemas/RelationshipChangeEvent.avsc +215 -0
- datahub/metadata/schemas/SchemaFieldKey.avsc +4 -1
- datahub/metadata/schemas/Siblings.avsc +2 -0
- datahub/metadata/schemas/SlackUserInfo.avsc +160 -0
- datahub/metadata/schemas/StructuredProperties.avsc +69 -0
- datahub/metadata/schemas/StructuredPropertySettings.avsc +9 -0
- datahub/metadata/schemas/SystemMetadata.avsc +147 -0
- datahub/metadata/schemas/UpstreamLineage.avsc +9 -0
- datahub/metadata/schemas/__init__.py +3 -3
- datahub/sdk/__init__.py +7 -0
- datahub/sdk/_all_entities.py +15 -0
- datahub/sdk/_shared.py +393 -10
- datahub/sdk/_utils.py +4 -0
- datahub/sdk/chart.py +386 -0
- datahub/sdk/container.py +7 -0
- datahub/sdk/dashboard.py +453 -0
- datahub/sdk/dataflow.py +309 -0
- datahub/sdk/datajob.py +367 -0
- datahub/sdk/dataset.py +180 -4
- datahub/sdk/entity.py +99 -3
- datahub/sdk/entity_client.py +154 -12
- datahub/sdk/lineage_client.py +943 -0
- datahub/sdk/main_client.py +83 -8
- datahub/sdk/mlmodel.py +383 -0
- datahub/sdk/mlmodelgroup.py +240 -0
- datahub/sdk/search_client.py +85 -8
- datahub/sdk/search_filters.py +393 -68
- datahub/secret/datahub_secret_store.py +5 -1
- datahub/secret/environment_secret_store.py +29 -0
- datahub/secret/file_secret_store.py +49 -0
- datahub/specific/aspect_helpers/fine_grained_lineage.py +76 -0
- datahub/specific/aspect_helpers/siblings.py +73 -0
- datahub/specific/aspect_helpers/structured_properties.py +27 -0
- datahub/specific/chart.py +1 -1
- datahub/specific/datajob.py +15 -1
- datahub/specific/dataproduct.py +4 -0
- datahub/specific/dataset.py +51 -59
- datahub/sql_parsing/_sqlglot_patch.py +1 -2
- datahub/sql_parsing/fingerprint_utils.py +6 -0
- datahub/sql_parsing/split_statements.py +30 -3
- datahub/sql_parsing/sql_parsing_aggregator.py +144 -63
- datahub/sql_parsing/sqlglot_lineage.py +517 -44
- datahub/sql_parsing/sqlglot_utils.py +30 -18
- datahub/sql_parsing/tool_meta_extractor.py +25 -2
- datahub/telemetry/telemetry.py +30 -16
- datahub/testing/check_imports.py +1 -1
- datahub/testing/docker_utils.py +8 -2
- datahub/testing/mce_helpers.py +421 -0
- datahub/testing/mcp_diff.py +17 -21
- datahub/testing/sdk_v2_helpers.py +18 -0
- datahub/upgrade/upgrade.py +86 -30
- datahub/utilities/file_backed_collections.py +14 -15
- datahub/utilities/hive_schema_to_avro.py +2 -2
- datahub/utilities/ingest_utils.py +2 -2
- datahub/utilities/is_pytest.py +3 -2
- datahub/utilities/logging_manager.py +30 -7
- datahub/utilities/mapping.py +29 -2
- datahub/utilities/sample_data.py +5 -4
- datahub/utilities/server_config_util.py +298 -10
- datahub/utilities/sqlalchemy_query_combiner.py +6 -4
- datahub/utilities/stats_collections.py +4 -0
- datahub/utilities/threaded_iterator_executor.py +16 -3
- datahub/utilities/urn_encoder.py +1 -1
- datahub/utilities/urns/urn.py +41 -2
- datahub/emitter/sql_parsing_builder.py +0 -306
- datahub/ingestion/source/redshift/lineage_v2.py +0 -458
- datahub/ingestion/source/vertexai.py +0 -697
- datahub/ingestion/transformer/system_metadata_transformer.py +0 -45
- {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.3.0.1rc9.dist-info/licenses}/LICENSE +0 -0
- {acryl_datahub-1.0.0rc18.dist-info → acryl_datahub-1.3.0.1rc9.dist-info}/top_level.txt +0 -0
|
@@ -271,6 +271,136 @@ class DataHubAccessTokenInfoClass(_Aspect):
|
|
|
271
271
|
self._inner_dict['description'] = value
|
|
272
272
|
|
|
273
273
|
|
|
274
|
+
class ApplicationKeyClass(_Aspect):
|
|
275
|
+
"""Key for a Query"""
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
ASPECT_NAME = 'applicationKey'
|
|
279
|
+
ASPECT_INFO = {'keyForEntity': 'application', 'entityCategory': 'core', 'entityAspects': ['applicationProperties', 'ownership', 'glossaryTerms', 'globalTags', 'domains', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
280
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.ApplicationKey")
|
|
281
|
+
|
|
282
|
+
def __init__(self,
|
|
283
|
+
id: str,
|
|
284
|
+
):
|
|
285
|
+
super().__init__()
|
|
286
|
+
|
|
287
|
+
self.id = id
|
|
288
|
+
|
|
289
|
+
def _restore_defaults(self) -> None:
|
|
290
|
+
self.id = str()
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
@property
|
|
294
|
+
def id(self) -> str:
|
|
295
|
+
"""A unique id for the Application."""
|
|
296
|
+
return self._inner_dict.get('id') # type: ignore
|
|
297
|
+
|
|
298
|
+
@id.setter
|
|
299
|
+
def id(self, value: str) -> None:
|
|
300
|
+
self._inner_dict['id'] = value
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
class ApplicationPropertiesClass(_Aspect):
|
|
304
|
+
"""The main properties of an Application"""
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
ASPECT_NAME = 'applicationProperties'
|
|
308
|
+
ASPECT_INFO = {}
|
|
309
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.ApplicationProperties")
|
|
310
|
+
|
|
311
|
+
def __init__(self,
|
|
312
|
+
customProperties: Optional[Dict[str, str]]=None,
|
|
313
|
+
externalUrl: Union[None, str]=None,
|
|
314
|
+
name: Union[None, str]=None,
|
|
315
|
+
description: Union[None, str]=None,
|
|
316
|
+
):
|
|
317
|
+
super().__init__()
|
|
318
|
+
|
|
319
|
+
if customProperties is None:
|
|
320
|
+
# default: {}
|
|
321
|
+
self.customProperties = dict()
|
|
322
|
+
else:
|
|
323
|
+
self.customProperties = customProperties
|
|
324
|
+
self.externalUrl = externalUrl
|
|
325
|
+
self.name = name
|
|
326
|
+
self.description = description
|
|
327
|
+
|
|
328
|
+
def _restore_defaults(self) -> None:
|
|
329
|
+
self.customProperties = dict()
|
|
330
|
+
self.externalUrl = self.RECORD_SCHEMA.fields_dict["externalUrl"].default
|
|
331
|
+
self.name = self.RECORD_SCHEMA.fields_dict["name"].default
|
|
332
|
+
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
@property
|
|
336
|
+
def customProperties(self) -> Dict[str, str]:
|
|
337
|
+
"""Custom property bag."""
|
|
338
|
+
return self._inner_dict.get('customProperties') # type: ignore
|
|
339
|
+
|
|
340
|
+
@customProperties.setter
|
|
341
|
+
def customProperties(self, value: Dict[str, str]) -> None:
|
|
342
|
+
self._inner_dict['customProperties'] = value
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
@property
|
|
346
|
+
def externalUrl(self) -> Union[None, str]:
|
|
347
|
+
"""URL where the reference exist"""
|
|
348
|
+
return self._inner_dict.get('externalUrl') # type: ignore
|
|
349
|
+
|
|
350
|
+
@externalUrl.setter
|
|
351
|
+
def externalUrl(self, value: Union[None, str]) -> None:
|
|
352
|
+
self._inner_dict['externalUrl'] = value
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
@property
|
|
356
|
+
def name(self) -> Union[None, str]:
|
|
357
|
+
"""Display name of the Application"""
|
|
358
|
+
return self._inner_dict.get('name') # type: ignore
|
|
359
|
+
|
|
360
|
+
@name.setter
|
|
361
|
+
def name(self, value: Union[None, str]) -> None:
|
|
362
|
+
self._inner_dict['name'] = value
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
@property
|
|
366
|
+
def description(self) -> Union[None, str]:
|
|
367
|
+
"""Documentation of the application"""
|
|
368
|
+
return self._inner_dict.get('description') # type: ignore
|
|
369
|
+
|
|
370
|
+
@description.setter
|
|
371
|
+
def description(self, value: Union[None, str]) -> None:
|
|
372
|
+
self._inner_dict['description'] = value
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
class ApplicationsClass(_Aspect):
|
|
376
|
+
"""Links from an Asset to its Applications"""
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
ASPECT_NAME = 'applications'
|
|
380
|
+
ASPECT_INFO = {}
|
|
381
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.Applications")
|
|
382
|
+
|
|
383
|
+
def __init__(self,
|
|
384
|
+
applications: List[str],
|
|
385
|
+
):
|
|
386
|
+
super().__init__()
|
|
387
|
+
|
|
388
|
+
self.applications = applications
|
|
389
|
+
|
|
390
|
+
def _restore_defaults(self) -> None:
|
|
391
|
+
self.applications = list()
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
@property
|
|
395
|
+
def applications(self) -> List[str]:
|
|
396
|
+
"""The Applications attached to an Asset"""
|
|
397
|
+
return self._inner_dict.get('applications') # type: ignore
|
|
398
|
+
|
|
399
|
+
@applications.setter
|
|
400
|
+
def applications(self, value: List[str]) -> None:
|
|
401
|
+
self._inner_dict['applications'] = value
|
|
402
|
+
|
|
403
|
+
|
|
274
404
|
class AssertionActionClass(DictWrapper):
|
|
275
405
|
"""The Actions about an Assertion.
|
|
276
406
|
In the future, we'll likely extend this model to support additional
|
|
@@ -4460,6 +4590,18 @@ class FabricTypeClass(object):
|
|
|
4460
4590
|
RVW = "RVW"
|
|
4461
4591
|
"""Designates review fabrics"""
|
|
4462
4592
|
|
|
4593
|
+
PRD = "PRD"
|
|
4594
|
+
"""Alternative Prod spelling"""
|
|
4595
|
+
|
|
4596
|
+
TST = "TST"
|
|
4597
|
+
"""Alternative Test spelling"""
|
|
4598
|
+
|
|
4599
|
+
SIT = "SIT"
|
|
4600
|
+
"""System Integration Testing"""
|
|
4601
|
+
|
|
4602
|
+
SBX = "SBX"
|
|
4603
|
+
"""Alternative spelling for sandbox"""
|
|
4604
|
+
|
|
4463
4605
|
SANDBOX = "SANDBOX"
|
|
4464
4606
|
"""Designates sandbox fabrics"""
|
|
4465
4607
|
|
|
@@ -5213,17 +5355,23 @@ class InstitutionalMemoryMetadataClass(DictWrapper):
|
|
|
5213
5355
|
url: str,
|
|
5214
5356
|
description: str,
|
|
5215
5357
|
createStamp: "AuditStampClass",
|
|
5358
|
+
updateStamp: Union[None, "AuditStampClass"]=None,
|
|
5359
|
+
settings: Union[None, "InstitutionalMemoryMetadataSettingsClass"]=None,
|
|
5216
5360
|
):
|
|
5217
5361
|
super().__init__()
|
|
5218
5362
|
|
|
5219
5363
|
self.url = url
|
|
5220
5364
|
self.description = description
|
|
5221
5365
|
self.createStamp = createStamp
|
|
5366
|
+
self.updateStamp = updateStamp
|
|
5367
|
+
self.settings = settings
|
|
5222
5368
|
|
|
5223
5369
|
def _restore_defaults(self) -> None:
|
|
5224
5370
|
self.url = str()
|
|
5225
5371
|
self.description = str()
|
|
5226
5372
|
self.createStamp = AuditStampClass._construct_with_defaults()
|
|
5373
|
+
self.updateStamp = self.RECORD_SCHEMA.fields_dict["updateStamp"].default
|
|
5374
|
+
self.settings = self.RECORD_SCHEMA.fields_dict["settings"].default
|
|
5227
5375
|
|
|
5228
5376
|
|
|
5229
5377
|
@property
|
|
@@ -5256,6 +5404,55 @@ class InstitutionalMemoryMetadataClass(DictWrapper):
|
|
|
5256
5404
|
self._inner_dict['createStamp'] = value
|
|
5257
5405
|
|
|
5258
5406
|
|
|
5407
|
+
@property
|
|
5408
|
+
def updateStamp(self) -> Union[None, "AuditStampClass"]:
|
|
5409
|
+
"""Audit stamp associated with updation of this record"""
|
|
5410
|
+
return self._inner_dict.get('updateStamp') # type: ignore
|
|
5411
|
+
|
|
5412
|
+
@updateStamp.setter
|
|
5413
|
+
def updateStamp(self, value: Union[None, "AuditStampClass"]) -> None:
|
|
5414
|
+
self._inner_dict['updateStamp'] = value
|
|
5415
|
+
|
|
5416
|
+
|
|
5417
|
+
@property
|
|
5418
|
+
def settings(self) -> Union[None, "InstitutionalMemoryMetadataSettingsClass"]:
|
|
5419
|
+
"""Settings for this record"""
|
|
5420
|
+
return self._inner_dict.get('settings') # type: ignore
|
|
5421
|
+
|
|
5422
|
+
@settings.setter
|
|
5423
|
+
def settings(self, value: Union[None, "InstitutionalMemoryMetadataSettingsClass"]) -> None:
|
|
5424
|
+
self._inner_dict['settings'] = value
|
|
5425
|
+
|
|
5426
|
+
|
|
5427
|
+
class InstitutionalMemoryMetadataSettingsClass(DictWrapper):
|
|
5428
|
+
"""Settings related to a record of InstitutionalMemoryMetadata"""
|
|
5429
|
+
|
|
5430
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.common.InstitutionalMemoryMetadataSettings")
|
|
5431
|
+
def __init__(self,
|
|
5432
|
+
showInAssetPreview: Optional[bool]=None,
|
|
5433
|
+
):
|
|
5434
|
+
super().__init__()
|
|
5435
|
+
|
|
5436
|
+
if showInAssetPreview is None:
|
|
5437
|
+
# default: False
|
|
5438
|
+
self.showInAssetPreview = self.RECORD_SCHEMA.fields_dict["showInAssetPreview"].default
|
|
5439
|
+
else:
|
|
5440
|
+
self.showInAssetPreview = showInAssetPreview
|
|
5441
|
+
|
|
5442
|
+
def _restore_defaults(self) -> None:
|
|
5443
|
+
self.showInAssetPreview = self.RECORD_SCHEMA.fields_dict["showInAssetPreview"].default
|
|
5444
|
+
|
|
5445
|
+
|
|
5446
|
+
@property
|
|
5447
|
+
def showInAssetPreview(self) -> bool:
|
|
5448
|
+
"""Show record in asset preview like on entity header and search previews"""
|
|
5449
|
+
return self._inner_dict.get('showInAssetPreview') # type: ignore
|
|
5450
|
+
|
|
5451
|
+
@showInAssetPreview.setter
|
|
5452
|
+
def showInAssetPreview(self, value: bool) -> None:
|
|
5453
|
+
self._inner_dict['showInAssetPreview'] = value
|
|
5454
|
+
|
|
5455
|
+
|
|
5259
5456
|
class MLFeatureDataTypeClass(object):
|
|
5260
5457
|
"""MLFeature Data Type"""
|
|
5261
5458
|
|
|
@@ -5457,6 +5654,7 @@ class OperationClass(_Aspect):
|
|
|
5457
5654
|
affectedDatasets: Union[None, List[str]]=None,
|
|
5458
5655
|
sourceType: Union[None, Union[str, "OperationSourceTypeClass"]]=None,
|
|
5459
5656
|
customProperties: Union[None, Dict[str, str]]=None,
|
|
5657
|
+
queries: Union[None, List[str]]=None,
|
|
5460
5658
|
):
|
|
5461
5659
|
super().__init__()
|
|
5462
5660
|
|
|
@@ -5476,6 +5674,7 @@ class OperationClass(_Aspect):
|
|
|
5476
5674
|
self.sourceType = sourceType
|
|
5477
5675
|
self.customProperties = customProperties
|
|
5478
5676
|
self.lastUpdatedTimestamp = lastUpdatedTimestamp
|
|
5677
|
+
self.queries = queries
|
|
5479
5678
|
|
|
5480
5679
|
def _restore_defaults(self) -> None:
|
|
5481
5680
|
self.timestampMillis = int()
|
|
@@ -5490,6 +5689,7 @@ class OperationClass(_Aspect):
|
|
|
5490
5689
|
self.sourceType = self.RECORD_SCHEMA.fields_dict["sourceType"].default
|
|
5491
5690
|
self.customProperties = self.RECORD_SCHEMA.fields_dict["customProperties"].default
|
|
5492
5691
|
self.lastUpdatedTimestamp = int()
|
|
5692
|
+
self.queries = self.RECORD_SCHEMA.fields_dict["queries"].default
|
|
5493
5693
|
|
|
5494
5694
|
|
|
5495
5695
|
@property
|
|
@@ -5612,6 +5812,16 @@ class OperationClass(_Aspect):
|
|
|
5612
5812
|
self._inner_dict['lastUpdatedTimestamp'] = value
|
|
5613
5813
|
|
|
5614
5814
|
|
|
5815
|
+
@property
|
|
5816
|
+
def queries(self) -> Union[None, List[str]]:
|
|
5817
|
+
"""Which queries were used in this operation."""
|
|
5818
|
+
return self._inner_dict.get('queries') # type: ignore
|
|
5819
|
+
|
|
5820
|
+
@queries.setter
|
|
5821
|
+
def queries(self, value: Union[None, List[str]]) -> None:
|
|
5822
|
+
self._inner_dict['queries'] = value
|
|
5823
|
+
|
|
5824
|
+
|
|
5615
5825
|
class OperationSourceTypeClass(object):
|
|
5616
5826
|
"""The source of an operation"""
|
|
5617
5827
|
|
|
@@ -5645,7 +5855,7 @@ class OperationTypeClass(object):
|
|
|
5645
5855
|
"""Asset was dropped"""
|
|
5646
5856
|
|
|
5647
5857
|
CUSTOM = "CUSTOM"
|
|
5648
|
-
"""Custom asset operation"""
|
|
5858
|
+
"""Custom asset operation. If this is set, ensure customOperationType is filled out."""
|
|
5649
5859
|
|
|
5650
5860
|
UNKNOWN = "UNKNOWN"
|
|
5651
5861
|
|
|
@@ -5713,6 +5923,7 @@ class OwnerClass(DictWrapper):
|
|
|
5713
5923
|
type: Union[str, "OwnershipTypeClass"],
|
|
5714
5924
|
typeUrn: Union[None, str]=None,
|
|
5715
5925
|
source: Union[None, "OwnershipSourceClass"]=None,
|
|
5926
|
+
attribution: Union[None, "MetadataAttributionClass"]=None,
|
|
5716
5927
|
):
|
|
5717
5928
|
super().__init__()
|
|
5718
5929
|
|
|
@@ -5720,12 +5931,14 @@ class OwnerClass(DictWrapper):
|
|
|
5720
5931
|
self.type = type
|
|
5721
5932
|
self.typeUrn = typeUrn
|
|
5722
5933
|
self.source = source
|
|
5934
|
+
self.attribution = attribution
|
|
5723
5935
|
|
|
5724
5936
|
def _restore_defaults(self) -> None:
|
|
5725
5937
|
self.owner = str()
|
|
5726
5938
|
self.type = OwnershipTypeClass.CUSTOM
|
|
5727
5939
|
self.typeUrn = self.RECORD_SCHEMA.fields_dict["typeUrn"].default
|
|
5728
5940
|
self.source = self.RECORD_SCHEMA.fields_dict["source"].default
|
|
5941
|
+
self.attribution = self.RECORD_SCHEMA.fields_dict["attribution"].default
|
|
5729
5942
|
|
|
5730
5943
|
|
|
5731
5944
|
@property
|
|
@@ -5770,6 +5983,16 @@ class OwnerClass(DictWrapper):
|
|
|
5770
5983
|
self._inner_dict['source'] = value
|
|
5771
5984
|
|
|
5772
5985
|
|
|
5986
|
+
@property
|
|
5987
|
+
def attribution(self) -> Union[None, "MetadataAttributionClass"]:
|
|
5988
|
+
"""Information about who, why, and how this metadata was applied"""
|
|
5989
|
+
return self._inner_dict.get('attribution') # type: ignore
|
|
5990
|
+
|
|
5991
|
+
@attribution.setter
|
|
5992
|
+
def attribution(self, value: Union[None, "MetadataAttributionClass"]) -> None:
|
|
5993
|
+
self._inner_dict['attribution'] = value
|
|
5994
|
+
|
|
5995
|
+
|
|
5773
5996
|
class OwnershipClass(_Aspect):
|
|
5774
5997
|
"""Ownership information of an entity."""
|
|
5775
5998
|
|
|
@@ -9095,117 +9318,393 @@ class PlatformTypeClass(object):
|
|
|
9095
9318
|
|
|
9096
9319
|
|
|
9097
9320
|
|
|
9098
|
-
class
|
|
9099
|
-
"""
|
|
9321
|
+
class SlackUserInfoClass(_Aspect):
|
|
9322
|
+
"""Information about a Slack user."""
|
|
9100
9323
|
|
|
9101
9324
|
|
|
9102
|
-
ASPECT_NAME = '
|
|
9325
|
+
ASPECT_NAME = 'slackUserInfo'
|
|
9103
9326
|
ASPECT_INFO = {}
|
|
9104
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.
|
|
9327
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataplatform.slack.SlackUserInfo")
|
|
9105
9328
|
|
|
9106
9329
|
def __init__(self,
|
|
9107
|
-
|
|
9108
|
-
|
|
9109
|
-
name:
|
|
9110
|
-
|
|
9330
|
+
slackInstance: str,
|
|
9331
|
+
id: str,
|
|
9332
|
+
name: str,
|
|
9333
|
+
realName: str,
|
|
9334
|
+
displayName: str,
|
|
9335
|
+
teamId: str,
|
|
9336
|
+
isDeleted: bool,
|
|
9337
|
+
isAdmin: bool,
|
|
9338
|
+
isOwner: bool,
|
|
9339
|
+
isPrimaryOwner: bool,
|
|
9340
|
+
isBot: bool,
|
|
9341
|
+
email: Union[None, str]=None,
|
|
9342
|
+
timezone: Union[None, str]=None,
|
|
9343
|
+
timezoneOffset: Union[None, int]=None,
|
|
9344
|
+
title: Union[None, str]=None,
|
|
9345
|
+
phone: Union[None, str]=None,
|
|
9346
|
+
profilePictureUrl: Union[None, str]=None,
|
|
9347
|
+
statusText: Union[None, str]=None,
|
|
9348
|
+
statusEmoji: Union[None, str]=None,
|
|
9349
|
+
lastUpdatedSeconds: Union[None, int]=None,
|
|
9111
9350
|
):
|
|
9112
9351
|
super().__init__()
|
|
9113
9352
|
|
|
9114
|
-
|
|
9115
|
-
|
|
9116
|
-
self.customProperties = dict()
|
|
9117
|
-
else:
|
|
9118
|
-
self.customProperties = customProperties
|
|
9119
|
-
self.externalUrl = externalUrl
|
|
9353
|
+
self.slackInstance = slackInstance
|
|
9354
|
+
self.id = id
|
|
9120
9355
|
self.name = name
|
|
9121
|
-
self.
|
|
9356
|
+
self.realName = realName
|
|
9357
|
+
self.displayName = displayName
|
|
9358
|
+
self.email = email
|
|
9359
|
+
self.teamId = teamId
|
|
9360
|
+
self.isDeleted = isDeleted
|
|
9361
|
+
self.isAdmin = isAdmin
|
|
9362
|
+
self.isOwner = isOwner
|
|
9363
|
+
self.isPrimaryOwner = isPrimaryOwner
|
|
9364
|
+
self.isBot = isBot
|
|
9365
|
+
self.timezone = timezone
|
|
9366
|
+
self.timezoneOffset = timezoneOffset
|
|
9367
|
+
self.title = title
|
|
9368
|
+
self.phone = phone
|
|
9369
|
+
self.profilePictureUrl = profilePictureUrl
|
|
9370
|
+
self.statusText = statusText
|
|
9371
|
+
self.statusEmoji = statusEmoji
|
|
9372
|
+
self.lastUpdatedSeconds = lastUpdatedSeconds
|
|
9122
9373
|
|
|
9123
9374
|
def _restore_defaults(self) -> None:
|
|
9124
|
-
self.
|
|
9125
|
-
self.
|
|
9126
|
-
self.name =
|
|
9127
|
-
self.
|
|
9375
|
+
self.slackInstance = str()
|
|
9376
|
+
self.id = str()
|
|
9377
|
+
self.name = str()
|
|
9378
|
+
self.realName = str()
|
|
9379
|
+
self.displayName = str()
|
|
9380
|
+
self.email = self.RECORD_SCHEMA.fields_dict["email"].default
|
|
9381
|
+
self.teamId = str()
|
|
9382
|
+
self.isDeleted = bool()
|
|
9383
|
+
self.isAdmin = bool()
|
|
9384
|
+
self.isOwner = bool()
|
|
9385
|
+
self.isPrimaryOwner = bool()
|
|
9386
|
+
self.isBot = bool()
|
|
9387
|
+
self.timezone = self.RECORD_SCHEMA.fields_dict["timezone"].default
|
|
9388
|
+
self.timezoneOffset = self.RECORD_SCHEMA.fields_dict["timezoneOffset"].default
|
|
9389
|
+
self.title = self.RECORD_SCHEMA.fields_dict["title"].default
|
|
9390
|
+
self.phone = self.RECORD_SCHEMA.fields_dict["phone"].default
|
|
9391
|
+
self.profilePictureUrl = self.RECORD_SCHEMA.fields_dict["profilePictureUrl"].default
|
|
9392
|
+
self.statusText = self.RECORD_SCHEMA.fields_dict["statusText"].default
|
|
9393
|
+
self.statusEmoji = self.RECORD_SCHEMA.fields_dict["statusEmoji"].default
|
|
9394
|
+
self.lastUpdatedSeconds = self.RECORD_SCHEMA.fields_dict["lastUpdatedSeconds"].default
|
|
9128
9395
|
|
|
9129
9396
|
|
|
9130
9397
|
@property
|
|
9131
|
-
def
|
|
9132
|
-
"""
|
|
9133
|
-
return self._inner_dict.get('
|
|
9398
|
+
def slackInstance(self) -> str:
|
|
9399
|
+
"""The dataplatform instance that this Slack member belongs to."""
|
|
9400
|
+
return self._inner_dict.get('slackInstance') # type: ignore
|
|
9134
9401
|
|
|
9135
|
-
@
|
|
9136
|
-
def
|
|
9137
|
-
self._inner_dict['
|
|
9402
|
+
@slackInstance.setter
|
|
9403
|
+
def slackInstance(self, value: str) -> None:
|
|
9404
|
+
self._inner_dict['slackInstance'] = value
|
|
9138
9405
|
|
|
9139
9406
|
|
|
9140
9407
|
@property
|
|
9141
|
-
def
|
|
9142
|
-
"""
|
|
9143
|
-
return self._inner_dict.get('
|
|
9408
|
+
def id(self) -> str:
|
|
9409
|
+
"""The unique identifier for the Slack member."""
|
|
9410
|
+
return self._inner_dict.get('id') # type: ignore
|
|
9144
9411
|
|
|
9145
|
-
@
|
|
9146
|
-
def
|
|
9147
|
-
self._inner_dict['
|
|
9412
|
+
@id.setter
|
|
9413
|
+
def id(self, value: str) -> None:
|
|
9414
|
+
self._inner_dict['id'] = value
|
|
9148
9415
|
|
|
9149
9416
|
|
|
9150
9417
|
@property
|
|
9151
|
-
def name(self) ->
|
|
9152
|
-
"""
|
|
9418
|
+
def name(self) -> str:
|
|
9419
|
+
"""The username of the Slack member."""
|
|
9153
9420
|
return self._inner_dict.get('name') # type: ignore
|
|
9154
9421
|
|
|
9155
9422
|
@name.setter
|
|
9156
|
-
def name(self, value:
|
|
9423
|
+
def name(self, value: str) -> None:
|
|
9157
9424
|
self._inner_dict['name'] = value
|
|
9158
9425
|
|
|
9159
9426
|
|
|
9160
9427
|
@property
|
|
9161
|
-
def
|
|
9162
|
-
"""
|
|
9163
|
-
return self._inner_dict.get('
|
|
9428
|
+
def realName(self) -> str:
|
|
9429
|
+
"""The real name of the Slack member."""
|
|
9430
|
+
return self._inner_dict.get('realName') # type: ignore
|
|
9164
9431
|
|
|
9165
|
-
@
|
|
9166
|
-
def
|
|
9167
|
-
self._inner_dict['
|
|
9432
|
+
@realName.setter
|
|
9433
|
+
def realName(self, value: str) -> None:
|
|
9434
|
+
self._inner_dict['realName'] = value
|
|
9168
9435
|
|
|
9169
9436
|
|
|
9170
|
-
|
|
9171
|
-
|
|
9172
|
-
|
|
9173
|
-
|
|
9174
|
-
ASPECT_NAME = 'icebergWarehouseInfo'
|
|
9175
|
-
ASPECT_INFO = {}
|
|
9176
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataplatforminstance.IcebergWarehouseInfo")
|
|
9177
|
-
|
|
9178
|
-
def __init__(self,
|
|
9179
|
-
dataRoot: str,
|
|
9180
|
-
clientId: str,
|
|
9181
|
-
clientSecret: str,
|
|
9182
|
-
region: str,
|
|
9183
|
-
env: Union[str, "FabricTypeClass"],
|
|
9184
|
-
role: Union[None, str]=None,
|
|
9185
|
-
tempCredentialExpirationSeconds: Union[None, int]=None,
|
|
9186
|
-
):
|
|
9187
|
-
super().__init__()
|
|
9188
|
-
|
|
9189
|
-
self.dataRoot = dataRoot
|
|
9190
|
-
self.clientId = clientId
|
|
9191
|
-
self.clientSecret = clientSecret
|
|
9192
|
-
self.region = region
|
|
9193
|
-
self.role = role
|
|
9194
|
-
self.tempCredentialExpirationSeconds = tempCredentialExpirationSeconds
|
|
9195
|
-
self.env = env
|
|
9437
|
+
@property
|
|
9438
|
+
def displayName(self) -> str:
|
|
9439
|
+
"""The display name of the Slack member."""
|
|
9440
|
+
return self._inner_dict.get('displayName') # type: ignore
|
|
9196
9441
|
|
|
9197
|
-
|
|
9198
|
-
|
|
9199
|
-
self.
|
|
9200
|
-
self.clientSecret = str()
|
|
9201
|
-
self.region = str()
|
|
9202
|
-
self.role = self.RECORD_SCHEMA.fields_dict["role"].default
|
|
9203
|
-
self.tempCredentialExpirationSeconds = self.RECORD_SCHEMA.fields_dict["tempCredentialExpirationSeconds"].default
|
|
9204
|
-
self.env = FabricTypeClass.DEV
|
|
9442
|
+
@displayName.setter
|
|
9443
|
+
def displayName(self, value: str) -> None:
|
|
9444
|
+
self._inner_dict['displayName'] = value
|
|
9205
9445
|
|
|
9206
9446
|
|
|
9207
9447
|
@property
|
|
9208
|
-
def
|
|
9448
|
+
def email(self) -> Union[None, str]:
|
|
9449
|
+
"""The email associated with the Slack member."""
|
|
9450
|
+
return self._inner_dict.get('email') # type: ignore
|
|
9451
|
+
|
|
9452
|
+
@email.setter
|
|
9453
|
+
def email(self, value: Union[None, str]) -> None:
|
|
9454
|
+
self._inner_dict['email'] = value
|
|
9455
|
+
|
|
9456
|
+
|
|
9457
|
+
@property
|
|
9458
|
+
def teamId(self) -> str:
|
|
9459
|
+
"""The ID associated with the Slack team."""
|
|
9460
|
+
return self._inner_dict.get('teamId') # type: ignore
|
|
9461
|
+
|
|
9462
|
+
@teamId.setter
|
|
9463
|
+
def teamId(self, value: str) -> None:
|
|
9464
|
+
self._inner_dict['teamId'] = value
|
|
9465
|
+
|
|
9466
|
+
|
|
9467
|
+
@property
|
|
9468
|
+
def isDeleted(self) -> bool:
|
|
9469
|
+
"""Whether the member is deleted or not."""
|
|
9470
|
+
return self._inner_dict.get('isDeleted') # type: ignore
|
|
9471
|
+
|
|
9472
|
+
@isDeleted.setter
|
|
9473
|
+
def isDeleted(self, value: bool) -> None:
|
|
9474
|
+
self._inner_dict['isDeleted'] = value
|
|
9475
|
+
|
|
9476
|
+
|
|
9477
|
+
@property
|
|
9478
|
+
def isAdmin(self) -> bool:
|
|
9479
|
+
"""Whether the member is an admin."""
|
|
9480
|
+
return self._inner_dict.get('isAdmin') # type: ignore
|
|
9481
|
+
|
|
9482
|
+
@isAdmin.setter
|
|
9483
|
+
def isAdmin(self, value: bool) -> None:
|
|
9484
|
+
self._inner_dict['isAdmin'] = value
|
|
9485
|
+
|
|
9486
|
+
|
|
9487
|
+
@property
|
|
9488
|
+
def isOwner(self) -> bool:
|
|
9489
|
+
"""Whether the member is an owner."""
|
|
9490
|
+
return self._inner_dict.get('isOwner') # type: ignore
|
|
9491
|
+
|
|
9492
|
+
@isOwner.setter
|
|
9493
|
+
def isOwner(self, value: bool) -> None:
|
|
9494
|
+
self._inner_dict['isOwner'] = value
|
|
9495
|
+
|
|
9496
|
+
|
|
9497
|
+
@property
|
|
9498
|
+
def isPrimaryOwner(self) -> bool:
|
|
9499
|
+
"""Whether the member is a primary owner."""
|
|
9500
|
+
return self._inner_dict.get('isPrimaryOwner') # type: ignore
|
|
9501
|
+
|
|
9502
|
+
@isPrimaryOwner.setter
|
|
9503
|
+
def isPrimaryOwner(self, value: bool) -> None:
|
|
9504
|
+
self._inner_dict['isPrimaryOwner'] = value
|
|
9505
|
+
|
|
9506
|
+
|
|
9507
|
+
@property
|
|
9508
|
+
def isBot(self) -> bool:
|
|
9509
|
+
"""Whether the member is a bot."""
|
|
9510
|
+
return self._inner_dict.get('isBot') # type: ignore
|
|
9511
|
+
|
|
9512
|
+
@isBot.setter
|
|
9513
|
+
def isBot(self, value: bool) -> None:
|
|
9514
|
+
self._inner_dict['isBot'] = value
|
|
9515
|
+
|
|
9516
|
+
|
|
9517
|
+
@property
|
|
9518
|
+
def timezone(self) -> Union[None, str]:
|
|
9519
|
+
"""The timezone of the Slack member."""
|
|
9520
|
+
return self._inner_dict.get('timezone') # type: ignore
|
|
9521
|
+
|
|
9522
|
+
@timezone.setter
|
|
9523
|
+
def timezone(self, value: Union[None, str]) -> None:
|
|
9524
|
+
self._inner_dict['timezone'] = value
|
|
9525
|
+
|
|
9526
|
+
|
|
9527
|
+
@property
|
|
9528
|
+
def timezoneOffset(self) -> Union[None, int]:
|
|
9529
|
+
"""The timezone offset of the Slack member."""
|
|
9530
|
+
return self._inner_dict.get('timezoneOffset') # type: ignore
|
|
9531
|
+
|
|
9532
|
+
@timezoneOffset.setter
|
|
9533
|
+
def timezoneOffset(self, value: Union[None, int]) -> None:
|
|
9534
|
+
self._inner_dict['timezoneOffset'] = value
|
|
9535
|
+
|
|
9536
|
+
|
|
9537
|
+
@property
|
|
9538
|
+
def title(self) -> Union[None, str]:
|
|
9539
|
+
"""The title of the Slack member."""
|
|
9540
|
+
return self._inner_dict.get('title') # type: ignore
|
|
9541
|
+
|
|
9542
|
+
@title.setter
|
|
9543
|
+
def title(self, value: Union[None, str]) -> None:
|
|
9544
|
+
self._inner_dict['title'] = value
|
|
9545
|
+
|
|
9546
|
+
|
|
9547
|
+
@property
|
|
9548
|
+
def phone(self) -> Union[None, str]:
|
|
9549
|
+
"""The phone number of the Slack member."""
|
|
9550
|
+
return self._inner_dict.get('phone') # type: ignore
|
|
9551
|
+
|
|
9552
|
+
@phone.setter
|
|
9553
|
+
def phone(self, value: Union[None, str]) -> None:
|
|
9554
|
+
self._inner_dict['phone'] = value
|
|
9555
|
+
|
|
9556
|
+
|
|
9557
|
+
@property
|
|
9558
|
+
def profilePictureUrl(self) -> Union[None, str]:
|
|
9559
|
+
"""The URL of the member's profile picture."""
|
|
9560
|
+
return self._inner_dict.get('profilePictureUrl') # type: ignore
|
|
9561
|
+
|
|
9562
|
+
@profilePictureUrl.setter
|
|
9563
|
+
def profilePictureUrl(self, value: Union[None, str]) -> None:
|
|
9564
|
+
self._inner_dict['profilePictureUrl'] = value
|
|
9565
|
+
|
|
9566
|
+
|
|
9567
|
+
@property
|
|
9568
|
+
def statusText(self) -> Union[None, str]:
|
|
9569
|
+
"""The status text of the Slack member."""
|
|
9570
|
+
return self._inner_dict.get('statusText') # type: ignore
|
|
9571
|
+
|
|
9572
|
+
@statusText.setter
|
|
9573
|
+
def statusText(self, value: Union[None, str]) -> None:
|
|
9574
|
+
self._inner_dict['statusText'] = value
|
|
9575
|
+
|
|
9576
|
+
|
|
9577
|
+
@property
|
|
9578
|
+
def statusEmoji(self) -> Union[None, str]:
|
|
9579
|
+
"""The status emoji of the Slack member."""
|
|
9580
|
+
return self._inner_dict.get('statusEmoji') # type: ignore
|
|
9581
|
+
|
|
9582
|
+
@statusEmoji.setter
|
|
9583
|
+
def statusEmoji(self, value: Union[None, str]) -> None:
|
|
9584
|
+
self._inner_dict['statusEmoji'] = value
|
|
9585
|
+
|
|
9586
|
+
|
|
9587
|
+
@property
|
|
9588
|
+
def lastUpdatedSeconds(self) -> Union[None, int]:
|
|
9589
|
+
"""The timestamp of when the member was last updated. (in seconds)"""
|
|
9590
|
+
return self._inner_dict.get('lastUpdatedSeconds') # type: ignore
|
|
9591
|
+
|
|
9592
|
+
@lastUpdatedSeconds.setter
|
|
9593
|
+
def lastUpdatedSeconds(self, value: Union[None, int]) -> None:
|
|
9594
|
+
self._inner_dict['lastUpdatedSeconds'] = value
|
|
9595
|
+
|
|
9596
|
+
|
|
9597
|
+
class DataPlatformInstancePropertiesClass(_Aspect):
|
|
9598
|
+
"""Properties associated with a Data Platform Instance"""
|
|
9599
|
+
|
|
9600
|
+
|
|
9601
|
+
ASPECT_NAME = 'dataPlatformInstanceProperties'
|
|
9602
|
+
ASPECT_INFO = {}
|
|
9603
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataplatforminstance.DataPlatformInstanceProperties")
|
|
9604
|
+
|
|
9605
|
+
def __init__(self,
|
|
9606
|
+
customProperties: Optional[Dict[str, str]]=None,
|
|
9607
|
+
externalUrl: Union[None, str]=None,
|
|
9608
|
+
name: Union[None, str]=None,
|
|
9609
|
+
description: Union[None, str]=None,
|
|
9610
|
+
):
|
|
9611
|
+
super().__init__()
|
|
9612
|
+
|
|
9613
|
+
if customProperties is None:
|
|
9614
|
+
# default: {}
|
|
9615
|
+
self.customProperties = dict()
|
|
9616
|
+
else:
|
|
9617
|
+
self.customProperties = customProperties
|
|
9618
|
+
self.externalUrl = externalUrl
|
|
9619
|
+
self.name = name
|
|
9620
|
+
self.description = description
|
|
9621
|
+
|
|
9622
|
+
def _restore_defaults(self) -> None:
|
|
9623
|
+
self.customProperties = dict()
|
|
9624
|
+
self.externalUrl = self.RECORD_SCHEMA.fields_dict["externalUrl"].default
|
|
9625
|
+
self.name = self.RECORD_SCHEMA.fields_dict["name"].default
|
|
9626
|
+
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
9627
|
+
|
|
9628
|
+
|
|
9629
|
+
@property
|
|
9630
|
+
def customProperties(self) -> Dict[str, str]:
|
|
9631
|
+
"""Custom property bag."""
|
|
9632
|
+
return self._inner_dict.get('customProperties') # type: ignore
|
|
9633
|
+
|
|
9634
|
+
@customProperties.setter
|
|
9635
|
+
def customProperties(self, value: Dict[str, str]) -> None:
|
|
9636
|
+
self._inner_dict['customProperties'] = value
|
|
9637
|
+
|
|
9638
|
+
|
|
9639
|
+
@property
|
|
9640
|
+
def externalUrl(self) -> Union[None, str]:
|
|
9641
|
+
"""URL where the reference exist"""
|
|
9642
|
+
return self._inner_dict.get('externalUrl') # type: ignore
|
|
9643
|
+
|
|
9644
|
+
@externalUrl.setter
|
|
9645
|
+
def externalUrl(self, value: Union[None, str]) -> None:
|
|
9646
|
+
self._inner_dict['externalUrl'] = value
|
|
9647
|
+
|
|
9648
|
+
|
|
9649
|
+
@property
|
|
9650
|
+
def name(self) -> Union[None, str]:
|
|
9651
|
+
"""Display name of the Data Platform Instance"""
|
|
9652
|
+
return self._inner_dict.get('name') # type: ignore
|
|
9653
|
+
|
|
9654
|
+
@name.setter
|
|
9655
|
+
def name(self, value: Union[None, str]) -> None:
|
|
9656
|
+
self._inner_dict['name'] = value
|
|
9657
|
+
|
|
9658
|
+
|
|
9659
|
+
@property
|
|
9660
|
+
def description(self) -> Union[None, str]:
|
|
9661
|
+
"""Documentation of the Data Platform Instance"""
|
|
9662
|
+
return self._inner_dict.get('description') # type: ignore
|
|
9663
|
+
|
|
9664
|
+
@description.setter
|
|
9665
|
+
def description(self, value: Union[None, str]) -> None:
|
|
9666
|
+
self._inner_dict['description'] = value
|
|
9667
|
+
|
|
9668
|
+
|
|
9669
|
+
class IcebergWarehouseInfoClass(_Aspect):
|
|
9670
|
+
"""An Iceberg warehouse location and credentails whose read/writes are governed by datahub catalog."""
|
|
9671
|
+
|
|
9672
|
+
|
|
9673
|
+
ASPECT_NAME = 'icebergWarehouseInfo'
|
|
9674
|
+
ASPECT_INFO = {}
|
|
9675
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataplatforminstance.IcebergWarehouseInfo")
|
|
9676
|
+
|
|
9677
|
+
def __init__(self,
|
|
9678
|
+
dataRoot: str,
|
|
9679
|
+
clientId: str,
|
|
9680
|
+
clientSecret: str,
|
|
9681
|
+
region: str,
|
|
9682
|
+
env: Union[str, "FabricTypeClass"],
|
|
9683
|
+
role: Union[None, str]=None,
|
|
9684
|
+
tempCredentialExpirationSeconds: Union[None, int]=None,
|
|
9685
|
+
):
|
|
9686
|
+
super().__init__()
|
|
9687
|
+
|
|
9688
|
+
self.dataRoot = dataRoot
|
|
9689
|
+
self.clientId = clientId
|
|
9690
|
+
self.clientSecret = clientSecret
|
|
9691
|
+
self.region = region
|
|
9692
|
+
self.role = role
|
|
9693
|
+
self.tempCredentialExpirationSeconds = tempCredentialExpirationSeconds
|
|
9694
|
+
self.env = env
|
|
9695
|
+
|
|
9696
|
+
def _restore_defaults(self) -> None:
|
|
9697
|
+
self.dataRoot = str()
|
|
9698
|
+
self.clientId = str()
|
|
9699
|
+
self.clientSecret = str()
|
|
9700
|
+
self.region = str()
|
|
9701
|
+
self.role = self.RECORD_SCHEMA.fields_dict["role"].default
|
|
9702
|
+
self.tempCredentialExpirationSeconds = self.RECORD_SCHEMA.fields_dict["tempCredentialExpirationSeconds"].default
|
|
9703
|
+
self.env = FabricTypeClass.DEV
|
|
9704
|
+
|
|
9705
|
+
|
|
9706
|
+
@property
|
|
9707
|
+
def dataRoot(self) -> str:
|
|
9209
9708
|
"""Path of the root for the backing store of the tables in the warehouse."""
|
|
9210
9709
|
return self._inner_dict.get('dataRoot') # type: ignore
|
|
9211
9710
|
|
|
@@ -9858,7 +10357,7 @@ class DataProductKeyClass(_Aspect):
|
|
|
9858
10357
|
|
|
9859
10358
|
|
|
9860
10359
|
ASPECT_NAME = 'dataProductKey'
|
|
9861
|
-
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
10360
|
+
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'applications', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'assetSettings']}
|
|
9862
10361
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataproduct.DataProductKey")
|
|
9863
10362
|
|
|
9864
10363
|
def __init__(self,
|
|
@@ -9949,7 +10448,7 @@ class DataProductPropertiesClass(_Aspect):
|
|
|
9949
10448
|
|
|
9950
10449
|
@property
|
|
9951
10450
|
def description(self) -> Union[None, str]:
|
|
9952
|
-
"""Documentation of the
|
|
10451
|
+
"""Documentation of the data product"""
|
|
9953
10452
|
return self._inner_dict.get('description') # type: ignore
|
|
9954
10453
|
|
|
9955
10454
|
@description.setter
|
|
@@ -12115,6 +12614,131 @@ class RelationshipFieldMappingClass(DictWrapper):
|
|
|
12115
12614
|
self._inner_dict['destinationField'] = value
|
|
12116
12615
|
|
|
12117
12616
|
|
|
12617
|
+
class NotificationSinkTypeClass(object):
|
|
12618
|
+
"""A type of sink / platform to send a notification to."""
|
|
12619
|
+
|
|
12620
|
+
SLACK = "SLACK"
|
|
12621
|
+
"""Slack target type."""
|
|
12622
|
+
|
|
12623
|
+
EMAIL = "EMAIL"
|
|
12624
|
+
"""Email target type."""
|
|
12625
|
+
|
|
12626
|
+
|
|
12627
|
+
|
|
12628
|
+
class EmailNotificationSettingsClass(DictWrapper):
|
|
12629
|
+
"""Email Notification settings for an actor."""
|
|
12630
|
+
|
|
12631
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.event.notification.settings.EmailNotificationSettings")
|
|
12632
|
+
def __init__(self,
|
|
12633
|
+
email: str,
|
|
12634
|
+
):
|
|
12635
|
+
super().__init__()
|
|
12636
|
+
|
|
12637
|
+
self.email = email
|
|
12638
|
+
|
|
12639
|
+
def _restore_defaults(self) -> None:
|
|
12640
|
+
self.email = str()
|
|
12641
|
+
|
|
12642
|
+
|
|
12643
|
+
@property
|
|
12644
|
+
def email(self) -> str:
|
|
12645
|
+
"""Optional user or group email address"""
|
|
12646
|
+
return self._inner_dict.get('email') # type: ignore
|
|
12647
|
+
|
|
12648
|
+
@email.setter
|
|
12649
|
+
def email(self, value: str) -> None:
|
|
12650
|
+
self._inner_dict['email'] = value
|
|
12651
|
+
|
|
12652
|
+
|
|
12653
|
+
class NotificationSettingsClass(DictWrapper):
|
|
12654
|
+
"""Notification settings for an actor or subscription."""
|
|
12655
|
+
|
|
12656
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.event.notification.settings.NotificationSettings")
|
|
12657
|
+
def __init__(self,
|
|
12658
|
+
sinkTypes: List[Union[str, "NotificationSinkTypeClass"]],
|
|
12659
|
+
slackSettings: Union[None, "SlackNotificationSettingsClass"]=None,
|
|
12660
|
+
emailSettings: Union[None, "EmailNotificationSettingsClass"]=None,
|
|
12661
|
+
):
|
|
12662
|
+
super().__init__()
|
|
12663
|
+
|
|
12664
|
+
self.sinkTypes = sinkTypes
|
|
12665
|
+
self.slackSettings = slackSettings
|
|
12666
|
+
self.emailSettings = emailSettings
|
|
12667
|
+
|
|
12668
|
+
def _restore_defaults(self) -> None:
|
|
12669
|
+
self.sinkTypes = list()
|
|
12670
|
+
self.slackSettings = self.RECORD_SCHEMA.fields_dict["slackSettings"].default
|
|
12671
|
+
self.emailSettings = self.RECORD_SCHEMA.fields_dict["emailSettings"].default
|
|
12672
|
+
|
|
12673
|
+
|
|
12674
|
+
@property
|
|
12675
|
+
def sinkTypes(self) -> List[Union[str, "NotificationSinkTypeClass"]]:
|
|
12676
|
+
"""Sink types that notifications are sent to."""
|
|
12677
|
+
return self._inner_dict.get('sinkTypes') # type: ignore
|
|
12678
|
+
|
|
12679
|
+
@sinkTypes.setter
|
|
12680
|
+
def sinkTypes(self, value: List[Union[str, "NotificationSinkTypeClass"]]) -> None:
|
|
12681
|
+
self._inner_dict['sinkTypes'] = value
|
|
12682
|
+
|
|
12683
|
+
|
|
12684
|
+
@property
|
|
12685
|
+
def slackSettings(self) -> Union[None, "SlackNotificationSettingsClass"]:
|
|
12686
|
+
"""Slack Notification Settings"""
|
|
12687
|
+
return self._inner_dict.get('slackSettings') # type: ignore
|
|
12688
|
+
|
|
12689
|
+
@slackSettings.setter
|
|
12690
|
+
def slackSettings(self, value: Union[None, "SlackNotificationSettingsClass"]) -> None:
|
|
12691
|
+
self._inner_dict['slackSettings'] = value
|
|
12692
|
+
|
|
12693
|
+
|
|
12694
|
+
@property
|
|
12695
|
+
def emailSettings(self) -> Union[None, "EmailNotificationSettingsClass"]:
|
|
12696
|
+
"""Email Notification Settings"""
|
|
12697
|
+
return self._inner_dict.get('emailSettings') # type: ignore
|
|
12698
|
+
|
|
12699
|
+
@emailSettings.setter
|
|
12700
|
+
def emailSettings(self, value: Union[None, "EmailNotificationSettingsClass"]) -> None:
|
|
12701
|
+
self._inner_dict['emailSettings'] = value
|
|
12702
|
+
|
|
12703
|
+
|
|
12704
|
+
class SlackNotificationSettingsClass(DictWrapper):
|
|
12705
|
+
"""Slack Notification settings for an actor."""
|
|
12706
|
+
|
|
12707
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.event.notification.settings.SlackNotificationSettings")
|
|
12708
|
+
def __init__(self,
|
|
12709
|
+
userHandle: Union[None, str]=None,
|
|
12710
|
+
channels: Union[None, List[str]]=None,
|
|
12711
|
+
):
|
|
12712
|
+
super().__init__()
|
|
12713
|
+
|
|
12714
|
+
self.userHandle = userHandle
|
|
12715
|
+
self.channels = channels
|
|
12716
|
+
|
|
12717
|
+
def _restore_defaults(self) -> None:
|
|
12718
|
+
self.userHandle = self.RECORD_SCHEMA.fields_dict["userHandle"].default
|
|
12719
|
+
self.channels = self.RECORD_SCHEMA.fields_dict["channels"].default
|
|
12720
|
+
|
|
12721
|
+
|
|
12722
|
+
@property
|
|
12723
|
+
def userHandle(self) -> Union[None, str]:
|
|
12724
|
+
"""Optional user handle"""
|
|
12725
|
+
return self._inner_dict.get('userHandle') # type: ignore
|
|
12726
|
+
|
|
12727
|
+
@userHandle.setter
|
|
12728
|
+
def userHandle(self, value: Union[None, str]) -> None:
|
|
12729
|
+
self._inner_dict['userHandle'] = value
|
|
12730
|
+
|
|
12731
|
+
|
|
12732
|
+
@property
|
|
12733
|
+
def channels(self) -> Union[None, List[str]]:
|
|
12734
|
+
"""Optional list of channels to send notifications to"""
|
|
12735
|
+
return self._inner_dict.get('channels') # type: ignore
|
|
12736
|
+
|
|
12737
|
+
@channels.setter
|
|
12738
|
+
def channels(self, value: Union[None, List[str]]) -> None:
|
|
12739
|
+
self._inner_dict['channels'] = value
|
|
12740
|
+
|
|
12741
|
+
|
|
12118
12742
|
class ChangeTypeClass(object):
|
|
12119
12743
|
"""Descriptor for a change action"""
|
|
12120
12744
|
|
|
@@ -12464,13 +13088,192 @@ class StructuredExecutionReportClass(DictWrapper):
|
|
|
12464
13088
|
self._inner_dict['contentType'] = value
|
|
12465
13089
|
|
|
12466
13090
|
|
|
12467
|
-
class
|
|
12468
|
-
"""Information
|
|
12469
|
-
|
|
12470
|
-
|
|
12471
|
-
|
|
12472
|
-
|
|
12473
|
-
|
|
13091
|
+
class BucketStorageLocationClass(DictWrapper):
|
|
13092
|
+
"""Information where a file is stored"""
|
|
13093
|
+
|
|
13094
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.file.BucketStorageLocation")
|
|
13095
|
+
def __init__(self,
|
|
13096
|
+
storageBucket: str,
|
|
13097
|
+
storageKey: str,
|
|
13098
|
+
):
|
|
13099
|
+
super().__init__()
|
|
13100
|
+
|
|
13101
|
+
self.storageBucket = storageBucket
|
|
13102
|
+
self.storageKey = storageKey
|
|
13103
|
+
|
|
13104
|
+
def _restore_defaults(self) -> None:
|
|
13105
|
+
self.storageBucket = str()
|
|
13106
|
+
self.storageKey = str()
|
|
13107
|
+
|
|
13108
|
+
|
|
13109
|
+
@property
|
|
13110
|
+
def storageBucket(self) -> str:
|
|
13111
|
+
"""The storage bucket this file is stored in"""
|
|
13112
|
+
return self._inner_dict.get('storageBucket') # type: ignore
|
|
13113
|
+
|
|
13114
|
+
@storageBucket.setter
|
|
13115
|
+
def storageBucket(self, value: str) -> None:
|
|
13116
|
+
self._inner_dict['storageBucket'] = value
|
|
13117
|
+
|
|
13118
|
+
|
|
13119
|
+
@property
|
|
13120
|
+
def storageKey(self) -> str:
|
|
13121
|
+
"""The key for where this file is stored inside of the given bucket"""
|
|
13122
|
+
return self._inner_dict.get('storageKey') # type: ignore
|
|
13123
|
+
|
|
13124
|
+
@storageKey.setter
|
|
13125
|
+
def storageKey(self, value: str) -> None:
|
|
13126
|
+
self._inner_dict['storageKey'] = value
|
|
13127
|
+
|
|
13128
|
+
|
|
13129
|
+
class DataHubFileInfoClass(_Aspect):
|
|
13130
|
+
"""Information about a DataHub file - a file stored in S3 for use within DataHub platform features like documentation, home pages, and announcements."""
|
|
13131
|
+
|
|
13132
|
+
|
|
13133
|
+
ASPECT_NAME = 'dataHubFileInfo'
|
|
13134
|
+
ASPECT_INFO = {}
|
|
13135
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.file.DataHubFileInfo")
|
|
13136
|
+
|
|
13137
|
+
def __init__(self,
|
|
13138
|
+
bucketStorageLocation: "BucketStorageLocationClass",
|
|
13139
|
+
originalFileName: str,
|
|
13140
|
+
mimeType: str,
|
|
13141
|
+
sizeInBytes: int,
|
|
13142
|
+
scenario: Union[str, "FileUploadScenarioClass"],
|
|
13143
|
+
created: "AuditStampClass",
|
|
13144
|
+
referencedByAsset: Union[None, str]=None,
|
|
13145
|
+
schemaField: Union[None, str]=None,
|
|
13146
|
+
contentHash: Union[None, str]=None,
|
|
13147
|
+
):
|
|
13148
|
+
super().__init__()
|
|
13149
|
+
|
|
13150
|
+
self.bucketStorageLocation = bucketStorageLocation
|
|
13151
|
+
self.originalFileName = originalFileName
|
|
13152
|
+
self.mimeType = mimeType
|
|
13153
|
+
self.sizeInBytes = sizeInBytes
|
|
13154
|
+
self.scenario = scenario
|
|
13155
|
+
self.referencedByAsset = referencedByAsset
|
|
13156
|
+
self.schemaField = schemaField
|
|
13157
|
+
self.created = created
|
|
13158
|
+
self.contentHash = contentHash
|
|
13159
|
+
|
|
13160
|
+
def _restore_defaults(self) -> None:
|
|
13161
|
+
self.bucketStorageLocation = BucketStorageLocationClass._construct_with_defaults()
|
|
13162
|
+
self.originalFileName = str()
|
|
13163
|
+
self.mimeType = str()
|
|
13164
|
+
self.sizeInBytes = int()
|
|
13165
|
+
self.scenario = FileUploadScenarioClass.ASSET_DOCUMENTATION
|
|
13166
|
+
self.referencedByAsset = self.RECORD_SCHEMA.fields_dict["referencedByAsset"].default
|
|
13167
|
+
self.schemaField = self.RECORD_SCHEMA.fields_dict["schemaField"].default
|
|
13168
|
+
self.created = AuditStampClass._construct_with_defaults()
|
|
13169
|
+
self.contentHash = self.RECORD_SCHEMA.fields_dict["contentHash"].default
|
|
13170
|
+
|
|
13171
|
+
|
|
13172
|
+
@property
|
|
13173
|
+
def bucketStorageLocation(self) -> "BucketStorageLocationClass":
|
|
13174
|
+
"""Info about where a file is stored"""
|
|
13175
|
+
return self._inner_dict.get('bucketStorageLocation') # type: ignore
|
|
13176
|
+
|
|
13177
|
+
@bucketStorageLocation.setter
|
|
13178
|
+
def bucketStorageLocation(self, value: "BucketStorageLocationClass") -> None:
|
|
13179
|
+
self._inner_dict['bucketStorageLocation'] = value
|
|
13180
|
+
|
|
13181
|
+
|
|
13182
|
+
@property
|
|
13183
|
+
def originalFileName(self) -> str:
|
|
13184
|
+
"""The original filename as uploaded by the user"""
|
|
13185
|
+
return self._inner_dict.get('originalFileName') # type: ignore
|
|
13186
|
+
|
|
13187
|
+
@originalFileName.setter
|
|
13188
|
+
def originalFileName(self, value: str) -> None:
|
|
13189
|
+
self._inner_dict['originalFileName'] = value
|
|
13190
|
+
|
|
13191
|
+
|
|
13192
|
+
@property
|
|
13193
|
+
def mimeType(self) -> str:
|
|
13194
|
+
"""MIME type of the file (e.g., image/png, application/pdf)"""
|
|
13195
|
+
return self._inner_dict.get('mimeType') # type: ignore
|
|
13196
|
+
|
|
13197
|
+
@mimeType.setter
|
|
13198
|
+
def mimeType(self, value: str) -> None:
|
|
13199
|
+
self._inner_dict['mimeType'] = value
|
|
13200
|
+
|
|
13201
|
+
|
|
13202
|
+
@property
|
|
13203
|
+
def sizeInBytes(self) -> int:
|
|
13204
|
+
"""Size of the file in bytes"""
|
|
13205
|
+
return self._inner_dict.get('sizeInBytes') # type: ignore
|
|
13206
|
+
|
|
13207
|
+
@sizeInBytes.setter
|
|
13208
|
+
def sizeInBytes(self, value: int) -> None:
|
|
13209
|
+
self._inner_dict['sizeInBytes'] = value
|
|
13210
|
+
|
|
13211
|
+
|
|
13212
|
+
@property
|
|
13213
|
+
def scenario(self) -> Union[str, "FileUploadScenarioClass"]:
|
|
13214
|
+
"""The scenario/context in which this file was uploaded"""
|
|
13215
|
+
return self._inner_dict.get('scenario') # type: ignore
|
|
13216
|
+
|
|
13217
|
+
@scenario.setter
|
|
13218
|
+
def scenario(self, value: Union[str, "FileUploadScenarioClass"]) -> None:
|
|
13219
|
+
self._inner_dict['scenario'] = value
|
|
13220
|
+
|
|
13221
|
+
|
|
13222
|
+
@property
|
|
13223
|
+
def referencedByAsset(self) -> Union[None, str]:
|
|
13224
|
+
"""Optional URN of the entity this file is associated with (e.g., the dataset whose docs contain this file)"""
|
|
13225
|
+
return self._inner_dict.get('referencedByAsset') # type: ignore
|
|
13226
|
+
|
|
13227
|
+
@referencedByAsset.setter
|
|
13228
|
+
def referencedByAsset(self, value: Union[None, str]) -> None:
|
|
13229
|
+
self._inner_dict['referencedByAsset'] = value
|
|
13230
|
+
|
|
13231
|
+
|
|
13232
|
+
@property
|
|
13233
|
+
def schemaField(self) -> Union[None, str]:
|
|
13234
|
+
"""The dataset schema field urn this file is referenced by"""
|
|
13235
|
+
return self._inner_dict.get('schemaField') # type: ignore
|
|
13236
|
+
|
|
13237
|
+
@schemaField.setter
|
|
13238
|
+
def schemaField(self, value: Union[None, str]) -> None:
|
|
13239
|
+
self._inner_dict['schemaField'] = value
|
|
13240
|
+
|
|
13241
|
+
|
|
13242
|
+
@property
|
|
13243
|
+
def created(self) -> "AuditStampClass":
|
|
13244
|
+
"""Timestamp when this file was created and by whom"""
|
|
13245
|
+
return self._inner_dict.get('created') # type: ignore
|
|
13246
|
+
|
|
13247
|
+
@created.setter
|
|
13248
|
+
def created(self, value: "AuditStampClass") -> None:
|
|
13249
|
+
self._inner_dict['created'] = value
|
|
13250
|
+
|
|
13251
|
+
|
|
13252
|
+
@property
|
|
13253
|
+
def contentHash(self) -> Union[None, str]:
|
|
13254
|
+
"""SHA-256 hash of file contents"""
|
|
13255
|
+
return self._inner_dict.get('contentHash') # type: ignore
|
|
13256
|
+
|
|
13257
|
+
@contentHash.setter
|
|
13258
|
+
def contentHash(self, value: Union[None, str]) -> None:
|
|
13259
|
+
self._inner_dict['contentHash'] = value
|
|
13260
|
+
|
|
13261
|
+
|
|
13262
|
+
class FileUploadScenarioClass(object):
|
|
13263
|
+
# No docs available.
|
|
13264
|
+
|
|
13265
|
+
ASSET_DOCUMENTATION = "ASSET_DOCUMENTATION"
|
|
13266
|
+
"""File uploaded for entity documentation"""
|
|
13267
|
+
|
|
13268
|
+
|
|
13269
|
+
|
|
13270
|
+
class DynamicFormAssignmentClass(_Aspect):
|
|
13271
|
+
"""Information about how a form is assigned to entities dynamically. Provide a filter to
|
|
13272
|
+
match a set of entities instead of explicitly applying a form to specific entities."""
|
|
13273
|
+
|
|
13274
|
+
|
|
13275
|
+
ASPECT_NAME = 'dynamicFormAssignment'
|
|
13276
|
+
ASPECT_INFO = {}
|
|
12474
13277
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.form.DynamicFormAssignment")
|
|
12475
13278
|
|
|
12476
13279
|
def __init__(self,
|
|
@@ -13400,6 +14203,7 @@ class CorpUserEditableInfoClass(_Aspect):
|
|
|
13400
14203
|
slack: Union[None, str]=None,
|
|
13401
14204
|
phone: Union[None, str]=None,
|
|
13402
14205
|
email: Union[None, str]=None,
|
|
14206
|
+
informationSources: Union[None, List[str]]=None,
|
|
13403
14207
|
):
|
|
13404
14208
|
super().__init__()
|
|
13405
14209
|
|
|
@@ -13415,7 +14219,7 @@ class CorpUserEditableInfoClass(_Aspect):
|
|
|
13415
14219
|
else:
|
|
13416
14220
|
self.skills = skills
|
|
13417
14221
|
if pictureLink is None:
|
|
13418
|
-
# default: '
|
|
14222
|
+
# default: 'assets/platforms/default_avatar.png'
|
|
13419
14223
|
self.pictureLink = self.RECORD_SCHEMA.fields_dict["pictureLink"].default
|
|
13420
14224
|
else:
|
|
13421
14225
|
self.pictureLink = pictureLink
|
|
@@ -13426,6 +14230,7 @@ class CorpUserEditableInfoClass(_Aspect):
|
|
|
13426
14230
|
self.slack = slack
|
|
13427
14231
|
self.phone = phone
|
|
13428
14232
|
self.email = email
|
|
14233
|
+
self.informationSources = informationSources
|
|
13429
14234
|
|
|
13430
14235
|
def _restore_defaults(self) -> None:
|
|
13431
14236
|
self.aboutMe = self.RECORD_SCHEMA.fields_dict["aboutMe"].default
|
|
@@ -13439,6 +14244,7 @@ class CorpUserEditableInfoClass(_Aspect):
|
|
|
13439
14244
|
self.slack = self.RECORD_SCHEMA.fields_dict["slack"].default
|
|
13440
14245
|
self.phone = self.RECORD_SCHEMA.fields_dict["phone"].default
|
|
13441
14246
|
self.email = self.RECORD_SCHEMA.fields_dict["email"].default
|
|
14247
|
+
self.informationSources = self.RECORD_SCHEMA.fields_dict["informationSources"].default
|
|
13442
14248
|
|
|
13443
14249
|
|
|
13444
14250
|
@property
|
|
@@ -13551,6 +14357,56 @@ class CorpUserEditableInfoClass(_Aspect):
|
|
|
13551
14357
|
self._inner_dict['email'] = value
|
|
13552
14358
|
|
|
13553
14359
|
|
|
14360
|
+
@property
|
|
14361
|
+
def informationSources(self) -> Union[None, List[str]]:
|
|
14362
|
+
"""Information sources that have been used to populate this CorpUserEditableInfo.
|
|
14363
|
+
These include platform resources, such as Slack members or Looker users.
|
|
14364
|
+
They can also refer to other semantic urns in the future."""
|
|
14365
|
+
return self._inner_dict.get('informationSources') # type: ignore
|
|
14366
|
+
|
|
14367
|
+
@informationSources.setter
|
|
14368
|
+
def informationSources(self, value: Union[None, List[str]]) -> None:
|
|
14369
|
+
self._inner_dict['informationSources'] = value
|
|
14370
|
+
|
|
14371
|
+
|
|
14372
|
+
class CorpUserHomePageSettingsClass(DictWrapper):
|
|
14373
|
+
"""Settings related to the home page for a user"""
|
|
14374
|
+
|
|
14375
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.identity.CorpUserHomePageSettings")
|
|
14376
|
+
def __init__(self,
|
|
14377
|
+
pageTemplate: Union[None, str]=None,
|
|
14378
|
+
dismissedAnnouncements: Union[None, List[str]]=None,
|
|
14379
|
+
):
|
|
14380
|
+
super().__init__()
|
|
14381
|
+
|
|
14382
|
+
self.pageTemplate = pageTemplate
|
|
14383
|
+
self.dismissedAnnouncements = dismissedAnnouncements
|
|
14384
|
+
|
|
14385
|
+
def _restore_defaults(self) -> None:
|
|
14386
|
+
self.pageTemplate = self.RECORD_SCHEMA.fields_dict["pageTemplate"].default
|
|
14387
|
+
self.dismissedAnnouncements = self.RECORD_SCHEMA.fields_dict["dismissedAnnouncements"].default
|
|
14388
|
+
|
|
14389
|
+
|
|
14390
|
+
@property
|
|
14391
|
+
def pageTemplate(self) -> Union[None, str]:
|
|
14392
|
+
"""The page template that will be rendered in the UI by default for this user"""
|
|
14393
|
+
return self._inner_dict.get('pageTemplate') # type: ignore
|
|
14394
|
+
|
|
14395
|
+
@pageTemplate.setter
|
|
14396
|
+
def pageTemplate(self, value: Union[None, str]) -> None:
|
|
14397
|
+
self._inner_dict['pageTemplate'] = value
|
|
14398
|
+
|
|
14399
|
+
|
|
14400
|
+
@property
|
|
14401
|
+
def dismissedAnnouncements(self) -> Union[None, List[str]]:
|
|
14402
|
+
"""The list of announcement urns that have been dismissed by the user"""
|
|
14403
|
+
return self._inner_dict.get('dismissedAnnouncements') # type: ignore
|
|
14404
|
+
|
|
14405
|
+
@dismissedAnnouncements.setter
|
|
14406
|
+
def dismissedAnnouncements(self, value: Union[None, List[str]]) -> None:
|
|
14407
|
+
self._inner_dict['dismissedAnnouncements'] = value
|
|
14408
|
+
|
|
14409
|
+
|
|
13554
14410
|
class CorpUserInfoClass(_Aspect):
|
|
13555
14411
|
"""Linkedin corp user information"""
|
|
13556
14412
|
|
|
@@ -13755,15 +14611,21 @@ class CorpUserSettingsClass(_Aspect):
|
|
|
13755
14611
|
def __init__(self,
|
|
13756
14612
|
appearance: "CorpUserAppearanceSettingsClass",
|
|
13757
14613
|
views: Union[None, "CorpUserViewsSettingsClass"]=None,
|
|
14614
|
+
notificationSettings: Union[None, "NotificationSettingsClass"]=None,
|
|
14615
|
+
homePage: Union[None, "CorpUserHomePageSettingsClass"]=None,
|
|
13758
14616
|
):
|
|
13759
14617
|
super().__init__()
|
|
13760
14618
|
|
|
13761
14619
|
self.appearance = appearance
|
|
13762
14620
|
self.views = views
|
|
14621
|
+
self.notificationSettings = notificationSettings
|
|
14622
|
+
self.homePage = homePage
|
|
13763
14623
|
|
|
13764
14624
|
def _restore_defaults(self) -> None:
|
|
13765
14625
|
self.appearance = CorpUserAppearanceSettingsClass._construct_with_defaults()
|
|
13766
14626
|
self.views = self.RECORD_SCHEMA.fields_dict["views"].default
|
|
14627
|
+
self.notificationSettings = self.RECORD_SCHEMA.fields_dict["notificationSettings"].default
|
|
14628
|
+
self.homePage = self.RECORD_SCHEMA.fields_dict["homePage"].default
|
|
13767
14629
|
|
|
13768
14630
|
|
|
13769
14631
|
@property
|
|
@@ -13786,6 +14648,26 @@ class CorpUserSettingsClass(_Aspect):
|
|
|
13786
14648
|
self._inner_dict['views'] = value
|
|
13787
14649
|
|
|
13788
14650
|
|
|
14651
|
+
@property
|
|
14652
|
+
def notificationSettings(self) -> Union[None, "NotificationSettingsClass"]:
|
|
14653
|
+
"""Notification settings for a user"""
|
|
14654
|
+
return self._inner_dict.get('notificationSettings') # type: ignore
|
|
14655
|
+
|
|
14656
|
+
@notificationSettings.setter
|
|
14657
|
+
def notificationSettings(self, value: Union[None, "NotificationSettingsClass"]) -> None:
|
|
14658
|
+
self._inner_dict['notificationSettings'] = value
|
|
14659
|
+
|
|
14660
|
+
|
|
14661
|
+
@property
|
|
14662
|
+
def homePage(self) -> Union[None, "CorpUserHomePageSettingsClass"]:
|
|
14663
|
+
"""Settings related to the home page for a user"""
|
|
14664
|
+
return self._inner_dict.get('homePage') # type: ignore
|
|
14665
|
+
|
|
14666
|
+
@homePage.setter
|
|
14667
|
+
def homePage(self, value: Union[None, "CorpUserHomePageSettingsClass"]) -> None:
|
|
14668
|
+
self._inner_dict['homePage'] = value
|
|
14669
|
+
|
|
14670
|
+
|
|
13789
14671
|
class CorpUserStatusClass(_Aspect):
|
|
13790
14672
|
"""The status of the user, e.g. provisioned, active, suspended, etc."""
|
|
13791
14673
|
|
|
@@ -14039,7 +14921,7 @@ class IncidentInfoClass(_Aspect):
|
|
|
14039
14921
|
customType: Union[None, str]=None,
|
|
14040
14922
|
title: Union[None, str]=None,
|
|
14041
14923
|
description: Union[None, str]=None,
|
|
14042
|
-
priority:
|
|
14924
|
+
priority: Union[None, int]=None,
|
|
14043
14925
|
assignees: Union[None, List["IncidentAssigneeClass"]]=None,
|
|
14044
14926
|
source: Union[None, "IncidentSourceClass"]=None,
|
|
14045
14927
|
startedAt: Union[None, int]=None,
|
|
@@ -14051,11 +14933,7 @@ class IncidentInfoClass(_Aspect):
|
|
|
14051
14933
|
self.title = title
|
|
14052
14934
|
self.description = description
|
|
14053
14935
|
self.entities = entities
|
|
14054
|
-
|
|
14055
|
-
# default: 0
|
|
14056
|
-
self.priority = self.RECORD_SCHEMA.fields_dict["priority"].default
|
|
14057
|
-
else:
|
|
14058
|
-
self.priority = priority
|
|
14936
|
+
self.priority = priority
|
|
14059
14937
|
self.assignees = assignees
|
|
14060
14938
|
self.status = status
|
|
14061
14939
|
self.source = source
|
|
@@ -14127,14 +15005,14 @@ class IncidentInfoClass(_Aspect):
|
|
|
14127
15005
|
|
|
14128
15006
|
|
|
14129
15007
|
@property
|
|
14130
|
-
def priority(self) -> Union[
|
|
15008
|
+
def priority(self) -> Union[None, int]:
|
|
14131
15009
|
"""A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.
|
|
14132
15010
|
Currently supported: 0 - CRITICAL, 1 - HIGH, 2 - MED, 3 - LOW
|
|
14133
15011
|
(We probably should have modeled as an enum)"""
|
|
14134
15012
|
return self._inner_dict.get('priority') # type: ignore
|
|
14135
15013
|
|
|
14136
15014
|
@priority.setter
|
|
14137
|
-
def priority(self, value: Union[
|
|
15015
|
+
def priority(self, value: Union[None, int]) -> None:
|
|
14138
15016
|
self._inner_dict['priority'] = value
|
|
14139
15017
|
|
|
14140
15018
|
|
|
@@ -14613,6 +15491,35 @@ class DataHubIngestionSourceSourceTypeClass(object):
|
|
|
14613
15491
|
|
|
14614
15492
|
|
|
14615
15493
|
|
|
15494
|
+
class LogicalParentClass(_Aspect):
|
|
15495
|
+
"""Relates a physical asset to a logical model."""
|
|
15496
|
+
|
|
15497
|
+
|
|
15498
|
+
ASPECT_NAME = 'logicalParent'
|
|
15499
|
+
ASPECT_INFO = {}
|
|
15500
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.logical.LogicalParent")
|
|
15501
|
+
|
|
15502
|
+
def __init__(self,
|
|
15503
|
+
parent: Union[None, "EdgeClass"]=None,
|
|
15504
|
+
):
|
|
15505
|
+
super().__init__()
|
|
15506
|
+
|
|
15507
|
+
self.parent = parent
|
|
15508
|
+
|
|
15509
|
+
def _restore_defaults(self) -> None:
|
|
15510
|
+
self.parent = self.RECORD_SCHEMA.fields_dict["parent"].default
|
|
15511
|
+
|
|
15512
|
+
|
|
15513
|
+
@property
|
|
15514
|
+
def parent(self) -> Union[None, "EdgeClass"]:
|
|
15515
|
+
# No docs available.
|
|
15516
|
+
return self._inner_dict.get('parent') # type: ignore
|
|
15517
|
+
|
|
15518
|
+
@parent.setter
|
|
15519
|
+
def parent(self, value: Union[None, "EdgeClass"]) -> None:
|
|
15520
|
+
self._inner_dict['parent'] = value
|
|
15521
|
+
|
|
15522
|
+
|
|
14616
15523
|
class AssertionKeyClass(_Aspect):
|
|
14617
15524
|
"""Key for a Assertion"""
|
|
14618
15525
|
|
|
@@ -14647,7 +15554,7 @@ class ChartKeyClass(_Aspect):
|
|
|
14647
15554
|
|
|
14648
15555
|
|
|
14649
15556
|
ASPECT_NAME = 'chartKey'
|
|
14650
|
-
ASPECT_INFO = {'keyForEntity': 'chart', 'entityCategory': 'core', 'entityAspects': ['chartInfo', 'editableChartProperties', 'chartQuery', 'inputFields', 'chartUsageStatistics', 'embed', 'browsePaths', 'domains', 'container', 'deprecation', 'ownership', 'status', 'institutionalMemory', 'dataPlatformInstance', 'globalTags', 'glossaryTerms', 'browsePathsV2', 'subTypes', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults']}
|
|
15557
|
+
ASPECT_INFO = {'keyForEntity': 'chart', 'entityCategory': 'core', 'entityAspects': ['chartInfo', 'editableChartProperties', 'chartQuery', 'inputFields', 'chartUsageStatistics', 'embed', 'browsePaths', 'domains', 'applications', 'container', 'deprecation', 'ownership', 'status', 'institutionalMemory', 'dataPlatformInstance', 'globalTags', 'glossaryTerms', 'browsePathsV2', 'subTypes', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults']}
|
|
14651
15558
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.ChartKey")
|
|
14652
15559
|
|
|
14653
15560
|
def __init__(self,
|
|
@@ -14689,7 +15596,7 @@ class ContainerKeyClass(_Aspect):
|
|
|
14689
15596
|
|
|
14690
15597
|
|
|
14691
15598
|
ASPECT_NAME = 'containerKey'
|
|
14692
|
-
ASPECT_INFO = {'keyForEntity': 'container', 'entityCategory': 'core', 'entityAspects': ['containerProperties', 'editableContainerProperties', 'dataPlatformInstance', 'subTypes', 'ownership', 'deprecation', 'container', 'globalTags', 'glossaryTerms', 'institutionalMemory', 'browsePaths', 'status', 'domains', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'access'], 'entityDoc': 'A container of related data assets.'}
|
|
15599
|
+
ASPECT_INFO = {'keyForEntity': 'container', 'entityCategory': 'core', 'entityAspects': ['containerProperties', 'editableContainerProperties', 'dataPlatformInstance', 'subTypes', 'ownership', 'deprecation', 'container', 'globalTags', 'glossaryTerms', 'institutionalMemory', 'browsePaths', 'status', 'domains', 'applications', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'access'], 'entityDoc': 'A container of related data assets.'}
|
|
14693
15600
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.ContainerKey")
|
|
14694
15601
|
|
|
14695
15602
|
def __init__(self,
|
|
@@ -14747,7 +15654,7 @@ class CorpUserKeyClass(_Aspect):
|
|
|
14747
15654
|
|
|
14748
15655
|
|
|
14749
15656
|
ASPECT_NAME = 'corpUserKey'
|
|
14750
|
-
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
15657
|
+
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'slackUserInfo'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
14751
15658
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.CorpUserKey")
|
|
14752
15659
|
|
|
14753
15660
|
def __init__(self,
|
|
@@ -14776,7 +15683,7 @@ class DashboardKeyClass(_Aspect):
|
|
|
14776
15683
|
|
|
14777
15684
|
|
|
14778
15685
|
ASPECT_NAME = 'dashboardKey'
|
|
14779
|
-
ASPECT_INFO = {'keyForEntity': 'dashboard', 'entityCategory': '_unset_', 'entityAspects': ['domains', 'container', 'deprecation', 'dashboardUsageStatistics', 'inputFields', 'subTypes', 'embed', 'dashboardInfo', 'editableDashboardProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults']}
|
|
15686
|
+
ASPECT_INFO = {'keyForEntity': 'dashboard', 'entityCategory': '_unset_', 'entityAspects': ['domains', 'applications', 'container', 'deprecation', 'dashboardUsageStatistics', 'inputFields', 'subTypes', 'embed', 'dashboardInfo', 'editableDashboardProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults']}
|
|
14780
15687
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DashboardKey")
|
|
14781
15688
|
|
|
14782
15689
|
def __init__(self,
|
|
@@ -14818,7 +15725,7 @@ class DataContractKeyClass(_Aspect):
|
|
|
14818
15725
|
|
|
14819
15726
|
|
|
14820
15727
|
ASPECT_NAME = 'dataContractKey'
|
|
14821
|
-
ASPECT_INFO = {'keyForEntity': 'dataContract', 'entityCategory': 'core', 'entityAspects': ['dataContractProperties', 'dataContractStatus', 'status']}
|
|
15728
|
+
ASPECT_INFO = {'keyForEntity': 'dataContract', 'entityCategory': 'core', 'entityAspects': ['dataContractProperties', 'dataContractStatus', 'status', 'structuredProperties']}
|
|
14822
15729
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataContractKey")
|
|
14823
15730
|
|
|
14824
15731
|
def __init__(self,
|
|
@@ -14847,7 +15754,7 @@ class DataFlowKeyClass(_Aspect):
|
|
|
14847
15754
|
|
|
14848
15755
|
|
|
14849
15756
|
ASPECT_NAME = 'dataFlowKey'
|
|
14850
|
-
ASPECT_INFO = {'keyForEntity': 'dataFlow', 'entityCategory': 'core', 'entityAspects': ['domains', 'deprecation', 'versionInfo', 'dataFlowInfo', 'editableDataFlowProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'subTypes', 'testResults']}
|
|
15757
|
+
ASPECT_INFO = {'keyForEntity': 'dataFlow', 'entityCategory': 'core', 'entityAspects': ['domains', 'applications', 'deprecation', 'versionInfo', 'dataFlowInfo', 'editableDataFlowProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'subTypes', 'testResults']}
|
|
14851
15758
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataFlowKey")
|
|
14852
15759
|
|
|
14853
15760
|
def __init__(self,
|
|
@@ -14984,12 +15891,41 @@ class DataHubConnectionKeyClass(_Aspect):
|
|
|
14984
15891
|
self._inner_dict['id'] = value
|
|
14985
15892
|
|
|
14986
15893
|
|
|
15894
|
+
class DataHubFileKeyClass(_Aspect):
|
|
15895
|
+
"""Key for a DataHubFile"""
|
|
15896
|
+
|
|
15897
|
+
|
|
15898
|
+
ASPECT_NAME = 'dataHubFileKey'
|
|
15899
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubFile', 'entityCategory': 'core', 'entityAspects': ['dataHubFileInfo']}
|
|
15900
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubFileKey")
|
|
15901
|
+
|
|
15902
|
+
def __init__(self,
|
|
15903
|
+
id: str,
|
|
15904
|
+
):
|
|
15905
|
+
super().__init__()
|
|
15906
|
+
|
|
15907
|
+
self.id = id
|
|
15908
|
+
|
|
15909
|
+
def _restore_defaults(self) -> None:
|
|
15910
|
+
self.id = str()
|
|
15911
|
+
|
|
15912
|
+
|
|
15913
|
+
@property
|
|
15914
|
+
def id(self) -> str:
|
|
15915
|
+
"""Unique id for the file."""
|
|
15916
|
+
return self._inner_dict.get('id') # type: ignore
|
|
15917
|
+
|
|
15918
|
+
@id.setter
|
|
15919
|
+
def id(self, value: str) -> None:
|
|
15920
|
+
self._inner_dict['id'] = value
|
|
15921
|
+
|
|
15922
|
+
|
|
14987
15923
|
class DataHubIngestionSourceKeyClass(_Aspect):
|
|
14988
15924
|
"""Key for a DataHub ingestion source"""
|
|
14989
15925
|
|
|
14990
15926
|
|
|
14991
15927
|
ASPECT_NAME = 'dataHubIngestionSourceKey'
|
|
14992
|
-
ASPECT_INFO = {'keyForEntity': 'dataHubIngestionSource', 'entityCategory': 'internal', 'entityAspects': ['dataHubIngestionSourceInfo']}
|
|
15928
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubIngestionSource', 'entityCategory': 'internal', 'entityAspects': ['dataHubIngestionSourceInfo', 'ownership']}
|
|
14993
15929
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubIngestionSourceKey")
|
|
14994
15930
|
|
|
14995
15931
|
def __init__(self,
|
|
@@ -15013,6 +15949,93 @@ class DataHubIngestionSourceKeyClass(_Aspect):
|
|
|
15013
15949
|
self._inner_dict['id'] = value
|
|
15014
15950
|
|
|
15015
15951
|
|
|
15952
|
+
class DataHubOpenAPISchemaKeyClass(_Aspect):
|
|
15953
|
+
"""Key for a Query"""
|
|
15954
|
+
|
|
15955
|
+
|
|
15956
|
+
ASPECT_NAME = 'dataHubOpenAPISchemaKey'
|
|
15957
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubOpenAPISchema', 'entityCategory': 'internal', 'entityAspects': ['systemMetadata'], 'entityDoc': 'Contains aspects which are used in OpenAPI requests/responses which are not otherwise present in the data model.'}
|
|
15958
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubOpenAPISchemaKey")
|
|
15959
|
+
|
|
15960
|
+
def __init__(self,
|
|
15961
|
+
id: str,
|
|
15962
|
+
):
|
|
15963
|
+
super().__init__()
|
|
15964
|
+
|
|
15965
|
+
self.id = id
|
|
15966
|
+
|
|
15967
|
+
def _restore_defaults(self) -> None:
|
|
15968
|
+
self.id = str()
|
|
15969
|
+
|
|
15970
|
+
|
|
15971
|
+
@property
|
|
15972
|
+
def id(self) -> str:
|
|
15973
|
+
"""A unique id for the DataHub OpenAPI schema."""
|
|
15974
|
+
return self._inner_dict.get('id') # type: ignore
|
|
15975
|
+
|
|
15976
|
+
@id.setter
|
|
15977
|
+
def id(self, value: str) -> None:
|
|
15978
|
+
self._inner_dict['id'] = value
|
|
15979
|
+
|
|
15980
|
+
|
|
15981
|
+
class DataHubPageModuleKeyClass(_Aspect):
|
|
15982
|
+
"""Key for a DataHubPageModule"""
|
|
15983
|
+
|
|
15984
|
+
|
|
15985
|
+
ASPECT_NAME = 'dataHubPageModuleKey'
|
|
15986
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubPageModule', 'entityCategory': 'core', 'entityAspects': ['dataHubPageModuleProperties']}
|
|
15987
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubPageModuleKey")
|
|
15988
|
+
|
|
15989
|
+
def __init__(self,
|
|
15990
|
+
id: str,
|
|
15991
|
+
):
|
|
15992
|
+
super().__init__()
|
|
15993
|
+
|
|
15994
|
+
self.id = id
|
|
15995
|
+
|
|
15996
|
+
def _restore_defaults(self) -> None:
|
|
15997
|
+
self.id = str()
|
|
15998
|
+
|
|
15999
|
+
|
|
16000
|
+
@property
|
|
16001
|
+
def id(self) -> str:
|
|
16002
|
+
"""Unique id for the module."""
|
|
16003
|
+
return self._inner_dict.get('id') # type: ignore
|
|
16004
|
+
|
|
16005
|
+
@id.setter
|
|
16006
|
+
def id(self, value: str) -> None:
|
|
16007
|
+
self._inner_dict['id'] = value
|
|
16008
|
+
|
|
16009
|
+
|
|
16010
|
+
class DataHubPageTemplateKeyClass(_Aspect):
|
|
16011
|
+
"""Key for a DataHubPageTemplate"""
|
|
16012
|
+
|
|
16013
|
+
|
|
16014
|
+
ASPECT_NAME = 'dataHubPageTemplateKey'
|
|
16015
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubPageTemplate', 'entityCategory': 'core', 'entityAspects': ['dataHubPageTemplateProperties']}
|
|
16016
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubPageTemplateKey")
|
|
16017
|
+
|
|
16018
|
+
def __init__(self,
|
|
16019
|
+
id: str,
|
|
16020
|
+
):
|
|
16021
|
+
super().__init__()
|
|
16022
|
+
|
|
16023
|
+
self.id = id
|
|
16024
|
+
|
|
16025
|
+
def _restore_defaults(self) -> None:
|
|
16026
|
+
self.id = str()
|
|
16027
|
+
|
|
16028
|
+
|
|
16029
|
+
@property
|
|
16030
|
+
def id(self) -> str:
|
|
16031
|
+
"""Unique id for the template."""
|
|
16032
|
+
return self._inner_dict.get('id') # type: ignore
|
|
16033
|
+
|
|
16034
|
+
@id.setter
|
|
16035
|
+
def id(self, value: str) -> None:
|
|
16036
|
+
self._inner_dict['id'] = value
|
|
16037
|
+
|
|
16038
|
+
|
|
15016
16039
|
class DataHubPersonaKeyClass(_Aspect):
|
|
15017
16040
|
"""Key for a persona type"""
|
|
15018
16041
|
|
|
@@ -15263,7 +16286,7 @@ class DataJobKeyClass(_Aspect):
|
|
|
15263
16286
|
|
|
15264
16287
|
|
|
15265
16288
|
ASPECT_NAME = 'dataJobKey'
|
|
15266
|
-
ASPECT_INFO = {'keyForEntity': 'dataJob', 'entityCategory': '_unset_', 'entityAspects': ['datahubIngestionRunSummary', 'datahubIngestionCheckpoint', 'domains', 'deprecation', 'versionInfo', 'dataJobInfo', 'dataJobInputOutput', 'editableDataJobProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'forms', 'subTypes', 'incidentsSummary', 'testResults', 'dataTransformLogic']}
|
|
16289
|
+
ASPECT_INFO = {'keyForEntity': 'dataJob', 'entityCategory': '_unset_', 'entityAspects': ['datahubIngestionRunSummary', 'datahubIngestionCheckpoint', 'domains', 'applications', 'deprecation', 'versionInfo', 'dataJobInfo', 'dataJobInputOutput', 'editableDataJobProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'forms', 'subTypes', 'incidentsSummary', 'testResults', 'dataTransformLogic']}
|
|
15267
16290
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataJobKey")
|
|
15268
16291
|
|
|
15269
16292
|
def __init__(self,
|
|
@@ -15461,7 +16484,7 @@ class DatasetKeyClass(_Aspect):
|
|
|
15461
16484
|
|
|
15462
16485
|
|
|
15463
16486
|
ASPECT_NAME = 'datasetKey'
|
|
15464
|
-
ASPECT_INFO = {'keyForEntity': 'dataset', 'entityCategory': 'core', 'entityAspects': ['viewProperties', 'subTypes', 'datasetProfile', 'datasetUsageStatistics', 'operation', 'domains', 'schemaMetadata', 'status', 'container', 'deprecation', 'testResults', 'siblings', 'embed', 'incidentsSummary', 'datasetProperties', 'editableDatasetProperties', 'datasetDeprecation', 'datasetUpstreamLineage', 'upstreamLineage', 'institutionalMemory', 'ownership', 'editableSchemaMetadata', 'globalTags', 'glossaryTerms', 'browsePaths', 'dataPlatformInstance', 'browsePathsV2', 'access', 'structuredProperties', 'forms', 'partitionsSummary', 'versionProperties', 'icebergCatalogInfo'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
|
|
16487
|
+
ASPECT_INFO = {'keyForEntity': 'dataset', 'entityCategory': 'core', 'entityAspects': ['viewProperties', 'subTypes', 'datasetProfile', 'datasetUsageStatistics', 'operation', 'domains', 'applications', 'schemaMetadata', 'status', 'container', 'deprecation', 'testResults', 'siblings', 'embed', 'incidentsSummary', 'datasetProperties', 'editableDatasetProperties', 'datasetDeprecation', 'datasetUpstreamLineage', 'upstreamLineage', 'institutionalMemory', 'ownership', 'editableSchemaMetadata', 'globalTags', 'glossaryTerms', 'browsePaths', 'dataPlatformInstance', 'browsePathsV2', 'access', 'structuredProperties', 'forms', 'partitionsSummary', 'versionProperties', 'icebergCatalogInfo', 'logicalParent'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
|
|
15465
16488
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DatasetKey")
|
|
15466
16489
|
|
|
15467
16490
|
def __init__(self,
|
|
@@ -15516,7 +16539,7 @@ class DomainKeyClass(_Aspect):
|
|
|
15516
16539
|
|
|
15517
16540
|
|
|
15518
16541
|
ASPECT_NAME = 'domainKey'
|
|
15519
|
-
ASPECT_INFO = {'keyForEntity': 'domain', 'entityCategory': 'core', 'entityAspects': ['domainProperties', 'institutionalMemory', 'ownership', 'structuredProperties', 'forms', 'testResults', 'displayProperties'], 'entityDoc': 'A data domain within an organization.'}
|
|
16542
|
+
ASPECT_INFO = {'keyForEntity': 'domain', 'entityCategory': 'core', 'entityAspects': ['domainProperties', 'institutionalMemory', 'ownership', 'structuredProperties', 'forms', 'testResults', 'displayProperties', 'assetSettings'], 'entityDoc': 'A data domain within an organization.'}
|
|
15520
16543
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DomainKey")
|
|
15521
16544
|
|
|
15522
16545
|
def __init__(self,
|
|
@@ -15661,7 +16684,7 @@ class GlossaryNodeKeyClass(_Aspect):
|
|
|
15661
16684
|
|
|
15662
16685
|
|
|
15663
16686
|
ASPECT_NAME = 'glossaryNodeKey'
|
|
15664
|
-
ASPECT_INFO = {'keyForEntity': 'glossaryNode', 'entityCategory': 'core', 'entityAspects': ['glossaryNodeInfo', 'institutionalMemory', 'ownership', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'displayProperties']}
|
|
16687
|
+
ASPECT_INFO = {'keyForEntity': 'glossaryNode', 'entityCategory': 'core', 'entityAspects': ['glossaryNodeInfo', 'institutionalMemory', 'ownership', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'displayProperties', 'assetSettings']}
|
|
15665
16688
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.GlossaryNodeKey")
|
|
15666
16689
|
|
|
15667
16690
|
def __init__(self,
|
|
@@ -15690,7 +16713,7 @@ class GlossaryTermKeyClass(_Aspect):
|
|
|
15690
16713
|
|
|
15691
16714
|
|
|
15692
16715
|
ASPECT_NAME = 'glossaryTermKey'
|
|
15693
|
-
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16716
|
+
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'applications', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'assetSettings']}
|
|
15694
16717
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.GlossaryTermKey")
|
|
15695
16718
|
|
|
15696
16719
|
def __init__(self,
|
|
@@ -15777,7 +16800,7 @@ class MLFeatureKeyClass(_Aspect):
|
|
|
15777
16800
|
|
|
15778
16801
|
|
|
15779
16802
|
ASPECT_NAME = 'mlFeatureKey'
|
|
15780
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16803
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'applications', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15781
16804
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureKey")
|
|
15782
16805
|
|
|
15783
16806
|
def __init__(self,
|
|
@@ -15819,7 +16842,7 @@ class MLFeatureTableKeyClass(_Aspect):
|
|
|
15819
16842
|
|
|
15820
16843
|
|
|
15821
16844
|
ASPECT_NAME = 'mlFeatureTableKey'
|
|
15822
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16845
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'applications', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15823
16846
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureTableKey")
|
|
15824
16847
|
|
|
15825
16848
|
def __init__(self,
|
|
@@ -15916,7 +16939,7 @@ class MLModelGroupKeyClass(_Aspect):
|
|
|
15916
16939
|
|
|
15917
16940
|
|
|
15918
16941
|
ASPECT_NAME = 'mlModelGroupKey'
|
|
15919
|
-
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'container']}
|
|
16942
|
+
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'applications', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'container', 'institutionalMemory']}
|
|
15920
16943
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelGroupKey")
|
|
15921
16944
|
|
|
15922
16945
|
def __init__(self,
|
|
@@ -15971,7 +16994,7 @@ class MLModelKeyClass(_Aspect):
|
|
|
15971
16994
|
|
|
15972
16995
|
|
|
15973
16996
|
ASPECT_NAME = 'mlModelKey'
|
|
15974
|
-
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties', 'subTypes', 'container']}
|
|
16997
|
+
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'applications', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties', 'subTypes', 'container']}
|
|
15975
16998
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelKey")
|
|
15976
16999
|
|
|
15977
17000
|
def __init__(self,
|
|
@@ -16026,7 +17049,7 @@ class MLPrimaryKeyKeyClass(_Aspect):
|
|
|
16026
17049
|
|
|
16027
17050
|
|
|
16028
17051
|
ASPECT_NAME = 'mlPrimaryKeyKey'
|
|
16029
|
-
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
17052
|
+
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'applications', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16030
17053
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLPrimaryKeyKey")
|
|
16031
17054
|
|
|
16032
17055
|
def __init__(self,
|
|
@@ -16068,7 +17091,7 @@ class NotebookKeyClass(_Aspect):
|
|
|
16068
17091
|
|
|
16069
17092
|
|
|
16070
17093
|
ASPECT_NAME = 'notebookKey'
|
|
16071
|
-
ASPECT_INFO = {'keyForEntity': 'notebook', 'entityCategory': '_unset_', 'entityAspects': ['notebookInfo', 'notebookContent', 'editableNotebookProperties', 'ownership', 'status', 'globalTags', 'glossaryTerms', 'browsePaths', 'institutionalMemory', 'domains', 'subTypes', 'dataPlatformInstance', 'browsePathsV2', 'testResults'], 'entityDoc': 'Notebook represents a combination of query, text, chart and etc. This is in BETA version'}
|
|
17094
|
+
ASPECT_INFO = {'keyForEntity': 'notebook', 'entityCategory': '_unset_', 'entityAspects': ['notebookInfo', 'notebookContent', 'editableNotebookProperties', 'ownership', 'status', 'globalTags', 'glossaryTerms', 'browsePaths', 'institutionalMemory', 'domains', 'applications', 'subTypes', 'dataPlatformInstance', 'browsePathsV2', 'testResults'], 'entityDoc': 'Notebook represents a combination of query, text, chart and etc. This is in BETA version'}
|
|
16072
17095
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.NotebookKey")
|
|
16073
17096
|
|
|
16074
17097
|
def __init__(self,
|
|
@@ -16227,7 +17250,7 @@ class SchemaFieldKeyClass(_Aspect):
|
|
|
16227
17250
|
|
|
16228
17251
|
|
|
16229
17252
|
ASPECT_NAME = 'schemaFieldKey'
|
|
16230
|
-
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation', 'subTypes']}
|
|
17253
|
+
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation', 'subTypes', 'logicalParent', 'globalTags', 'glossaryTerms']}
|
|
16231
17254
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
|
|
16232
17255
|
|
|
16233
17256
|
def __init__(self,
|
|
@@ -18398,6 +19421,7 @@ class MLModelGroupPropertiesClass(_Aspect):
|
|
|
18398
19421
|
customProperties: Optional[Dict[str, str]]=None,
|
|
18399
19422
|
trainingJobs: Union[None, List[str]]=None,
|
|
18400
19423
|
downstreamJobs: Union[None, List[str]]=None,
|
|
19424
|
+
externalUrl: Union[None, str]=None,
|
|
18401
19425
|
name: Union[None, str]=None,
|
|
18402
19426
|
description: Union[None, str]=None,
|
|
18403
19427
|
createdAt: Union[None, int]=None,
|
|
@@ -18414,6 +19438,7 @@ class MLModelGroupPropertiesClass(_Aspect):
|
|
|
18414
19438
|
self.customProperties = customProperties
|
|
18415
19439
|
self.trainingJobs = trainingJobs
|
|
18416
19440
|
self.downstreamJobs = downstreamJobs
|
|
19441
|
+
self.externalUrl = externalUrl
|
|
18417
19442
|
self.name = name
|
|
18418
19443
|
self.description = description
|
|
18419
19444
|
self.createdAt = createdAt
|
|
@@ -18425,6 +19450,7 @@ class MLModelGroupPropertiesClass(_Aspect):
|
|
|
18425
19450
|
self.customProperties = dict()
|
|
18426
19451
|
self.trainingJobs = self.RECORD_SCHEMA.fields_dict["trainingJobs"].default
|
|
18427
19452
|
self.downstreamJobs = self.RECORD_SCHEMA.fields_dict["downstreamJobs"].default
|
|
19453
|
+
self.externalUrl = self.RECORD_SCHEMA.fields_dict["externalUrl"].default
|
|
18428
19454
|
self.name = self.RECORD_SCHEMA.fields_dict["name"].default
|
|
18429
19455
|
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
18430
19456
|
self.createdAt = self.RECORD_SCHEMA.fields_dict["createdAt"].default
|
|
@@ -18464,13 +19490,23 @@ class MLModelGroupPropertiesClass(_Aspect):
|
|
|
18464
19490
|
|
|
18465
19491
|
|
|
18466
19492
|
@property
|
|
18467
|
-
def
|
|
18468
|
-
"""
|
|
18469
|
-
return self._inner_dict.get('
|
|
19493
|
+
def externalUrl(self) -> Union[None, str]:
|
|
19494
|
+
"""URL where the reference exist"""
|
|
19495
|
+
return self._inner_dict.get('externalUrl') # type: ignore
|
|
18470
19496
|
|
|
18471
|
-
@
|
|
18472
|
-
def
|
|
18473
|
-
self._inner_dict['
|
|
19497
|
+
@externalUrl.setter
|
|
19498
|
+
def externalUrl(self, value: Union[None, str]) -> None:
|
|
19499
|
+
self._inner_dict['externalUrl'] = value
|
|
19500
|
+
|
|
19501
|
+
|
|
19502
|
+
@property
|
|
19503
|
+
def name(self) -> Union[None, str]:
|
|
19504
|
+
"""Display name of the MLModelGroup"""
|
|
19505
|
+
return self._inner_dict.get('name') # type: ignore
|
|
19506
|
+
|
|
19507
|
+
@name.setter
|
|
19508
|
+
def name(self, value: Union[None, str]) -> None:
|
|
19509
|
+
self._inner_dict['name'] = value
|
|
18474
19510
|
|
|
18475
19511
|
|
|
18476
19512
|
@property
|
|
@@ -19167,6 +20203,411 @@ class TrainingDataClass(_Aspect):
|
|
|
19167
20203
|
self._inner_dict['trainingData'] = value
|
|
19168
20204
|
|
|
19169
20205
|
|
|
20206
|
+
class AssetCollectionModuleParamsClass(DictWrapper):
|
|
20207
|
+
"""The params required if the module is type ASSET_COLLECTION"""
|
|
20208
|
+
|
|
20209
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.AssetCollectionModuleParams")
|
|
20210
|
+
def __init__(self,
|
|
20211
|
+
assetUrns: List[str],
|
|
20212
|
+
dynamicFilterJson: Union[None, str]=None,
|
|
20213
|
+
):
|
|
20214
|
+
super().__init__()
|
|
20215
|
+
|
|
20216
|
+
self.assetUrns = assetUrns
|
|
20217
|
+
self.dynamicFilterJson = dynamicFilterJson
|
|
20218
|
+
|
|
20219
|
+
def _restore_defaults(self) -> None:
|
|
20220
|
+
self.assetUrns = list()
|
|
20221
|
+
self.dynamicFilterJson = self.RECORD_SCHEMA.fields_dict["dynamicFilterJson"].default
|
|
20222
|
+
|
|
20223
|
+
|
|
20224
|
+
@property
|
|
20225
|
+
def assetUrns(self) -> List[str]:
|
|
20226
|
+
# No docs available.
|
|
20227
|
+
return self._inner_dict.get('assetUrns') # type: ignore
|
|
20228
|
+
|
|
20229
|
+
@assetUrns.setter
|
|
20230
|
+
def assetUrns(self, value: List[str]) -> None:
|
|
20231
|
+
self._inner_dict['assetUrns'] = value
|
|
20232
|
+
|
|
20233
|
+
|
|
20234
|
+
@property
|
|
20235
|
+
def dynamicFilterJson(self) -> Union[None, str]:
|
|
20236
|
+
"""Optional dynamic filters
|
|
20237
|
+
|
|
20238
|
+
The stringified json representing the logical predicate built in the UI to select assets.
|
|
20239
|
+
This predicate is turned into orFilters to send through graphql since graphql doesn't support
|
|
20240
|
+
arbitrary nesting. This string is used to restore the UI for this logical predicate."""
|
|
20241
|
+
return self._inner_dict.get('dynamicFilterJson') # type: ignore
|
|
20242
|
+
|
|
20243
|
+
@dynamicFilterJson.setter
|
|
20244
|
+
def dynamicFilterJson(self, value: Union[None, str]) -> None:
|
|
20245
|
+
self._inner_dict['dynamicFilterJson'] = value
|
|
20246
|
+
|
|
20247
|
+
|
|
20248
|
+
class DataHubPageModuleParamsClass(DictWrapper):
|
|
20249
|
+
"""The specific parameters stored for a module"""
|
|
20250
|
+
|
|
20251
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleParams")
|
|
20252
|
+
def __init__(self,
|
|
20253
|
+
linkParams: Union[None, "LinkModuleParamsClass"]=None,
|
|
20254
|
+
richTextParams: Union[None, "RichTextModuleParamsClass"]=None,
|
|
20255
|
+
assetCollectionParams: Union[None, "AssetCollectionModuleParamsClass"]=None,
|
|
20256
|
+
hierarchyViewParams: Union[None, "HierarchyModuleParamsClass"]=None,
|
|
20257
|
+
):
|
|
20258
|
+
super().__init__()
|
|
20259
|
+
|
|
20260
|
+
self.linkParams = linkParams
|
|
20261
|
+
self.richTextParams = richTextParams
|
|
20262
|
+
self.assetCollectionParams = assetCollectionParams
|
|
20263
|
+
self.hierarchyViewParams = hierarchyViewParams
|
|
20264
|
+
|
|
20265
|
+
def _restore_defaults(self) -> None:
|
|
20266
|
+
self.linkParams = self.RECORD_SCHEMA.fields_dict["linkParams"].default
|
|
20267
|
+
self.richTextParams = self.RECORD_SCHEMA.fields_dict["richTextParams"].default
|
|
20268
|
+
self.assetCollectionParams = self.RECORD_SCHEMA.fields_dict["assetCollectionParams"].default
|
|
20269
|
+
self.hierarchyViewParams = self.RECORD_SCHEMA.fields_dict["hierarchyViewParams"].default
|
|
20270
|
+
|
|
20271
|
+
|
|
20272
|
+
@property
|
|
20273
|
+
def linkParams(self) -> Union[None, "LinkModuleParamsClass"]:
|
|
20274
|
+
"""The params required if the module is type LINK"""
|
|
20275
|
+
return self._inner_dict.get('linkParams') # type: ignore
|
|
20276
|
+
|
|
20277
|
+
@linkParams.setter
|
|
20278
|
+
def linkParams(self, value: Union[None, "LinkModuleParamsClass"]) -> None:
|
|
20279
|
+
self._inner_dict['linkParams'] = value
|
|
20280
|
+
|
|
20281
|
+
|
|
20282
|
+
@property
|
|
20283
|
+
def richTextParams(self) -> Union[None, "RichTextModuleParamsClass"]:
|
|
20284
|
+
"""The params required if the module is type RICH_TEXT"""
|
|
20285
|
+
return self._inner_dict.get('richTextParams') # type: ignore
|
|
20286
|
+
|
|
20287
|
+
@richTextParams.setter
|
|
20288
|
+
def richTextParams(self, value: Union[None, "RichTextModuleParamsClass"]) -> None:
|
|
20289
|
+
self._inner_dict['richTextParams'] = value
|
|
20290
|
+
|
|
20291
|
+
|
|
20292
|
+
@property
|
|
20293
|
+
def assetCollectionParams(self) -> Union[None, "AssetCollectionModuleParamsClass"]:
|
|
20294
|
+
"""The params required if the module is type ASSET_COLLECTION"""
|
|
20295
|
+
return self._inner_dict.get('assetCollectionParams') # type: ignore
|
|
20296
|
+
|
|
20297
|
+
@assetCollectionParams.setter
|
|
20298
|
+
def assetCollectionParams(self, value: Union[None, "AssetCollectionModuleParamsClass"]) -> None:
|
|
20299
|
+
self._inner_dict['assetCollectionParams'] = value
|
|
20300
|
+
|
|
20301
|
+
|
|
20302
|
+
@property
|
|
20303
|
+
def hierarchyViewParams(self) -> Union[None, "HierarchyModuleParamsClass"]:
|
|
20304
|
+
"""The params required if the module is type HIERARCHY_VIEW"""
|
|
20305
|
+
return self._inner_dict.get('hierarchyViewParams') # type: ignore
|
|
20306
|
+
|
|
20307
|
+
@hierarchyViewParams.setter
|
|
20308
|
+
def hierarchyViewParams(self, value: Union[None, "HierarchyModuleParamsClass"]) -> None:
|
|
20309
|
+
self._inner_dict['hierarchyViewParams'] = value
|
|
20310
|
+
|
|
20311
|
+
|
|
20312
|
+
class DataHubPageModulePropertiesClass(_Aspect):
|
|
20313
|
+
"""The main properties of a DataHub page module"""
|
|
20314
|
+
|
|
20315
|
+
|
|
20316
|
+
ASPECT_NAME = 'dataHubPageModuleProperties'
|
|
20317
|
+
ASPECT_INFO = {}
|
|
20318
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleProperties")
|
|
20319
|
+
|
|
20320
|
+
def __init__(self,
|
|
20321
|
+
name: str,
|
|
20322
|
+
type: Union[str, "DataHubPageModuleTypeClass"],
|
|
20323
|
+
visibility: "DataHubPageModuleVisibilityClass",
|
|
20324
|
+
params: "DataHubPageModuleParamsClass",
|
|
20325
|
+
created: "AuditStampClass",
|
|
20326
|
+
lastModified: "AuditStampClass",
|
|
20327
|
+
):
|
|
20328
|
+
super().__init__()
|
|
20329
|
+
|
|
20330
|
+
self.name = name
|
|
20331
|
+
self.type = type
|
|
20332
|
+
self.visibility = visibility
|
|
20333
|
+
self.params = params
|
|
20334
|
+
self.created = created
|
|
20335
|
+
self.lastModified = lastModified
|
|
20336
|
+
|
|
20337
|
+
def _restore_defaults(self) -> None:
|
|
20338
|
+
self.name = str()
|
|
20339
|
+
self.type = DataHubPageModuleTypeClass.LINK
|
|
20340
|
+
self.visibility = DataHubPageModuleVisibilityClass._construct_with_defaults()
|
|
20341
|
+
self.params = DataHubPageModuleParamsClass._construct_with_defaults()
|
|
20342
|
+
self.created = AuditStampClass._construct_with_defaults()
|
|
20343
|
+
self.lastModified = AuditStampClass._construct_with_defaults()
|
|
20344
|
+
|
|
20345
|
+
|
|
20346
|
+
@property
|
|
20347
|
+
def name(self) -> str:
|
|
20348
|
+
"""The display name of this module"""
|
|
20349
|
+
return self._inner_dict.get('name') # type: ignore
|
|
20350
|
+
|
|
20351
|
+
@name.setter
|
|
20352
|
+
def name(self, value: str) -> None:
|
|
20353
|
+
self._inner_dict['name'] = value
|
|
20354
|
+
|
|
20355
|
+
|
|
20356
|
+
@property
|
|
20357
|
+
def type(self) -> Union[str, "DataHubPageModuleTypeClass"]:
|
|
20358
|
+
"""The type of this module - the purpose it serves"""
|
|
20359
|
+
return self._inner_dict.get('type') # type: ignore
|
|
20360
|
+
|
|
20361
|
+
@type.setter
|
|
20362
|
+
def type(self, value: Union[str, "DataHubPageModuleTypeClass"]) -> None:
|
|
20363
|
+
self._inner_dict['type'] = value
|
|
20364
|
+
|
|
20365
|
+
|
|
20366
|
+
@property
|
|
20367
|
+
def visibility(self) -> "DataHubPageModuleVisibilityClass":
|
|
20368
|
+
"""Info about the visibility of this module"""
|
|
20369
|
+
return self._inner_dict.get('visibility') # type: ignore
|
|
20370
|
+
|
|
20371
|
+
@visibility.setter
|
|
20372
|
+
def visibility(self, value: "DataHubPageModuleVisibilityClass") -> None:
|
|
20373
|
+
self._inner_dict['visibility'] = value
|
|
20374
|
+
|
|
20375
|
+
|
|
20376
|
+
@property
|
|
20377
|
+
def params(self) -> "DataHubPageModuleParamsClass":
|
|
20378
|
+
"""The specific parameters stored for this module"""
|
|
20379
|
+
return self._inner_dict.get('params') # type: ignore
|
|
20380
|
+
|
|
20381
|
+
@params.setter
|
|
20382
|
+
def params(self, value: "DataHubPageModuleParamsClass") -> None:
|
|
20383
|
+
self._inner_dict['params'] = value
|
|
20384
|
+
|
|
20385
|
+
|
|
20386
|
+
@property
|
|
20387
|
+
def created(self) -> "AuditStampClass":
|
|
20388
|
+
"""Audit stamp for when and by whom this template was created"""
|
|
20389
|
+
return self._inner_dict.get('created') # type: ignore
|
|
20390
|
+
|
|
20391
|
+
@created.setter
|
|
20392
|
+
def created(self, value: "AuditStampClass") -> None:
|
|
20393
|
+
self._inner_dict['created'] = value
|
|
20394
|
+
|
|
20395
|
+
|
|
20396
|
+
@property
|
|
20397
|
+
def lastModified(self) -> "AuditStampClass":
|
|
20398
|
+
"""Audit stamp for when and by whom this template was last updated"""
|
|
20399
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
20400
|
+
|
|
20401
|
+
@lastModified.setter
|
|
20402
|
+
def lastModified(self, value: "AuditStampClass") -> None:
|
|
20403
|
+
self._inner_dict['lastModified'] = value
|
|
20404
|
+
|
|
20405
|
+
|
|
20406
|
+
class DataHubPageModuleTypeClass(object):
|
|
20407
|
+
"""Enum containing the types of page modules that there are"""
|
|
20408
|
+
|
|
20409
|
+
LINK = "LINK"
|
|
20410
|
+
"""Link type module"""
|
|
20411
|
+
|
|
20412
|
+
RICH_TEXT = "RICH_TEXT"
|
|
20413
|
+
"""Module containing rich text to be rendered"""
|
|
20414
|
+
|
|
20415
|
+
ASSET_COLLECTION = "ASSET_COLLECTION"
|
|
20416
|
+
"""A module with a collection of assets"""
|
|
20417
|
+
|
|
20418
|
+
HIERARCHY = "HIERARCHY"
|
|
20419
|
+
"""A module displaying a hierarchy to navigate"""
|
|
20420
|
+
|
|
20421
|
+
OWNED_ASSETS = "OWNED_ASSETS"
|
|
20422
|
+
"""Module displaying assets owned by a user"""
|
|
20423
|
+
|
|
20424
|
+
DOMAINS = "DOMAINS"
|
|
20425
|
+
"""Module displaying the top domains"""
|
|
20426
|
+
|
|
20427
|
+
ASSETS = "ASSETS"
|
|
20428
|
+
"""Module displaying the assets of parent entity"""
|
|
20429
|
+
|
|
20430
|
+
CHILD_HIERARCHY = "CHILD_HIERARCHY"
|
|
20431
|
+
"""Module displaying the hierarchy of the children of a given entity. Glossary or Domains."""
|
|
20432
|
+
|
|
20433
|
+
DATA_PRODUCTS = "DATA_PRODUCTS"
|
|
20434
|
+
"""Module displaying child data products of a given domain"""
|
|
20435
|
+
|
|
20436
|
+
RELATED_TERMS = "RELATED_TERMS"
|
|
20437
|
+
"""Module displaying the related terms of a given glossary term"""
|
|
20438
|
+
|
|
20439
|
+
PLATFORMS = "PLATFORMS"
|
|
20440
|
+
"""Module displaying the platforms in an instance"""
|
|
20441
|
+
|
|
20442
|
+
|
|
20443
|
+
|
|
20444
|
+
class DataHubPageModuleVisibilityClass(DictWrapper):
|
|
20445
|
+
"""Info about the visibility of this module"""
|
|
20446
|
+
|
|
20447
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility")
|
|
20448
|
+
def __init__(self,
|
|
20449
|
+
scope: Union[str, "PageModuleScopeClass"],
|
|
20450
|
+
):
|
|
20451
|
+
super().__init__()
|
|
20452
|
+
|
|
20453
|
+
self.scope = scope
|
|
20454
|
+
|
|
20455
|
+
def _restore_defaults(self) -> None:
|
|
20456
|
+
self.scope = PageModuleScopeClass.PERSONAL
|
|
20457
|
+
|
|
20458
|
+
|
|
20459
|
+
@property
|
|
20460
|
+
def scope(self) -> Union[str, "PageModuleScopeClass"]:
|
|
20461
|
+
"""Audit stamp for when and by whom this module was created"""
|
|
20462
|
+
return self._inner_dict.get('scope') # type: ignore
|
|
20463
|
+
|
|
20464
|
+
@scope.setter
|
|
20465
|
+
def scope(self, value: Union[str, "PageModuleScopeClass"]) -> None:
|
|
20466
|
+
self._inner_dict['scope'] = value
|
|
20467
|
+
|
|
20468
|
+
|
|
20469
|
+
class HierarchyModuleParamsClass(DictWrapper):
|
|
20470
|
+
"""The params required if the module is type HIERARCHY_VIEW"""
|
|
20471
|
+
|
|
20472
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.HierarchyModuleParams")
|
|
20473
|
+
def __init__(self,
|
|
20474
|
+
showRelatedEntities: bool,
|
|
20475
|
+
assetUrns: Union[None, List[str]]=None,
|
|
20476
|
+
relatedEntitiesFilterJson: Union[None, str]=None,
|
|
20477
|
+
):
|
|
20478
|
+
super().__init__()
|
|
20479
|
+
|
|
20480
|
+
self.assetUrns = assetUrns
|
|
20481
|
+
self.showRelatedEntities = showRelatedEntities
|
|
20482
|
+
self.relatedEntitiesFilterJson = relatedEntitiesFilterJson
|
|
20483
|
+
|
|
20484
|
+
def _restore_defaults(self) -> None:
|
|
20485
|
+
self.assetUrns = self.RECORD_SCHEMA.fields_dict["assetUrns"].default
|
|
20486
|
+
self.showRelatedEntities = bool()
|
|
20487
|
+
self.relatedEntitiesFilterJson = self.RECORD_SCHEMA.fields_dict["relatedEntitiesFilterJson"].default
|
|
20488
|
+
|
|
20489
|
+
|
|
20490
|
+
@property
|
|
20491
|
+
def assetUrns(self) -> Union[None, List[str]]:
|
|
20492
|
+
# No docs available.
|
|
20493
|
+
return self._inner_dict.get('assetUrns') # type: ignore
|
|
20494
|
+
|
|
20495
|
+
@assetUrns.setter
|
|
20496
|
+
def assetUrns(self, value: Union[None, List[str]]) -> None:
|
|
20497
|
+
self._inner_dict['assetUrns'] = value
|
|
20498
|
+
|
|
20499
|
+
|
|
20500
|
+
@property
|
|
20501
|
+
def showRelatedEntities(self) -> bool:
|
|
20502
|
+
# No docs available.
|
|
20503
|
+
return self._inner_dict.get('showRelatedEntities') # type: ignore
|
|
20504
|
+
|
|
20505
|
+
@showRelatedEntities.setter
|
|
20506
|
+
def showRelatedEntities(self, value: bool) -> None:
|
|
20507
|
+
self._inner_dict['showRelatedEntities'] = value
|
|
20508
|
+
|
|
20509
|
+
|
|
20510
|
+
@property
|
|
20511
|
+
def relatedEntitiesFilterJson(self) -> Union[None, str]:
|
|
20512
|
+
"""Optional filters to filter relatedEntities (assetUrns) out
|
|
20513
|
+
|
|
20514
|
+
The stringified json representing the logical predicate built in the UI to select assets.
|
|
20515
|
+
This predicate is turned into orFilters to send through graphql since graphql doesn't support
|
|
20516
|
+
arbitrary nesting. This string is used to restore the UI for this logical predicate."""
|
|
20517
|
+
return self._inner_dict.get('relatedEntitiesFilterJson') # type: ignore
|
|
20518
|
+
|
|
20519
|
+
@relatedEntitiesFilterJson.setter
|
|
20520
|
+
def relatedEntitiesFilterJson(self, value: Union[None, str]) -> None:
|
|
20521
|
+
self._inner_dict['relatedEntitiesFilterJson'] = value
|
|
20522
|
+
|
|
20523
|
+
|
|
20524
|
+
class LinkModuleParamsClass(DictWrapper):
|
|
20525
|
+
# No docs available.
|
|
20526
|
+
|
|
20527
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.LinkModuleParams")
|
|
20528
|
+
def __init__(self,
|
|
20529
|
+
linkUrl: str,
|
|
20530
|
+
imageUrl: Union[None, str]=None,
|
|
20531
|
+
description: Union[None, str]=None,
|
|
20532
|
+
):
|
|
20533
|
+
super().__init__()
|
|
20534
|
+
|
|
20535
|
+
self.linkUrl = linkUrl
|
|
20536
|
+
self.imageUrl = imageUrl
|
|
20537
|
+
self.description = description
|
|
20538
|
+
|
|
20539
|
+
def _restore_defaults(self) -> None:
|
|
20540
|
+
self.linkUrl = str()
|
|
20541
|
+
self.imageUrl = self.RECORD_SCHEMA.fields_dict["imageUrl"].default
|
|
20542
|
+
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
20543
|
+
|
|
20544
|
+
|
|
20545
|
+
@property
|
|
20546
|
+
def linkUrl(self) -> str:
|
|
20547
|
+
# No docs available.
|
|
20548
|
+
return self._inner_dict.get('linkUrl') # type: ignore
|
|
20549
|
+
|
|
20550
|
+
@linkUrl.setter
|
|
20551
|
+
def linkUrl(self, value: str) -> None:
|
|
20552
|
+
self._inner_dict['linkUrl'] = value
|
|
20553
|
+
|
|
20554
|
+
|
|
20555
|
+
@property
|
|
20556
|
+
def imageUrl(self) -> Union[None, str]:
|
|
20557
|
+
# No docs available.
|
|
20558
|
+
return self._inner_dict.get('imageUrl') # type: ignore
|
|
20559
|
+
|
|
20560
|
+
@imageUrl.setter
|
|
20561
|
+
def imageUrl(self, value: Union[None, str]) -> None:
|
|
20562
|
+
self._inner_dict['imageUrl'] = value
|
|
20563
|
+
|
|
20564
|
+
|
|
20565
|
+
@property
|
|
20566
|
+
def description(self) -> Union[None, str]:
|
|
20567
|
+
# No docs available.
|
|
20568
|
+
return self._inner_dict.get('description') # type: ignore
|
|
20569
|
+
|
|
20570
|
+
@description.setter
|
|
20571
|
+
def description(self, value: Union[None, str]) -> None:
|
|
20572
|
+
self._inner_dict['description'] = value
|
|
20573
|
+
|
|
20574
|
+
|
|
20575
|
+
class PageModuleScopeClass(object):
|
|
20576
|
+
# No docs available.
|
|
20577
|
+
|
|
20578
|
+
PERSONAL = "PERSONAL"
|
|
20579
|
+
"""This module is used for individual use only"""
|
|
20580
|
+
|
|
20581
|
+
GLOBAL = "GLOBAL"
|
|
20582
|
+
"""This module is discoverable and can be used by any user on the platform"""
|
|
20583
|
+
|
|
20584
|
+
|
|
20585
|
+
|
|
20586
|
+
class RichTextModuleParamsClass(DictWrapper):
|
|
20587
|
+
# No docs available.
|
|
20588
|
+
|
|
20589
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.RichTextModuleParams")
|
|
20590
|
+
def __init__(self,
|
|
20591
|
+
content: str,
|
|
20592
|
+
):
|
|
20593
|
+
super().__init__()
|
|
20594
|
+
|
|
20595
|
+
self.content = content
|
|
20596
|
+
|
|
20597
|
+
def _restore_defaults(self) -> None:
|
|
20598
|
+
self.content = str()
|
|
20599
|
+
|
|
20600
|
+
|
|
20601
|
+
@property
|
|
20602
|
+
def content(self) -> str:
|
|
20603
|
+
# No docs available.
|
|
20604
|
+
return self._inner_dict.get('content') # type: ignore
|
|
20605
|
+
|
|
20606
|
+
@content.setter
|
|
20607
|
+
def content(self, value: str) -> None:
|
|
20608
|
+
self._inner_dict['content'] = value
|
|
20609
|
+
|
|
20610
|
+
|
|
19170
20611
|
class GenericAspectClass(DictWrapper):
|
|
19171
20612
|
"""Generic record structure for serializing an Aspect"""
|
|
19172
20613
|
|
|
@@ -19686,10 +21127,14 @@ class PlatformEventHeaderClass(DictWrapper):
|
|
|
19686
21127
|
self._inner_dict['timestampMillis'] = value
|
|
19687
21128
|
|
|
19688
21129
|
|
|
19689
|
-
class SystemMetadataClass(
|
|
21130
|
+
class SystemMetadataClass(_Aspect):
|
|
19690
21131
|
"""Metadata associated with each metadata change that is processed by the system"""
|
|
19691
|
-
|
|
21132
|
+
|
|
21133
|
+
|
|
21134
|
+
ASPECT_NAME = 'systemMetadata'
|
|
21135
|
+
ASPECT_INFO = {}
|
|
19692
21136
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.mxe.SystemMetadata")
|
|
21137
|
+
|
|
19693
21138
|
def __init__(self,
|
|
19694
21139
|
lastObserved: Optional[Union[int, None]]=None,
|
|
19695
21140
|
runId: Optional[Union[str, None]]=None,
|
|
@@ -19699,6 +21144,8 @@ class SystemMetadataClass(DictWrapper):
|
|
|
19699
21144
|
registryVersion: Union[None, str]=None,
|
|
19700
21145
|
properties: Union[None, Dict[str, str]]=None,
|
|
19701
21146
|
version: Union[None, str]=None,
|
|
21147
|
+
aspectCreated: Union[None, "AuditStampClass"]=None,
|
|
21148
|
+
aspectModified: Union[None, "AuditStampClass"]=None,
|
|
19702
21149
|
):
|
|
19703
21150
|
super().__init__()
|
|
19704
21151
|
|
|
@@ -19722,6 +21169,8 @@ class SystemMetadataClass(DictWrapper):
|
|
|
19722
21169
|
self.registryVersion = registryVersion
|
|
19723
21170
|
self.properties = properties
|
|
19724
21171
|
self.version = version
|
|
21172
|
+
self.aspectCreated = aspectCreated
|
|
21173
|
+
self.aspectModified = aspectModified
|
|
19725
21174
|
|
|
19726
21175
|
def _restore_defaults(self) -> None:
|
|
19727
21176
|
self.lastObserved = self.RECORD_SCHEMA.fields_dict["lastObserved"].default
|
|
@@ -19732,6 +21181,8 @@ class SystemMetadataClass(DictWrapper):
|
|
|
19732
21181
|
self.registryVersion = self.RECORD_SCHEMA.fields_dict["registryVersion"].default
|
|
19733
21182
|
self.properties = self.RECORD_SCHEMA.fields_dict["properties"].default
|
|
19734
21183
|
self.version = self.RECORD_SCHEMA.fields_dict["version"].default
|
|
21184
|
+
self.aspectCreated = self.RECORD_SCHEMA.fields_dict["aspectCreated"].default
|
|
21185
|
+
self.aspectModified = self.RECORD_SCHEMA.fields_dict["aspectModified"].default
|
|
19735
21186
|
|
|
19736
21187
|
|
|
19737
21188
|
@property
|
|
@@ -19816,6 +21267,26 @@ class SystemMetadataClass(DictWrapper):
|
|
|
19816
21267
|
self._inner_dict['version'] = value
|
|
19817
21268
|
|
|
19818
21269
|
|
|
21270
|
+
@property
|
|
21271
|
+
def aspectCreated(self) -> Union[None, "AuditStampClass"]:
|
|
21272
|
+
"""When the aspect was initially created and who created it, detected by version 0 -> 1 change"""
|
|
21273
|
+
return self._inner_dict.get('aspectCreated') # type: ignore
|
|
21274
|
+
|
|
21275
|
+
@aspectCreated.setter
|
|
21276
|
+
def aspectCreated(self, value: Union[None, "AuditStampClass"]) -> None:
|
|
21277
|
+
self._inner_dict['aspectCreated'] = value
|
|
21278
|
+
|
|
21279
|
+
|
|
21280
|
+
@property
|
|
21281
|
+
def aspectModified(self) -> Union[None, "AuditStampClass"]:
|
|
21282
|
+
"""When the aspect was last modified and the actor that performed the modification"""
|
|
21283
|
+
return self._inner_dict.get('aspectModified') # type: ignore
|
|
21284
|
+
|
|
21285
|
+
@aspectModified.setter
|
|
21286
|
+
def aspectModified(self, value: Union[None, "AuditStampClass"]) -> None:
|
|
21287
|
+
self._inner_dict['aspectModified'] = value
|
|
21288
|
+
|
|
21289
|
+
|
|
19819
21290
|
class ChartCellClass(DictWrapper):
|
|
19820
21291
|
"""Chart cell in a notebook, which will present content in chart format"""
|
|
19821
21292
|
|
|
@@ -20498,12 +21969,159 @@ class ParametersClass(DictWrapper):
|
|
|
20498
21969
|
pass
|
|
20499
21970
|
|
|
20500
21971
|
|
|
20501
|
-
class
|
|
20502
|
-
"""
|
|
20503
|
-
|
|
20504
|
-
|
|
20505
|
-
|
|
20506
|
-
|
|
21972
|
+
class RelationshipChangeEventClass(DictWrapper):
|
|
21973
|
+
"""Kafka event for proposing a relationship change between two entities.
|
|
21974
|
+
For example, when dataset1 establishes a new downstream relationship with dataset2."""
|
|
21975
|
+
|
|
21976
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.platform.event.v1.RelationshipChangeEvent")
|
|
21977
|
+
def __init__(self,
|
|
21978
|
+
sourceUrn: str,
|
|
21979
|
+
destinationUrn: str,
|
|
21980
|
+
operation: Union[str, "RelationshipChangeOperationClass"],
|
|
21981
|
+
relationshipType: str,
|
|
21982
|
+
auditStamp: "AuditStampClass",
|
|
21983
|
+
auditHeader: Union[None, "KafkaAuditHeaderClass"]=None,
|
|
21984
|
+
lifecycleOwner: Union[None, str]=None,
|
|
21985
|
+
via: Union[None, str]=None,
|
|
21986
|
+
properties: Union[None, Dict[str, str]]=None,
|
|
21987
|
+
):
|
|
21988
|
+
super().__init__()
|
|
21989
|
+
|
|
21990
|
+
self.auditHeader = auditHeader
|
|
21991
|
+
self.sourceUrn = sourceUrn
|
|
21992
|
+
self.destinationUrn = destinationUrn
|
|
21993
|
+
self.operation = operation
|
|
21994
|
+
self.relationshipType = relationshipType
|
|
21995
|
+
self.lifecycleOwner = lifecycleOwner
|
|
21996
|
+
self.via = via
|
|
21997
|
+
self.properties = properties
|
|
21998
|
+
self.auditStamp = auditStamp
|
|
21999
|
+
|
|
22000
|
+
def _restore_defaults(self) -> None:
|
|
22001
|
+
self.auditHeader = self.RECORD_SCHEMA.fields_dict["auditHeader"].default
|
|
22002
|
+
self.sourceUrn = str()
|
|
22003
|
+
self.destinationUrn = str()
|
|
22004
|
+
self.operation = RelationshipChangeOperationClass.ADD
|
|
22005
|
+
self.relationshipType = str()
|
|
22006
|
+
self.lifecycleOwner = self.RECORD_SCHEMA.fields_dict["lifecycleOwner"].default
|
|
22007
|
+
self.via = self.RECORD_SCHEMA.fields_dict["via"].default
|
|
22008
|
+
self.properties = self.RECORD_SCHEMA.fields_dict["properties"].default
|
|
22009
|
+
self.auditStamp = AuditStampClass._construct_with_defaults()
|
|
22010
|
+
|
|
22011
|
+
|
|
22012
|
+
@property
|
|
22013
|
+
def auditHeader(self) -> Union[None, "KafkaAuditHeaderClass"]:
|
|
22014
|
+
"""Kafka audit header containing metadata about the message itself.
|
|
22015
|
+
Includes information like message ID, timestamp, and server details."""
|
|
22016
|
+
return self._inner_dict.get('auditHeader') # type: ignore
|
|
22017
|
+
|
|
22018
|
+
@auditHeader.setter
|
|
22019
|
+
def auditHeader(self, value: Union[None, "KafkaAuditHeaderClass"]) -> None:
|
|
22020
|
+
self._inner_dict['auditHeader'] = value
|
|
22021
|
+
|
|
22022
|
+
|
|
22023
|
+
@property
|
|
22024
|
+
def sourceUrn(self) -> str:
|
|
22025
|
+
"""The URN (Uniform Resource Name) of the source entity in the relationship.
|
|
22026
|
+
In a downstream relationship example, this would be the URN of the upstream dataset."""
|
|
22027
|
+
return self._inner_dict.get('sourceUrn') # type: ignore
|
|
22028
|
+
|
|
22029
|
+
@sourceUrn.setter
|
|
22030
|
+
def sourceUrn(self, value: str) -> None:
|
|
22031
|
+
self._inner_dict['sourceUrn'] = value
|
|
22032
|
+
|
|
22033
|
+
|
|
22034
|
+
@property
|
|
22035
|
+
def destinationUrn(self) -> str:
|
|
22036
|
+
"""The URN of the destination entity in the relationship.
|
|
22037
|
+
In a downstream relationship example, this would be the URN of the downstream dataset."""
|
|
22038
|
+
return self._inner_dict.get('destinationUrn') # type: ignore
|
|
22039
|
+
|
|
22040
|
+
@destinationUrn.setter
|
|
22041
|
+
def destinationUrn(self, value: str) -> None:
|
|
22042
|
+
self._inner_dict['destinationUrn'] = value
|
|
22043
|
+
|
|
22044
|
+
|
|
22045
|
+
@property
|
|
22046
|
+
def operation(self) -> Union[str, "RelationshipChangeOperationClass"]:
|
|
22047
|
+
"""The operation being performed on this relationship.
|
|
22048
|
+
Typically includes operations like ADD, REMOVE, or RESTATE."""
|
|
22049
|
+
return self._inner_dict.get('operation') # type: ignore
|
|
22050
|
+
|
|
22051
|
+
@operation.setter
|
|
22052
|
+
def operation(self, value: Union[str, "RelationshipChangeOperationClass"]) -> None:
|
|
22053
|
+
self._inner_dict['operation'] = value
|
|
22054
|
+
|
|
22055
|
+
|
|
22056
|
+
@property
|
|
22057
|
+
def relationshipType(self) -> str:
|
|
22058
|
+
"""The type/category of relationship being established or modified.
|
|
22059
|
+
Examples: "DownstreamOf", "Contains", "OwnedBy", "DerivedFrom", etc."""
|
|
22060
|
+
return self._inner_dict.get('relationshipType') # type: ignore
|
|
22061
|
+
|
|
22062
|
+
@relationshipType.setter
|
|
22063
|
+
def relationshipType(self, value: str) -> None:
|
|
22064
|
+
self._inner_dict['relationshipType'] = value
|
|
22065
|
+
|
|
22066
|
+
|
|
22067
|
+
@property
|
|
22068
|
+
def lifecycleOwner(self) -> Union[None, str]:
|
|
22069
|
+
"""The system or service responsible for managing the lifecycle of this relationship.
|
|
22070
|
+
This helps identify which component has authority over the relationship."""
|
|
22071
|
+
return self._inner_dict.get('lifecycleOwner') # type: ignore
|
|
22072
|
+
|
|
22073
|
+
@lifecycleOwner.setter
|
|
22074
|
+
def lifecycleOwner(self, value: Union[None, str]) -> None:
|
|
22075
|
+
self._inner_dict['lifecycleOwner'] = value
|
|
22076
|
+
|
|
22077
|
+
|
|
22078
|
+
@property
|
|
22079
|
+
def via(self) -> Union[None, str]:
|
|
22080
|
+
"""Information about how or through what means this relationship was established.
|
|
22081
|
+
Could indicate a specific pipeline, process, or tool that discovered/created the relationship."""
|
|
22082
|
+
return self._inner_dict.get('via') # type: ignore
|
|
22083
|
+
|
|
22084
|
+
@via.setter
|
|
22085
|
+
def via(self, value: Union[None, str]) -> None:
|
|
22086
|
+
self._inner_dict['via'] = value
|
|
22087
|
+
|
|
22088
|
+
|
|
22089
|
+
@property
|
|
22090
|
+
def properties(self) -> Union[None, Dict[str, str]]:
|
|
22091
|
+
"""Additional custom properties associated with this relationship.
|
|
22092
|
+
Allows for flexible extension without changing the schema."""
|
|
22093
|
+
return self._inner_dict.get('properties') # type: ignore
|
|
22094
|
+
|
|
22095
|
+
@properties.setter
|
|
22096
|
+
def properties(self, value: Union[None, Dict[str, str]]) -> None:
|
|
22097
|
+
self._inner_dict['properties'] = value
|
|
22098
|
+
|
|
22099
|
+
|
|
22100
|
+
@property
|
|
22101
|
+
def auditStamp(self) -> "AuditStampClass":
|
|
22102
|
+
"""Stores information about who made this change and when.
|
|
22103
|
+
Contains the actor (user or system) that performed the action and the timestamp."""
|
|
22104
|
+
return self._inner_dict.get('auditStamp') # type: ignore
|
|
22105
|
+
|
|
22106
|
+
@auditStamp.setter
|
|
22107
|
+
def auditStamp(self, value: "AuditStampClass") -> None:
|
|
22108
|
+
self._inner_dict['auditStamp'] = value
|
|
22109
|
+
|
|
22110
|
+
|
|
22111
|
+
class RelationshipChangeOperationClass(object):
|
|
22112
|
+
# No docs available.
|
|
22113
|
+
|
|
22114
|
+
ADD = "ADD"
|
|
22115
|
+
REMOVE = "REMOVE"
|
|
22116
|
+
RESTATE = "RESTATE"
|
|
22117
|
+
|
|
22118
|
+
|
|
22119
|
+
class PlatformResourceInfoClass(_Aspect):
|
|
22120
|
+
"""Platform Resource Info.
|
|
22121
|
+
These entities are for miscelaneous data that is used in non-core parts of the system.
|
|
22122
|
+
For instance, if we want to persist & retrieve data from auxiliary integrations such as Slack or Microsoft Teams."""
|
|
22123
|
+
|
|
22124
|
+
|
|
20507
22125
|
ASPECT_NAME = 'platformResourceInfo'
|
|
20508
22126
|
ASPECT_INFO = {}
|
|
20509
22127
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.platformresource.PlatformResourceInfo")
|
|
@@ -20886,6 +22504,7 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
20886
22504
|
resources: Union[None, List[str]]=None,
|
|
20887
22505
|
allResources: Optional[bool]=None,
|
|
20888
22506
|
filter: Union[None, "PolicyMatchFilterClass"]=None,
|
|
22507
|
+
privilegeConstraints: Union[None, "PolicyMatchFilterClass"]=None,
|
|
20889
22508
|
):
|
|
20890
22509
|
super().__init__()
|
|
20891
22510
|
|
|
@@ -20897,12 +22516,14 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
20897
22516
|
else:
|
|
20898
22517
|
self.allResources = allResources
|
|
20899
22518
|
self.filter = filter
|
|
22519
|
+
self.privilegeConstraints = privilegeConstraints
|
|
20900
22520
|
|
|
20901
22521
|
def _restore_defaults(self) -> None:
|
|
20902
22522
|
self.type = self.RECORD_SCHEMA.fields_dict["type"].default
|
|
20903
22523
|
self.resources = self.RECORD_SCHEMA.fields_dict["resources"].default
|
|
20904
22524
|
self.allResources = self.RECORD_SCHEMA.fields_dict["allResources"].default
|
|
20905
22525
|
self.filter = self.RECORD_SCHEMA.fields_dict["filter"].default
|
|
22526
|
+
self.privilegeConstraints = self.RECORD_SCHEMA.fields_dict["privilegeConstraints"].default
|
|
20906
22527
|
|
|
20907
22528
|
|
|
20908
22529
|
@property
|
|
@@ -20947,6 +22568,16 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
20947
22568
|
self._inner_dict['filter'] = value
|
|
20948
22569
|
|
|
20949
22570
|
|
|
22571
|
+
@property
|
|
22572
|
+
def privilegeConstraints(self) -> Union[None, "PolicyMatchFilterClass"]:
|
|
22573
|
+
"""Constraints around what sub-resources operations are allowed to modify, i.e. NOT_EQUALS - cannot modify a particular defined tag, EQUALS - can only modify a particular defined tag, STARTS_WITH - can only modify a tag starting with xyz"""
|
|
22574
|
+
return self._inner_dict.get('privilegeConstraints') # type: ignore
|
|
22575
|
+
|
|
22576
|
+
@privilegeConstraints.setter
|
|
22577
|
+
def privilegeConstraints(self, value: Union[None, "PolicyMatchFilterClass"]) -> None:
|
|
22578
|
+
self._inner_dict['privilegeConstraints'] = value
|
|
22579
|
+
|
|
22580
|
+
|
|
20950
22581
|
class DataHubRoleInfoClass(_Aspect):
|
|
20951
22582
|
"""Information about a DataHub Role."""
|
|
20952
22583
|
|
|
@@ -21015,6 +22646,9 @@ class PolicyMatchConditionClass(object):
|
|
|
21015
22646
|
STARTS_WITH = "STARTS_WITH"
|
|
21016
22647
|
"""Whether the field value starts with the value"""
|
|
21017
22648
|
|
|
22649
|
+
NOT_EQUALS = "NOT_EQUALS"
|
|
22650
|
+
"""Whether the field does not match the value"""
|
|
22651
|
+
|
|
21018
22652
|
|
|
21019
22653
|
|
|
21020
22654
|
class PolicyMatchCriterionClass(DictWrapper):
|
|
@@ -21296,6 +22930,9 @@ class QueryLanguageClass(object):
|
|
|
21296
22930
|
SQL = "SQL"
|
|
21297
22931
|
"""A SQL Query"""
|
|
21298
22932
|
|
|
22933
|
+
UNKNOWN = "UNKNOWN"
|
|
22934
|
+
"""Unknown query language"""
|
|
22935
|
+
|
|
21299
22936
|
|
|
21300
22937
|
|
|
21301
22938
|
class QueryPropertiesClass(_Aspect):
|
|
@@ -21311,12 +22948,18 @@ class QueryPropertiesClass(_Aspect):
|
|
|
21311
22948
|
source: Union[str, "QuerySourceClass"],
|
|
21312
22949
|
created: "AuditStampClass",
|
|
21313
22950
|
lastModified: "AuditStampClass",
|
|
22951
|
+
customProperties: Optional[Dict[str, str]]=None,
|
|
21314
22952
|
name: Union[None, str]=None,
|
|
21315
22953
|
description: Union[None, str]=None,
|
|
21316
22954
|
origin: Union[None, str]=None,
|
|
21317
22955
|
):
|
|
21318
22956
|
super().__init__()
|
|
21319
22957
|
|
|
22958
|
+
if customProperties is None:
|
|
22959
|
+
# default: {}
|
|
22960
|
+
self.customProperties = dict()
|
|
22961
|
+
else:
|
|
22962
|
+
self.customProperties = customProperties
|
|
21320
22963
|
self.statement = statement
|
|
21321
22964
|
self.source = source
|
|
21322
22965
|
self.name = name
|
|
@@ -21326,6 +22969,7 @@ class QueryPropertiesClass(_Aspect):
|
|
|
21326
22969
|
self.origin = origin
|
|
21327
22970
|
|
|
21328
22971
|
def _restore_defaults(self) -> None:
|
|
22972
|
+
self.customProperties = dict()
|
|
21329
22973
|
self.statement = QueryStatementClass._construct_with_defaults()
|
|
21330
22974
|
self.source = QuerySourceClass.MANUAL
|
|
21331
22975
|
self.name = self.RECORD_SCHEMA.fields_dict["name"].default
|
|
@@ -21335,6 +22979,16 @@ class QueryPropertiesClass(_Aspect):
|
|
|
21335
22979
|
self.origin = self.RECORD_SCHEMA.fields_dict["origin"].default
|
|
21336
22980
|
|
|
21337
22981
|
|
|
22982
|
+
@property
|
|
22983
|
+
def customProperties(self) -> Dict[str, str]:
|
|
22984
|
+
"""Custom property bag."""
|
|
22985
|
+
return self._inner_dict.get('customProperties') # type: ignore
|
|
22986
|
+
|
|
22987
|
+
@customProperties.setter
|
|
22988
|
+
def customProperties(self, value: Dict[str, str]) -> None:
|
|
22989
|
+
self._inner_dict['customProperties'] = value
|
|
22990
|
+
|
|
22991
|
+
|
|
21338
22992
|
@property
|
|
21339
22993
|
def statement(self) -> "QueryStatementClass":
|
|
21340
22994
|
"""The Query Statement."""
|
|
@@ -21779,7 +23433,7 @@ class VersionBasedRetentionClass(DictWrapper):
|
|
|
21779
23433
|
|
|
21780
23434
|
|
|
21781
23435
|
class ActorsClass(_Aspect):
|
|
21782
|
-
"""Provisioned users of a role"""
|
|
23436
|
+
"""Provisioned users and groups of a role"""
|
|
21783
23437
|
|
|
21784
23438
|
|
|
21785
23439
|
ASPECT_NAME = 'actors'
|
|
@@ -21788,13 +23442,16 @@ class ActorsClass(_Aspect):
|
|
|
21788
23442
|
|
|
21789
23443
|
def __init__(self,
|
|
21790
23444
|
users: Union[None, List["RoleUserClass"]]=None,
|
|
23445
|
+
groups: Union[None, List["RoleGroupClass"]]=None,
|
|
21791
23446
|
):
|
|
21792
23447
|
super().__init__()
|
|
21793
23448
|
|
|
21794
23449
|
self.users = users
|
|
23450
|
+
self.groups = groups
|
|
21795
23451
|
|
|
21796
23452
|
def _restore_defaults(self) -> None:
|
|
21797
23453
|
self.users = self.RECORD_SCHEMA.fields_dict["users"].default
|
|
23454
|
+
self.groups = self.RECORD_SCHEMA.fields_dict["groups"].default
|
|
21798
23455
|
|
|
21799
23456
|
|
|
21800
23457
|
@property
|
|
@@ -21807,6 +23464,41 @@ class ActorsClass(_Aspect):
|
|
|
21807
23464
|
self._inner_dict['users'] = value
|
|
21808
23465
|
|
|
21809
23466
|
|
|
23467
|
+
@property
|
|
23468
|
+
def groups(self) -> Union[None, List["RoleGroupClass"]]:
|
|
23469
|
+
"""List of provisioned groups of a role"""
|
|
23470
|
+
return self._inner_dict.get('groups') # type: ignore
|
|
23471
|
+
|
|
23472
|
+
@groups.setter
|
|
23473
|
+
def groups(self, value: Union[None, List["RoleGroupClass"]]) -> None:
|
|
23474
|
+
self._inner_dict['groups'] = value
|
|
23475
|
+
|
|
23476
|
+
|
|
23477
|
+
class RoleGroupClass(DictWrapper):
|
|
23478
|
+
"""Provisioned groups of a role"""
|
|
23479
|
+
|
|
23480
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.role.RoleGroup")
|
|
23481
|
+
def __init__(self,
|
|
23482
|
+
group: str,
|
|
23483
|
+
):
|
|
23484
|
+
super().__init__()
|
|
23485
|
+
|
|
23486
|
+
self.group = group
|
|
23487
|
+
|
|
23488
|
+
def _restore_defaults(self) -> None:
|
|
23489
|
+
self.group = str()
|
|
23490
|
+
|
|
23491
|
+
|
|
23492
|
+
@property
|
|
23493
|
+
def group(self) -> str:
|
|
23494
|
+
"""Link provisioned corp group for a role"""
|
|
23495
|
+
return self._inner_dict.get('group') # type: ignore
|
|
23496
|
+
|
|
23497
|
+
@group.setter
|
|
23498
|
+
def group(self, value: str) -> None:
|
|
23499
|
+
self._inner_dict['group'] = value
|
|
23500
|
+
|
|
23501
|
+
|
|
21810
23502
|
class RolePropertiesClass(_Aspect):
|
|
21811
23503
|
"""Information about a ExternalRoleProperties"""
|
|
21812
23504
|
|
|
@@ -23388,6 +25080,142 @@ class DataHubSecretValueClass(_Aspect):
|
|
|
23388
25080
|
self._inner_dict['created'] = value
|
|
23389
25081
|
|
|
23390
25082
|
|
|
25083
|
+
class AssetSettingsClass(_Aspect):
|
|
25084
|
+
"""Settings associated with this asset"""
|
|
25085
|
+
|
|
25086
|
+
|
|
25087
|
+
ASPECT_NAME = 'assetSettings'
|
|
25088
|
+
ASPECT_INFO = {}
|
|
25089
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.asset.AssetSettings")
|
|
25090
|
+
|
|
25091
|
+
def __init__(self,
|
|
25092
|
+
assetSummary: Union[None, "AssetSummarySettingsClass"]=None,
|
|
25093
|
+
):
|
|
25094
|
+
super().__init__()
|
|
25095
|
+
|
|
25096
|
+
self.assetSummary = assetSummary
|
|
25097
|
+
|
|
25098
|
+
def _restore_defaults(self) -> None:
|
|
25099
|
+
self.assetSummary = self.RECORD_SCHEMA.fields_dict["assetSummary"].default
|
|
25100
|
+
|
|
25101
|
+
|
|
25102
|
+
@property
|
|
25103
|
+
def assetSummary(self) -> Union[None, "AssetSummarySettingsClass"]:
|
|
25104
|
+
"""Information related to the asset summary for this asset"""
|
|
25105
|
+
return self._inner_dict.get('assetSummary') # type: ignore
|
|
25106
|
+
|
|
25107
|
+
@assetSummary.setter
|
|
25108
|
+
def assetSummary(self, value: Union[None, "AssetSummarySettingsClass"]) -> None:
|
|
25109
|
+
self._inner_dict['assetSummary'] = value
|
|
25110
|
+
|
|
25111
|
+
|
|
25112
|
+
class AssetSummarySettingsClass(DictWrapper):
|
|
25113
|
+
"""Information related to the asset summary for this asset"""
|
|
25114
|
+
|
|
25115
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.asset.AssetSummarySettings")
|
|
25116
|
+
def __init__(self,
|
|
25117
|
+
templates: Optional[Union[List["AssetSummarySettingsTemplateClass"], None]]=None,
|
|
25118
|
+
):
|
|
25119
|
+
super().__init__()
|
|
25120
|
+
|
|
25121
|
+
if templates is None:
|
|
25122
|
+
# default: []
|
|
25123
|
+
self.templates = list()
|
|
25124
|
+
else:
|
|
25125
|
+
self.templates = templates
|
|
25126
|
+
|
|
25127
|
+
def _restore_defaults(self) -> None:
|
|
25128
|
+
self.templates = list()
|
|
25129
|
+
|
|
25130
|
+
|
|
25131
|
+
@property
|
|
25132
|
+
def templates(self) -> Union[List["AssetSummarySettingsTemplateClass"], None]:
|
|
25133
|
+
"""The list of templates applied to this asset in order. Right now we only expect one."""
|
|
25134
|
+
return self._inner_dict.get('templates') # type: ignore
|
|
25135
|
+
|
|
25136
|
+
@templates.setter
|
|
25137
|
+
def templates(self, value: Union[List["AssetSummarySettingsTemplateClass"], None]) -> None:
|
|
25138
|
+
self._inner_dict['templates'] = value
|
|
25139
|
+
|
|
25140
|
+
|
|
25141
|
+
class AssetSummarySettingsTemplateClass(DictWrapper):
|
|
25142
|
+
"""Object containing the template and any additional info for asset summary settings"""
|
|
25143
|
+
|
|
25144
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.asset.AssetSummarySettingsTemplate")
|
|
25145
|
+
def __init__(self,
|
|
25146
|
+
template: str,
|
|
25147
|
+
):
|
|
25148
|
+
super().__init__()
|
|
25149
|
+
|
|
25150
|
+
self.template = template
|
|
25151
|
+
|
|
25152
|
+
def _restore_defaults(self) -> None:
|
|
25153
|
+
self.template = str()
|
|
25154
|
+
|
|
25155
|
+
|
|
25156
|
+
@property
|
|
25157
|
+
def template(self) -> str:
|
|
25158
|
+
"""The urn of the template"""
|
|
25159
|
+
return self._inner_dict.get('template') # type: ignore
|
|
25160
|
+
|
|
25161
|
+
@template.setter
|
|
25162
|
+
def template(self, value: str) -> None:
|
|
25163
|
+
self._inner_dict['template'] = value
|
|
25164
|
+
|
|
25165
|
+
|
|
25166
|
+
class ApplicationsSettingsClass(DictWrapper):
|
|
25167
|
+
# No docs available.
|
|
25168
|
+
|
|
25169
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.ApplicationsSettings")
|
|
25170
|
+
def __init__(self,
|
|
25171
|
+
enabled: bool,
|
|
25172
|
+
config: Union[None, str]=None,
|
|
25173
|
+
configVersion: Union[None, str]=None,
|
|
25174
|
+
):
|
|
25175
|
+
super().__init__()
|
|
25176
|
+
|
|
25177
|
+
self.enabled = enabled
|
|
25178
|
+
self.config = config
|
|
25179
|
+
self.configVersion = configVersion
|
|
25180
|
+
|
|
25181
|
+
def _restore_defaults(self) -> None:
|
|
25182
|
+
self.enabled = bool()
|
|
25183
|
+
self.config = self.RECORD_SCHEMA.fields_dict["config"].default
|
|
25184
|
+
self.configVersion = self.RECORD_SCHEMA.fields_dict["configVersion"].default
|
|
25185
|
+
|
|
25186
|
+
|
|
25187
|
+
@property
|
|
25188
|
+
def enabled(self) -> bool:
|
|
25189
|
+
# No docs available.
|
|
25190
|
+
return self._inner_dict.get('enabled') # type: ignore
|
|
25191
|
+
|
|
25192
|
+
@enabled.setter
|
|
25193
|
+
def enabled(self, value: bool) -> None:
|
|
25194
|
+
self._inner_dict['enabled'] = value
|
|
25195
|
+
|
|
25196
|
+
|
|
25197
|
+
@property
|
|
25198
|
+
def config(self) -> Union[None, str]:
|
|
25199
|
+
"""The configuration for the feature, in JSON format."""
|
|
25200
|
+
return self._inner_dict.get('config') # type: ignore
|
|
25201
|
+
|
|
25202
|
+
@config.setter
|
|
25203
|
+
def config(self, value: Union[None, str]) -> None:
|
|
25204
|
+
self._inner_dict['config'] = value
|
|
25205
|
+
|
|
25206
|
+
|
|
25207
|
+
@property
|
|
25208
|
+
def configVersion(self) -> Union[None, str]:
|
|
25209
|
+
"""The version of the configuration schema that has been used to serialize
|
|
25210
|
+
the config.
|
|
25211
|
+
If not provided, the version is assumed to be the latest version."""
|
|
25212
|
+
return self._inner_dict.get('configVersion') # type: ignore
|
|
25213
|
+
|
|
25214
|
+
@configVersion.setter
|
|
25215
|
+
def configVersion(self, value: Union[None, str]) -> None:
|
|
25216
|
+
self._inner_dict['configVersion'] = value
|
|
25217
|
+
|
|
25218
|
+
|
|
23391
25219
|
class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
23392
25220
|
# No docs available.
|
|
23393
25221
|
|
|
@@ -23458,6 +25286,31 @@ class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
|
23458
25286
|
self._inner_dict['columnPropagationEnabled'] = value
|
|
23459
25287
|
|
|
23460
25288
|
|
|
25289
|
+
class GlobalHomePageSettingsClass(DictWrapper):
|
|
25290
|
+
"""Global settings related to the home page for an instance"""
|
|
25291
|
+
|
|
25292
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings")
|
|
25293
|
+
def __init__(self,
|
|
25294
|
+
defaultTemplate: str,
|
|
25295
|
+
):
|
|
25296
|
+
super().__init__()
|
|
25297
|
+
|
|
25298
|
+
self.defaultTemplate = defaultTemplate
|
|
25299
|
+
|
|
25300
|
+
def _restore_defaults(self) -> None:
|
|
25301
|
+
self.defaultTemplate = str()
|
|
25302
|
+
|
|
25303
|
+
|
|
25304
|
+
@property
|
|
25305
|
+
def defaultTemplate(self) -> str:
|
|
25306
|
+
"""The urn that will be rendered in the UI by default for all users"""
|
|
25307
|
+
return self._inner_dict.get('defaultTemplate') # type: ignore
|
|
25308
|
+
|
|
25309
|
+
@defaultTemplate.setter
|
|
25310
|
+
def defaultTemplate(self, value: str) -> None:
|
|
25311
|
+
self._inner_dict['defaultTemplate'] = value
|
|
25312
|
+
|
|
25313
|
+
|
|
23461
25314
|
class GlobalSettingsInfoClass(_Aspect):
|
|
23462
25315
|
"""DataHub Global platform settings. Careful - these should not be modified by the outside world!"""
|
|
23463
25316
|
|
|
@@ -23468,23 +25321,32 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
23468
25321
|
|
|
23469
25322
|
def __init__(self,
|
|
23470
25323
|
sso: Union[None, "SsoSettingsClass"]=None,
|
|
25324
|
+
oauth: Union[None, "OAuthSettingsClass"]=None,
|
|
23471
25325
|
views: Union[None, "GlobalViewsSettingsClass"]=None,
|
|
23472
25326
|
docPropagation: Optional[Union["DocPropagationFeatureSettingsClass", None]]=None,
|
|
25327
|
+
homePage: Union[None, "GlobalHomePageSettingsClass"]=None,
|
|
25328
|
+
applications: Union[None, "ApplicationsSettingsClass"]=None,
|
|
23473
25329
|
):
|
|
23474
25330
|
super().__init__()
|
|
23475
25331
|
|
|
23476
25332
|
self.sso = sso
|
|
25333
|
+
self.oauth = oauth
|
|
23477
25334
|
self.views = views
|
|
23478
25335
|
if docPropagation is None:
|
|
23479
25336
|
# default: {'configVersion': None, 'config': None, 'enabled': True, 'columnPropagationEnabled': True}
|
|
23480
25337
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
23481
25338
|
else:
|
|
23482
25339
|
self.docPropagation = docPropagation
|
|
25340
|
+
self.homePage = homePage
|
|
25341
|
+
self.applications = applications
|
|
23483
25342
|
|
|
23484
25343
|
def _restore_defaults(self) -> None:
|
|
23485
25344
|
self.sso = self.RECORD_SCHEMA.fields_dict["sso"].default
|
|
25345
|
+
self.oauth = self.RECORD_SCHEMA.fields_dict["oauth"].default
|
|
23486
25346
|
self.views = self.RECORD_SCHEMA.fields_dict["views"].default
|
|
23487
25347
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
25348
|
+
self.homePage = self.RECORD_SCHEMA.fields_dict["homePage"].default
|
|
25349
|
+
self.applications = self.RECORD_SCHEMA.fields_dict["applications"].default
|
|
23488
25350
|
|
|
23489
25351
|
|
|
23490
25352
|
@property
|
|
@@ -23497,6 +25359,16 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
23497
25359
|
self._inner_dict['sso'] = value
|
|
23498
25360
|
|
|
23499
25361
|
|
|
25362
|
+
@property
|
|
25363
|
+
def oauth(self) -> Union[None, "OAuthSettingsClass"]:
|
|
25364
|
+
"""Settings related to the oauth authentication provider"""
|
|
25365
|
+
return self._inner_dict.get('oauth') # type: ignore
|
|
25366
|
+
|
|
25367
|
+
@oauth.setter
|
|
25368
|
+
def oauth(self, value: Union[None, "OAuthSettingsClass"]) -> None:
|
|
25369
|
+
self._inner_dict['oauth'] = value
|
|
25370
|
+
|
|
25371
|
+
|
|
23500
25372
|
@property
|
|
23501
25373
|
def views(self) -> Union[None, "GlobalViewsSettingsClass"]:
|
|
23502
25374
|
"""Settings related to the Views Feature"""
|
|
@@ -23517,7 +25389,27 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
23517
25389
|
self._inner_dict['docPropagation'] = value
|
|
23518
25390
|
|
|
23519
25391
|
|
|
23520
|
-
|
|
25392
|
+
@property
|
|
25393
|
+
def homePage(self) -> Union[None, "GlobalHomePageSettingsClass"]:
|
|
25394
|
+
"""Global settings related to the home page for an instance"""
|
|
25395
|
+
return self._inner_dict.get('homePage') # type: ignore
|
|
25396
|
+
|
|
25397
|
+
@homePage.setter
|
|
25398
|
+
def homePage(self, value: Union[None, "GlobalHomePageSettingsClass"]) -> None:
|
|
25399
|
+
self._inner_dict['homePage'] = value
|
|
25400
|
+
|
|
25401
|
+
|
|
25402
|
+
@property
|
|
25403
|
+
def applications(self) -> Union[None, "ApplicationsSettingsClass"]:
|
|
25404
|
+
"""Settings related to applications. If not enabled, applications won't show up in navigation"""
|
|
25405
|
+
return self._inner_dict.get('applications') # type: ignore
|
|
25406
|
+
|
|
25407
|
+
@applications.setter
|
|
25408
|
+
def applications(self, value: Union[None, "ApplicationsSettingsClass"]) -> None:
|
|
25409
|
+
self._inner_dict['applications'] = value
|
|
25410
|
+
|
|
25411
|
+
|
|
25412
|
+
class GlobalViewsSettingsClass(DictWrapper):
|
|
23521
25413
|
"""Settings for DataHub Views feature."""
|
|
23522
25414
|
|
|
23523
25415
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.GlobalViewsSettings")
|
|
@@ -23542,6 +25434,145 @@ class GlobalViewsSettingsClass(DictWrapper):
|
|
|
23542
25434
|
self._inner_dict['defaultView'] = value
|
|
23543
25435
|
|
|
23544
25436
|
|
|
25437
|
+
class OAuthProviderClass(DictWrapper):
|
|
25438
|
+
"""An OAuth Provider. This provides information required to validate inbound
|
|
25439
|
+
requests with OAuth 2.0 bearer tokens."""
|
|
25440
|
+
|
|
25441
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.OAuthProvider")
|
|
25442
|
+
def __init__(self,
|
|
25443
|
+
enabled: bool,
|
|
25444
|
+
name: str,
|
|
25445
|
+
issuer: str,
|
|
25446
|
+
audience: str,
|
|
25447
|
+
jwksUri: Union[None, str]=None,
|
|
25448
|
+
algorithm: Optional[str]=None,
|
|
25449
|
+
userIdClaim: Optional[str]=None,
|
|
25450
|
+
):
|
|
25451
|
+
super().__init__()
|
|
25452
|
+
|
|
25453
|
+
self.enabled = enabled
|
|
25454
|
+
self.name = name
|
|
25455
|
+
self.jwksUri = jwksUri
|
|
25456
|
+
self.issuer = issuer
|
|
25457
|
+
self.audience = audience
|
|
25458
|
+
if algorithm is None:
|
|
25459
|
+
# default: 'RS256'
|
|
25460
|
+
self.algorithm = self.RECORD_SCHEMA.fields_dict["algorithm"].default
|
|
25461
|
+
else:
|
|
25462
|
+
self.algorithm = algorithm
|
|
25463
|
+
if userIdClaim is None:
|
|
25464
|
+
# default: 'sub'
|
|
25465
|
+
self.userIdClaim = self.RECORD_SCHEMA.fields_dict["userIdClaim"].default
|
|
25466
|
+
else:
|
|
25467
|
+
self.userIdClaim = userIdClaim
|
|
25468
|
+
|
|
25469
|
+
def _restore_defaults(self) -> None:
|
|
25470
|
+
self.enabled = bool()
|
|
25471
|
+
self.name = str()
|
|
25472
|
+
self.jwksUri = self.RECORD_SCHEMA.fields_dict["jwksUri"].default
|
|
25473
|
+
self.issuer = str()
|
|
25474
|
+
self.audience = str()
|
|
25475
|
+
self.algorithm = self.RECORD_SCHEMA.fields_dict["algorithm"].default
|
|
25476
|
+
self.userIdClaim = self.RECORD_SCHEMA.fields_dict["userIdClaim"].default
|
|
25477
|
+
|
|
25478
|
+
|
|
25479
|
+
@property
|
|
25480
|
+
def enabled(self) -> bool:
|
|
25481
|
+
"""Whether this OAuth provider is enabled."""
|
|
25482
|
+
return self._inner_dict.get('enabled') # type: ignore
|
|
25483
|
+
|
|
25484
|
+
@enabled.setter
|
|
25485
|
+
def enabled(self, value: bool) -> None:
|
|
25486
|
+
self._inner_dict['enabled'] = value
|
|
25487
|
+
|
|
25488
|
+
|
|
25489
|
+
@property
|
|
25490
|
+
def name(self) -> str:
|
|
25491
|
+
"""The name of this OAuth provider. This is used for display purposes only."""
|
|
25492
|
+
return self._inner_dict.get('name') # type: ignore
|
|
25493
|
+
|
|
25494
|
+
@name.setter
|
|
25495
|
+
def name(self, value: str) -> None:
|
|
25496
|
+
self._inner_dict['name'] = value
|
|
25497
|
+
|
|
25498
|
+
|
|
25499
|
+
@property
|
|
25500
|
+
def jwksUri(self) -> Union[None, str]:
|
|
25501
|
+
"""The URI of the JSON Web Key Set (JWKS) endpoint for this OAuth provider."""
|
|
25502
|
+
return self._inner_dict.get('jwksUri') # type: ignore
|
|
25503
|
+
|
|
25504
|
+
@jwksUri.setter
|
|
25505
|
+
def jwksUri(self, value: Union[None, str]) -> None:
|
|
25506
|
+
self._inner_dict['jwksUri'] = value
|
|
25507
|
+
|
|
25508
|
+
|
|
25509
|
+
@property
|
|
25510
|
+
def issuer(self) -> str:
|
|
25511
|
+
"""The expected issuer (iss) claim in the JWTs issued by this OAuth provider."""
|
|
25512
|
+
return self._inner_dict.get('issuer') # type: ignore
|
|
25513
|
+
|
|
25514
|
+
@issuer.setter
|
|
25515
|
+
def issuer(self, value: str) -> None:
|
|
25516
|
+
self._inner_dict['issuer'] = value
|
|
25517
|
+
|
|
25518
|
+
|
|
25519
|
+
@property
|
|
25520
|
+
def audience(self) -> str:
|
|
25521
|
+
"""The expected audience (aud) claim in the JWTs issued by this OAuth provider."""
|
|
25522
|
+
return self._inner_dict.get('audience') # type: ignore
|
|
25523
|
+
|
|
25524
|
+
@audience.setter
|
|
25525
|
+
def audience(self, value: str) -> None:
|
|
25526
|
+
self._inner_dict['audience'] = value
|
|
25527
|
+
|
|
25528
|
+
|
|
25529
|
+
@property
|
|
25530
|
+
def algorithm(self) -> str:
|
|
25531
|
+
"""The JWT signing algorithm required for this provider.
|
|
25532
|
+
Prevents algorithm confusion attacks. Common values: RS256, RS384, RS512, PS256, ES256"""
|
|
25533
|
+
return self._inner_dict.get('algorithm') # type: ignore
|
|
25534
|
+
|
|
25535
|
+
@algorithm.setter
|
|
25536
|
+
def algorithm(self, value: str) -> None:
|
|
25537
|
+
self._inner_dict['algorithm'] = value
|
|
25538
|
+
|
|
25539
|
+
|
|
25540
|
+
@property
|
|
25541
|
+
def userIdClaim(self) -> str:
|
|
25542
|
+
"""The JWT claim to use as the user identifier for this provider.
|
|
25543
|
+
Different providers use different claims (sub, email, preferred_username, etc.)"""
|
|
25544
|
+
return self._inner_dict.get('userIdClaim') # type: ignore
|
|
25545
|
+
|
|
25546
|
+
@userIdClaim.setter
|
|
25547
|
+
def userIdClaim(self, value: str) -> None:
|
|
25548
|
+
self._inner_dict['userIdClaim'] = value
|
|
25549
|
+
|
|
25550
|
+
|
|
25551
|
+
class OAuthSettingsClass(DictWrapper):
|
|
25552
|
+
"""Trust oauth providers to use for authentication."""
|
|
25553
|
+
|
|
25554
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.OAuthSettings")
|
|
25555
|
+
def __init__(self,
|
|
25556
|
+
providers: List["OAuthProviderClass"],
|
|
25557
|
+
):
|
|
25558
|
+
super().__init__()
|
|
25559
|
+
|
|
25560
|
+
self.providers = providers
|
|
25561
|
+
|
|
25562
|
+
def _restore_defaults(self) -> None:
|
|
25563
|
+
self.providers = list()
|
|
25564
|
+
|
|
25565
|
+
|
|
25566
|
+
@property
|
|
25567
|
+
def providers(self) -> List["OAuthProviderClass"]:
|
|
25568
|
+
"""Trusted OAuth Providers"""
|
|
25569
|
+
return self._inner_dict.get('providers') # type: ignore
|
|
25570
|
+
|
|
25571
|
+
@providers.setter
|
|
25572
|
+
def providers(self, value: List["OAuthProviderClass"]) -> None:
|
|
25573
|
+
self._inner_dict['providers'] = value
|
|
25574
|
+
|
|
25575
|
+
|
|
23545
25576
|
class OidcSettingsClass(DictWrapper):
|
|
23546
25577
|
"""Settings for OIDC SSO integration."""
|
|
23547
25578
|
|
|
@@ -24202,6 +26233,7 @@ class StructuredPropertySettingsClass(_Aspect):
|
|
|
24202
26233
|
isHidden: Optional[bool]=None,
|
|
24203
26234
|
showInSearchFilters: Optional[bool]=None,
|
|
24204
26235
|
showInAssetSummary: Optional[bool]=None,
|
|
26236
|
+
hideInAssetSummaryWhenEmpty: Optional[bool]=None,
|
|
24205
26237
|
showAsAssetBadge: Optional[bool]=None,
|
|
24206
26238
|
showInColumnsTable: Optional[bool]=None,
|
|
24207
26239
|
lastModified: Union[None, "AuditStampClass"]=None,
|
|
@@ -24223,6 +26255,11 @@ class StructuredPropertySettingsClass(_Aspect):
|
|
|
24223
26255
|
self.showInAssetSummary = self.RECORD_SCHEMA.fields_dict["showInAssetSummary"].default
|
|
24224
26256
|
else:
|
|
24225
26257
|
self.showInAssetSummary = showInAssetSummary
|
|
26258
|
+
if hideInAssetSummaryWhenEmpty is None:
|
|
26259
|
+
# default: False
|
|
26260
|
+
self.hideInAssetSummaryWhenEmpty = self.RECORD_SCHEMA.fields_dict["hideInAssetSummaryWhenEmpty"].default
|
|
26261
|
+
else:
|
|
26262
|
+
self.hideInAssetSummaryWhenEmpty = hideInAssetSummaryWhenEmpty
|
|
24226
26263
|
if showAsAssetBadge is None:
|
|
24227
26264
|
# default: False
|
|
24228
26265
|
self.showAsAssetBadge = self.RECORD_SCHEMA.fields_dict["showAsAssetBadge"].default
|
|
@@ -24239,6 +26276,7 @@ class StructuredPropertySettingsClass(_Aspect):
|
|
|
24239
26276
|
self.isHidden = self.RECORD_SCHEMA.fields_dict["isHidden"].default
|
|
24240
26277
|
self.showInSearchFilters = self.RECORD_SCHEMA.fields_dict["showInSearchFilters"].default
|
|
24241
26278
|
self.showInAssetSummary = self.RECORD_SCHEMA.fields_dict["showInAssetSummary"].default
|
|
26279
|
+
self.hideInAssetSummaryWhenEmpty = self.RECORD_SCHEMA.fields_dict["hideInAssetSummaryWhenEmpty"].default
|
|
24242
26280
|
self.showAsAssetBadge = self.RECORD_SCHEMA.fields_dict["showAsAssetBadge"].default
|
|
24243
26281
|
self.showInColumnsTable = self.RECORD_SCHEMA.fields_dict["showInColumnsTable"].default
|
|
24244
26282
|
self.lastModified = self.RECORD_SCHEMA.fields_dict["lastModified"].default
|
|
@@ -24274,6 +26312,17 @@ class StructuredPropertySettingsClass(_Aspect):
|
|
|
24274
26312
|
self._inner_dict['showInAssetSummary'] = value
|
|
24275
26313
|
|
|
24276
26314
|
|
|
26315
|
+
@property
|
|
26316
|
+
def hideInAssetSummaryWhenEmpty(self) -> bool:
|
|
26317
|
+
"""Whether or not this asset should be hidden in the asset sidebar (showInAssetSummary should be enabled)
|
|
26318
|
+
when its value is empty"""
|
|
26319
|
+
return self._inner_dict.get('hideInAssetSummaryWhenEmpty') # type: ignore
|
|
26320
|
+
|
|
26321
|
+
@hideInAssetSummaryWhenEmpty.setter
|
|
26322
|
+
def hideInAssetSummaryWhenEmpty(self, value: bool) -> None:
|
|
26323
|
+
self._inner_dict['hideInAssetSummaryWhenEmpty'] = value
|
|
26324
|
+
|
|
26325
|
+
|
|
24277
26326
|
@property
|
|
24278
26327
|
def showAsAssetBadge(self) -> bool:
|
|
24279
26328
|
"""Whether or not this asset should be displayed as an asset badge on other
|
|
@@ -24315,6 +26364,7 @@ class StructuredPropertyValueAssignmentClass(DictWrapper):
|
|
|
24315
26364
|
values: List[Union[str, float]],
|
|
24316
26365
|
created: Union[None, "AuditStampClass"]=None,
|
|
24317
26366
|
lastModified: Union[None, "AuditStampClass"]=None,
|
|
26367
|
+
attribution: Union[None, "MetadataAttributionClass"]=None,
|
|
24318
26368
|
):
|
|
24319
26369
|
super().__init__()
|
|
24320
26370
|
|
|
@@ -24322,12 +26372,14 @@ class StructuredPropertyValueAssignmentClass(DictWrapper):
|
|
|
24322
26372
|
self.values = values
|
|
24323
26373
|
self.created = created
|
|
24324
26374
|
self.lastModified = lastModified
|
|
26375
|
+
self.attribution = attribution
|
|
24325
26376
|
|
|
24326
26377
|
def _restore_defaults(self) -> None:
|
|
24327
26378
|
self.propertyUrn = str()
|
|
24328
26379
|
self.values = list()
|
|
24329
26380
|
self.created = self.RECORD_SCHEMA.fields_dict["created"].default
|
|
24330
26381
|
self.lastModified = self.RECORD_SCHEMA.fields_dict["lastModified"].default
|
|
26382
|
+
self.attribution = self.RECORD_SCHEMA.fields_dict["attribution"].default
|
|
24331
26383
|
|
|
24332
26384
|
|
|
24333
26385
|
@property
|
|
@@ -24370,6 +26422,16 @@ class StructuredPropertyValueAssignmentClass(DictWrapper):
|
|
|
24370
26422
|
self._inner_dict['lastModified'] = value
|
|
24371
26423
|
|
|
24372
26424
|
|
|
26425
|
+
@property
|
|
26426
|
+
def attribution(self) -> Union[None, "MetadataAttributionClass"]:
|
|
26427
|
+
"""Information about who, why, and how this metadata was applied"""
|
|
26428
|
+
return self._inner_dict.get('attribution') # type: ignore
|
|
26429
|
+
|
|
26430
|
+
@attribution.setter
|
|
26431
|
+
def attribution(self, value: Union[None, "MetadataAttributionClass"]) -> None:
|
|
26432
|
+
self._inner_dict['attribution'] = value
|
|
26433
|
+
|
|
26434
|
+
|
|
24373
26435
|
class TagPropertiesClass(_Aspect):
|
|
24374
26436
|
"""Properties associated with a Tag"""
|
|
24375
26437
|
|
|
@@ -24454,6 +26516,271 @@ class TelemetryClientIdClass(_Aspect):
|
|
|
24454
26516
|
self._inner_dict['clientId'] = value
|
|
24455
26517
|
|
|
24456
26518
|
|
|
26519
|
+
class DataHubPageTemplateAssetSummaryClass(DictWrapper):
|
|
26520
|
+
"""The page template info for asset summaries"""
|
|
26521
|
+
|
|
26522
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateAssetSummary")
|
|
26523
|
+
def __init__(self,
|
|
26524
|
+
summaryElements: Union[None, List["SummaryElementClass"]]=None,
|
|
26525
|
+
):
|
|
26526
|
+
super().__init__()
|
|
26527
|
+
|
|
26528
|
+
self.summaryElements = summaryElements
|
|
26529
|
+
|
|
26530
|
+
def _restore_defaults(self) -> None:
|
|
26531
|
+
self.summaryElements = self.RECORD_SCHEMA.fields_dict["summaryElements"].default
|
|
26532
|
+
|
|
26533
|
+
|
|
26534
|
+
@property
|
|
26535
|
+
def summaryElements(self) -> Union[None, List["SummaryElementClass"]]:
|
|
26536
|
+
"""The optional list of properties shown on an asset summary page header."""
|
|
26537
|
+
return self._inner_dict.get('summaryElements') # type: ignore
|
|
26538
|
+
|
|
26539
|
+
@summaryElements.setter
|
|
26540
|
+
def summaryElements(self, value: Union[None, List["SummaryElementClass"]]) -> None:
|
|
26541
|
+
self._inner_dict['summaryElements'] = value
|
|
26542
|
+
|
|
26543
|
+
|
|
26544
|
+
class DataHubPageTemplatePropertiesClass(_Aspect):
|
|
26545
|
+
"""The main properties of a DataHub page template"""
|
|
26546
|
+
|
|
26547
|
+
|
|
26548
|
+
ASPECT_NAME = 'dataHubPageTemplateProperties'
|
|
26549
|
+
ASPECT_INFO = {}
|
|
26550
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties")
|
|
26551
|
+
|
|
26552
|
+
def __init__(self,
|
|
26553
|
+
rows: List["DataHubPageTemplateRowClass"],
|
|
26554
|
+
surface: "DataHubPageTemplateSurfaceClass",
|
|
26555
|
+
visibility: "DataHubPageTemplateVisibilityClass",
|
|
26556
|
+
created: "AuditStampClass",
|
|
26557
|
+
lastModified: "AuditStampClass",
|
|
26558
|
+
assetSummary: Union[None, "DataHubPageTemplateAssetSummaryClass"]=None,
|
|
26559
|
+
):
|
|
26560
|
+
super().__init__()
|
|
26561
|
+
|
|
26562
|
+
self.rows = rows
|
|
26563
|
+
self.assetSummary = assetSummary
|
|
26564
|
+
self.surface = surface
|
|
26565
|
+
self.visibility = visibility
|
|
26566
|
+
self.created = created
|
|
26567
|
+
self.lastModified = lastModified
|
|
26568
|
+
|
|
26569
|
+
def _restore_defaults(self) -> None:
|
|
26570
|
+
self.rows = list()
|
|
26571
|
+
self.assetSummary = self.RECORD_SCHEMA.fields_dict["assetSummary"].default
|
|
26572
|
+
self.surface = DataHubPageTemplateSurfaceClass._construct_with_defaults()
|
|
26573
|
+
self.visibility = DataHubPageTemplateVisibilityClass._construct_with_defaults()
|
|
26574
|
+
self.created = AuditStampClass._construct_with_defaults()
|
|
26575
|
+
self.lastModified = AuditStampClass._construct_with_defaults()
|
|
26576
|
+
|
|
26577
|
+
|
|
26578
|
+
@property
|
|
26579
|
+
def rows(self) -> List["DataHubPageTemplateRowClass"]:
|
|
26580
|
+
"""The rows of modules contained in this template"""
|
|
26581
|
+
return self._inner_dict.get('rows') # type: ignore
|
|
26582
|
+
|
|
26583
|
+
@rows.setter
|
|
26584
|
+
def rows(self, value: List["DataHubPageTemplateRowClass"]) -> None:
|
|
26585
|
+
self._inner_dict['rows'] = value
|
|
26586
|
+
|
|
26587
|
+
|
|
26588
|
+
@property
|
|
26589
|
+
def assetSummary(self) -> Union[None, "DataHubPageTemplateAssetSummaryClass"]:
|
|
26590
|
+
"""The optional info for asset summaries. Should be populated if surfaceType is ASSET_SUMMARY"""
|
|
26591
|
+
return self._inner_dict.get('assetSummary') # type: ignore
|
|
26592
|
+
|
|
26593
|
+
@assetSummary.setter
|
|
26594
|
+
def assetSummary(self, value: Union[None, "DataHubPageTemplateAssetSummaryClass"]) -> None:
|
|
26595
|
+
self._inner_dict['assetSummary'] = value
|
|
26596
|
+
|
|
26597
|
+
|
|
26598
|
+
@property
|
|
26599
|
+
def surface(self) -> "DataHubPageTemplateSurfaceClass":
|
|
26600
|
+
"""Info about the surface area of the product that this template is deployed in"""
|
|
26601
|
+
return self._inner_dict.get('surface') # type: ignore
|
|
26602
|
+
|
|
26603
|
+
@surface.setter
|
|
26604
|
+
def surface(self, value: "DataHubPageTemplateSurfaceClass") -> None:
|
|
26605
|
+
self._inner_dict['surface'] = value
|
|
26606
|
+
|
|
26607
|
+
|
|
26608
|
+
@property
|
|
26609
|
+
def visibility(self) -> "DataHubPageTemplateVisibilityClass":
|
|
26610
|
+
"""Info about the visibility of this template"""
|
|
26611
|
+
return self._inner_dict.get('visibility') # type: ignore
|
|
26612
|
+
|
|
26613
|
+
@visibility.setter
|
|
26614
|
+
def visibility(self, value: "DataHubPageTemplateVisibilityClass") -> None:
|
|
26615
|
+
self._inner_dict['visibility'] = value
|
|
26616
|
+
|
|
26617
|
+
|
|
26618
|
+
@property
|
|
26619
|
+
def created(self) -> "AuditStampClass":
|
|
26620
|
+
"""Audit stamp for when and by whom this template was created"""
|
|
26621
|
+
return self._inner_dict.get('created') # type: ignore
|
|
26622
|
+
|
|
26623
|
+
@created.setter
|
|
26624
|
+
def created(self, value: "AuditStampClass") -> None:
|
|
26625
|
+
self._inner_dict['created'] = value
|
|
26626
|
+
|
|
26627
|
+
|
|
26628
|
+
@property
|
|
26629
|
+
def lastModified(self) -> "AuditStampClass":
|
|
26630
|
+
"""Audit stamp for when and by whom this template was last updated"""
|
|
26631
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
26632
|
+
|
|
26633
|
+
@lastModified.setter
|
|
26634
|
+
def lastModified(self, value: "AuditStampClass") -> None:
|
|
26635
|
+
self._inner_dict['lastModified'] = value
|
|
26636
|
+
|
|
26637
|
+
|
|
26638
|
+
class DataHubPageTemplateRowClass(DictWrapper):
|
|
26639
|
+
"""A row of modules contained in a template"""
|
|
26640
|
+
|
|
26641
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateRow")
|
|
26642
|
+
def __init__(self,
|
|
26643
|
+
modules: List[str],
|
|
26644
|
+
):
|
|
26645
|
+
super().__init__()
|
|
26646
|
+
|
|
26647
|
+
self.modules = modules
|
|
26648
|
+
|
|
26649
|
+
def _restore_defaults(self) -> None:
|
|
26650
|
+
self.modules = list()
|
|
26651
|
+
|
|
26652
|
+
|
|
26653
|
+
@property
|
|
26654
|
+
def modules(self) -> List[str]:
|
|
26655
|
+
"""The modules that exist in this template row"""
|
|
26656
|
+
return self._inner_dict.get('modules') # type: ignore
|
|
26657
|
+
|
|
26658
|
+
@modules.setter
|
|
26659
|
+
def modules(self, value: List[str]) -> None:
|
|
26660
|
+
self._inner_dict['modules'] = value
|
|
26661
|
+
|
|
26662
|
+
|
|
26663
|
+
class DataHubPageTemplateSurfaceClass(DictWrapper):
|
|
26664
|
+
"""Info about the surface area of the product that this template is deployed in"""
|
|
26665
|
+
|
|
26666
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface")
|
|
26667
|
+
def __init__(self,
|
|
26668
|
+
surfaceType: Union[str, "PageTemplateSurfaceTypeClass"],
|
|
26669
|
+
):
|
|
26670
|
+
super().__init__()
|
|
26671
|
+
|
|
26672
|
+
self.surfaceType = surfaceType
|
|
26673
|
+
|
|
26674
|
+
def _restore_defaults(self) -> None:
|
|
26675
|
+
self.surfaceType = PageTemplateSurfaceTypeClass.HOME_PAGE
|
|
26676
|
+
|
|
26677
|
+
|
|
26678
|
+
@property
|
|
26679
|
+
def surfaceType(self) -> Union[str, "PageTemplateSurfaceTypeClass"]:
|
|
26680
|
+
"""Where exactly is this template being used"""
|
|
26681
|
+
return self._inner_dict.get('surfaceType') # type: ignore
|
|
26682
|
+
|
|
26683
|
+
@surfaceType.setter
|
|
26684
|
+
def surfaceType(self, value: Union[str, "PageTemplateSurfaceTypeClass"]) -> None:
|
|
26685
|
+
self._inner_dict['surfaceType'] = value
|
|
26686
|
+
|
|
26687
|
+
|
|
26688
|
+
class DataHubPageTemplateVisibilityClass(DictWrapper):
|
|
26689
|
+
"""Info about the visibility of this template"""
|
|
26690
|
+
|
|
26691
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility")
|
|
26692
|
+
def __init__(self,
|
|
26693
|
+
scope: Union[str, "PageTemplateScopeClass"],
|
|
26694
|
+
):
|
|
26695
|
+
super().__init__()
|
|
26696
|
+
|
|
26697
|
+
self.scope = scope
|
|
26698
|
+
|
|
26699
|
+
def _restore_defaults(self) -> None:
|
|
26700
|
+
self.scope = PageTemplateScopeClass.PERSONAL
|
|
26701
|
+
|
|
26702
|
+
|
|
26703
|
+
@property
|
|
26704
|
+
def scope(self) -> Union[str, "PageTemplateScopeClass"]:
|
|
26705
|
+
"""The scope of this template and who can use/see it"""
|
|
26706
|
+
return self._inner_dict.get('scope') # type: ignore
|
|
26707
|
+
|
|
26708
|
+
@scope.setter
|
|
26709
|
+
def scope(self, value: Union[str, "PageTemplateScopeClass"]) -> None:
|
|
26710
|
+
self._inner_dict['scope'] = value
|
|
26711
|
+
|
|
26712
|
+
|
|
26713
|
+
class PageTemplateScopeClass(object):
|
|
26714
|
+
# No docs available.
|
|
26715
|
+
|
|
26716
|
+
PERSONAL = "PERSONAL"
|
|
26717
|
+
"""This template is used for individual use only"""
|
|
26718
|
+
|
|
26719
|
+
GLOBAL = "GLOBAL"
|
|
26720
|
+
"""This template is used across users"""
|
|
26721
|
+
|
|
26722
|
+
|
|
26723
|
+
|
|
26724
|
+
class PageTemplateSurfaceTypeClass(object):
|
|
26725
|
+
# No docs available.
|
|
26726
|
+
|
|
26727
|
+
HOME_PAGE = "HOME_PAGE"
|
|
26728
|
+
"""This template applies to what to display on the home page for users."""
|
|
26729
|
+
|
|
26730
|
+
ASSET_SUMMARY = "ASSET_SUMMARY"
|
|
26731
|
+
"""This template applies to what to display on asset summary pages"""
|
|
26732
|
+
|
|
26733
|
+
|
|
26734
|
+
|
|
26735
|
+
class SummaryElementClass(DictWrapper):
|
|
26736
|
+
"""Info for a given asset summary element"""
|
|
26737
|
+
|
|
26738
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.SummaryElement")
|
|
26739
|
+
def __init__(self,
|
|
26740
|
+
elementType: Union[str, "SummaryElementTypeClass"],
|
|
26741
|
+
structuredPropertyUrn: Union[None, str]=None,
|
|
26742
|
+
):
|
|
26743
|
+
super().__init__()
|
|
26744
|
+
|
|
26745
|
+
self.elementType = elementType
|
|
26746
|
+
self.structuredPropertyUrn = structuredPropertyUrn
|
|
26747
|
+
|
|
26748
|
+
def _restore_defaults(self) -> None:
|
|
26749
|
+
self.elementType = SummaryElementTypeClass.CREATED
|
|
26750
|
+
self.structuredPropertyUrn = self.RECORD_SCHEMA.fields_dict["structuredPropertyUrn"].default
|
|
26751
|
+
|
|
26752
|
+
|
|
26753
|
+
@property
|
|
26754
|
+
def elementType(self) -> Union[str, "SummaryElementTypeClass"]:
|
|
26755
|
+
"""The type of element/property"""
|
|
26756
|
+
return self._inner_dict.get('elementType') # type: ignore
|
|
26757
|
+
|
|
26758
|
+
@elementType.setter
|
|
26759
|
+
def elementType(self, value: Union[str, "SummaryElementTypeClass"]) -> None:
|
|
26760
|
+
self._inner_dict['elementType'] = value
|
|
26761
|
+
|
|
26762
|
+
|
|
26763
|
+
@property
|
|
26764
|
+
def structuredPropertyUrn(self) -> Union[None, str]:
|
|
26765
|
+
"""The urn of the structured property shown. Required if propertyType is STRUCTURED_PROPERTY"""
|
|
26766
|
+
return self._inner_dict.get('structuredPropertyUrn') # type: ignore
|
|
26767
|
+
|
|
26768
|
+
@structuredPropertyUrn.setter
|
|
26769
|
+
def structuredPropertyUrn(self, value: Union[None, str]) -> None:
|
|
26770
|
+
self._inner_dict['structuredPropertyUrn'] = value
|
|
26771
|
+
|
|
26772
|
+
|
|
26773
|
+
class SummaryElementTypeClass(object):
|
|
26774
|
+
# No docs available.
|
|
26775
|
+
|
|
26776
|
+
CREATED = "CREATED"
|
|
26777
|
+
TAGS = "TAGS"
|
|
26778
|
+
GLOSSARY_TERMS = "GLOSSARY_TERMS"
|
|
26779
|
+
OWNERS = "OWNERS"
|
|
26780
|
+
DOMAIN = "DOMAIN"
|
|
26781
|
+
STRUCTURED_PROPERTY = "STRUCTURED_PROPERTY"
|
|
26782
|
+
|
|
26783
|
+
|
|
24457
26784
|
class TestDefinitionClass(DictWrapper):
|
|
24458
26785
|
# No docs available.
|
|
24459
26786
|
|
|
@@ -25408,6 +27735,9 @@ class DataHubViewTypeClass(object):
|
|
|
25408
27735
|
__SCHEMA_TYPES = {
|
|
25409
27736
|
'com.linkedin.events.KafkaAuditHeader': KafkaAuditHeaderClass,
|
|
25410
27737
|
'com.linkedin.pegasus2avro.access.token.DataHubAccessTokenInfo': DataHubAccessTokenInfoClass,
|
|
27738
|
+
'com.linkedin.pegasus2avro.application.ApplicationKey': ApplicationKeyClass,
|
|
27739
|
+
'com.linkedin.pegasus2avro.application.ApplicationProperties': ApplicationPropertiesClass,
|
|
27740
|
+
'com.linkedin.pegasus2avro.application.Applications': ApplicationsClass,
|
|
25411
27741
|
'com.linkedin.pegasus2avro.assertion.AssertionAction': AssertionActionClass,
|
|
25412
27742
|
'com.linkedin.pegasus2avro.assertion.AssertionActionType': AssertionActionTypeClass,
|
|
25413
27743
|
'com.linkedin.pegasus2avro.assertion.AssertionActions': AssertionActionsClass,
|
|
@@ -25508,6 +27838,7 @@ __SCHEMA_TYPES = {
|
|
|
25508
27838
|
'com.linkedin.pegasus2avro.common.InputFields': InputFieldsClass,
|
|
25509
27839
|
'com.linkedin.pegasus2avro.common.InstitutionalMemory': InstitutionalMemoryClass,
|
|
25510
27840
|
'com.linkedin.pegasus2avro.common.InstitutionalMemoryMetadata': InstitutionalMemoryMetadataClass,
|
|
27841
|
+
'com.linkedin.pegasus2avro.common.InstitutionalMemoryMetadataSettings': InstitutionalMemoryMetadataSettingsClass,
|
|
25511
27842
|
'com.linkedin.pegasus2avro.common.MLFeatureDataType': MLFeatureDataTypeClass,
|
|
25512
27843
|
'com.linkedin.pegasus2avro.common.Media': MediaClass,
|
|
25513
27844
|
'com.linkedin.pegasus2avro.common.MediaType': MediaTypeClass,
|
|
@@ -25567,6 +27898,7 @@ __SCHEMA_TYPES = {
|
|
|
25567
27898
|
'com.linkedin.pegasus2avro.datajob.datahub.IngestionCheckpointState': IngestionCheckpointStateClass,
|
|
25568
27899
|
'com.linkedin.pegasus2avro.dataplatform.DataPlatformInfo': DataPlatformInfoClass,
|
|
25569
27900
|
'com.linkedin.pegasus2avro.dataplatform.PlatformType': PlatformTypeClass,
|
|
27901
|
+
'com.linkedin.pegasus2avro.dataplatform.slack.SlackUserInfo': SlackUserInfoClass,
|
|
25570
27902
|
'com.linkedin.pegasus2avro.dataplatforminstance.DataPlatformInstanceProperties': DataPlatformInstancePropertiesClass,
|
|
25571
27903
|
'com.linkedin.pegasus2avro.dataplatforminstance.IcebergWarehouseInfo': IcebergWarehouseInfoClass,
|
|
25572
27904
|
'com.linkedin.pegasus2avro.dataprocess.DataProcessInfo': DataProcessInfoClass,
|
|
@@ -25617,12 +27949,19 @@ __SCHEMA_TYPES = {
|
|
|
25617
27949
|
'com.linkedin.pegasus2avro.ermodelrelation.ERModelRelationshipProperties': ERModelRelationshipPropertiesClass,
|
|
25618
27950
|
'com.linkedin.pegasus2avro.ermodelrelation.EditableERModelRelationshipProperties': EditableERModelRelationshipPropertiesClass,
|
|
25619
27951
|
'com.linkedin.pegasus2avro.ermodelrelation.RelationshipFieldMapping': RelationshipFieldMappingClass,
|
|
27952
|
+
'com.linkedin.pegasus2avro.event.notification.NotificationSinkType': NotificationSinkTypeClass,
|
|
27953
|
+
'com.linkedin.pegasus2avro.event.notification.settings.EmailNotificationSettings': EmailNotificationSettingsClass,
|
|
27954
|
+
'com.linkedin.pegasus2avro.event.notification.settings.NotificationSettings': NotificationSettingsClass,
|
|
27955
|
+
'com.linkedin.pegasus2avro.event.notification.settings.SlackNotificationSettings': SlackNotificationSettingsClass,
|
|
25620
27956
|
'com.linkedin.pegasus2avro.events.metadata.ChangeType': ChangeTypeClass,
|
|
25621
27957
|
'com.linkedin.pegasus2avro.execution.ExecutionRequestInput': ExecutionRequestInputClass,
|
|
25622
27958
|
'com.linkedin.pegasus2avro.execution.ExecutionRequestResult': ExecutionRequestResultClass,
|
|
25623
27959
|
'com.linkedin.pegasus2avro.execution.ExecutionRequestSignal': ExecutionRequestSignalClass,
|
|
25624
27960
|
'com.linkedin.pegasus2avro.execution.ExecutionRequestSource': ExecutionRequestSourceClass,
|
|
25625
27961
|
'com.linkedin.pegasus2avro.execution.StructuredExecutionReport': StructuredExecutionReportClass,
|
|
27962
|
+
'com.linkedin.pegasus2avro.file.BucketStorageLocation': BucketStorageLocationClass,
|
|
27963
|
+
'com.linkedin.pegasus2avro.file.DataHubFileInfo': DataHubFileInfoClass,
|
|
27964
|
+
'com.linkedin.pegasus2avro.file.FileUploadScenario': FileUploadScenarioClass,
|
|
25626
27965
|
'com.linkedin.pegasus2avro.form.DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
25627
27966
|
'com.linkedin.pegasus2avro.form.FormActorAssignment': FormActorAssignmentClass,
|
|
25628
27967
|
'com.linkedin.pegasus2avro.form.FormInfo': FormInfoClass,
|
|
@@ -25638,6 +27977,7 @@ __SCHEMA_TYPES = {
|
|
|
25638
27977
|
'com.linkedin.pegasus2avro.identity.CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
|
|
25639
27978
|
'com.linkedin.pegasus2avro.identity.CorpUserCredentials': CorpUserCredentialsClass,
|
|
25640
27979
|
'com.linkedin.pegasus2avro.identity.CorpUserEditableInfo': CorpUserEditableInfoClass,
|
|
27980
|
+
'com.linkedin.pegasus2avro.identity.CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
|
|
25641
27981
|
'com.linkedin.pegasus2avro.identity.CorpUserInfo': CorpUserInfoClass,
|
|
25642
27982
|
'com.linkedin.pegasus2avro.identity.CorpUserSettings': CorpUserSettingsClass,
|
|
25643
27983
|
'com.linkedin.pegasus2avro.identity.CorpUserStatus': CorpUserStatusClass,
|
|
@@ -25659,6 +27999,7 @@ __SCHEMA_TYPES = {
|
|
|
25659
27999
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSchedule': DataHubIngestionSourceScheduleClass,
|
|
25660
28000
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSource': DataHubIngestionSourceSourceClass,
|
|
25661
28001
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
|
|
28002
|
+
'com.linkedin.pegasus2avro.logical.LogicalParent': LogicalParentClass,
|
|
25662
28003
|
'com.linkedin.pegasus2avro.metadata.key.AssertionKey': AssertionKeyClass,
|
|
25663
28004
|
'com.linkedin.pegasus2avro.metadata.key.ChartKey': ChartKeyClass,
|
|
25664
28005
|
'com.linkedin.pegasus2avro.metadata.key.ContainerKey': ContainerKeyClass,
|
|
@@ -25670,7 +28011,11 @@ __SCHEMA_TYPES = {
|
|
|
25670
28011
|
'com.linkedin.pegasus2avro.metadata.key.DataHubAccessTokenKey': DataHubAccessTokenKeyClass,
|
|
25671
28012
|
'com.linkedin.pegasus2avro.metadata.key.DataHubActionKey': DataHubActionKeyClass,
|
|
25672
28013
|
'com.linkedin.pegasus2avro.metadata.key.DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
28014
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubFileKey': DataHubFileKeyClass,
|
|
25673
28015
|
'com.linkedin.pegasus2avro.metadata.key.DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
28016
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
28017
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubPageModuleKey': DataHubPageModuleKeyClass,
|
|
28018
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
|
|
25674
28019
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
25675
28020
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
25676
28021
|
'com.linkedin.pegasus2avro.metadata.key.DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -25765,6 +28110,15 @@ __SCHEMA_TYPES = {
|
|
|
25765
28110
|
'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrl': SourceCodeUrlClass,
|
|
25766
28111
|
'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrlType': SourceCodeUrlTypeClass,
|
|
25767
28112
|
'com.linkedin.pegasus2avro.ml.metadata.TrainingData': TrainingDataClass,
|
|
28113
|
+
'com.linkedin.pegasus2avro.module.AssetCollectionModuleParams': AssetCollectionModuleParamsClass,
|
|
28114
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleParams': DataHubPageModuleParamsClass,
|
|
28115
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
|
|
28116
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleType': DataHubPageModuleTypeClass,
|
|
28117
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
|
|
28118
|
+
'com.linkedin.pegasus2avro.module.HierarchyModuleParams': HierarchyModuleParamsClass,
|
|
28119
|
+
'com.linkedin.pegasus2avro.module.LinkModuleParams': LinkModuleParamsClass,
|
|
28120
|
+
'com.linkedin.pegasus2avro.module.PageModuleScope': PageModuleScopeClass,
|
|
28121
|
+
'com.linkedin.pegasus2avro.module.RichTextModuleParams': RichTextModuleParamsClass,
|
|
25768
28122
|
'com.linkedin.pegasus2avro.mxe.GenericAspect': GenericAspectClass,
|
|
25769
28123
|
'com.linkedin.pegasus2avro.mxe.GenericPayload': GenericPayloadClass,
|
|
25770
28124
|
'com.linkedin.pegasus2avro.mxe.MetadataChangeEvent': MetadataChangeEventClass,
|
|
@@ -25785,6 +28139,8 @@ __SCHEMA_TYPES = {
|
|
|
25785
28139
|
'com.linkedin.pegasus2avro.persona.DataHubPersonaInfo': DataHubPersonaInfoClass,
|
|
25786
28140
|
'com.linkedin.pegasus2avro.platform.event.v1.EntityChangeEvent': EntityChangeEventClass,
|
|
25787
28141
|
'com.linkedin.pegasus2avro.platform.event.v1.Parameters': ParametersClass,
|
|
28142
|
+
'com.linkedin.pegasus2avro.platform.event.v1.RelationshipChangeEvent': RelationshipChangeEventClass,
|
|
28143
|
+
'com.linkedin.pegasus2avro.platform.event.v1.RelationshipChangeOperation': RelationshipChangeOperationClass,
|
|
25788
28144
|
'com.linkedin.pegasus2avro.platformresource.PlatformResourceInfo': PlatformResourceInfoClass,
|
|
25789
28145
|
'com.linkedin.pegasus2avro.platformresource.PlatformResourceKey': PlatformResourceKeyClass,
|
|
25790
28146
|
'com.linkedin.pegasus2avro.policy.DataHubActorFilter': DataHubActorFilterClass,
|
|
@@ -25810,6 +28166,7 @@ __SCHEMA_TYPES = {
|
|
|
25810
28166
|
'com.linkedin.pegasus2avro.retention.TimeBasedRetention': TimeBasedRetentionClass,
|
|
25811
28167
|
'com.linkedin.pegasus2avro.retention.VersionBasedRetention': VersionBasedRetentionClass,
|
|
25812
28168
|
'com.linkedin.pegasus2avro.role.Actors': ActorsClass,
|
|
28169
|
+
'com.linkedin.pegasus2avro.role.RoleGroup': RoleGroupClass,
|
|
25813
28170
|
'com.linkedin.pegasus2avro.role.RoleProperties': RolePropertiesClass,
|
|
25814
28171
|
'com.linkedin.pegasus2avro.role.RoleUser': RoleUserClass,
|
|
25815
28172
|
'com.linkedin.pegasus2avro.schema.ArrayType': ArrayTypeClass,
|
|
@@ -25848,9 +28205,16 @@ __SCHEMA_TYPES = {
|
|
|
25848
28205
|
'com.linkedin.pegasus2avro.schemafield.SchemaFieldAliases': SchemaFieldAliasesClass,
|
|
25849
28206
|
'com.linkedin.pegasus2avro.schemafield.SchemaFieldInfo': SchemaFieldInfoClass,
|
|
25850
28207
|
'com.linkedin.pegasus2avro.secret.DataHubSecretValue': DataHubSecretValueClass,
|
|
28208
|
+
'com.linkedin.pegasus2avro.settings.asset.AssetSettings': AssetSettingsClass,
|
|
28209
|
+
'com.linkedin.pegasus2avro.settings.asset.AssetSummarySettings': AssetSummarySettingsClass,
|
|
28210
|
+
'com.linkedin.pegasus2avro.settings.asset.AssetSummarySettingsTemplate': AssetSummarySettingsTemplateClass,
|
|
28211
|
+
'com.linkedin.pegasus2avro.settings.global.ApplicationsSettings': ApplicationsSettingsClass,
|
|
25851
28212
|
'com.linkedin.pegasus2avro.settings.global.DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
28213
|
+
'com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings': GlobalHomePageSettingsClass,
|
|
25852
28214
|
'com.linkedin.pegasus2avro.settings.global.GlobalSettingsInfo': GlobalSettingsInfoClass,
|
|
25853
28215
|
'com.linkedin.pegasus2avro.settings.global.GlobalViewsSettings': GlobalViewsSettingsClass,
|
|
28216
|
+
'com.linkedin.pegasus2avro.settings.global.OAuthProvider': OAuthProviderClass,
|
|
28217
|
+
'com.linkedin.pegasus2avro.settings.global.OAuthSettings': OAuthSettingsClass,
|
|
25854
28218
|
'com.linkedin.pegasus2avro.settings.global.OidcSettings': OidcSettingsClass,
|
|
25855
28219
|
'com.linkedin.pegasus2avro.settings.global.SsoSettings': SsoSettingsClass,
|
|
25856
28220
|
'com.linkedin.pegasus2avro.step.DataHubStepStateProperties': DataHubStepStatePropertiesClass,
|
|
@@ -25863,6 +28227,15 @@ __SCHEMA_TYPES = {
|
|
|
25863
28227
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
25864
28228
|
'com.linkedin.pegasus2avro.tag.TagProperties': TagPropertiesClass,
|
|
25865
28229
|
'com.linkedin.pegasus2avro.telemetry.TelemetryClientId': TelemetryClientIdClass,
|
|
28230
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateAssetSummary': DataHubPageTemplateAssetSummaryClass,
|
|
28231
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
|
|
28232
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateRow': DataHubPageTemplateRowClass,
|
|
28233
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
|
|
28234
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
|
|
28235
|
+
'com.linkedin.pegasus2avro.template.PageTemplateScope': PageTemplateScopeClass,
|
|
28236
|
+
'com.linkedin.pegasus2avro.template.PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
|
|
28237
|
+
'com.linkedin.pegasus2avro.template.SummaryElement': SummaryElementClass,
|
|
28238
|
+
'com.linkedin.pegasus2avro.template.SummaryElementType': SummaryElementTypeClass,
|
|
25866
28239
|
'com.linkedin.pegasus2avro.test.TestDefinition': TestDefinitionClass,
|
|
25867
28240
|
'com.linkedin.pegasus2avro.test.TestDefinitionType': TestDefinitionTypeClass,
|
|
25868
28241
|
'com.linkedin.pegasus2avro.test.TestInfo': TestInfoClass,
|
|
@@ -25888,6 +28261,9 @@ __SCHEMA_TYPES = {
|
|
|
25888
28261
|
'com.linkedin.pegasus2avro.view.DataHubViewType': DataHubViewTypeClass,
|
|
25889
28262
|
'KafkaAuditHeader': KafkaAuditHeaderClass,
|
|
25890
28263
|
'DataHubAccessTokenInfo': DataHubAccessTokenInfoClass,
|
|
28264
|
+
'ApplicationKey': ApplicationKeyClass,
|
|
28265
|
+
'ApplicationProperties': ApplicationPropertiesClass,
|
|
28266
|
+
'Applications': ApplicationsClass,
|
|
25891
28267
|
'AssertionAction': AssertionActionClass,
|
|
25892
28268
|
'AssertionActionType': AssertionActionTypeClass,
|
|
25893
28269
|
'AssertionActions': AssertionActionsClass,
|
|
@@ -25988,6 +28364,7 @@ __SCHEMA_TYPES = {
|
|
|
25988
28364
|
'InputFields': InputFieldsClass,
|
|
25989
28365
|
'InstitutionalMemory': InstitutionalMemoryClass,
|
|
25990
28366
|
'InstitutionalMemoryMetadata': InstitutionalMemoryMetadataClass,
|
|
28367
|
+
'InstitutionalMemoryMetadataSettings': InstitutionalMemoryMetadataSettingsClass,
|
|
25991
28368
|
'MLFeatureDataType': MLFeatureDataTypeClass,
|
|
25992
28369
|
'Media': MediaClass,
|
|
25993
28370
|
'MediaType': MediaTypeClass,
|
|
@@ -26047,6 +28424,7 @@ __SCHEMA_TYPES = {
|
|
|
26047
28424
|
'IngestionCheckpointState': IngestionCheckpointStateClass,
|
|
26048
28425
|
'DataPlatformInfo': DataPlatformInfoClass,
|
|
26049
28426
|
'PlatformType': PlatformTypeClass,
|
|
28427
|
+
'SlackUserInfo': SlackUserInfoClass,
|
|
26050
28428
|
'DataPlatformInstanceProperties': DataPlatformInstancePropertiesClass,
|
|
26051
28429
|
'IcebergWarehouseInfo': IcebergWarehouseInfoClass,
|
|
26052
28430
|
'DataProcessInfo': DataProcessInfoClass,
|
|
@@ -26097,12 +28475,19 @@ __SCHEMA_TYPES = {
|
|
|
26097
28475
|
'ERModelRelationshipProperties': ERModelRelationshipPropertiesClass,
|
|
26098
28476
|
'EditableERModelRelationshipProperties': EditableERModelRelationshipPropertiesClass,
|
|
26099
28477
|
'RelationshipFieldMapping': RelationshipFieldMappingClass,
|
|
28478
|
+
'NotificationSinkType': NotificationSinkTypeClass,
|
|
28479
|
+
'EmailNotificationSettings': EmailNotificationSettingsClass,
|
|
28480
|
+
'NotificationSettings': NotificationSettingsClass,
|
|
28481
|
+
'SlackNotificationSettings': SlackNotificationSettingsClass,
|
|
26100
28482
|
'ChangeType': ChangeTypeClass,
|
|
26101
28483
|
'ExecutionRequestInput': ExecutionRequestInputClass,
|
|
26102
28484
|
'ExecutionRequestResult': ExecutionRequestResultClass,
|
|
26103
28485
|
'ExecutionRequestSignal': ExecutionRequestSignalClass,
|
|
26104
28486
|
'ExecutionRequestSource': ExecutionRequestSourceClass,
|
|
26105
28487
|
'StructuredExecutionReport': StructuredExecutionReportClass,
|
|
28488
|
+
'BucketStorageLocation': BucketStorageLocationClass,
|
|
28489
|
+
'DataHubFileInfo': DataHubFileInfoClass,
|
|
28490
|
+
'FileUploadScenario': FileUploadScenarioClass,
|
|
26106
28491
|
'DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
26107
28492
|
'FormActorAssignment': FormActorAssignmentClass,
|
|
26108
28493
|
'FormInfo': FormInfoClass,
|
|
@@ -26118,6 +28503,7 @@ __SCHEMA_TYPES = {
|
|
|
26118
28503
|
'CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
|
|
26119
28504
|
'CorpUserCredentials': CorpUserCredentialsClass,
|
|
26120
28505
|
'CorpUserEditableInfo': CorpUserEditableInfoClass,
|
|
28506
|
+
'CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
|
|
26121
28507
|
'CorpUserInfo': CorpUserInfoClass,
|
|
26122
28508
|
'CorpUserSettings': CorpUserSettingsClass,
|
|
26123
28509
|
'CorpUserStatus': CorpUserStatusClass,
|
|
@@ -26139,6 +28525,7 @@ __SCHEMA_TYPES = {
|
|
|
26139
28525
|
'DataHubIngestionSourceSchedule': DataHubIngestionSourceScheduleClass,
|
|
26140
28526
|
'DataHubIngestionSourceSource': DataHubIngestionSourceSourceClass,
|
|
26141
28527
|
'DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
|
|
28528
|
+
'LogicalParent': LogicalParentClass,
|
|
26142
28529
|
'AssertionKey': AssertionKeyClass,
|
|
26143
28530
|
'ChartKey': ChartKeyClass,
|
|
26144
28531
|
'ContainerKey': ContainerKeyClass,
|
|
@@ -26150,7 +28537,11 @@ __SCHEMA_TYPES = {
|
|
|
26150
28537
|
'DataHubAccessTokenKey': DataHubAccessTokenKeyClass,
|
|
26151
28538
|
'DataHubActionKey': DataHubActionKeyClass,
|
|
26152
28539
|
'DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
28540
|
+
'DataHubFileKey': DataHubFileKeyClass,
|
|
26153
28541
|
'DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
28542
|
+
'DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
28543
|
+
'DataHubPageModuleKey': DataHubPageModuleKeyClass,
|
|
28544
|
+
'DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
|
|
26154
28545
|
'DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
26155
28546
|
'DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
26156
28547
|
'DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -26245,6 +28636,15 @@ __SCHEMA_TYPES = {
|
|
|
26245
28636
|
'SourceCodeUrl': SourceCodeUrlClass,
|
|
26246
28637
|
'SourceCodeUrlType': SourceCodeUrlTypeClass,
|
|
26247
28638
|
'TrainingData': TrainingDataClass,
|
|
28639
|
+
'AssetCollectionModuleParams': AssetCollectionModuleParamsClass,
|
|
28640
|
+
'DataHubPageModuleParams': DataHubPageModuleParamsClass,
|
|
28641
|
+
'DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
|
|
28642
|
+
'DataHubPageModuleType': DataHubPageModuleTypeClass,
|
|
28643
|
+
'DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
|
|
28644
|
+
'HierarchyModuleParams': HierarchyModuleParamsClass,
|
|
28645
|
+
'LinkModuleParams': LinkModuleParamsClass,
|
|
28646
|
+
'PageModuleScope': PageModuleScopeClass,
|
|
28647
|
+
'RichTextModuleParams': RichTextModuleParamsClass,
|
|
26248
28648
|
'GenericAspect': GenericAspectClass,
|
|
26249
28649
|
'GenericPayload': GenericPayloadClass,
|
|
26250
28650
|
'MetadataChangeEvent': MetadataChangeEventClass,
|
|
@@ -26265,6 +28665,8 @@ __SCHEMA_TYPES = {
|
|
|
26265
28665
|
'DataHubPersonaInfo': DataHubPersonaInfoClass,
|
|
26266
28666
|
'EntityChangeEvent': EntityChangeEventClass,
|
|
26267
28667
|
'Parameters': ParametersClass,
|
|
28668
|
+
'RelationshipChangeEvent': RelationshipChangeEventClass,
|
|
28669
|
+
'RelationshipChangeOperation': RelationshipChangeOperationClass,
|
|
26268
28670
|
'PlatformResourceInfo': PlatformResourceInfoClass,
|
|
26269
28671
|
'PlatformResourceKey': PlatformResourceKeyClass,
|
|
26270
28672
|
'DataHubActorFilter': DataHubActorFilterClass,
|
|
@@ -26290,6 +28692,7 @@ __SCHEMA_TYPES = {
|
|
|
26290
28692
|
'TimeBasedRetention': TimeBasedRetentionClass,
|
|
26291
28693
|
'VersionBasedRetention': VersionBasedRetentionClass,
|
|
26292
28694
|
'Actors': ActorsClass,
|
|
28695
|
+
'RoleGroup': RoleGroupClass,
|
|
26293
28696
|
'RoleProperties': RolePropertiesClass,
|
|
26294
28697
|
'RoleUser': RoleUserClass,
|
|
26295
28698
|
'ArrayType': ArrayTypeClass,
|
|
@@ -26328,9 +28731,16 @@ __SCHEMA_TYPES = {
|
|
|
26328
28731
|
'SchemaFieldAliases': SchemaFieldAliasesClass,
|
|
26329
28732
|
'SchemaFieldInfo': SchemaFieldInfoClass,
|
|
26330
28733
|
'DataHubSecretValue': DataHubSecretValueClass,
|
|
28734
|
+
'AssetSettings': AssetSettingsClass,
|
|
28735
|
+
'AssetSummarySettings': AssetSummarySettingsClass,
|
|
28736
|
+
'AssetSummarySettingsTemplate': AssetSummarySettingsTemplateClass,
|
|
28737
|
+
'ApplicationsSettings': ApplicationsSettingsClass,
|
|
26331
28738
|
'DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
28739
|
+
'GlobalHomePageSettings': GlobalHomePageSettingsClass,
|
|
26332
28740
|
'GlobalSettingsInfo': GlobalSettingsInfoClass,
|
|
26333
28741
|
'GlobalViewsSettings': GlobalViewsSettingsClass,
|
|
28742
|
+
'OAuthProvider': OAuthProviderClass,
|
|
28743
|
+
'OAuthSettings': OAuthSettingsClass,
|
|
26334
28744
|
'OidcSettings': OidcSettingsClass,
|
|
26335
28745
|
'SsoSettings': SsoSettingsClass,
|
|
26336
28746
|
'DataHubStepStateProperties': DataHubStepStatePropertiesClass,
|
|
@@ -26343,6 +28753,15 @@ __SCHEMA_TYPES = {
|
|
|
26343
28753
|
'StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
26344
28754
|
'TagProperties': TagPropertiesClass,
|
|
26345
28755
|
'TelemetryClientId': TelemetryClientIdClass,
|
|
28756
|
+
'DataHubPageTemplateAssetSummary': DataHubPageTemplateAssetSummaryClass,
|
|
28757
|
+
'DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
|
|
28758
|
+
'DataHubPageTemplateRow': DataHubPageTemplateRowClass,
|
|
28759
|
+
'DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
|
|
28760
|
+
'DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
|
|
28761
|
+
'PageTemplateScope': PageTemplateScopeClass,
|
|
28762
|
+
'PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
|
|
28763
|
+
'SummaryElement': SummaryElementClass,
|
|
28764
|
+
'SummaryElementType': SummaryElementTypeClass,
|
|
26346
28765
|
'TestDefinition': TestDefinitionClass,
|
|
26347
28766
|
'TestDefinitionType': TestDefinitionTypeClass,
|
|
26348
28767
|
'TestInfo': TestInfoClass,
|
|
@@ -26375,217 +28794,231 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
26375
28794
|
|
|
26376
28795
|
|
|
26377
28796
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
26378
|
-
|
|
26379
|
-
|
|
26380
|
-
|
|
26381
|
-
|
|
26382
|
-
|
|
26383
|
-
|
|
26384
|
-
|
|
26385
|
-
|
|
26386
|
-
|
|
26387
|
-
|
|
26388
|
-
|
|
26389
|
-
|
|
26390
|
-
|
|
26391
|
-
|
|
26392
|
-
|
|
26393
|
-
|
|
26394
|
-
|
|
28797
|
+
EntityTypeKeyClass,
|
|
28798
|
+
EntityTypeInfoClass,
|
|
28799
|
+
DashboardUsageStatisticsClass,
|
|
28800
|
+
EditableDashboardPropertiesClass,
|
|
28801
|
+
DashboardInfoClass,
|
|
28802
|
+
EditableSchemaMetadataClass,
|
|
28803
|
+
SchemaMetadataClass,
|
|
28804
|
+
DataHubFileInfoClass,
|
|
28805
|
+
AssertionActionsClass,
|
|
28806
|
+
AssertionRunEventClass,
|
|
28807
|
+
AssertionInfoClass,
|
|
28808
|
+
DataPlatformInstancePropertiesClass,
|
|
28809
|
+
IcebergWarehouseInfoClass,
|
|
28810
|
+
DataHubPageTemplatePropertiesClass,
|
|
28811
|
+
EditableContainerPropertiesClass,
|
|
28812
|
+
ContainerPropertiesClass,
|
|
28813
|
+
ContainerClass,
|
|
26395
28814
|
QueryUsageStatisticsClass,
|
|
26396
|
-
|
|
26397
|
-
|
|
26398
|
-
|
|
26399
|
-
|
|
26400
|
-
|
|
28815
|
+
QueryPropertiesClass,
|
|
28816
|
+
QuerySubjectsClass,
|
|
28817
|
+
TagPropertiesClass,
|
|
28818
|
+
DataProductKeyClass,
|
|
28819
|
+
DataProductPropertiesClass,
|
|
28820
|
+
DataHubPageModulePropertiesClass,
|
|
28821
|
+
ApplicationPropertiesClass,
|
|
28822
|
+
ApplicationKeyClass,
|
|
28823
|
+
ApplicationsClass,
|
|
28824
|
+
OwnershipTypeInfoClass,
|
|
26401
28825
|
DataHubConnectionDetailsClass,
|
|
26402
|
-
|
|
28826
|
+
GroupMembershipClass,
|
|
28827
|
+
CorpUserStatusClass,
|
|
28828
|
+
RoleMembershipClass,
|
|
28829
|
+
NativeGroupMembershipClass,
|
|
28830
|
+
InviteTokenClass,
|
|
28831
|
+
CorpUserSettingsClass,
|
|
28832
|
+
CorpUserInfoClass,
|
|
28833
|
+
CorpUserCredentialsClass,
|
|
28834
|
+
CorpGroupEditableInfoClass,
|
|
28835
|
+
CorpGroupInfoClass,
|
|
28836
|
+
CorpUserEditableInfoClass,
|
|
28837
|
+
DataProcessInstanceRelationshipsClass,
|
|
28838
|
+
DataProcessInstanceRunEventClass,
|
|
28839
|
+
DataProcessInstancePropertiesClass,
|
|
28840
|
+
DataProcessInstanceOutputClass,
|
|
28841
|
+
DataProcessInstanceInputClass,
|
|
28842
|
+
DataProcessInfoClass,
|
|
28843
|
+
PlatformResourceInfoClass,
|
|
28844
|
+
PlatformResourceKeyClass,
|
|
28845
|
+
ChartUsageStatisticsClass,
|
|
28846
|
+
ChartQueryClass,
|
|
28847
|
+
ChartInfoClass,
|
|
28848
|
+
EditableChartPropertiesClass,
|
|
28849
|
+
DataHubRetentionConfigClass,
|
|
28850
|
+
PostInfoClass,
|
|
28851
|
+
TelemetryClientIdClass,
|
|
28852
|
+
NotebookInfoClass,
|
|
28853
|
+
EditableNotebookPropertiesClass,
|
|
28854
|
+
NotebookContentClass,
|
|
28855
|
+
SystemMetadataClass,
|
|
26403
28856
|
ExecutionRequestInputClass,
|
|
26404
28857
|
ExecutionRequestResultClass,
|
|
26405
|
-
|
|
26406
|
-
|
|
26407
|
-
GlossaryRelatedTermsClass,
|
|
26408
|
-
TelemetryClientIdClass,
|
|
26409
|
-
DataHubAccessTokenInfoClass,
|
|
26410
|
-
ContainerClass,
|
|
26411
|
-
ContainerPropertiesClass,
|
|
26412
|
-
EditableContainerPropertiesClass,
|
|
26413
|
-
DataHubSecretValueClass,
|
|
26414
|
-
DataHubUpgradeRequestClass,
|
|
26415
|
-
DataHubUpgradeResultClass,
|
|
26416
|
-
AssertionRunEventClass,
|
|
26417
|
-
AssertionActionsClass,
|
|
26418
|
-
AssertionInfoClass,
|
|
26419
|
-
EditableSchemaMetadataClass,
|
|
26420
|
-
SchemaMetadataClass,
|
|
26421
|
-
DataProductPropertiesClass,
|
|
26422
|
-
DataProductKeyClass,
|
|
26423
|
-
DataContractStatusClass,
|
|
26424
|
-
DataContractPropertiesClass,
|
|
26425
|
-
OperationClass,
|
|
26426
|
-
StatusClass,
|
|
26427
|
-
InstitutionalMemoryClass,
|
|
26428
|
-
AccessClass,
|
|
26429
|
-
DataPlatformInstanceClass,
|
|
26430
|
-
SiblingsClass,
|
|
26431
|
-
IncidentsSummaryClass,
|
|
26432
|
-
EmbedClass,
|
|
26433
|
-
OwnershipClass,
|
|
26434
|
-
SubTypesClass,
|
|
26435
|
-
CostClass,
|
|
26436
|
-
BrowsePathsClass,
|
|
26437
|
-
VersionPropertiesClass,
|
|
26438
|
-
OriginClass,
|
|
26439
|
-
DeprecationClass,
|
|
26440
|
-
GlossaryTermsClass,
|
|
26441
|
-
DisplayPropertiesClass,
|
|
26442
|
-
BrowsePathsV2Class,
|
|
26443
|
-
GlobalTagsClass,
|
|
26444
|
-
DataTransformLogicClass,
|
|
26445
|
-
DocumentationClass,
|
|
26446
|
-
InputFieldsClass,
|
|
26447
|
-
FormsClass,
|
|
26448
|
-
DataPlatformInfoClass,
|
|
26449
|
-
DataHubPolicyInfoClass,
|
|
26450
|
-
DataHubRoleInfoClass,
|
|
26451
|
-
IncidentSourceClass,
|
|
26452
|
-
IncidentInfoClass,
|
|
26453
|
-
VersionInfoClass,
|
|
26454
|
-
DataJobInfoClass,
|
|
26455
|
-
EditableDataFlowPropertiesClass,
|
|
26456
|
-
EditableDataJobPropertiesClass,
|
|
26457
|
-
DataFlowInfoClass,
|
|
26458
|
-
DataJobInputOutputClass,
|
|
26459
|
-
DatahubIngestionCheckpointClass,
|
|
26460
|
-
DatahubIngestionRunSummaryClass,
|
|
26461
|
-
TelemetryKeyClass,
|
|
26462
|
-
DataHubAccessTokenKeyClass,
|
|
26463
|
-
DataHubConnectionKeyClass,
|
|
28858
|
+
ExecutionRequestSignalClass,
|
|
28859
|
+
SchemaFieldKeyClass,
|
|
26464
28860
|
DataHubRoleKeyClass,
|
|
28861
|
+
DataHubPageTemplateKeyClass,
|
|
28862
|
+
DataPlatformInstanceKeyClass,
|
|
28863
|
+
DataFlowKeyClass,
|
|
28864
|
+
DataHubConnectionKeyClass,
|
|
28865
|
+
CorpUserKeyClass,
|
|
28866
|
+
QueryKeyClass,
|
|
28867
|
+
IncidentKeyClass,
|
|
28868
|
+
FormKeyClass,
|
|
28869
|
+
ContainerKeyClass,
|
|
28870
|
+
PostKeyClass,
|
|
28871
|
+
ChartKeyClass,
|
|
28872
|
+
AssertionKeyClass,
|
|
28873
|
+
DataJobKeyClass,
|
|
28874
|
+
DataProcessInstanceKeyClass,
|
|
28875
|
+
DataHubPolicyKeyClass,
|
|
28876
|
+
TelemetryKeyClass,
|
|
26465
28877
|
MLModelKeyClass,
|
|
26466
|
-
NotebookKeyClass,
|
|
26467
|
-
RoleKeyClass,
|
|
26468
28878
|
GlobalSettingsKeyClass,
|
|
26469
28879
|
DatasetKeyClass,
|
|
26470
|
-
ChartKeyClass,
|
|
26471
|
-
GlossaryNodeKeyClass,
|
|
26472
|
-
AssertionKeyClass,
|
|
26473
28880
|
ExecutionRequestKeyClass,
|
|
26474
|
-
MLModelGroupKeyClass,
|
|
26475
|
-
MLModelDeploymentKeyClass,
|
|
26476
|
-
DataFlowKeyClass,
|
|
26477
|
-
DataJobKeyClass,
|
|
26478
|
-
CorpGroupKeyClass,
|
|
26479
|
-
DataPlatformKeyClass,
|
|
26480
|
-
CorpUserKeyClass,
|
|
26481
|
-
DashboardKeyClass,
|
|
26482
|
-
MLPrimaryKeyKeyClass,
|
|
26483
|
-
QueryKeyClass,
|
|
26484
28881
|
OwnershipTypeKeyClass,
|
|
26485
|
-
|
|
26486
|
-
|
|
26487
|
-
MLFeatureTableKeyClass,
|
|
26488
|
-
DataHubViewKeyClass,
|
|
28882
|
+
DataProcessKeyClass,
|
|
28883
|
+
DataHubAccessTokenKeyClass,
|
|
26489
28884
|
DataHubActionKeyClass,
|
|
26490
|
-
|
|
28885
|
+
MLPrimaryKeyKeyClass,
|
|
28886
|
+
DataHubFileKeyClass,
|
|
28887
|
+
TestKeyClass,
|
|
28888
|
+
GlossaryTermKeyClass,
|
|
28889
|
+
InviteTokenKeyClass,
|
|
28890
|
+
DataHubIngestionSourceKeyClass,
|
|
28891
|
+
DataPlatformKeyClass,
|
|
26491
28892
|
DataHubStepStateKeyClass,
|
|
26492
|
-
|
|
26493
|
-
DataHubPolicyKeyClass,
|
|
28893
|
+
MLFeatureTableKeyClass,
|
|
26494
28894
|
DataHubRetentionKeyClass,
|
|
26495
|
-
|
|
26496
|
-
|
|
26497
|
-
|
|
26498
|
-
|
|
26499
|
-
FormKeyClass,
|
|
26500
|
-
SchemaFieldKeyClass,
|
|
28895
|
+
MLFeatureKeyClass,
|
|
28896
|
+
CorpGroupKeyClass,
|
|
28897
|
+
DataHubUpgradeKeyClass,
|
|
28898
|
+
MLModelGroupKeyClass,
|
|
26501
28899
|
TagKeyClass,
|
|
26502
|
-
PostKeyClass,
|
|
26503
|
-
DataHubIngestionSourceKeyClass,
|
|
26504
|
-
InviteTokenKeyClass,
|
|
26505
28900
|
DataHubPersonaKeyClass,
|
|
26506
|
-
ContainerKeyClass,
|
|
26507
|
-
IncidentKeyClass,
|
|
26508
|
-
DataPlatformInstanceKeyClass,
|
|
26509
|
-
TestKeyClass,
|
|
26510
|
-
VersionSetKeyClass,
|
|
26511
28901
|
DataHubSecretKeyClass,
|
|
26512
|
-
|
|
26513
|
-
|
|
26514
|
-
|
|
26515
|
-
|
|
26516
|
-
|
|
26517
|
-
|
|
28902
|
+
NotebookKeyClass,
|
|
28903
|
+
GlossaryNodeKeyClass,
|
|
28904
|
+
DataContractKeyClass,
|
|
28905
|
+
DataHubPageModuleKeyClass,
|
|
28906
|
+
DataHubOpenAPISchemaKeyClass,
|
|
28907
|
+
RoleKeyClass,
|
|
28908
|
+
VersionSetKeyClass,
|
|
28909
|
+
DomainKeyClass,
|
|
28910
|
+
MLModelDeploymentKeyClass,
|
|
28911
|
+
ERModelRelationshipKeyClass,
|
|
28912
|
+
DataHubViewKeyClass,
|
|
28913
|
+
DashboardKeyClass,
|
|
28914
|
+
UpstreamLineageClass,
|
|
28915
|
+
IcebergCatalogInfoClass,
|
|
28916
|
+
EditableDatasetPropertiesClass,
|
|
28917
|
+
DatasetUpstreamLineageClass,
|
|
28918
|
+
DatasetUsageStatisticsClass,
|
|
28919
|
+
DatasetPropertiesClass,
|
|
28920
|
+
DatasetProfileClass,
|
|
28921
|
+
DatasetDeprecationClass,
|
|
28922
|
+
ViewPropertiesClass,
|
|
28923
|
+
PartitionsSummaryClass,
|
|
26518
28924
|
SchemaFieldInfoClass,
|
|
26519
28925
|
SchemaFieldAliasesClass,
|
|
26520
|
-
|
|
26521
|
-
|
|
26522
|
-
|
|
26523
|
-
|
|
26524
|
-
|
|
26525
|
-
|
|
26526
|
-
|
|
26527
|
-
|
|
26528
|
-
|
|
26529
|
-
|
|
26530
|
-
|
|
26531
|
-
|
|
26532
|
-
|
|
26533
|
-
|
|
26534
|
-
CorpUserCredentialsClass,
|
|
26535
|
-
CorpUserEditableInfoClass,
|
|
26536
|
-
CorpGroupInfoClass,
|
|
26537
|
-
CorpGroupEditableInfoClass,
|
|
26538
|
-
CorpUserInfoClass,
|
|
26539
|
-
CorpUserSettingsClass,
|
|
26540
|
-
RoleMembershipClass,
|
|
26541
|
-
GroupMembershipClass,
|
|
26542
|
-
NativeGroupMembershipClass,
|
|
26543
|
-
InviteTokenClass,
|
|
26544
|
-
RolePropertiesClass,
|
|
26545
|
-
ActorsClass,
|
|
26546
|
-
PostInfoClass,
|
|
26547
|
-
EditableDashboardPropertiesClass,
|
|
26548
|
-
DashboardInfoClass,
|
|
26549
|
-
DashboardUsageStatisticsClass,
|
|
26550
|
-
NotebookInfoClass,
|
|
26551
|
-
NotebookContentClass,
|
|
26552
|
-
EditableNotebookPropertiesClass,
|
|
26553
|
-
DataHubIngestionSourceInfoClass,
|
|
26554
|
-
StructuredPropertiesClass,
|
|
26555
|
-
StructuredPropertyDefinitionClass,
|
|
26556
|
-
StructuredPropertyKeyClass,
|
|
26557
|
-
StructuredPropertySettingsClass,
|
|
26558
|
-
TagPropertiesClass,
|
|
28926
|
+
DataHubAccessTokenInfoClass,
|
|
28927
|
+
DataFlowInfoClass,
|
|
28928
|
+
EditableDataJobPropertiesClass,
|
|
28929
|
+
DataJobInputOutputClass,
|
|
28930
|
+
VersionInfoClass,
|
|
28931
|
+
DataJobInfoClass,
|
|
28932
|
+
EditableDataFlowPropertiesClass,
|
|
28933
|
+
DatahubIngestionRunSummaryClass,
|
|
28934
|
+
DatahubIngestionCheckpointClass,
|
|
28935
|
+
FormInfoClass,
|
|
28936
|
+
DynamicFormAssignmentClass,
|
|
28937
|
+
DataPlatformInfoClass,
|
|
28938
|
+
SlackUserInfoClass,
|
|
28939
|
+
MLModelGroupPropertiesClass,
|
|
26559
28940
|
EthicalConsiderationsClass,
|
|
28941
|
+
EditableMLFeatureTablePropertiesClass,
|
|
28942
|
+
MLMetricClass,
|
|
26560
28943
|
MLModelDeploymentPropertiesClass,
|
|
26561
|
-
MLPrimaryKeyPropertiesClass,
|
|
26562
|
-
TrainingDataClass,
|
|
26563
|
-
MLModelFactorPromptsClass,
|
|
26564
28944
|
QuantitativeAnalysesClass,
|
|
28945
|
+
EditableMLModelGroupPropertiesClass,
|
|
26565
28946
|
MLHyperParamClass,
|
|
26566
|
-
EditableMLFeatureTablePropertiesClass,
|
|
26567
|
-
EditableMLPrimaryKeyPropertiesClass,
|
|
26568
28947
|
SourceCodeClass,
|
|
28948
|
+
MLPrimaryKeyPropertiesClass,
|
|
28949
|
+
EditableMLFeaturePropertiesClass,
|
|
28950
|
+
CaveatsAndRecommendationsClass,
|
|
28951
|
+
MLModelPropertiesClass,
|
|
28952
|
+
EditableMLModelPropertiesClass,
|
|
28953
|
+
TrainingDataClass,
|
|
28954
|
+
IntendedUseClass,
|
|
28955
|
+
MLFeaturePropertiesClass,
|
|
28956
|
+
MLModelFactorPromptsClass,
|
|
26569
28957
|
EvaluationDataClass,
|
|
28958
|
+
EditableMLPrimaryKeyPropertiesClass,
|
|
26570
28959
|
MLTrainingRunPropertiesClass,
|
|
26571
|
-
EditableMLModelGroupPropertiesClass,
|
|
26572
28960
|
MLFeatureTablePropertiesClass,
|
|
26573
28961
|
MetricsClass,
|
|
26574
|
-
|
|
26575
|
-
|
|
26576
|
-
|
|
26577
|
-
|
|
26578
|
-
|
|
26579
|
-
|
|
26580
|
-
|
|
26581
|
-
|
|
26582
|
-
|
|
26583
|
-
|
|
26584
|
-
|
|
26585
|
-
|
|
26586
|
-
|
|
26587
|
-
|
|
26588
|
-
|
|
28962
|
+
DataTypeKeyClass,
|
|
28963
|
+
DataTypeInfoClass,
|
|
28964
|
+
DataHubSecretValueClass,
|
|
28965
|
+
DataHubUpgradeResultClass,
|
|
28966
|
+
DataHubUpgradeRequestClass,
|
|
28967
|
+
DataHubViewInfoClass,
|
|
28968
|
+
GlossaryTermsClass,
|
|
28969
|
+
StatusClass,
|
|
28970
|
+
CostClass,
|
|
28971
|
+
BrowsePathsV2Class,
|
|
28972
|
+
InstitutionalMemoryClass,
|
|
28973
|
+
OperationClass,
|
|
28974
|
+
DataPlatformInstanceClass,
|
|
28975
|
+
DocumentationClass,
|
|
28976
|
+
DisplayPropertiesClass,
|
|
28977
|
+
VersionPropertiesClass,
|
|
28978
|
+
InputFieldsClass,
|
|
28979
|
+
OwnershipClass,
|
|
28980
|
+
OriginClass,
|
|
28981
|
+
EmbedClass,
|
|
28982
|
+
DeprecationClass,
|
|
28983
|
+
BrowsePathsClass,
|
|
28984
|
+
SubTypesClass,
|
|
28985
|
+
FormsClass,
|
|
28986
|
+
AccessClass,
|
|
28987
|
+
DataTransformLogicClass,
|
|
28988
|
+
GlobalTagsClass,
|
|
28989
|
+
SiblingsClass,
|
|
28990
|
+
IncidentsSummaryClass,
|
|
28991
|
+
GlobalSettingsInfoClass,
|
|
28992
|
+
AssetSettingsClass,
|
|
28993
|
+
DataHubPersonaInfoClass,
|
|
28994
|
+
IncidentInfoClass,
|
|
28995
|
+
IncidentSourceClass,
|
|
28996
|
+
GlossaryNodeInfoClass,
|
|
28997
|
+
GlossaryRelatedTermsClass,
|
|
28998
|
+
GlossaryTermInfoClass,
|
|
28999
|
+
EditableERModelRelationshipPropertiesClass,
|
|
29000
|
+
ERModelRelationshipPropertiesClass,
|
|
29001
|
+
TestInfoClass,
|
|
29002
|
+
TestResultsClass,
|
|
29003
|
+
BusinessAttributesClass,
|
|
29004
|
+
BusinessAttributeKeyClass,
|
|
29005
|
+
BusinessAttributeInfoClass,
|
|
29006
|
+
StructuredPropertyDefinitionClass,
|
|
29007
|
+
StructuredPropertiesClass,
|
|
29008
|
+
StructuredPropertyKeyClass,
|
|
29009
|
+
StructuredPropertySettingsClass,
|
|
29010
|
+
DataHubRoleInfoClass,
|
|
29011
|
+
DataHubPolicyInfoClass,
|
|
29012
|
+
DataHubIngestionSourceInfoClass,
|
|
29013
|
+
DomainPropertiesClass,
|
|
29014
|
+
DomainsClass,
|
|
29015
|
+
ActorsClass,
|
|
29016
|
+
RolePropertiesClass,
|
|
29017
|
+
DataContractStatusClass,
|
|
29018
|
+
DataContractPropertiesClass,
|
|
29019
|
+
DataHubStepStatePropertiesClass,
|
|
29020
|
+
LogicalParentClass,
|
|
29021
|
+
VersionSetPropertiesClass
|
|
26589
29022
|
]
|
|
26590
29023
|
|
|
26591
29024
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -26593,400 +29026,431 @@ ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
|
26593
29026
|
for aspect in ASPECT_CLASSES
|
|
26594
29027
|
}
|
|
26595
29028
|
|
|
26596
|
-
from typing import Literal
|
|
29029
|
+
from typing import Literal, Set
|
|
26597
29030
|
from typing_extensions import TypedDict
|
|
26598
29031
|
|
|
26599
29032
|
class AspectBag(TypedDict, total=False):
|
|
26600
|
-
|
|
26601
|
-
|
|
26602
|
-
|
|
26603
|
-
|
|
26604
|
-
|
|
26605
|
-
datasetProperties: DatasetPropertiesClass
|
|
26606
|
-
upstreamLineage: UpstreamLineageClass
|
|
26607
|
-
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
26608
|
-
datasetProfile: DatasetProfileClass
|
|
26609
|
-
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
26610
|
-
globalSettingsInfo: GlobalSettingsInfoClass
|
|
26611
|
-
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
26612
|
-
businessAttributeInfo: BusinessAttributeInfoClass
|
|
26613
|
-
businessAttributes: BusinessAttributesClass
|
|
26614
|
-
businessAttributeKey: BusinessAttributeKeyClass
|
|
26615
|
-
querySubjects: QuerySubjectsClass
|
|
26616
|
-
queryProperties: QueryPropertiesClass
|
|
26617
|
-
queryUsageStatistics: QueryUsageStatisticsClass
|
|
26618
|
-
dataHubViewInfo: DataHubViewInfoClass
|
|
26619
|
-
dataTypeInfo: DataTypeInfoClass
|
|
26620
|
-
dataTypeKey: DataTypeKeyClass
|
|
26621
|
-
formInfo: FormInfoClass
|
|
26622
|
-
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
26623
|
-
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
26624
|
-
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
26625
|
-
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
26626
|
-
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
26627
|
-
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
26628
|
-
glossaryTermInfo: GlossaryTermInfoClass
|
|
26629
|
-
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
26630
|
-
telemetryClientId: TelemetryClientIdClass
|
|
26631
|
-
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
26632
|
-
container: ContainerClass
|
|
26633
|
-
containerProperties: ContainerPropertiesClass
|
|
26634
|
-
editableContainerProperties: EditableContainerPropertiesClass
|
|
26635
|
-
dataHubSecretValue: DataHubSecretValueClass
|
|
26636
|
-
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
26637
|
-
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
26638
|
-
assertionRunEvent: AssertionRunEventClass
|
|
26639
|
-
assertionActions: AssertionActionsClass
|
|
26640
|
-
assertionInfo: AssertionInfoClass
|
|
29033
|
+
entityTypeKey: EntityTypeKeyClass
|
|
29034
|
+
entityTypeInfo: EntityTypeInfoClass
|
|
29035
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
29036
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
29037
|
+
dashboardInfo: DashboardInfoClass
|
|
26641
29038
|
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
26642
29039
|
schemaMetadata: SchemaMetadataClass
|
|
26643
|
-
|
|
29040
|
+
dataHubFileInfo: DataHubFileInfoClass
|
|
29041
|
+
assertionActions: AssertionActionsClass
|
|
29042
|
+
assertionRunEvent: AssertionRunEventClass
|
|
29043
|
+
assertionInfo: AssertionInfoClass
|
|
29044
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
29045
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
29046
|
+
dataHubPageTemplateProperties: DataHubPageTemplatePropertiesClass
|
|
29047
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
29048
|
+
containerProperties: ContainerPropertiesClass
|
|
29049
|
+
container: ContainerClass
|
|
29050
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
29051
|
+
queryProperties: QueryPropertiesClass
|
|
29052
|
+
querySubjects: QuerySubjectsClass
|
|
29053
|
+
tagProperties: TagPropertiesClass
|
|
26644
29054
|
dataProductKey: DataProductKeyClass
|
|
26645
|
-
|
|
26646
|
-
|
|
26647
|
-
|
|
26648
|
-
|
|
26649
|
-
|
|
26650
|
-
|
|
26651
|
-
|
|
26652
|
-
|
|
26653
|
-
|
|
26654
|
-
|
|
26655
|
-
|
|
26656
|
-
|
|
26657
|
-
|
|
26658
|
-
|
|
26659
|
-
|
|
26660
|
-
|
|
26661
|
-
|
|
26662
|
-
|
|
26663
|
-
|
|
26664
|
-
|
|
26665
|
-
|
|
26666
|
-
|
|
26667
|
-
|
|
26668
|
-
|
|
26669
|
-
|
|
26670
|
-
|
|
26671
|
-
|
|
26672
|
-
|
|
26673
|
-
|
|
26674
|
-
|
|
26675
|
-
|
|
26676
|
-
|
|
26677
|
-
|
|
26678
|
-
|
|
26679
|
-
|
|
26680
|
-
|
|
26681
|
-
|
|
26682
|
-
|
|
26683
|
-
|
|
26684
|
-
|
|
26685
|
-
|
|
29055
|
+
dataProductProperties: DataProductPropertiesClass
|
|
29056
|
+
dataHubPageModuleProperties: DataHubPageModulePropertiesClass
|
|
29057
|
+
applicationProperties: ApplicationPropertiesClass
|
|
29058
|
+
applicationKey: ApplicationKeyClass
|
|
29059
|
+
applications: ApplicationsClass
|
|
29060
|
+
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
29061
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
29062
|
+
groupMembership: GroupMembershipClass
|
|
29063
|
+
corpUserStatus: CorpUserStatusClass
|
|
29064
|
+
roleMembership: RoleMembershipClass
|
|
29065
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
29066
|
+
inviteToken: InviteTokenClass
|
|
29067
|
+
corpUserSettings: CorpUserSettingsClass
|
|
29068
|
+
corpUserInfo: CorpUserInfoClass
|
|
29069
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
29070
|
+
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
29071
|
+
corpGroupInfo: CorpGroupInfoClass
|
|
29072
|
+
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
29073
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
29074
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
29075
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
29076
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
29077
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
29078
|
+
dataProcessInfo: DataProcessInfoClass
|
|
29079
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
29080
|
+
platformResourceKey: PlatformResourceKeyClass
|
|
29081
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
29082
|
+
chartQuery: ChartQueryClass
|
|
29083
|
+
chartInfo: ChartInfoClass
|
|
29084
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
29085
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
29086
|
+
postInfo: PostInfoClass
|
|
29087
|
+
telemetryClientId: TelemetryClientIdClass
|
|
29088
|
+
notebookInfo: NotebookInfoClass
|
|
29089
|
+
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
29090
|
+
notebookContent: NotebookContentClass
|
|
29091
|
+
systemMetadata: SystemMetadataClass
|
|
29092
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
29093
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
29094
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
29095
|
+
schemaFieldKey: SchemaFieldKeyClass
|
|
26686
29096
|
dataHubRoleKey: DataHubRoleKeyClass
|
|
29097
|
+
dataHubPageTemplateKey: DataHubPageTemplateKeyClass
|
|
29098
|
+
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
29099
|
+
dataFlowKey: DataFlowKeyClass
|
|
29100
|
+
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
29101
|
+
corpUserKey: CorpUserKeyClass
|
|
29102
|
+
queryKey: QueryKeyClass
|
|
29103
|
+
incidentKey: IncidentKeyClass
|
|
29104
|
+
formKey: FormKeyClass
|
|
29105
|
+
containerKey: ContainerKeyClass
|
|
29106
|
+
postKey: PostKeyClass
|
|
29107
|
+
chartKey: ChartKeyClass
|
|
29108
|
+
assertionKey: AssertionKeyClass
|
|
29109
|
+
dataJobKey: DataJobKeyClass
|
|
29110
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
29111
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
29112
|
+
telemetryKey: TelemetryKeyClass
|
|
26687
29113
|
mlModelKey: MLModelKeyClass
|
|
26688
|
-
notebookKey: NotebookKeyClass
|
|
26689
|
-
roleKey: RoleKeyClass
|
|
26690
29114
|
globalSettingsKey: GlobalSettingsKeyClass
|
|
26691
29115
|
datasetKey: DatasetKeyClass
|
|
26692
|
-
chartKey: ChartKeyClass
|
|
26693
|
-
glossaryNodeKey: GlossaryNodeKeyClass
|
|
26694
|
-
assertionKey: AssertionKeyClass
|
|
26695
29116
|
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
26696
|
-
mlModelGroupKey: MLModelGroupKeyClass
|
|
26697
|
-
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
26698
|
-
dataFlowKey: DataFlowKeyClass
|
|
26699
|
-
dataJobKey: DataJobKeyClass
|
|
26700
|
-
corpGroupKey: CorpGroupKeyClass
|
|
26701
|
-
dataPlatformKey: DataPlatformKeyClass
|
|
26702
|
-
corpUserKey: CorpUserKeyClass
|
|
26703
|
-
dashboardKey: DashboardKeyClass
|
|
26704
|
-
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
26705
|
-
queryKey: QueryKeyClass
|
|
26706
29117
|
ownershipTypeKey: OwnershipTypeKeyClass
|
|
26707
|
-
|
|
26708
|
-
|
|
26709
|
-
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
26710
|
-
dataHubViewKey: DataHubViewKeyClass
|
|
29118
|
+
dataProcessKey: DataProcessKeyClass
|
|
29119
|
+
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
26711
29120
|
dataHubActionKey: DataHubActionKeyClass
|
|
26712
|
-
|
|
29121
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
29122
|
+
dataHubFileKey: DataHubFileKeyClass
|
|
29123
|
+
testKey: TestKeyClass
|
|
29124
|
+
glossaryTermKey: GlossaryTermKeyClass
|
|
29125
|
+
inviteTokenKey: InviteTokenKeyClass
|
|
29126
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
29127
|
+
dataPlatformKey: DataPlatformKeyClass
|
|
26713
29128
|
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
26714
|
-
|
|
26715
|
-
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
29129
|
+
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
26716
29130
|
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
26717
|
-
|
|
26718
|
-
|
|
26719
|
-
|
|
26720
|
-
|
|
26721
|
-
formKey: FormKeyClass
|
|
26722
|
-
schemaFieldKey: SchemaFieldKeyClass
|
|
29131
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
29132
|
+
corpGroupKey: CorpGroupKeyClass
|
|
29133
|
+
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
29134
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
26723
29135
|
tagKey: TagKeyClass
|
|
26724
|
-
postKey: PostKeyClass
|
|
26725
|
-
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
26726
|
-
inviteTokenKey: InviteTokenKeyClass
|
|
26727
29136
|
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
26728
|
-
containerKey: ContainerKeyClass
|
|
26729
|
-
incidentKey: IncidentKeyClass
|
|
26730
|
-
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
26731
|
-
testKey: TestKeyClass
|
|
26732
|
-
versionSetKey: VersionSetKeyClass
|
|
26733
29137
|
dataHubSecretKey: DataHubSecretKeyClass
|
|
26734
|
-
|
|
26735
|
-
|
|
26736
|
-
|
|
26737
|
-
|
|
26738
|
-
|
|
26739
|
-
|
|
29138
|
+
notebookKey: NotebookKeyClass
|
|
29139
|
+
glossaryNodeKey: GlossaryNodeKeyClass
|
|
29140
|
+
dataContractKey: DataContractKeyClass
|
|
29141
|
+
dataHubPageModuleKey: DataHubPageModuleKeyClass
|
|
29142
|
+
dataHubOpenAPISchemaKey: DataHubOpenAPISchemaKeyClass
|
|
29143
|
+
roleKey: RoleKeyClass
|
|
29144
|
+
versionSetKey: VersionSetKeyClass
|
|
29145
|
+
domainKey: DomainKeyClass
|
|
29146
|
+
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
29147
|
+
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
29148
|
+
dataHubViewKey: DataHubViewKeyClass
|
|
29149
|
+
dashboardKey: DashboardKeyClass
|
|
29150
|
+
upstreamLineage: UpstreamLineageClass
|
|
29151
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
29152
|
+
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
29153
|
+
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
29154
|
+
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
29155
|
+
datasetProperties: DatasetPropertiesClass
|
|
29156
|
+
datasetProfile: DatasetProfileClass
|
|
29157
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
29158
|
+
viewProperties: ViewPropertiesClass
|
|
29159
|
+
partitionsSummary: PartitionsSummaryClass
|
|
26740
29160
|
schemafieldInfo: SchemaFieldInfoClass
|
|
26741
29161
|
schemaFieldAliases: SchemaFieldAliasesClass
|
|
26742
|
-
|
|
26743
|
-
|
|
26744
|
-
|
|
26745
|
-
|
|
26746
|
-
|
|
26747
|
-
|
|
26748
|
-
|
|
26749
|
-
|
|
26750
|
-
|
|
26751
|
-
|
|
26752
|
-
|
|
26753
|
-
|
|
26754
|
-
|
|
26755
|
-
|
|
26756
|
-
corpUserCredentials: CorpUserCredentialsClass
|
|
26757
|
-
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
26758
|
-
corpGroupInfo: CorpGroupInfoClass
|
|
26759
|
-
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
26760
|
-
corpUserInfo: CorpUserInfoClass
|
|
26761
|
-
corpUserSettings: CorpUserSettingsClass
|
|
26762
|
-
roleMembership: RoleMembershipClass
|
|
26763
|
-
groupMembership: GroupMembershipClass
|
|
26764
|
-
nativeGroupMembership: NativeGroupMembershipClass
|
|
26765
|
-
inviteToken: InviteTokenClass
|
|
26766
|
-
roleProperties: RolePropertiesClass
|
|
26767
|
-
actors: ActorsClass
|
|
26768
|
-
postInfo: PostInfoClass
|
|
26769
|
-
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
26770
|
-
dashboardInfo: DashboardInfoClass
|
|
26771
|
-
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
26772
|
-
notebookInfo: NotebookInfoClass
|
|
26773
|
-
notebookContent: NotebookContentClass
|
|
26774
|
-
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
26775
|
-
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
26776
|
-
structuredProperties: StructuredPropertiesClass
|
|
26777
|
-
propertyDefinition: StructuredPropertyDefinitionClass
|
|
26778
|
-
structuredPropertyKey: StructuredPropertyKeyClass
|
|
26779
|
-
structuredPropertySettings: StructuredPropertySettingsClass
|
|
26780
|
-
tagProperties: TagPropertiesClass
|
|
29162
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
29163
|
+
dataFlowInfo: DataFlowInfoClass
|
|
29164
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
29165
|
+
dataJobInputOutput: DataJobInputOutputClass
|
|
29166
|
+
versionInfo: VersionInfoClass
|
|
29167
|
+
dataJobInfo: DataJobInfoClass
|
|
29168
|
+
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
29169
|
+
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
29170
|
+
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
29171
|
+
formInfo: FormInfoClass
|
|
29172
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
29173
|
+
dataPlatformInfo: DataPlatformInfoClass
|
|
29174
|
+
slackUserInfo: SlackUserInfoClass
|
|
29175
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
26781
29176
|
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
29177
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
29178
|
+
mlMetric: MLMetricClass
|
|
26782
29179
|
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
26783
|
-
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
26784
|
-
mlModelTrainingData: TrainingDataClass
|
|
26785
|
-
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
26786
29180
|
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
29181
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
26787
29182
|
mlHyperParam: MLHyperParamClass
|
|
26788
|
-
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
26789
|
-
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
26790
29183
|
sourceCode: SourceCodeClass
|
|
29184
|
+
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
29185
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
29186
|
+
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
29187
|
+
mlModelProperties: MLModelPropertiesClass
|
|
29188
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
29189
|
+
mlModelTrainingData: TrainingDataClass
|
|
29190
|
+
intendedUse: IntendedUseClass
|
|
29191
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
29192
|
+
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
26791
29193
|
mlModelEvaluationData: EvaluationDataClass
|
|
29194
|
+
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
26792
29195
|
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
26793
|
-
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
26794
29196
|
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
26795
29197
|
mlModelMetrics: MetricsClass
|
|
26796
|
-
|
|
26797
|
-
|
|
26798
|
-
|
|
26799
|
-
|
|
26800
|
-
|
|
26801
|
-
|
|
26802
|
-
|
|
26803
|
-
|
|
26804
|
-
|
|
26805
|
-
|
|
26806
|
-
|
|
26807
|
-
|
|
26808
|
-
|
|
26809
|
-
|
|
26810
|
-
|
|
29198
|
+
dataTypeKey: DataTypeKeyClass
|
|
29199
|
+
dataTypeInfo: DataTypeInfoClass
|
|
29200
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
29201
|
+
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
29202
|
+
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
29203
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
29204
|
+
glossaryTerms: GlossaryTermsClass
|
|
29205
|
+
status: StatusClass
|
|
29206
|
+
cost: CostClass
|
|
29207
|
+
browsePathsV2: BrowsePathsV2Class
|
|
29208
|
+
institutionalMemory: InstitutionalMemoryClass
|
|
29209
|
+
operation: OperationClass
|
|
29210
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
29211
|
+
documentation: DocumentationClass
|
|
29212
|
+
displayProperties: DisplayPropertiesClass
|
|
29213
|
+
versionProperties: VersionPropertiesClass
|
|
29214
|
+
inputFields: InputFieldsClass
|
|
29215
|
+
ownership: OwnershipClass
|
|
29216
|
+
origin: OriginClass
|
|
29217
|
+
embed: EmbedClass
|
|
29218
|
+
deprecation: DeprecationClass
|
|
29219
|
+
browsePaths: BrowsePathsClass
|
|
29220
|
+
subTypes: SubTypesClass
|
|
29221
|
+
forms: FormsClass
|
|
29222
|
+
access: AccessClass
|
|
29223
|
+
dataTransformLogic: DataTransformLogicClass
|
|
29224
|
+
globalTags: GlobalTagsClass
|
|
29225
|
+
siblings: SiblingsClass
|
|
29226
|
+
incidentsSummary: IncidentsSummaryClass
|
|
29227
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
29228
|
+
assetSettings: AssetSettingsClass
|
|
29229
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
29230
|
+
incidentInfo: IncidentInfoClass
|
|
29231
|
+
incidentSource: IncidentSourceClass
|
|
29232
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
29233
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
29234
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
29235
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
29236
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
29237
|
+
testInfo: TestInfoClass
|
|
29238
|
+
testResults: TestResultsClass
|
|
29239
|
+
businessAttributes: BusinessAttributesClass
|
|
29240
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
29241
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
29242
|
+
propertyDefinition: StructuredPropertyDefinitionClass
|
|
29243
|
+
structuredProperties: StructuredPropertiesClass
|
|
29244
|
+
structuredPropertyKey: StructuredPropertyKeyClass
|
|
29245
|
+
structuredPropertySettings: StructuredPropertySettingsClass
|
|
29246
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
29247
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
29248
|
+
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
29249
|
+
domainProperties: DomainPropertiesClass
|
|
29250
|
+
domains: DomainsClass
|
|
29251
|
+
actors: ActorsClass
|
|
29252
|
+
roleProperties: RolePropertiesClass
|
|
29253
|
+
dataContractStatus: DataContractStatusClass
|
|
29254
|
+
dataContractProperties: DataContractPropertiesClass
|
|
29255
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
29256
|
+
logicalParent: LogicalParentClass
|
|
29257
|
+
versionSetProperties: VersionSetPropertiesClass
|
|
26811
29258
|
|
|
26812
29259
|
|
|
26813
29260
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
26814
|
-
'
|
|
26815
|
-
'dataType': DataTypeKeyClass,
|
|
29261
|
+
'entityType': EntityTypeKeyClass,
|
|
26816
29262
|
'dataProduct': DataProductKeyClass,
|
|
26817
|
-
'
|
|
26818
|
-
'
|
|
26819
|
-
'
|
|
29263
|
+
'application': ApplicationKeyClass,
|
|
29264
|
+
'platformResource': PlatformResourceKeyClass,
|
|
29265
|
+
'schemaField': SchemaFieldKeyClass,
|
|
26820
29266
|
'dataHubRole': DataHubRoleKeyClass,
|
|
29267
|
+
'dataHubPageTemplate': DataHubPageTemplateKeyClass,
|
|
29268
|
+
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
29269
|
+
'dataFlow': DataFlowKeyClass,
|
|
29270
|
+
'dataHubConnection': DataHubConnectionKeyClass,
|
|
29271
|
+
'corpuser': CorpUserKeyClass,
|
|
29272
|
+
'query': QueryKeyClass,
|
|
29273
|
+
'incident': IncidentKeyClass,
|
|
29274
|
+
'form': FormKeyClass,
|
|
29275
|
+
'container': ContainerKeyClass,
|
|
29276
|
+
'post': PostKeyClass,
|
|
29277
|
+
'chart': ChartKeyClass,
|
|
29278
|
+
'assertion': AssertionKeyClass,
|
|
29279
|
+
'dataJob': DataJobKeyClass,
|
|
29280
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
29281
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
29282
|
+
'telemetry': TelemetryKeyClass,
|
|
26821
29283
|
'mlModel': MLModelKeyClass,
|
|
26822
|
-
'notebook': NotebookKeyClass,
|
|
26823
|
-
'role': RoleKeyClass,
|
|
26824
29284
|
'globalSettings': GlobalSettingsKeyClass,
|
|
26825
29285
|
'dataset': DatasetKeyClass,
|
|
26826
|
-
'chart': ChartKeyClass,
|
|
26827
|
-
'glossaryNode': GlossaryNodeKeyClass,
|
|
26828
|
-
'assertion': AssertionKeyClass,
|
|
26829
29286
|
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
26830
|
-
'mlModelGroup': MLModelGroupKeyClass,
|
|
26831
|
-
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
26832
|
-
'dataFlow': DataFlowKeyClass,
|
|
26833
|
-
'dataJob': DataJobKeyClass,
|
|
26834
|
-
'corpGroup': CorpGroupKeyClass,
|
|
26835
|
-
'dataPlatform': DataPlatformKeyClass,
|
|
26836
|
-
'corpuser': CorpUserKeyClass,
|
|
26837
|
-
'dashboard': DashboardKeyClass,
|
|
26838
|
-
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
26839
|
-
'query': QueryKeyClass,
|
|
26840
29287
|
'ownershipType': OwnershipTypeKeyClass,
|
|
26841
|
-
'
|
|
26842
|
-
'
|
|
26843
|
-
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
26844
|
-
'dataHubView': DataHubViewKeyClass,
|
|
29288
|
+
'dataProcess': DataProcessKeyClass,
|
|
29289
|
+
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
26845
29290
|
'dataHubAction': DataHubActionKeyClass,
|
|
26846
|
-
'
|
|
29291
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
29292
|
+
'dataHubFile': DataHubFileKeyClass,
|
|
29293
|
+
'test': TestKeyClass,
|
|
29294
|
+
'glossaryTerm': GlossaryTermKeyClass,
|
|
29295
|
+
'inviteToken': InviteTokenKeyClass,
|
|
29296
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
29297
|
+
'dataPlatform': DataPlatformKeyClass,
|
|
26847
29298
|
'dataHubStepState': DataHubStepStateKeyClass,
|
|
26848
|
-
'
|
|
26849
|
-
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
29299
|
+
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
26850
29300
|
'dataHubRetention': DataHubRetentionKeyClass,
|
|
26851
|
-
'
|
|
26852
|
-
'
|
|
26853
|
-
'
|
|
26854
|
-
'
|
|
26855
|
-
'form': FormKeyClass,
|
|
26856
|
-
'schemaField': SchemaFieldKeyClass,
|
|
29301
|
+
'mlFeature': MLFeatureKeyClass,
|
|
29302
|
+
'corpGroup': CorpGroupKeyClass,
|
|
29303
|
+
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
29304
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
26857
29305
|
'tag': TagKeyClass,
|
|
26858
|
-
'post': PostKeyClass,
|
|
26859
|
-
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
26860
|
-
'inviteToken': InviteTokenKeyClass,
|
|
26861
29306
|
'dataHubPersona': DataHubPersonaKeyClass,
|
|
26862
|
-
'container': ContainerKeyClass,
|
|
26863
|
-
'incident': IncidentKeyClass,
|
|
26864
|
-
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
26865
|
-
'test': TestKeyClass,
|
|
26866
|
-
'versionSet': VersionSetKeyClass,
|
|
26867
29307
|
'dataHubSecret': DataHubSecretKeyClass,
|
|
26868
|
-
'
|
|
26869
|
-
'
|
|
26870
|
-
'
|
|
29308
|
+
'notebook': NotebookKeyClass,
|
|
29309
|
+
'glossaryNode': GlossaryNodeKeyClass,
|
|
29310
|
+
'dataContract': DataContractKeyClass,
|
|
29311
|
+
'dataHubPageModule': DataHubPageModuleKeyClass,
|
|
29312
|
+
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
29313
|
+
'role': RoleKeyClass,
|
|
29314
|
+
'versionSet': VersionSetKeyClass,
|
|
29315
|
+
'domain': DomainKeyClass,
|
|
29316
|
+
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
29317
|
+
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
29318
|
+
'dataHubView': DataHubViewKeyClass,
|
|
29319
|
+
'dashboard': DashboardKeyClass,
|
|
29320
|
+
'dataType': DataTypeKeyClass,
|
|
29321
|
+
'businessAttribute': BusinessAttributeKeyClass,
|
|
29322
|
+
'structuredProperty': StructuredPropertyKeyClass
|
|
26871
29323
|
}
|
|
26872
29324
|
|
|
29325
|
+
KEY_ASPECT_NAMES: Set[str] = {cls.ASPECT_NAME for cls in KEY_ASPECTS.values()}
|
|
29326
|
+
|
|
26873
29327
|
ENTITY_TYPE_NAMES: List[str] = [
|
|
26874
|
-
'
|
|
26875
|
-
'dataType',
|
|
29328
|
+
'entityType',
|
|
26876
29329
|
'dataProduct',
|
|
26877
|
-
'
|
|
26878
|
-
'
|
|
26879
|
-
'
|
|
29330
|
+
'application',
|
|
29331
|
+
'platformResource',
|
|
29332
|
+
'schemaField',
|
|
26880
29333
|
'dataHubRole',
|
|
29334
|
+
'dataHubPageTemplate',
|
|
29335
|
+
'dataPlatformInstance',
|
|
29336
|
+
'dataFlow',
|
|
29337
|
+
'dataHubConnection',
|
|
29338
|
+
'corpuser',
|
|
29339
|
+
'query',
|
|
29340
|
+
'incident',
|
|
29341
|
+
'form',
|
|
29342
|
+
'container',
|
|
29343
|
+
'post',
|
|
29344
|
+
'chart',
|
|
29345
|
+
'assertion',
|
|
29346
|
+
'dataJob',
|
|
29347
|
+
'dataProcessInstance',
|
|
29348
|
+
'dataHubPolicy',
|
|
29349
|
+
'telemetry',
|
|
26881
29350
|
'mlModel',
|
|
26882
|
-
'notebook',
|
|
26883
|
-
'role',
|
|
26884
29351
|
'globalSettings',
|
|
26885
29352
|
'dataset',
|
|
26886
|
-
'chart',
|
|
26887
|
-
'glossaryNode',
|
|
26888
|
-
'assertion',
|
|
26889
29353
|
'dataHubExecutionRequest',
|
|
26890
|
-
'mlModelGroup',
|
|
26891
|
-
'mlModelDeployment',
|
|
26892
|
-
'dataFlow',
|
|
26893
|
-
'dataJob',
|
|
26894
|
-
'corpGroup',
|
|
26895
|
-
'dataPlatform',
|
|
26896
|
-
'corpuser',
|
|
26897
|
-
'dashboard',
|
|
26898
|
-
'mlPrimaryKey',
|
|
26899
|
-
'query',
|
|
26900
29354
|
'ownershipType',
|
|
26901
|
-
'
|
|
26902
|
-
'
|
|
26903
|
-
'mlFeatureTable',
|
|
26904
|
-
'dataHubView',
|
|
29355
|
+
'dataProcess',
|
|
29356
|
+
'dataHubAccessToken',
|
|
26905
29357
|
'dataHubAction',
|
|
26906
|
-
'
|
|
29358
|
+
'mlPrimaryKey',
|
|
29359
|
+
'dataHubFile',
|
|
29360
|
+
'test',
|
|
29361
|
+
'glossaryTerm',
|
|
29362
|
+
'inviteToken',
|
|
29363
|
+
'dataHubIngestionSource',
|
|
29364
|
+
'dataPlatform',
|
|
26907
29365
|
'dataHubStepState',
|
|
26908
|
-
'
|
|
26909
|
-
'dataHubPolicy',
|
|
29366
|
+
'mlFeatureTable',
|
|
26910
29367
|
'dataHubRetention',
|
|
26911
|
-
'
|
|
26912
|
-
'
|
|
26913
|
-
'
|
|
26914
|
-
'
|
|
26915
|
-
'form',
|
|
26916
|
-
'schemaField',
|
|
29368
|
+
'mlFeature',
|
|
29369
|
+
'corpGroup',
|
|
29370
|
+
'dataHubUpgrade',
|
|
29371
|
+
'mlModelGroup',
|
|
26917
29372
|
'tag',
|
|
26918
|
-
'post',
|
|
26919
|
-
'dataHubIngestionSource',
|
|
26920
|
-
'inviteToken',
|
|
26921
29373
|
'dataHubPersona',
|
|
26922
|
-
'container',
|
|
26923
|
-
'incident',
|
|
26924
|
-
'dataPlatformInstance',
|
|
26925
|
-
'test',
|
|
26926
|
-
'versionSet',
|
|
26927
29374
|
'dataHubSecret',
|
|
26928
|
-
'
|
|
26929
|
-
'
|
|
26930
|
-
'
|
|
29375
|
+
'notebook',
|
|
29376
|
+
'glossaryNode',
|
|
29377
|
+
'dataContract',
|
|
29378
|
+
'dataHubPageModule',
|
|
29379
|
+
'dataHubOpenAPISchema',
|
|
29380
|
+
'role',
|
|
29381
|
+
'versionSet',
|
|
29382
|
+
'domain',
|
|
29383
|
+
'mlModelDeployment',
|
|
29384
|
+
'erModelRelationship',
|
|
29385
|
+
'dataHubView',
|
|
29386
|
+
'dashboard',
|
|
29387
|
+
'dataType',
|
|
29388
|
+
'businessAttribute',
|
|
29389
|
+
'structuredProperty'
|
|
26931
29390
|
]
|
|
26932
29391
|
EntityTypeName = Literal[
|
|
26933
|
-
'
|
|
26934
|
-
'dataType',
|
|
29392
|
+
'entityType',
|
|
26935
29393
|
'dataProduct',
|
|
26936
|
-
'
|
|
26937
|
-
'
|
|
26938
|
-
'
|
|
29394
|
+
'application',
|
|
29395
|
+
'platformResource',
|
|
29396
|
+
'schemaField',
|
|
26939
29397
|
'dataHubRole',
|
|
29398
|
+
'dataHubPageTemplate',
|
|
29399
|
+
'dataPlatformInstance',
|
|
29400
|
+
'dataFlow',
|
|
29401
|
+
'dataHubConnection',
|
|
29402
|
+
'corpuser',
|
|
29403
|
+
'query',
|
|
29404
|
+
'incident',
|
|
29405
|
+
'form',
|
|
29406
|
+
'container',
|
|
29407
|
+
'post',
|
|
29408
|
+
'chart',
|
|
29409
|
+
'assertion',
|
|
29410
|
+
'dataJob',
|
|
29411
|
+
'dataProcessInstance',
|
|
29412
|
+
'dataHubPolicy',
|
|
29413
|
+
'telemetry',
|
|
26940
29414
|
'mlModel',
|
|
26941
|
-
'notebook',
|
|
26942
|
-
'role',
|
|
26943
29415
|
'globalSettings',
|
|
26944
29416
|
'dataset',
|
|
26945
|
-
'chart',
|
|
26946
|
-
'glossaryNode',
|
|
26947
|
-
'assertion',
|
|
26948
29417
|
'dataHubExecutionRequest',
|
|
26949
|
-
'mlModelGroup',
|
|
26950
|
-
'mlModelDeployment',
|
|
26951
|
-
'dataFlow',
|
|
26952
|
-
'dataJob',
|
|
26953
|
-
'corpGroup',
|
|
26954
|
-
'dataPlatform',
|
|
26955
|
-
'corpuser',
|
|
26956
|
-
'dashboard',
|
|
26957
|
-
'mlPrimaryKey',
|
|
26958
|
-
'query',
|
|
26959
29418
|
'ownershipType',
|
|
26960
|
-
'
|
|
26961
|
-
'
|
|
26962
|
-
'mlFeatureTable',
|
|
26963
|
-
'dataHubView',
|
|
29419
|
+
'dataProcess',
|
|
29420
|
+
'dataHubAccessToken',
|
|
26964
29421
|
'dataHubAction',
|
|
26965
|
-
'
|
|
29422
|
+
'mlPrimaryKey',
|
|
29423
|
+
'dataHubFile',
|
|
29424
|
+
'test',
|
|
29425
|
+
'glossaryTerm',
|
|
29426
|
+
'inviteToken',
|
|
29427
|
+
'dataHubIngestionSource',
|
|
29428
|
+
'dataPlatform',
|
|
26966
29429
|
'dataHubStepState',
|
|
26967
|
-
'
|
|
26968
|
-
'dataHubPolicy',
|
|
29430
|
+
'mlFeatureTable',
|
|
26969
29431
|
'dataHubRetention',
|
|
26970
|
-
'
|
|
26971
|
-
'
|
|
26972
|
-
'
|
|
26973
|
-
'
|
|
26974
|
-
'form',
|
|
26975
|
-
'schemaField',
|
|
29432
|
+
'mlFeature',
|
|
29433
|
+
'corpGroup',
|
|
29434
|
+
'dataHubUpgrade',
|
|
29435
|
+
'mlModelGroup',
|
|
26976
29436
|
'tag',
|
|
26977
|
-
'post',
|
|
26978
|
-
'dataHubIngestionSource',
|
|
26979
|
-
'inviteToken',
|
|
26980
29437
|
'dataHubPersona',
|
|
26981
|
-
'container',
|
|
26982
|
-
'incident',
|
|
26983
|
-
'dataPlatformInstance',
|
|
26984
|
-
'test',
|
|
26985
|
-
'versionSet',
|
|
26986
29438
|
'dataHubSecret',
|
|
26987
|
-
'
|
|
26988
|
-
'
|
|
26989
|
-
'
|
|
29439
|
+
'notebook',
|
|
29440
|
+
'glossaryNode',
|
|
29441
|
+
'dataContract',
|
|
29442
|
+
'dataHubPageModule',
|
|
29443
|
+
'dataHubOpenAPISchema',
|
|
29444
|
+
'role',
|
|
29445
|
+
'versionSet',
|
|
29446
|
+
'domain',
|
|
29447
|
+
'mlModelDeployment',
|
|
29448
|
+
'erModelRelationship',
|
|
29449
|
+
'dataHubView',
|
|
29450
|
+
'dashboard',
|
|
29451
|
+
'dataType',
|
|
29452
|
+
'businessAttribute',
|
|
29453
|
+
'structuredProperty'
|
|
26990
29454
|
]
|
|
26991
29455
|
|
|
26992
29456
|
# fmt: on
|