diff --git a/experimental/python/codegen/codegen/main.py b/experimental/python/codegen/codegen/main.py index df26810338..c6cc1beb92 100644 --- a/experimental/python/codegen/codegen/main.py +++ b/experimental/python/codegen/codegen/main.py @@ -15,6 +15,8 @@ from codegen.generated_dataclass import GeneratedDataclass, GeneratedType from codegen.generated_enum import GeneratedEnum +HEADER = "# Code generated from jsonschema.json. DO NOT EDIT.\n" + def main(output: str): schemas = openapi.get_schemas() @@ -144,6 +146,7 @@ def _write_exports( exports.sort() b = CodeBuilder() + b.append(HEADER) b.append("__all__ = [\n") for export in exports: @@ -296,7 +299,8 @@ def _write_code( package_code[package] += "\n" + code package_code = { - package: generated_imports.get_code( + package: HEADER + + generated_imports.get_code( dataclasses, enums, # don't import package from itself diff --git a/experimental/python/databricks/bundles/jobs/__init__.py b/experimental/python/databricks/bundles/jobs/__init__.py index 860940222a..6fca7accbe 100644 --- a/experimental/python/databricks/bundles/jobs/__init__.py +++ b/experimental/python/databricks/bundles/jobs/__init__.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. __all__ = [ "Adlsgen2Info", "Adlsgen2InfoDict", diff --git a/experimental/python/databricks/bundles/jobs/_models/adlsgen2_info.py b/experimental/python/databricks/bundles/jobs/_models/adlsgen2_info.py index 206c8b676e..25d2cca813 100644 --- a/experimental/python/databricks/bundles/jobs/_models/adlsgen2_info.py +++ b/experimental/python/databricks/bundles/jobs/_models/adlsgen2_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/authentication_method.py b/experimental/python/databricks/bundles/jobs/_models/authentication_method.py index 68be0e6218..9f818d13cb 100644 --- a/experimental/python/databricks/bundles/jobs/_models/authentication_method.py +++ b/experimental/python/databricks/bundles/jobs/_models/authentication_method.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/auto_scale.py b/experimental/python/databricks/bundles/jobs/_models/auto_scale.py index 6a07ee8b0b..2d18f4370f 100644 --- a/experimental/python/databricks/bundles/jobs/_models/auto_scale.py +++ b/experimental/python/databricks/bundles/jobs/_models/auto_scale.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/aws_attributes.py b/experimental/python/databricks/bundles/jobs/_models/aws_attributes.py index d38c3187e6..7903dbd2a6 100644 --- a/experimental/python/databricks/bundles/jobs/_models/aws_attributes.py +++ b/experimental/python/databricks/bundles/jobs/_models/aws_attributes.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/aws_availability.py b/experimental/python/databricks/bundles/jobs/_models/aws_availability.py index 5d87ffafba..a92943de6e 100644 --- a/experimental/python/databricks/bundles/jobs/_models/aws_availability.py +++ b/experimental/python/databricks/bundles/jobs/_models/aws_availability.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/azure_attributes.py b/experimental/python/databricks/bundles/jobs/_models/azure_attributes.py index f82a0698aa..bc6e119e3a 100644 --- a/experimental/python/databricks/bundles/jobs/_models/azure_attributes.py +++ b/experimental/python/databricks/bundles/jobs/_models/azure_attributes.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/azure_availability.py b/experimental/python/databricks/bundles/jobs/_models/azure_availability.py index 72d461d5d7..cf5951f683 100644 --- a/experimental/python/databricks/bundles/jobs/_models/azure_availability.py +++ b/experimental/python/databricks/bundles/jobs/_models/azure_availability.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/clean_rooms_notebook_task.py b/experimental/python/databricks/bundles/jobs/_models/clean_rooms_notebook_task.py index 7d30a1bad1..bb48da7256 100644 --- a/experimental/python/databricks/bundles/jobs/_models/clean_rooms_notebook_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/clean_rooms_notebook_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/clients_types.py b/experimental/python/databricks/bundles/jobs/_models/clients_types.py index 6891497e55..7e238d217b 100644 --- a/experimental/python/databricks/bundles/jobs/_models/clients_types.py +++ b/experimental/python/databricks/bundles/jobs/_models/clients_types.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/cluster_log_conf.py b/experimental/python/databricks/bundles/jobs/_models/cluster_log_conf.py index be69824672..fd183104e1 100644 --- a/experimental/python/databricks/bundles/jobs/_models/cluster_log_conf.py +++ b/experimental/python/databricks/bundles/jobs/_models/cluster_log_conf.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/cluster_spec.py b/experimental/python/databricks/bundles/jobs/_models/cluster_spec.py index e2ecff716a..fb0a35654b 100644 --- a/experimental/python/databricks/bundles/jobs/_models/cluster_spec.py +++ b/experimental/python/databricks/bundles/jobs/_models/cluster_spec.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/compute_config.py b/experimental/python/databricks/bundles/jobs/_models/compute_config.py index b1194a80cd..a3aff5eb93 100644 --- a/experimental/python/databricks/bundles/jobs/_models/compute_config.py +++ b/experimental/python/databricks/bundles/jobs/_models/compute_config.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/condition.py b/experimental/python/databricks/bundles/jobs/_models/condition.py index d1b3566d5d..06820062b6 100644 --- a/experimental/python/databricks/bundles/jobs/_models/condition.py +++ b/experimental/python/databricks/bundles/jobs/_models/condition.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/condition_task.py b/experimental/python/databricks/bundles/jobs/_models/condition_task.py index 4934c16b02..c6aa00337b 100644 --- a/experimental/python/databricks/bundles/jobs/_models/condition_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/condition_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/condition_task_op.py b/experimental/python/databricks/bundles/jobs/_models/condition_task_op.py index 099413271c..5e33b37bca 100644 --- a/experimental/python/databricks/bundles/jobs/_models/condition_task_op.py +++ b/experimental/python/databricks/bundles/jobs/_models/condition_task_op.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/continuous.py b/experimental/python/databricks/bundles/jobs/_models/continuous.py index 43268661c1..b3d83c9423 100644 --- a/experimental/python/databricks/bundles/jobs/_models/continuous.py +++ b/experimental/python/databricks/bundles/jobs/_models/continuous.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/cron_schedule.py b/experimental/python/databricks/bundles/jobs/_models/cron_schedule.py index 43fb3306b9..67b1ac5199 100644 --- a/experimental/python/databricks/bundles/jobs/_models/cron_schedule.py +++ b/experimental/python/databricks/bundles/jobs/_models/cron_schedule.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/dashboard_task.py b/experimental/python/databricks/bundles/jobs/_models/dashboard_task.py index b42ef0bdd5..4d09fa2dff 100644 --- a/experimental/python/databricks/bundles/jobs/_models/dashboard_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/dashboard_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/data_security_mode.py b/experimental/python/databricks/bundles/jobs/_models/data_security_mode.py index e195d0cfc8..1c6df29790 100644 --- a/experimental/python/databricks/bundles/jobs/_models/data_security_mode.py +++ b/experimental/python/databricks/bundles/jobs/_models/data_security_mode.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/dbfs_storage_info.py b/experimental/python/databricks/bundles/jobs/_models/dbfs_storage_info.py index 81fe319a65..46be0d96bf 100644 --- a/experimental/python/databricks/bundles/jobs/_models/dbfs_storage_info.py +++ b/experimental/python/databricks/bundles/jobs/_models/dbfs_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/dbt_platform_task.py b/experimental/python/databricks/bundles/jobs/_models/dbt_platform_task.py index 92cf53ac86..e12a89df6a 100644 --- a/experimental/python/databricks/bundles/jobs/_models/dbt_platform_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/dbt_platform_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/dbt_task.py b/experimental/python/databricks/bundles/jobs/_models/dbt_task.py index 52ae3cfa46..2b07b48bd1 100644 --- a/experimental/python/databricks/bundles/jobs/_models/dbt_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/dbt_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/docker_basic_auth.py b/experimental/python/databricks/bundles/jobs/_models/docker_basic_auth.py index 21edca52b7..109df96420 100644 --- a/experimental/python/databricks/bundles/jobs/_models/docker_basic_auth.py +++ b/experimental/python/databricks/bundles/jobs/_models/docker_basic_auth.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/docker_image.py b/experimental/python/databricks/bundles/jobs/_models/docker_image.py index 3a76b2bbf3..641fabb3d8 100644 --- a/experimental/python/databricks/bundles/jobs/_models/docker_image.py +++ b/experimental/python/databricks/bundles/jobs/_models/docker_image.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/ebs_volume_type.py b/experimental/python/databricks/bundles/jobs/_models/ebs_volume_type.py index b67853f8cb..f3961cef20 100644 --- a/experimental/python/databricks/bundles/jobs/_models/ebs_volume_type.py +++ b/experimental/python/databricks/bundles/jobs/_models/ebs_volume_type.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/environment.py b/experimental/python/databricks/bundles/jobs/_models/environment.py index e2b88cb481..6b53e93a0b 100644 --- a/experimental/python/databricks/bundles/jobs/_models/environment.py +++ b/experimental/python/databricks/bundles/jobs/_models/environment.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/file_arrival_trigger_configuration.py b/experimental/python/databricks/bundles/jobs/_models/file_arrival_trigger_configuration.py index cf4ae748cf..b65adb596c 100644 --- a/experimental/python/databricks/bundles/jobs/_models/file_arrival_trigger_configuration.py +++ b/experimental/python/databricks/bundles/jobs/_models/file_arrival_trigger_configuration.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/for_each_task.py b/experimental/python/databricks/bundles/jobs/_models/for_each_task.py index db353a2885..2212482b98 100644 --- a/experimental/python/databricks/bundles/jobs/_models/for_each_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/for_each_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/gcp_attributes.py b/experimental/python/databricks/bundles/jobs/_models/gcp_attributes.py index 6f390c1cf8..7cf4021243 100644 --- a/experimental/python/databricks/bundles/jobs/_models/gcp_attributes.py +++ b/experimental/python/databricks/bundles/jobs/_models/gcp_attributes.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/gcp_availability.py b/experimental/python/databricks/bundles/jobs/_models/gcp_availability.py index aa8e785a71..a01dbd47d5 100644 --- a/experimental/python/databricks/bundles/jobs/_models/gcp_availability.py +++ b/experimental/python/databricks/bundles/jobs/_models/gcp_availability.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/gcs_storage_info.py b/experimental/python/databricks/bundles/jobs/_models/gcs_storage_info.py index a5e6d51e6e..cc0227cf24 100644 --- a/experimental/python/databricks/bundles/jobs/_models/gcs_storage_info.py +++ b/experimental/python/databricks/bundles/jobs/_models/gcs_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/gen_ai_compute_task.py b/experimental/python/databricks/bundles/jobs/_models/gen_ai_compute_task.py index 4d2c4b972c..a85966d64d 100644 --- a/experimental/python/databricks/bundles/jobs/_models/gen_ai_compute_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/gen_ai_compute_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/git_provider.py b/experimental/python/databricks/bundles/jobs/_models/git_provider.py index b3f8a73a37..62497be5c0 100644 --- a/experimental/python/databricks/bundles/jobs/_models/git_provider.py +++ b/experimental/python/databricks/bundles/jobs/_models/git_provider.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/git_source.py b/experimental/python/databricks/bundles/jobs/_models/git_source.py index 76fa000f66..9d7601d4fa 100644 --- a/experimental/python/databricks/bundles/jobs/_models/git_source.py +++ b/experimental/python/databricks/bundles/jobs/_models/git_source.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/init_script_info.py b/experimental/python/databricks/bundles/jobs/_models/init_script_info.py index f14f185487..c9dd2339bc 100644 --- a/experimental/python/databricks/bundles/jobs/_models/init_script_info.py +++ b/experimental/python/databricks/bundles/jobs/_models/init_script_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/job.py b/experimental/python/databricks/bundles/jobs/_models/job.py index a751c6c43e..431129715d 100644 --- a/experimental/python/databricks/bundles/jobs/_models/job.py +++ b/experimental/python/databricks/bundles/jobs/_models/job.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/job_cluster.py b/experimental/python/databricks/bundles/jobs/_models/job_cluster.py index a23bb51f99..0b97817cd1 100644 --- a/experimental/python/databricks/bundles/jobs/_models/job_cluster.py +++ b/experimental/python/databricks/bundles/jobs/_models/job_cluster.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/job_email_notifications.py b/experimental/python/databricks/bundles/jobs/_models/job_email_notifications.py index b97648f4dc..2a604e51cf 100644 --- a/experimental/python/databricks/bundles/jobs/_models/job_email_notifications.py +++ b/experimental/python/databricks/bundles/jobs/_models/job_email_notifications.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/job_environment.py b/experimental/python/databricks/bundles/jobs/_models/job_environment.py index 798685f4c6..1cfa564639 100644 --- a/experimental/python/databricks/bundles/jobs/_models/job_environment.py +++ b/experimental/python/databricks/bundles/jobs/_models/job_environment.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/job_notification_settings.py b/experimental/python/databricks/bundles/jobs/_models/job_notification_settings.py index a311536fbd..a6ed67a2a1 100644 --- a/experimental/python/databricks/bundles/jobs/_models/job_notification_settings.py +++ b/experimental/python/databricks/bundles/jobs/_models/job_notification_settings.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/job_parameter_definition.py b/experimental/python/databricks/bundles/jobs/_models/job_parameter_definition.py index 8cd8fb9b5f..dd4afec6c4 100644 --- a/experimental/python/databricks/bundles/jobs/_models/job_parameter_definition.py +++ b/experimental/python/databricks/bundles/jobs/_models/job_parameter_definition.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/job_permission.py b/experimental/python/databricks/bundles/jobs/_models/job_permission.py index b2ab73cee0..450baf7c69 100644 --- a/experimental/python/databricks/bundles/jobs/_models/job_permission.py +++ b/experimental/python/databricks/bundles/jobs/_models/job_permission.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/job_permission_level.py b/experimental/python/databricks/bundles/jobs/_models/job_permission_level.py index fc4e5ebac7..e6c031cfaf 100644 --- a/experimental/python/databricks/bundles/jobs/_models/job_permission_level.py +++ b/experimental/python/databricks/bundles/jobs/_models/job_permission_level.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/job_run_as.py b/experimental/python/databricks/bundles/jobs/_models/job_run_as.py index 59b1af3161..8861656759 100644 --- a/experimental/python/databricks/bundles/jobs/_models/job_run_as.py +++ b/experimental/python/databricks/bundles/jobs/_models/job_run_as.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/jobs_health_metric.py b/experimental/python/databricks/bundles/jobs/_models/jobs_health_metric.py index fcc894a557..e8504640e2 100644 --- a/experimental/python/databricks/bundles/jobs/_models/jobs_health_metric.py +++ b/experimental/python/databricks/bundles/jobs/_models/jobs_health_metric.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/jobs_health_operator.py b/experimental/python/databricks/bundles/jobs/_models/jobs_health_operator.py index 2d949ff07a..820bb61f29 100644 --- a/experimental/python/databricks/bundles/jobs/_models/jobs_health_operator.py +++ b/experimental/python/databricks/bundles/jobs/_models/jobs_health_operator.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/jobs_health_rule.py b/experimental/python/databricks/bundles/jobs/_models/jobs_health_rule.py index 149265c86a..6bc286031d 100644 --- a/experimental/python/databricks/bundles/jobs/_models/jobs_health_rule.py +++ b/experimental/python/databricks/bundles/jobs/_models/jobs_health_rule.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/jobs_health_rules.py b/experimental/python/databricks/bundles/jobs/_models/jobs_health_rules.py index 4f251368d1..5c0f8cca2b 100644 --- a/experimental/python/databricks/bundles/jobs/_models/jobs_health_rules.py +++ b/experimental/python/databricks/bundles/jobs/_models/jobs_health_rules.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/library.py b/experimental/python/databricks/bundles/jobs/_models/library.py index c8d4b5f5b5..453cc15878 100644 --- a/experimental/python/databricks/bundles/jobs/_models/library.py +++ b/experimental/python/databricks/bundles/jobs/_models/library.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/local_file_info.py b/experimental/python/databricks/bundles/jobs/_models/local_file_info.py index 70d6f25820..bd48fdb45a 100644 --- a/experimental/python/databricks/bundles/jobs/_models/local_file_info.py +++ b/experimental/python/databricks/bundles/jobs/_models/local_file_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/log_analytics_info.py b/experimental/python/databricks/bundles/jobs/_models/log_analytics_info.py index 5eced870a1..fc9c068bd3 100644 --- a/experimental/python/databricks/bundles/jobs/_models/log_analytics_info.py +++ b/experimental/python/databricks/bundles/jobs/_models/log_analytics_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/maven_library.py b/experimental/python/databricks/bundles/jobs/_models/maven_library.py index 45925700b8..252c2aa2e4 100644 --- a/experimental/python/databricks/bundles/jobs/_models/maven_library.py +++ b/experimental/python/databricks/bundles/jobs/_models/maven_library.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/notebook_task.py b/experimental/python/databricks/bundles/jobs/_models/notebook_task.py index 3585a84941..ac1512039a 100644 --- a/experimental/python/databricks/bundles/jobs/_models/notebook_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/notebook_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/pause_status.py b/experimental/python/databricks/bundles/jobs/_models/pause_status.py index ee701fa10c..db84b28041 100644 --- a/experimental/python/databricks/bundles/jobs/_models/pause_status.py +++ b/experimental/python/databricks/bundles/jobs/_models/pause_status.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/performance_target.py b/experimental/python/databricks/bundles/jobs/_models/performance_target.py index 5e7b83ae61..a242490805 100644 --- a/experimental/python/databricks/bundles/jobs/_models/performance_target.py +++ b/experimental/python/databricks/bundles/jobs/_models/performance_target.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/periodic_trigger_configuration.py b/experimental/python/databricks/bundles/jobs/_models/periodic_trigger_configuration.py index 5ff5479a88..e7e0b87888 100644 --- a/experimental/python/databricks/bundles/jobs/_models/periodic_trigger_configuration.py +++ b/experimental/python/databricks/bundles/jobs/_models/periodic_trigger_configuration.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/periodic_trigger_configuration_time_unit.py b/experimental/python/databricks/bundles/jobs/_models/periodic_trigger_configuration_time_unit.py index a24d023a78..eb5aba9611 100644 --- a/experimental/python/databricks/bundles/jobs/_models/periodic_trigger_configuration_time_unit.py +++ b/experimental/python/databricks/bundles/jobs/_models/periodic_trigger_configuration_time_unit.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/pipeline_params.py b/experimental/python/databricks/bundles/jobs/_models/pipeline_params.py index 0aa552e2e6..582dd93290 100644 --- a/experimental/python/databricks/bundles/jobs/_models/pipeline_params.py +++ b/experimental/python/databricks/bundles/jobs/_models/pipeline_params.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/pipeline_task.py b/experimental/python/databricks/bundles/jobs/_models/pipeline_task.py index 81126a8ed4..e88b49a60c 100644 --- a/experimental/python/databricks/bundles/jobs/_models/pipeline_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/pipeline_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/power_bi_model.py b/experimental/python/databricks/bundles/jobs/_models/power_bi_model.py index b31c5735ab..f4e297ce90 100644 --- a/experimental/python/databricks/bundles/jobs/_models/power_bi_model.py +++ b/experimental/python/databricks/bundles/jobs/_models/power_bi_model.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/power_bi_table.py b/experimental/python/databricks/bundles/jobs/_models/power_bi_table.py index 83e433da6d..d64d82c968 100644 --- a/experimental/python/databricks/bundles/jobs/_models/power_bi_table.py +++ b/experimental/python/databricks/bundles/jobs/_models/power_bi_table.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/power_bi_task.py b/experimental/python/databricks/bundles/jobs/_models/power_bi_task.py index ceea220ed8..8c4e1082c9 100644 --- a/experimental/python/databricks/bundles/jobs/_models/power_bi_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/power_bi_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/python_py_pi_library.py b/experimental/python/databricks/bundles/jobs/_models/python_py_pi_library.py index 58db37caf5..264dc1ca22 100644 --- a/experimental/python/databricks/bundles/jobs/_models/python_py_pi_library.py +++ b/experimental/python/databricks/bundles/jobs/_models/python_py_pi_library.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/python_wheel_task.py b/experimental/python/databricks/bundles/jobs/_models/python_wheel_task.py index 07a230d8f5..36b00290cd 100644 --- a/experimental/python/databricks/bundles/jobs/_models/python_wheel_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/python_wheel_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/queue_settings.py b/experimental/python/databricks/bundles/jobs/_models/queue_settings.py index c0c2b5af34..a3b389d17b 100644 --- a/experimental/python/databricks/bundles/jobs/_models/queue_settings.py +++ b/experimental/python/databricks/bundles/jobs/_models/queue_settings.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/r_cran_library.py b/experimental/python/databricks/bundles/jobs/_models/r_cran_library.py index 0770f2265a..d629e10812 100644 --- a/experimental/python/databricks/bundles/jobs/_models/r_cran_library.py +++ b/experimental/python/databricks/bundles/jobs/_models/r_cran_library.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/run_if.py b/experimental/python/databricks/bundles/jobs/_models/run_if.py index d61bf51eac..db520584ab 100644 --- a/experimental/python/databricks/bundles/jobs/_models/run_if.py +++ b/experimental/python/databricks/bundles/jobs/_models/run_if.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/run_job_task.py b/experimental/python/databricks/bundles/jobs/_models/run_job_task.py index c7b88ee5ea..0f559fd7e4 100644 --- a/experimental/python/databricks/bundles/jobs/_models/run_job_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/run_job_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/runtime_engine.py b/experimental/python/databricks/bundles/jobs/_models/runtime_engine.py index 1829c507e7..8a0aef653d 100644 --- a/experimental/python/databricks/bundles/jobs/_models/runtime_engine.py +++ b/experimental/python/databricks/bundles/jobs/_models/runtime_engine.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/s3_storage_info.py b/experimental/python/databricks/bundles/jobs/_models/s3_storage_info.py index b5e09063e5..1198ff5689 100644 --- a/experimental/python/databricks/bundles/jobs/_models/s3_storage_info.py +++ b/experimental/python/databricks/bundles/jobs/_models/s3_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/source.py b/experimental/python/databricks/bundles/jobs/_models/source.py index c9e02d4a43..2befd0a310 100644 --- a/experimental/python/databricks/bundles/jobs/_models/source.py +++ b/experimental/python/databricks/bundles/jobs/_models/source.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/spark_jar_task.py b/experimental/python/databricks/bundles/jobs/_models/spark_jar_task.py index 40bbe92ba0..502685a7d0 100644 --- a/experimental/python/databricks/bundles/jobs/_models/spark_jar_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/spark_jar_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/spark_python_task.py b/experimental/python/databricks/bundles/jobs/_models/spark_python_task.py index fe5a3fcce3..9632a0212d 100644 --- a/experimental/python/databricks/bundles/jobs/_models/spark_python_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/spark_python_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/spark_submit_task.py b/experimental/python/databricks/bundles/jobs/_models/spark_submit_task.py index c809dbe721..28b1c52517 100644 --- a/experimental/python/databricks/bundles/jobs/_models/spark_submit_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/spark_submit_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/sql_task.py b/experimental/python/databricks/bundles/jobs/_models/sql_task.py index f404a5b7a9..72c40f1621 100644 --- a/experimental/python/databricks/bundles/jobs/_models/sql_task.py +++ b/experimental/python/databricks/bundles/jobs/_models/sql_task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/sql_task_alert.py b/experimental/python/databricks/bundles/jobs/_models/sql_task_alert.py index 513eecd710..7cbcbda9a5 100644 --- a/experimental/python/databricks/bundles/jobs/_models/sql_task_alert.py +++ b/experimental/python/databricks/bundles/jobs/_models/sql_task_alert.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/sql_task_dashboard.py b/experimental/python/databricks/bundles/jobs/_models/sql_task_dashboard.py index bc0a9b831f..d616580ef0 100644 --- a/experimental/python/databricks/bundles/jobs/_models/sql_task_dashboard.py +++ b/experimental/python/databricks/bundles/jobs/_models/sql_task_dashboard.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/sql_task_file.py b/experimental/python/databricks/bundles/jobs/_models/sql_task_file.py index a0c02a2ca1..13548e60b8 100644 --- a/experimental/python/databricks/bundles/jobs/_models/sql_task_file.py +++ b/experimental/python/databricks/bundles/jobs/_models/sql_task_file.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/sql_task_query.py b/experimental/python/databricks/bundles/jobs/_models/sql_task_query.py index c367bff828..0793c6ddde 100644 --- a/experimental/python/databricks/bundles/jobs/_models/sql_task_query.py +++ b/experimental/python/databricks/bundles/jobs/_models/sql_task_query.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/sql_task_subscription.py b/experimental/python/databricks/bundles/jobs/_models/sql_task_subscription.py index e58319b538..9737fe027d 100644 --- a/experimental/python/databricks/bundles/jobs/_models/sql_task_subscription.py +++ b/experimental/python/databricks/bundles/jobs/_models/sql_task_subscription.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/storage_mode.py b/experimental/python/databricks/bundles/jobs/_models/storage_mode.py index 764e2e7d54..0c59245c29 100644 --- a/experimental/python/databricks/bundles/jobs/_models/storage_mode.py +++ b/experimental/python/databricks/bundles/jobs/_models/storage_mode.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/jobs/_models/subscription.py b/experimental/python/databricks/bundles/jobs/_models/subscription.py index 2d63990245..ac3ba48fd5 100644 --- a/experimental/python/databricks/bundles/jobs/_models/subscription.py +++ b/experimental/python/databricks/bundles/jobs/_models/subscription.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/subscription_subscriber.py b/experimental/python/databricks/bundles/jobs/_models/subscription_subscriber.py index eddc8fc7aa..b3f9da411a 100644 --- a/experimental/python/databricks/bundles/jobs/_models/subscription_subscriber.py +++ b/experimental/python/databricks/bundles/jobs/_models/subscription_subscriber.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/table_update_trigger_configuration.py b/experimental/python/databricks/bundles/jobs/_models/table_update_trigger_configuration.py index c89b0c4011..257754666b 100644 --- a/experimental/python/databricks/bundles/jobs/_models/table_update_trigger_configuration.py +++ b/experimental/python/databricks/bundles/jobs/_models/table_update_trigger_configuration.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/task.py b/experimental/python/databricks/bundles/jobs/_models/task.py index 0393213b65..ecf3ea65d6 100644 --- a/experimental/python/databricks/bundles/jobs/_models/task.py +++ b/experimental/python/databricks/bundles/jobs/_models/task.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/task_dependency.py b/experimental/python/databricks/bundles/jobs/_models/task_dependency.py index 5f8fd3e607..90905803d7 100644 --- a/experimental/python/databricks/bundles/jobs/_models/task_dependency.py +++ b/experimental/python/databricks/bundles/jobs/_models/task_dependency.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/task_email_notifications.py b/experimental/python/databricks/bundles/jobs/_models/task_email_notifications.py index 3583798515..9d04434c73 100644 --- a/experimental/python/databricks/bundles/jobs/_models/task_email_notifications.py +++ b/experimental/python/databricks/bundles/jobs/_models/task_email_notifications.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/task_notification_settings.py b/experimental/python/databricks/bundles/jobs/_models/task_notification_settings.py index 87ca47ac9c..2fdd5477a8 100644 --- a/experimental/python/databricks/bundles/jobs/_models/task_notification_settings.py +++ b/experimental/python/databricks/bundles/jobs/_models/task_notification_settings.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/trigger_settings.py b/experimental/python/databricks/bundles/jobs/_models/trigger_settings.py index 4608c98c82..594e53b132 100644 --- a/experimental/python/databricks/bundles/jobs/_models/trigger_settings.py +++ b/experimental/python/databricks/bundles/jobs/_models/trigger_settings.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/volumes_storage_info.py b/experimental/python/databricks/bundles/jobs/_models/volumes_storage_info.py index cbe74758fc..772c91f0d6 100644 --- a/experimental/python/databricks/bundles/jobs/_models/volumes_storage_info.py +++ b/experimental/python/databricks/bundles/jobs/_models/volumes_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/webhook.py b/experimental/python/databricks/bundles/jobs/_models/webhook.py index 5e47d57f83..c64772fb69 100644 --- a/experimental/python/databricks/bundles/jobs/_models/webhook.py +++ b/experimental/python/databricks/bundles/jobs/_models/webhook.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/webhook_notifications.py b/experimental/python/databricks/bundles/jobs/_models/webhook_notifications.py index c0f3edf088..0a5fecb527 100644 --- a/experimental/python/databricks/bundles/jobs/_models/webhook_notifications.py +++ b/experimental/python/databricks/bundles/jobs/_models/webhook_notifications.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/workload_type.py b/experimental/python/databricks/bundles/jobs/_models/workload_type.py index db40f98df0..7d499878f5 100644 --- a/experimental/python/databricks/bundles/jobs/_models/workload_type.py +++ b/experimental/python/databricks/bundles/jobs/_models/workload_type.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/jobs/_models/workspace_storage_info.py b/experimental/python/databricks/bundles/jobs/_models/workspace_storage_info.py index 29c075ac2f..efa2efeebf 100644 --- a/experimental/python/databricks/bundles/jobs/_models/workspace_storage_info.py +++ b/experimental/python/databricks/bundles/jobs/_models/workspace_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/__init__.py b/experimental/python/databricks/bundles/pipelines/__init__.py index a4bcfea524..0797c37fa8 100644 --- a/experimental/python/databricks/bundles/pipelines/__init__.py +++ b/experimental/python/databricks/bundles/pipelines/__init__.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. __all__ = [ "Adlsgen2Info", "Adlsgen2InfoDict", diff --git a/experimental/python/databricks/bundles/pipelines/_models/adlsgen2_info.py b/experimental/python/databricks/bundles/pipelines/_models/adlsgen2_info.py index 206c8b676e..25d2cca813 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/adlsgen2_info.py +++ b/experimental/python/databricks/bundles/pipelines/_models/adlsgen2_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/aws_attributes.py b/experimental/python/databricks/bundles/pipelines/_models/aws_attributes.py index 542f55aa2f..e291f73795 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/aws_attributes.py +++ b/experimental/python/databricks/bundles/pipelines/_models/aws_attributes.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/aws_availability.py b/experimental/python/databricks/bundles/pipelines/_models/aws_availability.py index 5d87ffafba..a92943de6e 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/aws_availability.py +++ b/experimental/python/databricks/bundles/pipelines/_models/aws_availability.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/pipelines/_models/azure_attributes.py b/experimental/python/databricks/bundles/pipelines/_models/azure_attributes.py index f06f84e9c9..f512a3bc7a 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/azure_attributes.py +++ b/experimental/python/databricks/bundles/pipelines/_models/azure_attributes.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/azure_availability.py b/experimental/python/databricks/bundles/pipelines/_models/azure_availability.py index 72d461d5d7..cf5951f683 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/azure_availability.py +++ b/experimental/python/databricks/bundles/pipelines/_models/azure_availability.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/pipelines/_models/cluster_log_conf.py b/experimental/python/databricks/bundles/pipelines/_models/cluster_log_conf.py index f0b4f98545..5ea8eee326 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/cluster_log_conf.py +++ b/experimental/python/databricks/bundles/pipelines/_models/cluster_log_conf.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/day_of_week.py b/experimental/python/databricks/bundles/pipelines/_models/day_of_week.py index eaf5cbc9ff..705c4cbeec 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/day_of_week.py +++ b/experimental/python/databricks/bundles/pipelines/_models/day_of_week.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/pipelines/_models/dbfs_storage_info.py b/experimental/python/databricks/bundles/pipelines/_models/dbfs_storage_info.py index 81fe319a65..46be0d96bf 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/dbfs_storage_info.py +++ b/experimental/python/databricks/bundles/pipelines/_models/dbfs_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/ebs_volume_type.py b/experimental/python/databricks/bundles/pipelines/_models/ebs_volume_type.py index b67853f8cb..f3961cef20 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/ebs_volume_type.py +++ b/experimental/python/databricks/bundles/pipelines/_models/ebs_volume_type.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/pipelines/_models/event_log_spec.py b/experimental/python/databricks/bundles/pipelines/_models/event_log_spec.py index 9b7f5dcdcc..ef790f5e63 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/event_log_spec.py +++ b/experimental/python/databricks/bundles/pipelines/_models/event_log_spec.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/file_library.py b/experimental/python/databricks/bundles/pipelines/_models/file_library.py index 612c1e05bd..f70337e317 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/file_library.py +++ b/experimental/python/databricks/bundles/pipelines/_models/file_library.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/filters.py b/experimental/python/databricks/bundles/pipelines/_models/filters.py index 13f29eeb49..c60463da24 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/filters.py +++ b/experimental/python/databricks/bundles/pipelines/_models/filters.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/gcp_attributes.py b/experimental/python/databricks/bundles/pipelines/_models/gcp_attributes.py index 1deae0c124..0456fb5a56 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/gcp_attributes.py +++ b/experimental/python/databricks/bundles/pipelines/_models/gcp_attributes.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/gcp_availability.py b/experimental/python/databricks/bundles/pipelines/_models/gcp_availability.py index aa8e785a71..a01dbd47d5 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/gcp_availability.py +++ b/experimental/python/databricks/bundles/pipelines/_models/gcp_availability.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/pipelines/_models/gcs_storage_info.py b/experimental/python/databricks/bundles/pipelines/_models/gcs_storage_info.py index a5e6d51e6e..cc0227cf24 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/gcs_storage_info.py +++ b/experimental/python/databricks/bundles/pipelines/_models/gcs_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/ingestion_config.py b/experimental/python/databricks/bundles/pipelines/_models/ingestion_config.py index 988227c43e..19d416d5c1 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/ingestion_config.py +++ b/experimental/python/databricks/bundles/pipelines/_models/ingestion_config.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/ingestion_gateway_pipeline_definition.py b/experimental/python/databricks/bundles/pipelines/_models/ingestion_gateway_pipeline_definition.py index fd278e5e6d..729f0733e1 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/ingestion_gateway_pipeline_definition.py +++ b/experimental/python/databricks/bundles/pipelines/_models/ingestion_gateway_pipeline_definition.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/ingestion_pipeline_definition.py b/experimental/python/databricks/bundles/pipelines/_models/ingestion_pipeline_definition.py index cf3947f4d4..3537d327fe 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/ingestion_pipeline_definition.py +++ b/experimental/python/databricks/bundles/pipelines/_models/ingestion_pipeline_definition.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/ingestion_pipeline_definition_table_specific_config_query_based_connector_config.py b/experimental/python/databricks/bundles/pipelines/_models/ingestion_pipeline_definition_table_specific_config_query_based_connector_config.py index 50f3cc1f57..d77e148055 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/ingestion_pipeline_definition_table_specific_config_query_based_connector_config.py +++ b/experimental/python/databricks/bundles/pipelines/_models/ingestion_pipeline_definition_table_specific_config_query_based_connector_config.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/ingestion_source_type.py b/experimental/python/databricks/bundles/pipelines/_models/ingestion_source_type.py index d9a90a022e..2e490931c7 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/ingestion_source_type.py +++ b/experimental/python/databricks/bundles/pipelines/_models/ingestion_source_type.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/pipelines/_models/init_script_info.py b/experimental/python/databricks/bundles/pipelines/_models/init_script_info.py index 6a6297a30b..8ae49d2c28 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/init_script_info.py +++ b/experimental/python/databricks/bundles/pipelines/_models/init_script_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/local_file_info.py b/experimental/python/databricks/bundles/pipelines/_models/local_file_info.py index 70d6f25820..bd48fdb45a 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/local_file_info.py +++ b/experimental/python/databricks/bundles/pipelines/_models/local_file_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/log_analytics_info.py b/experimental/python/databricks/bundles/pipelines/_models/log_analytics_info.py index 5eced870a1..fc9c068bd3 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/log_analytics_info.py +++ b/experimental/python/databricks/bundles/pipelines/_models/log_analytics_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/maven_library.py b/experimental/python/databricks/bundles/pipelines/_models/maven_library.py index 45925700b8..252c2aa2e4 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/maven_library.py +++ b/experimental/python/databricks/bundles/pipelines/_models/maven_library.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/notebook_library.py b/experimental/python/databricks/bundles/pipelines/_models/notebook_library.py index 5cc6ae9ee3..e7cbd3ed9b 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/notebook_library.py +++ b/experimental/python/databricks/bundles/pipelines/_models/notebook_library.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/notifications.py b/experimental/python/databricks/bundles/pipelines/_models/notifications.py index 22dbec8d70..4b923e41fe 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/notifications.py +++ b/experimental/python/databricks/bundles/pipelines/_models/notifications.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/path_pattern.py b/experimental/python/databricks/bundles/pipelines/_models/path_pattern.py index e8e04fd949..409e3e0ede 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/path_pattern.py +++ b/experimental/python/databricks/bundles/pipelines/_models/path_pattern.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/pipeline.py b/experimental/python/databricks/bundles/pipelines/_models/pipeline.py index 0e698a64b8..c36e1d2f6f 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/pipeline.py +++ b/experimental/python/databricks/bundles/pipelines/_models/pipeline.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster.py b/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster.py index 01563f6a85..a9df9a4689 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster.py +++ b/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster_autoscale.py b/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster_autoscale.py index 58afdbefab..b1f619df85 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster_autoscale.py +++ b/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster_autoscale.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster_autoscale_mode.py b/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster_autoscale_mode.py index 21d2e054cb..b6daf59b5b 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster_autoscale_mode.py +++ b/experimental/python/databricks/bundles/pipelines/_models/pipeline_cluster_autoscale_mode.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/pipelines/_models/pipeline_library.py b/experimental/python/databricks/bundles/pipelines/_models/pipeline_library.py index fa5b9e09e1..5d80015bef 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/pipeline_library.py +++ b/experimental/python/databricks/bundles/pipelines/_models/pipeline_library.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/pipeline_permission.py b/experimental/python/databricks/bundles/pipelines/_models/pipeline_permission.py index 0a3ed95538..1adcc659dd 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/pipeline_permission.py +++ b/experimental/python/databricks/bundles/pipelines/_models/pipeline_permission.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/pipeline_permission_level.py b/experimental/python/databricks/bundles/pipelines/_models/pipeline_permission_level.py index 3e6edf3080..02a1fa8231 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/pipeline_permission_level.py +++ b/experimental/python/databricks/bundles/pipelines/_models/pipeline_permission_level.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/pipelines/_models/pipelines_environment.py b/experimental/python/databricks/bundles/pipelines/_models/pipelines_environment.py index dd4d3ef81a..70605dff8a 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/pipelines_environment.py +++ b/experimental/python/databricks/bundles/pipelines/_models/pipelines_environment.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/report_spec.py b/experimental/python/databricks/bundles/pipelines/_models/report_spec.py index 02d4a8760a..14129b4843 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/report_spec.py +++ b/experimental/python/databricks/bundles/pipelines/_models/report_spec.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/restart_window.py b/experimental/python/databricks/bundles/pipelines/_models/restart_window.py index 2385a32c7a..a5be900eb3 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/restart_window.py +++ b/experimental/python/databricks/bundles/pipelines/_models/restart_window.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/run_as.py b/experimental/python/databricks/bundles/pipelines/_models/run_as.py index b4d52af00a..c7abd639b9 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/run_as.py +++ b/experimental/python/databricks/bundles/pipelines/_models/run_as.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/s3_storage_info.py b/experimental/python/databricks/bundles/pipelines/_models/s3_storage_info.py index b5e09063e5..1198ff5689 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/s3_storage_info.py +++ b/experimental/python/databricks/bundles/pipelines/_models/s3_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/schema_spec.py b/experimental/python/databricks/bundles/pipelines/_models/schema_spec.py index 1307409fb4..a19b1fae22 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/schema_spec.py +++ b/experimental/python/databricks/bundles/pipelines/_models/schema_spec.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/table_spec.py b/experimental/python/databricks/bundles/pipelines/_models/table_spec.py index 03155edf6a..521b694802 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/table_spec.py +++ b/experimental/python/databricks/bundles/pipelines/_models/table_spec.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/table_specific_config.py b/experimental/python/databricks/bundles/pipelines/_models/table_specific_config.py index 7211a9a951..09e29cda31 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/table_specific_config.py +++ b/experimental/python/databricks/bundles/pipelines/_models/table_specific_config.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass, field from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/table_specific_config_scd_type.py b/experimental/python/databricks/bundles/pipelines/_models/table_specific_config_scd_type.py index 6d138b7808..07851c225a 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/table_specific_config_scd_type.py +++ b/experimental/python/databricks/bundles/pipelines/_models/table_specific_config_scd_type.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from enum import Enum from typing import Literal diff --git a/experimental/python/databricks/bundles/pipelines/_models/volumes_storage_info.py b/experimental/python/databricks/bundles/pipelines/_models/volumes_storage_info.py index cbe74758fc..772c91f0d6 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/volumes_storage_info.py +++ b/experimental/python/databricks/bundles/pipelines/_models/volumes_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict diff --git a/experimental/python/databricks/bundles/pipelines/_models/workspace_storage_info.py b/experimental/python/databricks/bundles/pipelines/_models/workspace_storage_info.py index 29c075ac2f..efa2efeebf 100644 --- a/experimental/python/databricks/bundles/pipelines/_models/workspace_storage_info.py +++ b/experimental/python/databricks/bundles/pipelines/_models/workspace_storage_info.py @@ -1,3 +1,4 @@ +# Code generated from jsonschema.json. DO NOT EDIT. from dataclasses import dataclass from typing import TYPE_CHECKING, TypedDict