From 9d44211fb4a776a16de3f859e2c7a267d899d120 Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Mon, 29 Apr 2024 13:34:03 +0200 Subject: [PATCH 01/11] Rename flags --- core/dbt/contracts/project.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/core/dbt/contracts/project.py b/core/dbt/contracts/project.py index 0fa0a2fabfe..d931c3371cb 100644 --- a/core/dbt/contracts/project.py +++ b/core/dbt/contracts/project.py @@ -309,7 +309,6 @@ def validate(cls, data): @dataclass class ProjectFlags(ExtensibleDbtClassMixin): - allow_spaces_in_model_names: Optional[bool] = True cache_selected_only: Optional[bool] = None debug: Optional[bool] = None fail_fast: Optional[bool] = None @@ -321,9 +320,7 @@ class ProjectFlags(ExtensibleDbtClassMixin): partial_parse: Optional[bool] = None populate_cache: Optional[bool] = None printer_width: Optional[int] = None - require_explicit_package_overrides_for_builtin_materializations: bool = False send_anonymous_usage_stats: bool = DEFAULT_SEND_ANONYMOUS_USAGE_STATS - source_freshness_run_project_hooks: bool = False static_parser: Optional[bool] = None use_colors: Optional[bool] = None use_colors_file: Optional[bool] = None @@ -333,12 +330,17 @@ class ProjectFlags(ExtensibleDbtClassMixin): warn_error_options: Optional[Dict[str, Union[str, List[str]]]] = None write_json: Optional[bool] = None + # legacy behaviors + require_explicit_package_overrides_for_builtin_materializations: bool = False + require_resource_names_without_spaces: bool = False + source_freshness_run_project_hooks: bool = False + @property def project_only_flags(self) -> Dict[str, Any]: return { - "source_freshness_run_project_hooks": self.source_freshness_run_project_hooks, - "allow_spaces_in_model_names": self.allow_spaces_in_model_names, "require_explicit_package_overrides_for_builtin_materializations": self.require_explicit_package_overrides_for_builtin_materializations, + "require_resource_names_without_spaces": self.require_resource_names_without_spaces, + "source_freshness_run_project_hooks": self.source_freshness_run_project_hooks, } From fcbd9122e50b206a987b07264b3e196f766207b4 Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Mon, 29 Apr 2024 13:49:53 +0200 Subject: [PATCH 02/11] Attempt refactor of flag require_resource_names_without_spaces --- core/dbt/deprecations.py | 6 + core/dbt/events/core_types.proto | 23 +- core/dbt/events/core_types_pb2.py | 1475 ++++++++--------- core/dbt/events/types.py | 19 +- core/dbt/parser/manifest.py | 57 +- .../test_check_for_spaces_in_model_names.py | 35 +- tests/unit/test_events.py | 4 +- 7 files changed, 806 insertions(+), 813 deletions(-) diff --git a/core/dbt/deprecations.py b/core/dbt/deprecations.py index 2bd50d7943a..d92703b3f34 100644 --- a/core/dbt/deprecations.py +++ b/core/dbt/deprecations.py @@ -123,6 +123,11 @@ class PackageMaterializationOverrideDeprecation(DBTDeprecation): _event = "PackageMaterializationOverrideDeprecation" +class ResourceNamesWithSpacesDeprecation(DBTDeprecation): + _name = "resource-names-with-spaces" + _event = "ResourceNamesWithSpacesDeprecation" + + def renamed_env_var(old_name: str, new_name: str): class EnvironmentVariableRenamed(DBTDeprecation): _name = f"environment-variable-renamed:{old_name}" @@ -163,6 +168,7 @@ def warn(name, *args, **kwargs): TestsConfigDeprecation(), ProjectFlagsMovedDeprecation(), PackageMaterializationOverrideDeprecation(), + ResourceNamesWithSpacesDeprecation(), ] deprecations: Dict[str, DBTDeprecation] = {d.name: d for d in deprecations_list} diff --git a/core/dbt/events/core_types.proto b/core/dbt/events/core_types.proto index cfb537ec75e..6d62f15a6a7 100644 --- a/core/dbt/events/core_types.proto +++ b/core/dbt/events/core_types.proto @@ -404,24 +404,28 @@ message ProjectFlagsMovedDeprecationMsg { } // D014 -message SpacesInModelNameDeprecation { - string model_name = 1; - string model_version = 2; - string level = 3; +message SpacesInResourceNameDeprecation { + string unique_id = 1; + string level = 2; } -message SpacesInModelNameDeprecationMsg { +message SpacesInResourceNameDeprecationMsg { CoreEventInfo info = 1; - SpacesInModelNameDeprecation data = 2; + SpacesInResourceNameDeprecation data = 2; } // D015 -message TotalModelNamesWithSpacesDeprecation { +message ResourceNamesWithSpacesDeprecation { int32 count_invalid_names = 1; bool show_debug_hint = 2; string level = 3; } +message ResourceNamesWithSpacesDeprecationMsg { + CoreEventInfo info = 1; + ResourceNamesWithSpacesDeprecation data = 2; +} + // D016 message PackageMaterializationOverrideDeprecation { string package_name = 1; @@ -433,11 +437,6 @@ message PackageMaterializationOverrideDeprecationMsg { PackageMaterializationOverrideDeprecation data = 2; } -message TotalModelNamesWithSpacesDeprecationMsg { - CoreEventInfo info = 1; - TotalModelNamesWithSpacesDeprecation data = 2; -} - // I065 message DeprecatedModel { string model_name = 1; diff --git a/core/dbt/events/core_types_pb2.py b/core/dbt/events/core_types_pb2.py index 6f270b3b7ca..c80a91dee31 100644 --- a/core/dbt/events/core_types_pb2.py +++ b/core/dbt/events/core_types_pb2.py @@ -1,12 +1,11 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: core_types.proto -# Protobuf Python Version: 4.25.3 """Generated protocol buffer code.""" +from google.protobuf.internal import builder as _builder from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool from google.protobuf import symbol_database as _symbol_database -from google.protobuf.internal import builder as _builder # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() @@ -16,743 +15,743 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x63ore_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x99\x02\n\rCoreEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x05\x65xtra\x18\t \x03(\x0b\x32%.proto_types.CoreEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"V\n\x0cNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x91\x02\n\x08NodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x30\n\rnode_relation\x18\n \x01(\x0b\x32\x19.proto_types.NodeRelation\"\x7f\n\rTimingInfoMsg\x12\x0c\n\x04name\x18\x01 \x01(\t\x12.\n\nstarted_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xd1\x01\n\x0cRunResultMsg\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12/\n\x0btiming_info\x18\x03 \x03(\x0b\x32\x1a.proto_types.TimingInfoMsg\x12\x0e\n\x06thread\x18\x04 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x31\n\x10\x61\x64\x61pter_response\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"\\\n\nColumnType\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x1c\n\x14previous_column_type\x18\x02 \x01(\t\x12\x1b\n\x13\x63urrent_column_type\x18\x03 \x01(\t\"Y\n\x10\x43olumnConstraint\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x03 \x01(\t\"T\n\x0fModelConstraint\x12\x17\n\x0f\x63onstraint_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"n\n\x14MainReportVersionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.MainReportVersion\"r\n\x0eMainReportArgs\x12\x33\n\x04\x61rgs\x18\x01 \x03(\x0b\x32%.proto_types.MainReportArgs.ArgsEntry\x1a+\n\tArgsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"h\n\x11MainReportArgsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainReportArgs\"+\n\x15MainTrackingUserState\x12\x12\n\nuser_state\x18\x01 \x01(\t\"v\n\x18MainTrackingUserStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainTrackingUserState\"5\n\x0fMergedFromState\x12\x12\n\nnum_merged\x18\x01 \x01(\x05\x12\x0e\n\x06sample\x18\x02 \x03(\t\"j\n\x12MergedFromStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.MergedFromState\"A\n\x14MissingProfileTarget\x12\x14\n\x0cprofile_name\x18\x01 \x01(\t\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\"t\n\x17MissingProfileTargetMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"n\n\x14InvalidOptionYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.InvalidOptionYAML\"!\n\x12LogDbtProjectError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x15LogDbtProjectErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProjectError\"3\n\x12LogDbtProfileError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08profiles\x18\x02 \x03(\t\"p\n\x15LogDbtProfileErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProfileError\"!\n\x12StarterProjectPath\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"p\n\x15StarterProjectPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StarterProjectPath\"$\n\x15\x43onfigFolderDirectory\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"v\n\x18\x43onfigFolderDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConfigFolderDirectory\"\'\n\x14NoSampleProfileFound\x12\x0f\n\x07\x61\x64\x61pter\x18\x01 \x01(\t\"t\n\x17NoSampleProfileFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NoSampleProfileFound\"6\n\x18ProfileWrittenWithSample\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"|\n\x1bProfileWrittenWithSampleMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProfileWrittenWithSample\"B\n$ProfileWrittenWithTargetTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x94\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.ProfileWrittenWithTargetTemplateYAML\"C\n%ProfileWrittenWithProjectTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x96\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"l\n\x13SettingUpProfileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"\x80\x01\n\x1dInvalidProfileTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"|\n\x1bProjectNameAlreadyExistsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProjectNameAlreadyExists\"K\n\x0eProjectCreated\x12\x14\n\x0cproject_name\x18\x01 \x01(\t\x12\x10\n\x08\x64ocs_url\x18\x02 \x01(\t\x12\x11\n\tslack_url\x18\x03 \x01(\t\"h\n\x11ProjectCreatedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ProjectCreated\"@\n\x1aPackageRedirectDeprecation\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1dPackageRedirectDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x86\x01\n PackageInstallPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.PackageInstallPathDeprecation\"H\n\x1b\x43onfigSourcePathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"\x82\x01\n\x1e\x43onfigSourcePathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigSourcePathDeprecation\"F\n\x19\x43onfigDataPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"~\n\x1c\x43onfigDataPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"z\n\x1aMetricAttributesRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.MetricAttributesRenamed\"+\n\x17\x45xposureNameDeprecation\x12\x10\n\x08\x65xposure\x18\x01 \x01(\t\"z\n\x1a\x45xposureNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.ExposureNameDeprecation\"^\n\x13InternalDeprecation\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x18\n\x10suggested_action\x18\x03 \x01(\t\x12\x0f\n\x07version\x18\x04 \x01(\t\"r\n\x16InternalDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.InternalDeprecation\"@\n\x1a\x45nvironmentVariableRenamed\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1d\x45nvironmentVariableRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.EnvironmentVariableRenamed\"3\n\x18\x43onfigLogPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"|\n\x1b\x43onfigLogPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ConfigLogPathDeprecation\"6\n\x1b\x43onfigTargetPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"\x82\x01\n\x1e\x43onfigTargetPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"C\n\x16TestsConfigDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"x\n\x19TestsConfigDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.TestsConfigDeprecation\"\x1e\n\x1cProjectFlagsMovedDeprecation\"\x84\x01\n\x1fProjectFlagsMovedDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.ProjectFlagsMovedDeprecation\"X\n\x1cSpacesInModelNameDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\r\n\x05level\x18\x03 \x01(\t\"\x84\x01\n\x1fSpacesInModelNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.SpacesInModelNameDeprecation\"k\n$TotalModelNamesWithSpacesDeprecation\x12\x1b\n\x13\x63ount_invalid_names\x18\x01 \x01(\x05\x12\x17\n\x0fshow_debug_hint\x18\x02 \x01(\x08\x12\r\n\x05level\x18\x03 \x01(\t\"_\n)PackageMaterializationOverrideDeprecation\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x1c\n\x14materialization_name\x18\x02 \x01(\t\"\x9e\x01\n,PackageMaterializationOverrideDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x44\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x36.proto_types.PackageMaterializationOverrideDeprecation\"\x94\x01\n\'TotalModelNamesWithSpacesDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.TotalModelNamesWithSpacesDeprecation\"V\n\x0f\x44\x65precatedModel\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\x18\n\x10\x64\x65precation_date\x18\x03 \x01(\t\"j\n\x12\x44\x65precatedModelMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DeprecatedModel\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"p\n\x15InputFileDiffErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InputFileDiffError\"?\n\x14InvalidValueForField\x12\x12\n\nfield_name\x18\x01 \x01(\t\x12\x13\n\x0b\x66ield_value\x18\x02 \x01(\t\"t\n\x17InvalidValueForFieldMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.InvalidValueForField\"Q\n\x11ValidationWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x12\n\nfield_name\x18\x02 \x01(\t\x12\x11\n\tnode_name\x18\x03 \x01(\t\"n\n\x14ValidationWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"n\n\x14ParsePerfInfoPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ParsePerfInfoPath\"1\n!PartialParsingErrorProcessingFile\x12\x0c\n\x04\x66ile\x18\x01 \x01(\t\"\x8e\x01\n$PartialParsingErrorProcessingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.PartialParsingErrorProcessingFile\"\x86\x01\n\x13PartialParsingError\x12?\n\x08\x65xc_info\x18\x01 \x03(\x0b\x32-.proto_types.PartialParsingError.ExcInfoEntry\x1a.\n\x0c\x45xcInfoEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"r\n\x16PartialParsingErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"~\n\x1cPartialParsingSkipParsingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"t\n\x17UnableToPartialParseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.UnableToPartialParse\"f\n\x12StateCheckVarsHash\x12\x10\n\x08\x63hecksum\x18\x01 \x01(\t\x12\x0c\n\x04vars\x18\x02 \x01(\t\x12\x0f\n\x07profile\x18\x03 \x01(\t\x12\x0e\n\x06target\x18\x04 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\"p\n\x15StateCheckVarsHashMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"|\n\x1bPartialParsingNotEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.PartialParsingNotEnabled\"C\n\x14ParsedFileLoadFailed\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"t\n\x17ParsedFileLoadFailedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParsedFileLoadFailed\"H\n\x15PartialParsingEnabled\x12\x0f\n\x07\x64\x65leted\x18\x01 \x01(\x05\x12\r\n\x05\x61\x64\x64\x65\x64\x18\x02 \x01(\x05\x12\x0f\n\x07\x63hanged\x18\x03 \x01(\x05\"v\n\x18PartialParsingEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.PartialParsingEnabled\"8\n\x12PartialParsingFile\x12\x0f\n\x07\x66ile_id\x18\x01 \x01(\t\x12\x11\n\toperation\x18\x02 \x01(\t\"p\n\x15PartialParsingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.PartialParsingFile\"\xaf\x01\n\x1fInvalidDisabledTargetInTestNode\x12\x1b\n\x13resource_type_title\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1a\n\x12original_file_path\x18\x03 \x01(\t\x12\x13\n\x0btarget_kind\x18\x04 \x01(\t\x12\x13\n\x0btarget_name\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\"\x8a\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.InvalidDisabledTargetInTestNode\"7\n\x18UnusedResourceConfigPath\x12\x1b\n\x13unused_config_paths\x18\x01 \x03(\t\"|\n\x1bUnusedResourceConfigPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.UnusedResourceConfigPath\"3\n\rSeedIncreased\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"f\n\x10SeedIncreasedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.SeedIncreased\">\n\x18SeedExceedsLimitSamePath\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"|\n\x1bSeedExceedsLimitSamePathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.SeedExceedsLimitSamePath\"D\n\x1eSeedExceedsLimitAndPathChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\x88\x01\n!SeedExceedsLimitAndPathChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.SeedExceedsLimitAndPathChanged\"\\\n\x1fSeedExceedsLimitChecksumChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x15\n\rchecksum_name\x18\x03 \x01(\t\"\x8a\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"d\n\x0fUnusedTablesMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.UnusedTables\"\x87\x01\n\x17WrongResourceSchemaFile\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x1c\n\x14plural_resource_type\x18\x03 \x01(\t\x12\x10\n\x08yaml_key\x18\x04 \x01(\t\x12\x11\n\tfile_path\x18\x05 \x01(\t\"z\n\x1aWrongResourceSchemaFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.WrongResourceSchemaFile\"K\n\x10NoNodeForYamlKey\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x10\n\x08yaml_key\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\"l\n\x13NoNodeForYamlKeyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.NoNodeForYamlKey\"+\n\x15MacroNotFoundForPatch\x12\x12\n\npatch_name\x18\x01 \x01(\t\"v\n\x18MacroNotFoundForPatchMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MacroNotFoundForPatch\"\xb8\x01\n\x16NodeNotFoundOrDisabled\x12\x1a\n\x12original_file_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1b\n\x13resource_type_title\x18\x03 \x01(\t\x12\x13\n\x0btarget_name\x18\x04 \x01(\t\x12\x13\n\x0btarget_kind\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\x12\x10\n\x08\x64isabled\x18\x07 \x01(\t\"x\n\x19NodeNotFoundOrDisabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.NodeNotFoundOrDisabled\"H\n\x0fJinjaLogWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"j\n\x12JinjaLogWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.JinjaLogWarning\"E\n\x0cJinjaLogInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"d\n\x0fJinjaLogInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.JinjaLogInfo\"F\n\rJinjaLogDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"f\n\x10JinjaLogDebugMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.JinjaLogDebug\"\xae\x01\n\x1eUnpinnedRefNewVersionAvailable\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rref_node_name\x18\x02 \x01(\t\x12\x18\n\x10ref_node_package\x18\x03 \x01(\t\x12\x18\n\x10ref_node_version\x18\x04 \x01(\t\x12\x17\n\x0fref_max_version\x18\x05 \x01(\t\"\x88\x01\n!UnpinnedRefNewVersionAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"\xc6\x01\n\x1cUpcomingReferenceDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"\x84\x01\n\x1fUpcomingReferenceDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.UpcomingReferenceDeprecation\"\xbd\x01\n\x13\x44\x65precatedReference\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"r\n\x16\x44\x65precatedReferenceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DeprecatedReference\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x94\x01\n\'UnsupportedConstraintMaterializationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"M\n\x14ParseInlineNodeError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"t\n\x17ParseInlineNodeErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParseInlineNodeError\"(\n\x19SemanticValidationFailure\x12\x0b\n\x03msg\x18\x02 \x01(\t\"~\n\x1cSemanticValidationFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.SemanticValidationFailure\"\x8a\x03\n\x19UnversionedBreakingChange\x12\x18\n\x10\x62reaking_changes\x18\x01 \x03(\t\x12\x12\n\nmodel_name\x18\x02 \x01(\t\x12\x17\n\x0fmodel_file_path\x18\x03 \x01(\t\x12\"\n\x1a\x63ontract_enforced_disabled\x18\x04 \x01(\x08\x12\x17\n\x0f\x63olumns_removed\x18\x05 \x03(\t\x12\x34\n\x13\x63olumn_type_changes\x18\x06 \x03(\x0b\x32\x17.proto_types.ColumnType\x12I\n\"enforced_column_constraint_removed\x18\x07 \x03(\x0b\x32\x1d.proto_types.ColumnConstraint\x12G\n!enforced_model_constraint_removed\x18\x08 \x03(\x0b\x32\x1c.proto_types.ModelConstraint\x12\x1f\n\x17materialization_changed\x18\t \x03(\t\"~\n\x1cUnversionedBreakingChangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.UnversionedBreakingChange\"*\n\x14WarnStateTargetEqual\x12\x12\n\nstate_path\x18\x01 \x01(\t\"t\n\x17WarnStateTargetEqualMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.WarnStateTargetEqual\"%\n\x16\x46reshnessConfigProblem\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x19\x46reshnessConfigProblemMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessConfigProblem\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x86\x01\n GitSparseCheckoutSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"\x82\x01\n\x1eGitProgressCheckoutRevisionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.GitProgressCheckoutRevision\"4\n%GitProgressUpdatingExistingDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x96\x01\n(GitProgressUpdatingExistingDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.GitProgressUpdatingExistingDependency\".\n\x1fGitProgressPullingNewDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x8a\x01\n\"GitProgressPullingNewDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"h\n\x11GitNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.GitNothingToDo\"E\n\x1fGitProgressUpdatedCheckoutRange\x12\x11\n\tstart_sha\x18\x01 \x01(\t\x12\x0f\n\x07\x65nd_sha\x18\x02 \x01(\t\"\x8a\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressUpdatedCheckoutRange\"*\n\x17GitProgressCheckedOutAt\x12\x0f\n\x07\x65nd_sha\x18\x01 \x01(\t\"z\n\x1aGitProgressCheckedOutAtMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x80\x01\n\x1dRegistryProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.RegistryProgressGETRequest\"=\n\x1bRegistryProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x82\x01\n\x1eRegistryProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RegistryProgressGETResponse\"_\n\x1dSelectorReportInvalidSelector\x12\x17\n\x0fvalid_selectors\x18\x01 \x01(\t\x12\x13\n\x0bspec_method\x18\x02 \x01(\t\x12\x10\n\x08raw_spec\x18\x03 \x01(\t\"\x86\x01\n SelectorReportInvalidSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"r\n\x16\x44\x65psNoPackagesFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsNoPackagesFound\"/\n\x17\x44\x65psStartPackageInstall\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psStartPackageInstallMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsStartPackageInstall\"\'\n\x0f\x44\x65psInstallInfo\x12\x14\n\x0cversion_name\x18\x01 \x01(\t\"j\n\x12\x44\x65psInstallInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DepsInstallInfo\"-\n\x13\x44\x65psUpdateAvailable\x12\x16\n\x0eversion_latest\x18\x01 \x01(\t\"r\n\x16\x44\x65psUpdateAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"d\n\x0f\x44\x65psUpToDateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUpToDate\",\n\x14\x44\x65psListSubdirectory\x12\x14\n\x0csubdirectory\x18\x01 \x01(\t\"t\n\x17\x44\x65psListSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.DepsListSubdirectory\".\n\x1a\x44\x65psNotifyUpdatesAvailable\x12\x10\n\x08packages\x18\x01 \x03(\t\"\x80\x01\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryIndexProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryIndexProgressGETRequest\"B\n RegistryIndexProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x8c\x01\n#RegistryIndexProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseUnexpectedTypeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseUnexpectedType\"2\n\x1eRegistryResponseMissingTopKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseMissingTopKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseMissingTopKeys\"5\n!RegistryResponseMissingNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8e\x01\n$RegistryResponseMissingNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryResponseExtraNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryResponseExtraNestedKeys\"(\n\x18\x44\x65psSetDownloadDirectory\x12\x0c\n\x04path\x18\x01 \x01(\t\"|\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsSetDownloadDirectory\"-\n\x0c\x44\x65psUnpinned\x12\x10\n\x08revision\x18\x01 \x01(\t\x12\x0b\n\x03git\x18\x02 \x01(\t\"d\n\x0f\x44\x65psUnpinnedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUnpinned\"/\n\x1bNoNodesForSelectionCriteria\x12\x10\n\x08spec_raw\x18\x01 \x01(\t\"\x82\x01\n\x1eNoNodesForSelectionCriteriaMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\")\n\x10\x44\x65psLockUpdating\x12\x15\n\rlock_filepath\x18\x01 \x01(\t\"l\n\x13\x44\x65psLockUpdatingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.DepsLockUpdating\"R\n\x0e\x44\x65psAddPackage\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\x19\n\x11packages_filepath\x18\x03 \x01(\t\"h\n\x11\x44\x65psAddPackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DepsAddPackage\"\xa7\x01\n\x19\x44\x65psFoundDuplicatePackage\x12S\n\x0fremoved_package\x18\x01 \x03(\x0b\x32:.proto_types.DepsFoundDuplicatePackage.RemovedPackageEntry\x1a\x35\n\x13RemovedPackageEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"~\n\x1c\x44\x65psFoundDuplicatePackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.DepsFoundDuplicatePackage\"$\n\x12\x44\x65psVersionMissing\x12\x0e\n\x06source\x18\x01 \x01(\t\"p\n\x15\x44\x65psVersionMissingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.DepsVersionMissing\"/\n\x17\x44\x65psScrubbedPackageName\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psScrubbedPackageNameMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsScrubbedPackageName\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x82\x01\n\x1eRunningOperationCaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"j\n\x12\x43ompileCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"x\n\x19\x46reshnessCheckCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessCheckComplete\"\x1c\n\nSeedHeader\x12\x0e\n\x06header\x18\x01 \x01(\t\"`\n\rSeedHeaderMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"]\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15SQLRunnerExceptionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SQLRunnerException\"\xa8\x01\n\rLogTestResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\x12\n\nnum_models\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"f\n\x10LogTestResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogTestResult\"k\n\x0cLogStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"d\n\x0fLogStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.LogStartLine\"\x95\x01\n\x0eLogModelResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogModelResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\x92\x02\n\x11LogSnapshotResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x34\n\x03\x63\x66g\x18\x07 \x03(\x0b\x32\'.proto_types.LogSnapshotResult.CfgEntry\x12\x16\n\x0eresult_message\x18\x08 \x01(\t\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"n\n\x14LogSnapshotResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogSnapshotResult\"\xb9\x01\n\rLogSeedResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x16\n\x0eresult_message\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x0e\n\x06schema\x18\x07 \x01(\t\x12\x10\n\x08relation\x18\x08 \x01(\t\"f\n\x10LogSeedResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogSeedResult\"\xad\x01\n\x12LogFreshnessResult\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x13\n\x0bsource_name\x18\x06 \x01(\t\x12\x12\n\ntable_name\x18\x07 \x01(\t\"p\n\x15LogFreshnessResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\x98\x01\n\x11LogNodeNoOpResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"n\n\x14LogNodeNoOpResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogNodeNoOpResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"f\n\x10LogCancelLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogCancelLine\"\x1f\n\x0f\x44\x65\x66\x61ultSelector\x12\x0c\n\x04name\x18\x01 \x01(\t\"j\n\x12\x44\x65\x66\x61ultSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DefaultSelector\"5\n\tNodeStart\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"^\n\x0cNodeStartMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.NodeStart\"g\n\x0cNodeFinished\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12-\n\nrun_result\x18\x02 \x01(\x0b\x32\x19.proto_types.RunResultMsg\"d\n\x0fNodeFinishedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"\x82\x01\n\x1eQueryCancelationUnsupportedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.QueryCancelationUnsupported\"O\n\x0f\x43oncurrencyLine\x12\x13\n\x0bnum_threads\x18\x01 \x01(\x05\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\x12\x12\n\nnode_count\x18\x03 \x01(\x05\"j\n\x12\x43oncurrencyLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ConcurrencyLine\"E\n\x19WritingInjectedSQLForNode\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"~\n\x1cWritingInjectedSQLForNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.WritingInjectedSQLForNode\"9\n\rNodeCompiling\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeCompilingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeCompiling\"9\n\rNodeExecuting\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeExecutingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeExecuting\"m\n\x10LogHookStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"l\n\x13LogHookStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.LogHookStartLine\"\x93\x01\n\x0eLogHookEndLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogHookEndLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogHookEndLine\"\x93\x01\n\x0fSkippingDetails\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x11\n\tnode_name\x18\x04 \x01(\t\x12\r\n\x05index\x18\x05 \x01(\x05\x12\r\n\x05total\x18\x06 \x01(\x05\"j\n\x12SkippingDetailsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"b\n\x0eNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.NothingToDo\",\n\x1dRunningOperationUncaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x86\x01\n RunningOperationUncaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.RunningOperationUncaughtError\"\x93\x01\n\x0c\x45ndRunResult\x12*\n\x07results\x18\x01 \x03(\x0b\x32\x19.proto_types.RunResultMsg\x12\x14\n\x0c\x65lapsed_time\x18\x02 \x01(\x02\x12\x30\n\x0cgenerated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07success\x18\x04 \x01(\x08\"d\n\x0f\x45ndRunResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"j\n\x12NoNodesSelectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.NoNodesSelected\"w\n\x10\x43ommandCompleted\x12\x0f\n\x07\x63ommand\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x65lapsed\x18\x04 \x01(\x02\"l\n\x13\x43ommandCompletedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.CommandCompleted\"k\n\x08ShowNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0f\n\x07preview\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"\\\n\x0bShowNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.ShowNode\"p\n\x0c\x43ompiledNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x10\n\x08\x63ompiled\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"d\n\x0f\x43ompiledNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.CompiledNode\"b\n\x17\x43\x61tchableExceptionOnRun\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"z\n\x1a\x43\x61tchableExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"_\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15InternalErrorOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"u\n\x15GenericExceptionOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"v\n\x18GenericExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.GenericExceptionOnRun\"N\n\x1aNodeConnectionReleaseError\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"\x80\x01\n\x1dNodeConnectionReleaseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.NodeConnectionReleaseError\"\x1f\n\nFoundStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\"`\n\rFoundStatsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"v\n\x18MainKeyboardInterruptMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainKeyboardInterrupt\"#\n\x14MainEncounteredError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x17MainEncounteredErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"h\n\x11MainStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"p\n\x13TimingInfoCollected\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12/\n\x0btiming_info\x18\x02 \x01(\x0b\x32\x1a.proto_types.TimingInfoMsg\"r\n\x16TimingInfoCollectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.TimingInfoCollected\"&\n\x12LogDebugStackTrace\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"p\n\x15LogDebugStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDebugStackTrace\"\x1e\n\x0e\x43heckCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"h\n\x11\x43heckCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CheckCleanPath\" \n\x10\x43onfirmCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x13\x43onfirmCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x15ProtectedCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"p\n\x15\x46inishedCleanPathsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FinishedCleanPaths\"5\n\x0bOpenCommand\x12\x10\n\x08open_cmd\x18\x01 \x01(\t\x12\x14\n\x0cprofiles_dir\x18\x02 \x01(\t\"b\n\x0eOpenCommandMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"j\n\x12ServingDocsPortMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"v\n\x18ServingDocsAccessInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"r\n\x16ServingDocsExitInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"t\n\x10RunResultWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"t\n\x10RunResultFailure\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultFailure\"k\n\tStatsLine\x12\x30\n\x05stats\x18\x01 \x03(\x0b\x32!.proto_types.StatsLine.StatsEntry\x1a,\n\nStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"^\n\x0cStatsLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"G\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"h\n\x11RunResultErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\"S\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultErrorNoMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"I\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"j\n\x12SQLCompiledPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"W\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"t\n\x17\x43heckNodeTestFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"W\n\x0f\x45ndOfRunSummary\x12\x12\n\nnum_errors\x18\x01 \x01(\x05\x12\x14\n\x0cnum_warnings\x18\x02 \x01(\x05\x12\x1a\n\x12keyboard_interrupt\x18\x03 \x01(\x08\"j\n\x12\x45ndOfRunSummaryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.EndOfRunSummary\"U\n\x13LogSkipBecauseError\x12\x0e\n\x06schema\x18\x01 \x01(\t\x12\x10\n\x08relation\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"r\n\x16LogSkipBecauseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"p\n\x15\x45nsureGitInstalledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"|\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"z\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"j\n\x12\x44isableTrackingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DisableTracking\"\x1e\n\x0cSendingEvent\x12\x0e\n\x06kwargs\x18\x01 \x01(\t\"d\n\x0fSendingEventMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"l\n\x13SendEventFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"b\n\x0e\x46lushEventsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"p\n\x15\x46lushEventsFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FlushEventsFailure\"-\n\x19TrackingInitializeFailure\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"~\n\x1cTrackingInitializeFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"P\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultWarningMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultWarningMessage\"\x1a\n\x0b\x44\x65\x62ugCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"b\n\x0e\x44\x65\x62ugCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.DebugCmdOut\"\x1d\n\x0e\x44\x65\x62ugCmdResult\x12\x0b\n\x03msg\x18\x01 \x01(\t\"h\n\x11\x44\x65\x62ugCmdResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DebugCmdResult\"\x19\n\nListCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"`\n\rListCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\xec\x01\n\x0eResourceReport\x12\x14\n\x0c\x63ommand_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63ommand_success\x18\x03 \x01(\x08\x12\x1f\n\x17\x63ommand_wall_clock_time\x18\x04 \x01(\x02\x12\x19\n\x11process_user_time\x18\x05 \x01(\x02\x12\x1b\n\x13process_kernel_time\x18\x06 \x01(\x02\x12\x1b\n\x13process_mem_max_rss\x18\x07 \x01(\x03\x12\x19\n\x11process_in_blocks\x18\x08 \x01(\x03\x12\x1a\n\x12process_out_blocks\x18\t \x01(\x03\"h\n\x11ResourceReportMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ResourceReportb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x63ore_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x99\x02\n\rCoreEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x05\x65xtra\x18\t \x03(\x0b\x32%.proto_types.CoreEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"V\n\x0cNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x91\x02\n\x08NodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x30\n\rnode_relation\x18\n \x01(\x0b\x32\x19.proto_types.NodeRelation\"\x7f\n\rTimingInfoMsg\x12\x0c\n\x04name\x18\x01 \x01(\t\x12.\n\nstarted_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xd1\x01\n\x0cRunResultMsg\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12/\n\x0btiming_info\x18\x03 \x03(\x0b\x32\x1a.proto_types.TimingInfoMsg\x12\x0e\n\x06thread\x18\x04 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x31\n\x10\x61\x64\x61pter_response\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"\\\n\nColumnType\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x1c\n\x14previous_column_type\x18\x02 \x01(\t\x12\x1b\n\x13\x63urrent_column_type\x18\x03 \x01(\t\"Y\n\x10\x43olumnConstraint\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x03 \x01(\t\"T\n\x0fModelConstraint\x12\x17\n\x0f\x63onstraint_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"n\n\x14MainReportVersionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.MainReportVersion\"r\n\x0eMainReportArgs\x12\x33\n\x04\x61rgs\x18\x01 \x03(\x0b\x32%.proto_types.MainReportArgs.ArgsEntry\x1a+\n\tArgsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"h\n\x11MainReportArgsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainReportArgs\"+\n\x15MainTrackingUserState\x12\x12\n\nuser_state\x18\x01 \x01(\t\"v\n\x18MainTrackingUserStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainTrackingUserState\"5\n\x0fMergedFromState\x12\x12\n\nnum_merged\x18\x01 \x01(\x05\x12\x0e\n\x06sample\x18\x02 \x03(\t\"j\n\x12MergedFromStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.MergedFromState\"A\n\x14MissingProfileTarget\x12\x14\n\x0cprofile_name\x18\x01 \x01(\t\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\"t\n\x17MissingProfileTargetMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"n\n\x14InvalidOptionYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.InvalidOptionYAML\"!\n\x12LogDbtProjectError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x15LogDbtProjectErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProjectError\"3\n\x12LogDbtProfileError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08profiles\x18\x02 \x03(\t\"p\n\x15LogDbtProfileErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProfileError\"!\n\x12StarterProjectPath\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"p\n\x15StarterProjectPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StarterProjectPath\"$\n\x15\x43onfigFolderDirectory\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"v\n\x18\x43onfigFolderDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConfigFolderDirectory\"\'\n\x14NoSampleProfileFound\x12\x0f\n\x07\x61\x64\x61pter\x18\x01 \x01(\t\"t\n\x17NoSampleProfileFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NoSampleProfileFound\"6\n\x18ProfileWrittenWithSample\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"|\n\x1bProfileWrittenWithSampleMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProfileWrittenWithSample\"B\n$ProfileWrittenWithTargetTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x94\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.ProfileWrittenWithTargetTemplateYAML\"C\n%ProfileWrittenWithProjectTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x96\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"l\n\x13SettingUpProfileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"\x80\x01\n\x1dInvalidProfileTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"|\n\x1bProjectNameAlreadyExistsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProjectNameAlreadyExists\"K\n\x0eProjectCreated\x12\x14\n\x0cproject_name\x18\x01 \x01(\t\x12\x10\n\x08\x64ocs_url\x18\x02 \x01(\t\x12\x11\n\tslack_url\x18\x03 \x01(\t\"h\n\x11ProjectCreatedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ProjectCreated\"@\n\x1aPackageRedirectDeprecation\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1dPackageRedirectDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x86\x01\n PackageInstallPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.PackageInstallPathDeprecation\"H\n\x1b\x43onfigSourcePathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"\x82\x01\n\x1e\x43onfigSourcePathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigSourcePathDeprecation\"F\n\x19\x43onfigDataPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"~\n\x1c\x43onfigDataPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"z\n\x1aMetricAttributesRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.MetricAttributesRenamed\"+\n\x17\x45xposureNameDeprecation\x12\x10\n\x08\x65xposure\x18\x01 \x01(\t\"z\n\x1a\x45xposureNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.ExposureNameDeprecation\"^\n\x13InternalDeprecation\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x18\n\x10suggested_action\x18\x03 \x01(\t\x12\x0f\n\x07version\x18\x04 \x01(\t\"r\n\x16InternalDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.InternalDeprecation\"@\n\x1a\x45nvironmentVariableRenamed\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1d\x45nvironmentVariableRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.EnvironmentVariableRenamed\"3\n\x18\x43onfigLogPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"|\n\x1b\x43onfigLogPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ConfigLogPathDeprecation\"6\n\x1b\x43onfigTargetPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"\x82\x01\n\x1e\x43onfigTargetPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"C\n\x16TestsConfigDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"x\n\x19TestsConfigDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.TestsConfigDeprecation\"\x1e\n\x1cProjectFlagsMovedDeprecation\"\x84\x01\n\x1fProjectFlagsMovedDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.ProjectFlagsMovedDeprecation\"C\n\x1fSpacesInResourceNameDeprecation\x12\x11\n\tunique_id\x18\x01 \x01(\t\x12\r\n\x05level\x18\x02 \x01(\t\"\x8a\x01\n\"SpacesInResourceNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SpacesInResourceNameDeprecation\"i\n\"ResourceNamesWithSpacesDeprecation\x12\x1b\n\x13\x63ount_invalid_names\x18\x01 \x01(\x05\x12\x17\n\x0fshow_debug_hint\x18\x02 \x01(\x08\x12\r\n\x05level\x18\x03 \x01(\t\"\x90\x01\n%ResourceNamesWithSpacesDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12=\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32/.proto_types.ResourceNamesWithSpacesDeprecation\"_\n)PackageMaterializationOverrideDeprecation\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x1c\n\x14materialization_name\x18\x02 \x01(\t\"\x9e\x01\n,PackageMaterializationOverrideDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x44\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x36.proto_types.PackageMaterializationOverrideDeprecation\"V\n\x0f\x44\x65precatedModel\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\x18\n\x10\x64\x65precation_date\x18\x03 \x01(\t\"j\n\x12\x44\x65precatedModelMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DeprecatedModel\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"p\n\x15InputFileDiffErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InputFileDiffError\"?\n\x14InvalidValueForField\x12\x12\n\nfield_name\x18\x01 \x01(\t\x12\x13\n\x0b\x66ield_value\x18\x02 \x01(\t\"t\n\x17InvalidValueForFieldMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.InvalidValueForField\"Q\n\x11ValidationWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x12\n\nfield_name\x18\x02 \x01(\t\x12\x11\n\tnode_name\x18\x03 \x01(\t\"n\n\x14ValidationWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"n\n\x14ParsePerfInfoPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ParsePerfInfoPath\"1\n!PartialParsingErrorProcessingFile\x12\x0c\n\x04\x66ile\x18\x01 \x01(\t\"\x8e\x01\n$PartialParsingErrorProcessingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.PartialParsingErrorProcessingFile\"\x86\x01\n\x13PartialParsingError\x12?\n\x08\x65xc_info\x18\x01 \x03(\x0b\x32-.proto_types.PartialParsingError.ExcInfoEntry\x1a.\n\x0c\x45xcInfoEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"r\n\x16PartialParsingErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"~\n\x1cPartialParsingSkipParsingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"t\n\x17UnableToPartialParseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.UnableToPartialParse\"f\n\x12StateCheckVarsHash\x12\x10\n\x08\x63hecksum\x18\x01 \x01(\t\x12\x0c\n\x04vars\x18\x02 \x01(\t\x12\x0f\n\x07profile\x18\x03 \x01(\t\x12\x0e\n\x06target\x18\x04 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\"p\n\x15StateCheckVarsHashMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"|\n\x1bPartialParsingNotEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.PartialParsingNotEnabled\"C\n\x14ParsedFileLoadFailed\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"t\n\x17ParsedFileLoadFailedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParsedFileLoadFailed\"H\n\x15PartialParsingEnabled\x12\x0f\n\x07\x64\x65leted\x18\x01 \x01(\x05\x12\r\n\x05\x61\x64\x64\x65\x64\x18\x02 \x01(\x05\x12\x0f\n\x07\x63hanged\x18\x03 \x01(\x05\"v\n\x18PartialParsingEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.PartialParsingEnabled\"8\n\x12PartialParsingFile\x12\x0f\n\x07\x66ile_id\x18\x01 \x01(\t\x12\x11\n\toperation\x18\x02 \x01(\t\"p\n\x15PartialParsingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.PartialParsingFile\"\xaf\x01\n\x1fInvalidDisabledTargetInTestNode\x12\x1b\n\x13resource_type_title\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1a\n\x12original_file_path\x18\x03 \x01(\t\x12\x13\n\x0btarget_kind\x18\x04 \x01(\t\x12\x13\n\x0btarget_name\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\"\x8a\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.InvalidDisabledTargetInTestNode\"7\n\x18UnusedResourceConfigPath\x12\x1b\n\x13unused_config_paths\x18\x01 \x03(\t\"|\n\x1bUnusedResourceConfigPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.UnusedResourceConfigPath\"3\n\rSeedIncreased\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"f\n\x10SeedIncreasedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.SeedIncreased\">\n\x18SeedExceedsLimitSamePath\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"|\n\x1bSeedExceedsLimitSamePathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.SeedExceedsLimitSamePath\"D\n\x1eSeedExceedsLimitAndPathChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\x88\x01\n!SeedExceedsLimitAndPathChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.SeedExceedsLimitAndPathChanged\"\\\n\x1fSeedExceedsLimitChecksumChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x15\n\rchecksum_name\x18\x03 \x01(\t\"\x8a\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"d\n\x0fUnusedTablesMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.UnusedTables\"\x87\x01\n\x17WrongResourceSchemaFile\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x1c\n\x14plural_resource_type\x18\x03 \x01(\t\x12\x10\n\x08yaml_key\x18\x04 \x01(\t\x12\x11\n\tfile_path\x18\x05 \x01(\t\"z\n\x1aWrongResourceSchemaFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.WrongResourceSchemaFile\"K\n\x10NoNodeForYamlKey\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x10\n\x08yaml_key\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\"l\n\x13NoNodeForYamlKeyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.NoNodeForYamlKey\"+\n\x15MacroNotFoundForPatch\x12\x12\n\npatch_name\x18\x01 \x01(\t\"v\n\x18MacroNotFoundForPatchMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MacroNotFoundForPatch\"\xb8\x01\n\x16NodeNotFoundOrDisabled\x12\x1a\n\x12original_file_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1b\n\x13resource_type_title\x18\x03 \x01(\t\x12\x13\n\x0btarget_name\x18\x04 \x01(\t\x12\x13\n\x0btarget_kind\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\x12\x10\n\x08\x64isabled\x18\x07 \x01(\t\"x\n\x19NodeNotFoundOrDisabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.NodeNotFoundOrDisabled\"H\n\x0fJinjaLogWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"j\n\x12JinjaLogWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.JinjaLogWarning\"E\n\x0cJinjaLogInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"d\n\x0fJinjaLogInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.JinjaLogInfo\"F\n\rJinjaLogDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"f\n\x10JinjaLogDebugMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.JinjaLogDebug\"\xae\x01\n\x1eUnpinnedRefNewVersionAvailable\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rref_node_name\x18\x02 \x01(\t\x12\x18\n\x10ref_node_package\x18\x03 \x01(\t\x12\x18\n\x10ref_node_version\x18\x04 \x01(\t\x12\x17\n\x0fref_max_version\x18\x05 \x01(\t\"\x88\x01\n!UnpinnedRefNewVersionAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"\xc6\x01\n\x1cUpcomingReferenceDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"\x84\x01\n\x1fUpcomingReferenceDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.UpcomingReferenceDeprecation\"\xbd\x01\n\x13\x44\x65precatedReference\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"r\n\x16\x44\x65precatedReferenceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DeprecatedReference\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x94\x01\n\'UnsupportedConstraintMaterializationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"M\n\x14ParseInlineNodeError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"t\n\x17ParseInlineNodeErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParseInlineNodeError\"(\n\x19SemanticValidationFailure\x12\x0b\n\x03msg\x18\x02 \x01(\t\"~\n\x1cSemanticValidationFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.SemanticValidationFailure\"\x8a\x03\n\x19UnversionedBreakingChange\x12\x18\n\x10\x62reaking_changes\x18\x01 \x03(\t\x12\x12\n\nmodel_name\x18\x02 \x01(\t\x12\x17\n\x0fmodel_file_path\x18\x03 \x01(\t\x12\"\n\x1a\x63ontract_enforced_disabled\x18\x04 \x01(\x08\x12\x17\n\x0f\x63olumns_removed\x18\x05 \x03(\t\x12\x34\n\x13\x63olumn_type_changes\x18\x06 \x03(\x0b\x32\x17.proto_types.ColumnType\x12I\n\"enforced_column_constraint_removed\x18\x07 \x03(\x0b\x32\x1d.proto_types.ColumnConstraint\x12G\n!enforced_model_constraint_removed\x18\x08 \x03(\x0b\x32\x1c.proto_types.ModelConstraint\x12\x1f\n\x17materialization_changed\x18\t \x03(\t\"~\n\x1cUnversionedBreakingChangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.UnversionedBreakingChange\"*\n\x14WarnStateTargetEqual\x12\x12\n\nstate_path\x18\x01 \x01(\t\"t\n\x17WarnStateTargetEqualMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.WarnStateTargetEqual\"%\n\x16\x46reshnessConfigProblem\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x19\x46reshnessConfigProblemMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessConfigProblem\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x86\x01\n GitSparseCheckoutSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"\x82\x01\n\x1eGitProgressCheckoutRevisionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.GitProgressCheckoutRevision\"4\n%GitProgressUpdatingExistingDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x96\x01\n(GitProgressUpdatingExistingDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.GitProgressUpdatingExistingDependency\".\n\x1fGitProgressPullingNewDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x8a\x01\n\"GitProgressPullingNewDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"h\n\x11GitNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.GitNothingToDo\"E\n\x1fGitProgressUpdatedCheckoutRange\x12\x11\n\tstart_sha\x18\x01 \x01(\t\x12\x0f\n\x07\x65nd_sha\x18\x02 \x01(\t\"\x8a\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressUpdatedCheckoutRange\"*\n\x17GitProgressCheckedOutAt\x12\x0f\n\x07\x65nd_sha\x18\x01 \x01(\t\"z\n\x1aGitProgressCheckedOutAtMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x80\x01\n\x1dRegistryProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.RegistryProgressGETRequest\"=\n\x1bRegistryProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x82\x01\n\x1eRegistryProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RegistryProgressGETResponse\"_\n\x1dSelectorReportInvalidSelector\x12\x17\n\x0fvalid_selectors\x18\x01 \x01(\t\x12\x13\n\x0bspec_method\x18\x02 \x01(\t\x12\x10\n\x08raw_spec\x18\x03 \x01(\t\"\x86\x01\n SelectorReportInvalidSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"r\n\x16\x44\x65psNoPackagesFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsNoPackagesFound\"/\n\x17\x44\x65psStartPackageInstall\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psStartPackageInstallMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsStartPackageInstall\"\'\n\x0f\x44\x65psInstallInfo\x12\x14\n\x0cversion_name\x18\x01 \x01(\t\"j\n\x12\x44\x65psInstallInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DepsInstallInfo\"-\n\x13\x44\x65psUpdateAvailable\x12\x16\n\x0eversion_latest\x18\x01 \x01(\t\"r\n\x16\x44\x65psUpdateAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"d\n\x0f\x44\x65psUpToDateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUpToDate\",\n\x14\x44\x65psListSubdirectory\x12\x14\n\x0csubdirectory\x18\x01 \x01(\t\"t\n\x17\x44\x65psListSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.DepsListSubdirectory\".\n\x1a\x44\x65psNotifyUpdatesAvailable\x12\x10\n\x08packages\x18\x01 \x03(\t\"\x80\x01\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryIndexProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryIndexProgressGETRequest\"B\n RegistryIndexProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x8c\x01\n#RegistryIndexProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseUnexpectedTypeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseUnexpectedType\"2\n\x1eRegistryResponseMissingTopKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseMissingTopKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseMissingTopKeys\"5\n!RegistryResponseMissingNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8e\x01\n$RegistryResponseMissingNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryResponseExtraNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryResponseExtraNestedKeys\"(\n\x18\x44\x65psSetDownloadDirectory\x12\x0c\n\x04path\x18\x01 \x01(\t\"|\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsSetDownloadDirectory\"-\n\x0c\x44\x65psUnpinned\x12\x10\n\x08revision\x18\x01 \x01(\t\x12\x0b\n\x03git\x18\x02 \x01(\t\"d\n\x0f\x44\x65psUnpinnedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUnpinned\"/\n\x1bNoNodesForSelectionCriteria\x12\x10\n\x08spec_raw\x18\x01 \x01(\t\"\x82\x01\n\x1eNoNodesForSelectionCriteriaMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\")\n\x10\x44\x65psLockUpdating\x12\x15\n\rlock_filepath\x18\x01 \x01(\t\"l\n\x13\x44\x65psLockUpdatingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.DepsLockUpdating\"R\n\x0e\x44\x65psAddPackage\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\x19\n\x11packages_filepath\x18\x03 \x01(\t\"h\n\x11\x44\x65psAddPackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DepsAddPackage\"\xa7\x01\n\x19\x44\x65psFoundDuplicatePackage\x12S\n\x0fremoved_package\x18\x01 \x03(\x0b\x32:.proto_types.DepsFoundDuplicatePackage.RemovedPackageEntry\x1a\x35\n\x13RemovedPackageEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"~\n\x1c\x44\x65psFoundDuplicatePackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.DepsFoundDuplicatePackage\"$\n\x12\x44\x65psVersionMissing\x12\x0e\n\x06source\x18\x01 \x01(\t\"p\n\x15\x44\x65psVersionMissingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.DepsVersionMissing\"/\n\x17\x44\x65psScrubbedPackageName\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psScrubbedPackageNameMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsScrubbedPackageName\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x82\x01\n\x1eRunningOperationCaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"j\n\x12\x43ompileCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"x\n\x19\x46reshnessCheckCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessCheckComplete\"\x1c\n\nSeedHeader\x12\x0e\n\x06header\x18\x01 \x01(\t\"`\n\rSeedHeaderMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"]\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15SQLRunnerExceptionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SQLRunnerException\"\xa8\x01\n\rLogTestResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\x12\n\nnum_models\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"f\n\x10LogTestResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogTestResult\"k\n\x0cLogStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"d\n\x0fLogStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.LogStartLine\"\x95\x01\n\x0eLogModelResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogModelResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\x92\x02\n\x11LogSnapshotResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x34\n\x03\x63\x66g\x18\x07 \x03(\x0b\x32\'.proto_types.LogSnapshotResult.CfgEntry\x12\x16\n\x0eresult_message\x18\x08 \x01(\t\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"n\n\x14LogSnapshotResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogSnapshotResult\"\xb9\x01\n\rLogSeedResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x16\n\x0eresult_message\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x0e\n\x06schema\x18\x07 \x01(\t\x12\x10\n\x08relation\x18\x08 \x01(\t\"f\n\x10LogSeedResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogSeedResult\"\xad\x01\n\x12LogFreshnessResult\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x13\n\x0bsource_name\x18\x06 \x01(\t\x12\x12\n\ntable_name\x18\x07 \x01(\t\"p\n\x15LogFreshnessResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\x98\x01\n\x11LogNodeNoOpResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"n\n\x14LogNodeNoOpResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogNodeNoOpResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"f\n\x10LogCancelLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogCancelLine\"\x1f\n\x0f\x44\x65\x66\x61ultSelector\x12\x0c\n\x04name\x18\x01 \x01(\t\"j\n\x12\x44\x65\x66\x61ultSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DefaultSelector\"5\n\tNodeStart\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"^\n\x0cNodeStartMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.NodeStart\"g\n\x0cNodeFinished\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12-\n\nrun_result\x18\x02 \x01(\x0b\x32\x19.proto_types.RunResultMsg\"d\n\x0fNodeFinishedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"\x82\x01\n\x1eQueryCancelationUnsupportedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.QueryCancelationUnsupported\"O\n\x0f\x43oncurrencyLine\x12\x13\n\x0bnum_threads\x18\x01 \x01(\x05\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\x12\x12\n\nnode_count\x18\x03 \x01(\x05\"j\n\x12\x43oncurrencyLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ConcurrencyLine\"E\n\x19WritingInjectedSQLForNode\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"~\n\x1cWritingInjectedSQLForNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.WritingInjectedSQLForNode\"9\n\rNodeCompiling\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeCompilingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeCompiling\"9\n\rNodeExecuting\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeExecutingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeExecuting\"m\n\x10LogHookStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"l\n\x13LogHookStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.LogHookStartLine\"\x93\x01\n\x0eLogHookEndLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogHookEndLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogHookEndLine\"\x93\x01\n\x0fSkippingDetails\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x11\n\tnode_name\x18\x04 \x01(\t\x12\r\n\x05index\x18\x05 \x01(\x05\x12\r\n\x05total\x18\x06 \x01(\x05\"j\n\x12SkippingDetailsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"b\n\x0eNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.NothingToDo\",\n\x1dRunningOperationUncaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x86\x01\n RunningOperationUncaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.RunningOperationUncaughtError\"\x93\x01\n\x0c\x45ndRunResult\x12*\n\x07results\x18\x01 \x03(\x0b\x32\x19.proto_types.RunResultMsg\x12\x14\n\x0c\x65lapsed_time\x18\x02 \x01(\x02\x12\x30\n\x0cgenerated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07success\x18\x04 \x01(\x08\"d\n\x0f\x45ndRunResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"j\n\x12NoNodesSelectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.NoNodesSelected\"w\n\x10\x43ommandCompleted\x12\x0f\n\x07\x63ommand\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x65lapsed\x18\x04 \x01(\x02\"l\n\x13\x43ommandCompletedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.CommandCompleted\"k\n\x08ShowNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0f\n\x07preview\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"\\\n\x0bShowNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.ShowNode\"p\n\x0c\x43ompiledNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x10\n\x08\x63ompiled\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"d\n\x0f\x43ompiledNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.CompiledNode\"b\n\x17\x43\x61tchableExceptionOnRun\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"z\n\x1a\x43\x61tchableExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"_\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15InternalErrorOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"u\n\x15GenericExceptionOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"v\n\x18GenericExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.GenericExceptionOnRun\"N\n\x1aNodeConnectionReleaseError\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"\x80\x01\n\x1dNodeConnectionReleaseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.NodeConnectionReleaseError\"\x1f\n\nFoundStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\"`\n\rFoundStatsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"v\n\x18MainKeyboardInterruptMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainKeyboardInterrupt\"#\n\x14MainEncounteredError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x17MainEncounteredErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"h\n\x11MainStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"p\n\x13TimingInfoCollected\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12/\n\x0btiming_info\x18\x02 \x01(\x0b\x32\x1a.proto_types.TimingInfoMsg\"r\n\x16TimingInfoCollectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.TimingInfoCollected\"&\n\x12LogDebugStackTrace\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"p\n\x15LogDebugStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDebugStackTrace\"\x1e\n\x0e\x43heckCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"h\n\x11\x43heckCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CheckCleanPath\" \n\x10\x43onfirmCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x13\x43onfirmCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x15ProtectedCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"p\n\x15\x46inishedCleanPathsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FinishedCleanPaths\"5\n\x0bOpenCommand\x12\x10\n\x08open_cmd\x18\x01 \x01(\t\x12\x14\n\x0cprofiles_dir\x18\x02 \x01(\t\"b\n\x0eOpenCommandMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"j\n\x12ServingDocsPortMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"v\n\x18ServingDocsAccessInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"r\n\x16ServingDocsExitInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"t\n\x10RunResultWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"t\n\x10RunResultFailure\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultFailure\"k\n\tStatsLine\x12\x30\n\x05stats\x18\x01 \x03(\x0b\x32!.proto_types.StatsLine.StatsEntry\x1a,\n\nStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"^\n\x0cStatsLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"G\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"h\n\x11RunResultErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\"S\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultErrorNoMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"I\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"j\n\x12SQLCompiledPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"W\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"t\n\x17\x43heckNodeTestFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"W\n\x0f\x45ndOfRunSummary\x12\x12\n\nnum_errors\x18\x01 \x01(\x05\x12\x14\n\x0cnum_warnings\x18\x02 \x01(\x05\x12\x1a\n\x12keyboard_interrupt\x18\x03 \x01(\x08\"j\n\x12\x45ndOfRunSummaryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.EndOfRunSummary\"U\n\x13LogSkipBecauseError\x12\x0e\n\x06schema\x18\x01 \x01(\t\x12\x10\n\x08relation\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"r\n\x16LogSkipBecauseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"p\n\x15\x45nsureGitInstalledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"|\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"z\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"j\n\x12\x44isableTrackingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DisableTracking\"\x1e\n\x0cSendingEvent\x12\x0e\n\x06kwargs\x18\x01 \x01(\t\"d\n\x0fSendingEventMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"l\n\x13SendEventFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"b\n\x0e\x46lushEventsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"p\n\x15\x46lushEventsFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FlushEventsFailure\"-\n\x19TrackingInitializeFailure\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"~\n\x1cTrackingInitializeFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"P\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultWarningMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultWarningMessage\"\x1a\n\x0b\x44\x65\x62ugCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"b\n\x0e\x44\x65\x62ugCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.DebugCmdOut\"\x1d\n\x0e\x44\x65\x62ugCmdResult\x12\x0b\n\x03msg\x18\x01 \x01(\t\"h\n\x11\x44\x65\x62ugCmdResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DebugCmdResult\"\x19\n\nListCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"`\n\rListCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\xec\x01\n\x0eResourceReport\x12\x14\n\x0c\x63ommand_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63ommand_success\x18\x03 \x01(\x08\x12\x1f\n\x17\x63ommand_wall_clock_time\x18\x04 \x01(\x02\x12\x19\n\x11process_user_time\x18\x05 \x01(\x02\x12\x1b\n\x13process_kernel_time\x18\x06 \x01(\x02\x12\x1b\n\x13process_mem_max_rss\x18\x07 \x01(\x03\x12\x19\n\x11process_in_blocks\x18\x08 \x01(\x03\x12\x1a\n\x12process_out_blocks\x18\t \x01(\x03\"h\n\x11ResourceReportMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ResourceReportb\x06proto3') -_globals = globals() -_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) -_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'core_types_pb2', _globals) +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals()) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'core_types_pb2', globals()) if _descriptor._USE_C_DESCRIPTORS == False: + DESCRIPTOR._options = None - _globals['_COREEVENTINFO_EXTRAENTRY']._options = None - _globals['_COREEVENTINFO_EXTRAENTRY']._serialized_options = b'8\001' - _globals['_MAINREPORTARGS_ARGSENTRY']._options = None - _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_options = b'8\001' - _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._options = None - _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_options = b'8\001' - _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._options = None - _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_options = b'8\001' - _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._options = None - _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_options = b'8\001' - _globals['_STATSLINE_STATSENTRY']._options = None - _globals['_STATSLINE_STATSENTRY']._serialized_options = b'8\001' - _globals['_COREEVENTINFO']._serialized_start=97 - _globals['_COREEVENTINFO']._serialized_end=378 - _globals['_COREEVENTINFO_EXTRAENTRY']._serialized_start=334 - _globals['_COREEVENTINFO_EXTRAENTRY']._serialized_end=378 - _globals['_NODERELATION']._serialized_start=380 - _globals['_NODERELATION']._serialized_end=466 - _globals['_NODEINFO']._serialized_start=469 - _globals['_NODEINFO']._serialized_end=742 - _globals['_TIMINGINFOMSG']._serialized_start=744 - _globals['_TIMINGINFOMSG']._serialized_end=871 - _globals['_RUNRESULTMSG']._serialized_start=874 - _globals['_RUNRESULTMSG']._serialized_end=1083 - _globals['_COLUMNTYPE']._serialized_start=1085 - _globals['_COLUMNTYPE']._serialized_end=1177 - _globals['_COLUMNCONSTRAINT']._serialized_start=1179 - _globals['_COLUMNCONSTRAINT']._serialized_end=1268 - _globals['_MODELCONSTRAINT']._serialized_start=1270 - _globals['_MODELCONSTRAINT']._serialized_end=1354 - _globals['_MAINREPORTVERSION']._serialized_start=1356 - _globals['_MAINREPORTVERSION']._serialized_end=1413 - _globals['_MAINREPORTVERSIONMSG']._serialized_start=1415 - _globals['_MAINREPORTVERSIONMSG']._serialized_end=1525 - _globals['_MAINREPORTARGS']._serialized_start=1527 - _globals['_MAINREPORTARGS']._serialized_end=1641 - _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_start=1598 - _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_end=1641 - _globals['_MAINREPORTARGSMSG']._serialized_start=1643 - _globals['_MAINREPORTARGSMSG']._serialized_end=1747 - _globals['_MAINTRACKINGUSERSTATE']._serialized_start=1749 - _globals['_MAINTRACKINGUSERSTATE']._serialized_end=1792 - _globals['_MAINTRACKINGUSERSTATEMSG']._serialized_start=1794 - _globals['_MAINTRACKINGUSERSTATEMSG']._serialized_end=1912 - _globals['_MERGEDFROMSTATE']._serialized_start=1914 - _globals['_MERGEDFROMSTATE']._serialized_end=1967 - _globals['_MERGEDFROMSTATEMSG']._serialized_start=1969 - _globals['_MERGEDFROMSTATEMSG']._serialized_end=2075 - _globals['_MISSINGPROFILETARGET']._serialized_start=2077 - _globals['_MISSINGPROFILETARGET']._serialized_end=2142 - _globals['_MISSINGPROFILETARGETMSG']._serialized_start=2144 - _globals['_MISSINGPROFILETARGETMSG']._serialized_end=2260 - _globals['_INVALIDOPTIONYAML']._serialized_start=2262 - _globals['_INVALIDOPTIONYAML']._serialized_end=2302 - _globals['_INVALIDOPTIONYAMLMSG']._serialized_start=2304 - _globals['_INVALIDOPTIONYAMLMSG']._serialized_end=2414 - _globals['_LOGDBTPROJECTERROR']._serialized_start=2416 - _globals['_LOGDBTPROJECTERROR']._serialized_end=2449 - _globals['_LOGDBTPROJECTERRORMSG']._serialized_start=2451 - _globals['_LOGDBTPROJECTERRORMSG']._serialized_end=2563 - _globals['_LOGDBTPROFILEERROR']._serialized_start=2565 - _globals['_LOGDBTPROFILEERROR']._serialized_end=2616 - _globals['_LOGDBTPROFILEERRORMSG']._serialized_start=2618 - _globals['_LOGDBTPROFILEERRORMSG']._serialized_end=2730 - _globals['_STARTERPROJECTPATH']._serialized_start=2732 - _globals['_STARTERPROJECTPATH']._serialized_end=2765 - _globals['_STARTERPROJECTPATHMSG']._serialized_start=2767 - _globals['_STARTERPROJECTPATHMSG']._serialized_end=2879 - _globals['_CONFIGFOLDERDIRECTORY']._serialized_start=2881 - _globals['_CONFIGFOLDERDIRECTORY']._serialized_end=2917 - _globals['_CONFIGFOLDERDIRECTORYMSG']._serialized_start=2919 - _globals['_CONFIGFOLDERDIRECTORYMSG']._serialized_end=3037 - _globals['_NOSAMPLEPROFILEFOUND']._serialized_start=3039 - _globals['_NOSAMPLEPROFILEFOUND']._serialized_end=3078 - _globals['_NOSAMPLEPROFILEFOUNDMSG']._serialized_start=3080 - _globals['_NOSAMPLEPROFILEFOUNDMSG']._serialized_end=3196 - _globals['_PROFILEWRITTENWITHSAMPLE']._serialized_start=3198 - _globals['_PROFILEWRITTENWITHSAMPLE']._serialized_end=3252 - _globals['_PROFILEWRITTENWITHSAMPLEMSG']._serialized_start=3254 - _globals['_PROFILEWRITTENWITHSAMPLEMSG']._serialized_end=3378 - _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAML']._serialized_start=3380 - _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAML']._serialized_end=3446 - _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG']._serialized_start=3449 - _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG']._serialized_end=3597 - _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAML']._serialized_start=3599 - _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAML']._serialized_end=3666 - _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG']._serialized_start=3669 - _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG']._serialized_end=3819 - _globals['_SETTINGUPPROFILE']._serialized_start=3821 - _globals['_SETTINGUPPROFILE']._serialized_end=3839 - _globals['_SETTINGUPPROFILEMSG']._serialized_start=3841 - _globals['_SETTINGUPPROFILEMSG']._serialized_end=3949 - _globals['_INVALIDPROFILETEMPLATEYAML']._serialized_start=3951 - _globals['_INVALIDPROFILETEMPLATEYAML']._serialized_end=3979 - _globals['_INVALIDPROFILETEMPLATEYAMLMSG']._serialized_start=3982 - _globals['_INVALIDPROFILETEMPLATEYAMLMSG']._serialized_end=4110 - _globals['_PROJECTNAMEALREADYEXISTS']._serialized_start=4112 - _globals['_PROJECTNAMEALREADYEXISTS']._serialized_end=4152 - _globals['_PROJECTNAMEALREADYEXISTSMSG']._serialized_start=4154 - _globals['_PROJECTNAMEALREADYEXISTSMSG']._serialized_end=4278 - _globals['_PROJECTCREATED']._serialized_start=4280 - _globals['_PROJECTCREATED']._serialized_end=4355 - _globals['_PROJECTCREATEDMSG']._serialized_start=4357 - _globals['_PROJECTCREATEDMSG']._serialized_end=4461 - _globals['_PACKAGEREDIRECTDEPRECATION']._serialized_start=4463 - _globals['_PACKAGEREDIRECTDEPRECATION']._serialized_end=4527 - _globals['_PACKAGEREDIRECTDEPRECATIONMSG']._serialized_start=4530 - _globals['_PACKAGEREDIRECTDEPRECATIONMSG']._serialized_end=4658 - _globals['_PACKAGEINSTALLPATHDEPRECATION']._serialized_start=4660 - _globals['_PACKAGEINSTALLPATHDEPRECATION']._serialized_end=4691 - _globals['_PACKAGEINSTALLPATHDEPRECATIONMSG']._serialized_start=4694 - _globals['_PACKAGEINSTALLPATHDEPRECATIONMSG']._serialized_end=4828 - _globals['_CONFIGSOURCEPATHDEPRECATION']._serialized_start=4830 - _globals['_CONFIGSOURCEPATHDEPRECATION']._serialized_end=4902 - _globals['_CONFIGSOURCEPATHDEPRECATIONMSG']._serialized_start=4905 - _globals['_CONFIGSOURCEPATHDEPRECATIONMSG']._serialized_end=5035 - _globals['_CONFIGDATAPATHDEPRECATION']._serialized_start=5037 - _globals['_CONFIGDATAPATHDEPRECATION']._serialized_end=5107 - _globals['_CONFIGDATAPATHDEPRECATIONMSG']._serialized_start=5109 - _globals['_CONFIGDATAPATHDEPRECATIONMSG']._serialized_end=5235 - _globals['_METRICATTRIBUTESRENAMED']._serialized_start=5237 - _globals['_METRICATTRIBUTESRENAMED']._serialized_end=5283 - _globals['_METRICATTRIBUTESRENAMEDMSG']._serialized_start=5285 - _globals['_METRICATTRIBUTESRENAMEDMSG']._serialized_end=5407 - _globals['_EXPOSURENAMEDEPRECATION']._serialized_start=5409 - _globals['_EXPOSURENAMEDEPRECATION']._serialized_end=5452 - _globals['_EXPOSURENAMEDEPRECATIONMSG']._serialized_start=5454 - _globals['_EXPOSURENAMEDEPRECATIONMSG']._serialized_end=5576 - _globals['_INTERNALDEPRECATION']._serialized_start=5578 - _globals['_INTERNALDEPRECATION']._serialized_end=5672 - _globals['_INTERNALDEPRECATIONMSG']._serialized_start=5674 - _globals['_INTERNALDEPRECATIONMSG']._serialized_end=5788 - _globals['_ENVIRONMENTVARIABLERENAMED']._serialized_start=5790 - _globals['_ENVIRONMENTVARIABLERENAMED']._serialized_end=5854 - _globals['_ENVIRONMENTVARIABLERENAMEDMSG']._serialized_start=5857 - _globals['_ENVIRONMENTVARIABLERENAMEDMSG']._serialized_end=5985 - _globals['_CONFIGLOGPATHDEPRECATION']._serialized_start=5987 - _globals['_CONFIGLOGPATHDEPRECATION']._serialized_end=6038 - _globals['_CONFIGLOGPATHDEPRECATIONMSG']._serialized_start=6040 - _globals['_CONFIGLOGPATHDEPRECATIONMSG']._serialized_end=6164 - _globals['_CONFIGTARGETPATHDEPRECATION']._serialized_start=6166 - _globals['_CONFIGTARGETPATHDEPRECATION']._serialized_end=6220 - _globals['_CONFIGTARGETPATHDEPRECATIONMSG']._serialized_start=6223 - _globals['_CONFIGTARGETPATHDEPRECATIONMSG']._serialized_end=6353 - _globals['_TESTSCONFIGDEPRECATION']._serialized_start=6355 - _globals['_TESTSCONFIGDEPRECATION']._serialized_end=6422 - _globals['_TESTSCONFIGDEPRECATIONMSG']._serialized_start=6424 - _globals['_TESTSCONFIGDEPRECATIONMSG']._serialized_end=6544 - _globals['_PROJECTFLAGSMOVEDDEPRECATION']._serialized_start=6546 - _globals['_PROJECTFLAGSMOVEDDEPRECATION']._serialized_end=6576 - _globals['_PROJECTFLAGSMOVEDDEPRECATIONMSG']._serialized_start=6579 - _globals['_PROJECTFLAGSMOVEDDEPRECATIONMSG']._serialized_end=6711 - _globals['_SPACESINMODELNAMEDEPRECATION']._serialized_start=6713 - _globals['_SPACESINMODELNAMEDEPRECATION']._serialized_end=6801 - _globals['_SPACESINMODELNAMEDEPRECATIONMSG']._serialized_start=6804 - _globals['_SPACESINMODELNAMEDEPRECATIONMSG']._serialized_end=6936 - _globals['_TOTALMODELNAMESWITHSPACESDEPRECATION']._serialized_start=6938 - _globals['_TOTALMODELNAMESWITHSPACESDEPRECATION']._serialized_end=7045 - _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION']._serialized_start=7047 - _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION']._serialized_end=7142 - _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG']._serialized_start=7145 - _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG']._serialized_end=7303 - _globals['_TOTALMODELNAMESWITHSPACESDEPRECATIONMSG']._serialized_start=7306 - _globals['_TOTALMODELNAMESWITHSPACESDEPRECATIONMSG']._serialized_end=7454 - _globals['_DEPRECATEDMODEL']._serialized_start=7456 - _globals['_DEPRECATEDMODEL']._serialized_end=7542 - _globals['_DEPRECATEDMODELMSG']._serialized_start=7544 - _globals['_DEPRECATEDMODELMSG']._serialized_end=7650 - _globals['_INPUTFILEDIFFERROR']._serialized_start=7652 - _globals['_INPUTFILEDIFFERROR']._serialized_end=7707 - _globals['_INPUTFILEDIFFERRORMSG']._serialized_start=7709 - _globals['_INPUTFILEDIFFERRORMSG']._serialized_end=7821 - _globals['_INVALIDVALUEFORFIELD']._serialized_start=7823 - _globals['_INVALIDVALUEFORFIELD']._serialized_end=7886 - _globals['_INVALIDVALUEFORFIELDMSG']._serialized_start=7888 - _globals['_INVALIDVALUEFORFIELDMSG']._serialized_end=8004 - _globals['_VALIDATIONWARNING']._serialized_start=8006 - _globals['_VALIDATIONWARNING']._serialized_end=8087 - _globals['_VALIDATIONWARNINGMSG']._serialized_start=8089 - _globals['_VALIDATIONWARNINGMSG']._serialized_end=8199 - _globals['_PARSEPERFINFOPATH']._serialized_start=8201 - _globals['_PARSEPERFINFOPATH']._serialized_end=8234 - _globals['_PARSEPERFINFOPATHMSG']._serialized_start=8236 - _globals['_PARSEPERFINFOPATHMSG']._serialized_end=8346 - _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_start=8348 - _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_end=8397 - _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_start=8400 - _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_end=8542 - _globals['_PARTIALPARSINGERROR']._serialized_start=8545 - _globals['_PARTIALPARSINGERROR']._serialized_end=8679 - _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_start=8633 - _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_end=8679 - _globals['_PARTIALPARSINGERRORMSG']._serialized_start=8681 - _globals['_PARTIALPARSINGERRORMSG']._serialized_end=8795 - _globals['_PARTIALPARSINGSKIPPARSING']._serialized_start=8797 - _globals['_PARTIALPARSINGSKIPPARSING']._serialized_end=8824 - _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_start=8826 - _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_end=8952 - _globals['_UNABLETOPARTIALPARSE']._serialized_start=8954 - _globals['_UNABLETOPARTIALPARSE']._serialized_end=8992 - _globals['_UNABLETOPARTIALPARSEMSG']._serialized_start=8994 - _globals['_UNABLETOPARTIALPARSEMSG']._serialized_end=9110 - _globals['_STATECHECKVARSHASH']._serialized_start=9112 - _globals['_STATECHECKVARSHASH']._serialized_end=9214 - _globals['_STATECHECKVARSHASHMSG']._serialized_start=9216 - _globals['_STATECHECKVARSHASHMSG']._serialized_end=9328 - _globals['_PARTIALPARSINGNOTENABLED']._serialized_start=9330 - _globals['_PARTIALPARSINGNOTENABLED']._serialized_end=9356 - _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_start=9358 - _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_end=9482 - _globals['_PARSEDFILELOADFAILED']._serialized_start=9484 - _globals['_PARSEDFILELOADFAILED']._serialized_end=9551 - _globals['_PARSEDFILELOADFAILEDMSG']._serialized_start=9553 - _globals['_PARSEDFILELOADFAILEDMSG']._serialized_end=9669 - _globals['_PARTIALPARSINGENABLED']._serialized_start=9671 - _globals['_PARTIALPARSINGENABLED']._serialized_end=9743 - _globals['_PARTIALPARSINGENABLEDMSG']._serialized_start=9745 - _globals['_PARTIALPARSINGENABLEDMSG']._serialized_end=9863 - _globals['_PARTIALPARSINGFILE']._serialized_start=9865 - _globals['_PARTIALPARSINGFILE']._serialized_end=9921 - _globals['_PARTIALPARSINGFILEMSG']._serialized_start=9923 - _globals['_PARTIALPARSINGFILEMSG']._serialized_end=10035 - _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_start=10038 - _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_end=10213 - _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_start=10216 - _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_end=10354 - _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_start=10356 - _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_end=10411 - _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_start=10413 - _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_end=10537 - _globals['_SEEDINCREASED']._serialized_start=10539 - _globals['_SEEDINCREASED']._serialized_end=10590 - _globals['_SEEDINCREASEDMSG']._serialized_start=10592 - _globals['_SEEDINCREASEDMSG']._serialized_end=10694 - _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_start=10696 - _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_end=10758 - _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_start=10760 - _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_end=10884 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_start=10886 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_end=10954 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_start=10957 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_end=11093 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_start=11095 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_end=11187 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_start=11190 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_end=11328 - _globals['_UNUSEDTABLES']._serialized_start=11330 - _globals['_UNUSEDTABLES']._serialized_end=11367 - _globals['_UNUSEDTABLESMSG']._serialized_start=11369 - _globals['_UNUSEDTABLESMSG']._serialized_end=11469 - _globals['_WRONGRESOURCESCHEMAFILE']._serialized_start=11472 - _globals['_WRONGRESOURCESCHEMAFILE']._serialized_end=11607 - _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_start=11609 - _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_end=11731 - _globals['_NONODEFORYAMLKEY']._serialized_start=11733 - _globals['_NONODEFORYAMLKEY']._serialized_end=11808 - _globals['_NONODEFORYAMLKEYMSG']._serialized_start=11810 - _globals['_NONODEFORYAMLKEYMSG']._serialized_end=11918 - _globals['_MACRONOTFOUNDFORPATCH']._serialized_start=11920 - _globals['_MACRONOTFOUNDFORPATCH']._serialized_end=11963 - _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_start=11965 - _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_end=12083 - _globals['_NODENOTFOUNDORDISABLED']._serialized_start=12086 - _globals['_NODENOTFOUNDORDISABLED']._serialized_end=12270 - _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_start=12272 - _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_end=12392 - _globals['_JINJALOGWARNING']._serialized_start=12394 - _globals['_JINJALOGWARNING']._serialized_end=12466 - _globals['_JINJALOGWARNINGMSG']._serialized_start=12468 - _globals['_JINJALOGWARNINGMSG']._serialized_end=12574 - _globals['_JINJALOGINFO']._serialized_start=12576 - _globals['_JINJALOGINFO']._serialized_end=12645 - _globals['_JINJALOGINFOMSG']._serialized_start=12647 - _globals['_JINJALOGINFOMSG']._serialized_end=12747 - _globals['_JINJALOGDEBUG']._serialized_start=12749 - _globals['_JINJALOGDEBUG']._serialized_end=12819 - _globals['_JINJALOGDEBUGMSG']._serialized_start=12821 - _globals['_JINJALOGDEBUGMSG']._serialized_end=12923 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_start=12926 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_end=13100 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_start=13103 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_end=13239 - _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_start=13242 - _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_end=13440 - _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_start=13443 - _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_end=13575 - _globals['_DEPRECATEDREFERENCE']._serialized_start=13578 - _globals['_DEPRECATEDREFERENCE']._serialized_end=13767 - _globals['_DEPRECATEDREFERENCEMSG']._serialized_start=13769 - _globals['_DEPRECATEDREFERENCEMSG']._serialized_end=13883 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_start=13885 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_end=13945 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_start=13948 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_end=14096 - _globals['_PARSEINLINENODEERROR']._serialized_start=14098 - _globals['_PARSEINLINENODEERROR']._serialized_end=14175 - _globals['_PARSEINLINENODEERRORMSG']._serialized_start=14177 - _globals['_PARSEINLINENODEERRORMSG']._serialized_end=14293 - _globals['_SEMANTICVALIDATIONFAILURE']._serialized_start=14295 - _globals['_SEMANTICVALIDATIONFAILURE']._serialized_end=14335 - _globals['_SEMANTICVALIDATIONFAILUREMSG']._serialized_start=14337 - _globals['_SEMANTICVALIDATIONFAILUREMSG']._serialized_end=14463 - _globals['_UNVERSIONEDBREAKINGCHANGE']._serialized_start=14466 - _globals['_UNVERSIONEDBREAKINGCHANGE']._serialized_end=14860 - _globals['_UNVERSIONEDBREAKINGCHANGEMSG']._serialized_start=14862 - _globals['_UNVERSIONEDBREAKINGCHANGEMSG']._serialized_end=14988 - _globals['_WARNSTATETARGETEQUAL']._serialized_start=14990 - _globals['_WARNSTATETARGETEQUAL']._serialized_end=15032 - _globals['_WARNSTATETARGETEQUALMSG']._serialized_start=15034 - _globals['_WARNSTATETARGETEQUALMSG']._serialized_end=15150 - _globals['_FRESHNESSCONFIGPROBLEM']._serialized_start=15152 - _globals['_FRESHNESSCONFIGPROBLEM']._serialized_end=15189 - _globals['_FRESHNESSCONFIGPROBLEMMSG']._serialized_start=15191 - _globals['_FRESHNESSCONFIGPROBLEMMSG']._serialized_end=15311 - _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_start=15313 - _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_end=15360 - _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_start=15363 - _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_end=15497 - _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_start=15499 - _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_end=15546 - _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_start=15549 - _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_end=15679 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_start=15681 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_end=15733 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_start=15736 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_end=15886 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_start=15888 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_end=15934 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_start=15937 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_end=16075 - _globals['_GITNOTHINGTODO']._serialized_start=16077 - _globals['_GITNOTHINGTODO']._serialized_end=16106 - _globals['_GITNOTHINGTODOMSG']._serialized_start=16108 - _globals['_GITNOTHINGTODOMSG']._serialized_end=16212 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_start=16214 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_end=16283 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_start=16286 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_end=16424 - _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_start=16426 - _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_end=16468 - _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_start=16470 - _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_end=16592 - _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_start=16594 - _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_end=16635 - _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_start=16638 - _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_end=16766 - _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_start=16768 - _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_end=16829 - _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_start=16832 - _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_end=16962 - _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_start=16964 - _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_end=17059 - _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_start=17062 - _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_end=17196 - _globals['_DEPSNOPACKAGESFOUND']._serialized_start=17198 - _globals['_DEPSNOPACKAGESFOUND']._serialized_end=17219 - _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_start=17221 - _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_end=17335 - _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_start=17337 - _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_end=17384 - _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_start=17386 - _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_end=17508 - _globals['_DEPSINSTALLINFO']._serialized_start=17510 - _globals['_DEPSINSTALLINFO']._serialized_end=17549 - _globals['_DEPSINSTALLINFOMSG']._serialized_start=17551 - _globals['_DEPSINSTALLINFOMSG']._serialized_end=17657 - _globals['_DEPSUPDATEAVAILABLE']._serialized_start=17659 - _globals['_DEPSUPDATEAVAILABLE']._serialized_end=17704 - _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_start=17706 - _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_end=17820 - _globals['_DEPSUPTODATE']._serialized_start=17822 - _globals['_DEPSUPTODATE']._serialized_end=17836 - _globals['_DEPSUPTODATEMSG']._serialized_start=17838 - _globals['_DEPSUPTODATEMSG']._serialized_end=17938 - _globals['_DEPSLISTSUBDIRECTORY']._serialized_start=17940 - _globals['_DEPSLISTSUBDIRECTORY']._serialized_end=17984 - _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_start=17986 - _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_end=18102 - _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_start=18104 - _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_end=18150 - _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_start=18153 - _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_end=18281 - _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_start=18283 - _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_end=18329 - _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_start=18332 - _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_end=18470 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_start=18472 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_end=18538 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_start=18541 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_end=18681 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_start=18683 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_end=18733 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_start=18736 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_end=18872 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_start=18874 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_end=18924 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_start=18927 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_end=19063 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_start=19065 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_end=19118 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_start=19121 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_end=19263 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_start=19265 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_end=19316 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_start=19319 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_end=19457 - _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_start=19459 - _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_end=19499 - _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_start=19501 - _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_end=19625 - _globals['_DEPSUNPINNED']._serialized_start=19627 - _globals['_DEPSUNPINNED']._serialized_end=19672 - _globals['_DEPSUNPINNEDMSG']._serialized_start=19674 - _globals['_DEPSUNPINNEDMSG']._serialized_end=19774 - _globals['_NONODESFORSELECTIONCRITERIA']._serialized_start=19776 - _globals['_NONODESFORSELECTIONCRITERIA']._serialized_end=19823 - _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_start=19826 - _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_end=19956 - _globals['_DEPSLOCKUPDATING']._serialized_start=19958 - _globals['_DEPSLOCKUPDATING']._serialized_end=19999 - _globals['_DEPSLOCKUPDATINGMSG']._serialized_start=20001 - _globals['_DEPSLOCKUPDATINGMSG']._serialized_end=20109 - _globals['_DEPSADDPACKAGE']._serialized_start=20111 - _globals['_DEPSADDPACKAGE']._serialized_end=20193 - _globals['_DEPSADDPACKAGEMSG']._serialized_start=20195 - _globals['_DEPSADDPACKAGEMSG']._serialized_end=20299 - _globals['_DEPSFOUNDDUPLICATEPACKAGE']._serialized_start=20302 - _globals['_DEPSFOUNDDUPLICATEPACKAGE']._serialized_end=20469 - _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_start=20416 - _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_end=20469 - _globals['_DEPSFOUNDDUPLICATEPACKAGEMSG']._serialized_start=20471 - _globals['_DEPSFOUNDDUPLICATEPACKAGEMSG']._serialized_end=20597 - _globals['_DEPSVERSIONMISSING']._serialized_start=20599 - _globals['_DEPSVERSIONMISSING']._serialized_end=20635 - _globals['_DEPSVERSIONMISSINGMSG']._serialized_start=20637 - _globals['_DEPSVERSIONMISSINGMSG']._serialized_end=20749 - _globals['_DEPSSCRUBBEDPACKAGENAME']._serialized_start=20751 - _globals['_DEPSSCRUBBEDPACKAGENAME']._serialized_end=20798 - _globals['_DEPSSCRUBBEDPACKAGENAMEMSG']._serialized_start=20800 - _globals['_DEPSSCRUBBEDPACKAGENAMEMSG']._serialized_end=20922 - _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_start=20924 - _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_end=20966 - _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_start=20969 - _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_end=21099 - _globals['_COMPILECOMPLETE']._serialized_start=21101 - _globals['_COMPILECOMPLETE']._serialized_end=21118 - _globals['_COMPILECOMPLETEMSG']._serialized_start=21120 - _globals['_COMPILECOMPLETEMSG']._serialized_end=21226 - _globals['_FRESHNESSCHECKCOMPLETE']._serialized_start=21228 - _globals['_FRESHNESSCHECKCOMPLETE']._serialized_end=21252 - _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_start=21254 - _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_end=21374 - _globals['_SEEDHEADER']._serialized_start=21376 - _globals['_SEEDHEADER']._serialized_end=21404 - _globals['_SEEDHEADERMSG']._serialized_start=21406 - _globals['_SEEDHEADERMSG']._serialized_end=21502 - _globals['_SQLRUNNEREXCEPTION']._serialized_start=21504 - _globals['_SQLRUNNEREXCEPTION']._serialized_end=21597 - _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_start=21599 - _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_end=21711 - _globals['_LOGTESTRESULT']._serialized_start=21714 - _globals['_LOGTESTRESULT']._serialized_end=21882 - _globals['_LOGTESTRESULTMSG']._serialized_start=21884 - _globals['_LOGTESTRESULTMSG']._serialized_end=21986 - _globals['_LOGSTARTLINE']._serialized_start=21988 - _globals['_LOGSTARTLINE']._serialized_end=22095 - _globals['_LOGSTARTLINEMSG']._serialized_start=22097 - _globals['_LOGSTARTLINEMSG']._serialized_end=22197 - _globals['_LOGMODELRESULT']._serialized_start=22200 - _globals['_LOGMODELRESULT']._serialized_end=22349 - _globals['_LOGMODELRESULTMSG']._serialized_start=22351 - _globals['_LOGMODELRESULTMSG']._serialized_end=22455 - _globals['_LOGSNAPSHOTRESULT']._serialized_start=22458 - _globals['_LOGSNAPSHOTRESULT']._serialized_end=22732 - _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_start=22690 - _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_end=22732 - _globals['_LOGSNAPSHOTRESULTMSG']._serialized_start=22734 - _globals['_LOGSNAPSHOTRESULTMSG']._serialized_end=22844 - _globals['_LOGSEEDRESULT']._serialized_start=22847 - _globals['_LOGSEEDRESULT']._serialized_end=23032 - _globals['_LOGSEEDRESULTMSG']._serialized_start=23034 - _globals['_LOGSEEDRESULTMSG']._serialized_end=23136 - _globals['_LOGFRESHNESSRESULT']._serialized_start=23139 - _globals['_LOGFRESHNESSRESULT']._serialized_end=23312 - _globals['_LOGFRESHNESSRESULTMSG']._serialized_start=23314 - _globals['_LOGFRESHNESSRESULTMSG']._serialized_end=23426 - _globals['_LOGNODENOOPRESULT']._serialized_start=23429 - _globals['_LOGNODENOOPRESULT']._serialized_end=23581 - _globals['_LOGNODENOOPRESULTMSG']._serialized_start=23583 - _globals['_LOGNODENOOPRESULTMSG']._serialized_end=23693 - _globals['_LOGCANCELLINE']._serialized_start=23695 - _globals['_LOGCANCELLINE']._serialized_end=23729 - _globals['_LOGCANCELLINEMSG']._serialized_start=23731 - _globals['_LOGCANCELLINEMSG']._serialized_end=23833 - _globals['_DEFAULTSELECTOR']._serialized_start=23835 - _globals['_DEFAULTSELECTOR']._serialized_end=23866 - _globals['_DEFAULTSELECTORMSG']._serialized_start=23868 - _globals['_DEFAULTSELECTORMSG']._serialized_end=23974 - _globals['_NODESTART']._serialized_start=23976 - _globals['_NODESTART']._serialized_end=24029 - _globals['_NODESTARTMSG']._serialized_start=24031 - _globals['_NODESTARTMSG']._serialized_end=24125 - _globals['_NODEFINISHED']._serialized_start=24127 - _globals['_NODEFINISHED']._serialized_end=24230 - _globals['_NODEFINISHEDMSG']._serialized_start=24232 - _globals['_NODEFINISHEDMSG']._serialized_end=24332 - _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_start=24334 - _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_end=24377 - _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_start=24380 - _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_end=24510 - _globals['_CONCURRENCYLINE']._serialized_start=24512 - _globals['_CONCURRENCYLINE']._serialized_end=24591 - _globals['_CONCURRENCYLINEMSG']._serialized_start=24593 - _globals['_CONCURRENCYLINEMSG']._serialized_end=24699 - _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_start=24701 - _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_end=24770 - _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_start=24772 - _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_end=24898 - _globals['_NODECOMPILING']._serialized_start=24900 - _globals['_NODECOMPILING']._serialized_end=24957 - _globals['_NODECOMPILINGMSG']._serialized_start=24959 - _globals['_NODECOMPILINGMSG']._serialized_end=25061 - _globals['_NODEEXECUTING']._serialized_start=25063 - _globals['_NODEEXECUTING']._serialized_end=25120 - _globals['_NODEEXECUTINGMSG']._serialized_start=25122 - _globals['_NODEEXECUTINGMSG']._serialized_end=25224 - _globals['_LOGHOOKSTARTLINE']._serialized_start=25226 - _globals['_LOGHOOKSTARTLINE']._serialized_end=25335 - _globals['_LOGHOOKSTARTLINEMSG']._serialized_start=25337 - _globals['_LOGHOOKSTARTLINEMSG']._serialized_end=25445 - _globals['_LOGHOOKENDLINE']._serialized_start=25448 - _globals['_LOGHOOKENDLINE']._serialized_end=25595 - _globals['_LOGHOOKENDLINEMSG']._serialized_start=25597 - _globals['_LOGHOOKENDLINEMSG']._serialized_end=25701 - _globals['_SKIPPINGDETAILS']._serialized_start=25704 - _globals['_SKIPPINGDETAILS']._serialized_end=25851 - _globals['_SKIPPINGDETAILSMSG']._serialized_start=25853 - _globals['_SKIPPINGDETAILSMSG']._serialized_end=25959 - _globals['_NOTHINGTODO']._serialized_start=25961 - _globals['_NOTHINGTODO']._serialized_end=25974 - _globals['_NOTHINGTODOMSG']._serialized_start=25976 - _globals['_NOTHINGTODOMSG']._serialized_end=26074 - _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_start=26076 - _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_end=26120 - _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_start=26123 - _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_end=26257 - _globals['_ENDRUNRESULT']._serialized_start=26260 - _globals['_ENDRUNRESULT']._serialized_end=26407 - _globals['_ENDRUNRESULTMSG']._serialized_start=26409 - _globals['_ENDRUNRESULTMSG']._serialized_end=26509 - _globals['_NONODESSELECTED']._serialized_start=26511 - _globals['_NONODESSELECTED']._serialized_end=26528 - _globals['_NONODESSELECTEDMSG']._serialized_start=26530 - _globals['_NONODESSELECTEDMSG']._serialized_end=26636 - _globals['_COMMANDCOMPLETED']._serialized_start=26638 - _globals['_COMMANDCOMPLETED']._serialized_end=26757 - _globals['_COMMANDCOMPLETEDMSG']._serialized_start=26759 - _globals['_COMMANDCOMPLETEDMSG']._serialized_end=26867 - _globals['_SHOWNODE']._serialized_start=26869 - _globals['_SHOWNODE']._serialized_end=26976 - _globals['_SHOWNODEMSG']._serialized_start=26978 - _globals['_SHOWNODEMSG']._serialized_end=27070 - _globals['_COMPILEDNODE']._serialized_start=27072 - _globals['_COMPILEDNODE']._serialized_end=27184 - _globals['_COMPILEDNODEMSG']._serialized_start=27186 - _globals['_COMPILEDNODEMSG']._serialized_end=27286 - _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_start=27288 - _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_end=27386 - _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_start=27388 - _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_end=27510 - _globals['_INTERNALERRORONRUN']._serialized_start=27512 - _globals['_INTERNALERRORONRUN']._serialized_end=27607 - _globals['_INTERNALERRORONRUNMSG']._serialized_start=27609 - _globals['_INTERNALERRORONRUNMSG']._serialized_end=27721 - _globals['_GENERICEXCEPTIONONRUN']._serialized_start=27723 - _globals['_GENERICEXCEPTIONONRUN']._serialized_end=27840 - _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_start=27842 - _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_end=27960 - _globals['_NODECONNECTIONRELEASEERROR']._serialized_start=27962 - _globals['_NODECONNECTIONRELEASEERROR']._serialized_end=28040 - _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_start=28043 - _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_end=28171 - _globals['_FOUNDSTATS']._serialized_start=28173 - _globals['_FOUNDSTATS']._serialized_end=28204 - _globals['_FOUNDSTATSMSG']._serialized_start=28206 - _globals['_FOUNDSTATSMSG']._serialized_end=28302 - _globals['_MAINKEYBOARDINTERRUPT']._serialized_start=28304 - _globals['_MAINKEYBOARDINTERRUPT']._serialized_end=28327 - _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_start=28329 - _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_end=28447 - _globals['_MAINENCOUNTEREDERROR']._serialized_start=28449 - _globals['_MAINENCOUNTEREDERROR']._serialized_end=28484 - _globals['_MAINENCOUNTEREDERRORMSG']._serialized_start=28486 - _globals['_MAINENCOUNTEREDERRORMSG']._serialized_end=28602 - _globals['_MAINSTACKTRACE']._serialized_start=28604 - _globals['_MAINSTACKTRACE']._serialized_end=28641 - _globals['_MAINSTACKTRACEMSG']._serialized_start=28643 - _globals['_MAINSTACKTRACEMSG']._serialized_end=28747 - _globals['_TIMINGINFOCOLLECTED']._serialized_start=28749 - _globals['_TIMINGINFOCOLLECTED']._serialized_end=28861 - _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_start=28863 - _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_end=28977 - _globals['_LOGDEBUGSTACKTRACE']._serialized_start=28979 - _globals['_LOGDEBUGSTACKTRACE']._serialized_end=29017 - _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_start=29019 - _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_end=29131 - _globals['_CHECKCLEANPATH']._serialized_start=29133 - _globals['_CHECKCLEANPATH']._serialized_end=29163 - _globals['_CHECKCLEANPATHMSG']._serialized_start=29165 - _globals['_CHECKCLEANPATHMSG']._serialized_end=29269 - _globals['_CONFIRMCLEANPATH']._serialized_start=29271 - _globals['_CONFIRMCLEANPATH']._serialized_end=29303 - _globals['_CONFIRMCLEANPATHMSG']._serialized_start=29305 - _globals['_CONFIRMCLEANPATHMSG']._serialized_end=29413 - _globals['_PROTECTEDCLEANPATH']._serialized_start=29415 - _globals['_PROTECTEDCLEANPATH']._serialized_end=29449 - _globals['_PROTECTEDCLEANPATHMSG']._serialized_start=29451 - _globals['_PROTECTEDCLEANPATHMSG']._serialized_end=29563 - _globals['_FINISHEDCLEANPATHS']._serialized_start=29565 - _globals['_FINISHEDCLEANPATHS']._serialized_end=29585 - _globals['_FINISHEDCLEANPATHSMSG']._serialized_start=29587 - _globals['_FINISHEDCLEANPATHSMSG']._serialized_end=29699 - _globals['_OPENCOMMAND']._serialized_start=29701 - _globals['_OPENCOMMAND']._serialized_end=29754 - _globals['_OPENCOMMANDMSG']._serialized_start=29756 - _globals['_OPENCOMMANDMSG']._serialized_end=29854 - _globals['_SERVINGDOCSPORT']._serialized_start=29856 - _globals['_SERVINGDOCSPORT']._serialized_end=29904 - _globals['_SERVINGDOCSPORTMSG']._serialized_start=29906 - _globals['_SERVINGDOCSPORTMSG']._serialized_end=30012 - _globals['_SERVINGDOCSACCESSINFO']._serialized_start=30014 - _globals['_SERVINGDOCSACCESSINFO']._serialized_end=30051 - _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_start=30053 - _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_end=30171 - _globals['_SERVINGDOCSEXITINFO']._serialized_start=30173 - _globals['_SERVINGDOCSEXITINFO']._serialized_end=30194 - _globals['_SERVINGDOCSEXITINFOMSG']._serialized_start=30196 - _globals['_SERVINGDOCSEXITINFOMSG']._serialized_end=30310 - _globals['_RUNRESULTWARNING']._serialized_start=30312 - _globals['_RUNRESULTWARNING']._serialized_end=30428 - _globals['_RUNRESULTWARNINGMSG']._serialized_start=30430 - _globals['_RUNRESULTWARNINGMSG']._serialized_end=30538 - _globals['_RUNRESULTFAILURE']._serialized_start=30540 - _globals['_RUNRESULTFAILURE']._serialized_end=30656 - _globals['_RUNRESULTFAILUREMSG']._serialized_start=30658 - _globals['_RUNRESULTFAILUREMSG']._serialized_end=30766 - _globals['_STATSLINE']._serialized_start=30768 - _globals['_STATSLINE']._serialized_end=30875 - _globals['_STATSLINE_STATSENTRY']._serialized_start=30831 - _globals['_STATSLINE_STATSENTRY']._serialized_end=30875 - _globals['_STATSLINEMSG']._serialized_start=30877 - _globals['_STATSLINEMSG']._serialized_end=30971 - _globals['_RUNRESULTERROR']._serialized_start=30973 - _globals['_RUNRESULTERROR']._serialized_end=31044 - _globals['_RUNRESULTERRORMSG']._serialized_start=31046 - _globals['_RUNRESULTERRORMSG']._serialized_end=31150 - _globals['_RUNRESULTERRORNOMESSAGE']._serialized_start=31152 - _globals['_RUNRESULTERRORNOMESSAGE']._serialized_end=31235 - _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_start=31237 - _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_end=31359 - _globals['_SQLCOMPILEDPATH']._serialized_start=31361 - _globals['_SQLCOMPILEDPATH']._serialized_end=31434 - _globals['_SQLCOMPILEDPATHMSG']._serialized_start=31436 - _globals['_SQLCOMPILEDPATHMSG']._serialized_end=31542 - _globals['_CHECKNODETESTFAILURE']._serialized_start=31544 - _globals['_CHECKNODETESTFAILURE']._serialized_end=31631 - _globals['_CHECKNODETESTFAILUREMSG']._serialized_start=31633 - _globals['_CHECKNODETESTFAILUREMSG']._serialized_end=31749 - _globals['_ENDOFRUNSUMMARY']._serialized_start=31751 - _globals['_ENDOFRUNSUMMARY']._serialized_end=31838 - _globals['_ENDOFRUNSUMMARYMSG']._serialized_start=31840 - _globals['_ENDOFRUNSUMMARYMSG']._serialized_end=31946 - _globals['_LOGSKIPBECAUSEERROR']._serialized_start=31948 - _globals['_LOGSKIPBECAUSEERROR']._serialized_end=32033 - _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_start=32035 - _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_end=32149 - _globals['_ENSUREGITINSTALLED']._serialized_start=32151 - _globals['_ENSUREGITINSTALLED']._serialized_end=32171 - _globals['_ENSUREGITINSTALLEDMSG']._serialized_start=32173 - _globals['_ENSUREGITINSTALLEDMSG']._serialized_end=32285 - _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_start=32287 - _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_end=32313 - _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_start=32315 - _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_end=32439 - _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_start=32441 - _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_end=32466 - _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_start=32468 - _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_end=32590 - _globals['_DISABLETRACKING']._serialized_start=32592 - _globals['_DISABLETRACKING']._serialized_end=32609 - _globals['_DISABLETRACKINGMSG']._serialized_start=32611 - _globals['_DISABLETRACKINGMSG']._serialized_end=32717 - _globals['_SENDINGEVENT']._serialized_start=32719 - _globals['_SENDINGEVENT']._serialized_end=32749 - _globals['_SENDINGEVENTMSG']._serialized_start=32751 - _globals['_SENDINGEVENTMSG']._serialized_end=32851 - _globals['_SENDEVENTFAILURE']._serialized_start=32853 - _globals['_SENDEVENTFAILURE']._serialized_end=32871 - _globals['_SENDEVENTFAILUREMSG']._serialized_start=32873 - _globals['_SENDEVENTFAILUREMSG']._serialized_end=32981 - _globals['_FLUSHEVENTS']._serialized_start=32983 - _globals['_FLUSHEVENTS']._serialized_end=32996 - _globals['_FLUSHEVENTSMSG']._serialized_start=32998 - _globals['_FLUSHEVENTSMSG']._serialized_end=33096 - _globals['_FLUSHEVENTSFAILURE']._serialized_start=33098 - _globals['_FLUSHEVENTSFAILURE']._serialized_end=33118 - _globals['_FLUSHEVENTSFAILUREMSG']._serialized_start=33120 - _globals['_FLUSHEVENTSFAILUREMSG']._serialized_end=33232 - _globals['_TRACKINGINITIALIZEFAILURE']._serialized_start=33234 - _globals['_TRACKINGINITIALIZEFAILURE']._serialized_end=33279 - _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_start=33281 - _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_end=33407 - _globals['_RUNRESULTWARNINGMESSAGE']._serialized_start=33409 - _globals['_RUNRESULTWARNINGMESSAGE']._serialized_end=33489 - _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_start=33491 - _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_end=33613 - _globals['_DEBUGCMDOUT']._serialized_start=33615 - _globals['_DEBUGCMDOUT']._serialized_end=33641 - _globals['_DEBUGCMDOUTMSG']._serialized_start=33643 - _globals['_DEBUGCMDOUTMSG']._serialized_end=33741 - _globals['_DEBUGCMDRESULT']._serialized_start=33743 - _globals['_DEBUGCMDRESULT']._serialized_end=33772 - _globals['_DEBUGCMDRESULTMSG']._serialized_start=33774 - _globals['_DEBUGCMDRESULTMSG']._serialized_end=33878 - _globals['_LISTCMDOUT']._serialized_start=33880 - _globals['_LISTCMDOUT']._serialized_end=33905 - _globals['_LISTCMDOUTMSG']._serialized_start=33907 - _globals['_LISTCMDOUTMSG']._serialized_end=34003 - _globals['_RESOURCEREPORT']._serialized_start=34006 - _globals['_RESOURCEREPORT']._serialized_end=34242 - _globals['_RESOURCEREPORTMSG']._serialized_start=34244 - _globals['_RESOURCEREPORTMSG']._serialized_end=34348 + _COREEVENTINFO_EXTRAENTRY._options = None + _COREEVENTINFO_EXTRAENTRY._serialized_options = b'8\001' + _MAINREPORTARGS_ARGSENTRY._options = None + _MAINREPORTARGS_ARGSENTRY._serialized_options = b'8\001' + _PARTIALPARSINGERROR_EXCINFOENTRY._options = None + _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_options = b'8\001' + _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._options = None + _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_options = b'8\001' + _LOGSNAPSHOTRESULT_CFGENTRY._options = None + _LOGSNAPSHOTRESULT_CFGENTRY._serialized_options = b'8\001' + _STATSLINE_STATSENTRY._options = None + _STATSLINE_STATSENTRY._serialized_options = b'8\001' + _COREEVENTINFO._serialized_start=97 + _COREEVENTINFO._serialized_end=378 + _COREEVENTINFO_EXTRAENTRY._serialized_start=334 + _COREEVENTINFO_EXTRAENTRY._serialized_end=378 + _NODERELATION._serialized_start=380 + _NODERELATION._serialized_end=466 + _NODEINFO._serialized_start=469 + _NODEINFO._serialized_end=742 + _TIMINGINFOMSG._serialized_start=744 + _TIMINGINFOMSG._serialized_end=871 + _RUNRESULTMSG._serialized_start=874 + _RUNRESULTMSG._serialized_end=1083 + _COLUMNTYPE._serialized_start=1085 + _COLUMNTYPE._serialized_end=1177 + _COLUMNCONSTRAINT._serialized_start=1179 + _COLUMNCONSTRAINT._serialized_end=1268 + _MODELCONSTRAINT._serialized_start=1270 + _MODELCONSTRAINT._serialized_end=1354 + _MAINREPORTVERSION._serialized_start=1356 + _MAINREPORTVERSION._serialized_end=1413 + _MAINREPORTVERSIONMSG._serialized_start=1415 + _MAINREPORTVERSIONMSG._serialized_end=1525 + _MAINREPORTARGS._serialized_start=1527 + _MAINREPORTARGS._serialized_end=1641 + _MAINREPORTARGS_ARGSENTRY._serialized_start=1598 + _MAINREPORTARGS_ARGSENTRY._serialized_end=1641 + _MAINREPORTARGSMSG._serialized_start=1643 + _MAINREPORTARGSMSG._serialized_end=1747 + _MAINTRACKINGUSERSTATE._serialized_start=1749 + _MAINTRACKINGUSERSTATE._serialized_end=1792 + _MAINTRACKINGUSERSTATEMSG._serialized_start=1794 + _MAINTRACKINGUSERSTATEMSG._serialized_end=1912 + _MERGEDFROMSTATE._serialized_start=1914 + _MERGEDFROMSTATE._serialized_end=1967 + _MERGEDFROMSTATEMSG._serialized_start=1969 + _MERGEDFROMSTATEMSG._serialized_end=2075 + _MISSINGPROFILETARGET._serialized_start=2077 + _MISSINGPROFILETARGET._serialized_end=2142 + _MISSINGPROFILETARGETMSG._serialized_start=2144 + _MISSINGPROFILETARGETMSG._serialized_end=2260 + _INVALIDOPTIONYAML._serialized_start=2262 + _INVALIDOPTIONYAML._serialized_end=2302 + _INVALIDOPTIONYAMLMSG._serialized_start=2304 + _INVALIDOPTIONYAMLMSG._serialized_end=2414 + _LOGDBTPROJECTERROR._serialized_start=2416 + _LOGDBTPROJECTERROR._serialized_end=2449 + _LOGDBTPROJECTERRORMSG._serialized_start=2451 + _LOGDBTPROJECTERRORMSG._serialized_end=2563 + _LOGDBTPROFILEERROR._serialized_start=2565 + _LOGDBTPROFILEERROR._serialized_end=2616 + _LOGDBTPROFILEERRORMSG._serialized_start=2618 + _LOGDBTPROFILEERRORMSG._serialized_end=2730 + _STARTERPROJECTPATH._serialized_start=2732 + _STARTERPROJECTPATH._serialized_end=2765 + _STARTERPROJECTPATHMSG._serialized_start=2767 + _STARTERPROJECTPATHMSG._serialized_end=2879 + _CONFIGFOLDERDIRECTORY._serialized_start=2881 + _CONFIGFOLDERDIRECTORY._serialized_end=2917 + _CONFIGFOLDERDIRECTORYMSG._serialized_start=2919 + _CONFIGFOLDERDIRECTORYMSG._serialized_end=3037 + _NOSAMPLEPROFILEFOUND._serialized_start=3039 + _NOSAMPLEPROFILEFOUND._serialized_end=3078 + _NOSAMPLEPROFILEFOUNDMSG._serialized_start=3080 + _NOSAMPLEPROFILEFOUNDMSG._serialized_end=3196 + _PROFILEWRITTENWITHSAMPLE._serialized_start=3198 + _PROFILEWRITTENWITHSAMPLE._serialized_end=3252 + _PROFILEWRITTENWITHSAMPLEMSG._serialized_start=3254 + _PROFILEWRITTENWITHSAMPLEMSG._serialized_end=3378 + _PROFILEWRITTENWITHTARGETTEMPLATEYAML._serialized_start=3380 + _PROFILEWRITTENWITHTARGETTEMPLATEYAML._serialized_end=3446 + _PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG._serialized_start=3449 + _PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG._serialized_end=3597 + _PROFILEWRITTENWITHPROJECTTEMPLATEYAML._serialized_start=3599 + _PROFILEWRITTENWITHPROJECTTEMPLATEYAML._serialized_end=3666 + _PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG._serialized_start=3669 + _PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG._serialized_end=3819 + _SETTINGUPPROFILE._serialized_start=3821 + _SETTINGUPPROFILE._serialized_end=3839 + _SETTINGUPPROFILEMSG._serialized_start=3841 + _SETTINGUPPROFILEMSG._serialized_end=3949 + _INVALIDPROFILETEMPLATEYAML._serialized_start=3951 + _INVALIDPROFILETEMPLATEYAML._serialized_end=3979 + _INVALIDPROFILETEMPLATEYAMLMSG._serialized_start=3982 + _INVALIDPROFILETEMPLATEYAMLMSG._serialized_end=4110 + _PROJECTNAMEALREADYEXISTS._serialized_start=4112 + _PROJECTNAMEALREADYEXISTS._serialized_end=4152 + _PROJECTNAMEALREADYEXISTSMSG._serialized_start=4154 + _PROJECTNAMEALREADYEXISTSMSG._serialized_end=4278 + _PROJECTCREATED._serialized_start=4280 + _PROJECTCREATED._serialized_end=4355 + _PROJECTCREATEDMSG._serialized_start=4357 + _PROJECTCREATEDMSG._serialized_end=4461 + _PACKAGEREDIRECTDEPRECATION._serialized_start=4463 + _PACKAGEREDIRECTDEPRECATION._serialized_end=4527 + _PACKAGEREDIRECTDEPRECATIONMSG._serialized_start=4530 + _PACKAGEREDIRECTDEPRECATIONMSG._serialized_end=4658 + _PACKAGEINSTALLPATHDEPRECATION._serialized_start=4660 + _PACKAGEINSTALLPATHDEPRECATION._serialized_end=4691 + _PACKAGEINSTALLPATHDEPRECATIONMSG._serialized_start=4694 + _PACKAGEINSTALLPATHDEPRECATIONMSG._serialized_end=4828 + _CONFIGSOURCEPATHDEPRECATION._serialized_start=4830 + _CONFIGSOURCEPATHDEPRECATION._serialized_end=4902 + _CONFIGSOURCEPATHDEPRECATIONMSG._serialized_start=4905 + _CONFIGSOURCEPATHDEPRECATIONMSG._serialized_end=5035 + _CONFIGDATAPATHDEPRECATION._serialized_start=5037 + _CONFIGDATAPATHDEPRECATION._serialized_end=5107 + _CONFIGDATAPATHDEPRECATIONMSG._serialized_start=5109 + _CONFIGDATAPATHDEPRECATIONMSG._serialized_end=5235 + _METRICATTRIBUTESRENAMED._serialized_start=5237 + _METRICATTRIBUTESRENAMED._serialized_end=5283 + _METRICATTRIBUTESRENAMEDMSG._serialized_start=5285 + _METRICATTRIBUTESRENAMEDMSG._serialized_end=5407 + _EXPOSURENAMEDEPRECATION._serialized_start=5409 + _EXPOSURENAMEDEPRECATION._serialized_end=5452 + _EXPOSURENAMEDEPRECATIONMSG._serialized_start=5454 + _EXPOSURENAMEDEPRECATIONMSG._serialized_end=5576 + _INTERNALDEPRECATION._serialized_start=5578 + _INTERNALDEPRECATION._serialized_end=5672 + _INTERNALDEPRECATIONMSG._serialized_start=5674 + _INTERNALDEPRECATIONMSG._serialized_end=5788 + _ENVIRONMENTVARIABLERENAMED._serialized_start=5790 + _ENVIRONMENTVARIABLERENAMED._serialized_end=5854 + _ENVIRONMENTVARIABLERENAMEDMSG._serialized_start=5857 + _ENVIRONMENTVARIABLERENAMEDMSG._serialized_end=5985 + _CONFIGLOGPATHDEPRECATION._serialized_start=5987 + _CONFIGLOGPATHDEPRECATION._serialized_end=6038 + _CONFIGLOGPATHDEPRECATIONMSG._serialized_start=6040 + _CONFIGLOGPATHDEPRECATIONMSG._serialized_end=6164 + _CONFIGTARGETPATHDEPRECATION._serialized_start=6166 + _CONFIGTARGETPATHDEPRECATION._serialized_end=6220 + _CONFIGTARGETPATHDEPRECATIONMSG._serialized_start=6223 + _CONFIGTARGETPATHDEPRECATIONMSG._serialized_end=6353 + _TESTSCONFIGDEPRECATION._serialized_start=6355 + _TESTSCONFIGDEPRECATION._serialized_end=6422 + _TESTSCONFIGDEPRECATIONMSG._serialized_start=6424 + _TESTSCONFIGDEPRECATIONMSG._serialized_end=6544 + _PROJECTFLAGSMOVEDDEPRECATION._serialized_start=6546 + _PROJECTFLAGSMOVEDDEPRECATION._serialized_end=6576 + _PROJECTFLAGSMOVEDDEPRECATIONMSG._serialized_start=6579 + _PROJECTFLAGSMOVEDDEPRECATIONMSG._serialized_end=6711 + _SPACESINRESOURCENAMEDEPRECATION._serialized_start=6713 + _SPACESINRESOURCENAMEDEPRECATION._serialized_end=6780 + _SPACESINRESOURCENAMEDEPRECATIONMSG._serialized_start=6783 + _SPACESINRESOURCENAMEDEPRECATIONMSG._serialized_end=6921 + _RESOURCENAMESWITHSPACESDEPRECATION._serialized_start=6923 + _RESOURCENAMESWITHSPACESDEPRECATION._serialized_end=7028 + _RESOURCENAMESWITHSPACESDEPRECATIONMSG._serialized_start=7031 + _RESOURCENAMESWITHSPACESDEPRECATIONMSG._serialized_end=7175 + _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION._serialized_start=7177 + _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION._serialized_end=7272 + _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG._serialized_start=7275 + _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG._serialized_end=7433 + _DEPRECATEDMODEL._serialized_start=7435 + _DEPRECATEDMODEL._serialized_end=7521 + _DEPRECATEDMODELMSG._serialized_start=7523 + _DEPRECATEDMODELMSG._serialized_end=7629 + _INPUTFILEDIFFERROR._serialized_start=7631 + _INPUTFILEDIFFERROR._serialized_end=7686 + _INPUTFILEDIFFERRORMSG._serialized_start=7688 + _INPUTFILEDIFFERRORMSG._serialized_end=7800 + _INVALIDVALUEFORFIELD._serialized_start=7802 + _INVALIDVALUEFORFIELD._serialized_end=7865 + _INVALIDVALUEFORFIELDMSG._serialized_start=7867 + _INVALIDVALUEFORFIELDMSG._serialized_end=7983 + _VALIDATIONWARNING._serialized_start=7985 + _VALIDATIONWARNING._serialized_end=8066 + _VALIDATIONWARNINGMSG._serialized_start=8068 + _VALIDATIONWARNINGMSG._serialized_end=8178 + _PARSEPERFINFOPATH._serialized_start=8180 + _PARSEPERFINFOPATH._serialized_end=8213 + _PARSEPERFINFOPATHMSG._serialized_start=8215 + _PARSEPERFINFOPATHMSG._serialized_end=8325 + _PARTIALPARSINGERRORPROCESSINGFILE._serialized_start=8327 + _PARTIALPARSINGERRORPROCESSINGFILE._serialized_end=8376 + _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_start=8379 + _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_end=8521 + _PARTIALPARSINGERROR._serialized_start=8524 + _PARTIALPARSINGERROR._serialized_end=8658 + _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_start=8612 + _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_end=8658 + _PARTIALPARSINGERRORMSG._serialized_start=8660 + _PARTIALPARSINGERRORMSG._serialized_end=8774 + _PARTIALPARSINGSKIPPARSING._serialized_start=8776 + _PARTIALPARSINGSKIPPARSING._serialized_end=8803 + _PARTIALPARSINGSKIPPARSINGMSG._serialized_start=8805 + _PARTIALPARSINGSKIPPARSINGMSG._serialized_end=8931 + _UNABLETOPARTIALPARSE._serialized_start=8933 + _UNABLETOPARTIALPARSE._serialized_end=8971 + _UNABLETOPARTIALPARSEMSG._serialized_start=8973 + _UNABLETOPARTIALPARSEMSG._serialized_end=9089 + _STATECHECKVARSHASH._serialized_start=9091 + _STATECHECKVARSHASH._serialized_end=9193 + _STATECHECKVARSHASHMSG._serialized_start=9195 + _STATECHECKVARSHASHMSG._serialized_end=9307 + _PARTIALPARSINGNOTENABLED._serialized_start=9309 + _PARTIALPARSINGNOTENABLED._serialized_end=9335 + _PARTIALPARSINGNOTENABLEDMSG._serialized_start=9337 + _PARTIALPARSINGNOTENABLEDMSG._serialized_end=9461 + _PARSEDFILELOADFAILED._serialized_start=9463 + _PARSEDFILELOADFAILED._serialized_end=9530 + _PARSEDFILELOADFAILEDMSG._serialized_start=9532 + _PARSEDFILELOADFAILEDMSG._serialized_end=9648 + _PARTIALPARSINGENABLED._serialized_start=9650 + _PARTIALPARSINGENABLED._serialized_end=9722 + _PARTIALPARSINGENABLEDMSG._serialized_start=9724 + _PARTIALPARSINGENABLEDMSG._serialized_end=9842 + _PARTIALPARSINGFILE._serialized_start=9844 + _PARTIALPARSINGFILE._serialized_end=9900 + _PARTIALPARSINGFILEMSG._serialized_start=9902 + _PARTIALPARSINGFILEMSG._serialized_end=10014 + _INVALIDDISABLEDTARGETINTESTNODE._serialized_start=10017 + _INVALIDDISABLEDTARGETINTESTNODE._serialized_end=10192 + _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_start=10195 + _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_end=10333 + _UNUSEDRESOURCECONFIGPATH._serialized_start=10335 + _UNUSEDRESOURCECONFIGPATH._serialized_end=10390 + _UNUSEDRESOURCECONFIGPATHMSG._serialized_start=10392 + _UNUSEDRESOURCECONFIGPATHMSG._serialized_end=10516 + _SEEDINCREASED._serialized_start=10518 + _SEEDINCREASED._serialized_end=10569 + _SEEDINCREASEDMSG._serialized_start=10571 + _SEEDINCREASEDMSG._serialized_end=10673 + _SEEDEXCEEDSLIMITSAMEPATH._serialized_start=10675 + _SEEDEXCEEDSLIMITSAMEPATH._serialized_end=10737 + _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_start=10739 + _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_end=10863 + _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_start=10865 + _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_end=10933 + _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_start=10936 + _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_end=11072 + _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_start=11074 + _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_end=11166 + _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_start=11169 + _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_end=11307 + _UNUSEDTABLES._serialized_start=11309 + _UNUSEDTABLES._serialized_end=11346 + _UNUSEDTABLESMSG._serialized_start=11348 + _UNUSEDTABLESMSG._serialized_end=11448 + _WRONGRESOURCESCHEMAFILE._serialized_start=11451 + _WRONGRESOURCESCHEMAFILE._serialized_end=11586 + _WRONGRESOURCESCHEMAFILEMSG._serialized_start=11588 + _WRONGRESOURCESCHEMAFILEMSG._serialized_end=11710 + _NONODEFORYAMLKEY._serialized_start=11712 + _NONODEFORYAMLKEY._serialized_end=11787 + _NONODEFORYAMLKEYMSG._serialized_start=11789 + _NONODEFORYAMLKEYMSG._serialized_end=11897 + _MACRONOTFOUNDFORPATCH._serialized_start=11899 + _MACRONOTFOUNDFORPATCH._serialized_end=11942 + _MACRONOTFOUNDFORPATCHMSG._serialized_start=11944 + _MACRONOTFOUNDFORPATCHMSG._serialized_end=12062 + _NODENOTFOUNDORDISABLED._serialized_start=12065 + _NODENOTFOUNDORDISABLED._serialized_end=12249 + _NODENOTFOUNDORDISABLEDMSG._serialized_start=12251 + _NODENOTFOUNDORDISABLEDMSG._serialized_end=12371 + _JINJALOGWARNING._serialized_start=12373 + _JINJALOGWARNING._serialized_end=12445 + _JINJALOGWARNINGMSG._serialized_start=12447 + _JINJALOGWARNINGMSG._serialized_end=12553 + _JINJALOGINFO._serialized_start=12555 + _JINJALOGINFO._serialized_end=12624 + _JINJALOGINFOMSG._serialized_start=12626 + _JINJALOGINFOMSG._serialized_end=12726 + _JINJALOGDEBUG._serialized_start=12728 + _JINJALOGDEBUG._serialized_end=12798 + _JINJALOGDEBUGMSG._serialized_start=12800 + _JINJALOGDEBUGMSG._serialized_end=12902 + _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_start=12905 + _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_end=13079 + _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_start=13082 + _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_end=13218 + _UPCOMINGREFERENCEDEPRECATION._serialized_start=13221 + _UPCOMINGREFERENCEDEPRECATION._serialized_end=13419 + _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_start=13422 + _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_end=13554 + _DEPRECATEDREFERENCE._serialized_start=13557 + _DEPRECATEDREFERENCE._serialized_end=13746 + _DEPRECATEDREFERENCEMSG._serialized_start=13748 + _DEPRECATEDREFERENCEMSG._serialized_end=13862 + _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_start=13864 + _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_end=13924 + _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_start=13927 + _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_end=14075 + _PARSEINLINENODEERROR._serialized_start=14077 + _PARSEINLINENODEERROR._serialized_end=14154 + _PARSEINLINENODEERRORMSG._serialized_start=14156 + _PARSEINLINENODEERRORMSG._serialized_end=14272 + _SEMANTICVALIDATIONFAILURE._serialized_start=14274 + _SEMANTICVALIDATIONFAILURE._serialized_end=14314 + _SEMANTICVALIDATIONFAILUREMSG._serialized_start=14316 + _SEMANTICVALIDATIONFAILUREMSG._serialized_end=14442 + _UNVERSIONEDBREAKINGCHANGE._serialized_start=14445 + _UNVERSIONEDBREAKINGCHANGE._serialized_end=14839 + _UNVERSIONEDBREAKINGCHANGEMSG._serialized_start=14841 + _UNVERSIONEDBREAKINGCHANGEMSG._serialized_end=14967 + _WARNSTATETARGETEQUAL._serialized_start=14969 + _WARNSTATETARGETEQUAL._serialized_end=15011 + _WARNSTATETARGETEQUALMSG._serialized_start=15013 + _WARNSTATETARGETEQUALMSG._serialized_end=15129 + _FRESHNESSCONFIGPROBLEM._serialized_start=15131 + _FRESHNESSCONFIGPROBLEM._serialized_end=15168 + _FRESHNESSCONFIGPROBLEMMSG._serialized_start=15170 + _FRESHNESSCONFIGPROBLEMMSG._serialized_end=15290 + _GITSPARSECHECKOUTSUBDIRECTORY._serialized_start=15292 + _GITSPARSECHECKOUTSUBDIRECTORY._serialized_end=15339 + _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_start=15342 + _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_end=15476 + _GITPROGRESSCHECKOUTREVISION._serialized_start=15478 + _GITPROGRESSCHECKOUTREVISION._serialized_end=15525 + _GITPROGRESSCHECKOUTREVISIONMSG._serialized_start=15528 + _GITPROGRESSCHECKOUTREVISIONMSG._serialized_end=15658 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_start=15660 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_end=15712 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_start=15715 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_end=15865 + _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_start=15867 + _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_end=15913 + _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_start=15916 + _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_end=16054 + _GITNOTHINGTODO._serialized_start=16056 + _GITNOTHINGTODO._serialized_end=16085 + _GITNOTHINGTODOMSG._serialized_start=16087 + _GITNOTHINGTODOMSG._serialized_end=16191 + _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_start=16193 + _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_end=16262 + _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_start=16265 + _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_end=16403 + _GITPROGRESSCHECKEDOUTAT._serialized_start=16405 + _GITPROGRESSCHECKEDOUTAT._serialized_end=16447 + _GITPROGRESSCHECKEDOUTATMSG._serialized_start=16449 + _GITPROGRESSCHECKEDOUTATMSG._serialized_end=16571 + _REGISTRYPROGRESSGETREQUEST._serialized_start=16573 + _REGISTRYPROGRESSGETREQUEST._serialized_end=16614 + _REGISTRYPROGRESSGETREQUESTMSG._serialized_start=16617 + _REGISTRYPROGRESSGETREQUESTMSG._serialized_end=16745 + _REGISTRYPROGRESSGETRESPONSE._serialized_start=16747 + _REGISTRYPROGRESSGETRESPONSE._serialized_end=16808 + _REGISTRYPROGRESSGETRESPONSEMSG._serialized_start=16811 + _REGISTRYPROGRESSGETRESPONSEMSG._serialized_end=16941 + _SELECTORREPORTINVALIDSELECTOR._serialized_start=16943 + _SELECTORREPORTINVALIDSELECTOR._serialized_end=17038 + _SELECTORREPORTINVALIDSELECTORMSG._serialized_start=17041 + _SELECTORREPORTINVALIDSELECTORMSG._serialized_end=17175 + _DEPSNOPACKAGESFOUND._serialized_start=17177 + _DEPSNOPACKAGESFOUND._serialized_end=17198 + _DEPSNOPACKAGESFOUNDMSG._serialized_start=17200 + _DEPSNOPACKAGESFOUNDMSG._serialized_end=17314 + _DEPSSTARTPACKAGEINSTALL._serialized_start=17316 + _DEPSSTARTPACKAGEINSTALL._serialized_end=17363 + _DEPSSTARTPACKAGEINSTALLMSG._serialized_start=17365 + _DEPSSTARTPACKAGEINSTALLMSG._serialized_end=17487 + _DEPSINSTALLINFO._serialized_start=17489 + _DEPSINSTALLINFO._serialized_end=17528 + _DEPSINSTALLINFOMSG._serialized_start=17530 + _DEPSINSTALLINFOMSG._serialized_end=17636 + _DEPSUPDATEAVAILABLE._serialized_start=17638 + _DEPSUPDATEAVAILABLE._serialized_end=17683 + _DEPSUPDATEAVAILABLEMSG._serialized_start=17685 + _DEPSUPDATEAVAILABLEMSG._serialized_end=17799 + _DEPSUPTODATE._serialized_start=17801 + _DEPSUPTODATE._serialized_end=17815 + _DEPSUPTODATEMSG._serialized_start=17817 + _DEPSUPTODATEMSG._serialized_end=17917 + _DEPSLISTSUBDIRECTORY._serialized_start=17919 + _DEPSLISTSUBDIRECTORY._serialized_end=17963 + _DEPSLISTSUBDIRECTORYMSG._serialized_start=17965 + _DEPSLISTSUBDIRECTORYMSG._serialized_end=18081 + _DEPSNOTIFYUPDATESAVAILABLE._serialized_start=18083 + _DEPSNOTIFYUPDATESAVAILABLE._serialized_end=18129 + _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_start=18132 + _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_end=18260 + _REGISTRYINDEXPROGRESSGETREQUEST._serialized_start=18262 + _REGISTRYINDEXPROGRESSGETREQUEST._serialized_end=18308 + _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_start=18311 + _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_end=18449 + _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_start=18451 + _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_end=18517 + _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_start=18520 + _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_end=18660 + _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_start=18662 + _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_end=18712 + _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_start=18715 + _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_end=18851 + _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_start=18853 + _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_end=18903 + _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_start=18906 + _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_end=19042 + _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_start=19044 + _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_end=19097 + _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_start=19100 + _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_end=19242 + _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_start=19244 + _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_end=19295 + _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_start=19298 + _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_end=19436 + _DEPSSETDOWNLOADDIRECTORY._serialized_start=19438 + _DEPSSETDOWNLOADDIRECTORY._serialized_end=19478 + _DEPSSETDOWNLOADDIRECTORYMSG._serialized_start=19480 + _DEPSSETDOWNLOADDIRECTORYMSG._serialized_end=19604 + _DEPSUNPINNED._serialized_start=19606 + _DEPSUNPINNED._serialized_end=19651 + _DEPSUNPINNEDMSG._serialized_start=19653 + _DEPSUNPINNEDMSG._serialized_end=19753 + _NONODESFORSELECTIONCRITERIA._serialized_start=19755 + _NONODESFORSELECTIONCRITERIA._serialized_end=19802 + _NONODESFORSELECTIONCRITERIAMSG._serialized_start=19805 + _NONODESFORSELECTIONCRITERIAMSG._serialized_end=19935 + _DEPSLOCKUPDATING._serialized_start=19937 + _DEPSLOCKUPDATING._serialized_end=19978 + _DEPSLOCKUPDATINGMSG._serialized_start=19980 + _DEPSLOCKUPDATINGMSG._serialized_end=20088 + _DEPSADDPACKAGE._serialized_start=20090 + _DEPSADDPACKAGE._serialized_end=20172 + _DEPSADDPACKAGEMSG._serialized_start=20174 + _DEPSADDPACKAGEMSG._serialized_end=20278 + _DEPSFOUNDDUPLICATEPACKAGE._serialized_start=20281 + _DEPSFOUNDDUPLICATEPACKAGE._serialized_end=20448 + _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_start=20395 + _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_end=20448 + _DEPSFOUNDDUPLICATEPACKAGEMSG._serialized_start=20450 + _DEPSFOUNDDUPLICATEPACKAGEMSG._serialized_end=20576 + _DEPSVERSIONMISSING._serialized_start=20578 + _DEPSVERSIONMISSING._serialized_end=20614 + _DEPSVERSIONMISSINGMSG._serialized_start=20616 + _DEPSVERSIONMISSINGMSG._serialized_end=20728 + _DEPSSCRUBBEDPACKAGENAME._serialized_start=20730 + _DEPSSCRUBBEDPACKAGENAME._serialized_end=20777 + _DEPSSCRUBBEDPACKAGENAMEMSG._serialized_start=20779 + _DEPSSCRUBBEDPACKAGENAMEMSG._serialized_end=20901 + _RUNNINGOPERATIONCAUGHTERROR._serialized_start=20903 + _RUNNINGOPERATIONCAUGHTERROR._serialized_end=20945 + _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_start=20948 + _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_end=21078 + _COMPILECOMPLETE._serialized_start=21080 + _COMPILECOMPLETE._serialized_end=21097 + _COMPILECOMPLETEMSG._serialized_start=21099 + _COMPILECOMPLETEMSG._serialized_end=21205 + _FRESHNESSCHECKCOMPLETE._serialized_start=21207 + _FRESHNESSCHECKCOMPLETE._serialized_end=21231 + _FRESHNESSCHECKCOMPLETEMSG._serialized_start=21233 + _FRESHNESSCHECKCOMPLETEMSG._serialized_end=21353 + _SEEDHEADER._serialized_start=21355 + _SEEDHEADER._serialized_end=21383 + _SEEDHEADERMSG._serialized_start=21385 + _SEEDHEADERMSG._serialized_end=21481 + _SQLRUNNEREXCEPTION._serialized_start=21483 + _SQLRUNNEREXCEPTION._serialized_end=21576 + _SQLRUNNEREXCEPTIONMSG._serialized_start=21578 + _SQLRUNNEREXCEPTIONMSG._serialized_end=21690 + _LOGTESTRESULT._serialized_start=21693 + _LOGTESTRESULT._serialized_end=21861 + _LOGTESTRESULTMSG._serialized_start=21863 + _LOGTESTRESULTMSG._serialized_end=21965 + _LOGSTARTLINE._serialized_start=21967 + _LOGSTARTLINE._serialized_end=22074 + _LOGSTARTLINEMSG._serialized_start=22076 + _LOGSTARTLINEMSG._serialized_end=22176 + _LOGMODELRESULT._serialized_start=22179 + _LOGMODELRESULT._serialized_end=22328 + _LOGMODELRESULTMSG._serialized_start=22330 + _LOGMODELRESULTMSG._serialized_end=22434 + _LOGSNAPSHOTRESULT._serialized_start=22437 + _LOGSNAPSHOTRESULT._serialized_end=22711 + _LOGSNAPSHOTRESULT_CFGENTRY._serialized_start=22669 + _LOGSNAPSHOTRESULT_CFGENTRY._serialized_end=22711 + _LOGSNAPSHOTRESULTMSG._serialized_start=22713 + _LOGSNAPSHOTRESULTMSG._serialized_end=22823 + _LOGSEEDRESULT._serialized_start=22826 + _LOGSEEDRESULT._serialized_end=23011 + _LOGSEEDRESULTMSG._serialized_start=23013 + _LOGSEEDRESULTMSG._serialized_end=23115 + _LOGFRESHNESSRESULT._serialized_start=23118 + _LOGFRESHNESSRESULT._serialized_end=23291 + _LOGFRESHNESSRESULTMSG._serialized_start=23293 + _LOGFRESHNESSRESULTMSG._serialized_end=23405 + _LOGNODENOOPRESULT._serialized_start=23408 + _LOGNODENOOPRESULT._serialized_end=23560 + _LOGNODENOOPRESULTMSG._serialized_start=23562 + _LOGNODENOOPRESULTMSG._serialized_end=23672 + _LOGCANCELLINE._serialized_start=23674 + _LOGCANCELLINE._serialized_end=23708 + _LOGCANCELLINEMSG._serialized_start=23710 + _LOGCANCELLINEMSG._serialized_end=23812 + _DEFAULTSELECTOR._serialized_start=23814 + _DEFAULTSELECTOR._serialized_end=23845 + _DEFAULTSELECTORMSG._serialized_start=23847 + _DEFAULTSELECTORMSG._serialized_end=23953 + _NODESTART._serialized_start=23955 + _NODESTART._serialized_end=24008 + _NODESTARTMSG._serialized_start=24010 + _NODESTARTMSG._serialized_end=24104 + _NODEFINISHED._serialized_start=24106 + _NODEFINISHED._serialized_end=24209 + _NODEFINISHEDMSG._serialized_start=24211 + _NODEFINISHEDMSG._serialized_end=24311 + _QUERYCANCELATIONUNSUPPORTED._serialized_start=24313 + _QUERYCANCELATIONUNSUPPORTED._serialized_end=24356 + _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_start=24359 + _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_end=24489 + _CONCURRENCYLINE._serialized_start=24491 + _CONCURRENCYLINE._serialized_end=24570 + _CONCURRENCYLINEMSG._serialized_start=24572 + _CONCURRENCYLINEMSG._serialized_end=24678 + _WRITINGINJECTEDSQLFORNODE._serialized_start=24680 + _WRITINGINJECTEDSQLFORNODE._serialized_end=24749 + _WRITINGINJECTEDSQLFORNODEMSG._serialized_start=24751 + _WRITINGINJECTEDSQLFORNODEMSG._serialized_end=24877 + _NODECOMPILING._serialized_start=24879 + _NODECOMPILING._serialized_end=24936 + _NODECOMPILINGMSG._serialized_start=24938 + _NODECOMPILINGMSG._serialized_end=25040 + _NODEEXECUTING._serialized_start=25042 + _NODEEXECUTING._serialized_end=25099 + _NODEEXECUTINGMSG._serialized_start=25101 + _NODEEXECUTINGMSG._serialized_end=25203 + _LOGHOOKSTARTLINE._serialized_start=25205 + _LOGHOOKSTARTLINE._serialized_end=25314 + _LOGHOOKSTARTLINEMSG._serialized_start=25316 + _LOGHOOKSTARTLINEMSG._serialized_end=25424 + _LOGHOOKENDLINE._serialized_start=25427 + _LOGHOOKENDLINE._serialized_end=25574 + _LOGHOOKENDLINEMSG._serialized_start=25576 + _LOGHOOKENDLINEMSG._serialized_end=25680 + _SKIPPINGDETAILS._serialized_start=25683 + _SKIPPINGDETAILS._serialized_end=25830 + _SKIPPINGDETAILSMSG._serialized_start=25832 + _SKIPPINGDETAILSMSG._serialized_end=25938 + _NOTHINGTODO._serialized_start=25940 + _NOTHINGTODO._serialized_end=25953 + _NOTHINGTODOMSG._serialized_start=25955 + _NOTHINGTODOMSG._serialized_end=26053 + _RUNNINGOPERATIONUNCAUGHTERROR._serialized_start=26055 + _RUNNINGOPERATIONUNCAUGHTERROR._serialized_end=26099 + _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_start=26102 + _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_end=26236 + _ENDRUNRESULT._serialized_start=26239 + _ENDRUNRESULT._serialized_end=26386 + _ENDRUNRESULTMSG._serialized_start=26388 + _ENDRUNRESULTMSG._serialized_end=26488 + _NONODESSELECTED._serialized_start=26490 + _NONODESSELECTED._serialized_end=26507 + _NONODESSELECTEDMSG._serialized_start=26509 + _NONODESSELECTEDMSG._serialized_end=26615 + _COMMANDCOMPLETED._serialized_start=26617 + _COMMANDCOMPLETED._serialized_end=26736 + _COMMANDCOMPLETEDMSG._serialized_start=26738 + _COMMANDCOMPLETEDMSG._serialized_end=26846 + _SHOWNODE._serialized_start=26848 + _SHOWNODE._serialized_end=26955 + _SHOWNODEMSG._serialized_start=26957 + _SHOWNODEMSG._serialized_end=27049 + _COMPILEDNODE._serialized_start=27051 + _COMPILEDNODE._serialized_end=27163 + _COMPILEDNODEMSG._serialized_start=27165 + _COMPILEDNODEMSG._serialized_end=27265 + _CATCHABLEEXCEPTIONONRUN._serialized_start=27267 + _CATCHABLEEXCEPTIONONRUN._serialized_end=27365 + _CATCHABLEEXCEPTIONONRUNMSG._serialized_start=27367 + _CATCHABLEEXCEPTIONONRUNMSG._serialized_end=27489 + _INTERNALERRORONRUN._serialized_start=27491 + _INTERNALERRORONRUN._serialized_end=27586 + _INTERNALERRORONRUNMSG._serialized_start=27588 + _INTERNALERRORONRUNMSG._serialized_end=27700 + _GENERICEXCEPTIONONRUN._serialized_start=27702 + _GENERICEXCEPTIONONRUN._serialized_end=27819 + _GENERICEXCEPTIONONRUNMSG._serialized_start=27821 + _GENERICEXCEPTIONONRUNMSG._serialized_end=27939 + _NODECONNECTIONRELEASEERROR._serialized_start=27941 + _NODECONNECTIONRELEASEERROR._serialized_end=28019 + _NODECONNECTIONRELEASEERRORMSG._serialized_start=28022 + _NODECONNECTIONRELEASEERRORMSG._serialized_end=28150 + _FOUNDSTATS._serialized_start=28152 + _FOUNDSTATS._serialized_end=28183 + _FOUNDSTATSMSG._serialized_start=28185 + _FOUNDSTATSMSG._serialized_end=28281 + _MAINKEYBOARDINTERRUPT._serialized_start=28283 + _MAINKEYBOARDINTERRUPT._serialized_end=28306 + _MAINKEYBOARDINTERRUPTMSG._serialized_start=28308 + _MAINKEYBOARDINTERRUPTMSG._serialized_end=28426 + _MAINENCOUNTEREDERROR._serialized_start=28428 + _MAINENCOUNTEREDERROR._serialized_end=28463 + _MAINENCOUNTEREDERRORMSG._serialized_start=28465 + _MAINENCOUNTEREDERRORMSG._serialized_end=28581 + _MAINSTACKTRACE._serialized_start=28583 + _MAINSTACKTRACE._serialized_end=28620 + _MAINSTACKTRACEMSG._serialized_start=28622 + _MAINSTACKTRACEMSG._serialized_end=28726 + _TIMINGINFOCOLLECTED._serialized_start=28728 + _TIMINGINFOCOLLECTED._serialized_end=28840 + _TIMINGINFOCOLLECTEDMSG._serialized_start=28842 + _TIMINGINFOCOLLECTEDMSG._serialized_end=28956 + _LOGDEBUGSTACKTRACE._serialized_start=28958 + _LOGDEBUGSTACKTRACE._serialized_end=28996 + _LOGDEBUGSTACKTRACEMSG._serialized_start=28998 + _LOGDEBUGSTACKTRACEMSG._serialized_end=29110 + _CHECKCLEANPATH._serialized_start=29112 + _CHECKCLEANPATH._serialized_end=29142 + _CHECKCLEANPATHMSG._serialized_start=29144 + _CHECKCLEANPATHMSG._serialized_end=29248 + _CONFIRMCLEANPATH._serialized_start=29250 + _CONFIRMCLEANPATH._serialized_end=29282 + _CONFIRMCLEANPATHMSG._serialized_start=29284 + _CONFIRMCLEANPATHMSG._serialized_end=29392 + _PROTECTEDCLEANPATH._serialized_start=29394 + _PROTECTEDCLEANPATH._serialized_end=29428 + _PROTECTEDCLEANPATHMSG._serialized_start=29430 + _PROTECTEDCLEANPATHMSG._serialized_end=29542 + _FINISHEDCLEANPATHS._serialized_start=29544 + _FINISHEDCLEANPATHS._serialized_end=29564 + _FINISHEDCLEANPATHSMSG._serialized_start=29566 + _FINISHEDCLEANPATHSMSG._serialized_end=29678 + _OPENCOMMAND._serialized_start=29680 + _OPENCOMMAND._serialized_end=29733 + _OPENCOMMANDMSG._serialized_start=29735 + _OPENCOMMANDMSG._serialized_end=29833 + _SERVINGDOCSPORT._serialized_start=29835 + _SERVINGDOCSPORT._serialized_end=29883 + _SERVINGDOCSPORTMSG._serialized_start=29885 + _SERVINGDOCSPORTMSG._serialized_end=29991 + _SERVINGDOCSACCESSINFO._serialized_start=29993 + _SERVINGDOCSACCESSINFO._serialized_end=30030 + _SERVINGDOCSACCESSINFOMSG._serialized_start=30032 + _SERVINGDOCSACCESSINFOMSG._serialized_end=30150 + _SERVINGDOCSEXITINFO._serialized_start=30152 + _SERVINGDOCSEXITINFO._serialized_end=30173 + _SERVINGDOCSEXITINFOMSG._serialized_start=30175 + _SERVINGDOCSEXITINFOMSG._serialized_end=30289 + _RUNRESULTWARNING._serialized_start=30291 + _RUNRESULTWARNING._serialized_end=30407 + _RUNRESULTWARNINGMSG._serialized_start=30409 + _RUNRESULTWARNINGMSG._serialized_end=30517 + _RUNRESULTFAILURE._serialized_start=30519 + _RUNRESULTFAILURE._serialized_end=30635 + _RUNRESULTFAILUREMSG._serialized_start=30637 + _RUNRESULTFAILUREMSG._serialized_end=30745 + _STATSLINE._serialized_start=30747 + _STATSLINE._serialized_end=30854 + _STATSLINE_STATSENTRY._serialized_start=30810 + _STATSLINE_STATSENTRY._serialized_end=30854 + _STATSLINEMSG._serialized_start=30856 + _STATSLINEMSG._serialized_end=30950 + _RUNRESULTERROR._serialized_start=30952 + _RUNRESULTERROR._serialized_end=31023 + _RUNRESULTERRORMSG._serialized_start=31025 + _RUNRESULTERRORMSG._serialized_end=31129 + _RUNRESULTERRORNOMESSAGE._serialized_start=31131 + _RUNRESULTERRORNOMESSAGE._serialized_end=31214 + _RUNRESULTERRORNOMESSAGEMSG._serialized_start=31216 + _RUNRESULTERRORNOMESSAGEMSG._serialized_end=31338 + _SQLCOMPILEDPATH._serialized_start=31340 + _SQLCOMPILEDPATH._serialized_end=31413 + _SQLCOMPILEDPATHMSG._serialized_start=31415 + _SQLCOMPILEDPATHMSG._serialized_end=31521 + _CHECKNODETESTFAILURE._serialized_start=31523 + _CHECKNODETESTFAILURE._serialized_end=31610 + _CHECKNODETESTFAILUREMSG._serialized_start=31612 + _CHECKNODETESTFAILUREMSG._serialized_end=31728 + _ENDOFRUNSUMMARY._serialized_start=31730 + _ENDOFRUNSUMMARY._serialized_end=31817 + _ENDOFRUNSUMMARYMSG._serialized_start=31819 + _ENDOFRUNSUMMARYMSG._serialized_end=31925 + _LOGSKIPBECAUSEERROR._serialized_start=31927 + _LOGSKIPBECAUSEERROR._serialized_end=32012 + _LOGSKIPBECAUSEERRORMSG._serialized_start=32014 + _LOGSKIPBECAUSEERRORMSG._serialized_end=32128 + _ENSUREGITINSTALLED._serialized_start=32130 + _ENSUREGITINSTALLED._serialized_end=32150 + _ENSUREGITINSTALLEDMSG._serialized_start=32152 + _ENSUREGITINSTALLEDMSG._serialized_end=32264 + _DEPSCREATINGLOCALSYMLINK._serialized_start=32266 + _DEPSCREATINGLOCALSYMLINK._serialized_end=32292 + _DEPSCREATINGLOCALSYMLINKMSG._serialized_start=32294 + _DEPSCREATINGLOCALSYMLINKMSG._serialized_end=32418 + _DEPSSYMLINKNOTAVAILABLE._serialized_start=32420 + _DEPSSYMLINKNOTAVAILABLE._serialized_end=32445 + _DEPSSYMLINKNOTAVAILABLEMSG._serialized_start=32447 + _DEPSSYMLINKNOTAVAILABLEMSG._serialized_end=32569 + _DISABLETRACKING._serialized_start=32571 + _DISABLETRACKING._serialized_end=32588 + _DISABLETRACKINGMSG._serialized_start=32590 + _DISABLETRACKINGMSG._serialized_end=32696 + _SENDINGEVENT._serialized_start=32698 + _SENDINGEVENT._serialized_end=32728 + _SENDINGEVENTMSG._serialized_start=32730 + _SENDINGEVENTMSG._serialized_end=32830 + _SENDEVENTFAILURE._serialized_start=32832 + _SENDEVENTFAILURE._serialized_end=32850 + _SENDEVENTFAILUREMSG._serialized_start=32852 + _SENDEVENTFAILUREMSG._serialized_end=32960 + _FLUSHEVENTS._serialized_start=32962 + _FLUSHEVENTS._serialized_end=32975 + _FLUSHEVENTSMSG._serialized_start=32977 + _FLUSHEVENTSMSG._serialized_end=33075 + _FLUSHEVENTSFAILURE._serialized_start=33077 + _FLUSHEVENTSFAILURE._serialized_end=33097 + _FLUSHEVENTSFAILUREMSG._serialized_start=33099 + _FLUSHEVENTSFAILUREMSG._serialized_end=33211 + _TRACKINGINITIALIZEFAILURE._serialized_start=33213 + _TRACKINGINITIALIZEFAILURE._serialized_end=33258 + _TRACKINGINITIALIZEFAILUREMSG._serialized_start=33260 + _TRACKINGINITIALIZEFAILUREMSG._serialized_end=33386 + _RUNRESULTWARNINGMESSAGE._serialized_start=33388 + _RUNRESULTWARNINGMESSAGE._serialized_end=33468 + _RUNRESULTWARNINGMESSAGEMSG._serialized_start=33470 + _RUNRESULTWARNINGMESSAGEMSG._serialized_end=33592 + _DEBUGCMDOUT._serialized_start=33594 + _DEBUGCMDOUT._serialized_end=33620 + _DEBUGCMDOUTMSG._serialized_start=33622 + _DEBUGCMDOUTMSG._serialized_end=33720 + _DEBUGCMDRESULT._serialized_start=33722 + _DEBUGCMDRESULT._serialized_end=33751 + _DEBUGCMDRESULTMSG._serialized_start=33753 + _DEBUGCMDRESULTMSG._serialized_end=33857 + _LISTCMDOUT._serialized_start=33859 + _LISTCMDOUT._serialized_end=33884 + _LISTCMDOUTMSG._serialized_start=33886 + _LISTCMDOUTMSG._serialized_end=33982 + _RESOURCEREPORT._serialized_start=33985 + _RESOURCEREPORT._serialized_end=34221 + _RESOURCEREPORTMSG._serialized_start=34223 + _RESOURCEREPORTMSG._serialized_end=34327 # @@protoc_insertion_point(module_scope) diff --git a/core/dbt/events/types.py b/core/dbt/events/types.py index b618ec6ba22..b7dc75f9a2e 100644 --- a/core/dbt/events/types.py +++ b/core/dbt/events/types.py @@ -413,16 +413,12 @@ def message(self) -> str: return warning_tag(f"Deprecated functionality\n\n{description}") -class SpacesInModelNameDeprecation(DynamicLevel): +class SpacesInResourceNameDeprecation(DynamicLevel): def code(self) -> str: return "D014" def message(self) -> str: - version = ".v" + self.model_version if self.model_version else "" - description = ( - f"Model `{self.model_name}{version}` has spaces in its name. This is deprecated and " - "may cause errors when using dbt." - ) + description = f"Found spaces in the name of `{self.unique_id}`" if self.level == EventLevel.ERROR.value: description = error_tag(description) @@ -432,22 +428,17 @@ def message(self) -> str: return line_wrap_message(description) -class TotalModelNamesWithSpacesDeprecation(DynamicLevel): +class ResourceNamesWithSpacesDeprecation(WarnLevel): def code(self) -> str: return "D015" def message(self) -> str: - description = f"Spaces in model names found in {self.count_invalid_names} model(s), which is deprecated." + description = f"Spaces found in {self.count_invalid_names} resource name(s). This is deprecated, and may lead to errors when using dbt. For more information: https://docs.getdbt.com/reference/global-configs/legacy-behaviors#require_resource_names_without_spaces" if self.show_debug_hint: description += " Run again with `--debug` to see them all." - if self.level == EventLevel.ERROR.value: - description = error_tag(description) - elif self.level == EventLevel.WARN.value: - description = warning_tag(description) - - return line_wrap_message(description) + return line_wrap_message(warning_tag(description)) class PackageMaterializationOverrideDeprecation(WarnLevel): diff --git a/core/dbt/parser/manifest.py b/core/dbt/parser/manifest.py index be41ee473a5..1d39fd21f6e 100644 --- a/core/dbt/parser/manifest.py +++ b/core/dbt/parser/manifest.py @@ -29,6 +29,7 @@ from dbt.mp_context import get_mp_context import msgpack +import dbt.deprecations import dbt.exceptions import dbt.tracking import dbt.utils @@ -64,9 +65,8 @@ StateCheckVarsHash, DeprecatedModel, DeprecatedReference, - SpacesInModelNameDeprecation, - TotalModelNamesWithSpacesDeprecation, UpcomingReferenceDeprecation, + SpacesInResourceNameDeprecation, ) from dbt.logger import DbtProcessState from dbt.node_types import NodeType, AccessType @@ -525,7 +525,7 @@ def load(self) -> Manifest: self.write_manifest_for_partial_parse() self.check_for_model_deprecations() - self.check_for_spaces_in_model_names() + self.check_for_spaces_in_resource_names() return self.manifest @@ -627,46 +627,43 @@ def check_for_model_deprecations(self): ) ) - def check_for_spaces_in_model_names(self): - """Validates that model names do not contain spaces + def check_for_spaces_in_resource_names(self): + """Validates that resource names do not contain spaces If `DEBUG` flag is `False`, logs only first bad model name If `DEBUG` flag is `True`, logs every bad model name - If `ALLOW_SPACES_IN_MODEL_NAMES` is `False`, logs are `ERROR` level and an exception is raised if any names are bad - If `ALLOW_SPACES_IN_MODEL_NAMES` is `True`, logs are `WARN` level + If `REQUIRE_RESOURCE_NAMES_WITHOUT_SPACES` is `True`, logs are `ERROR` level and an exception is raised if any names are bad + If `REQUIRE_RESOURCE_NAMES_WITHOUT_SPACES` is `False`, logs are `WARN` level """ - improper_model_names = 0 + improper_resource_names = 0 level = ( - EventLevel.WARN - if self.root_project.args.ALLOW_SPACES_IN_MODEL_NAMES - else EventLevel.ERROR + EventLevel.ERROR + if self.root_project.args.REQUIRE_RESOURCE_NAMES_WITHOUT_SPACES + else EventLevel.WARN ) for node in self.manifest.nodes.values(): - if isinstance(node, ModelNode) and " " in node.name: - if improper_model_names == 0 or self.root_project.args.DEBUG: + if " " in node.name: + if improper_resource_names == 0 or self.root_project.args.DEBUG: fire_event( - SpacesInModelNameDeprecation( - model_name=node.name, - model_version=version_to_str(node.version), + SpacesInResourceNameDeprecation( + unique_id=node.unique_id, level=level.value, ), level=level, ) - improper_model_names += 1 - - if improper_model_names > 0: - fire_event( - TotalModelNamesWithSpacesDeprecation( - count_invalid_names=improper_model_names, - show_debug_hint=(not self.root_project.args.DEBUG), - level=level.value, - ), - level=level, - ) - - if level == EventLevel.ERROR: - raise DbtValidationError("Model names cannot contain spaces") + improper_resource_names += 1 + + if improper_resource_names > 0: + if level == EventLevel.WARN: + flags = get_flags() + dbt.deprecations.warn( + "resource-names-with-spaces", + count_invalid_names=improper_resource_names, + show_debug_hint=(not flags.DEBUG), + ) + else: # ERROR level + raise DbtValidationError("Resource names cannot contain spaces") def load_and_parse_macros(self, project_parser_files): for project in self.all_projects.values(): diff --git a/tests/functional/manifest_validations/test_check_for_spaces_in_model_names.py b/tests/functional/manifest_validations/test_check_for_spaces_in_model_names.py index 45ca4bab307..8f4c9a1b756 100644 --- a/tests/functional/manifest_validations/test_check_for_spaces_in_model_names.py +++ b/tests/functional/manifest_validations/test_check_for_spaces_in_model_names.py @@ -2,8 +2,9 @@ from dataclasses import dataclass, field from dbt.cli.main import dbtRunner +from dbt import deprecations from dbt_common.events.base_types import BaseEvent, EventLevel, EventMsg -from dbt.events.types import SpacesInModelNameDeprecation, TotalModelNamesWithSpacesDeprecation +from dbt.events.types import SpacesInResourceNameDeprecation, ResourceNamesWithSpacesDeprecation from dbt.tests.util import update_config_file from typing import Dict, List @@ -20,7 +21,7 @@ def catch(self, event: EventMsg): class TestSpacesInModelNamesHappyPath: def test_no_warnings_when_no_spaces_in_name(self, project) -> None: - event_catcher = EventCatcher(SpacesInModelNameDeprecation) + event_catcher = EventCatcher(SpacesInResourceNameDeprecation) runner = dbtRunner(callbacks=[event_catcher.catch]) runner.invoke(["parse"]) assert len(event_catcher.caught_events) == 0 @@ -34,15 +35,15 @@ def models(self) -> Dict[str, str]: } def tests_warning_when_spaces_in_name(self, project) -> None: - event_catcher = EventCatcher(SpacesInModelNameDeprecation) - total_catcher = EventCatcher(TotalModelNamesWithSpacesDeprecation) + event_catcher = EventCatcher(SpacesInResourceNameDeprecation) + total_catcher = EventCatcher(ResourceNamesWithSpacesDeprecation) runner = dbtRunner(callbacks=[event_catcher.catch, total_catcher.catch]) runner.invoke(["parse"]) assert len(total_catcher.caught_events) == 1 assert len(event_catcher.caught_events) == 1 event = event_catcher.caught_events[0] - assert "Model `my model` has spaces in its name. This is deprecated" in event.info.msg + assert "Found spaces in the name of `model.test.my model`" in event.info.msg assert event.info.level == EventLevel.WARN @@ -55,21 +56,21 @@ def models(self) -> Dict[str, str]: } def tests_debug_when_spaces_in_name(self, project) -> None: - spaces_check_catcher = EventCatcher(SpacesInModelNameDeprecation) - total_catcher = EventCatcher(TotalModelNamesWithSpacesDeprecation) + deprecations.reset_deprecations() + spaces_check_catcher = EventCatcher(SpacesInResourceNameDeprecation) + total_catcher = EventCatcher(ResourceNamesWithSpacesDeprecation) runner = dbtRunner(callbacks=[spaces_check_catcher.catch, total_catcher.catch]) runner.invoke(["parse"]) assert len(spaces_check_catcher.caught_events) == 1 assert len(total_catcher.caught_events) == 1 - assert ( - "Spaces in model names found in 2 model(s)" in total_catcher.caught_events[0].info.msg - ) + assert "Spaces found in 2 resource name(s)" in total_catcher.caught_events[0].info.msg assert ( "Run again with `--debug` to see them all." in total_catcher.caught_events[0].info.msg ) - spaces_check_catcher = EventCatcher(SpacesInModelNameDeprecation) - total_catcher = EventCatcher(TotalModelNamesWithSpacesDeprecation) + deprecations.reset_deprecations() + spaces_check_catcher = EventCatcher(SpacesInResourceNameDeprecation) + total_catcher = EventCatcher(ResourceNamesWithSpacesDeprecation) runner = dbtRunner(callbacks=[spaces_check_catcher.catch, total_catcher.catch]) runner.invoke(["parse", "--debug"]) assert len(spaces_check_catcher.caught_events) == 2 @@ -87,20 +88,20 @@ def models(self) -> Dict[str, str]: "my model.sql": "select 1 as id", } - def test_dont_allow_spaces_in_model_names(self, project): - spaces_check_catcher = EventCatcher(SpacesInModelNameDeprecation) + def test_require_resource_names_without_spaces(self, project): + spaces_check_catcher = EventCatcher(SpacesInResourceNameDeprecation) runner = dbtRunner(callbacks=[spaces_check_catcher.catch]) runner.invoke(["parse"]) assert len(spaces_check_catcher.caught_events) == 1 assert spaces_check_catcher.caught_events[0].info.level == EventLevel.WARN - config_patch = {"flags": {"allow_spaces_in_model_names": False}} + config_patch = {"flags": {"require_resource_names_without_spaces": True}} update_config_file(config_patch, project.project_root, "dbt_project.yml") - spaces_check_catcher = EventCatcher(SpacesInModelNameDeprecation) + spaces_check_catcher = EventCatcher(SpacesInResourceNameDeprecation) runner = dbtRunner(callbacks=[spaces_check_catcher.catch]) result = runner.invoke(["parse"]) assert not result.success - assert "Model names cannot contain spaces" in result.exception.__str__() + assert "Resource names cannot contain spaces" in result.exception.__str__() assert len(spaces_check_catcher.caught_events) == 1 assert spaces_check_catcher.caught_events[0].info.level == EventLevel.ERROR diff --git a/tests/unit/test_events.py b/tests/unit/test_events.py index b6dda4575ac..0f561fa6f20 100644 --- a/tests/unit/test_events.py +++ b/tests/unit/test_events.py @@ -154,8 +154,8 @@ def test_event_codes(self): adapter_types.CollectFreshnessReturnSignature(), core_types.TestsConfigDeprecation(deprecated_path="", exp_path=""), core_types.ProjectFlagsMovedDeprecation(), - core_types.SpacesInModelNameDeprecation(model_name="", model_version="", level=""), - core_types.TotalModelNamesWithSpacesDeprecation( + core_types.SpacesInResourceNameDeprecation(unique_id="", level=""), + core_types.ResourceNamesWithSpacesDeprecation( count_invalid_names=1, show_debug_hint=True, level="" ), core_types.PackageMaterializationOverrideDeprecation( From dd7edb2bbef38e2f566ed612b459ca331ca719c7 Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Mon, 29 Apr 2024 14:07:52 +0200 Subject: [PATCH 03/11] Add deprecation warning for source_freshness_run_project_hooks --- core/dbt/deprecations.py | 6 + core/dbt/events/core_types.proto | 8 + core/dbt/events/core_types_pb2.py | 1142 +++++++++-------- core/dbt/events/types.py | 10 + core/dbt/task/freshness.py | 4 + .../sources/test_source_freshness.py | 33 + tests/unit/test_events.py | 1 + 7 files changed, 635 insertions(+), 569 deletions(-) diff --git a/core/dbt/deprecations.py b/core/dbt/deprecations.py index d92703b3f34..86c820b6553 100644 --- a/core/dbt/deprecations.py +++ b/core/dbt/deprecations.py @@ -128,6 +128,11 @@ class ResourceNamesWithSpacesDeprecation(DBTDeprecation): _event = "ResourceNamesWithSpacesDeprecation" +class SourceFreshnessProjectHooksNotRun(DBTDeprecation): + _name = "source-freshness-project-hooks" + _event = "SourceFreshnessProjectHooksNotRun" + + def renamed_env_var(old_name: str, new_name: str): class EnvironmentVariableRenamed(DBTDeprecation): _name = f"environment-variable-renamed:{old_name}" @@ -169,6 +174,7 @@ def warn(name, *args, **kwargs): ProjectFlagsMovedDeprecation(), PackageMaterializationOverrideDeprecation(), ResourceNamesWithSpacesDeprecation(), + SourceFreshnessProjectHooksNotRun(), ] deprecations: Dict[str, DBTDeprecation] = {d.name: d for d in deprecations_list} diff --git a/core/dbt/events/core_types.proto b/core/dbt/events/core_types.proto index 6d62f15a6a7..51da44e6b0d 100644 --- a/core/dbt/events/core_types.proto +++ b/core/dbt/events/core_types.proto @@ -437,6 +437,14 @@ message PackageMaterializationOverrideDeprecationMsg { PackageMaterializationOverrideDeprecation data = 2; } +// D017 +message SourceFreshnessProjectHooksNotRun {} + +message SourceFreshnessProjectHooksNotRunMsg { + CoreEventInfo info = 1; + SourceFreshnessProjectHooksNotRun data = 2; +} + // I065 message DeprecatedModel { string model_name = 1; diff --git a/core/dbt/events/core_types_pb2.py b/core/dbt/events/core_types_pb2.py index c80a91dee31..f9b39665858 100644 --- a/core/dbt/events/core_types_pb2.py +++ b/core/dbt/events/core_types_pb2.py @@ -15,7 +15,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x63ore_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x99\x02\n\rCoreEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x05\x65xtra\x18\t \x03(\x0b\x32%.proto_types.CoreEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"V\n\x0cNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x91\x02\n\x08NodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x30\n\rnode_relation\x18\n \x01(\x0b\x32\x19.proto_types.NodeRelation\"\x7f\n\rTimingInfoMsg\x12\x0c\n\x04name\x18\x01 \x01(\t\x12.\n\nstarted_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xd1\x01\n\x0cRunResultMsg\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12/\n\x0btiming_info\x18\x03 \x03(\x0b\x32\x1a.proto_types.TimingInfoMsg\x12\x0e\n\x06thread\x18\x04 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x31\n\x10\x61\x64\x61pter_response\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"\\\n\nColumnType\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x1c\n\x14previous_column_type\x18\x02 \x01(\t\x12\x1b\n\x13\x63urrent_column_type\x18\x03 \x01(\t\"Y\n\x10\x43olumnConstraint\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x03 \x01(\t\"T\n\x0fModelConstraint\x12\x17\n\x0f\x63onstraint_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"n\n\x14MainReportVersionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.MainReportVersion\"r\n\x0eMainReportArgs\x12\x33\n\x04\x61rgs\x18\x01 \x03(\x0b\x32%.proto_types.MainReportArgs.ArgsEntry\x1a+\n\tArgsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"h\n\x11MainReportArgsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainReportArgs\"+\n\x15MainTrackingUserState\x12\x12\n\nuser_state\x18\x01 \x01(\t\"v\n\x18MainTrackingUserStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainTrackingUserState\"5\n\x0fMergedFromState\x12\x12\n\nnum_merged\x18\x01 \x01(\x05\x12\x0e\n\x06sample\x18\x02 \x03(\t\"j\n\x12MergedFromStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.MergedFromState\"A\n\x14MissingProfileTarget\x12\x14\n\x0cprofile_name\x18\x01 \x01(\t\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\"t\n\x17MissingProfileTargetMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"n\n\x14InvalidOptionYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.InvalidOptionYAML\"!\n\x12LogDbtProjectError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x15LogDbtProjectErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProjectError\"3\n\x12LogDbtProfileError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08profiles\x18\x02 \x03(\t\"p\n\x15LogDbtProfileErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProfileError\"!\n\x12StarterProjectPath\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"p\n\x15StarterProjectPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StarterProjectPath\"$\n\x15\x43onfigFolderDirectory\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"v\n\x18\x43onfigFolderDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConfigFolderDirectory\"\'\n\x14NoSampleProfileFound\x12\x0f\n\x07\x61\x64\x61pter\x18\x01 \x01(\t\"t\n\x17NoSampleProfileFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NoSampleProfileFound\"6\n\x18ProfileWrittenWithSample\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"|\n\x1bProfileWrittenWithSampleMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProfileWrittenWithSample\"B\n$ProfileWrittenWithTargetTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x94\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.ProfileWrittenWithTargetTemplateYAML\"C\n%ProfileWrittenWithProjectTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x96\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"l\n\x13SettingUpProfileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"\x80\x01\n\x1dInvalidProfileTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"|\n\x1bProjectNameAlreadyExistsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProjectNameAlreadyExists\"K\n\x0eProjectCreated\x12\x14\n\x0cproject_name\x18\x01 \x01(\t\x12\x10\n\x08\x64ocs_url\x18\x02 \x01(\t\x12\x11\n\tslack_url\x18\x03 \x01(\t\"h\n\x11ProjectCreatedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ProjectCreated\"@\n\x1aPackageRedirectDeprecation\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1dPackageRedirectDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x86\x01\n PackageInstallPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.PackageInstallPathDeprecation\"H\n\x1b\x43onfigSourcePathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"\x82\x01\n\x1e\x43onfigSourcePathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigSourcePathDeprecation\"F\n\x19\x43onfigDataPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"~\n\x1c\x43onfigDataPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"z\n\x1aMetricAttributesRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.MetricAttributesRenamed\"+\n\x17\x45xposureNameDeprecation\x12\x10\n\x08\x65xposure\x18\x01 \x01(\t\"z\n\x1a\x45xposureNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.ExposureNameDeprecation\"^\n\x13InternalDeprecation\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x18\n\x10suggested_action\x18\x03 \x01(\t\x12\x0f\n\x07version\x18\x04 \x01(\t\"r\n\x16InternalDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.InternalDeprecation\"@\n\x1a\x45nvironmentVariableRenamed\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1d\x45nvironmentVariableRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.EnvironmentVariableRenamed\"3\n\x18\x43onfigLogPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"|\n\x1b\x43onfigLogPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ConfigLogPathDeprecation\"6\n\x1b\x43onfigTargetPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"\x82\x01\n\x1e\x43onfigTargetPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"C\n\x16TestsConfigDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"x\n\x19TestsConfigDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.TestsConfigDeprecation\"\x1e\n\x1cProjectFlagsMovedDeprecation\"\x84\x01\n\x1fProjectFlagsMovedDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.ProjectFlagsMovedDeprecation\"C\n\x1fSpacesInResourceNameDeprecation\x12\x11\n\tunique_id\x18\x01 \x01(\t\x12\r\n\x05level\x18\x02 \x01(\t\"\x8a\x01\n\"SpacesInResourceNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SpacesInResourceNameDeprecation\"i\n\"ResourceNamesWithSpacesDeprecation\x12\x1b\n\x13\x63ount_invalid_names\x18\x01 \x01(\x05\x12\x17\n\x0fshow_debug_hint\x18\x02 \x01(\x08\x12\r\n\x05level\x18\x03 \x01(\t\"\x90\x01\n%ResourceNamesWithSpacesDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12=\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32/.proto_types.ResourceNamesWithSpacesDeprecation\"_\n)PackageMaterializationOverrideDeprecation\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x1c\n\x14materialization_name\x18\x02 \x01(\t\"\x9e\x01\n,PackageMaterializationOverrideDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x44\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x36.proto_types.PackageMaterializationOverrideDeprecation\"V\n\x0f\x44\x65precatedModel\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\x18\n\x10\x64\x65precation_date\x18\x03 \x01(\t\"j\n\x12\x44\x65precatedModelMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DeprecatedModel\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"p\n\x15InputFileDiffErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InputFileDiffError\"?\n\x14InvalidValueForField\x12\x12\n\nfield_name\x18\x01 \x01(\t\x12\x13\n\x0b\x66ield_value\x18\x02 \x01(\t\"t\n\x17InvalidValueForFieldMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.InvalidValueForField\"Q\n\x11ValidationWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x12\n\nfield_name\x18\x02 \x01(\t\x12\x11\n\tnode_name\x18\x03 \x01(\t\"n\n\x14ValidationWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"n\n\x14ParsePerfInfoPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ParsePerfInfoPath\"1\n!PartialParsingErrorProcessingFile\x12\x0c\n\x04\x66ile\x18\x01 \x01(\t\"\x8e\x01\n$PartialParsingErrorProcessingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.PartialParsingErrorProcessingFile\"\x86\x01\n\x13PartialParsingError\x12?\n\x08\x65xc_info\x18\x01 \x03(\x0b\x32-.proto_types.PartialParsingError.ExcInfoEntry\x1a.\n\x0c\x45xcInfoEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"r\n\x16PartialParsingErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"~\n\x1cPartialParsingSkipParsingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"t\n\x17UnableToPartialParseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.UnableToPartialParse\"f\n\x12StateCheckVarsHash\x12\x10\n\x08\x63hecksum\x18\x01 \x01(\t\x12\x0c\n\x04vars\x18\x02 \x01(\t\x12\x0f\n\x07profile\x18\x03 \x01(\t\x12\x0e\n\x06target\x18\x04 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\"p\n\x15StateCheckVarsHashMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"|\n\x1bPartialParsingNotEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.PartialParsingNotEnabled\"C\n\x14ParsedFileLoadFailed\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"t\n\x17ParsedFileLoadFailedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParsedFileLoadFailed\"H\n\x15PartialParsingEnabled\x12\x0f\n\x07\x64\x65leted\x18\x01 \x01(\x05\x12\r\n\x05\x61\x64\x64\x65\x64\x18\x02 \x01(\x05\x12\x0f\n\x07\x63hanged\x18\x03 \x01(\x05\"v\n\x18PartialParsingEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.PartialParsingEnabled\"8\n\x12PartialParsingFile\x12\x0f\n\x07\x66ile_id\x18\x01 \x01(\t\x12\x11\n\toperation\x18\x02 \x01(\t\"p\n\x15PartialParsingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.PartialParsingFile\"\xaf\x01\n\x1fInvalidDisabledTargetInTestNode\x12\x1b\n\x13resource_type_title\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1a\n\x12original_file_path\x18\x03 \x01(\t\x12\x13\n\x0btarget_kind\x18\x04 \x01(\t\x12\x13\n\x0btarget_name\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\"\x8a\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.InvalidDisabledTargetInTestNode\"7\n\x18UnusedResourceConfigPath\x12\x1b\n\x13unused_config_paths\x18\x01 \x03(\t\"|\n\x1bUnusedResourceConfigPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.UnusedResourceConfigPath\"3\n\rSeedIncreased\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"f\n\x10SeedIncreasedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.SeedIncreased\">\n\x18SeedExceedsLimitSamePath\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"|\n\x1bSeedExceedsLimitSamePathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.SeedExceedsLimitSamePath\"D\n\x1eSeedExceedsLimitAndPathChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\x88\x01\n!SeedExceedsLimitAndPathChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.SeedExceedsLimitAndPathChanged\"\\\n\x1fSeedExceedsLimitChecksumChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x15\n\rchecksum_name\x18\x03 \x01(\t\"\x8a\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"d\n\x0fUnusedTablesMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.UnusedTables\"\x87\x01\n\x17WrongResourceSchemaFile\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x1c\n\x14plural_resource_type\x18\x03 \x01(\t\x12\x10\n\x08yaml_key\x18\x04 \x01(\t\x12\x11\n\tfile_path\x18\x05 \x01(\t\"z\n\x1aWrongResourceSchemaFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.WrongResourceSchemaFile\"K\n\x10NoNodeForYamlKey\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x10\n\x08yaml_key\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\"l\n\x13NoNodeForYamlKeyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.NoNodeForYamlKey\"+\n\x15MacroNotFoundForPatch\x12\x12\n\npatch_name\x18\x01 \x01(\t\"v\n\x18MacroNotFoundForPatchMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MacroNotFoundForPatch\"\xb8\x01\n\x16NodeNotFoundOrDisabled\x12\x1a\n\x12original_file_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1b\n\x13resource_type_title\x18\x03 \x01(\t\x12\x13\n\x0btarget_name\x18\x04 \x01(\t\x12\x13\n\x0btarget_kind\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\x12\x10\n\x08\x64isabled\x18\x07 \x01(\t\"x\n\x19NodeNotFoundOrDisabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.NodeNotFoundOrDisabled\"H\n\x0fJinjaLogWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"j\n\x12JinjaLogWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.JinjaLogWarning\"E\n\x0cJinjaLogInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"d\n\x0fJinjaLogInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.JinjaLogInfo\"F\n\rJinjaLogDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"f\n\x10JinjaLogDebugMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.JinjaLogDebug\"\xae\x01\n\x1eUnpinnedRefNewVersionAvailable\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rref_node_name\x18\x02 \x01(\t\x12\x18\n\x10ref_node_package\x18\x03 \x01(\t\x12\x18\n\x10ref_node_version\x18\x04 \x01(\t\x12\x17\n\x0fref_max_version\x18\x05 \x01(\t\"\x88\x01\n!UnpinnedRefNewVersionAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"\xc6\x01\n\x1cUpcomingReferenceDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"\x84\x01\n\x1fUpcomingReferenceDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.UpcomingReferenceDeprecation\"\xbd\x01\n\x13\x44\x65precatedReference\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"r\n\x16\x44\x65precatedReferenceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DeprecatedReference\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x94\x01\n\'UnsupportedConstraintMaterializationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"M\n\x14ParseInlineNodeError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"t\n\x17ParseInlineNodeErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParseInlineNodeError\"(\n\x19SemanticValidationFailure\x12\x0b\n\x03msg\x18\x02 \x01(\t\"~\n\x1cSemanticValidationFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.SemanticValidationFailure\"\x8a\x03\n\x19UnversionedBreakingChange\x12\x18\n\x10\x62reaking_changes\x18\x01 \x03(\t\x12\x12\n\nmodel_name\x18\x02 \x01(\t\x12\x17\n\x0fmodel_file_path\x18\x03 \x01(\t\x12\"\n\x1a\x63ontract_enforced_disabled\x18\x04 \x01(\x08\x12\x17\n\x0f\x63olumns_removed\x18\x05 \x03(\t\x12\x34\n\x13\x63olumn_type_changes\x18\x06 \x03(\x0b\x32\x17.proto_types.ColumnType\x12I\n\"enforced_column_constraint_removed\x18\x07 \x03(\x0b\x32\x1d.proto_types.ColumnConstraint\x12G\n!enforced_model_constraint_removed\x18\x08 \x03(\x0b\x32\x1c.proto_types.ModelConstraint\x12\x1f\n\x17materialization_changed\x18\t \x03(\t\"~\n\x1cUnversionedBreakingChangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.UnversionedBreakingChange\"*\n\x14WarnStateTargetEqual\x12\x12\n\nstate_path\x18\x01 \x01(\t\"t\n\x17WarnStateTargetEqualMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.WarnStateTargetEqual\"%\n\x16\x46reshnessConfigProblem\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x19\x46reshnessConfigProblemMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessConfigProblem\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x86\x01\n GitSparseCheckoutSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"\x82\x01\n\x1eGitProgressCheckoutRevisionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.GitProgressCheckoutRevision\"4\n%GitProgressUpdatingExistingDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x96\x01\n(GitProgressUpdatingExistingDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.GitProgressUpdatingExistingDependency\".\n\x1fGitProgressPullingNewDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x8a\x01\n\"GitProgressPullingNewDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"h\n\x11GitNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.GitNothingToDo\"E\n\x1fGitProgressUpdatedCheckoutRange\x12\x11\n\tstart_sha\x18\x01 \x01(\t\x12\x0f\n\x07\x65nd_sha\x18\x02 \x01(\t\"\x8a\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressUpdatedCheckoutRange\"*\n\x17GitProgressCheckedOutAt\x12\x0f\n\x07\x65nd_sha\x18\x01 \x01(\t\"z\n\x1aGitProgressCheckedOutAtMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x80\x01\n\x1dRegistryProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.RegistryProgressGETRequest\"=\n\x1bRegistryProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x82\x01\n\x1eRegistryProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RegistryProgressGETResponse\"_\n\x1dSelectorReportInvalidSelector\x12\x17\n\x0fvalid_selectors\x18\x01 \x01(\t\x12\x13\n\x0bspec_method\x18\x02 \x01(\t\x12\x10\n\x08raw_spec\x18\x03 \x01(\t\"\x86\x01\n SelectorReportInvalidSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"r\n\x16\x44\x65psNoPackagesFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsNoPackagesFound\"/\n\x17\x44\x65psStartPackageInstall\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psStartPackageInstallMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsStartPackageInstall\"\'\n\x0f\x44\x65psInstallInfo\x12\x14\n\x0cversion_name\x18\x01 \x01(\t\"j\n\x12\x44\x65psInstallInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DepsInstallInfo\"-\n\x13\x44\x65psUpdateAvailable\x12\x16\n\x0eversion_latest\x18\x01 \x01(\t\"r\n\x16\x44\x65psUpdateAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"d\n\x0f\x44\x65psUpToDateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUpToDate\",\n\x14\x44\x65psListSubdirectory\x12\x14\n\x0csubdirectory\x18\x01 \x01(\t\"t\n\x17\x44\x65psListSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.DepsListSubdirectory\".\n\x1a\x44\x65psNotifyUpdatesAvailable\x12\x10\n\x08packages\x18\x01 \x03(\t\"\x80\x01\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryIndexProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryIndexProgressGETRequest\"B\n RegistryIndexProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x8c\x01\n#RegistryIndexProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseUnexpectedTypeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseUnexpectedType\"2\n\x1eRegistryResponseMissingTopKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseMissingTopKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseMissingTopKeys\"5\n!RegistryResponseMissingNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8e\x01\n$RegistryResponseMissingNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryResponseExtraNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryResponseExtraNestedKeys\"(\n\x18\x44\x65psSetDownloadDirectory\x12\x0c\n\x04path\x18\x01 \x01(\t\"|\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsSetDownloadDirectory\"-\n\x0c\x44\x65psUnpinned\x12\x10\n\x08revision\x18\x01 \x01(\t\x12\x0b\n\x03git\x18\x02 \x01(\t\"d\n\x0f\x44\x65psUnpinnedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUnpinned\"/\n\x1bNoNodesForSelectionCriteria\x12\x10\n\x08spec_raw\x18\x01 \x01(\t\"\x82\x01\n\x1eNoNodesForSelectionCriteriaMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\")\n\x10\x44\x65psLockUpdating\x12\x15\n\rlock_filepath\x18\x01 \x01(\t\"l\n\x13\x44\x65psLockUpdatingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.DepsLockUpdating\"R\n\x0e\x44\x65psAddPackage\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\x19\n\x11packages_filepath\x18\x03 \x01(\t\"h\n\x11\x44\x65psAddPackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DepsAddPackage\"\xa7\x01\n\x19\x44\x65psFoundDuplicatePackage\x12S\n\x0fremoved_package\x18\x01 \x03(\x0b\x32:.proto_types.DepsFoundDuplicatePackage.RemovedPackageEntry\x1a\x35\n\x13RemovedPackageEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"~\n\x1c\x44\x65psFoundDuplicatePackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.DepsFoundDuplicatePackage\"$\n\x12\x44\x65psVersionMissing\x12\x0e\n\x06source\x18\x01 \x01(\t\"p\n\x15\x44\x65psVersionMissingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.DepsVersionMissing\"/\n\x17\x44\x65psScrubbedPackageName\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psScrubbedPackageNameMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsScrubbedPackageName\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x82\x01\n\x1eRunningOperationCaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"j\n\x12\x43ompileCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"x\n\x19\x46reshnessCheckCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessCheckComplete\"\x1c\n\nSeedHeader\x12\x0e\n\x06header\x18\x01 \x01(\t\"`\n\rSeedHeaderMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"]\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15SQLRunnerExceptionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SQLRunnerException\"\xa8\x01\n\rLogTestResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\x12\n\nnum_models\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"f\n\x10LogTestResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogTestResult\"k\n\x0cLogStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"d\n\x0fLogStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.LogStartLine\"\x95\x01\n\x0eLogModelResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogModelResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\x92\x02\n\x11LogSnapshotResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x34\n\x03\x63\x66g\x18\x07 \x03(\x0b\x32\'.proto_types.LogSnapshotResult.CfgEntry\x12\x16\n\x0eresult_message\x18\x08 \x01(\t\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"n\n\x14LogSnapshotResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogSnapshotResult\"\xb9\x01\n\rLogSeedResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x16\n\x0eresult_message\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x0e\n\x06schema\x18\x07 \x01(\t\x12\x10\n\x08relation\x18\x08 \x01(\t\"f\n\x10LogSeedResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogSeedResult\"\xad\x01\n\x12LogFreshnessResult\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x13\n\x0bsource_name\x18\x06 \x01(\t\x12\x12\n\ntable_name\x18\x07 \x01(\t\"p\n\x15LogFreshnessResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\x98\x01\n\x11LogNodeNoOpResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"n\n\x14LogNodeNoOpResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogNodeNoOpResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"f\n\x10LogCancelLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogCancelLine\"\x1f\n\x0f\x44\x65\x66\x61ultSelector\x12\x0c\n\x04name\x18\x01 \x01(\t\"j\n\x12\x44\x65\x66\x61ultSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DefaultSelector\"5\n\tNodeStart\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"^\n\x0cNodeStartMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.NodeStart\"g\n\x0cNodeFinished\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12-\n\nrun_result\x18\x02 \x01(\x0b\x32\x19.proto_types.RunResultMsg\"d\n\x0fNodeFinishedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"\x82\x01\n\x1eQueryCancelationUnsupportedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.QueryCancelationUnsupported\"O\n\x0f\x43oncurrencyLine\x12\x13\n\x0bnum_threads\x18\x01 \x01(\x05\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\x12\x12\n\nnode_count\x18\x03 \x01(\x05\"j\n\x12\x43oncurrencyLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ConcurrencyLine\"E\n\x19WritingInjectedSQLForNode\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"~\n\x1cWritingInjectedSQLForNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.WritingInjectedSQLForNode\"9\n\rNodeCompiling\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeCompilingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeCompiling\"9\n\rNodeExecuting\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeExecutingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeExecuting\"m\n\x10LogHookStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"l\n\x13LogHookStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.LogHookStartLine\"\x93\x01\n\x0eLogHookEndLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogHookEndLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogHookEndLine\"\x93\x01\n\x0fSkippingDetails\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x11\n\tnode_name\x18\x04 \x01(\t\x12\r\n\x05index\x18\x05 \x01(\x05\x12\r\n\x05total\x18\x06 \x01(\x05\"j\n\x12SkippingDetailsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"b\n\x0eNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.NothingToDo\",\n\x1dRunningOperationUncaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x86\x01\n RunningOperationUncaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.RunningOperationUncaughtError\"\x93\x01\n\x0c\x45ndRunResult\x12*\n\x07results\x18\x01 \x03(\x0b\x32\x19.proto_types.RunResultMsg\x12\x14\n\x0c\x65lapsed_time\x18\x02 \x01(\x02\x12\x30\n\x0cgenerated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07success\x18\x04 \x01(\x08\"d\n\x0f\x45ndRunResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"j\n\x12NoNodesSelectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.NoNodesSelected\"w\n\x10\x43ommandCompleted\x12\x0f\n\x07\x63ommand\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x65lapsed\x18\x04 \x01(\x02\"l\n\x13\x43ommandCompletedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.CommandCompleted\"k\n\x08ShowNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0f\n\x07preview\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"\\\n\x0bShowNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.ShowNode\"p\n\x0c\x43ompiledNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x10\n\x08\x63ompiled\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"d\n\x0f\x43ompiledNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.CompiledNode\"b\n\x17\x43\x61tchableExceptionOnRun\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"z\n\x1a\x43\x61tchableExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"_\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15InternalErrorOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"u\n\x15GenericExceptionOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"v\n\x18GenericExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.GenericExceptionOnRun\"N\n\x1aNodeConnectionReleaseError\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"\x80\x01\n\x1dNodeConnectionReleaseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.NodeConnectionReleaseError\"\x1f\n\nFoundStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\"`\n\rFoundStatsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"v\n\x18MainKeyboardInterruptMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainKeyboardInterrupt\"#\n\x14MainEncounteredError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x17MainEncounteredErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"h\n\x11MainStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"p\n\x13TimingInfoCollected\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12/\n\x0btiming_info\x18\x02 \x01(\x0b\x32\x1a.proto_types.TimingInfoMsg\"r\n\x16TimingInfoCollectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.TimingInfoCollected\"&\n\x12LogDebugStackTrace\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"p\n\x15LogDebugStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDebugStackTrace\"\x1e\n\x0e\x43heckCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"h\n\x11\x43heckCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CheckCleanPath\" \n\x10\x43onfirmCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x13\x43onfirmCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x15ProtectedCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"p\n\x15\x46inishedCleanPathsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FinishedCleanPaths\"5\n\x0bOpenCommand\x12\x10\n\x08open_cmd\x18\x01 \x01(\t\x12\x14\n\x0cprofiles_dir\x18\x02 \x01(\t\"b\n\x0eOpenCommandMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"j\n\x12ServingDocsPortMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"v\n\x18ServingDocsAccessInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"r\n\x16ServingDocsExitInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"t\n\x10RunResultWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"t\n\x10RunResultFailure\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultFailure\"k\n\tStatsLine\x12\x30\n\x05stats\x18\x01 \x03(\x0b\x32!.proto_types.StatsLine.StatsEntry\x1a,\n\nStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"^\n\x0cStatsLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"G\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"h\n\x11RunResultErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\"S\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultErrorNoMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"I\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"j\n\x12SQLCompiledPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"W\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"t\n\x17\x43heckNodeTestFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"W\n\x0f\x45ndOfRunSummary\x12\x12\n\nnum_errors\x18\x01 \x01(\x05\x12\x14\n\x0cnum_warnings\x18\x02 \x01(\x05\x12\x1a\n\x12keyboard_interrupt\x18\x03 \x01(\x08\"j\n\x12\x45ndOfRunSummaryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.EndOfRunSummary\"U\n\x13LogSkipBecauseError\x12\x0e\n\x06schema\x18\x01 \x01(\t\x12\x10\n\x08relation\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"r\n\x16LogSkipBecauseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"p\n\x15\x45nsureGitInstalledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"|\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"z\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"j\n\x12\x44isableTrackingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DisableTracking\"\x1e\n\x0cSendingEvent\x12\x0e\n\x06kwargs\x18\x01 \x01(\t\"d\n\x0fSendingEventMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"l\n\x13SendEventFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"b\n\x0e\x46lushEventsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"p\n\x15\x46lushEventsFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FlushEventsFailure\"-\n\x19TrackingInitializeFailure\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"~\n\x1cTrackingInitializeFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"P\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultWarningMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultWarningMessage\"\x1a\n\x0b\x44\x65\x62ugCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"b\n\x0e\x44\x65\x62ugCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.DebugCmdOut\"\x1d\n\x0e\x44\x65\x62ugCmdResult\x12\x0b\n\x03msg\x18\x01 \x01(\t\"h\n\x11\x44\x65\x62ugCmdResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DebugCmdResult\"\x19\n\nListCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"`\n\rListCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\xec\x01\n\x0eResourceReport\x12\x14\n\x0c\x63ommand_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63ommand_success\x18\x03 \x01(\x08\x12\x1f\n\x17\x63ommand_wall_clock_time\x18\x04 \x01(\x02\x12\x19\n\x11process_user_time\x18\x05 \x01(\x02\x12\x1b\n\x13process_kernel_time\x18\x06 \x01(\x02\x12\x1b\n\x13process_mem_max_rss\x18\x07 \x01(\x03\x12\x19\n\x11process_in_blocks\x18\x08 \x01(\x03\x12\x1a\n\x12process_out_blocks\x18\t \x01(\x03\"h\n\x11ResourceReportMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ResourceReportb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x63ore_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x99\x02\n\rCoreEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x05\x65xtra\x18\t \x03(\x0b\x32%.proto_types.CoreEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"V\n\x0cNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x91\x02\n\x08NodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x30\n\rnode_relation\x18\n \x01(\x0b\x32\x19.proto_types.NodeRelation\"\x7f\n\rTimingInfoMsg\x12\x0c\n\x04name\x18\x01 \x01(\t\x12.\n\nstarted_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xd1\x01\n\x0cRunResultMsg\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12/\n\x0btiming_info\x18\x03 \x03(\x0b\x32\x1a.proto_types.TimingInfoMsg\x12\x0e\n\x06thread\x18\x04 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x31\n\x10\x61\x64\x61pter_response\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"\\\n\nColumnType\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x1c\n\x14previous_column_type\x18\x02 \x01(\t\x12\x1b\n\x13\x63urrent_column_type\x18\x03 \x01(\t\"Y\n\x10\x43olumnConstraint\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x03 \x01(\t\"T\n\x0fModelConstraint\x12\x17\n\x0f\x63onstraint_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"n\n\x14MainReportVersionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.MainReportVersion\"r\n\x0eMainReportArgs\x12\x33\n\x04\x61rgs\x18\x01 \x03(\x0b\x32%.proto_types.MainReportArgs.ArgsEntry\x1a+\n\tArgsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"h\n\x11MainReportArgsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainReportArgs\"+\n\x15MainTrackingUserState\x12\x12\n\nuser_state\x18\x01 \x01(\t\"v\n\x18MainTrackingUserStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainTrackingUserState\"5\n\x0fMergedFromState\x12\x12\n\nnum_merged\x18\x01 \x01(\x05\x12\x0e\n\x06sample\x18\x02 \x03(\t\"j\n\x12MergedFromStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.MergedFromState\"A\n\x14MissingProfileTarget\x12\x14\n\x0cprofile_name\x18\x01 \x01(\t\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\"t\n\x17MissingProfileTargetMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"n\n\x14InvalidOptionYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.InvalidOptionYAML\"!\n\x12LogDbtProjectError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x15LogDbtProjectErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProjectError\"3\n\x12LogDbtProfileError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08profiles\x18\x02 \x03(\t\"p\n\x15LogDbtProfileErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProfileError\"!\n\x12StarterProjectPath\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"p\n\x15StarterProjectPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StarterProjectPath\"$\n\x15\x43onfigFolderDirectory\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"v\n\x18\x43onfigFolderDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConfigFolderDirectory\"\'\n\x14NoSampleProfileFound\x12\x0f\n\x07\x61\x64\x61pter\x18\x01 \x01(\t\"t\n\x17NoSampleProfileFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NoSampleProfileFound\"6\n\x18ProfileWrittenWithSample\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"|\n\x1bProfileWrittenWithSampleMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProfileWrittenWithSample\"B\n$ProfileWrittenWithTargetTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x94\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.ProfileWrittenWithTargetTemplateYAML\"C\n%ProfileWrittenWithProjectTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x96\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"l\n\x13SettingUpProfileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"\x80\x01\n\x1dInvalidProfileTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"|\n\x1bProjectNameAlreadyExistsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProjectNameAlreadyExists\"K\n\x0eProjectCreated\x12\x14\n\x0cproject_name\x18\x01 \x01(\t\x12\x10\n\x08\x64ocs_url\x18\x02 \x01(\t\x12\x11\n\tslack_url\x18\x03 \x01(\t\"h\n\x11ProjectCreatedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ProjectCreated\"@\n\x1aPackageRedirectDeprecation\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1dPackageRedirectDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x86\x01\n PackageInstallPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.PackageInstallPathDeprecation\"H\n\x1b\x43onfigSourcePathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"\x82\x01\n\x1e\x43onfigSourcePathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigSourcePathDeprecation\"F\n\x19\x43onfigDataPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"~\n\x1c\x43onfigDataPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"z\n\x1aMetricAttributesRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.MetricAttributesRenamed\"+\n\x17\x45xposureNameDeprecation\x12\x10\n\x08\x65xposure\x18\x01 \x01(\t\"z\n\x1a\x45xposureNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.ExposureNameDeprecation\"^\n\x13InternalDeprecation\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x18\n\x10suggested_action\x18\x03 \x01(\t\x12\x0f\n\x07version\x18\x04 \x01(\t\"r\n\x16InternalDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.InternalDeprecation\"@\n\x1a\x45nvironmentVariableRenamed\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1d\x45nvironmentVariableRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.EnvironmentVariableRenamed\"3\n\x18\x43onfigLogPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"|\n\x1b\x43onfigLogPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ConfigLogPathDeprecation\"6\n\x1b\x43onfigTargetPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"\x82\x01\n\x1e\x43onfigTargetPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"C\n\x16TestsConfigDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"x\n\x19TestsConfigDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.TestsConfigDeprecation\"\x1e\n\x1cProjectFlagsMovedDeprecation\"\x84\x01\n\x1fProjectFlagsMovedDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.ProjectFlagsMovedDeprecation\"C\n\x1fSpacesInResourceNameDeprecation\x12\x11\n\tunique_id\x18\x01 \x01(\t\x12\r\n\x05level\x18\x02 \x01(\t\"\x8a\x01\n\"SpacesInResourceNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SpacesInResourceNameDeprecation\"i\n\"ResourceNamesWithSpacesDeprecation\x12\x1b\n\x13\x63ount_invalid_names\x18\x01 \x01(\x05\x12\x17\n\x0fshow_debug_hint\x18\x02 \x01(\x08\x12\r\n\x05level\x18\x03 \x01(\t\"\x90\x01\n%ResourceNamesWithSpacesDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12=\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32/.proto_types.ResourceNamesWithSpacesDeprecation\"_\n)PackageMaterializationOverrideDeprecation\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x1c\n\x14materialization_name\x18\x02 \x01(\t\"\x9e\x01\n,PackageMaterializationOverrideDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x44\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x36.proto_types.PackageMaterializationOverrideDeprecation\"#\n!SourceFreshnessProjectHooksNotRun\"\x8e\x01\n$SourceFreshnessProjectHooksNotRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.SourceFreshnessProjectHooksNotRun\"V\n\x0f\x44\x65precatedModel\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\x18\n\x10\x64\x65precation_date\x18\x03 \x01(\t\"j\n\x12\x44\x65precatedModelMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DeprecatedModel\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"p\n\x15InputFileDiffErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InputFileDiffError\"?\n\x14InvalidValueForField\x12\x12\n\nfield_name\x18\x01 \x01(\t\x12\x13\n\x0b\x66ield_value\x18\x02 \x01(\t\"t\n\x17InvalidValueForFieldMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.InvalidValueForField\"Q\n\x11ValidationWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x12\n\nfield_name\x18\x02 \x01(\t\x12\x11\n\tnode_name\x18\x03 \x01(\t\"n\n\x14ValidationWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"n\n\x14ParsePerfInfoPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ParsePerfInfoPath\"1\n!PartialParsingErrorProcessingFile\x12\x0c\n\x04\x66ile\x18\x01 \x01(\t\"\x8e\x01\n$PartialParsingErrorProcessingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.PartialParsingErrorProcessingFile\"\x86\x01\n\x13PartialParsingError\x12?\n\x08\x65xc_info\x18\x01 \x03(\x0b\x32-.proto_types.PartialParsingError.ExcInfoEntry\x1a.\n\x0c\x45xcInfoEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"r\n\x16PartialParsingErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"~\n\x1cPartialParsingSkipParsingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"t\n\x17UnableToPartialParseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.UnableToPartialParse\"f\n\x12StateCheckVarsHash\x12\x10\n\x08\x63hecksum\x18\x01 \x01(\t\x12\x0c\n\x04vars\x18\x02 \x01(\t\x12\x0f\n\x07profile\x18\x03 \x01(\t\x12\x0e\n\x06target\x18\x04 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\"p\n\x15StateCheckVarsHashMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"|\n\x1bPartialParsingNotEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.PartialParsingNotEnabled\"C\n\x14ParsedFileLoadFailed\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"t\n\x17ParsedFileLoadFailedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParsedFileLoadFailed\"H\n\x15PartialParsingEnabled\x12\x0f\n\x07\x64\x65leted\x18\x01 \x01(\x05\x12\r\n\x05\x61\x64\x64\x65\x64\x18\x02 \x01(\x05\x12\x0f\n\x07\x63hanged\x18\x03 \x01(\x05\"v\n\x18PartialParsingEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.PartialParsingEnabled\"8\n\x12PartialParsingFile\x12\x0f\n\x07\x66ile_id\x18\x01 \x01(\t\x12\x11\n\toperation\x18\x02 \x01(\t\"p\n\x15PartialParsingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.PartialParsingFile\"\xaf\x01\n\x1fInvalidDisabledTargetInTestNode\x12\x1b\n\x13resource_type_title\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1a\n\x12original_file_path\x18\x03 \x01(\t\x12\x13\n\x0btarget_kind\x18\x04 \x01(\t\x12\x13\n\x0btarget_name\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\"\x8a\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.InvalidDisabledTargetInTestNode\"7\n\x18UnusedResourceConfigPath\x12\x1b\n\x13unused_config_paths\x18\x01 \x03(\t\"|\n\x1bUnusedResourceConfigPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.UnusedResourceConfigPath\"3\n\rSeedIncreased\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"f\n\x10SeedIncreasedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.SeedIncreased\">\n\x18SeedExceedsLimitSamePath\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"|\n\x1bSeedExceedsLimitSamePathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.SeedExceedsLimitSamePath\"D\n\x1eSeedExceedsLimitAndPathChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\x88\x01\n!SeedExceedsLimitAndPathChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.SeedExceedsLimitAndPathChanged\"\\\n\x1fSeedExceedsLimitChecksumChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x15\n\rchecksum_name\x18\x03 \x01(\t\"\x8a\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"d\n\x0fUnusedTablesMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.UnusedTables\"\x87\x01\n\x17WrongResourceSchemaFile\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x1c\n\x14plural_resource_type\x18\x03 \x01(\t\x12\x10\n\x08yaml_key\x18\x04 \x01(\t\x12\x11\n\tfile_path\x18\x05 \x01(\t\"z\n\x1aWrongResourceSchemaFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.WrongResourceSchemaFile\"K\n\x10NoNodeForYamlKey\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x10\n\x08yaml_key\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\"l\n\x13NoNodeForYamlKeyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.NoNodeForYamlKey\"+\n\x15MacroNotFoundForPatch\x12\x12\n\npatch_name\x18\x01 \x01(\t\"v\n\x18MacroNotFoundForPatchMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MacroNotFoundForPatch\"\xb8\x01\n\x16NodeNotFoundOrDisabled\x12\x1a\n\x12original_file_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1b\n\x13resource_type_title\x18\x03 \x01(\t\x12\x13\n\x0btarget_name\x18\x04 \x01(\t\x12\x13\n\x0btarget_kind\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\x12\x10\n\x08\x64isabled\x18\x07 \x01(\t\"x\n\x19NodeNotFoundOrDisabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.NodeNotFoundOrDisabled\"H\n\x0fJinjaLogWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"j\n\x12JinjaLogWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.JinjaLogWarning\"E\n\x0cJinjaLogInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"d\n\x0fJinjaLogInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.JinjaLogInfo\"F\n\rJinjaLogDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"f\n\x10JinjaLogDebugMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.JinjaLogDebug\"\xae\x01\n\x1eUnpinnedRefNewVersionAvailable\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rref_node_name\x18\x02 \x01(\t\x12\x18\n\x10ref_node_package\x18\x03 \x01(\t\x12\x18\n\x10ref_node_version\x18\x04 \x01(\t\x12\x17\n\x0fref_max_version\x18\x05 \x01(\t\"\x88\x01\n!UnpinnedRefNewVersionAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"\xc6\x01\n\x1cUpcomingReferenceDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"\x84\x01\n\x1fUpcomingReferenceDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.UpcomingReferenceDeprecation\"\xbd\x01\n\x13\x44\x65precatedReference\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"r\n\x16\x44\x65precatedReferenceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DeprecatedReference\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x94\x01\n\'UnsupportedConstraintMaterializationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"M\n\x14ParseInlineNodeError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"t\n\x17ParseInlineNodeErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParseInlineNodeError\"(\n\x19SemanticValidationFailure\x12\x0b\n\x03msg\x18\x02 \x01(\t\"~\n\x1cSemanticValidationFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.SemanticValidationFailure\"\x8a\x03\n\x19UnversionedBreakingChange\x12\x18\n\x10\x62reaking_changes\x18\x01 \x03(\t\x12\x12\n\nmodel_name\x18\x02 \x01(\t\x12\x17\n\x0fmodel_file_path\x18\x03 \x01(\t\x12\"\n\x1a\x63ontract_enforced_disabled\x18\x04 \x01(\x08\x12\x17\n\x0f\x63olumns_removed\x18\x05 \x03(\t\x12\x34\n\x13\x63olumn_type_changes\x18\x06 \x03(\x0b\x32\x17.proto_types.ColumnType\x12I\n\"enforced_column_constraint_removed\x18\x07 \x03(\x0b\x32\x1d.proto_types.ColumnConstraint\x12G\n!enforced_model_constraint_removed\x18\x08 \x03(\x0b\x32\x1c.proto_types.ModelConstraint\x12\x1f\n\x17materialization_changed\x18\t \x03(\t\"~\n\x1cUnversionedBreakingChangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.UnversionedBreakingChange\"*\n\x14WarnStateTargetEqual\x12\x12\n\nstate_path\x18\x01 \x01(\t\"t\n\x17WarnStateTargetEqualMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.WarnStateTargetEqual\"%\n\x16\x46reshnessConfigProblem\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x19\x46reshnessConfigProblemMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessConfigProblem\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x86\x01\n GitSparseCheckoutSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"\x82\x01\n\x1eGitProgressCheckoutRevisionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.GitProgressCheckoutRevision\"4\n%GitProgressUpdatingExistingDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x96\x01\n(GitProgressUpdatingExistingDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.GitProgressUpdatingExistingDependency\".\n\x1fGitProgressPullingNewDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x8a\x01\n\"GitProgressPullingNewDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"h\n\x11GitNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.GitNothingToDo\"E\n\x1fGitProgressUpdatedCheckoutRange\x12\x11\n\tstart_sha\x18\x01 \x01(\t\x12\x0f\n\x07\x65nd_sha\x18\x02 \x01(\t\"\x8a\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressUpdatedCheckoutRange\"*\n\x17GitProgressCheckedOutAt\x12\x0f\n\x07\x65nd_sha\x18\x01 \x01(\t\"z\n\x1aGitProgressCheckedOutAtMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x80\x01\n\x1dRegistryProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.RegistryProgressGETRequest\"=\n\x1bRegistryProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x82\x01\n\x1eRegistryProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RegistryProgressGETResponse\"_\n\x1dSelectorReportInvalidSelector\x12\x17\n\x0fvalid_selectors\x18\x01 \x01(\t\x12\x13\n\x0bspec_method\x18\x02 \x01(\t\x12\x10\n\x08raw_spec\x18\x03 \x01(\t\"\x86\x01\n SelectorReportInvalidSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"r\n\x16\x44\x65psNoPackagesFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsNoPackagesFound\"/\n\x17\x44\x65psStartPackageInstall\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psStartPackageInstallMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsStartPackageInstall\"\'\n\x0f\x44\x65psInstallInfo\x12\x14\n\x0cversion_name\x18\x01 \x01(\t\"j\n\x12\x44\x65psInstallInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DepsInstallInfo\"-\n\x13\x44\x65psUpdateAvailable\x12\x16\n\x0eversion_latest\x18\x01 \x01(\t\"r\n\x16\x44\x65psUpdateAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"d\n\x0f\x44\x65psUpToDateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUpToDate\",\n\x14\x44\x65psListSubdirectory\x12\x14\n\x0csubdirectory\x18\x01 \x01(\t\"t\n\x17\x44\x65psListSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.DepsListSubdirectory\".\n\x1a\x44\x65psNotifyUpdatesAvailable\x12\x10\n\x08packages\x18\x01 \x03(\t\"\x80\x01\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryIndexProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryIndexProgressGETRequest\"B\n RegistryIndexProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x8c\x01\n#RegistryIndexProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseUnexpectedTypeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseUnexpectedType\"2\n\x1eRegistryResponseMissingTopKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseMissingTopKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseMissingTopKeys\"5\n!RegistryResponseMissingNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8e\x01\n$RegistryResponseMissingNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryResponseExtraNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryResponseExtraNestedKeys\"(\n\x18\x44\x65psSetDownloadDirectory\x12\x0c\n\x04path\x18\x01 \x01(\t\"|\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsSetDownloadDirectory\"-\n\x0c\x44\x65psUnpinned\x12\x10\n\x08revision\x18\x01 \x01(\t\x12\x0b\n\x03git\x18\x02 \x01(\t\"d\n\x0f\x44\x65psUnpinnedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUnpinned\"/\n\x1bNoNodesForSelectionCriteria\x12\x10\n\x08spec_raw\x18\x01 \x01(\t\"\x82\x01\n\x1eNoNodesForSelectionCriteriaMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\")\n\x10\x44\x65psLockUpdating\x12\x15\n\rlock_filepath\x18\x01 \x01(\t\"l\n\x13\x44\x65psLockUpdatingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.DepsLockUpdating\"R\n\x0e\x44\x65psAddPackage\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\x19\n\x11packages_filepath\x18\x03 \x01(\t\"h\n\x11\x44\x65psAddPackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DepsAddPackage\"\xa7\x01\n\x19\x44\x65psFoundDuplicatePackage\x12S\n\x0fremoved_package\x18\x01 \x03(\x0b\x32:.proto_types.DepsFoundDuplicatePackage.RemovedPackageEntry\x1a\x35\n\x13RemovedPackageEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"~\n\x1c\x44\x65psFoundDuplicatePackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.DepsFoundDuplicatePackage\"$\n\x12\x44\x65psVersionMissing\x12\x0e\n\x06source\x18\x01 \x01(\t\"p\n\x15\x44\x65psVersionMissingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.DepsVersionMissing\"/\n\x17\x44\x65psScrubbedPackageName\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psScrubbedPackageNameMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsScrubbedPackageName\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x82\x01\n\x1eRunningOperationCaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"j\n\x12\x43ompileCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"x\n\x19\x46reshnessCheckCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessCheckComplete\"\x1c\n\nSeedHeader\x12\x0e\n\x06header\x18\x01 \x01(\t\"`\n\rSeedHeaderMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"]\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15SQLRunnerExceptionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SQLRunnerException\"\xa8\x01\n\rLogTestResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\x12\n\nnum_models\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"f\n\x10LogTestResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogTestResult\"k\n\x0cLogStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"d\n\x0fLogStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.LogStartLine\"\x95\x01\n\x0eLogModelResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogModelResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\x92\x02\n\x11LogSnapshotResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x34\n\x03\x63\x66g\x18\x07 \x03(\x0b\x32\'.proto_types.LogSnapshotResult.CfgEntry\x12\x16\n\x0eresult_message\x18\x08 \x01(\t\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"n\n\x14LogSnapshotResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogSnapshotResult\"\xb9\x01\n\rLogSeedResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x16\n\x0eresult_message\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x0e\n\x06schema\x18\x07 \x01(\t\x12\x10\n\x08relation\x18\x08 \x01(\t\"f\n\x10LogSeedResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogSeedResult\"\xad\x01\n\x12LogFreshnessResult\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x13\n\x0bsource_name\x18\x06 \x01(\t\x12\x12\n\ntable_name\x18\x07 \x01(\t\"p\n\x15LogFreshnessResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\x98\x01\n\x11LogNodeNoOpResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"n\n\x14LogNodeNoOpResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogNodeNoOpResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"f\n\x10LogCancelLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogCancelLine\"\x1f\n\x0f\x44\x65\x66\x61ultSelector\x12\x0c\n\x04name\x18\x01 \x01(\t\"j\n\x12\x44\x65\x66\x61ultSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DefaultSelector\"5\n\tNodeStart\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"^\n\x0cNodeStartMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.NodeStart\"g\n\x0cNodeFinished\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12-\n\nrun_result\x18\x02 \x01(\x0b\x32\x19.proto_types.RunResultMsg\"d\n\x0fNodeFinishedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"\x82\x01\n\x1eQueryCancelationUnsupportedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.QueryCancelationUnsupported\"O\n\x0f\x43oncurrencyLine\x12\x13\n\x0bnum_threads\x18\x01 \x01(\x05\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\x12\x12\n\nnode_count\x18\x03 \x01(\x05\"j\n\x12\x43oncurrencyLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ConcurrencyLine\"E\n\x19WritingInjectedSQLForNode\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"~\n\x1cWritingInjectedSQLForNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.WritingInjectedSQLForNode\"9\n\rNodeCompiling\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeCompilingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeCompiling\"9\n\rNodeExecuting\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeExecutingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeExecuting\"m\n\x10LogHookStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"l\n\x13LogHookStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.LogHookStartLine\"\x93\x01\n\x0eLogHookEndLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogHookEndLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogHookEndLine\"\x93\x01\n\x0fSkippingDetails\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x11\n\tnode_name\x18\x04 \x01(\t\x12\r\n\x05index\x18\x05 \x01(\x05\x12\r\n\x05total\x18\x06 \x01(\x05\"j\n\x12SkippingDetailsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"b\n\x0eNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.NothingToDo\",\n\x1dRunningOperationUncaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x86\x01\n RunningOperationUncaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.RunningOperationUncaughtError\"\x93\x01\n\x0c\x45ndRunResult\x12*\n\x07results\x18\x01 \x03(\x0b\x32\x19.proto_types.RunResultMsg\x12\x14\n\x0c\x65lapsed_time\x18\x02 \x01(\x02\x12\x30\n\x0cgenerated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07success\x18\x04 \x01(\x08\"d\n\x0f\x45ndRunResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"j\n\x12NoNodesSelectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.NoNodesSelected\"w\n\x10\x43ommandCompleted\x12\x0f\n\x07\x63ommand\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x65lapsed\x18\x04 \x01(\x02\"l\n\x13\x43ommandCompletedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.CommandCompleted\"k\n\x08ShowNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0f\n\x07preview\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"\\\n\x0bShowNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.ShowNode\"p\n\x0c\x43ompiledNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x10\n\x08\x63ompiled\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"d\n\x0f\x43ompiledNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.CompiledNode\"b\n\x17\x43\x61tchableExceptionOnRun\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"z\n\x1a\x43\x61tchableExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"_\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15InternalErrorOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"u\n\x15GenericExceptionOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"v\n\x18GenericExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.GenericExceptionOnRun\"N\n\x1aNodeConnectionReleaseError\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"\x80\x01\n\x1dNodeConnectionReleaseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.NodeConnectionReleaseError\"\x1f\n\nFoundStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\"`\n\rFoundStatsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"v\n\x18MainKeyboardInterruptMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainKeyboardInterrupt\"#\n\x14MainEncounteredError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x17MainEncounteredErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"h\n\x11MainStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"p\n\x13TimingInfoCollected\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12/\n\x0btiming_info\x18\x02 \x01(\x0b\x32\x1a.proto_types.TimingInfoMsg\"r\n\x16TimingInfoCollectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.TimingInfoCollected\"&\n\x12LogDebugStackTrace\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"p\n\x15LogDebugStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDebugStackTrace\"\x1e\n\x0e\x43heckCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"h\n\x11\x43heckCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CheckCleanPath\" \n\x10\x43onfirmCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x13\x43onfirmCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x15ProtectedCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"p\n\x15\x46inishedCleanPathsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FinishedCleanPaths\"5\n\x0bOpenCommand\x12\x10\n\x08open_cmd\x18\x01 \x01(\t\x12\x14\n\x0cprofiles_dir\x18\x02 \x01(\t\"b\n\x0eOpenCommandMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"j\n\x12ServingDocsPortMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"v\n\x18ServingDocsAccessInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"r\n\x16ServingDocsExitInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"t\n\x10RunResultWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"t\n\x10RunResultFailure\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultFailure\"k\n\tStatsLine\x12\x30\n\x05stats\x18\x01 \x03(\x0b\x32!.proto_types.StatsLine.StatsEntry\x1a,\n\nStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"^\n\x0cStatsLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"G\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"h\n\x11RunResultErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\"S\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultErrorNoMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"I\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"j\n\x12SQLCompiledPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"W\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"t\n\x17\x43heckNodeTestFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"W\n\x0f\x45ndOfRunSummary\x12\x12\n\nnum_errors\x18\x01 \x01(\x05\x12\x14\n\x0cnum_warnings\x18\x02 \x01(\x05\x12\x1a\n\x12keyboard_interrupt\x18\x03 \x01(\x08\"j\n\x12\x45ndOfRunSummaryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.EndOfRunSummary\"U\n\x13LogSkipBecauseError\x12\x0e\n\x06schema\x18\x01 \x01(\t\x12\x10\n\x08relation\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"r\n\x16LogSkipBecauseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"p\n\x15\x45nsureGitInstalledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"|\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"z\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"j\n\x12\x44isableTrackingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DisableTracking\"\x1e\n\x0cSendingEvent\x12\x0e\n\x06kwargs\x18\x01 \x01(\t\"d\n\x0fSendingEventMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"l\n\x13SendEventFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"b\n\x0e\x46lushEventsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"p\n\x15\x46lushEventsFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FlushEventsFailure\"-\n\x19TrackingInitializeFailure\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"~\n\x1cTrackingInitializeFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"P\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultWarningMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultWarningMessage\"\x1a\n\x0b\x44\x65\x62ugCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"b\n\x0e\x44\x65\x62ugCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.DebugCmdOut\"\x1d\n\x0e\x44\x65\x62ugCmdResult\x12\x0b\n\x03msg\x18\x01 \x01(\t\"h\n\x11\x44\x65\x62ugCmdResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DebugCmdResult\"\x19\n\nListCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"`\n\rListCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\xec\x01\n\x0eResourceReport\x12\x14\n\x0c\x63ommand_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63ommand_success\x18\x03 \x01(\x08\x12\x1f\n\x17\x63ommand_wall_clock_time\x18\x04 \x01(\x02\x12\x19\n\x11process_user_time\x18\x05 \x01(\x02\x12\x1b\n\x13process_kernel_time\x18\x06 \x01(\x02\x12\x1b\n\x13process_mem_max_rss\x18\x07 \x01(\x03\x12\x19\n\x11process_in_blocks\x18\x08 \x01(\x03\x12\x1a\n\x12process_out_blocks\x18\t \x01(\x03\"h\n\x11ResourceReportMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ResourceReportb\x06proto3') _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals()) _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'core_types_pb2', globals()) @@ -186,572 +186,576 @@ _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION._serialized_end=7272 _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG._serialized_start=7275 _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG._serialized_end=7433 - _DEPRECATEDMODEL._serialized_start=7435 - _DEPRECATEDMODEL._serialized_end=7521 - _DEPRECATEDMODELMSG._serialized_start=7523 - _DEPRECATEDMODELMSG._serialized_end=7629 - _INPUTFILEDIFFERROR._serialized_start=7631 - _INPUTFILEDIFFERROR._serialized_end=7686 - _INPUTFILEDIFFERRORMSG._serialized_start=7688 - _INPUTFILEDIFFERRORMSG._serialized_end=7800 - _INVALIDVALUEFORFIELD._serialized_start=7802 - _INVALIDVALUEFORFIELD._serialized_end=7865 - _INVALIDVALUEFORFIELDMSG._serialized_start=7867 - _INVALIDVALUEFORFIELDMSG._serialized_end=7983 - _VALIDATIONWARNING._serialized_start=7985 - _VALIDATIONWARNING._serialized_end=8066 - _VALIDATIONWARNINGMSG._serialized_start=8068 - _VALIDATIONWARNINGMSG._serialized_end=8178 - _PARSEPERFINFOPATH._serialized_start=8180 - _PARSEPERFINFOPATH._serialized_end=8213 - _PARSEPERFINFOPATHMSG._serialized_start=8215 - _PARSEPERFINFOPATHMSG._serialized_end=8325 - _PARTIALPARSINGERRORPROCESSINGFILE._serialized_start=8327 - _PARTIALPARSINGERRORPROCESSINGFILE._serialized_end=8376 - _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_start=8379 - _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_end=8521 - _PARTIALPARSINGERROR._serialized_start=8524 - _PARTIALPARSINGERROR._serialized_end=8658 - _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_start=8612 - _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_end=8658 - _PARTIALPARSINGERRORMSG._serialized_start=8660 - _PARTIALPARSINGERRORMSG._serialized_end=8774 - _PARTIALPARSINGSKIPPARSING._serialized_start=8776 - _PARTIALPARSINGSKIPPARSING._serialized_end=8803 - _PARTIALPARSINGSKIPPARSINGMSG._serialized_start=8805 - _PARTIALPARSINGSKIPPARSINGMSG._serialized_end=8931 - _UNABLETOPARTIALPARSE._serialized_start=8933 - _UNABLETOPARTIALPARSE._serialized_end=8971 - _UNABLETOPARTIALPARSEMSG._serialized_start=8973 - _UNABLETOPARTIALPARSEMSG._serialized_end=9089 - _STATECHECKVARSHASH._serialized_start=9091 - _STATECHECKVARSHASH._serialized_end=9193 - _STATECHECKVARSHASHMSG._serialized_start=9195 - _STATECHECKVARSHASHMSG._serialized_end=9307 - _PARTIALPARSINGNOTENABLED._serialized_start=9309 - _PARTIALPARSINGNOTENABLED._serialized_end=9335 - _PARTIALPARSINGNOTENABLEDMSG._serialized_start=9337 - _PARTIALPARSINGNOTENABLEDMSG._serialized_end=9461 - _PARSEDFILELOADFAILED._serialized_start=9463 - _PARSEDFILELOADFAILED._serialized_end=9530 - _PARSEDFILELOADFAILEDMSG._serialized_start=9532 - _PARSEDFILELOADFAILEDMSG._serialized_end=9648 - _PARTIALPARSINGENABLED._serialized_start=9650 - _PARTIALPARSINGENABLED._serialized_end=9722 - _PARTIALPARSINGENABLEDMSG._serialized_start=9724 - _PARTIALPARSINGENABLEDMSG._serialized_end=9842 - _PARTIALPARSINGFILE._serialized_start=9844 - _PARTIALPARSINGFILE._serialized_end=9900 - _PARTIALPARSINGFILEMSG._serialized_start=9902 - _PARTIALPARSINGFILEMSG._serialized_end=10014 - _INVALIDDISABLEDTARGETINTESTNODE._serialized_start=10017 - _INVALIDDISABLEDTARGETINTESTNODE._serialized_end=10192 - _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_start=10195 - _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_end=10333 - _UNUSEDRESOURCECONFIGPATH._serialized_start=10335 - _UNUSEDRESOURCECONFIGPATH._serialized_end=10390 - _UNUSEDRESOURCECONFIGPATHMSG._serialized_start=10392 - _UNUSEDRESOURCECONFIGPATHMSG._serialized_end=10516 - _SEEDINCREASED._serialized_start=10518 - _SEEDINCREASED._serialized_end=10569 - _SEEDINCREASEDMSG._serialized_start=10571 - _SEEDINCREASEDMSG._serialized_end=10673 - _SEEDEXCEEDSLIMITSAMEPATH._serialized_start=10675 - _SEEDEXCEEDSLIMITSAMEPATH._serialized_end=10737 - _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_start=10739 - _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_end=10863 - _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_start=10865 - _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_end=10933 - _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_start=10936 - _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_end=11072 - _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_start=11074 - _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_end=11166 - _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_start=11169 - _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_end=11307 - _UNUSEDTABLES._serialized_start=11309 - _UNUSEDTABLES._serialized_end=11346 - _UNUSEDTABLESMSG._serialized_start=11348 - _UNUSEDTABLESMSG._serialized_end=11448 - _WRONGRESOURCESCHEMAFILE._serialized_start=11451 - _WRONGRESOURCESCHEMAFILE._serialized_end=11586 - _WRONGRESOURCESCHEMAFILEMSG._serialized_start=11588 - _WRONGRESOURCESCHEMAFILEMSG._serialized_end=11710 - _NONODEFORYAMLKEY._serialized_start=11712 - _NONODEFORYAMLKEY._serialized_end=11787 - _NONODEFORYAMLKEYMSG._serialized_start=11789 - _NONODEFORYAMLKEYMSG._serialized_end=11897 - _MACRONOTFOUNDFORPATCH._serialized_start=11899 - _MACRONOTFOUNDFORPATCH._serialized_end=11942 - _MACRONOTFOUNDFORPATCHMSG._serialized_start=11944 - _MACRONOTFOUNDFORPATCHMSG._serialized_end=12062 - _NODENOTFOUNDORDISABLED._serialized_start=12065 - _NODENOTFOUNDORDISABLED._serialized_end=12249 - _NODENOTFOUNDORDISABLEDMSG._serialized_start=12251 - _NODENOTFOUNDORDISABLEDMSG._serialized_end=12371 - _JINJALOGWARNING._serialized_start=12373 - _JINJALOGWARNING._serialized_end=12445 - _JINJALOGWARNINGMSG._serialized_start=12447 - _JINJALOGWARNINGMSG._serialized_end=12553 - _JINJALOGINFO._serialized_start=12555 - _JINJALOGINFO._serialized_end=12624 - _JINJALOGINFOMSG._serialized_start=12626 - _JINJALOGINFOMSG._serialized_end=12726 - _JINJALOGDEBUG._serialized_start=12728 - _JINJALOGDEBUG._serialized_end=12798 - _JINJALOGDEBUGMSG._serialized_start=12800 - _JINJALOGDEBUGMSG._serialized_end=12902 - _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_start=12905 - _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_end=13079 - _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_start=13082 - _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_end=13218 - _UPCOMINGREFERENCEDEPRECATION._serialized_start=13221 - _UPCOMINGREFERENCEDEPRECATION._serialized_end=13419 - _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_start=13422 - _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_end=13554 - _DEPRECATEDREFERENCE._serialized_start=13557 - _DEPRECATEDREFERENCE._serialized_end=13746 - _DEPRECATEDREFERENCEMSG._serialized_start=13748 - _DEPRECATEDREFERENCEMSG._serialized_end=13862 - _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_start=13864 - _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_end=13924 - _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_start=13927 - _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_end=14075 - _PARSEINLINENODEERROR._serialized_start=14077 - _PARSEINLINENODEERROR._serialized_end=14154 - _PARSEINLINENODEERRORMSG._serialized_start=14156 - _PARSEINLINENODEERRORMSG._serialized_end=14272 - _SEMANTICVALIDATIONFAILURE._serialized_start=14274 - _SEMANTICVALIDATIONFAILURE._serialized_end=14314 - _SEMANTICVALIDATIONFAILUREMSG._serialized_start=14316 - _SEMANTICVALIDATIONFAILUREMSG._serialized_end=14442 - _UNVERSIONEDBREAKINGCHANGE._serialized_start=14445 - _UNVERSIONEDBREAKINGCHANGE._serialized_end=14839 - _UNVERSIONEDBREAKINGCHANGEMSG._serialized_start=14841 - _UNVERSIONEDBREAKINGCHANGEMSG._serialized_end=14967 - _WARNSTATETARGETEQUAL._serialized_start=14969 - _WARNSTATETARGETEQUAL._serialized_end=15011 - _WARNSTATETARGETEQUALMSG._serialized_start=15013 - _WARNSTATETARGETEQUALMSG._serialized_end=15129 - _FRESHNESSCONFIGPROBLEM._serialized_start=15131 - _FRESHNESSCONFIGPROBLEM._serialized_end=15168 - _FRESHNESSCONFIGPROBLEMMSG._serialized_start=15170 - _FRESHNESSCONFIGPROBLEMMSG._serialized_end=15290 - _GITSPARSECHECKOUTSUBDIRECTORY._serialized_start=15292 - _GITSPARSECHECKOUTSUBDIRECTORY._serialized_end=15339 - _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_start=15342 - _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_end=15476 - _GITPROGRESSCHECKOUTREVISION._serialized_start=15478 - _GITPROGRESSCHECKOUTREVISION._serialized_end=15525 - _GITPROGRESSCHECKOUTREVISIONMSG._serialized_start=15528 - _GITPROGRESSCHECKOUTREVISIONMSG._serialized_end=15658 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_start=15660 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_end=15712 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_start=15715 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_end=15865 - _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_start=15867 - _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_end=15913 - _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_start=15916 - _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_end=16054 - _GITNOTHINGTODO._serialized_start=16056 - _GITNOTHINGTODO._serialized_end=16085 - _GITNOTHINGTODOMSG._serialized_start=16087 - _GITNOTHINGTODOMSG._serialized_end=16191 - _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_start=16193 - _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_end=16262 - _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_start=16265 - _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_end=16403 - _GITPROGRESSCHECKEDOUTAT._serialized_start=16405 - _GITPROGRESSCHECKEDOUTAT._serialized_end=16447 - _GITPROGRESSCHECKEDOUTATMSG._serialized_start=16449 - _GITPROGRESSCHECKEDOUTATMSG._serialized_end=16571 - _REGISTRYPROGRESSGETREQUEST._serialized_start=16573 - _REGISTRYPROGRESSGETREQUEST._serialized_end=16614 - _REGISTRYPROGRESSGETREQUESTMSG._serialized_start=16617 - _REGISTRYPROGRESSGETREQUESTMSG._serialized_end=16745 - _REGISTRYPROGRESSGETRESPONSE._serialized_start=16747 - _REGISTRYPROGRESSGETRESPONSE._serialized_end=16808 - _REGISTRYPROGRESSGETRESPONSEMSG._serialized_start=16811 - _REGISTRYPROGRESSGETRESPONSEMSG._serialized_end=16941 - _SELECTORREPORTINVALIDSELECTOR._serialized_start=16943 - _SELECTORREPORTINVALIDSELECTOR._serialized_end=17038 - _SELECTORREPORTINVALIDSELECTORMSG._serialized_start=17041 - _SELECTORREPORTINVALIDSELECTORMSG._serialized_end=17175 - _DEPSNOPACKAGESFOUND._serialized_start=17177 - _DEPSNOPACKAGESFOUND._serialized_end=17198 - _DEPSNOPACKAGESFOUNDMSG._serialized_start=17200 - _DEPSNOPACKAGESFOUNDMSG._serialized_end=17314 - _DEPSSTARTPACKAGEINSTALL._serialized_start=17316 - _DEPSSTARTPACKAGEINSTALL._serialized_end=17363 - _DEPSSTARTPACKAGEINSTALLMSG._serialized_start=17365 - _DEPSSTARTPACKAGEINSTALLMSG._serialized_end=17487 - _DEPSINSTALLINFO._serialized_start=17489 - _DEPSINSTALLINFO._serialized_end=17528 - _DEPSINSTALLINFOMSG._serialized_start=17530 - _DEPSINSTALLINFOMSG._serialized_end=17636 - _DEPSUPDATEAVAILABLE._serialized_start=17638 - _DEPSUPDATEAVAILABLE._serialized_end=17683 - _DEPSUPDATEAVAILABLEMSG._serialized_start=17685 - _DEPSUPDATEAVAILABLEMSG._serialized_end=17799 - _DEPSUPTODATE._serialized_start=17801 - _DEPSUPTODATE._serialized_end=17815 - _DEPSUPTODATEMSG._serialized_start=17817 - _DEPSUPTODATEMSG._serialized_end=17917 - _DEPSLISTSUBDIRECTORY._serialized_start=17919 - _DEPSLISTSUBDIRECTORY._serialized_end=17963 - _DEPSLISTSUBDIRECTORYMSG._serialized_start=17965 - _DEPSLISTSUBDIRECTORYMSG._serialized_end=18081 - _DEPSNOTIFYUPDATESAVAILABLE._serialized_start=18083 - _DEPSNOTIFYUPDATESAVAILABLE._serialized_end=18129 - _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_start=18132 - _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_end=18260 - _REGISTRYINDEXPROGRESSGETREQUEST._serialized_start=18262 - _REGISTRYINDEXPROGRESSGETREQUEST._serialized_end=18308 - _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_start=18311 - _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_end=18449 - _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_start=18451 - _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_end=18517 - _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_start=18520 - _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_end=18660 - _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_start=18662 - _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_end=18712 - _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_start=18715 - _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_end=18851 - _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_start=18853 - _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_end=18903 - _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_start=18906 - _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_end=19042 - _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_start=19044 - _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_end=19097 - _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_start=19100 - _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_end=19242 - _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_start=19244 - _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_end=19295 - _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_start=19298 - _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_end=19436 - _DEPSSETDOWNLOADDIRECTORY._serialized_start=19438 - _DEPSSETDOWNLOADDIRECTORY._serialized_end=19478 - _DEPSSETDOWNLOADDIRECTORYMSG._serialized_start=19480 - _DEPSSETDOWNLOADDIRECTORYMSG._serialized_end=19604 - _DEPSUNPINNED._serialized_start=19606 - _DEPSUNPINNED._serialized_end=19651 - _DEPSUNPINNEDMSG._serialized_start=19653 - _DEPSUNPINNEDMSG._serialized_end=19753 - _NONODESFORSELECTIONCRITERIA._serialized_start=19755 - _NONODESFORSELECTIONCRITERIA._serialized_end=19802 - _NONODESFORSELECTIONCRITERIAMSG._serialized_start=19805 - _NONODESFORSELECTIONCRITERIAMSG._serialized_end=19935 - _DEPSLOCKUPDATING._serialized_start=19937 - _DEPSLOCKUPDATING._serialized_end=19978 - _DEPSLOCKUPDATINGMSG._serialized_start=19980 - _DEPSLOCKUPDATINGMSG._serialized_end=20088 - _DEPSADDPACKAGE._serialized_start=20090 - _DEPSADDPACKAGE._serialized_end=20172 - _DEPSADDPACKAGEMSG._serialized_start=20174 - _DEPSADDPACKAGEMSG._serialized_end=20278 - _DEPSFOUNDDUPLICATEPACKAGE._serialized_start=20281 - _DEPSFOUNDDUPLICATEPACKAGE._serialized_end=20448 - _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_start=20395 - _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_end=20448 - _DEPSFOUNDDUPLICATEPACKAGEMSG._serialized_start=20450 - _DEPSFOUNDDUPLICATEPACKAGEMSG._serialized_end=20576 - _DEPSVERSIONMISSING._serialized_start=20578 - _DEPSVERSIONMISSING._serialized_end=20614 - _DEPSVERSIONMISSINGMSG._serialized_start=20616 - _DEPSVERSIONMISSINGMSG._serialized_end=20728 - _DEPSSCRUBBEDPACKAGENAME._serialized_start=20730 - _DEPSSCRUBBEDPACKAGENAME._serialized_end=20777 - _DEPSSCRUBBEDPACKAGENAMEMSG._serialized_start=20779 - _DEPSSCRUBBEDPACKAGENAMEMSG._serialized_end=20901 - _RUNNINGOPERATIONCAUGHTERROR._serialized_start=20903 - _RUNNINGOPERATIONCAUGHTERROR._serialized_end=20945 - _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_start=20948 - _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_end=21078 - _COMPILECOMPLETE._serialized_start=21080 - _COMPILECOMPLETE._serialized_end=21097 - _COMPILECOMPLETEMSG._serialized_start=21099 - _COMPILECOMPLETEMSG._serialized_end=21205 - _FRESHNESSCHECKCOMPLETE._serialized_start=21207 - _FRESHNESSCHECKCOMPLETE._serialized_end=21231 - _FRESHNESSCHECKCOMPLETEMSG._serialized_start=21233 - _FRESHNESSCHECKCOMPLETEMSG._serialized_end=21353 - _SEEDHEADER._serialized_start=21355 - _SEEDHEADER._serialized_end=21383 - _SEEDHEADERMSG._serialized_start=21385 - _SEEDHEADERMSG._serialized_end=21481 - _SQLRUNNEREXCEPTION._serialized_start=21483 - _SQLRUNNEREXCEPTION._serialized_end=21576 - _SQLRUNNEREXCEPTIONMSG._serialized_start=21578 - _SQLRUNNEREXCEPTIONMSG._serialized_end=21690 - _LOGTESTRESULT._serialized_start=21693 - _LOGTESTRESULT._serialized_end=21861 - _LOGTESTRESULTMSG._serialized_start=21863 - _LOGTESTRESULTMSG._serialized_end=21965 - _LOGSTARTLINE._serialized_start=21967 - _LOGSTARTLINE._serialized_end=22074 - _LOGSTARTLINEMSG._serialized_start=22076 - _LOGSTARTLINEMSG._serialized_end=22176 - _LOGMODELRESULT._serialized_start=22179 - _LOGMODELRESULT._serialized_end=22328 - _LOGMODELRESULTMSG._serialized_start=22330 - _LOGMODELRESULTMSG._serialized_end=22434 - _LOGSNAPSHOTRESULT._serialized_start=22437 - _LOGSNAPSHOTRESULT._serialized_end=22711 - _LOGSNAPSHOTRESULT_CFGENTRY._serialized_start=22669 - _LOGSNAPSHOTRESULT_CFGENTRY._serialized_end=22711 - _LOGSNAPSHOTRESULTMSG._serialized_start=22713 - _LOGSNAPSHOTRESULTMSG._serialized_end=22823 - _LOGSEEDRESULT._serialized_start=22826 - _LOGSEEDRESULT._serialized_end=23011 - _LOGSEEDRESULTMSG._serialized_start=23013 - _LOGSEEDRESULTMSG._serialized_end=23115 - _LOGFRESHNESSRESULT._serialized_start=23118 - _LOGFRESHNESSRESULT._serialized_end=23291 - _LOGFRESHNESSRESULTMSG._serialized_start=23293 - _LOGFRESHNESSRESULTMSG._serialized_end=23405 - _LOGNODENOOPRESULT._serialized_start=23408 - _LOGNODENOOPRESULT._serialized_end=23560 - _LOGNODENOOPRESULTMSG._serialized_start=23562 - _LOGNODENOOPRESULTMSG._serialized_end=23672 - _LOGCANCELLINE._serialized_start=23674 - _LOGCANCELLINE._serialized_end=23708 - _LOGCANCELLINEMSG._serialized_start=23710 - _LOGCANCELLINEMSG._serialized_end=23812 - _DEFAULTSELECTOR._serialized_start=23814 - _DEFAULTSELECTOR._serialized_end=23845 - _DEFAULTSELECTORMSG._serialized_start=23847 - _DEFAULTSELECTORMSG._serialized_end=23953 - _NODESTART._serialized_start=23955 - _NODESTART._serialized_end=24008 - _NODESTARTMSG._serialized_start=24010 - _NODESTARTMSG._serialized_end=24104 - _NODEFINISHED._serialized_start=24106 - _NODEFINISHED._serialized_end=24209 - _NODEFINISHEDMSG._serialized_start=24211 - _NODEFINISHEDMSG._serialized_end=24311 - _QUERYCANCELATIONUNSUPPORTED._serialized_start=24313 - _QUERYCANCELATIONUNSUPPORTED._serialized_end=24356 - _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_start=24359 - _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_end=24489 - _CONCURRENCYLINE._serialized_start=24491 - _CONCURRENCYLINE._serialized_end=24570 - _CONCURRENCYLINEMSG._serialized_start=24572 - _CONCURRENCYLINEMSG._serialized_end=24678 - _WRITINGINJECTEDSQLFORNODE._serialized_start=24680 - _WRITINGINJECTEDSQLFORNODE._serialized_end=24749 - _WRITINGINJECTEDSQLFORNODEMSG._serialized_start=24751 - _WRITINGINJECTEDSQLFORNODEMSG._serialized_end=24877 - _NODECOMPILING._serialized_start=24879 - _NODECOMPILING._serialized_end=24936 - _NODECOMPILINGMSG._serialized_start=24938 - _NODECOMPILINGMSG._serialized_end=25040 - _NODEEXECUTING._serialized_start=25042 - _NODEEXECUTING._serialized_end=25099 - _NODEEXECUTINGMSG._serialized_start=25101 - _NODEEXECUTINGMSG._serialized_end=25203 - _LOGHOOKSTARTLINE._serialized_start=25205 - _LOGHOOKSTARTLINE._serialized_end=25314 - _LOGHOOKSTARTLINEMSG._serialized_start=25316 - _LOGHOOKSTARTLINEMSG._serialized_end=25424 - _LOGHOOKENDLINE._serialized_start=25427 - _LOGHOOKENDLINE._serialized_end=25574 - _LOGHOOKENDLINEMSG._serialized_start=25576 - _LOGHOOKENDLINEMSG._serialized_end=25680 - _SKIPPINGDETAILS._serialized_start=25683 - _SKIPPINGDETAILS._serialized_end=25830 - _SKIPPINGDETAILSMSG._serialized_start=25832 - _SKIPPINGDETAILSMSG._serialized_end=25938 - _NOTHINGTODO._serialized_start=25940 - _NOTHINGTODO._serialized_end=25953 - _NOTHINGTODOMSG._serialized_start=25955 - _NOTHINGTODOMSG._serialized_end=26053 - _RUNNINGOPERATIONUNCAUGHTERROR._serialized_start=26055 - _RUNNINGOPERATIONUNCAUGHTERROR._serialized_end=26099 - _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_start=26102 - _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_end=26236 - _ENDRUNRESULT._serialized_start=26239 - _ENDRUNRESULT._serialized_end=26386 - _ENDRUNRESULTMSG._serialized_start=26388 - _ENDRUNRESULTMSG._serialized_end=26488 - _NONODESSELECTED._serialized_start=26490 - _NONODESSELECTED._serialized_end=26507 - _NONODESSELECTEDMSG._serialized_start=26509 - _NONODESSELECTEDMSG._serialized_end=26615 - _COMMANDCOMPLETED._serialized_start=26617 - _COMMANDCOMPLETED._serialized_end=26736 - _COMMANDCOMPLETEDMSG._serialized_start=26738 - _COMMANDCOMPLETEDMSG._serialized_end=26846 - _SHOWNODE._serialized_start=26848 - _SHOWNODE._serialized_end=26955 - _SHOWNODEMSG._serialized_start=26957 - _SHOWNODEMSG._serialized_end=27049 - _COMPILEDNODE._serialized_start=27051 - _COMPILEDNODE._serialized_end=27163 - _COMPILEDNODEMSG._serialized_start=27165 - _COMPILEDNODEMSG._serialized_end=27265 - _CATCHABLEEXCEPTIONONRUN._serialized_start=27267 - _CATCHABLEEXCEPTIONONRUN._serialized_end=27365 - _CATCHABLEEXCEPTIONONRUNMSG._serialized_start=27367 - _CATCHABLEEXCEPTIONONRUNMSG._serialized_end=27489 - _INTERNALERRORONRUN._serialized_start=27491 - _INTERNALERRORONRUN._serialized_end=27586 - _INTERNALERRORONRUNMSG._serialized_start=27588 - _INTERNALERRORONRUNMSG._serialized_end=27700 - _GENERICEXCEPTIONONRUN._serialized_start=27702 - _GENERICEXCEPTIONONRUN._serialized_end=27819 - _GENERICEXCEPTIONONRUNMSG._serialized_start=27821 - _GENERICEXCEPTIONONRUNMSG._serialized_end=27939 - _NODECONNECTIONRELEASEERROR._serialized_start=27941 - _NODECONNECTIONRELEASEERROR._serialized_end=28019 - _NODECONNECTIONRELEASEERRORMSG._serialized_start=28022 - _NODECONNECTIONRELEASEERRORMSG._serialized_end=28150 - _FOUNDSTATS._serialized_start=28152 - _FOUNDSTATS._serialized_end=28183 - _FOUNDSTATSMSG._serialized_start=28185 - _FOUNDSTATSMSG._serialized_end=28281 - _MAINKEYBOARDINTERRUPT._serialized_start=28283 - _MAINKEYBOARDINTERRUPT._serialized_end=28306 - _MAINKEYBOARDINTERRUPTMSG._serialized_start=28308 - _MAINKEYBOARDINTERRUPTMSG._serialized_end=28426 - _MAINENCOUNTEREDERROR._serialized_start=28428 - _MAINENCOUNTEREDERROR._serialized_end=28463 - _MAINENCOUNTEREDERRORMSG._serialized_start=28465 - _MAINENCOUNTEREDERRORMSG._serialized_end=28581 - _MAINSTACKTRACE._serialized_start=28583 - _MAINSTACKTRACE._serialized_end=28620 - _MAINSTACKTRACEMSG._serialized_start=28622 - _MAINSTACKTRACEMSG._serialized_end=28726 - _TIMINGINFOCOLLECTED._serialized_start=28728 - _TIMINGINFOCOLLECTED._serialized_end=28840 - _TIMINGINFOCOLLECTEDMSG._serialized_start=28842 - _TIMINGINFOCOLLECTEDMSG._serialized_end=28956 - _LOGDEBUGSTACKTRACE._serialized_start=28958 - _LOGDEBUGSTACKTRACE._serialized_end=28996 - _LOGDEBUGSTACKTRACEMSG._serialized_start=28998 - _LOGDEBUGSTACKTRACEMSG._serialized_end=29110 - _CHECKCLEANPATH._serialized_start=29112 - _CHECKCLEANPATH._serialized_end=29142 - _CHECKCLEANPATHMSG._serialized_start=29144 - _CHECKCLEANPATHMSG._serialized_end=29248 - _CONFIRMCLEANPATH._serialized_start=29250 - _CONFIRMCLEANPATH._serialized_end=29282 - _CONFIRMCLEANPATHMSG._serialized_start=29284 - _CONFIRMCLEANPATHMSG._serialized_end=29392 - _PROTECTEDCLEANPATH._serialized_start=29394 - _PROTECTEDCLEANPATH._serialized_end=29428 - _PROTECTEDCLEANPATHMSG._serialized_start=29430 - _PROTECTEDCLEANPATHMSG._serialized_end=29542 - _FINISHEDCLEANPATHS._serialized_start=29544 - _FINISHEDCLEANPATHS._serialized_end=29564 - _FINISHEDCLEANPATHSMSG._serialized_start=29566 - _FINISHEDCLEANPATHSMSG._serialized_end=29678 - _OPENCOMMAND._serialized_start=29680 - _OPENCOMMAND._serialized_end=29733 - _OPENCOMMANDMSG._serialized_start=29735 - _OPENCOMMANDMSG._serialized_end=29833 - _SERVINGDOCSPORT._serialized_start=29835 - _SERVINGDOCSPORT._serialized_end=29883 - _SERVINGDOCSPORTMSG._serialized_start=29885 - _SERVINGDOCSPORTMSG._serialized_end=29991 - _SERVINGDOCSACCESSINFO._serialized_start=29993 - _SERVINGDOCSACCESSINFO._serialized_end=30030 - _SERVINGDOCSACCESSINFOMSG._serialized_start=30032 - _SERVINGDOCSACCESSINFOMSG._serialized_end=30150 - _SERVINGDOCSEXITINFO._serialized_start=30152 - _SERVINGDOCSEXITINFO._serialized_end=30173 - _SERVINGDOCSEXITINFOMSG._serialized_start=30175 - _SERVINGDOCSEXITINFOMSG._serialized_end=30289 - _RUNRESULTWARNING._serialized_start=30291 - _RUNRESULTWARNING._serialized_end=30407 - _RUNRESULTWARNINGMSG._serialized_start=30409 - _RUNRESULTWARNINGMSG._serialized_end=30517 - _RUNRESULTFAILURE._serialized_start=30519 - _RUNRESULTFAILURE._serialized_end=30635 - _RUNRESULTFAILUREMSG._serialized_start=30637 - _RUNRESULTFAILUREMSG._serialized_end=30745 - _STATSLINE._serialized_start=30747 - _STATSLINE._serialized_end=30854 - _STATSLINE_STATSENTRY._serialized_start=30810 - _STATSLINE_STATSENTRY._serialized_end=30854 - _STATSLINEMSG._serialized_start=30856 - _STATSLINEMSG._serialized_end=30950 - _RUNRESULTERROR._serialized_start=30952 - _RUNRESULTERROR._serialized_end=31023 - _RUNRESULTERRORMSG._serialized_start=31025 - _RUNRESULTERRORMSG._serialized_end=31129 - _RUNRESULTERRORNOMESSAGE._serialized_start=31131 - _RUNRESULTERRORNOMESSAGE._serialized_end=31214 - _RUNRESULTERRORNOMESSAGEMSG._serialized_start=31216 - _RUNRESULTERRORNOMESSAGEMSG._serialized_end=31338 - _SQLCOMPILEDPATH._serialized_start=31340 - _SQLCOMPILEDPATH._serialized_end=31413 - _SQLCOMPILEDPATHMSG._serialized_start=31415 - _SQLCOMPILEDPATHMSG._serialized_end=31521 - _CHECKNODETESTFAILURE._serialized_start=31523 - _CHECKNODETESTFAILURE._serialized_end=31610 - _CHECKNODETESTFAILUREMSG._serialized_start=31612 - _CHECKNODETESTFAILUREMSG._serialized_end=31728 - _ENDOFRUNSUMMARY._serialized_start=31730 - _ENDOFRUNSUMMARY._serialized_end=31817 - _ENDOFRUNSUMMARYMSG._serialized_start=31819 - _ENDOFRUNSUMMARYMSG._serialized_end=31925 - _LOGSKIPBECAUSEERROR._serialized_start=31927 - _LOGSKIPBECAUSEERROR._serialized_end=32012 - _LOGSKIPBECAUSEERRORMSG._serialized_start=32014 - _LOGSKIPBECAUSEERRORMSG._serialized_end=32128 - _ENSUREGITINSTALLED._serialized_start=32130 - _ENSUREGITINSTALLED._serialized_end=32150 - _ENSUREGITINSTALLEDMSG._serialized_start=32152 - _ENSUREGITINSTALLEDMSG._serialized_end=32264 - _DEPSCREATINGLOCALSYMLINK._serialized_start=32266 - _DEPSCREATINGLOCALSYMLINK._serialized_end=32292 - _DEPSCREATINGLOCALSYMLINKMSG._serialized_start=32294 - _DEPSCREATINGLOCALSYMLINKMSG._serialized_end=32418 - _DEPSSYMLINKNOTAVAILABLE._serialized_start=32420 - _DEPSSYMLINKNOTAVAILABLE._serialized_end=32445 - _DEPSSYMLINKNOTAVAILABLEMSG._serialized_start=32447 - _DEPSSYMLINKNOTAVAILABLEMSG._serialized_end=32569 - _DISABLETRACKING._serialized_start=32571 - _DISABLETRACKING._serialized_end=32588 - _DISABLETRACKINGMSG._serialized_start=32590 - _DISABLETRACKINGMSG._serialized_end=32696 - _SENDINGEVENT._serialized_start=32698 - _SENDINGEVENT._serialized_end=32728 - _SENDINGEVENTMSG._serialized_start=32730 - _SENDINGEVENTMSG._serialized_end=32830 - _SENDEVENTFAILURE._serialized_start=32832 - _SENDEVENTFAILURE._serialized_end=32850 - _SENDEVENTFAILUREMSG._serialized_start=32852 - _SENDEVENTFAILUREMSG._serialized_end=32960 - _FLUSHEVENTS._serialized_start=32962 - _FLUSHEVENTS._serialized_end=32975 - _FLUSHEVENTSMSG._serialized_start=32977 - _FLUSHEVENTSMSG._serialized_end=33075 - _FLUSHEVENTSFAILURE._serialized_start=33077 - _FLUSHEVENTSFAILURE._serialized_end=33097 - _FLUSHEVENTSFAILUREMSG._serialized_start=33099 - _FLUSHEVENTSFAILUREMSG._serialized_end=33211 - _TRACKINGINITIALIZEFAILURE._serialized_start=33213 - _TRACKINGINITIALIZEFAILURE._serialized_end=33258 - _TRACKINGINITIALIZEFAILUREMSG._serialized_start=33260 - _TRACKINGINITIALIZEFAILUREMSG._serialized_end=33386 - _RUNRESULTWARNINGMESSAGE._serialized_start=33388 - _RUNRESULTWARNINGMESSAGE._serialized_end=33468 - _RUNRESULTWARNINGMESSAGEMSG._serialized_start=33470 - _RUNRESULTWARNINGMESSAGEMSG._serialized_end=33592 - _DEBUGCMDOUT._serialized_start=33594 - _DEBUGCMDOUT._serialized_end=33620 - _DEBUGCMDOUTMSG._serialized_start=33622 - _DEBUGCMDOUTMSG._serialized_end=33720 - _DEBUGCMDRESULT._serialized_start=33722 - _DEBUGCMDRESULT._serialized_end=33751 - _DEBUGCMDRESULTMSG._serialized_start=33753 - _DEBUGCMDRESULTMSG._serialized_end=33857 - _LISTCMDOUT._serialized_start=33859 - _LISTCMDOUT._serialized_end=33884 - _LISTCMDOUTMSG._serialized_start=33886 - _LISTCMDOUTMSG._serialized_end=33982 - _RESOURCEREPORT._serialized_start=33985 - _RESOURCEREPORT._serialized_end=34221 - _RESOURCEREPORTMSG._serialized_start=34223 - _RESOURCEREPORTMSG._serialized_end=34327 + _SOURCEFRESHNESSPROJECTHOOKSNOTRUN._serialized_start=7435 + _SOURCEFRESHNESSPROJECTHOOKSNOTRUN._serialized_end=7470 + _SOURCEFRESHNESSPROJECTHOOKSNOTRUNMSG._serialized_start=7473 + _SOURCEFRESHNESSPROJECTHOOKSNOTRUNMSG._serialized_end=7615 + _DEPRECATEDMODEL._serialized_start=7617 + _DEPRECATEDMODEL._serialized_end=7703 + _DEPRECATEDMODELMSG._serialized_start=7705 + _DEPRECATEDMODELMSG._serialized_end=7811 + _INPUTFILEDIFFERROR._serialized_start=7813 + _INPUTFILEDIFFERROR._serialized_end=7868 + _INPUTFILEDIFFERRORMSG._serialized_start=7870 + _INPUTFILEDIFFERRORMSG._serialized_end=7982 + _INVALIDVALUEFORFIELD._serialized_start=7984 + _INVALIDVALUEFORFIELD._serialized_end=8047 + _INVALIDVALUEFORFIELDMSG._serialized_start=8049 + _INVALIDVALUEFORFIELDMSG._serialized_end=8165 + _VALIDATIONWARNING._serialized_start=8167 + _VALIDATIONWARNING._serialized_end=8248 + _VALIDATIONWARNINGMSG._serialized_start=8250 + _VALIDATIONWARNINGMSG._serialized_end=8360 + _PARSEPERFINFOPATH._serialized_start=8362 + _PARSEPERFINFOPATH._serialized_end=8395 + _PARSEPERFINFOPATHMSG._serialized_start=8397 + _PARSEPERFINFOPATHMSG._serialized_end=8507 + _PARTIALPARSINGERRORPROCESSINGFILE._serialized_start=8509 + _PARTIALPARSINGERRORPROCESSINGFILE._serialized_end=8558 + _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_start=8561 + _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_end=8703 + _PARTIALPARSINGERROR._serialized_start=8706 + _PARTIALPARSINGERROR._serialized_end=8840 + _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_start=8794 + _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_end=8840 + _PARTIALPARSINGERRORMSG._serialized_start=8842 + _PARTIALPARSINGERRORMSG._serialized_end=8956 + _PARTIALPARSINGSKIPPARSING._serialized_start=8958 + _PARTIALPARSINGSKIPPARSING._serialized_end=8985 + _PARTIALPARSINGSKIPPARSINGMSG._serialized_start=8987 + _PARTIALPARSINGSKIPPARSINGMSG._serialized_end=9113 + _UNABLETOPARTIALPARSE._serialized_start=9115 + _UNABLETOPARTIALPARSE._serialized_end=9153 + _UNABLETOPARTIALPARSEMSG._serialized_start=9155 + _UNABLETOPARTIALPARSEMSG._serialized_end=9271 + _STATECHECKVARSHASH._serialized_start=9273 + _STATECHECKVARSHASH._serialized_end=9375 + _STATECHECKVARSHASHMSG._serialized_start=9377 + _STATECHECKVARSHASHMSG._serialized_end=9489 + _PARTIALPARSINGNOTENABLED._serialized_start=9491 + _PARTIALPARSINGNOTENABLED._serialized_end=9517 + _PARTIALPARSINGNOTENABLEDMSG._serialized_start=9519 + _PARTIALPARSINGNOTENABLEDMSG._serialized_end=9643 + _PARSEDFILELOADFAILED._serialized_start=9645 + _PARSEDFILELOADFAILED._serialized_end=9712 + _PARSEDFILELOADFAILEDMSG._serialized_start=9714 + _PARSEDFILELOADFAILEDMSG._serialized_end=9830 + _PARTIALPARSINGENABLED._serialized_start=9832 + _PARTIALPARSINGENABLED._serialized_end=9904 + _PARTIALPARSINGENABLEDMSG._serialized_start=9906 + _PARTIALPARSINGENABLEDMSG._serialized_end=10024 + _PARTIALPARSINGFILE._serialized_start=10026 + _PARTIALPARSINGFILE._serialized_end=10082 + _PARTIALPARSINGFILEMSG._serialized_start=10084 + _PARTIALPARSINGFILEMSG._serialized_end=10196 + _INVALIDDISABLEDTARGETINTESTNODE._serialized_start=10199 + _INVALIDDISABLEDTARGETINTESTNODE._serialized_end=10374 + _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_start=10377 + _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_end=10515 + _UNUSEDRESOURCECONFIGPATH._serialized_start=10517 + _UNUSEDRESOURCECONFIGPATH._serialized_end=10572 + _UNUSEDRESOURCECONFIGPATHMSG._serialized_start=10574 + _UNUSEDRESOURCECONFIGPATHMSG._serialized_end=10698 + _SEEDINCREASED._serialized_start=10700 + _SEEDINCREASED._serialized_end=10751 + _SEEDINCREASEDMSG._serialized_start=10753 + _SEEDINCREASEDMSG._serialized_end=10855 + _SEEDEXCEEDSLIMITSAMEPATH._serialized_start=10857 + _SEEDEXCEEDSLIMITSAMEPATH._serialized_end=10919 + _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_start=10921 + _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_end=11045 + _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_start=11047 + _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_end=11115 + _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_start=11118 + _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_end=11254 + _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_start=11256 + _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_end=11348 + _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_start=11351 + _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_end=11489 + _UNUSEDTABLES._serialized_start=11491 + _UNUSEDTABLES._serialized_end=11528 + _UNUSEDTABLESMSG._serialized_start=11530 + _UNUSEDTABLESMSG._serialized_end=11630 + _WRONGRESOURCESCHEMAFILE._serialized_start=11633 + _WRONGRESOURCESCHEMAFILE._serialized_end=11768 + _WRONGRESOURCESCHEMAFILEMSG._serialized_start=11770 + _WRONGRESOURCESCHEMAFILEMSG._serialized_end=11892 + _NONODEFORYAMLKEY._serialized_start=11894 + _NONODEFORYAMLKEY._serialized_end=11969 + _NONODEFORYAMLKEYMSG._serialized_start=11971 + _NONODEFORYAMLKEYMSG._serialized_end=12079 + _MACRONOTFOUNDFORPATCH._serialized_start=12081 + _MACRONOTFOUNDFORPATCH._serialized_end=12124 + _MACRONOTFOUNDFORPATCHMSG._serialized_start=12126 + _MACRONOTFOUNDFORPATCHMSG._serialized_end=12244 + _NODENOTFOUNDORDISABLED._serialized_start=12247 + _NODENOTFOUNDORDISABLED._serialized_end=12431 + _NODENOTFOUNDORDISABLEDMSG._serialized_start=12433 + _NODENOTFOUNDORDISABLEDMSG._serialized_end=12553 + _JINJALOGWARNING._serialized_start=12555 + _JINJALOGWARNING._serialized_end=12627 + _JINJALOGWARNINGMSG._serialized_start=12629 + _JINJALOGWARNINGMSG._serialized_end=12735 + _JINJALOGINFO._serialized_start=12737 + _JINJALOGINFO._serialized_end=12806 + _JINJALOGINFOMSG._serialized_start=12808 + _JINJALOGINFOMSG._serialized_end=12908 + _JINJALOGDEBUG._serialized_start=12910 + _JINJALOGDEBUG._serialized_end=12980 + _JINJALOGDEBUGMSG._serialized_start=12982 + _JINJALOGDEBUGMSG._serialized_end=13084 + _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_start=13087 + _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_end=13261 + _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_start=13264 + _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_end=13400 + _UPCOMINGREFERENCEDEPRECATION._serialized_start=13403 + _UPCOMINGREFERENCEDEPRECATION._serialized_end=13601 + _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_start=13604 + _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_end=13736 + _DEPRECATEDREFERENCE._serialized_start=13739 + _DEPRECATEDREFERENCE._serialized_end=13928 + _DEPRECATEDREFERENCEMSG._serialized_start=13930 + _DEPRECATEDREFERENCEMSG._serialized_end=14044 + _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_start=14046 + _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_end=14106 + _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_start=14109 + _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_end=14257 + _PARSEINLINENODEERROR._serialized_start=14259 + _PARSEINLINENODEERROR._serialized_end=14336 + _PARSEINLINENODEERRORMSG._serialized_start=14338 + _PARSEINLINENODEERRORMSG._serialized_end=14454 + _SEMANTICVALIDATIONFAILURE._serialized_start=14456 + _SEMANTICVALIDATIONFAILURE._serialized_end=14496 + _SEMANTICVALIDATIONFAILUREMSG._serialized_start=14498 + _SEMANTICVALIDATIONFAILUREMSG._serialized_end=14624 + _UNVERSIONEDBREAKINGCHANGE._serialized_start=14627 + _UNVERSIONEDBREAKINGCHANGE._serialized_end=15021 + _UNVERSIONEDBREAKINGCHANGEMSG._serialized_start=15023 + _UNVERSIONEDBREAKINGCHANGEMSG._serialized_end=15149 + _WARNSTATETARGETEQUAL._serialized_start=15151 + _WARNSTATETARGETEQUAL._serialized_end=15193 + _WARNSTATETARGETEQUALMSG._serialized_start=15195 + _WARNSTATETARGETEQUALMSG._serialized_end=15311 + _FRESHNESSCONFIGPROBLEM._serialized_start=15313 + _FRESHNESSCONFIGPROBLEM._serialized_end=15350 + _FRESHNESSCONFIGPROBLEMMSG._serialized_start=15352 + _FRESHNESSCONFIGPROBLEMMSG._serialized_end=15472 + _GITSPARSECHECKOUTSUBDIRECTORY._serialized_start=15474 + _GITSPARSECHECKOUTSUBDIRECTORY._serialized_end=15521 + _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_start=15524 + _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_end=15658 + _GITPROGRESSCHECKOUTREVISION._serialized_start=15660 + _GITPROGRESSCHECKOUTREVISION._serialized_end=15707 + _GITPROGRESSCHECKOUTREVISIONMSG._serialized_start=15710 + _GITPROGRESSCHECKOUTREVISIONMSG._serialized_end=15840 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_start=15842 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_end=15894 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_start=15897 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_end=16047 + _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_start=16049 + _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_end=16095 + _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_start=16098 + _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_end=16236 + _GITNOTHINGTODO._serialized_start=16238 + _GITNOTHINGTODO._serialized_end=16267 + _GITNOTHINGTODOMSG._serialized_start=16269 + _GITNOTHINGTODOMSG._serialized_end=16373 + _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_start=16375 + _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_end=16444 + _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_start=16447 + _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_end=16585 + _GITPROGRESSCHECKEDOUTAT._serialized_start=16587 + _GITPROGRESSCHECKEDOUTAT._serialized_end=16629 + _GITPROGRESSCHECKEDOUTATMSG._serialized_start=16631 + _GITPROGRESSCHECKEDOUTATMSG._serialized_end=16753 + _REGISTRYPROGRESSGETREQUEST._serialized_start=16755 + _REGISTRYPROGRESSGETREQUEST._serialized_end=16796 + _REGISTRYPROGRESSGETREQUESTMSG._serialized_start=16799 + _REGISTRYPROGRESSGETREQUESTMSG._serialized_end=16927 + _REGISTRYPROGRESSGETRESPONSE._serialized_start=16929 + _REGISTRYPROGRESSGETRESPONSE._serialized_end=16990 + _REGISTRYPROGRESSGETRESPONSEMSG._serialized_start=16993 + _REGISTRYPROGRESSGETRESPONSEMSG._serialized_end=17123 + _SELECTORREPORTINVALIDSELECTOR._serialized_start=17125 + _SELECTORREPORTINVALIDSELECTOR._serialized_end=17220 + _SELECTORREPORTINVALIDSELECTORMSG._serialized_start=17223 + _SELECTORREPORTINVALIDSELECTORMSG._serialized_end=17357 + _DEPSNOPACKAGESFOUND._serialized_start=17359 + _DEPSNOPACKAGESFOUND._serialized_end=17380 + _DEPSNOPACKAGESFOUNDMSG._serialized_start=17382 + _DEPSNOPACKAGESFOUNDMSG._serialized_end=17496 + _DEPSSTARTPACKAGEINSTALL._serialized_start=17498 + _DEPSSTARTPACKAGEINSTALL._serialized_end=17545 + _DEPSSTARTPACKAGEINSTALLMSG._serialized_start=17547 + _DEPSSTARTPACKAGEINSTALLMSG._serialized_end=17669 + _DEPSINSTALLINFO._serialized_start=17671 + _DEPSINSTALLINFO._serialized_end=17710 + _DEPSINSTALLINFOMSG._serialized_start=17712 + _DEPSINSTALLINFOMSG._serialized_end=17818 + _DEPSUPDATEAVAILABLE._serialized_start=17820 + _DEPSUPDATEAVAILABLE._serialized_end=17865 + _DEPSUPDATEAVAILABLEMSG._serialized_start=17867 + _DEPSUPDATEAVAILABLEMSG._serialized_end=17981 + _DEPSUPTODATE._serialized_start=17983 + _DEPSUPTODATE._serialized_end=17997 + _DEPSUPTODATEMSG._serialized_start=17999 + _DEPSUPTODATEMSG._serialized_end=18099 + _DEPSLISTSUBDIRECTORY._serialized_start=18101 + _DEPSLISTSUBDIRECTORY._serialized_end=18145 + _DEPSLISTSUBDIRECTORYMSG._serialized_start=18147 + _DEPSLISTSUBDIRECTORYMSG._serialized_end=18263 + _DEPSNOTIFYUPDATESAVAILABLE._serialized_start=18265 + _DEPSNOTIFYUPDATESAVAILABLE._serialized_end=18311 + _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_start=18314 + _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_end=18442 + _REGISTRYINDEXPROGRESSGETREQUEST._serialized_start=18444 + _REGISTRYINDEXPROGRESSGETREQUEST._serialized_end=18490 + _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_start=18493 + _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_end=18631 + _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_start=18633 + _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_end=18699 + _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_start=18702 + _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_end=18842 + _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_start=18844 + _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_end=18894 + _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_start=18897 + _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_end=19033 + _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_start=19035 + _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_end=19085 + _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_start=19088 + _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_end=19224 + _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_start=19226 + _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_end=19279 + _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_start=19282 + _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_end=19424 + _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_start=19426 + _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_end=19477 + _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_start=19480 + _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_end=19618 + _DEPSSETDOWNLOADDIRECTORY._serialized_start=19620 + _DEPSSETDOWNLOADDIRECTORY._serialized_end=19660 + _DEPSSETDOWNLOADDIRECTORYMSG._serialized_start=19662 + _DEPSSETDOWNLOADDIRECTORYMSG._serialized_end=19786 + _DEPSUNPINNED._serialized_start=19788 + _DEPSUNPINNED._serialized_end=19833 + _DEPSUNPINNEDMSG._serialized_start=19835 + _DEPSUNPINNEDMSG._serialized_end=19935 + _NONODESFORSELECTIONCRITERIA._serialized_start=19937 + _NONODESFORSELECTIONCRITERIA._serialized_end=19984 + _NONODESFORSELECTIONCRITERIAMSG._serialized_start=19987 + _NONODESFORSELECTIONCRITERIAMSG._serialized_end=20117 + _DEPSLOCKUPDATING._serialized_start=20119 + _DEPSLOCKUPDATING._serialized_end=20160 + _DEPSLOCKUPDATINGMSG._serialized_start=20162 + _DEPSLOCKUPDATINGMSG._serialized_end=20270 + _DEPSADDPACKAGE._serialized_start=20272 + _DEPSADDPACKAGE._serialized_end=20354 + _DEPSADDPACKAGEMSG._serialized_start=20356 + _DEPSADDPACKAGEMSG._serialized_end=20460 + _DEPSFOUNDDUPLICATEPACKAGE._serialized_start=20463 + _DEPSFOUNDDUPLICATEPACKAGE._serialized_end=20630 + _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_start=20577 + _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_end=20630 + _DEPSFOUNDDUPLICATEPACKAGEMSG._serialized_start=20632 + _DEPSFOUNDDUPLICATEPACKAGEMSG._serialized_end=20758 + _DEPSVERSIONMISSING._serialized_start=20760 + _DEPSVERSIONMISSING._serialized_end=20796 + _DEPSVERSIONMISSINGMSG._serialized_start=20798 + _DEPSVERSIONMISSINGMSG._serialized_end=20910 + _DEPSSCRUBBEDPACKAGENAME._serialized_start=20912 + _DEPSSCRUBBEDPACKAGENAME._serialized_end=20959 + _DEPSSCRUBBEDPACKAGENAMEMSG._serialized_start=20961 + _DEPSSCRUBBEDPACKAGENAMEMSG._serialized_end=21083 + _RUNNINGOPERATIONCAUGHTERROR._serialized_start=21085 + _RUNNINGOPERATIONCAUGHTERROR._serialized_end=21127 + _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_start=21130 + _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_end=21260 + _COMPILECOMPLETE._serialized_start=21262 + _COMPILECOMPLETE._serialized_end=21279 + _COMPILECOMPLETEMSG._serialized_start=21281 + _COMPILECOMPLETEMSG._serialized_end=21387 + _FRESHNESSCHECKCOMPLETE._serialized_start=21389 + _FRESHNESSCHECKCOMPLETE._serialized_end=21413 + _FRESHNESSCHECKCOMPLETEMSG._serialized_start=21415 + _FRESHNESSCHECKCOMPLETEMSG._serialized_end=21535 + _SEEDHEADER._serialized_start=21537 + _SEEDHEADER._serialized_end=21565 + _SEEDHEADERMSG._serialized_start=21567 + _SEEDHEADERMSG._serialized_end=21663 + _SQLRUNNEREXCEPTION._serialized_start=21665 + _SQLRUNNEREXCEPTION._serialized_end=21758 + _SQLRUNNEREXCEPTIONMSG._serialized_start=21760 + _SQLRUNNEREXCEPTIONMSG._serialized_end=21872 + _LOGTESTRESULT._serialized_start=21875 + _LOGTESTRESULT._serialized_end=22043 + _LOGTESTRESULTMSG._serialized_start=22045 + _LOGTESTRESULTMSG._serialized_end=22147 + _LOGSTARTLINE._serialized_start=22149 + _LOGSTARTLINE._serialized_end=22256 + _LOGSTARTLINEMSG._serialized_start=22258 + _LOGSTARTLINEMSG._serialized_end=22358 + _LOGMODELRESULT._serialized_start=22361 + _LOGMODELRESULT._serialized_end=22510 + _LOGMODELRESULTMSG._serialized_start=22512 + _LOGMODELRESULTMSG._serialized_end=22616 + _LOGSNAPSHOTRESULT._serialized_start=22619 + _LOGSNAPSHOTRESULT._serialized_end=22893 + _LOGSNAPSHOTRESULT_CFGENTRY._serialized_start=22851 + _LOGSNAPSHOTRESULT_CFGENTRY._serialized_end=22893 + _LOGSNAPSHOTRESULTMSG._serialized_start=22895 + _LOGSNAPSHOTRESULTMSG._serialized_end=23005 + _LOGSEEDRESULT._serialized_start=23008 + _LOGSEEDRESULT._serialized_end=23193 + _LOGSEEDRESULTMSG._serialized_start=23195 + _LOGSEEDRESULTMSG._serialized_end=23297 + _LOGFRESHNESSRESULT._serialized_start=23300 + _LOGFRESHNESSRESULT._serialized_end=23473 + _LOGFRESHNESSRESULTMSG._serialized_start=23475 + _LOGFRESHNESSRESULTMSG._serialized_end=23587 + _LOGNODENOOPRESULT._serialized_start=23590 + _LOGNODENOOPRESULT._serialized_end=23742 + _LOGNODENOOPRESULTMSG._serialized_start=23744 + _LOGNODENOOPRESULTMSG._serialized_end=23854 + _LOGCANCELLINE._serialized_start=23856 + _LOGCANCELLINE._serialized_end=23890 + _LOGCANCELLINEMSG._serialized_start=23892 + _LOGCANCELLINEMSG._serialized_end=23994 + _DEFAULTSELECTOR._serialized_start=23996 + _DEFAULTSELECTOR._serialized_end=24027 + _DEFAULTSELECTORMSG._serialized_start=24029 + _DEFAULTSELECTORMSG._serialized_end=24135 + _NODESTART._serialized_start=24137 + _NODESTART._serialized_end=24190 + _NODESTARTMSG._serialized_start=24192 + _NODESTARTMSG._serialized_end=24286 + _NODEFINISHED._serialized_start=24288 + _NODEFINISHED._serialized_end=24391 + _NODEFINISHEDMSG._serialized_start=24393 + _NODEFINISHEDMSG._serialized_end=24493 + _QUERYCANCELATIONUNSUPPORTED._serialized_start=24495 + _QUERYCANCELATIONUNSUPPORTED._serialized_end=24538 + _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_start=24541 + _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_end=24671 + _CONCURRENCYLINE._serialized_start=24673 + _CONCURRENCYLINE._serialized_end=24752 + _CONCURRENCYLINEMSG._serialized_start=24754 + _CONCURRENCYLINEMSG._serialized_end=24860 + _WRITINGINJECTEDSQLFORNODE._serialized_start=24862 + _WRITINGINJECTEDSQLFORNODE._serialized_end=24931 + _WRITINGINJECTEDSQLFORNODEMSG._serialized_start=24933 + _WRITINGINJECTEDSQLFORNODEMSG._serialized_end=25059 + _NODECOMPILING._serialized_start=25061 + _NODECOMPILING._serialized_end=25118 + _NODECOMPILINGMSG._serialized_start=25120 + _NODECOMPILINGMSG._serialized_end=25222 + _NODEEXECUTING._serialized_start=25224 + _NODEEXECUTING._serialized_end=25281 + _NODEEXECUTINGMSG._serialized_start=25283 + _NODEEXECUTINGMSG._serialized_end=25385 + _LOGHOOKSTARTLINE._serialized_start=25387 + _LOGHOOKSTARTLINE._serialized_end=25496 + _LOGHOOKSTARTLINEMSG._serialized_start=25498 + _LOGHOOKSTARTLINEMSG._serialized_end=25606 + _LOGHOOKENDLINE._serialized_start=25609 + _LOGHOOKENDLINE._serialized_end=25756 + _LOGHOOKENDLINEMSG._serialized_start=25758 + _LOGHOOKENDLINEMSG._serialized_end=25862 + _SKIPPINGDETAILS._serialized_start=25865 + _SKIPPINGDETAILS._serialized_end=26012 + _SKIPPINGDETAILSMSG._serialized_start=26014 + _SKIPPINGDETAILSMSG._serialized_end=26120 + _NOTHINGTODO._serialized_start=26122 + _NOTHINGTODO._serialized_end=26135 + _NOTHINGTODOMSG._serialized_start=26137 + _NOTHINGTODOMSG._serialized_end=26235 + _RUNNINGOPERATIONUNCAUGHTERROR._serialized_start=26237 + _RUNNINGOPERATIONUNCAUGHTERROR._serialized_end=26281 + _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_start=26284 + _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_end=26418 + _ENDRUNRESULT._serialized_start=26421 + _ENDRUNRESULT._serialized_end=26568 + _ENDRUNRESULTMSG._serialized_start=26570 + _ENDRUNRESULTMSG._serialized_end=26670 + _NONODESSELECTED._serialized_start=26672 + _NONODESSELECTED._serialized_end=26689 + _NONODESSELECTEDMSG._serialized_start=26691 + _NONODESSELECTEDMSG._serialized_end=26797 + _COMMANDCOMPLETED._serialized_start=26799 + _COMMANDCOMPLETED._serialized_end=26918 + _COMMANDCOMPLETEDMSG._serialized_start=26920 + _COMMANDCOMPLETEDMSG._serialized_end=27028 + _SHOWNODE._serialized_start=27030 + _SHOWNODE._serialized_end=27137 + _SHOWNODEMSG._serialized_start=27139 + _SHOWNODEMSG._serialized_end=27231 + _COMPILEDNODE._serialized_start=27233 + _COMPILEDNODE._serialized_end=27345 + _COMPILEDNODEMSG._serialized_start=27347 + _COMPILEDNODEMSG._serialized_end=27447 + _CATCHABLEEXCEPTIONONRUN._serialized_start=27449 + _CATCHABLEEXCEPTIONONRUN._serialized_end=27547 + _CATCHABLEEXCEPTIONONRUNMSG._serialized_start=27549 + _CATCHABLEEXCEPTIONONRUNMSG._serialized_end=27671 + _INTERNALERRORONRUN._serialized_start=27673 + _INTERNALERRORONRUN._serialized_end=27768 + _INTERNALERRORONRUNMSG._serialized_start=27770 + _INTERNALERRORONRUNMSG._serialized_end=27882 + _GENERICEXCEPTIONONRUN._serialized_start=27884 + _GENERICEXCEPTIONONRUN._serialized_end=28001 + _GENERICEXCEPTIONONRUNMSG._serialized_start=28003 + _GENERICEXCEPTIONONRUNMSG._serialized_end=28121 + _NODECONNECTIONRELEASEERROR._serialized_start=28123 + _NODECONNECTIONRELEASEERROR._serialized_end=28201 + _NODECONNECTIONRELEASEERRORMSG._serialized_start=28204 + _NODECONNECTIONRELEASEERRORMSG._serialized_end=28332 + _FOUNDSTATS._serialized_start=28334 + _FOUNDSTATS._serialized_end=28365 + _FOUNDSTATSMSG._serialized_start=28367 + _FOUNDSTATSMSG._serialized_end=28463 + _MAINKEYBOARDINTERRUPT._serialized_start=28465 + _MAINKEYBOARDINTERRUPT._serialized_end=28488 + _MAINKEYBOARDINTERRUPTMSG._serialized_start=28490 + _MAINKEYBOARDINTERRUPTMSG._serialized_end=28608 + _MAINENCOUNTEREDERROR._serialized_start=28610 + _MAINENCOUNTEREDERROR._serialized_end=28645 + _MAINENCOUNTEREDERRORMSG._serialized_start=28647 + _MAINENCOUNTEREDERRORMSG._serialized_end=28763 + _MAINSTACKTRACE._serialized_start=28765 + _MAINSTACKTRACE._serialized_end=28802 + _MAINSTACKTRACEMSG._serialized_start=28804 + _MAINSTACKTRACEMSG._serialized_end=28908 + _TIMINGINFOCOLLECTED._serialized_start=28910 + _TIMINGINFOCOLLECTED._serialized_end=29022 + _TIMINGINFOCOLLECTEDMSG._serialized_start=29024 + _TIMINGINFOCOLLECTEDMSG._serialized_end=29138 + _LOGDEBUGSTACKTRACE._serialized_start=29140 + _LOGDEBUGSTACKTRACE._serialized_end=29178 + _LOGDEBUGSTACKTRACEMSG._serialized_start=29180 + _LOGDEBUGSTACKTRACEMSG._serialized_end=29292 + _CHECKCLEANPATH._serialized_start=29294 + _CHECKCLEANPATH._serialized_end=29324 + _CHECKCLEANPATHMSG._serialized_start=29326 + _CHECKCLEANPATHMSG._serialized_end=29430 + _CONFIRMCLEANPATH._serialized_start=29432 + _CONFIRMCLEANPATH._serialized_end=29464 + _CONFIRMCLEANPATHMSG._serialized_start=29466 + _CONFIRMCLEANPATHMSG._serialized_end=29574 + _PROTECTEDCLEANPATH._serialized_start=29576 + _PROTECTEDCLEANPATH._serialized_end=29610 + _PROTECTEDCLEANPATHMSG._serialized_start=29612 + _PROTECTEDCLEANPATHMSG._serialized_end=29724 + _FINISHEDCLEANPATHS._serialized_start=29726 + _FINISHEDCLEANPATHS._serialized_end=29746 + _FINISHEDCLEANPATHSMSG._serialized_start=29748 + _FINISHEDCLEANPATHSMSG._serialized_end=29860 + _OPENCOMMAND._serialized_start=29862 + _OPENCOMMAND._serialized_end=29915 + _OPENCOMMANDMSG._serialized_start=29917 + _OPENCOMMANDMSG._serialized_end=30015 + _SERVINGDOCSPORT._serialized_start=30017 + _SERVINGDOCSPORT._serialized_end=30065 + _SERVINGDOCSPORTMSG._serialized_start=30067 + _SERVINGDOCSPORTMSG._serialized_end=30173 + _SERVINGDOCSACCESSINFO._serialized_start=30175 + _SERVINGDOCSACCESSINFO._serialized_end=30212 + _SERVINGDOCSACCESSINFOMSG._serialized_start=30214 + _SERVINGDOCSACCESSINFOMSG._serialized_end=30332 + _SERVINGDOCSEXITINFO._serialized_start=30334 + _SERVINGDOCSEXITINFO._serialized_end=30355 + _SERVINGDOCSEXITINFOMSG._serialized_start=30357 + _SERVINGDOCSEXITINFOMSG._serialized_end=30471 + _RUNRESULTWARNING._serialized_start=30473 + _RUNRESULTWARNING._serialized_end=30589 + _RUNRESULTWARNINGMSG._serialized_start=30591 + _RUNRESULTWARNINGMSG._serialized_end=30699 + _RUNRESULTFAILURE._serialized_start=30701 + _RUNRESULTFAILURE._serialized_end=30817 + _RUNRESULTFAILUREMSG._serialized_start=30819 + _RUNRESULTFAILUREMSG._serialized_end=30927 + _STATSLINE._serialized_start=30929 + _STATSLINE._serialized_end=31036 + _STATSLINE_STATSENTRY._serialized_start=30992 + _STATSLINE_STATSENTRY._serialized_end=31036 + _STATSLINEMSG._serialized_start=31038 + _STATSLINEMSG._serialized_end=31132 + _RUNRESULTERROR._serialized_start=31134 + _RUNRESULTERROR._serialized_end=31205 + _RUNRESULTERRORMSG._serialized_start=31207 + _RUNRESULTERRORMSG._serialized_end=31311 + _RUNRESULTERRORNOMESSAGE._serialized_start=31313 + _RUNRESULTERRORNOMESSAGE._serialized_end=31396 + _RUNRESULTERRORNOMESSAGEMSG._serialized_start=31398 + _RUNRESULTERRORNOMESSAGEMSG._serialized_end=31520 + _SQLCOMPILEDPATH._serialized_start=31522 + _SQLCOMPILEDPATH._serialized_end=31595 + _SQLCOMPILEDPATHMSG._serialized_start=31597 + _SQLCOMPILEDPATHMSG._serialized_end=31703 + _CHECKNODETESTFAILURE._serialized_start=31705 + _CHECKNODETESTFAILURE._serialized_end=31792 + _CHECKNODETESTFAILUREMSG._serialized_start=31794 + _CHECKNODETESTFAILUREMSG._serialized_end=31910 + _ENDOFRUNSUMMARY._serialized_start=31912 + _ENDOFRUNSUMMARY._serialized_end=31999 + _ENDOFRUNSUMMARYMSG._serialized_start=32001 + _ENDOFRUNSUMMARYMSG._serialized_end=32107 + _LOGSKIPBECAUSEERROR._serialized_start=32109 + _LOGSKIPBECAUSEERROR._serialized_end=32194 + _LOGSKIPBECAUSEERRORMSG._serialized_start=32196 + _LOGSKIPBECAUSEERRORMSG._serialized_end=32310 + _ENSUREGITINSTALLED._serialized_start=32312 + _ENSUREGITINSTALLED._serialized_end=32332 + _ENSUREGITINSTALLEDMSG._serialized_start=32334 + _ENSUREGITINSTALLEDMSG._serialized_end=32446 + _DEPSCREATINGLOCALSYMLINK._serialized_start=32448 + _DEPSCREATINGLOCALSYMLINK._serialized_end=32474 + _DEPSCREATINGLOCALSYMLINKMSG._serialized_start=32476 + _DEPSCREATINGLOCALSYMLINKMSG._serialized_end=32600 + _DEPSSYMLINKNOTAVAILABLE._serialized_start=32602 + _DEPSSYMLINKNOTAVAILABLE._serialized_end=32627 + _DEPSSYMLINKNOTAVAILABLEMSG._serialized_start=32629 + _DEPSSYMLINKNOTAVAILABLEMSG._serialized_end=32751 + _DISABLETRACKING._serialized_start=32753 + _DISABLETRACKING._serialized_end=32770 + _DISABLETRACKINGMSG._serialized_start=32772 + _DISABLETRACKINGMSG._serialized_end=32878 + _SENDINGEVENT._serialized_start=32880 + _SENDINGEVENT._serialized_end=32910 + _SENDINGEVENTMSG._serialized_start=32912 + _SENDINGEVENTMSG._serialized_end=33012 + _SENDEVENTFAILURE._serialized_start=33014 + _SENDEVENTFAILURE._serialized_end=33032 + _SENDEVENTFAILUREMSG._serialized_start=33034 + _SENDEVENTFAILUREMSG._serialized_end=33142 + _FLUSHEVENTS._serialized_start=33144 + _FLUSHEVENTS._serialized_end=33157 + _FLUSHEVENTSMSG._serialized_start=33159 + _FLUSHEVENTSMSG._serialized_end=33257 + _FLUSHEVENTSFAILURE._serialized_start=33259 + _FLUSHEVENTSFAILURE._serialized_end=33279 + _FLUSHEVENTSFAILUREMSG._serialized_start=33281 + _FLUSHEVENTSFAILUREMSG._serialized_end=33393 + _TRACKINGINITIALIZEFAILURE._serialized_start=33395 + _TRACKINGINITIALIZEFAILURE._serialized_end=33440 + _TRACKINGINITIALIZEFAILUREMSG._serialized_start=33442 + _TRACKINGINITIALIZEFAILUREMSG._serialized_end=33568 + _RUNRESULTWARNINGMESSAGE._serialized_start=33570 + _RUNRESULTWARNINGMESSAGE._serialized_end=33650 + _RUNRESULTWARNINGMESSAGEMSG._serialized_start=33652 + _RUNRESULTWARNINGMESSAGEMSG._serialized_end=33774 + _DEBUGCMDOUT._serialized_start=33776 + _DEBUGCMDOUT._serialized_end=33802 + _DEBUGCMDOUTMSG._serialized_start=33804 + _DEBUGCMDOUTMSG._serialized_end=33902 + _DEBUGCMDRESULT._serialized_start=33904 + _DEBUGCMDRESULT._serialized_end=33933 + _DEBUGCMDRESULTMSG._serialized_start=33935 + _DEBUGCMDRESULTMSG._serialized_end=34039 + _LISTCMDOUT._serialized_start=34041 + _LISTCMDOUT._serialized_end=34066 + _LISTCMDOUTMSG._serialized_start=34068 + _LISTCMDOUTMSG._serialized_end=34164 + _RESOURCEREPORT._serialized_start=34167 + _RESOURCEREPORT._serialized_end=34403 + _RESOURCEREPORTMSG._serialized_start=34405 + _RESOURCEREPORTMSG._serialized_end=34509 # @@protoc_insertion_point(module_scope) diff --git a/core/dbt/events/types.py b/core/dbt/events/types.py index b7dc75f9a2e..f0297704619 100644 --- a/core/dbt/events/types.py +++ b/core/dbt/events/types.py @@ -451,6 +451,16 @@ def message(self) -> str: return line_wrap_message(warning_tag(description)) +class SourceFreshnessProjectHooksNotRun(WarnLevel): + def code(self) -> str: + return "D017" + + def message(self) -> str: + description = "In a future version of dbt, the `source freshness` command will start running `on-run-start` and `on-run-end` hooks by default. Please refer to https://docs.getdbt.com/reference/global-configs/legacy-behaviors#source_freshness_run_project_hooks for detailed documentation and suggested workarounds." + + return line_wrap_message(warning_tag(description)) + + # ======================================================= # I - Project parsing # ======================================================= diff --git a/core/dbt/task/freshness.py b/core/dbt/task/freshness.py index b1fe7581c30..8a072d3183d 100644 --- a/core/dbt/task/freshness.py +++ b/core/dbt/task/freshness.py @@ -18,6 +18,7 @@ from dbt_common.exceptions import DbtRuntimeError, DbtInternalError from dbt_common.events.functions import fire_event from dbt_common.events.types import Note +from dbt import deprecations from dbt.events.types import ( FreshnessCheckComplete, LogStartLine, @@ -240,9 +241,12 @@ def task_end_messages(self, results): fire_event(FreshnessCheckComplete()) def get_hooks_by_type(self, hook_type: RunHookType) -> List[HookNode]: + hooks = super().get_hooks_by_type(hook_type) if self.args.source_freshness_run_project_hooks: return super().get_hooks_by_type(hook_type) else: + if hooks: + deprecations.warn("source-freshness-project-hooks") return [] def populate_metadata_freshness_cache(self, adapter, selected_uids: AbstractSet[str]) -> None: diff --git a/tests/functional/sources/test_source_freshness.py b/tests/functional/sources/test_source_freshness.py index 0e58b33b555..b5c04c58e86 100644 --- a/tests/functional/sources/test_source_freshness.py +++ b/tests/functional/sources/test_source_freshness.py @@ -8,6 +8,7 @@ from dbt.artifacts.schemas.freshness import FreshnessResult from dbt.artifacts.schemas.results import FreshnessStatus from dbt.cli.main import dbtRunner +from dbt import deprecations from tests.functional.sources.common_source_setup import BaseSourcesTest from tests.functional.sources.fixtures import ( error_models_schema_yml, @@ -414,6 +415,38 @@ def test_metadata_freshness_unsupported_error_when_run(self, project): assert "Could not compute freshness for source test_table" in freshness_result.message +class TestSourceFreshnessProjectHooksNotRun(SuccessfulSourceFreshnessTest): + @pytest.fixture(scope="class") + def project_config_update(self): + return { + "config-version": 2, + "on-run-start": ["{{ log('on-run-start hooks called') }}"], + "on-run-end": ["{{ log('on-run-end hooks called') }}"], + "flags": { + "source_freshness_run_project_hooks": False, + }, + } + + def test_hooks_do_run_for_source_freshness( + self, + project, + ): + deprecations.reset_deprecations() + assert deprecations.active_deprecations == set() + _, log_output = self.run_dbt_and_capture_with_vars( + project, + [ + "source", + "freshness", + ], + expect_pass=False, + ) + assert "on-run-start hooks called" not in log_output + assert "on-run-end hooks called" not in log_output + expected = {"source-freshness-project-hooks"} + assert expected == deprecations.active_deprecations + + class TestHooksInSourceFreshness(SuccessfulSourceFreshnessTest): @pytest.fixture(scope="class") def project_config_update(self): diff --git a/tests/unit/test_events.py b/tests/unit/test_events.py index 0f561fa6f20..9e2c3cbbaf4 100644 --- a/tests/unit/test_events.py +++ b/tests/unit/test_events.py @@ -161,6 +161,7 @@ def test_event_codes(self): core_types.PackageMaterializationOverrideDeprecation( package_name="my_package", materialization_name="view" ), + core_types.SourceFreshnessProjectHooksNotRun(), # E - DB Adapter ====================== adapter_types.AdapterEventDebug(), adapter_types.AdapterEventInfo(), From 1f36725a2d7ead634b8cb1d7eb981c849cc8e86f Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Mon, 29 Apr 2024 14:10:37 +0200 Subject: [PATCH 04/11] Switch require_explicit_package_overrides_for_builtin_materializations default to True --- core/dbt/contracts/project.py | 2 +- .../test_custom_materialization.py | 14 ++++---------- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/core/dbt/contracts/project.py b/core/dbt/contracts/project.py index d931c3371cb..c2090eb4d10 100644 --- a/core/dbt/contracts/project.py +++ b/core/dbt/contracts/project.py @@ -331,7 +331,7 @@ class ProjectFlags(ExtensibleDbtClassMixin): write_json: Optional[bool] = None # legacy behaviors - require_explicit_package_overrides_for_builtin_materializations: bool = False + require_explicit_package_overrides_for_builtin_materializations: bool = True require_resource_names_without_spaces: bool = False source_freshness_run_project_hooks: bool = False diff --git a/tests/functional/materializations/test_custom_materialization.py b/tests/functional/materializations/test_custom_materialization.py index 2c3ec4e74c2..0a100021db2 100644 --- a/tests/functional/materializations/test_custom_materialization.py +++ b/tests/functional/materializations/test_custom_materialization.py @@ -37,11 +37,8 @@ def packages(self): def test_adapter_dependency(self, project, override_view_adapter_dep, set_up_deprecations): run_dbt(["deps"]) - # this should error because the override is buggy - run_dbt(["run"], expect_pass=False) - - # overriding a built-in materialization scoped to adapter from package is deprecated - assert deprecations.active_deprecations == {"package-materialization-override"} + # this should pass because implicit overrides are now deprecated (= disabled by default) + run_dbt(["run"]) class TestOverrideAdapterDependencyDeprecated: @@ -101,11 +98,8 @@ def packages(self): def test_default_dependency(self, project, override_view_default_dep, set_up_deprecations): run_dbt(["deps"]) - # this should error because the override is buggy - run_dbt(["run"], expect_pass=False) - - # overriding a built-in materialization from package is deprecated - assert deprecations.active_deprecations == {"package-materialization-override"} + # this should pass because implicit overrides are now deprecated (= disabled by default) + run_dbt(["run"]) class TestOverrideDefaultDependencyDeprecated: From 252b8d5f8d35c5f5c58f8a50747b66fc76be6145 Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Mon, 29 Apr 2024 14:23:50 +0200 Subject: [PATCH 05/11] Add changelog --- .changes/unreleased/Under the Hood-20240429-142342.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changes/unreleased/Under the Hood-20240429-142342.yaml diff --git a/.changes/unreleased/Under the Hood-20240429-142342.yaml b/.changes/unreleased/Under the Hood-20240429-142342.yaml new file mode 100644 index 00000000000..d4bd71e6e6c --- /dev/null +++ b/.changes/unreleased/Under the Hood-20240429-142342.yaml @@ -0,0 +1,6 @@ +kind: Under the Hood +body: Consistent naming + deprecation warnings for "legacy behavior" flags +time: 2024-04-29T14:23:42.804244+02:00 +custom: + Author: jtcohen6 + Issue: "10062" From 43b54efb082f1fffda0643a1644c430412ef0bbe Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Mon, 29 Apr 2024 10:02:09 -0400 Subject: [PATCH 06/11] fix core_types_pb2.py --- core/dbt/events/core_types_pb2.py | 1481 +++++++++++++++-------------- 1 file changed, 741 insertions(+), 740 deletions(-) diff --git a/core/dbt/events/core_types_pb2.py b/core/dbt/events/core_types_pb2.py index f9b39665858..3930e1e53ec 100644 --- a/core/dbt/events/core_types_pb2.py +++ b/core/dbt/events/core_types_pb2.py @@ -1,11 +1,12 @@ # -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: core_types.proto +# Protobuf Python Version: 4.25.3 """Generated protocol buffer code.""" -from google.protobuf.internal import builder as _builder from google.protobuf import descriptor as _descriptor from google.protobuf import descriptor_pool as _descriptor_pool from google.protobuf import symbol_database as _symbol_database +from google.protobuf.internal import builder as _builder # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() @@ -17,745 +18,745 @@ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x63ore_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x99\x02\n\rCoreEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x05\x65xtra\x18\t \x03(\x0b\x32%.proto_types.CoreEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"V\n\x0cNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x91\x02\n\x08NodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x30\n\rnode_relation\x18\n \x01(\x0b\x32\x19.proto_types.NodeRelation\"\x7f\n\rTimingInfoMsg\x12\x0c\n\x04name\x18\x01 \x01(\t\x12.\n\nstarted_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xd1\x01\n\x0cRunResultMsg\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07message\x18\x02 \x01(\t\x12/\n\x0btiming_info\x18\x03 \x03(\x0b\x32\x1a.proto_types.TimingInfoMsg\x12\x0e\n\x06thread\x18\x04 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x31\n\x10\x61\x64\x61pter_response\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"\\\n\nColumnType\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x1c\n\x14previous_column_type\x18\x02 \x01(\t\x12\x1b\n\x13\x63urrent_column_type\x18\x03 \x01(\t\"Y\n\x10\x43olumnConstraint\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x03 \x01(\t\"T\n\x0fModelConstraint\x12\x17\n\x0f\x63onstraint_name\x18\x01 \x01(\t\x12\x17\n\x0f\x63onstraint_type\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"n\n\x14MainReportVersionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.MainReportVersion\"r\n\x0eMainReportArgs\x12\x33\n\x04\x61rgs\x18\x01 \x03(\x0b\x32%.proto_types.MainReportArgs.ArgsEntry\x1a+\n\tArgsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"h\n\x11MainReportArgsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainReportArgs\"+\n\x15MainTrackingUserState\x12\x12\n\nuser_state\x18\x01 \x01(\t\"v\n\x18MainTrackingUserStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainTrackingUserState\"5\n\x0fMergedFromState\x12\x12\n\nnum_merged\x18\x01 \x01(\x05\x12\x0e\n\x06sample\x18\x02 \x03(\t\"j\n\x12MergedFromStateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.MergedFromState\"A\n\x14MissingProfileTarget\x12\x14\n\x0cprofile_name\x18\x01 \x01(\t\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\"t\n\x17MissingProfileTargetMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"n\n\x14InvalidOptionYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.InvalidOptionYAML\"!\n\x12LogDbtProjectError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x15LogDbtProjectErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProjectError\"3\n\x12LogDbtProfileError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08profiles\x18\x02 \x03(\t\"p\n\x15LogDbtProfileErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDbtProfileError\"!\n\x12StarterProjectPath\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"p\n\x15StarterProjectPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StarterProjectPath\"$\n\x15\x43onfigFolderDirectory\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"v\n\x18\x43onfigFolderDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConfigFolderDirectory\"\'\n\x14NoSampleProfileFound\x12\x0f\n\x07\x61\x64\x61pter\x18\x01 \x01(\t\"t\n\x17NoSampleProfileFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NoSampleProfileFound\"6\n\x18ProfileWrittenWithSample\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"|\n\x1bProfileWrittenWithSampleMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProfileWrittenWithSample\"B\n$ProfileWrittenWithTargetTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x94\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.ProfileWrittenWithTargetTemplateYAML\"C\n%ProfileWrittenWithProjectTemplateYAML\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"\x96\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"l\n\x13SettingUpProfileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"\x80\x01\n\x1dInvalidProfileTemplateYAMLMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"|\n\x1bProjectNameAlreadyExistsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ProjectNameAlreadyExists\"K\n\x0eProjectCreated\x12\x14\n\x0cproject_name\x18\x01 \x01(\t\x12\x10\n\x08\x64ocs_url\x18\x02 \x01(\t\x12\x11\n\tslack_url\x18\x03 \x01(\t\"h\n\x11ProjectCreatedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ProjectCreated\"@\n\x1aPackageRedirectDeprecation\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1dPackageRedirectDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x86\x01\n PackageInstallPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.PackageInstallPathDeprecation\"H\n\x1b\x43onfigSourcePathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"\x82\x01\n\x1e\x43onfigSourcePathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigSourcePathDeprecation\"F\n\x19\x43onfigDataPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"~\n\x1c\x43onfigDataPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"z\n\x1aMetricAttributesRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.MetricAttributesRenamed\"+\n\x17\x45xposureNameDeprecation\x12\x10\n\x08\x65xposure\x18\x01 \x01(\t\"z\n\x1a\x45xposureNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.ExposureNameDeprecation\"^\n\x13InternalDeprecation\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x18\n\x10suggested_action\x18\x03 \x01(\t\x12\x0f\n\x07version\x18\x04 \x01(\t\"r\n\x16InternalDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.InternalDeprecation\"@\n\x1a\x45nvironmentVariableRenamed\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x80\x01\n\x1d\x45nvironmentVariableRenamedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.EnvironmentVariableRenamed\"3\n\x18\x43onfigLogPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"|\n\x1b\x43onfigLogPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.ConfigLogPathDeprecation\"6\n\x1b\x43onfigTargetPathDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\"\x82\x01\n\x1e\x43onfigTargetPathDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"C\n\x16TestsConfigDeprecation\x12\x17\n\x0f\x64\x65precated_path\x18\x01 \x01(\t\x12\x10\n\x08\x65xp_path\x18\x02 \x01(\t\"x\n\x19TestsConfigDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.TestsConfigDeprecation\"\x1e\n\x1cProjectFlagsMovedDeprecation\"\x84\x01\n\x1fProjectFlagsMovedDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.ProjectFlagsMovedDeprecation\"C\n\x1fSpacesInResourceNameDeprecation\x12\x11\n\tunique_id\x18\x01 \x01(\t\x12\r\n\x05level\x18\x02 \x01(\t\"\x8a\x01\n\"SpacesInResourceNameDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SpacesInResourceNameDeprecation\"i\n\"ResourceNamesWithSpacesDeprecation\x12\x1b\n\x13\x63ount_invalid_names\x18\x01 \x01(\x05\x12\x17\n\x0fshow_debug_hint\x18\x02 \x01(\x08\x12\r\n\x05level\x18\x03 \x01(\t\"\x90\x01\n%ResourceNamesWithSpacesDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12=\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32/.proto_types.ResourceNamesWithSpacesDeprecation\"_\n)PackageMaterializationOverrideDeprecation\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x1c\n\x14materialization_name\x18\x02 \x01(\t\"\x9e\x01\n,PackageMaterializationOverrideDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x44\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x36.proto_types.PackageMaterializationOverrideDeprecation\"#\n!SourceFreshnessProjectHooksNotRun\"\x8e\x01\n$SourceFreshnessProjectHooksNotRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.SourceFreshnessProjectHooksNotRun\"V\n\x0f\x44\x65precatedModel\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x15\n\rmodel_version\x18\x02 \x01(\t\x12\x18\n\x10\x64\x65precation_date\x18\x03 \x01(\t\"j\n\x12\x44\x65precatedModelMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DeprecatedModel\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"p\n\x15InputFileDiffErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InputFileDiffError\"?\n\x14InvalidValueForField\x12\x12\n\nfield_name\x18\x01 \x01(\t\x12\x13\n\x0b\x66ield_value\x18\x02 \x01(\t\"t\n\x17InvalidValueForFieldMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.InvalidValueForField\"Q\n\x11ValidationWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x12\n\nfield_name\x18\x02 \x01(\t\x12\x11\n\tnode_name\x18\x03 \x01(\t\"n\n\x14ValidationWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"n\n\x14ParsePerfInfoPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ParsePerfInfoPath\"1\n!PartialParsingErrorProcessingFile\x12\x0c\n\x04\x66ile\x18\x01 \x01(\t\"\x8e\x01\n$PartialParsingErrorProcessingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.PartialParsingErrorProcessingFile\"\x86\x01\n\x13PartialParsingError\x12?\n\x08\x65xc_info\x18\x01 \x03(\x0b\x32-.proto_types.PartialParsingError.ExcInfoEntry\x1a.\n\x0c\x45xcInfoEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"r\n\x16PartialParsingErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"~\n\x1cPartialParsingSkipParsingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"t\n\x17UnableToPartialParseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.UnableToPartialParse\"f\n\x12StateCheckVarsHash\x12\x10\n\x08\x63hecksum\x18\x01 \x01(\t\x12\x0c\n\x04vars\x18\x02 \x01(\t\x12\x0f\n\x07profile\x18\x03 \x01(\t\x12\x0e\n\x06target\x18\x04 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\"p\n\x15StateCheckVarsHashMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"|\n\x1bPartialParsingNotEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.PartialParsingNotEnabled\"C\n\x14ParsedFileLoadFailed\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"t\n\x17ParsedFileLoadFailedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParsedFileLoadFailed\"H\n\x15PartialParsingEnabled\x12\x0f\n\x07\x64\x65leted\x18\x01 \x01(\x05\x12\r\n\x05\x61\x64\x64\x65\x64\x18\x02 \x01(\x05\x12\x0f\n\x07\x63hanged\x18\x03 \x01(\x05\"v\n\x18PartialParsingEnabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.PartialParsingEnabled\"8\n\x12PartialParsingFile\x12\x0f\n\x07\x66ile_id\x18\x01 \x01(\t\x12\x11\n\toperation\x18\x02 \x01(\t\"p\n\x15PartialParsingFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.PartialParsingFile\"\xaf\x01\n\x1fInvalidDisabledTargetInTestNode\x12\x1b\n\x13resource_type_title\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1a\n\x12original_file_path\x18\x03 \x01(\t\x12\x13\n\x0btarget_kind\x18\x04 \x01(\t\x12\x13\n\x0btarget_name\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\"\x8a\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.InvalidDisabledTargetInTestNode\"7\n\x18UnusedResourceConfigPath\x12\x1b\n\x13unused_config_paths\x18\x01 \x03(\t\"|\n\x1bUnusedResourceConfigPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.UnusedResourceConfigPath\"3\n\rSeedIncreased\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"f\n\x10SeedIncreasedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.SeedIncreased\">\n\x18SeedExceedsLimitSamePath\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"|\n\x1bSeedExceedsLimitSamePathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.SeedExceedsLimitSamePath\"D\n\x1eSeedExceedsLimitAndPathChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"\x88\x01\n!SeedExceedsLimitAndPathChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.SeedExceedsLimitAndPathChanged\"\\\n\x1fSeedExceedsLimitChecksumChanged\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x15\n\rchecksum_name\x18\x03 \x01(\t\"\x8a\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"d\n\x0fUnusedTablesMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.UnusedTables\"\x87\x01\n\x17WrongResourceSchemaFile\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x1c\n\x14plural_resource_type\x18\x03 \x01(\t\x12\x10\n\x08yaml_key\x18\x04 \x01(\t\x12\x11\n\tfile_path\x18\x05 \x01(\t\"z\n\x1aWrongResourceSchemaFileMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.WrongResourceSchemaFile\"K\n\x10NoNodeForYamlKey\x12\x12\n\npatch_name\x18\x01 \x01(\t\x12\x10\n\x08yaml_key\x18\x02 \x01(\t\x12\x11\n\tfile_path\x18\x03 \x01(\t\"l\n\x13NoNodeForYamlKeyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.NoNodeForYamlKey\"+\n\x15MacroNotFoundForPatch\x12\x12\n\npatch_name\x18\x01 \x01(\t\"v\n\x18MacroNotFoundForPatchMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MacroNotFoundForPatch\"\xb8\x01\n\x16NodeNotFoundOrDisabled\x12\x1a\n\x12original_file_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x1b\n\x13resource_type_title\x18\x03 \x01(\t\x12\x13\n\x0btarget_name\x18\x04 \x01(\t\x12\x13\n\x0btarget_kind\x18\x05 \x01(\t\x12\x16\n\x0etarget_package\x18\x06 \x01(\t\x12\x10\n\x08\x64isabled\x18\x07 \x01(\t\"x\n\x19NodeNotFoundOrDisabledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.NodeNotFoundOrDisabled\"H\n\x0fJinjaLogWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"j\n\x12JinjaLogWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.JinjaLogWarning\"E\n\x0cJinjaLogInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"d\n\x0fJinjaLogInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.JinjaLogInfo\"F\n\rJinjaLogDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03msg\x18\x02 \x01(\t\"f\n\x10JinjaLogDebugMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.JinjaLogDebug\"\xae\x01\n\x1eUnpinnedRefNewVersionAvailable\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rref_node_name\x18\x02 \x01(\t\x12\x18\n\x10ref_node_package\x18\x03 \x01(\t\x12\x18\n\x10ref_node_version\x18\x04 \x01(\t\x12\x17\n\x0fref_max_version\x18\x05 \x01(\t\"\x88\x01\n!UnpinnedRefNewVersionAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"\xc6\x01\n\x1cUpcomingReferenceDeprecation\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"\x84\x01\n\x1fUpcomingReferenceDeprecationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.UpcomingReferenceDeprecation\"\xbd\x01\n\x13\x44\x65precatedReference\x12\x12\n\nmodel_name\x18\x01 \x01(\t\x12\x19\n\x11ref_model_package\x18\x02 \x01(\t\x12\x16\n\x0eref_model_name\x18\x03 \x01(\t\x12\x19\n\x11ref_model_version\x18\x04 \x01(\t\x12 \n\x18ref_model_latest_version\x18\x05 \x01(\t\x12\"\n\x1aref_model_deprecation_date\x18\x06 \x01(\t\"r\n\x16\x44\x65precatedReferenceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DeprecatedReference\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x94\x01\n\'UnsupportedConstraintMaterializationMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"M\n\x14ParseInlineNodeError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"t\n\x17ParseInlineNodeErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.ParseInlineNodeError\"(\n\x19SemanticValidationFailure\x12\x0b\n\x03msg\x18\x02 \x01(\t\"~\n\x1cSemanticValidationFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.SemanticValidationFailure\"\x8a\x03\n\x19UnversionedBreakingChange\x12\x18\n\x10\x62reaking_changes\x18\x01 \x03(\t\x12\x12\n\nmodel_name\x18\x02 \x01(\t\x12\x17\n\x0fmodel_file_path\x18\x03 \x01(\t\x12\"\n\x1a\x63ontract_enforced_disabled\x18\x04 \x01(\x08\x12\x17\n\x0f\x63olumns_removed\x18\x05 \x03(\t\x12\x34\n\x13\x63olumn_type_changes\x18\x06 \x03(\x0b\x32\x17.proto_types.ColumnType\x12I\n\"enforced_column_constraint_removed\x18\x07 \x03(\x0b\x32\x1d.proto_types.ColumnConstraint\x12G\n!enforced_model_constraint_removed\x18\x08 \x03(\x0b\x32\x1c.proto_types.ModelConstraint\x12\x1f\n\x17materialization_changed\x18\t \x03(\t\"~\n\x1cUnversionedBreakingChangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.UnversionedBreakingChange\"*\n\x14WarnStateTargetEqual\x12\x12\n\nstate_path\x18\x01 \x01(\t\"t\n\x17WarnStateTargetEqualMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.WarnStateTargetEqual\"%\n\x16\x46reshnessConfigProblem\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x19\x46reshnessConfigProblemMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessConfigProblem\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x86\x01\n GitSparseCheckoutSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"\x82\x01\n\x1eGitProgressCheckoutRevisionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.GitProgressCheckoutRevision\"4\n%GitProgressUpdatingExistingDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x96\x01\n(GitProgressUpdatingExistingDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.GitProgressUpdatingExistingDependency\".\n\x1fGitProgressPullingNewDependency\x12\x0b\n\x03\x64ir\x18\x01 \x01(\t\"\x8a\x01\n\"GitProgressPullingNewDependencyMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"h\n\x11GitNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.GitNothingToDo\"E\n\x1fGitProgressUpdatedCheckoutRange\x12\x11\n\tstart_sha\x18\x01 \x01(\t\x12\x0f\n\x07\x65nd_sha\x18\x02 \x01(\t\"\x8a\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressUpdatedCheckoutRange\"*\n\x17GitProgressCheckedOutAt\x12\x0f\n\x07\x65nd_sha\x18\x01 \x01(\t\"z\n\x1aGitProgressCheckedOutAtMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x80\x01\n\x1dRegistryProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.RegistryProgressGETRequest\"=\n\x1bRegistryProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x82\x01\n\x1eRegistryProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RegistryProgressGETResponse\"_\n\x1dSelectorReportInvalidSelector\x12\x17\n\x0fvalid_selectors\x18\x01 \x01(\t\x12\x13\n\x0bspec_method\x18\x02 \x01(\t\x12\x10\n\x08raw_spec\x18\x03 \x01(\t\"\x86\x01\n SelectorReportInvalidSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"r\n\x16\x44\x65psNoPackagesFoundMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsNoPackagesFound\"/\n\x17\x44\x65psStartPackageInstall\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psStartPackageInstallMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsStartPackageInstall\"\'\n\x0f\x44\x65psInstallInfo\x12\x14\n\x0cversion_name\x18\x01 \x01(\t\"j\n\x12\x44\x65psInstallInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DepsInstallInfo\"-\n\x13\x44\x65psUpdateAvailable\x12\x16\n\x0eversion_latest\x18\x01 \x01(\t\"r\n\x16\x44\x65psUpdateAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"d\n\x0f\x44\x65psUpToDateMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUpToDate\",\n\x14\x44\x65psListSubdirectory\x12\x14\n\x0csubdirectory\x18\x01 \x01(\t\"t\n\x17\x44\x65psListSubdirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.DepsListSubdirectory\".\n\x1a\x44\x65psNotifyUpdatesAvailable\x12\x10\n\x08packages\x18\x01 \x03(\t\"\x80\x01\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryIndexProgressGETRequestMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryIndexProgressGETRequest\"B\n RegistryIndexProgressGETResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12\x11\n\tresp_code\x18\x02 \x01(\x05\"\x8c\x01\n#RegistryIndexProgressGETResponseMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseUnexpectedTypeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseUnexpectedType\"2\n\x1eRegistryResponseMissingTopKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x88\x01\n!RegistryResponseMissingTopKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.RegistryResponseMissingTopKeys\"5\n!RegistryResponseMissingNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8e\x01\n$RegistryResponseMissingNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x8a\x01\n\"RegistryResponseExtraNestedKeysMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.RegistryResponseExtraNestedKeys\"(\n\x18\x44\x65psSetDownloadDirectory\x12\x0c\n\x04path\x18\x01 \x01(\t\"|\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsSetDownloadDirectory\"-\n\x0c\x44\x65psUnpinned\x12\x10\n\x08revision\x18\x01 \x01(\t\x12\x0b\n\x03git\x18\x02 \x01(\t\"d\n\x0f\x44\x65psUnpinnedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.DepsUnpinned\"/\n\x1bNoNodesForSelectionCriteria\x12\x10\n\x08spec_raw\x18\x01 \x01(\t\"\x82\x01\n\x1eNoNodesForSelectionCriteriaMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\")\n\x10\x44\x65psLockUpdating\x12\x15\n\rlock_filepath\x18\x01 \x01(\t\"l\n\x13\x44\x65psLockUpdatingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.DepsLockUpdating\"R\n\x0e\x44\x65psAddPackage\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\x12\x19\n\x11packages_filepath\x18\x03 \x01(\t\"h\n\x11\x44\x65psAddPackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DepsAddPackage\"\xa7\x01\n\x19\x44\x65psFoundDuplicatePackage\x12S\n\x0fremoved_package\x18\x01 \x03(\x0b\x32:.proto_types.DepsFoundDuplicatePackage.RemovedPackageEntry\x1a\x35\n\x13RemovedPackageEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"~\n\x1c\x44\x65psFoundDuplicatePackageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.DepsFoundDuplicatePackage\"$\n\x12\x44\x65psVersionMissing\x12\x0e\n\x06source\x18\x01 \x01(\t\"p\n\x15\x44\x65psVersionMissingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.DepsVersionMissing\"/\n\x17\x44\x65psScrubbedPackageName\x12\x14\n\x0cpackage_name\x18\x01 \x01(\t\"z\n\x1a\x44\x65psScrubbedPackageNameMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsScrubbedPackageName\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x82\x01\n\x1eRunningOperationCaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"j\n\x12\x43ompileCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"x\n\x19\x46reshnessCheckCompleteMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.FreshnessCheckComplete\"\x1c\n\nSeedHeader\x12\x0e\n\x06header\x18\x01 \x01(\t\"`\n\rSeedHeaderMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"]\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15SQLRunnerExceptionMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SQLRunnerException\"\xa8\x01\n\rLogTestResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\x12\n\nnum_models\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x14\n\x0cnum_failures\x18\x07 \x01(\x05\"f\n\x10LogTestResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogTestResult\"k\n\x0cLogStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"d\n\x0fLogStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.LogStartLine\"\x95\x01\n\x0eLogModelResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogModelResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\x92\x02\n\x11LogSnapshotResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x34\n\x03\x63\x66g\x18\x07 \x03(\x0b\x32\'.proto_types.LogSnapshotResult.CfgEntry\x12\x16\n\x0eresult_message\x18\x08 \x01(\t\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"n\n\x14LogSnapshotResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogSnapshotResult\"\xb9\x01\n\rLogSeedResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x16\n\x0eresult_message\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\x12\x0e\n\x06schema\x18\x07 \x01(\t\x12\x10\n\x08relation\x18\x08 \x01(\t\"f\n\x10LogSeedResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogSeedResult\"\xad\x01\n\x12LogFreshnessResult\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x05 \x01(\x02\x12\x13\n\x0bsource_name\x18\x06 \x01(\t\x12\x12\n\ntable_name\x18\x07 \x01(\t\"p\n\x15LogFreshnessResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\x98\x01\n\x11LogNodeNoOpResult\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"n\n\x14LogNodeNoOpResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.LogNodeNoOpResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"f\n\x10LogCancelLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.LogCancelLine\"\x1f\n\x0f\x44\x65\x66\x61ultSelector\x12\x0c\n\x04name\x18\x01 \x01(\t\"j\n\x12\x44\x65\x66\x61ultSelectorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DefaultSelector\"5\n\tNodeStart\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"^\n\x0cNodeStartMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.NodeStart\"g\n\x0cNodeFinished\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12-\n\nrun_result\x18\x02 \x01(\x0b\x32\x19.proto_types.RunResultMsg\"d\n\x0fNodeFinishedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"\x82\x01\n\x1eQueryCancelationUnsupportedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.QueryCancelationUnsupported\"O\n\x0f\x43oncurrencyLine\x12\x13\n\x0bnum_threads\x18\x01 \x01(\x05\x12\x13\n\x0btarget_name\x18\x02 \x01(\t\x12\x12\n\nnode_count\x18\x03 \x01(\x05\"j\n\x12\x43oncurrencyLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ConcurrencyLine\"E\n\x19WritingInjectedSQLForNode\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"~\n\x1cWritingInjectedSQLForNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.WritingInjectedSQLForNode\"9\n\rNodeCompiling\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeCompilingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeCompiling\"9\n\rNodeExecuting\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\"f\n\x10NodeExecutingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NodeExecuting\"m\n\x10LogHookStartLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"l\n\x13LogHookStartLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.LogHookStartLine\"\x93\x01\n\x0eLogHookEndLine\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tstatement\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\t\x12\r\n\x05index\x18\x04 \x01(\x05\x12\r\n\x05total\x18\x05 \x01(\x05\x12\x16\n\x0e\x65xecution_time\x18\x06 \x01(\x02\"h\n\x11LogHookEndLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogHookEndLine\"\x93\x01\n\x0fSkippingDetails\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x15\n\rresource_type\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\x12\x11\n\tnode_name\x18\x04 \x01(\t\x12\r\n\x05index\x18\x05 \x01(\x05\x12\r\n\x05total\x18\x06 \x01(\x05\"j\n\x12SkippingDetailsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"b\n\x0eNothingToDoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.NothingToDo\",\n\x1dRunningOperationUncaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x86\x01\n RunningOperationUncaughtErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.RunningOperationUncaughtError\"\x93\x01\n\x0c\x45ndRunResult\x12*\n\x07results\x18\x01 \x03(\x0b\x32\x19.proto_types.RunResultMsg\x12\x14\n\x0c\x65lapsed_time\x18\x02 \x01(\x02\x12\x30\n\x0cgenerated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07success\x18\x04 \x01(\x08\"d\n\x0f\x45ndRunResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"j\n\x12NoNodesSelectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.NoNodesSelected\"w\n\x10\x43ommandCompleted\x12\x0f\n\x07\x63ommand\x18\x01 \x01(\t\x12\x0f\n\x07success\x18\x02 \x01(\x08\x12\x30\n\x0c\x63ompleted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x65lapsed\x18\x04 \x01(\x02\"l\n\x13\x43ommandCompletedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.CommandCompleted\"k\n\x08ShowNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0f\n\x07preview\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"\\\n\x0bShowNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.ShowNode\"p\n\x0c\x43ompiledNode\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x10\n\x08\x63ompiled\x18\x02 \x01(\t\x12\x11\n\tis_inline\x18\x03 \x01(\x08\x12\x15\n\routput_format\x18\x04 \x01(\t\x12\x11\n\tunique_id\x18\x05 \x01(\t\"d\n\x0f\x43ompiledNodeMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.CompiledNode\"b\n\x17\x43\x61tchableExceptionOnRun\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"z\n\x1a\x43\x61tchableExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"_\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12(\n\tnode_info\x18\x03 \x01(\x0b\x32\x15.proto_types.NodeInfo\"p\n\x15InternalErrorOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"u\n\x15GenericExceptionOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"v\n\x18GenericExceptionOnRunMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.GenericExceptionOnRun\"N\n\x1aNodeConnectionReleaseError\x12\x11\n\tnode_name\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"\x80\x01\n\x1dNodeConnectionReleaseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.NodeConnectionReleaseError\"\x1f\n\nFoundStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\"`\n\rFoundStatsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"v\n\x18MainKeyboardInterruptMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.MainKeyboardInterrupt\"#\n\x14MainEncounteredError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x17MainEncounteredErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"h\n\x11MainStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"p\n\x13TimingInfoCollected\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12/\n\x0btiming_info\x18\x02 \x01(\x0b\x32\x1a.proto_types.TimingInfoMsg\"r\n\x16TimingInfoCollectedMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.TimingInfoCollected\"&\n\x12LogDebugStackTrace\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"p\n\x15LogDebugStackTraceMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogDebugStackTrace\"\x1e\n\x0e\x43heckCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"h\n\x11\x43heckCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CheckCleanPath\" \n\x10\x43onfirmCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x13\x43onfirmCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x15ProtectedCleanPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"p\n\x15\x46inishedCleanPathsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FinishedCleanPaths\"5\n\x0bOpenCommand\x12\x10\n\x08open_cmd\x18\x01 \x01(\t\x12\x14\n\x0cprofiles_dir\x18\x02 \x01(\t\"b\n\x0eOpenCommandMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"j\n\x12ServingDocsPortMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"v\n\x18ServingDocsAccessInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"r\n\x16ServingDocsExitInfoMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"t\n\x10RunResultWarning\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultWarningMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"t\n\x10RunResultFailure\x12\x15\n\rresource_type\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12(\n\tnode_info\x18\x04 \x01(\x0b\x32\x15.proto_types.NodeInfo\"l\n\x13RunResultFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultFailure\"k\n\tStatsLine\x12\x30\n\x05stats\x18\x01 \x03(\x0b\x32!.proto_types.StatsLine.StatsEntry\x1a,\n\nStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"^\n\x0cStatsLineMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"G\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"h\n\x11RunResultErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\"S\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultErrorNoMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"I\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"j\n\x12SQLCompiledPathMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"W\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"t\n\x17\x43heckNodeTestFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"W\n\x0f\x45ndOfRunSummary\x12\x12\n\nnum_errors\x18\x01 \x01(\x05\x12\x14\n\x0cnum_warnings\x18\x02 \x01(\x05\x12\x1a\n\x12keyboard_interrupt\x18\x03 \x01(\x08\"j\n\x12\x45ndOfRunSummaryMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.EndOfRunSummary\"U\n\x13LogSkipBecauseError\x12\x0e\n\x06schema\x18\x01 \x01(\t\x12\x10\n\x08relation\x18\x02 \x01(\t\x12\r\n\x05index\x18\x03 \x01(\x05\x12\r\n\x05total\x18\x04 \x01(\x05\"r\n\x16LogSkipBecauseErrorMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"p\n\x15\x45nsureGitInstalledMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"|\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"z\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"j\n\x12\x44isableTrackingMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DisableTracking\"\x1e\n\x0cSendingEvent\x12\x0e\n\x06kwargs\x18\x01 \x01(\t\"d\n\x0fSendingEventMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"l\n\x13SendEventFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"b\n\x0e\x46lushEventsMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"p\n\x15\x46lushEventsFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.FlushEventsFailure\"-\n\x19TrackingInitializeFailure\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"~\n\x1cTrackingInitializeFailureMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"P\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\x12(\n\tnode_info\x18\x02 \x01(\x0b\x32\x15.proto_types.NodeInfo\"z\n\x1aRunResultWarningMessageMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultWarningMessage\"\x1a\n\x0b\x44\x65\x62ugCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"b\n\x0e\x44\x65\x62ugCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.DebugCmdOut\"\x1d\n\x0e\x44\x65\x62ugCmdResult\x12\x0b\n\x03msg\x18\x01 \x01(\t\"h\n\x11\x44\x65\x62ugCmdResultMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.DebugCmdResult\"\x19\n\nListCmdOut\x12\x0b\n\x03msg\x18\x01 \x01(\t\"`\n\rListCmdOutMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\xec\x01\n\x0eResourceReport\x12\x14\n\x0c\x63ommand_name\x18\x02 \x01(\t\x12\x17\n\x0f\x63ommand_success\x18\x03 \x01(\x08\x12\x1f\n\x17\x63ommand_wall_clock_time\x18\x04 \x01(\x02\x12\x19\n\x11process_user_time\x18\x05 \x01(\x02\x12\x1b\n\x13process_kernel_time\x18\x06 \x01(\x02\x12\x1b\n\x13process_mem_max_rss\x18\x07 \x01(\x03\x12\x19\n\x11process_in_blocks\x18\x08 \x01(\x03\x12\x1a\n\x12process_out_blocks\x18\t \x01(\x03\"h\n\x11ResourceReportMsg\x12(\n\x04info\x18\x01 \x01(\x0b\x32\x1a.proto_types.CoreEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ResourceReportb\x06proto3') -_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals()) -_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'core_types_pb2', globals()) +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'core_types_pb2', _globals) if _descriptor._USE_C_DESCRIPTORS == False: - DESCRIPTOR._options = None - _COREEVENTINFO_EXTRAENTRY._options = None - _COREEVENTINFO_EXTRAENTRY._serialized_options = b'8\001' - _MAINREPORTARGS_ARGSENTRY._options = None - _MAINREPORTARGS_ARGSENTRY._serialized_options = b'8\001' - _PARTIALPARSINGERROR_EXCINFOENTRY._options = None - _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_options = b'8\001' - _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._options = None - _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_options = b'8\001' - _LOGSNAPSHOTRESULT_CFGENTRY._options = None - _LOGSNAPSHOTRESULT_CFGENTRY._serialized_options = b'8\001' - _STATSLINE_STATSENTRY._options = None - _STATSLINE_STATSENTRY._serialized_options = b'8\001' - _COREEVENTINFO._serialized_start=97 - _COREEVENTINFO._serialized_end=378 - _COREEVENTINFO_EXTRAENTRY._serialized_start=334 - _COREEVENTINFO_EXTRAENTRY._serialized_end=378 - _NODERELATION._serialized_start=380 - _NODERELATION._serialized_end=466 - _NODEINFO._serialized_start=469 - _NODEINFO._serialized_end=742 - _TIMINGINFOMSG._serialized_start=744 - _TIMINGINFOMSG._serialized_end=871 - _RUNRESULTMSG._serialized_start=874 - _RUNRESULTMSG._serialized_end=1083 - _COLUMNTYPE._serialized_start=1085 - _COLUMNTYPE._serialized_end=1177 - _COLUMNCONSTRAINT._serialized_start=1179 - _COLUMNCONSTRAINT._serialized_end=1268 - _MODELCONSTRAINT._serialized_start=1270 - _MODELCONSTRAINT._serialized_end=1354 - _MAINREPORTVERSION._serialized_start=1356 - _MAINREPORTVERSION._serialized_end=1413 - _MAINREPORTVERSIONMSG._serialized_start=1415 - _MAINREPORTVERSIONMSG._serialized_end=1525 - _MAINREPORTARGS._serialized_start=1527 - _MAINREPORTARGS._serialized_end=1641 - _MAINREPORTARGS_ARGSENTRY._serialized_start=1598 - _MAINREPORTARGS_ARGSENTRY._serialized_end=1641 - _MAINREPORTARGSMSG._serialized_start=1643 - _MAINREPORTARGSMSG._serialized_end=1747 - _MAINTRACKINGUSERSTATE._serialized_start=1749 - _MAINTRACKINGUSERSTATE._serialized_end=1792 - _MAINTRACKINGUSERSTATEMSG._serialized_start=1794 - _MAINTRACKINGUSERSTATEMSG._serialized_end=1912 - _MERGEDFROMSTATE._serialized_start=1914 - _MERGEDFROMSTATE._serialized_end=1967 - _MERGEDFROMSTATEMSG._serialized_start=1969 - _MERGEDFROMSTATEMSG._serialized_end=2075 - _MISSINGPROFILETARGET._serialized_start=2077 - _MISSINGPROFILETARGET._serialized_end=2142 - _MISSINGPROFILETARGETMSG._serialized_start=2144 - _MISSINGPROFILETARGETMSG._serialized_end=2260 - _INVALIDOPTIONYAML._serialized_start=2262 - _INVALIDOPTIONYAML._serialized_end=2302 - _INVALIDOPTIONYAMLMSG._serialized_start=2304 - _INVALIDOPTIONYAMLMSG._serialized_end=2414 - _LOGDBTPROJECTERROR._serialized_start=2416 - _LOGDBTPROJECTERROR._serialized_end=2449 - _LOGDBTPROJECTERRORMSG._serialized_start=2451 - _LOGDBTPROJECTERRORMSG._serialized_end=2563 - _LOGDBTPROFILEERROR._serialized_start=2565 - _LOGDBTPROFILEERROR._serialized_end=2616 - _LOGDBTPROFILEERRORMSG._serialized_start=2618 - _LOGDBTPROFILEERRORMSG._serialized_end=2730 - _STARTERPROJECTPATH._serialized_start=2732 - _STARTERPROJECTPATH._serialized_end=2765 - _STARTERPROJECTPATHMSG._serialized_start=2767 - _STARTERPROJECTPATHMSG._serialized_end=2879 - _CONFIGFOLDERDIRECTORY._serialized_start=2881 - _CONFIGFOLDERDIRECTORY._serialized_end=2917 - _CONFIGFOLDERDIRECTORYMSG._serialized_start=2919 - _CONFIGFOLDERDIRECTORYMSG._serialized_end=3037 - _NOSAMPLEPROFILEFOUND._serialized_start=3039 - _NOSAMPLEPROFILEFOUND._serialized_end=3078 - _NOSAMPLEPROFILEFOUNDMSG._serialized_start=3080 - _NOSAMPLEPROFILEFOUNDMSG._serialized_end=3196 - _PROFILEWRITTENWITHSAMPLE._serialized_start=3198 - _PROFILEWRITTENWITHSAMPLE._serialized_end=3252 - _PROFILEWRITTENWITHSAMPLEMSG._serialized_start=3254 - _PROFILEWRITTENWITHSAMPLEMSG._serialized_end=3378 - _PROFILEWRITTENWITHTARGETTEMPLATEYAML._serialized_start=3380 - _PROFILEWRITTENWITHTARGETTEMPLATEYAML._serialized_end=3446 - _PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG._serialized_start=3449 - _PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG._serialized_end=3597 - _PROFILEWRITTENWITHPROJECTTEMPLATEYAML._serialized_start=3599 - _PROFILEWRITTENWITHPROJECTTEMPLATEYAML._serialized_end=3666 - _PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG._serialized_start=3669 - _PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG._serialized_end=3819 - _SETTINGUPPROFILE._serialized_start=3821 - _SETTINGUPPROFILE._serialized_end=3839 - _SETTINGUPPROFILEMSG._serialized_start=3841 - _SETTINGUPPROFILEMSG._serialized_end=3949 - _INVALIDPROFILETEMPLATEYAML._serialized_start=3951 - _INVALIDPROFILETEMPLATEYAML._serialized_end=3979 - _INVALIDPROFILETEMPLATEYAMLMSG._serialized_start=3982 - _INVALIDPROFILETEMPLATEYAMLMSG._serialized_end=4110 - _PROJECTNAMEALREADYEXISTS._serialized_start=4112 - _PROJECTNAMEALREADYEXISTS._serialized_end=4152 - _PROJECTNAMEALREADYEXISTSMSG._serialized_start=4154 - _PROJECTNAMEALREADYEXISTSMSG._serialized_end=4278 - _PROJECTCREATED._serialized_start=4280 - _PROJECTCREATED._serialized_end=4355 - _PROJECTCREATEDMSG._serialized_start=4357 - _PROJECTCREATEDMSG._serialized_end=4461 - _PACKAGEREDIRECTDEPRECATION._serialized_start=4463 - _PACKAGEREDIRECTDEPRECATION._serialized_end=4527 - _PACKAGEREDIRECTDEPRECATIONMSG._serialized_start=4530 - _PACKAGEREDIRECTDEPRECATIONMSG._serialized_end=4658 - _PACKAGEINSTALLPATHDEPRECATION._serialized_start=4660 - _PACKAGEINSTALLPATHDEPRECATION._serialized_end=4691 - _PACKAGEINSTALLPATHDEPRECATIONMSG._serialized_start=4694 - _PACKAGEINSTALLPATHDEPRECATIONMSG._serialized_end=4828 - _CONFIGSOURCEPATHDEPRECATION._serialized_start=4830 - _CONFIGSOURCEPATHDEPRECATION._serialized_end=4902 - _CONFIGSOURCEPATHDEPRECATIONMSG._serialized_start=4905 - _CONFIGSOURCEPATHDEPRECATIONMSG._serialized_end=5035 - _CONFIGDATAPATHDEPRECATION._serialized_start=5037 - _CONFIGDATAPATHDEPRECATION._serialized_end=5107 - _CONFIGDATAPATHDEPRECATIONMSG._serialized_start=5109 - _CONFIGDATAPATHDEPRECATIONMSG._serialized_end=5235 - _METRICATTRIBUTESRENAMED._serialized_start=5237 - _METRICATTRIBUTESRENAMED._serialized_end=5283 - _METRICATTRIBUTESRENAMEDMSG._serialized_start=5285 - _METRICATTRIBUTESRENAMEDMSG._serialized_end=5407 - _EXPOSURENAMEDEPRECATION._serialized_start=5409 - _EXPOSURENAMEDEPRECATION._serialized_end=5452 - _EXPOSURENAMEDEPRECATIONMSG._serialized_start=5454 - _EXPOSURENAMEDEPRECATIONMSG._serialized_end=5576 - _INTERNALDEPRECATION._serialized_start=5578 - _INTERNALDEPRECATION._serialized_end=5672 - _INTERNALDEPRECATIONMSG._serialized_start=5674 - _INTERNALDEPRECATIONMSG._serialized_end=5788 - _ENVIRONMENTVARIABLERENAMED._serialized_start=5790 - _ENVIRONMENTVARIABLERENAMED._serialized_end=5854 - _ENVIRONMENTVARIABLERENAMEDMSG._serialized_start=5857 - _ENVIRONMENTVARIABLERENAMEDMSG._serialized_end=5985 - _CONFIGLOGPATHDEPRECATION._serialized_start=5987 - _CONFIGLOGPATHDEPRECATION._serialized_end=6038 - _CONFIGLOGPATHDEPRECATIONMSG._serialized_start=6040 - _CONFIGLOGPATHDEPRECATIONMSG._serialized_end=6164 - _CONFIGTARGETPATHDEPRECATION._serialized_start=6166 - _CONFIGTARGETPATHDEPRECATION._serialized_end=6220 - _CONFIGTARGETPATHDEPRECATIONMSG._serialized_start=6223 - _CONFIGTARGETPATHDEPRECATIONMSG._serialized_end=6353 - _TESTSCONFIGDEPRECATION._serialized_start=6355 - _TESTSCONFIGDEPRECATION._serialized_end=6422 - _TESTSCONFIGDEPRECATIONMSG._serialized_start=6424 - _TESTSCONFIGDEPRECATIONMSG._serialized_end=6544 - _PROJECTFLAGSMOVEDDEPRECATION._serialized_start=6546 - _PROJECTFLAGSMOVEDDEPRECATION._serialized_end=6576 - _PROJECTFLAGSMOVEDDEPRECATIONMSG._serialized_start=6579 - _PROJECTFLAGSMOVEDDEPRECATIONMSG._serialized_end=6711 - _SPACESINRESOURCENAMEDEPRECATION._serialized_start=6713 - _SPACESINRESOURCENAMEDEPRECATION._serialized_end=6780 - _SPACESINRESOURCENAMEDEPRECATIONMSG._serialized_start=6783 - _SPACESINRESOURCENAMEDEPRECATIONMSG._serialized_end=6921 - _RESOURCENAMESWITHSPACESDEPRECATION._serialized_start=6923 - _RESOURCENAMESWITHSPACESDEPRECATION._serialized_end=7028 - _RESOURCENAMESWITHSPACESDEPRECATIONMSG._serialized_start=7031 - _RESOURCENAMESWITHSPACESDEPRECATIONMSG._serialized_end=7175 - _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION._serialized_start=7177 - _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION._serialized_end=7272 - _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG._serialized_start=7275 - _PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG._serialized_end=7433 - _SOURCEFRESHNESSPROJECTHOOKSNOTRUN._serialized_start=7435 - _SOURCEFRESHNESSPROJECTHOOKSNOTRUN._serialized_end=7470 - _SOURCEFRESHNESSPROJECTHOOKSNOTRUNMSG._serialized_start=7473 - _SOURCEFRESHNESSPROJECTHOOKSNOTRUNMSG._serialized_end=7615 - _DEPRECATEDMODEL._serialized_start=7617 - _DEPRECATEDMODEL._serialized_end=7703 - _DEPRECATEDMODELMSG._serialized_start=7705 - _DEPRECATEDMODELMSG._serialized_end=7811 - _INPUTFILEDIFFERROR._serialized_start=7813 - _INPUTFILEDIFFERROR._serialized_end=7868 - _INPUTFILEDIFFERRORMSG._serialized_start=7870 - _INPUTFILEDIFFERRORMSG._serialized_end=7982 - _INVALIDVALUEFORFIELD._serialized_start=7984 - _INVALIDVALUEFORFIELD._serialized_end=8047 - _INVALIDVALUEFORFIELDMSG._serialized_start=8049 - _INVALIDVALUEFORFIELDMSG._serialized_end=8165 - _VALIDATIONWARNING._serialized_start=8167 - _VALIDATIONWARNING._serialized_end=8248 - _VALIDATIONWARNINGMSG._serialized_start=8250 - _VALIDATIONWARNINGMSG._serialized_end=8360 - _PARSEPERFINFOPATH._serialized_start=8362 - _PARSEPERFINFOPATH._serialized_end=8395 - _PARSEPERFINFOPATHMSG._serialized_start=8397 - _PARSEPERFINFOPATHMSG._serialized_end=8507 - _PARTIALPARSINGERRORPROCESSINGFILE._serialized_start=8509 - _PARTIALPARSINGERRORPROCESSINGFILE._serialized_end=8558 - _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_start=8561 - _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_end=8703 - _PARTIALPARSINGERROR._serialized_start=8706 - _PARTIALPARSINGERROR._serialized_end=8840 - _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_start=8794 - _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_end=8840 - _PARTIALPARSINGERRORMSG._serialized_start=8842 - _PARTIALPARSINGERRORMSG._serialized_end=8956 - _PARTIALPARSINGSKIPPARSING._serialized_start=8958 - _PARTIALPARSINGSKIPPARSING._serialized_end=8985 - _PARTIALPARSINGSKIPPARSINGMSG._serialized_start=8987 - _PARTIALPARSINGSKIPPARSINGMSG._serialized_end=9113 - _UNABLETOPARTIALPARSE._serialized_start=9115 - _UNABLETOPARTIALPARSE._serialized_end=9153 - _UNABLETOPARTIALPARSEMSG._serialized_start=9155 - _UNABLETOPARTIALPARSEMSG._serialized_end=9271 - _STATECHECKVARSHASH._serialized_start=9273 - _STATECHECKVARSHASH._serialized_end=9375 - _STATECHECKVARSHASHMSG._serialized_start=9377 - _STATECHECKVARSHASHMSG._serialized_end=9489 - _PARTIALPARSINGNOTENABLED._serialized_start=9491 - _PARTIALPARSINGNOTENABLED._serialized_end=9517 - _PARTIALPARSINGNOTENABLEDMSG._serialized_start=9519 - _PARTIALPARSINGNOTENABLEDMSG._serialized_end=9643 - _PARSEDFILELOADFAILED._serialized_start=9645 - _PARSEDFILELOADFAILED._serialized_end=9712 - _PARSEDFILELOADFAILEDMSG._serialized_start=9714 - _PARSEDFILELOADFAILEDMSG._serialized_end=9830 - _PARTIALPARSINGENABLED._serialized_start=9832 - _PARTIALPARSINGENABLED._serialized_end=9904 - _PARTIALPARSINGENABLEDMSG._serialized_start=9906 - _PARTIALPARSINGENABLEDMSG._serialized_end=10024 - _PARTIALPARSINGFILE._serialized_start=10026 - _PARTIALPARSINGFILE._serialized_end=10082 - _PARTIALPARSINGFILEMSG._serialized_start=10084 - _PARTIALPARSINGFILEMSG._serialized_end=10196 - _INVALIDDISABLEDTARGETINTESTNODE._serialized_start=10199 - _INVALIDDISABLEDTARGETINTESTNODE._serialized_end=10374 - _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_start=10377 - _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_end=10515 - _UNUSEDRESOURCECONFIGPATH._serialized_start=10517 - _UNUSEDRESOURCECONFIGPATH._serialized_end=10572 - _UNUSEDRESOURCECONFIGPATHMSG._serialized_start=10574 - _UNUSEDRESOURCECONFIGPATHMSG._serialized_end=10698 - _SEEDINCREASED._serialized_start=10700 - _SEEDINCREASED._serialized_end=10751 - _SEEDINCREASEDMSG._serialized_start=10753 - _SEEDINCREASEDMSG._serialized_end=10855 - _SEEDEXCEEDSLIMITSAMEPATH._serialized_start=10857 - _SEEDEXCEEDSLIMITSAMEPATH._serialized_end=10919 - _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_start=10921 - _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_end=11045 - _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_start=11047 - _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_end=11115 - _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_start=11118 - _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_end=11254 - _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_start=11256 - _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_end=11348 - _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_start=11351 - _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_end=11489 - _UNUSEDTABLES._serialized_start=11491 - _UNUSEDTABLES._serialized_end=11528 - _UNUSEDTABLESMSG._serialized_start=11530 - _UNUSEDTABLESMSG._serialized_end=11630 - _WRONGRESOURCESCHEMAFILE._serialized_start=11633 - _WRONGRESOURCESCHEMAFILE._serialized_end=11768 - _WRONGRESOURCESCHEMAFILEMSG._serialized_start=11770 - _WRONGRESOURCESCHEMAFILEMSG._serialized_end=11892 - _NONODEFORYAMLKEY._serialized_start=11894 - _NONODEFORYAMLKEY._serialized_end=11969 - _NONODEFORYAMLKEYMSG._serialized_start=11971 - _NONODEFORYAMLKEYMSG._serialized_end=12079 - _MACRONOTFOUNDFORPATCH._serialized_start=12081 - _MACRONOTFOUNDFORPATCH._serialized_end=12124 - _MACRONOTFOUNDFORPATCHMSG._serialized_start=12126 - _MACRONOTFOUNDFORPATCHMSG._serialized_end=12244 - _NODENOTFOUNDORDISABLED._serialized_start=12247 - _NODENOTFOUNDORDISABLED._serialized_end=12431 - _NODENOTFOUNDORDISABLEDMSG._serialized_start=12433 - _NODENOTFOUNDORDISABLEDMSG._serialized_end=12553 - _JINJALOGWARNING._serialized_start=12555 - _JINJALOGWARNING._serialized_end=12627 - _JINJALOGWARNINGMSG._serialized_start=12629 - _JINJALOGWARNINGMSG._serialized_end=12735 - _JINJALOGINFO._serialized_start=12737 - _JINJALOGINFO._serialized_end=12806 - _JINJALOGINFOMSG._serialized_start=12808 - _JINJALOGINFOMSG._serialized_end=12908 - _JINJALOGDEBUG._serialized_start=12910 - _JINJALOGDEBUG._serialized_end=12980 - _JINJALOGDEBUGMSG._serialized_start=12982 - _JINJALOGDEBUGMSG._serialized_end=13084 - _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_start=13087 - _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_end=13261 - _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_start=13264 - _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_end=13400 - _UPCOMINGREFERENCEDEPRECATION._serialized_start=13403 - _UPCOMINGREFERENCEDEPRECATION._serialized_end=13601 - _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_start=13604 - _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_end=13736 - _DEPRECATEDREFERENCE._serialized_start=13739 - _DEPRECATEDREFERENCE._serialized_end=13928 - _DEPRECATEDREFERENCEMSG._serialized_start=13930 - _DEPRECATEDREFERENCEMSG._serialized_end=14044 - _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_start=14046 - _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_end=14106 - _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_start=14109 - _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_end=14257 - _PARSEINLINENODEERROR._serialized_start=14259 - _PARSEINLINENODEERROR._serialized_end=14336 - _PARSEINLINENODEERRORMSG._serialized_start=14338 - _PARSEINLINENODEERRORMSG._serialized_end=14454 - _SEMANTICVALIDATIONFAILURE._serialized_start=14456 - _SEMANTICVALIDATIONFAILURE._serialized_end=14496 - _SEMANTICVALIDATIONFAILUREMSG._serialized_start=14498 - _SEMANTICVALIDATIONFAILUREMSG._serialized_end=14624 - _UNVERSIONEDBREAKINGCHANGE._serialized_start=14627 - _UNVERSIONEDBREAKINGCHANGE._serialized_end=15021 - _UNVERSIONEDBREAKINGCHANGEMSG._serialized_start=15023 - _UNVERSIONEDBREAKINGCHANGEMSG._serialized_end=15149 - _WARNSTATETARGETEQUAL._serialized_start=15151 - _WARNSTATETARGETEQUAL._serialized_end=15193 - _WARNSTATETARGETEQUALMSG._serialized_start=15195 - _WARNSTATETARGETEQUALMSG._serialized_end=15311 - _FRESHNESSCONFIGPROBLEM._serialized_start=15313 - _FRESHNESSCONFIGPROBLEM._serialized_end=15350 - _FRESHNESSCONFIGPROBLEMMSG._serialized_start=15352 - _FRESHNESSCONFIGPROBLEMMSG._serialized_end=15472 - _GITSPARSECHECKOUTSUBDIRECTORY._serialized_start=15474 - _GITSPARSECHECKOUTSUBDIRECTORY._serialized_end=15521 - _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_start=15524 - _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_end=15658 - _GITPROGRESSCHECKOUTREVISION._serialized_start=15660 - _GITPROGRESSCHECKOUTREVISION._serialized_end=15707 - _GITPROGRESSCHECKOUTREVISIONMSG._serialized_start=15710 - _GITPROGRESSCHECKOUTREVISIONMSG._serialized_end=15840 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_start=15842 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_end=15894 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_start=15897 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_end=16047 - _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_start=16049 - _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_end=16095 - _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_start=16098 - _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_end=16236 - _GITNOTHINGTODO._serialized_start=16238 - _GITNOTHINGTODO._serialized_end=16267 - _GITNOTHINGTODOMSG._serialized_start=16269 - _GITNOTHINGTODOMSG._serialized_end=16373 - _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_start=16375 - _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_end=16444 - _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_start=16447 - _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_end=16585 - _GITPROGRESSCHECKEDOUTAT._serialized_start=16587 - _GITPROGRESSCHECKEDOUTAT._serialized_end=16629 - _GITPROGRESSCHECKEDOUTATMSG._serialized_start=16631 - _GITPROGRESSCHECKEDOUTATMSG._serialized_end=16753 - _REGISTRYPROGRESSGETREQUEST._serialized_start=16755 - _REGISTRYPROGRESSGETREQUEST._serialized_end=16796 - _REGISTRYPROGRESSGETREQUESTMSG._serialized_start=16799 - _REGISTRYPROGRESSGETREQUESTMSG._serialized_end=16927 - _REGISTRYPROGRESSGETRESPONSE._serialized_start=16929 - _REGISTRYPROGRESSGETRESPONSE._serialized_end=16990 - _REGISTRYPROGRESSGETRESPONSEMSG._serialized_start=16993 - _REGISTRYPROGRESSGETRESPONSEMSG._serialized_end=17123 - _SELECTORREPORTINVALIDSELECTOR._serialized_start=17125 - _SELECTORREPORTINVALIDSELECTOR._serialized_end=17220 - _SELECTORREPORTINVALIDSELECTORMSG._serialized_start=17223 - _SELECTORREPORTINVALIDSELECTORMSG._serialized_end=17357 - _DEPSNOPACKAGESFOUND._serialized_start=17359 - _DEPSNOPACKAGESFOUND._serialized_end=17380 - _DEPSNOPACKAGESFOUNDMSG._serialized_start=17382 - _DEPSNOPACKAGESFOUNDMSG._serialized_end=17496 - _DEPSSTARTPACKAGEINSTALL._serialized_start=17498 - _DEPSSTARTPACKAGEINSTALL._serialized_end=17545 - _DEPSSTARTPACKAGEINSTALLMSG._serialized_start=17547 - _DEPSSTARTPACKAGEINSTALLMSG._serialized_end=17669 - _DEPSINSTALLINFO._serialized_start=17671 - _DEPSINSTALLINFO._serialized_end=17710 - _DEPSINSTALLINFOMSG._serialized_start=17712 - _DEPSINSTALLINFOMSG._serialized_end=17818 - _DEPSUPDATEAVAILABLE._serialized_start=17820 - _DEPSUPDATEAVAILABLE._serialized_end=17865 - _DEPSUPDATEAVAILABLEMSG._serialized_start=17867 - _DEPSUPDATEAVAILABLEMSG._serialized_end=17981 - _DEPSUPTODATE._serialized_start=17983 - _DEPSUPTODATE._serialized_end=17997 - _DEPSUPTODATEMSG._serialized_start=17999 - _DEPSUPTODATEMSG._serialized_end=18099 - _DEPSLISTSUBDIRECTORY._serialized_start=18101 - _DEPSLISTSUBDIRECTORY._serialized_end=18145 - _DEPSLISTSUBDIRECTORYMSG._serialized_start=18147 - _DEPSLISTSUBDIRECTORYMSG._serialized_end=18263 - _DEPSNOTIFYUPDATESAVAILABLE._serialized_start=18265 - _DEPSNOTIFYUPDATESAVAILABLE._serialized_end=18311 - _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_start=18314 - _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_end=18442 - _REGISTRYINDEXPROGRESSGETREQUEST._serialized_start=18444 - _REGISTRYINDEXPROGRESSGETREQUEST._serialized_end=18490 - _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_start=18493 - _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_end=18631 - _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_start=18633 - _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_end=18699 - _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_start=18702 - _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_end=18842 - _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_start=18844 - _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_end=18894 - _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_start=18897 - _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_end=19033 - _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_start=19035 - _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_end=19085 - _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_start=19088 - _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_end=19224 - _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_start=19226 - _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_end=19279 - _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_start=19282 - _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_end=19424 - _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_start=19426 - _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_end=19477 - _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_start=19480 - _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_end=19618 - _DEPSSETDOWNLOADDIRECTORY._serialized_start=19620 - _DEPSSETDOWNLOADDIRECTORY._serialized_end=19660 - _DEPSSETDOWNLOADDIRECTORYMSG._serialized_start=19662 - _DEPSSETDOWNLOADDIRECTORYMSG._serialized_end=19786 - _DEPSUNPINNED._serialized_start=19788 - _DEPSUNPINNED._serialized_end=19833 - _DEPSUNPINNEDMSG._serialized_start=19835 - _DEPSUNPINNEDMSG._serialized_end=19935 - _NONODESFORSELECTIONCRITERIA._serialized_start=19937 - _NONODESFORSELECTIONCRITERIA._serialized_end=19984 - _NONODESFORSELECTIONCRITERIAMSG._serialized_start=19987 - _NONODESFORSELECTIONCRITERIAMSG._serialized_end=20117 - _DEPSLOCKUPDATING._serialized_start=20119 - _DEPSLOCKUPDATING._serialized_end=20160 - _DEPSLOCKUPDATINGMSG._serialized_start=20162 - _DEPSLOCKUPDATINGMSG._serialized_end=20270 - _DEPSADDPACKAGE._serialized_start=20272 - _DEPSADDPACKAGE._serialized_end=20354 - _DEPSADDPACKAGEMSG._serialized_start=20356 - _DEPSADDPACKAGEMSG._serialized_end=20460 - _DEPSFOUNDDUPLICATEPACKAGE._serialized_start=20463 - _DEPSFOUNDDUPLICATEPACKAGE._serialized_end=20630 - _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_start=20577 - _DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY._serialized_end=20630 - _DEPSFOUNDDUPLICATEPACKAGEMSG._serialized_start=20632 - _DEPSFOUNDDUPLICATEPACKAGEMSG._serialized_end=20758 - _DEPSVERSIONMISSING._serialized_start=20760 - _DEPSVERSIONMISSING._serialized_end=20796 - _DEPSVERSIONMISSINGMSG._serialized_start=20798 - _DEPSVERSIONMISSINGMSG._serialized_end=20910 - _DEPSSCRUBBEDPACKAGENAME._serialized_start=20912 - _DEPSSCRUBBEDPACKAGENAME._serialized_end=20959 - _DEPSSCRUBBEDPACKAGENAMEMSG._serialized_start=20961 - _DEPSSCRUBBEDPACKAGENAMEMSG._serialized_end=21083 - _RUNNINGOPERATIONCAUGHTERROR._serialized_start=21085 - _RUNNINGOPERATIONCAUGHTERROR._serialized_end=21127 - _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_start=21130 - _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_end=21260 - _COMPILECOMPLETE._serialized_start=21262 - _COMPILECOMPLETE._serialized_end=21279 - _COMPILECOMPLETEMSG._serialized_start=21281 - _COMPILECOMPLETEMSG._serialized_end=21387 - _FRESHNESSCHECKCOMPLETE._serialized_start=21389 - _FRESHNESSCHECKCOMPLETE._serialized_end=21413 - _FRESHNESSCHECKCOMPLETEMSG._serialized_start=21415 - _FRESHNESSCHECKCOMPLETEMSG._serialized_end=21535 - _SEEDHEADER._serialized_start=21537 - _SEEDHEADER._serialized_end=21565 - _SEEDHEADERMSG._serialized_start=21567 - _SEEDHEADERMSG._serialized_end=21663 - _SQLRUNNEREXCEPTION._serialized_start=21665 - _SQLRUNNEREXCEPTION._serialized_end=21758 - _SQLRUNNEREXCEPTIONMSG._serialized_start=21760 - _SQLRUNNEREXCEPTIONMSG._serialized_end=21872 - _LOGTESTRESULT._serialized_start=21875 - _LOGTESTRESULT._serialized_end=22043 - _LOGTESTRESULTMSG._serialized_start=22045 - _LOGTESTRESULTMSG._serialized_end=22147 - _LOGSTARTLINE._serialized_start=22149 - _LOGSTARTLINE._serialized_end=22256 - _LOGSTARTLINEMSG._serialized_start=22258 - _LOGSTARTLINEMSG._serialized_end=22358 - _LOGMODELRESULT._serialized_start=22361 - _LOGMODELRESULT._serialized_end=22510 - _LOGMODELRESULTMSG._serialized_start=22512 - _LOGMODELRESULTMSG._serialized_end=22616 - _LOGSNAPSHOTRESULT._serialized_start=22619 - _LOGSNAPSHOTRESULT._serialized_end=22893 - _LOGSNAPSHOTRESULT_CFGENTRY._serialized_start=22851 - _LOGSNAPSHOTRESULT_CFGENTRY._serialized_end=22893 - _LOGSNAPSHOTRESULTMSG._serialized_start=22895 - _LOGSNAPSHOTRESULTMSG._serialized_end=23005 - _LOGSEEDRESULT._serialized_start=23008 - _LOGSEEDRESULT._serialized_end=23193 - _LOGSEEDRESULTMSG._serialized_start=23195 - _LOGSEEDRESULTMSG._serialized_end=23297 - _LOGFRESHNESSRESULT._serialized_start=23300 - _LOGFRESHNESSRESULT._serialized_end=23473 - _LOGFRESHNESSRESULTMSG._serialized_start=23475 - _LOGFRESHNESSRESULTMSG._serialized_end=23587 - _LOGNODENOOPRESULT._serialized_start=23590 - _LOGNODENOOPRESULT._serialized_end=23742 - _LOGNODENOOPRESULTMSG._serialized_start=23744 - _LOGNODENOOPRESULTMSG._serialized_end=23854 - _LOGCANCELLINE._serialized_start=23856 - _LOGCANCELLINE._serialized_end=23890 - _LOGCANCELLINEMSG._serialized_start=23892 - _LOGCANCELLINEMSG._serialized_end=23994 - _DEFAULTSELECTOR._serialized_start=23996 - _DEFAULTSELECTOR._serialized_end=24027 - _DEFAULTSELECTORMSG._serialized_start=24029 - _DEFAULTSELECTORMSG._serialized_end=24135 - _NODESTART._serialized_start=24137 - _NODESTART._serialized_end=24190 - _NODESTARTMSG._serialized_start=24192 - _NODESTARTMSG._serialized_end=24286 - _NODEFINISHED._serialized_start=24288 - _NODEFINISHED._serialized_end=24391 - _NODEFINISHEDMSG._serialized_start=24393 - _NODEFINISHEDMSG._serialized_end=24493 - _QUERYCANCELATIONUNSUPPORTED._serialized_start=24495 - _QUERYCANCELATIONUNSUPPORTED._serialized_end=24538 - _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_start=24541 - _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_end=24671 - _CONCURRENCYLINE._serialized_start=24673 - _CONCURRENCYLINE._serialized_end=24752 - _CONCURRENCYLINEMSG._serialized_start=24754 - _CONCURRENCYLINEMSG._serialized_end=24860 - _WRITINGINJECTEDSQLFORNODE._serialized_start=24862 - _WRITINGINJECTEDSQLFORNODE._serialized_end=24931 - _WRITINGINJECTEDSQLFORNODEMSG._serialized_start=24933 - _WRITINGINJECTEDSQLFORNODEMSG._serialized_end=25059 - _NODECOMPILING._serialized_start=25061 - _NODECOMPILING._serialized_end=25118 - _NODECOMPILINGMSG._serialized_start=25120 - _NODECOMPILINGMSG._serialized_end=25222 - _NODEEXECUTING._serialized_start=25224 - _NODEEXECUTING._serialized_end=25281 - _NODEEXECUTINGMSG._serialized_start=25283 - _NODEEXECUTINGMSG._serialized_end=25385 - _LOGHOOKSTARTLINE._serialized_start=25387 - _LOGHOOKSTARTLINE._serialized_end=25496 - _LOGHOOKSTARTLINEMSG._serialized_start=25498 - _LOGHOOKSTARTLINEMSG._serialized_end=25606 - _LOGHOOKENDLINE._serialized_start=25609 - _LOGHOOKENDLINE._serialized_end=25756 - _LOGHOOKENDLINEMSG._serialized_start=25758 - _LOGHOOKENDLINEMSG._serialized_end=25862 - _SKIPPINGDETAILS._serialized_start=25865 - _SKIPPINGDETAILS._serialized_end=26012 - _SKIPPINGDETAILSMSG._serialized_start=26014 - _SKIPPINGDETAILSMSG._serialized_end=26120 - _NOTHINGTODO._serialized_start=26122 - _NOTHINGTODO._serialized_end=26135 - _NOTHINGTODOMSG._serialized_start=26137 - _NOTHINGTODOMSG._serialized_end=26235 - _RUNNINGOPERATIONUNCAUGHTERROR._serialized_start=26237 - _RUNNINGOPERATIONUNCAUGHTERROR._serialized_end=26281 - _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_start=26284 - _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_end=26418 - _ENDRUNRESULT._serialized_start=26421 - _ENDRUNRESULT._serialized_end=26568 - _ENDRUNRESULTMSG._serialized_start=26570 - _ENDRUNRESULTMSG._serialized_end=26670 - _NONODESSELECTED._serialized_start=26672 - _NONODESSELECTED._serialized_end=26689 - _NONODESSELECTEDMSG._serialized_start=26691 - _NONODESSELECTEDMSG._serialized_end=26797 - _COMMANDCOMPLETED._serialized_start=26799 - _COMMANDCOMPLETED._serialized_end=26918 - _COMMANDCOMPLETEDMSG._serialized_start=26920 - _COMMANDCOMPLETEDMSG._serialized_end=27028 - _SHOWNODE._serialized_start=27030 - _SHOWNODE._serialized_end=27137 - _SHOWNODEMSG._serialized_start=27139 - _SHOWNODEMSG._serialized_end=27231 - _COMPILEDNODE._serialized_start=27233 - _COMPILEDNODE._serialized_end=27345 - _COMPILEDNODEMSG._serialized_start=27347 - _COMPILEDNODEMSG._serialized_end=27447 - _CATCHABLEEXCEPTIONONRUN._serialized_start=27449 - _CATCHABLEEXCEPTIONONRUN._serialized_end=27547 - _CATCHABLEEXCEPTIONONRUNMSG._serialized_start=27549 - _CATCHABLEEXCEPTIONONRUNMSG._serialized_end=27671 - _INTERNALERRORONRUN._serialized_start=27673 - _INTERNALERRORONRUN._serialized_end=27768 - _INTERNALERRORONRUNMSG._serialized_start=27770 - _INTERNALERRORONRUNMSG._serialized_end=27882 - _GENERICEXCEPTIONONRUN._serialized_start=27884 - _GENERICEXCEPTIONONRUN._serialized_end=28001 - _GENERICEXCEPTIONONRUNMSG._serialized_start=28003 - _GENERICEXCEPTIONONRUNMSG._serialized_end=28121 - _NODECONNECTIONRELEASEERROR._serialized_start=28123 - _NODECONNECTIONRELEASEERROR._serialized_end=28201 - _NODECONNECTIONRELEASEERRORMSG._serialized_start=28204 - _NODECONNECTIONRELEASEERRORMSG._serialized_end=28332 - _FOUNDSTATS._serialized_start=28334 - _FOUNDSTATS._serialized_end=28365 - _FOUNDSTATSMSG._serialized_start=28367 - _FOUNDSTATSMSG._serialized_end=28463 - _MAINKEYBOARDINTERRUPT._serialized_start=28465 - _MAINKEYBOARDINTERRUPT._serialized_end=28488 - _MAINKEYBOARDINTERRUPTMSG._serialized_start=28490 - _MAINKEYBOARDINTERRUPTMSG._serialized_end=28608 - _MAINENCOUNTEREDERROR._serialized_start=28610 - _MAINENCOUNTEREDERROR._serialized_end=28645 - _MAINENCOUNTEREDERRORMSG._serialized_start=28647 - _MAINENCOUNTEREDERRORMSG._serialized_end=28763 - _MAINSTACKTRACE._serialized_start=28765 - _MAINSTACKTRACE._serialized_end=28802 - _MAINSTACKTRACEMSG._serialized_start=28804 - _MAINSTACKTRACEMSG._serialized_end=28908 - _TIMINGINFOCOLLECTED._serialized_start=28910 - _TIMINGINFOCOLLECTED._serialized_end=29022 - _TIMINGINFOCOLLECTEDMSG._serialized_start=29024 - _TIMINGINFOCOLLECTEDMSG._serialized_end=29138 - _LOGDEBUGSTACKTRACE._serialized_start=29140 - _LOGDEBUGSTACKTRACE._serialized_end=29178 - _LOGDEBUGSTACKTRACEMSG._serialized_start=29180 - _LOGDEBUGSTACKTRACEMSG._serialized_end=29292 - _CHECKCLEANPATH._serialized_start=29294 - _CHECKCLEANPATH._serialized_end=29324 - _CHECKCLEANPATHMSG._serialized_start=29326 - _CHECKCLEANPATHMSG._serialized_end=29430 - _CONFIRMCLEANPATH._serialized_start=29432 - _CONFIRMCLEANPATH._serialized_end=29464 - _CONFIRMCLEANPATHMSG._serialized_start=29466 - _CONFIRMCLEANPATHMSG._serialized_end=29574 - _PROTECTEDCLEANPATH._serialized_start=29576 - _PROTECTEDCLEANPATH._serialized_end=29610 - _PROTECTEDCLEANPATHMSG._serialized_start=29612 - _PROTECTEDCLEANPATHMSG._serialized_end=29724 - _FINISHEDCLEANPATHS._serialized_start=29726 - _FINISHEDCLEANPATHS._serialized_end=29746 - _FINISHEDCLEANPATHSMSG._serialized_start=29748 - _FINISHEDCLEANPATHSMSG._serialized_end=29860 - _OPENCOMMAND._serialized_start=29862 - _OPENCOMMAND._serialized_end=29915 - _OPENCOMMANDMSG._serialized_start=29917 - _OPENCOMMANDMSG._serialized_end=30015 - _SERVINGDOCSPORT._serialized_start=30017 - _SERVINGDOCSPORT._serialized_end=30065 - _SERVINGDOCSPORTMSG._serialized_start=30067 - _SERVINGDOCSPORTMSG._serialized_end=30173 - _SERVINGDOCSACCESSINFO._serialized_start=30175 - _SERVINGDOCSACCESSINFO._serialized_end=30212 - _SERVINGDOCSACCESSINFOMSG._serialized_start=30214 - _SERVINGDOCSACCESSINFOMSG._serialized_end=30332 - _SERVINGDOCSEXITINFO._serialized_start=30334 - _SERVINGDOCSEXITINFO._serialized_end=30355 - _SERVINGDOCSEXITINFOMSG._serialized_start=30357 - _SERVINGDOCSEXITINFOMSG._serialized_end=30471 - _RUNRESULTWARNING._serialized_start=30473 - _RUNRESULTWARNING._serialized_end=30589 - _RUNRESULTWARNINGMSG._serialized_start=30591 - _RUNRESULTWARNINGMSG._serialized_end=30699 - _RUNRESULTFAILURE._serialized_start=30701 - _RUNRESULTFAILURE._serialized_end=30817 - _RUNRESULTFAILUREMSG._serialized_start=30819 - _RUNRESULTFAILUREMSG._serialized_end=30927 - _STATSLINE._serialized_start=30929 - _STATSLINE._serialized_end=31036 - _STATSLINE_STATSENTRY._serialized_start=30992 - _STATSLINE_STATSENTRY._serialized_end=31036 - _STATSLINEMSG._serialized_start=31038 - _STATSLINEMSG._serialized_end=31132 - _RUNRESULTERROR._serialized_start=31134 - _RUNRESULTERROR._serialized_end=31205 - _RUNRESULTERRORMSG._serialized_start=31207 - _RUNRESULTERRORMSG._serialized_end=31311 - _RUNRESULTERRORNOMESSAGE._serialized_start=31313 - _RUNRESULTERRORNOMESSAGE._serialized_end=31396 - _RUNRESULTERRORNOMESSAGEMSG._serialized_start=31398 - _RUNRESULTERRORNOMESSAGEMSG._serialized_end=31520 - _SQLCOMPILEDPATH._serialized_start=31522 - _SQLCOMPILEDPATH._serialized_end=31595 - _SQLCOMPILEDPATHMSG._serialized_start=31597 - _SQLCOMPILEDPATHMSG._serialized_end=31703 - _CHECKNODETESTFAILURE._serialized_start=31705 - _CHECKNODETESTFAILURE._serialized_end=31792 - _CHECKNODETESTFAILUREMSG._serialized_start=31794 - _CHECKNODETESTFAILUREMSG._serialized_end=31910 - _ENDOFRUNSUMMARY._serialized_start=31912 - _ENDOFRUNSUMMARY._serialized_end=31999 - _ENDOFRUNSUMMARYMSG._serialized_start=32001 - _ENDOFRUNSUMMARYMSG._serialized_end=32107 - _LOGSKIPBECAUSEERROR._serialized_start=32109 - _LOGSKIPBECAUSEERROR._serialized_end=32194 - _LOGSKIPBECAUSEERRORMSG._serialized_start=32196 - _LOGSKIPBECAUSEERRORMSG._serialized_end=32310 - _ENSUREGITINSTALLED._serialized_start=32312 - _ENSUREGITINSTALLED._serialized_end=32332 - _ENSUREGITINSTALLEDMSG._serialized_start=32334 - _ENSUREGITINSTALLEDMSG._serialized_end=32446 - _DEPSCREATINGLOCALSYMLINK._serialized_start=32448 - _DEPSCREATINGLOCALSYMLINK._serialized_end=32474 - _DEPSCREATINGLOCALSYMLINKMSG._serialized_start=32476 - _DEPSCREATINGLOCALSYMLINKMSG._serialized_end=32600 - _DEPSSYMLINKNOTAVAILABLE._serialized_start=32602 - _DEPSSYMLINKNOTAVAILABLE._serialized_end=32627 - _DEPSSYMLINKNOTAVAILABLEMSG._serialized_start=32629 - _DEPSSYMLINKNOTAVAILABLEMSG._serialized_end=32751 - _DISABLETRACKING._serialized_start=32753 - _DISABLETRACKING._serialized_end=32770 - _DISABLETRACKINGMSG._serialized_start=32772 - _DISABLETRACKINGMSG._serialized_end=32878 - _SENDINGEVENT._serialized_start=32880 - _SENDINGEVENT._serialized_end=32910 - _SENDINGEVENTMSG._serialized_start=32912 - _SENDINGEVENTMSG._serialized_end=33012 - _SENDEVENTFAILURE._serialized_start=33014 - _SENDEVENTFAILURE._serialized_end=33032 - _SENDEVENTFAILUREMSG._serialized_start=33034 - _SENDEVENTFAILUREMSG._serialized_end=33142 - _FLUSHEVENTS._serialized_start=33144 - _FLUSHEVENTS._serialized_end=33157 - _FLUSHEVENTSMSG._serialized_start=33159 - _FLUSHEVENTSMSG._serialized_end=33257 - _FLUSHEVENTSFAILURE._serialized_start=33259 - _FLUSHEVENTSFAILURE._serialized_end=33279 - _FLUSHEVENTSFAILUREMSG._serialized_start=33281 - _FLUSHEVENTSFAILUREMSG._serialized_end=33393 - _TRACKINGINITIALIZEFAILURE._serialized_start=33395 - _TRACKINGINITIALIZEFAILURE._serialized_end=33440 - _TRACKINGINITIALIZEFAILUREMSG._serialized_start=33442 - _TRACKINGINITIALIZEFAILUREMSG._serialized_end=33568 - _RUNRESULTWARNINGMESSAGE._serialized_start=33570 - _RUNRESULTWARNINGMESSAGE._serialized_end=33650 - _RUNRESULTWARNINGMESSAGEMSG._serialized_start=33652 - _RUNRESULTWARNINGMESSAGEMSG._serialized_end=33774 - _DEBUGCMDOUT._serialized_start=33776 - _DEBUGCMDOUT._serialized_end=33802 - _DEBUGCMDOUTMSG._serialized_start=33804 - _DEBUGCMDOUTMSG._serialized_end=33902 - _DEBUGCMDRESULT._serialized_start=33904 - _DEBUGCMDRESULT._serialized_end=33933 - _DEBUGCMDRESULTMSG._serialized_start=33935 - _DEBUGCMDRESULTMSG._serialized_end=34039 - _LISTCMDOUT._serialized_start=34041 - _LISTCMDOUT._serialized_end=34066 - _LISTCMDOUTMSG._serialized_start=34068 - _LISTCMDOUTMSG._serialized_end=34164 - _RESOURCEREPORT._serialized_start=34167 - _RESOURCEREPORT._serialized_end=34403 - _RESOURCEREPORTMSG._serialized_start=34405 - _RESOURCEREPORTMSG._serialized_end=34509 + _globals['_COREEVENTINFO_EXTRAENTRY']._options = None + _globals['_COREEVENTINFO_EXTRAENTRY']._serialized_options = b'8\001' + _globals['_MAINREPORTARGS_ARGSENTRY']._options = None + _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_options = b'8\001' + _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._options = None + _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_options = b'8\001' + _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._options = None + _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_options = b'8\001' + _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._options = None + _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_options = b'8\001' + _globals['_STATSLINE_STATSENTRY']._options = None + _globals['_STATSLINE_STATSENTRY']._serialized_options = b'8\001' + _globals['_COREEVENTINFO']._serialized_start=97 + _globals['_COREEVENTINFO']._serialized_end=378 + _globals['_COREEVENTINFO_EXTRAENTRY']._serialized_start=334 + _globals['_COREEVENTINFO_EXTRAENTRY']._serialized_end=378 + _globals['_NODERELATION']._serialized_start=380 + _globals['_NODERELATION']._serialized_end=466 + _globals['_NODEINFO']._serialized_start=469 + _globals['_NODEINFO']._serialized_end=742 + _globals['_TIMINGINFOMSG']._serialized_start=744 + _globals['_TIMINGINFOMSG']._serialized_end=871 + _globals['_RUNRESULTMSG']._serialized_start=874 + _globals['_RUNRESULTMSG']._serialized_end=1083 + _globals['_COLUMNTYPE']._serialized_start=1085 + _globals['_COLUMNTYPE']._serialized_end=1177 + _globals['_COLUMNCONSTRAINT']._serialized_start=1179 + _globals['_COLUMNCONSTRAINT']._serialized_end=1268 + _globals['_MODELCONSTRAINT']._serialized_start=1270 + _globals['_MODELCONSTRAINT']._serialized_end=1354 + _globals['_MAINREPORTVERSION']._serialized_start=1356 + _globals['_MAINREPORTVERSION']._serialized_end=1413 + _globals['_MAINREPORTVERSIONMSG']._serialized_start=1415 + _globals['_MAINREPORTVERSIONMSG']._serialized_end=1525 + _globals['_MAINREPORTARGS']._serialized_start=1527 + _globals['_MAINREPORTARGS']._serialized_end=1641 + _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_start=1598 + _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_end=1641 + _globals['_MAINREPORTARGSMSG']._serialized_start=1643 + _globals['_MAINREPORTARGSMSG']._serialized_end=1747 + _globals['_MAINTRACKINGUSERSTATE']._serialized_start=1749 + _globals['_MAINTRACKINGUSERSTATE']._serialized_end=1792 + _globals['_MAINTRACKINGUSERSTATEMSG']._serialized_start=1794 + _globals['_MAINTRACKINGUSERSTATEMSG']._serialized_end=1912 + _globals['_MERGEDFROMSTATE']._serialized_start=1914 + _globals['_MERGEDFROMSTATE']._serialized_end=1967 + _globals['_MERGEDFROMSTATEMSG']._serialized_start=1969 + _globals['_MERGEDFROMSTATEMSG']._serialized_end=2075 + _globals['_MISSINGPROFILETARGET']._serialized_start=2077 + _globals['_MISSINGPROFILETARGET']._serialized_end=2142 + _globals['_MISSINGPROFILETARGETMSG']._serialized_start=2144 + _globals['_MISSINGPROFILETARGETMSG']._serialized_end=2260 + _globals['_INVALIDOPTIONYAML']._serialized_start=2262 + _globals['_INVALIDOPTIONYAML']._serialized_end=2302 + _globals['_INVALIDOPTIONYAMLMSG']._serialized_start=2304 + _globals['_INVALIDOPTIONYAMLMSG']._serialized_end=2414 + _globals['_LOGDBTPROJECTERROR']._serialized_start=2416 + _globals['_LOGDBTPROJECTERROR']._serialized_end=2449 + _globals['_LOGDBTPROJECTERRORMSG']._serialized_start=2451 + _globals['_LOGDBTPROJECTERRORMSG']._serialized_end=2563 + _globals['_LOGDBTPROFILEERROR']._serialized_start=2565 + _globals['_LOGDBTPROFILEERROR']._serialized_end=2616 + _globals['_LOGDBTPROFILEERRORMSG']._serialized_start=2618 + _globals['_LOGDBTPROFILEERRORMSG']._serialized_end=2730 + _globals['_STARTERPROJECTPATH']._serialized_start=2732 + _globals['_STARTERPROJECTPATH']._serialized_end=2765 + _globals['_STARTERPROJECTPATHMSG']._serialized_start=2767 + _globals['_STARTERPROJECTPATHMSG']._serialized_end=2879 + _globals['_CONFIGFOLDERDIRECTORY']._serialized_start=2881 + _globals['_CONFIGFOLDERDIRECTORY']._serialized_end=2917 + _globals['_CONFIGFOLDERDIRECTORYMSG']._serialized_start=2919 + _globals['_CONFIGFOLDERDIRECTORYMSG']._serialized_end=3037 + _globals['_NOSAMPLEPROFILEFOUND']._serialized_start=3039 + _globals['_NOSAMPLEPROFILEFOUND']._serialized_end=3078 + _globals['_NOSAMPLEPROFILEFOUNDMSG']._serialized_start=3080 + _globals['_NOSAMPLEPROFILEFOUNDMSG']._serialized_end=3196 + _globals['_PROFILEWRITTENWITHSAMPLE']._serialized_start=3198 + _globals['_PROFILEWRITTENWITHSAMPLE']._serialized_end=3252 + _globals['_PROFILEWRITTENWITHSAMPLEMSG']._serialized_start=3254 + _globals['_PROFILEWRITTENWITHSAMPLEMSG']._serialized_end=3378 + _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAML']._serialized_start=3380 + _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAML']._serialized_end=3446 + _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG']._serialized_start=3449 + _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG']._serialized_end=3597 + _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAML']._serialized_start=3599 + _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAML']._serialized_end=3666 + _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG']._serialized_start=3669 + _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG']._serialized_end=3819 + _globals['_SETTINGUPPROFILE']._serialized_start=3821 + _globals['_SETTINGUPPROFILE']._serialized_end=3839 + _globals['_SETTINGUPPROFILEMSG']._serialized_start=3841 + _globals['_SETTINGUPPROFILEMSG']._serialized_end=3949 + _globals['_INVALIDPROFILETEMPLATEYAML']._serialized_start=3951 + _globals['_INVALIDPROFILETEMPLATEYAML']._serialized_end=3979 + _globals['_INVALIDPROFILETEMPLATEYAMLMSG']._serialized_start=3982 + _globals['_INVALIDPROFILETEMPLATEYAMLMSG']._serialized_end=4110 + _globals['_PROJECTNAMEALREADYEXISTS']._serialized_start=4112 + _globals['_PROJECTNAMEALREADYEXISTS']._serialized_end=4152 + _globals['_PROJECTNAMEALREADYEXISTSMSG']._serialized_start=4154 + _globals['_PROJECTNAMEALREADYEXISTSMSG']._serialized_end=4278 + _globals['_PROJECTCREATED']._serialized_start=4280 + _globals['_PROJECTCREATED']._serialized_end=4355 + _globals['_PROJECTCREATEDMSG']._serialized_start=4357 + _globals['_PROJECTCREATEDMSG']._serialized_end=4461 + _globals['_PACKAGEREDIRECTDEPRECATION']._serialized_start=4463 + _globals['_PACKAGEREDIRECTDEPRECATION']._serialized_end=4527 + _globals['_PACKAGEREDIRECTDEPRECATIONMSG']._serialized_start=4530 + _globals['_PACKAGEREDIRECTDEPRECATIONMSG']._serialized_end=4658 + _globals['_PACKAGEINSTALLPATHDEPRECATION']._serialized_start=4660 + _globals['_PACKAGEINSTALLPATHDEPRECATION']._serialized_end=4691 + _globals['_PACKAGEINSTALLPATHDEPRECATIONMSG']._serialized_start=4694 + _globals['_PACKAGEINSTALLPATHDEPRECATIONMSG']._serialized_end=4828 + _globals['_CONFIGSOURCEPATHDEPRECATION']._serialized_start=4830 + _globals['_CONFIGSOURCEPATHDEPRECATION']._serialized_end=4902 + _globals['_CONFIGSOURCEPATHDEPRECATIONMSG']._serialized_start=4905 + _globals['_CONFIGSOURCEPATHDEPRECATIONMSG']._serialized_end=5035 + _globals['_CONFIGDATAPATHDEPRECATION']._serialized_start=5037 + _globals['_CONFIGDATAPATHDEPRECATION']._serialized_end=5107 + _globals['_CONFIGDATAPATHDEPRECATIONMSG']._serialized_start=5109 + _globals['_CONFIGDATAPATHDEPRECATIONMSG']._serialized_end=5235 + _globals['_METRICATTRIBUTESRENAMED']._serialized_start=5237 + _globals['_METRICATTRIBUTESRENAMED']._serialized_end=5283 + _globals['_METRICATTRIBUTESRENAMEDMSG']._serialized_start=5285 + _globals['_METRICATTRIBUTESRENAMEDMSG']._serialized_end=5407 + _globals['_EXPOSURENAMEDEPRECATION']._serialized_start=5409 + _globals['_EXPOSURENAMEDEPRECATION']._serialized_end=5452 + _globals['_EXPOSURENAMEDEPRECATIONMSG']._serialized_start=5454 + _globals['_EXPOSURENAMEDEPRECATIONMSG']._serialized_end=5576 + _globals['_INTERNALDEPRECATION']._serialized_start=5578 + _globals['_INTERNALDEPRECATION']._serialized_end=5672 + _globals['_INTERNALDEPRECATIONMSG']._serialized_start=5674 + _globals['_INTERNALDEPRECATIONMSG']._serialized_end=5788 + _globals['_ENVIRONMENTVARIABLERENAMED']._serialized_start=5790 + _globals['_ENVIRONMENTVARIABLERENAMED']._serialized_end=5854 + _globals['_ENVIRONMENTVARIABLERENAMEDMSG']._serialized_start=5857 + _globals['_ENVIRONMENTVARIABLERENAMEDMSG']._serialized_end=5985 + _globals['_CONFIGLOGPATHDEPRECATION']._serialized_start=5987 + _globals['_CONFIGLOGPATHDEPRECATION']._serialized_end=6038 + _globals['_CONFIGLOGPATHDEPRECATIONMSG']._serialized_start=6040 + _globals['_CONFIGLOGPATHDEPRECATIONMSG']._serialized_end=6164 + _globals['_CONFIGTARGETPATHDEPRECATION']._serialized_start=6166 + _globals['_CONFIGTARGETPATHDEPRECATION']._serialized_end=6220 + _globals['_CONFIGTARGETPATHDEPRECATIONMSG']._serialized_start=6223 + _globals['_CONFIGTARGETPATHDEPRECATIONMSG']._serialized_end=6353 + _globals['_TESTSCONFIGDEPRECATION']._serialized_start=6355 + _globals['_TESTSCONFIGDEPRECATION']._serialized_end=6422 + _globals['_TESTSCONFIGDEPRECATIONMSG']._serialized_start=6424 + _globals['_TESTSCONFIGDEPRECATIONMSG']._serialized_end=6544 + _globals['_PROJECTFLAGSMOVEDDEPRECATION']._serialized_start=6546 + _globals['_PROJECTFLAGSMOVEDDEPRECATION']._serialized_end=6576 + _globals['_PROJECTFLAGSMOVEDDEPRECATIONMSG']._serialized_start=6579 + _globals['_PROJECTFLAGSMOVEDDEPRECATIONMSG']._serialized_end=6711 + _globals['_SPACESINRESOURCENAMEDEPRECATION']._serialized_start=6713 + _globals['_SPACESINRESOURCENAMEDEPRECATION']._serialized_end=6780 + _globals['_SPACESINRESOURCENAMEDEPRECATIONMSG']._serialized_start=6783 + _globals['_SPACESINRESOURCENAMEDEPRECATIONMSG']._serialized_end=6921 + _globals['_RESOURCENAMESWITHSPACESDEPRECATION']._serialized_start=6923 + _globals['_RESOURCENAMESWITHSPACESDEPRECATION']._serialized_end=7028 + _globals['_RESOURCENAMESWITHSPACESDEPRECATIONMSG']._serialized_start=7031 + _globals['_RESOURCENAMESWITHSPACESDEPRECATIONMSG']._serialized_end=7175 + _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION']._serialized_start=7177 + _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATION']._serialized_end=7272 + _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG']._serialized_start=7275 + _globals['_PACKAGEMATERIALIZATIONOVERRIDEDEPRECATIONMSG']._serialized_end=7433 + _globals['_SOURCEFRESHNESSPROJECTHOOKSNOTRUN']._serialized_start=7435 + _globals['_SOURCEFRESHNESSPROJECTHOOKSNOTRUN']._serialized_end=7470 + _globals['_SOURCEFRESHNESSPROJECTHOOKSNOTRUNMSG']._serialized_start=7473 + _globals['_SOURCEFRESHNESSPROJECTHOOKSNOTRUNMSG']._serialized_end=7615 + _globals['_DEPRECATEDMODEL']._serialized_start=7617 + _globals['_DEPRECATEDMODEL']._serialized_end=7703 + _globals['_DEPRECATEDMODELMSG']._serialized_start=7705 + _globals['_DEPRECATEDMODELMSG']._serialized_end=7811 + _globals['_INPUTFILEDIFFERROR']._serialized_start=7813 + _globals['_INPUTFILEDIFFERROR']._serialized_end=7868 + _globals['_INPUTFILEDIFFERRORMSG']._serialized_start=7870 + _globals['_INPUTFILEDIFFERRORMSG']._serialized_end=7982 + _globals['_INVALIDVALUEFORFIELD']._serialized_start=7984 + _globals['_INVALIDVALUEFORFIELD']._serialized_end=8047 + _globals['_INVALIDVALUEFORFIELDMSG']._serialized_start=8049 + _globals['_INVALIDVALUEFORFIELDMSG']._serialized_end=8165 + _globals['_VALIDATIONWARNING']._serialized_start=8167 + _globals['_VALIDATIONWARNING']._serialized_end=8248 + _globals['_VALIDATIONWARNINGMSG']._serialized_start=8250 + _globals['_VALIDATIONWARNINGMSG']._serialized_end=8360 + _globals['_PARSEPERFINFOPATH']._serialized_start=8362 + _globals['_PARSEPERFINFOPATH']._serialized_end=8395 + _globals['_PARSEPERFINFOPATHMSG']._serialized_start=8397 + _globals['_PARSEPERFINFOPATHMSG']._serialized_end=8507 + _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_start=8509 + _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_end=8558 + _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_start=8561 + _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_end=8703 + _globals['_PARTIALPARSINGERROR']._serialized_start=8706 + _globals['_PARTIALPARSINGERROR']._serialized_end=8840 + _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_start=8794 + _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_end=8840 + _globals['_PARTIALPARSINGERRORMSG']._serialized_start=8842 + _globals['_PARTIALPARSINGERRORMSG']._serialized_end=8956 + _globals['_PARTIALPARSINGSKIPPARSING']._serialized_start=8958 + _globals['_PARTIALPARSINGSKIPPARSING']._serialized_end=8985 + _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_start=8987 + _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_end=9113 + _globals['_UNABLETOPARTIALPARSE']._serialized_start=9115 + _globals['_UNABLETOPARTIALPARSE']._serialized_end=9153 + _globals['_UNABLETOPARTIALPARSEMSG']._serialized_start=9155 + _globals['_UNABLETOPARTIALPARSEMSG']._serialized_end=9271 + _globals['_STATECHECKVARSHASH']._serialized_start=9273 + _globals['_STATECHECKVARSHASH']._serialized_end=9375 + _globals['_STATECHECKVARSHASHMSG']._serialized_start=9377 + _globals['_STATECHECKVARSHASHMSG']._serialized_end=9489 + _globals['_PARTIALPARSINGNOTENABLED']._serialized_start=9491 + _globals['_PARTIALPARSINGNOTENABLED']._serialized_end=9517 + _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_start=9519 + _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_end=9643 + _globals['_PARSEDFILELOADFAILED']._serialized_start=9645 + _globals['_PARSEDFILELOADFAILED']._serialized_end=9712 + _globals['_PARSEDFILELOADFAILEDMSG']._serialized_start=9714 + _globals['_PARSEDFILELOADFAILEDMSG']._serialized_end=9830 + _globals['_PARTIALPARSINGENABLED']._serialized_start=9832 + _globals['_PARTIALPARSINGENABLED']._serialized_end=9904 + _globals['_PARTIALPARSINGENABLEDMSG']._serialized_start=9906 + _globals['_PARTIALPARSINGENABLEDMSG']._serialized_end=10024 + _globals['_PARTIALPARSINGFILE']._serialized_start=10026 + _globals['_PARTIALPARSINGFILE']._serialized_end=10082 + _globals['_PARTIALPARSINGFILEMSG']._serialized_start=10084 + _globals['_PARTIALPARSINGFILEMSG']._serialized_end=10196 + _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_start=10199 + _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_end=10374 + _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_start=10377 + _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_end=10515 + _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_start=10517 + _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_end=10572 + _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_start=10574 + _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_end=10698 + _globals['_SEEDINCREASED']._serialized_start=10700 + _globals['_SEEDINCREASED']._serialized_end=10751 + _globals['_SEEDINCREASEDMSG']._serialized_start=10753 + _globals['_SEEDINCREASEDMSG']._serialized_end=10855 + _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_start=10857 + _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_end=10919 + _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_start=10921 + _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_end=11045 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_start=11047 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_end=11115 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_start=11118 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_end=11254 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_start=11256 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_end=11348 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_start=11351 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_end=11489 + _globals['_UNUSEDTABLES']._serialized_start=11491 + _globals['_UNUSEDTABLES']._serialized_end=11528 + _globals['_UNUSEDTABLESMSG']._serialized_start=11530 + _globals['_UNUSEDTABLESMSG']._serialized_end=11630 + _globals['_WRONGRESOURCESCHEMAFILE']._serialized_start=11633 + _globals['_WRONGRESOURCESCHEMAFILE']._serialized_end=11768 + _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_start=11770 + _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_end=11892 + _globals['_NONODEFORYAMLKEY']._serialized_start=11894 + _globals['_NONODEFORYAMLKEY']._serialized_end=11969 + _globals['_NONODEFORYAMLKEYMSG']._serialized_start=11971 + _globals['_NONODEFORYAMLKEYMSG']._serialized_end=12079 + _globals['_MACRONOTFOUNDFORPATCH']._serialized_start=12081 + _globals['_MACRONOTFOUNDFORPATCH']._serialized_end=12124 + _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_start=12126 + _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_end=12244 + _globals['_NODENOTFOUNDORDISABLED']._serialized_start=12247 + _globals['_NODENOTFOUNDORDISABLED']._serialized_end=12431 + _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_start=12433 + _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_end=12553 + _globals['_JINJALOGWARNING']._serialized_start=12555 + _globals['_JINJALOGWARNING']._serialized_end=12627 + _globals['_JINJALOGWARNINGMSG']._serialized_start=12629 + _globals['_JINJALOGWARNINGMSG']._serialized_end=12735 + _globals['_JINJALOGINFO']._serialized_start=12737 + _globals['_JINJALOGINFO']._serialized_end=12806 + _globals['_JINJALOGINFOMSG']._serialized_start=12808 + _globals['_JINJALOGINFOMSG']._serialized_end=12908 + _globals['_JINJALOGDEBUG']._serialized_start=12910 + _globals['_JINJALOGDEBUG']._serialized_end=12980 + _globals['_JINJALOGDEBUGMSG']._serialized_start=12982 + _globals['_JINJALOGDEBUGMSG']._serialized_end=13084 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_start=13087 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_end=13261 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_start=13264 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_end=13400 + _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_start=13403 + _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_end=13601 + _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_start=13604 + _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_end=13736 + _globals['_DEPRECATEDREFERENCE']._serialized_start=13739 + _globals['_DEPRECATEDREFERENCE']._serialized_end=13928 + _globals['_DEPRECATEDREFERENCEMSG']._serialized_start=13930 + _globals['_DEPRECATEDREFERENCEMSG']._serialized_end=14044 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_start=14046 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_end=14106 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_start=14109 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_end=14257 + _globals['_PARSEINLINENODEERROR']._serialized_start=14259 + _globals['_PARSEINLINENODEERROR']._serialized_end=14336 + _globals['_PARSEINLINENODEERRORMSG']._serialized_start=14338 + _globals['_PARSEINLINENODEERRORMSG']._serialized_end=14454 + _globals['_SEMANTICVALIDATIONFAILURE']._serialized_start=14456 + _globals['_SEMANTICVALIDATIONFAILURE']._serialized_end=14496 + _globals['_SEMANTICVALIDATIONFAILUREMSG']._serialized_start=14498 + _globals['_SEMANTICVALIDATIONFAILUREMSG']._serialized_end=14624 + _globals['_UNVERSIONEDBREAKINGCHANGE']._serialized_start=14627 + _globals['_UNVERSIONEDBREAKINGCHANGE']._serialized_end=15021 + _globals['_UNVERSIONEDBREAKINGCHANGEMSG']._serialized_start=15023 + _globals['_UNVERSIONEDBREAKINGCHANGEMSG']._serialized_end=15149 + _globals['_WARNSTATETARGETEQUAL']._serialized_start=15151 + _globals['_WARNSTATETARGETEQUAL']._serialized_end=15193 + _globals['_WARNSTATETARGETEQUALMSG']._serialized_start=15195 + _globals['_WARNSTATETARGETEQUALMSG']._serialized_end=15311 + _globals['_FRESHNESSCONFIGPROBLEM']._serialized_start=15313 + _globals['_FRESHNESSCONFIGPROBLEM']._serialized_end=15350 + _globals['_FRESHNESSCONFIGPROBLEMMSG']._serialized_start=15352 + _globals['_FRESHNESSCONFIGPROBLEMMSG']._serialized_end=15472 + _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_start=15474 + _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_end=15521 + _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_start=15524 + _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_end=15658 + _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_start=15660 + _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_end=15707 + _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_start=15710 + _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_end=15840 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_start=15842 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_end=15894 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_start=15897 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_end=16047 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_start=16049 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_end=16095 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_start=16098 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_end=16236 + _globals['_GITNOTHINGTODO']._serialized_start=16238 + _globals['_GITNOTHINGTODO']._serialized_end=16267 + _globals['_GITNOTHINGTODOMSG']._serialized_start=16269 + _globals['_GITNOTHINGTODOMSG']._serialized_end=16373 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_start=16375 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_end=16444 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_start=16447 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_end=16585 + _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_start=16587 + _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_end=16629 + _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_start=16631 + _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_end=16753 + _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_start=16755 + _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_end=16796 + _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_start=16799 + _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_end=16927 + _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_start=16929 + _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_end=16990 + _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_start=16993 + _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_end=17123 + _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_start=17125 + _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_end=17220 + _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_start=17223 + _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_end=17357 + _globals['_DEPSNOPACKAGESFOUND']._serialized_start=17359 + _globals['_DEPSNOPACKAGESFOUND']._serialized_end=17380 + _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_start=17382 + _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_end=17496 + _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_start=17498 + _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_end=17545 + _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_start=17547 + _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_end=17669 + _globals['_DEPSINSTALLINFO']._serialized_start=17671 + _globals['_DEPSINSTALLINFO']._serialized_end=17710 + _globals['_DEPSINSTALLINFOMSG']._serialized_start=17712 + _globals['_DEPSINSTALLINFOMSG']._serialized_end=17818 + _globals['_DEPSUPDATEAVAILABLE']._serialized_start=17820 + _globals['_DEPSUPDATEAVAILABLE']._serialized_end=17865 + _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_start=17867 + _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_end=17981 + _globals['_DEPSUPTODATE']._serialized_start=17983 + _globals['_DEPSUPTODATE']._serialized_end=17997 + _globals['_DEPSUPTODATEMSG']._serialized_start=17999 + _globals['_DEPSUPTODATEMSG']._serialized_end=18099 + _globals['_DEPSLISTSUBDIRECTORY']._serialized_start=18101 + _globals['_DEPSLISTSUBDIRECTORY']._serialized_end=18145 + _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_start=18147 + _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_end=18263 + _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_start=18265 + _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_end=18311 + _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_start=18314 + _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_end=18442 + _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_start=18444 + _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_end=18490 + _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_start=18493 + _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_end=18631 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_start=18633 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_end=18699 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_start=18702 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_end=18842 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_start=18844 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_end=18894 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_start=18897 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_end=19033 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_start=19035 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_end=19085 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_start=19088 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_end=19224 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_start=19226 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_end=19279 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_start=19282 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_end=19424 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_start=19426 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_end=19477 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_start=19480 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_end=19618 + _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_start=19620 + _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_end=19660 + _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_start=19662 + _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_end=19786 + _globals['_DEPSUNPINNED']._serialized_start=19788 + _globals['_DEPSUNPINNED']._serialized_end=19833 + _globals['_DEPSUNPINNEDMSG']._serialized_start=19835 + _globals['_DEPSUNPINNEDMSG']._serialized_end=19935 + _globals['_NONODESFORSELECTIONCRITERIA']._serialized_start=19937 + _globals['_NONODESFORSELECTIONCRITERIA']._serialized_end=19984 + _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_start=19987 + _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_end=20117 + _globals['_DEPSLOCKUPDATING']._serialized_start=20119 + _globals['_DEPSLOCKUPDATING']._serialized_end=20160 + _globals['_DEPSLOCKUPDATINGMSG']._serialized_start=20162 + _globals['_DEPSLOCKUPDATINGMSG']._serialized_end=20270 + _globals['_DEPSADDPACKAGE']._serialized_start=20272 + _globals['_DEPSADDPACKAGE']._serialized_end=20354 + _globals['_DEPSADDPACKAGEMSG']._serialized_start=20356 + _globals['_DEPSADDPACKAGEMSG']._serialized_end=20460 + _globals['_DEPSFOUNDDUPLICATEPACKAGE']._serialized_start=20463 + _globals['_DEPSFOUNDDUPLICATEPACKAGE']._serialized_end=20630 + _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_start=20577 + _globals['_DEPSFOUNDDUPLICATEPACKAGE_REMOVEDPACKAGEENTRY']._serialized_end=20630 + _globals['_DEPSFOUNDDUPLICATEPACKAGEMSG']._serialized_start=20632 + _globals['_DEPSFOUNDDUPLICATEPACKAGEMSG']._serialized_end=20758 + _globals['_DEPSVERSIONMISSING']._serialized_start=20760 + _globals['_DEPSVERSIONMISSING']._serialized_end=20796 + _globals['_DEPSVERSIONMISSINGMSG']._serialized_start=20798 + _globals['_DEPSVERSIONMISSINGMSG']._serialized_end=20910 + _globals['_DEPSSCRUBBEDPACKAGENAME']._serialized_start=20912 + _globals['_DEPSSCRUBBEDPACKAGENAME']._serialized_end=20959 + _globals['_DEPSSCRUBBEDPACKAGENAMEMSG']._serialized_start=20961 + _globals['_DEPSSCRUBBEDPACKAGENAMEMSG']._serialized_end=21083 + _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_start=21085 + _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_end=21127 + _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_start=21130 + _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_end=21260 + _globals['_COMPILECOMPLETE']._serialized_start=21262 + _globals['_COMPILECOMPLETE']._serialized_end=21279 + _globals['_COMPILECOMPLETEMSG']._serialized_start=21281 + _globals['_COMPILECOMPLETEMSG']._serialized_end=21387 + _globals['_FRESHNESSCHECKCOMPLETE']._serialized_start=21389 + _globals['_FRESHNESSCHECKCOMPLETE']._serialized_end=21413 + _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_start=21415 + _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_end=21535 + _globals['_SEEDHEADER']._serialized_start=21537 + _globals['_SEEDHEADER']._serialized_end=21565 + _globals['_SEEDHEADERMSG']._serialized_start=21567 + _globals['_SEEDHEADERMSG']._serialized_end=21663 + _globals['_SQLRUNNEREXCEPTION']._serialized_start=21665 + _globals['_SQLRUNNEREXCEPTION']._serialized_end=21758 + _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_start=21760 + _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_end=21872 + _globals['_LOGTESTRESULT']._serialized_start=21875 + _globals['_LOGTESTRESULT']._serialized_end=22043 + _globals['_LOGTESTRESULTMSG']._serialized_start=22045 + _globals['_LOGTESTRESULTMSG']._serialized_end=22147 + _globals['_LOGSTARTLINE']._serialized_start=22149 + _globals['_LOGSTARTLINE']._serialized_end=22256 + _globals['_LOGSTARTLINEMSG']._serialized_start=22258 + _globals['_LOGSTARTLINEMSG']._serialized_end=22358 + _globals['_LOGMODELRESULT']._serialized_start=22361 + _globals['_LOGMODELRESULT']._serialized_end=22510 + _globals['_LOGMODELRESULTMSG']._serialized_start=22512 + _globals['_LOGMODELRESULTMSG']._serialized_end=22616 + _globals['_LOGSNAPSHOTRESULT']._serialized_start=22619 + _globals['_LOGSNAPSHOTRESULT']._serialized_end=22893 + _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_start=22851 + _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_end=22893 + _globals['_LOGSNAPSHOTRESULTMSG']._serialized_start=22895 + _globals['_LOGSNAPSHOTRESULTMSG']._serialized_end=23005 + _globals['_LOGSEEDRESULT']._serialized_start=23008 + _globals['_LOGSEEDRESULT']._serialized_end=23193 + _globals['_LOGSEEDRESULTMSG']._serialized_start=23195 + _globals['_LOGSEEDRESULTMSG']._serialized_end=23297 + _globals['_LOGFRESHNESSRESULT']._serialized_start=23300 + _globals['_LOGFRESHNESSRESULT']._serialized_end=23473 + _globals['_LOGFRESHNESSRESULTMSG']._serialized_start=23475 + _globals['_LOGFRESHNESSRESULTMSG']._serialized_end=23587 + _globals['_LOGNODENOOPRESULT']._serialized_start=23590 + _globals['_LOGNODENOOPRESULT']._serialized_end=23742 + _globals['_LOGNODENOOPRESULTMSG']._serialized_start=23744 + _globals['_LOGNODENOOPRESULTMSG']._serialized_end=23854 + _globals['_LOGCANCELLINE']._serialized_start=23856 + _globals['_LOGCANCELLINE']._serialized_end=23890 + _globals['_LOGCANCELLINEMSG']._serialized_start=23892 + _globals['_LOGCANCELLINEMSG']._serialized_end=23994 + _globals['_DEFAULTSELECTOR']._serialized_start=23996 + _globals['_DEFAULTSELECTOR']._serialized_end=24027 + _globals['_DEFAULTSELECTORMSG']._serialized_start=24029 + _globals['_DEFAULTSELECTORMSG']._serialized_end=24135 + _globals['_NODESTART']._serialized_start=24137 + _globals['_NODESTART']._serialized_end=24190 + _globals['_NODESTARTMSG']._serialized_start=24192 + _globals['_NODESTARTMSG']._serialized_end=24286 + _globals['_NODEFINISHED']._serialized_start=24288 + _globals['_NODEFINISHED']._serialized_end=24391 + _globals['_NODEFINISHEDMSG']._serialized_start=24393 + _globals['_NODEFINISHEDMSG']._serialized_end=24493 + _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_start=24495 + _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_end=24538 + _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_start=24541 + _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_end=24671 + _globals['_CONCURRENCYLINE']._serialized_start=24673 + _globals['_CONCURRENCYLINE']._serialized_end=24752 + _globals['_CONCURRENCYLINEMSG']._serialized_start=24754 + _globals['_CONCURRENCYLINEMSG']._serialized_end=24860 + _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_start=24862 + _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_end=24931 + _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_start=24933 + _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_end=25059 + _globals['_NODECOMPILING']._serialized_start=25061 + _globals['_NODECOMPILING']._serialized_end=25118 + _globals['_NODECOMPILINGMSG']._serialized_start=25120 + _globals['_NODECOMPILINGMSG']._serialized_end=25222 + _globals['_NODEEXECUTING']._serialized_start=25224 + _globals['_NODEEXECUTING']._serialized_end=25281 + _globals['_NODEEXECUTINGMSG']._serialized_start=25283 + _globals['_NODEEXECUTINGMSG']._serialized_end=25385 + _globals['_LOGHOOKSTARTLINE']._serialized_start=25387 + _globals['_LOGHOOKSTARTLINE']._serialized_end=25496 + _globals['_LOGHOOKSTARTLINEMSG']._serialized_start=25498 + _globals['_LOGHOOKSTARTLINEMSG']._serialized_end=25606 + _globals['_LOGHOOKENDLINE']._serialized_start=25609 + _globals['_LOGHOOKENDLINE']._serialized_end=25756 + _globals['_LOGHOOKENDLINEMSG']._serialized_start=25758 + _globals['_LOGHOOKENDLINEMSG']._serialized_end=25862 + _globals['_SKIPPINGDETAILS']._serialized_start=25865 + _globals['_SKIPPINGDETAILS']._serialized_end=26012 + _globals['_SKIPPINGDETAILSMSG']._serialized_start=26014 + _globals['_SKIPPINGDETAILSMSG']._serialized_end=26120 + _globals['_NOTHINGTODO']._serialized_start=26122 + _globals['_NOTHINGTODO']._serialized_end=26135 + _globals['_NOTHINGTODOMSG']._serialized_start=26137 + _globals['_NOTHINGTODOMSG']._serialized_end=26235 + _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_start=26237 + _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_end=26281 + _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_start=26284 + _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_end=26418 + _globals['_ENDRUNRESULT']._serialized_start=26421 + _globals['_ENDRUNRESULT']._serialized_end=26568 + _globals['_ENDRUNRESULTMSG']._serialized_start=26570 + _globals['_ENDRUNRESULTMSG']._serialized_end=26670 + _globals['_NONODESSELECTED']._serialized_start=26672 + _globals['_NONODESSELECTED']._serialized_end=26689 + _globals['_NONODESSELECTEDMSG']._serialized_start=26691 + _globals['_NONODESSELECTEDMSG']._serialized_end=26797 + _globals['_COMMANDCOMPLETED']._serialized_start=26799 + _globals['_COMMANDCOMPLETED']._serialized_end=26918 + _globals['_COMMANDCOMPLETEDMSG']._serialized_start=26920 + _globals['_COMMANDCOMPLETEDMSG']._serialized_end=27028 + _globals['_SHOWNODE']._serialized_start=27030 + _globals['_SHOWNODE']._serialized_end=27137 + _globals['_SHOWNODEMSG']._serialized_start=27139 + _globals['_SHOWNODEMSG']._serialized_end=27231 + _globals['_COMPILEDNODE']._serialized_start=27233 + _globals['_COMPILEDNODE']._serialized_end=27345 + _globals['_COMPILEDNODEMSG']._serialized_start=27347 + _globals['_COMPILEDNODEMSG']._serialized_end=27447 + _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_start=27449 + _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_end=27547 + _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_start=27549 + _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_end=27671 + _globals['_INTERNALERRORONRUN']._serialized_start=27673 + _globals['_INTERNALERRORONRUN']._serialized_end=27768 + _globals['_INTERNALERRORONRUNMSG']._serialized_start=27770 + _globals['_INTERNALERRORONRUNMSG']._serialized_end=27882 + _globals['_GENERICEXCEPTIONONRUN']._serialized_start=27884 + _globals['_GENERICEXCEPTIONONRUN']._serialized_end=28001 + _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_start=28003 + _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_end=28121 + _globals['_NODECONNECTIONRELEASEERROR']._serialized_start=28123 + _globals['_NODECONNECTIONRELEASEERROR']._serialized_end=28201 + _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_start=28204 + _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_end=28332 + _globals['_FOUNDSTATS']._serialized_start=28334 + _globals['_FOUNDSTATS']._serialized_end=28365 + _globals['_FOUNDSTATSMSG']._serialized_start=28367 + _globals['_FOUNDSTATSMSG']._serialized_end=28463 + _globals['_MAINKEYBOARDINTERRUPT']._serialized_start=28465 + _globals['_MAINKEYBOARDINTERRUPT']._serialized_end=28488 + _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_start=28490 + _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_end=28608 + _globals['_MAINENCOUNTEREDERROR']._serialized_start=28610 + _globals['_MAINENCOUNTEREDERROR']._serialized_end=28645 + _globals['_MAINENCOUNTEREDERRORMSG']._serialized_start=28647 + _globals['_MAINENCOUNTEREDERRORMSG']._serialized_end=28763 + _globals['_MAINSTACKTRACE']._serialized_start=28765 + _globals['_MAINSTACKTRACE']._serialized_end=28802 + _globals['_MAINSTACKTRACEMSG']._serialized_start=28804 + _globals['_MAINSTACKTRACEMSG']._serialized_end=28908 + _globals['_TIMINGINFOCOLLECTED']._serialized_start=28910 + _globals['_TIMINGINFOCOLLECTED']._serialized_end=29022 + _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_start=29024 + _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_end=29138 + _globals['_LOGDEBUGSTACKTRACE']._serialized_start=29140 + _globals['_LOGDEBUGSTACKTRACE']._serialized_end=29178 + _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_start=29180 + _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_end=29292 + _globals['_CHECKCLEANPATH']._serialized_start=29294 + _globals['_CHECKCLEANPATH']._serialized_end=29324 + _globals['_CHECKCLEANPATHMSG']._serialized_start=29326 + _globals['_CHECKCLEANPATHMSG']._serialized_end=29430 + _globals['_CONFIRMCLEANPATH']._serialized_start=29432 + _globals['_CONFIRMCLEANPATH']._serialized_end=29464 + _globals['_CONFIRMCLEANPATHMSG']._serialized_start=29466 + _globals['_CONFIRMCLEANPATHMSG']._serialized_end=29574 + _globals['_PROTECTEDCLEANPATH']._serialized_start=29576 + _globals['_PROTECTEDCLEANPATH']._serialized_end=29610 + _globals['_PROTECTEDCLEANPATHMSG']._serialized_start=29612 + _globals['_PROTECTEDCLEANPATHMSG']._serialized_end=29724 + _globals['_FINISHEDCLEANPATHS']._serialized_start=29726 + _globals['_FINISHEDCLEANPATHS']._serialized_end=29746 + _globals['_FINISHEDCLEANPATHSMSG']._serialized_start=29748 + _globals['_FINISHEDCLEANPATHSMSG']._serialized_end=29860 + _globals['_OPENCOMMAND']._serialized_start=29862 + _globals['_OPENCOMMAND']._serialized_end=29915 + _globals['_OPENCOMMANDMSG']._serialized_start=29917 + _globals['_OPENCOMMANDMSG']._serialized_end=30015 + _globals['_SERVINGDOCSPORT']._serialized_start=30017 + _globals['_SERVINGDOCSPORT']._serialized_end=30065 + _globals['_SERVINGDOCSPORTMSG']._serialized_start=30067 + _globals['_SERVINGDOCSPORTMSG']._serialized_end=30173 + _globals['_SERVINGDOCSACCESSINFO']._serialized_start=30175 + _globals['_SERVINGDOCSACCESSINFO']._serialized_end=30212 + _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_start=30214 + _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_end=30332 + _globals['_SERVINGDOCSEXITINFO']._serialized_start=30334 + _globals['_SERVINGDOCSEXITINFO']._serialized_end=30355 + _globals['_SERVINGDOCSEXITINFOMSG']._serialized_start=30357 + _globals['_SERVINGDOCSEXITINFOMSG']._serialized_end=30471 + _globals['_RUNRESULTWARNING']._serialized_start=30473 + _globals['_RUNRESULTWARNING']._serialized_end=30589 + _globals['_RUNRESULTWARNINGMSG']._serialized_start=30591 + _globals['_RUNRESULTWARNINGMSG']._serialized_end=30699 + _globals['_RUNRESULTFAILURE']._serialized_start=30701 + _globals['_RUNRESULTFAILURE']._serialized_end=30817 + _globals['_RUNRESULTFAILUREMSG']._serialized_start=30819 + _globals['_RUNRESULTFAILUREMSG']._serialized_end=30927 + _globals['_STATSLINE']._serialized_start=30929 + _globals['_STATSLINE']._serialized_end=31036 + _globals['_STATSLINE_STATSENTRY']._serialized_start=30992 + _globals['_STATSLINE_STATSENTRY']._serialized_end=31036 + _globals['_STATSLINEMSG']._serialized_start=31038 + _globals['_STATSLINEMSG']._serialized_end=31132 + _globals['_RUNRESULTERROR']._serialized_start=31134 + _globals['_RUNRESULTERROR']._serialized_end=31205 + _globals['_RUNRESULTERRORMSG']._serialized_start=31207 + _globals['_RUNRESULTERRORMSG']._serialized_end=31311 + _globals['_RUNRESULTERRORNOMESSAGE']._serialized_start=31313 + _globals['_RUNRESULTERRORNOMESSAGE']._serialized_end=31396 + _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_start=31398 + _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_end=31520 + _globals['_SQLCOMPILEDPATH']._serialized_start=31522 + _globals['_SQLCOMPILEDPATH']._serialized_end=31595 + _globals['_SQLCOMPILEDPATHMSG']._serialized_start=31597 + _globals['_SQLCOMPILEDPATHMSG']._serialized_end=31703 + _globals['_CHECKNODETESTFAILURE']._serialized_start=31705 + _globals['_CHECKNODETESTFAILURE']._serialized_end=31792 + _globals['_CHECKNODETESTFAILUREMSG']._serialized_start=31794 + _globals['_CHECKNODETESTFAILUREMSG']._serialized_end=31910 + _globals['_ENDOFRUNSUMMARY']._serialized_start=31912 + _globals['_ENDOFRUNSUMMARY']._serialized_end=31999 + _globals['_ENDOFRUNSUMMARYMSG']._serialized_start=32001 + _globals['_ENDOFRUNSUMMARYMSG']._serialized_end=32107 + _globals['_LOGSKIPBECAUSEERROR']._serialized_start=32109 + _globals['_LOGSKIPBECAUSEERROR']._serialized_end=32194 + _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_start=32196 + _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_end=32310 + _globals['_ENSUREGITINSTALLED']._serialized_start=32312 + _globals['_ENSUREGITINSTALLED']._serialized_end=32332 + _globals['_ENSUREGITINSTALLEDMSG']._serialized_start=32334 + _globals['_ENSUREGITINSTALLEDMSG']._serialized_end=32446 + _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_start=32448 + _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_end=32474 + _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_start=32476 + _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_end=32600 + _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_start=32602 + _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_end=32627 + _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_start=32629 + _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_end=32751 + _globals['_DISABLETRACKING']._serialized_start=32753 + _globals['_DISABLETRACKING']._serialized_end=32770 + _globals['_DISABLETRACKINGMSG']._serialized_start=32772 + _globals['_DISABLETRACKINGMSG']._serialized_end=32878 + _globals['_SENDINGEVENT']._serialized_start=32880 + _globals['_SENDINGEVENT']._serialized_end=32910 + _globals['_SENDINGEVENTMSG']._serialized_start=32912 + _globals['_SENDINGEVENTMSG']._serialized_end=33012 + _globals['_SENDEVENTFAILURE']._serialized_start=33014 + _globals['_SENDEVENTFAILURE']._serialized_end=33032 + _globals['_SENDEVENTFAILUREMSG']._serialized_start=33034 + _globals['_SENDEVENTFAILUREMSG']._serialized_end=33142 + _globals['_FLUSHEVENTS']._serialized_start=33144 + _globals['_FLUSHEVENTS']._serialized_end=33157 + _globals['_FLUSHEVENTSMSG']._serialized_start=33159 + _globals['_FLUSHEVENTSMSG']._serialized_end=33257 + _globals['_FLUSHEVENTSFAILURE']._serialized_start=33259 + _globals['_FLUSHEVENTSFAILURE']._serialized_end=33279 + _globals['_FLUSHEVENTSFAILUREMSG']._serialized_start=33281 + _globals['_FLUSHEVENTSFAILUREMSG']._serialized_end=33393 + _globals['_TRACKINGINITIALIZEFAILURE']._serialized_start=33395 + _globals['_TRACKINGINITIALIZEFAILURE']._serialized_end=33440 + _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_start=33442 + _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_end=33568 + _globals['_RUNRESULTWARNINGMESSAGE']._serialized_start=33570 + _globals['_RUNRESULTWARNINGMESSAGE']._serialized_end=33650 + _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_start=33652 + _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_end=33774 + _globals['_DEBUGCMDOUT']._serialized_start=33776 + _globals['_DEBUGCMDOUT']._serialized_end=33802 + _globals['_DEBUGCMDOUTMSG']._serialized_start=33804 + _globals['_DEBUGCMDOUTMSG']._serialized_end=33902 + _globals['_DEBUGCMDRESULT']._serialized_start=33904 + _globals['_DEBUGCMDRESULT']._serialized_end=33933 + _globals['_DEBUGCMDRESULTMSG']._serialized_start=33935 + _globals['_DEBUGCMDRESULTMSG']._serialized_end=34039 + _globals['_LISTCMDOUT']._serialized_start=34041 + _globals['_LISTCMDOUT']._serialized_end=34066 + _globals['_LISTCMDOUTMSG']._serialized_start=34068 + _globals['_LISTCMDOUTMSG']._serialized_end=34164 + _globals['_RESOURCEREPORT']._serialized_start=34167 + _globals['_RESOURCEREPORT']._serialized_end=34403 + _globals['_RESOURCEREPORTMSG']._serialized_start=34405 + _globals['_RESOURCEREPORTMSG']._serialized_end=34509 # @@protoc_insertion_point(module_scope) From e4f870e1c1c9cf78af9ca060eb42fd2cb0e9af39 Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Mon, 29 Apr 2024 11:46:11 -0400 Subject: [PATCH 07/11] add playbook on introducing + maintaining behavoiur change flags --- docs/eli64/behaviour-change-flags.md | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 docs/eli64/behaviour-change-flags.md diff --git a/docs/eli64/behaviour-change-flags.md b/docs/eli64/behaviour-change-flags.md new file mode 100644 index 00000000000..a50dda56747 --- /dev/null +++ b/docs/eli64/behaviour-change-flags.md @@ -0,0 +1,33 @@ +# Playbook: Behavior Change Flags + +User documentation: [https://github.com/dbt-labs/docs.getdbt.com/compare/jerco/update-legacy-behaviors?expand=1](https://github.com/dbt-labs/docs.getdbt.com/compare/jerco/update-legacy-behaviors?expand=1) + +## Rules for introducing a new flag + +1. **Naming.** All behavior change flags should be named so that their default value changes from **False → True**. This makes it significantly easier to document, talk about, and understand. + * If the flag is prohibiting something that we previously allowed, use the verb “require.” Examples: + * `require_resource_names_without_spaces` + * `require_explicit_package_overrides_for_builtin_materializations` + * All flags should be of boolean type, and False by default when introduced: `bool = False`. +2. **Documentation.** Start with the docs! What is the change? Who might be affected? What action will users need to take to mitigate this change? At this point, the dates for flag Introduction + Maturity are “TBD.” +3. **Deprecation warnings**. As a general rule, **all** behavior changes should be accompanied by a deprecation warning. + * Always use our standard deprecations module: [https://github.com/dbt-labs/dbt-core/blob/main/core/dbt/deprecations.py](https://github.com/dbt-labs/dbt-core/blob/main/core/dbt/deprecations.py) + * This serves two purposes: Signalling the change to the user, and collecting telemetry so we can understand blast radius among users with telemtry enabled. + * These warning messages should link back to documentation: [https://docs.getdbt.com/reference/global-configs/legacy-behaviors](https://docs.getdbt.com/reference/global-configs/legacy-behaviors#deprecate_package_materialization_builtin_override) + * Even for additive behaviors that are not “breaking changes,” there is still an opportunity to signal these changes for users, and to gather an estimate of the impact. E.g. `source_freshness_run_project_hooks` should still include a proactive message any time someone runs the `source freshness` command in a project that has `on-run-*` hooks defined. + * The call site for these deprecation warnings should be as close as possible to the place where we’re evaluating conditional logic based on the project flag. Essentially, any time we check the flag value and it returns `False`, we should raise a deprecation warning while preserving the legacy behavior. (In the future, we might be able to streamline more of this boilerplate code.) + * If users want to silence these deprecation warnings, they can do so via `warn_error_options.silence`. Explicitly setting the flag to `False` in `dbt_project.yml` is not sufficient to silence the warning. +4. **Exceptions.** If the behavior change is to raise an exception that prohibits behavior which was previously permitted (e.g. spaces in model names), the exception message should also link to the docs on legacy behaviors. +5. **Backports.** Whenever possible, we should backport both the deprecation warning and the flag to the previous version of dbt Core. +6. **Open a GitHub issue** in the dbt-core repository that is the implementation ticket for switching the default from `false` to `true`. Add the `behavior_change_flag` issue label, and add it to the GitHub milestone for the next minor version. (This is true in most cases, see below for exceptional considerations.) During planning, we will bundle up the “introduced” behavior changes into an epic/tasklist that schedules their maturation. + +## After introduction + +1. **Mature flag(s) by switching value from `False` → `True` in dbt-core `main`.** + * This should land in **the next minor (`1.X.0`) release of dbt-core**. + If the behavior change is mitigating a security vulnerability, and the next minor release is still planned for several months away, we still backport the fix + flag (off by default) to supported OSS versions, and we strongly advise all users to opt into the flag sooner. +2. **Removing support for legacy behavior.** + * As a general rule, we will not entirely remove support for any legacy behaviors until dbt v2.0. + * We are not committing to supporting them forever (à la Rust editions). But we are also not taking them away willy-nilly. + * On a case-by-case basis, if there is a strong compelling reason to remove a legacy behavior and we see minimal in-the-wild usage (<1% of relevant projects), we can remove it entirely. This needs to be communicated well in advance — at least 2 minor versions after introduction in dbt Core. + * These are *project configurations*, not feature flags. While they add complexity to our codebase, such is the price of maintaining v1.* software. From 1de3b01aed16f8221c9b270123d90c8d88ae52c6 Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Mon, 29 Apr 2024 11:48:08 -0400 Subject: [PATCH 08/11] be less canadian --- .../eli64/{behaviour-change-flags.md => behavior-change-flags.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/eli64/{behaviour-change-flags.md => behavior-change-flags.md} (100%) diff --git a/docs/eli64/behaviour-change-flags.md b/docs/eli64/behavior-change-flags.md similarity index 100% rename from docs/eli64/behaviour-change-flags.md rename to docs/eli64/behavior-change-flags.md From 8b42642c70a8ac37c00eac788fee27780ffc6342 Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Mon, 29 Apr 2024 12:47:04 -0400 Subject: [PATCH 09/11] refactor: use hooks in FreshnessTask.get_hooks_by_type --- core/dbt/task/freshness.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbt/task/freshness.py b/core/dbt/task/freshness.py index 8a072d3183d..aab7e44fbc1 100644 --- a/core/dbt/task/freshness.py +++ b/core/dbt/task/freshness.py @@ -243,7 +243,7 @@ def task_end_messages(self, results): def get_hooks_by_type(self, hook_type: RunHookType) -> List[HookNode]: hooks = super().get_hooks_by_type(hook_type) if self.args.source_freshness_run_project_hooks: - return super().get_hooks_by_type(hook_type) + return hooks else: if hooks: deprecations.warn("source-freshness-project-hooks") From 888f449817daa9561f3aa5dbbee3b47816e2891b Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Tue, 30 Apr 2024 16:53:06 -0400 Subject: [PATCH 10/11] changelog entry for behaviour change --- .changes/unreleased/Breaking Changes-20240430-165247.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .changes/unreleased/Breaking Changes-20240430-165247.yaml diff --git a/.changes/unreleased/Breaking Changes-20240430-165247.yaml b/.changes/unreleased/Breaking Changes-20240430-165247.yaml new file mode 100644 index 00000000000..cfd0dfe0e49 --- /dev/null +++ b/.changes/unreleased/Breaking Changes-20240430-165247.yaml @@ -0,0 +1,7 @@ +kind: Breaking Changes +body: Update the default behaviour of require_explicit_package_overrides_for_builtin_materializations + to True. +time: 2024-04-30T16:52:47.610025-04:00 +custom: + Author: jtcohen6 + Issue: "10062" From c5f2b5736e7eec9d28c78fb1c477ae3633618fb1 Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Wed, 1 May 2024 13:11:01 +0200 Subject: [PATCH 11/11] Update docs link --- docs/eli64/behavior-change-flags.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/eli64/behavior-change-flags.md b/docs/eli64/behavior-change-flags.md index a50dda56747..3d59e75ecab 100644 --- a/docs/eli64/behavior-change-flags.md +++ b/docs/eli64/behavior-change-flags.md @@ -1,6 +1,6 @@ # Playbook: Behavior Change Flags -User documentation: [https://github.com/dbt-labs/docs.getdbt.com/compare/jerco/update-legacy-behaviors?expand=1](https://github.com/dbt-labs/docs.getdbt.com/compare/jerco/update-legacy-behaviors?expand=1) +User documentation: https://docs.getdbt.com/reference/global-configs/legacy-behaviors ## Rules for introducing a new flag