From 56455927c3d34e2bef078fe638b71bffe05b3526 Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 14 Jun 2023 15:20:55 -0700 Subject: [PATCH 1/2] cherry pick f767943fb22b493a762ff76c4d942eec7b781b2c --- .../unreleased/Features-20230613-151507.yaml | 6 + core/dbt/adapters/factory.py | 11 +- core/dbt/events/types.proto | 13 + core/dbt/events/types.py | 8 + core/dbt/events/types_pb2.py | 1725 +++++++++-------- tests/unit/test_events.py | 1 + 6 files changed, 908 insertions(+), 856 deletions(-) create mode 100644 .changes/unreleased/Features-20230613-151507.yaml diff --git a/.changes/unreleased/Features-20230613-151507.yaml b/.changes/unreleased/Features-20230613-151507.yaml new file mode 100644 index 00000000000..88b6adb66b3 --- /dev/null +++ b/.changes/unreleased/Features-20230613-151507.yaml @@ -0,0 +1,6 @@ +kind: Features +body: Add AdapterRegistered event log message +time: 2023-06-13T15:15:07.367371-07:00 +custom: + Author: colin-rogers-dbt + Issue: "7038" diff --git a/core/dbt/adapters/factory.py b/core/dbt/adapters/factory.py index 38c6bcb7894..07480b28d6b 100644 --- a/core/dbt/adapters/factory.py +++ b/core/dbt/adapters/factory.py @@ -9,10 +9,11 @@ from dbt.adapters.protocol import AdapterConfig, AdapterProtocol, RelationProtocol from dbt.contracts.connection import AdapterRequiredConfig, Credentials from dbt.events.functions import fire_event -from dbt.events.types import AdapterImportError, PluginLoadError +from dbt.events.types import AdapterImportError, PluginLoadError, AdapterRegistered from dbt.exceptions import DbtInternalError, DbtRuntimeError from dbt.include.global_project import PACKAGE_PATH as GLOBAL_PROJECT_PATH from dbt.include.global_project import PROJECT_NAME as GLOBAL_PROJECT_NAME +from dbt.semver import VersionSpecifier Adapter = AdapterProtocol @@ -89,7 +90,13 @@ def load_plugin(self, name: str) -> Type[Credentials]: def register_adapter(self, config: AdapterRequiredConfig) -> None: adapter_name = config.credentials.type adapter_type = self.get_adapter_class_by_name(adapter_name) - + adapter_version = import_module(f".{adapter_name}.__version__", "dbt.adapters").version + adapter_version_specifier = VersionSpecifier.from_version_string( + adapter_version + ).to_version_string() + fire_event( + AdapterRegistered(adapter_name=adapter_name, adapter_version=adapter_version_specifier) + ) with self.lock: if adapter_name in self.adapters: # this shouldn't really happen... diff --git a/core/dbt/events/types.proto b/core/dbt/events/types.proto index c72af96cd18..9480100c5db 100644 --- a/core/dbt/events/types.proto +++ b/core/dbt/events/types.proto @@ -671,6 +671,19 @@ message CacheDumpGraphMsg { // Skipping E032, E033, E034 + + +// E034 +message AdapterRegistered { + string adapter_name = 1; + string adapter_version = 2; +} + +message AdapterRegisteredMsg { + EventInfo info = 1; + AdapterRegistered data = 2; +} + // E035 message AdapterImportError { string exc = 1; diff --git a/core/dbt/events/types.py b/core/dbt/events/types.py index dab9ec31b18..27cad69b4ec 100644 --- a/core/dbt/events/types.py +++ b/core/dbt/events/types.py @@ -654,6 +654,14 @@ def message(self) -> str: # Skipping E032, E033, E034 +class AdapterRegistered(InfoLevel): + def code(self): + return "E034" + + def message(self) -> str: + return f"Registered adapter: {self.adapter_name}{self.adapter_version}" + + class AdapterImportError(InfoLevel): def code(self): return "E035" diff --git a/core/dbt/events/types_pb2.py b/core/dbt/events/types_pb2.py index 2db03b4ff20..5e201a8ef24 100644 --- a/core/dbt/events/types_pb2.py +++ b/core/dbt/events/types_pb2.py @@ -2,10 +2,10 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # source: types.proto """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() @@ -15,10 +15,11 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0btypes.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x91\x02\n\tEventInfo\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\x30\n\x05\x65xtra\x18\t \x03(\x0b\x32!.proto_types.EventInfo.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\"\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\"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\"\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\"G\n\x0fReferenceKeyMsg\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x12\n\nidentifier\x18\x03 \x01(\t\"6\n\x0eGenericMessage\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"j\n\x14MainReportVersionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11MainReportArgsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18MainTrackingUserStateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12MergedFromStateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17MissingProfileTargetMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"j\n\x14InvalidOptionYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDbtProjectErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDbtProfileErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15StarterProjectPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18\x43onfigFolderDirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17NoSampleProfileFoundMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bProfileWrittenWithSampleMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x90\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x92\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"h\n\x13SettingUpProfileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"|\n\x1dInvalidProfileTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"x\n\x1bProjectNameAlreadyExistsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11ProjectCreatedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1dPackageRedirectDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x82\x01\n PackageInstallPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1e\x43onfigSourcePathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1c\x43onfigDataPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\"?\n\x19\x41\x64\x61pterDeprecationWarning\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"z\n\x1c\x41\x64\x61pterDeprecationWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.AdapterDeprecationWarning\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"v\n\x1aMetricAttributesRenamedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x45xposureNameDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16InternalDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1d\x45nvironmentVariableRenamedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1b\x43onfigLogPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1e\x43onfigTargetPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"!\n\x1f\x43ollectFreshnessReturnSignature\"\x86\x01\n\"CollectFreshnessReturnSignatureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.CollectFreshnessReturnSignature\"\x87\x01\n\x11\x41\x64\x61pterEventDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"j\n\x14\x41\x64\x61pterEventDebugMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventDebug\"\x86\x01\n\x10\x41\x64\x61pterEventInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"h\n\x13\x41\x64\x61pterEventInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.AdapterEventInfo\"\x89\x01\n\x13\x41\x64\x61pterEventWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"n\n\x16\x41\x64\x61pterEventWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.AdapterEventWarning\"\x99\x01\n\x11\x41\x64\x61pterEventError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\x12\x10\n\x08\x65xc_info\x18\x05 \x01(\t\"j\n\x14\x41\x64\x61pterEventErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventError\"_\n\rNewConnection\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"b\n\x10NewConnectionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NewConnection\"=\n\x10\x43onnectionReused\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x16\n\x0eorig_conn_name\x18\x02 \x01(\t\"h\n\x13\x43onnectionReusedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionReused\"0\n\x1b\x43onnectionLeftOpenInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"~\n\x1e\x43onnectionLeftOpenInCleanupMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConnectionLeftOpenInCleanup\".\n\x19\x43onnectionClosedInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"z\n\x1c\x43onnectionClosedInCleanupMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConnectionClosedInCleanup\"_\n\x0eRollbackFailed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"d\n\x11RollbackFailedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RollbackFailed\"O\n\x10\x43onnectionClosed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"h\n\x13\x43onnectionClosedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionClosed\"Q\n\x12\x43onnectionLeftOpen\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"l\n\x15\x43onnectionLeftOpenMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ConnectionLeftOpen\"G\n\x08Rollback\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"X\n\x0bRollbackMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.Rollback\"@\n\tCacheMiss\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\"Z\n\x0c\x43\x61\x63heMissMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.CacheMiss\"b\n\rListRelations\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12/\n\trelations\x18\x03 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"b\n\x10ListRelationsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ListRelations\"`\n\x0e\x43onnectionUsed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"d\n\x11\x43onnectionUsedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ConnectionUsed\"T\n\x08SQLQuery\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x0b\n\x03sql\x18\x03 \x01(\t\"X\n\x0bSQLQueryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.SQLQuery\"[\n\x0eSQLQueryStatus\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x03 \x01(\x02\"d\n\x11SQLQueryStatusMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SQLQueryStatus\"H\n\tSQLCommit\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"Z\n\x0cSQLCommitMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.SQLCommit\"a\n\rColTypeChange\x12\x11\n\torig_type\x18\x01 \x01(\t\x12\x10\n\x08new_type\x18\x02 \x01(\t\x12+\n\x05table\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"b\n\x10\x43olTypeChangeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ColTypeChange\"@\n\x0eSchemaCreation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"d\n\x11SchemaCreationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SchemaCreation\"<\n\nSchemaDrop\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"\\\n\rSchemaDropMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SchemaDrop\"\xde\x01\n\x0b\x43\x61\x63heAction\x12\x0e\n\x06\x61\x63tion\x18\x01 \x01(\t\x12-\n\x07ref_key\x18\x02 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_2\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_3\x18\x04 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12.\n\x08ref_list\x18\x05 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"^\n\x0e\x43\x61\x63heActionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.CacheAction\"\x98\x01\n\x0e\x43\x61\x63heDumpGraph\x12\x33\n\x04\x64ump\x18\x01 \x03(\x0b\x32%.proto_types.CacheDumpGraph.DumpEntry\x12\x14\n\x0c\x62\x65\x66ore_after\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t\x1a+\n\tDumpEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"d\n\x11\x43\x61\x63heDumpGraphMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CacheDumpGraph\"!\n\x12\x41\x64\x61pterImportError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"l\n\x15\x41\x64\x61pterImportErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.AdapterImportError\"#\n\x0fPluginLoadError\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"f\n\x12PluginLoadErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.PluginLoadError\"Z\n\x14NewConnectionOpening\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x18\n\x10\x63onnection_state\x18\x02 \x01(\t\"p\n\x17NewConnectionOpeningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NewConnectionOpening\"8\n\rCodeExecution\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63ode_content\x18\x02 \x01(\t\"b\n\x10\x43odeExecutionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.CodeExecution\"6\n\x13\x43odeExecutionStatus\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x02 \x01(\x02\"n\n\x16\x43odeExecutionStatusMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.CodeExecutionStatus\"%\n\x16\x43\x61talogGenerationError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x19\x43\x61talogGenerationErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.CatalogGenerationError\"-\n\x13WriteCatalogFailure\x12\x16\n\x0enum_exceptions\x18\x01 \x01(\x05\"n\n\x16WriteCatalogFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.WriteCatalogFailure\"\x1e\n\x0e\x43\x61talogWritten\x12\x0c\n\x04path\x18\x01 \x01(\t\"d\n\x11\x43\x61talogWrittenMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CatalogWritten\"\x14\n\x12\x43\x61nnotGenerateDocs\"l\n\x15\x43\x61nnotGenerateDocsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.CannotGenerateDocs\"\x11\n\x0f\x42uildingCatalog\"f\n\x12\x42uildingCatalogMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.BuildingCatalog\"-\n\x18\x44\x61tabaseErrorRunningHook\x12\x11\n\thook_type\x18\x01 \x01(\t\"x\n\x1b\x44\x61tabaseErrorRunningHookMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DatabaseErrorRunningHook\"4\n\x0cHooksRunning\x12\x11\n\tnum_hooks\x18\x01 \x01(\x05\x12\x11\n\thook_type\x18\x02 \x01(\t\"`\n\x0fHooksRunningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.HooksRunning\"T\n\x14\x46inishedRunningStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\x12\x11\n\texecution\x18\x02 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x03 \x01(\x02\"p\n\x17\x46inishedRunningStatsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.FinishedRunningStats\"<\n\x15\x43onstraintNotEnforced\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"r\n\x18\x43onstraintNotEnforcedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConstraintNotEnforced\"=\n\x16\x43onstraintNotSupported\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"t\n\x19\x43onstraintNotSupportedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.ConstraintNotSupported\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"l\n\x15InputFileDiffErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17InvalidValueForFieldMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"j\n\x14ValidationWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"j\n\x14ParsePerfInfoPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ParsePerfInfoPath\"$\n\x14GenericTestFileParse\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x17GenericTestFileParseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.GenericTestFileParse\"\x1e\n\x0eMacroFileParse\x12\x0c\n\x04path\x18\x01 \x01(\t\"d\n\x11MacroFileParseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MacroFileParse\"1\n!PartialParsingErrorProcessingFile\x12\x0c\n\x04\x66ile\x18\x01 \x01(\t\"\x8a\x01\n$PartialParsingErrorProcessingFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16PartialParsingErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"z\n\x1cPartialParsingSkipParsingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"p\n\x17UnableToPartialParseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15StateCheckVarsHashMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"x\n\x1bPartialParsingNotEnabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17ParsedFileLoadFailedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18PartialParsingEnabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15PartialParsingFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bUnusedResourceConfigPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10SeedIncreasedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bSeedExceedsLimitSamePathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!SeedExceedsLimitAndPathChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"`\n\x0fUnusedTablesMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1aWrongResourceSchemaFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13NoNodeForYamlKeyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18MacroNotFoundForPatchMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"t\n\x19NodeNotFoundOrDisabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12JinjaLogWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fJinjaLogInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10JinjaLogDebugMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!UnpinnedRefNewVersionAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x90\x01\n\'UnsupportedConstraintMaterializationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x82\x01\n GitSparseCheckoutSubdirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"~\n\x1eGitProgressCheckoutRevisionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x92\x01\n(GitProgressUpdatingExistingDependencyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"GitProgressPullingNewDependencyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"d\n\x11GitNothingToDoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1aGitProgressCheckedOutAtMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"|\n\x1dRegistryProgressGETRequestMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1eRegistryProgressGETResponseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x82\x01\n SelectorReportInvalidSelectorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"n\n\x16\x44\x65psNoPackagesFoundMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x44\x65psStartPackageInstallMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x44\x65psInstallInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16\x44\x65psUpdateAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"`\n\x0f\x44\x65psUpToDateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17\x44\x65psListSubdirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\"1\n\x11RetryExternalCall\x12\x0f\n\x07\x61ttempt\x18\x01 \x01(\x05\x12\x0b\n\x03max\x18\x02 \x01(\x05\"j\n\x14RetryExternalCallMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.RetryExternalCall\"#\n\x14RecordRetryException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x17RecordRetryExceptionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.RecordRetryException\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x86\x01\n\"RegistryIndexProgressGETRequestMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x88\x01\n#RegistryIndexProgressGETResponseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x84\x01\n!RegistryResponseUnexpectedTypeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!RegistryResponseMissingTopKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x8a\x01\n$RegistryResponseMissingNestedKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x86\x01\n\"RegistryResponseExtraNestedKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x44\x65psUnpinnedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1eNoNodesForSelectionCriteriaMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"~\n\x1eRunningOperationCaughtErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"f\n\x12\x43ompileCompleteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"t\n\x19\x46reshnessCheckCompleteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"3\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\"l\n\x15SQLRunnerExceptionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10LogTestResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fLogStartLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11LogModelResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\xfa\x01\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\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"j\n\x14LogSnapshotResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10LogSeedResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogFreshnessResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"b\n\x10LogCancelLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x44\x65\x66\x61ultSelectorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"Z\n\x0cNodeStartMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fNodeFinishedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"~\n\x1eQueryCancelationUnsupportedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x43oncurrencyLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1cWritingInjectedSQLForNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10NodeCompilingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10NodeExecutingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13LogHookStartLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11LogHookEndLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12SkippingDetailsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"^\n\x0eNothingToDoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x82\x01\n RunningOperationUncaughtErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x45ndRunResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"f\n\x12NoNodesSelectedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13\x43ommandCompletedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"X\n\x0bShowNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x43ompiledNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x43\x61tchableExceptionOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"5\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"l\n\x15InternalErrorOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"K\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\"r\n\x18GenericExceptionOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1dNodeConnectionReleaseErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"r\n\x18MainKeyboardInterruptMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17MainEncounteredErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"d\n\x11MainStackTraceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"@\n\x13SystemCouldNotWrite\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\"n\n\x16SystemCouldNotWriteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.SystemCouldNotWrite\"!\n\x12SystemExecutingCmd\x12\x0b\n\x03\x63md\x18\x01 \x03(\t\"l\n\x15SystemExecutingCmdMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SystemExecutingCmd\"\x1c\n\x0cSystemStdOut\x12\x0c\n\x04\x62msg\x18\x01 \x01(\t\"`\n\x0fSystemStdOutMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SystemStdOut\"\x1c\n\x0cSystemStdErr\x12\x0c\n\x04\x62msg\x18\x01 \x01(\t\"`\n\x0fSystemStdErrMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SystemStdErr\",\n\x16SystemReportReturnCode\x12\x12\n\nreturncode\x18\x01 \x01(\x05\"t\n\x19SystemReportReturnCodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.SystemReportReturnCode\"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\"n\n\x16TimingInfoCollectedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDebugStackTraceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11\x43heckCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13\x43onfirmCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x15ProtectedCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"l\n\x15\x46inishedCleanPathsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"^\n\x0eOpenCommandMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"\x19\n\nFormatting\x12\x0b\n\x03msg\x18\x01 \x01(\t\"\\\n\rFormattingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.Formatting\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"f\n\x12ServingDocsPortMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"r\n\x18ServingDocsAccessInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"n\n\x16ServingDocsExitInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"J\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\"h\n\x13RunResultWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"J\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\"h\n\x13RunResultFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"Z\n\x0cStatsLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"\x1d\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"d\n\x11RunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\")\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\"v\n\x1aRunResultErrorNoMessageMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"\x1f\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"f\n\x12SQLCompiledPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"-\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\"p\n\x17\x43heckNodeTestFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"\"\n\x13\x46irstRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"n\n\x16\x46irstRunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.FirstRunResultError\"\'\n\x18\x41\x66terFirstRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x1b\x41\x66terFirstRunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.AfterFirstRunResultError\"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\"f\n\x12\x45ndOfRunSummaryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16LogSkipBecauseErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"l\n\x15\x45nsureGitInstalledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"x\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"v\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"f\n\x12\x44isableTrackingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fSendingEventMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"h\n\x13SendEventFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"^\n\x0e\x46lushEventsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"l\n\x15\x46lushEventsFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1cTrackingInitializeFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"&\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\"v\n\x1aRunResultWarningMessageMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"^\n\x0e\x44\x65\x62ugCmdOutMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11\x44\x65\x62ugCmdResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\x13\n\x04Note\x12\x0b\n\x03msg\x18\x01 \x01(\t\"P\n\x07NoteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x1f\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x11.proto_types.Noteb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0btypes.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x91\x02\n\tEventInfo\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\x30\n\x05\x65xtra\x18\t \x03(\x0b\x32!.proto_types.EventInfo.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\"\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\"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\"\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\"G\n\x0fReferenceKeyMsg\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x12\n\nidentifier\x18\x03 \x01(\t\"6\n\x0eGenericMessage\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"j\n\x14MainReportVersionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11MainReportArgsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18MainTrackingUserStateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12MergedFromStateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17MissingProfileTargetMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"j\n\x14InvalidOptionYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDbtProjectErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDbtProfileErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15StarterProjectPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18\x43onfigFolderDirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17NoSampleProfileFoundMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bProfileWrittenWithSampleMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x90\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x92\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"h\n\x13SettingUpProfileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"|\n\x1dInvalidProfileTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"x\n\x1bProjectNameAlreadyExistsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11ProjectCreatedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1dPackageRedirectDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x82\x01\n PackageInstallPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1e\x43onfigSourcePathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1c\x43onfigDataPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\"?\n\x19\x41\x64\x61pterDeprecationWarning\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"z\n\x1c\x41\x64\x61pterDeprecationWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.AdapterDeprecationWarning\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"v\n\x1aMetricAttributesRenamedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x45xposureNameDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16InternalDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1d\x45nvironmentVariableRenamedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1b\x43onfigLogPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1e\x43onfigTargetPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"!\n\x1f\x43ollectFreshnessReturnSignature\"\x86\x01\n\"CollectFreshnessReturnSignatureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.CollectFreshnessReturnSignature\"\x87\x01\n\x11\x41\x64\x61pterEventDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"j\n\x14\x41\x64\x61pterEventDebugMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventDebug\"\x86\x01\n\x10\x41\x64\x61pterEventInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"h\n\x13\x41\x64\x61pterEventInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.AdapterEventInfo\"\x89\x01\n\x13\x41\x64\x61pterEventWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"n\n\x16\x41\x64\x61pterEventWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.AdapterEventWarning\"\x99\x01\n\x11\x41\x64\x61pterEventError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\x12\x10\n\x08\x65xc_info\x18\x05 \x01(\t\"j\n\x14\x41\x64\x61pterEventErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventError\"_\n\rNewConnection\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"b\n\x10NewConnectionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NewConnection\"=\n\x10\x43onnectionReused\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x16\n\x0eorig_conn_name\x18\x02 \x01(\t\"h\n\x13\x43onnectionReusedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionReused\"0\n\x1b\x43onnectionLeftOpenInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"~\n\x1e\x43onnectionLeftOpenInCleanupMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConnectionLeftOpenInCleanup\".\n\x19\x43onnectionClosedInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"z\n\x1c\x43onnectionClosedInCleanupMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConnectionClosedInCleanup\"_\n\x0eRollbackFailed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"d\n\x11RollbackFailedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RollbackFailed\"O\n\x10\x43onnectionClosed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"h\n\x13\x43onnectionClosedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionClosed\"Q\n\x12\x43onnectionLeftOpen\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"l\n\x15\x43onnectionLeftOpenMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ConnectionLeftOpen\"G\n\x08Rollback\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"X\n\x0bRollbackMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.Rollback\"@\n\tCacheMiss\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\"Z\n\x0c\x43\x61\x63heMissMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.CacheMiss\"b\n\rListRelations\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12/\n\trelations\x18\x03 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"b\n\x10ListRelationsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ListRelations\"`\n\x0e\x43onnectionUsed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"d\n\x11\x43onnectionUsedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ConnectionUsed\"T\n\x08SQLQuery\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x0b\n\x03sql\x18\x03 \x01(\t\"X\n\x0bSQLQueryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.SQLQuery\"[\n\x0eSQLQueryStatus\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x03 \x01(\x02\"d\n\x11SQLQueryStatusMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SQLQueryStatus\"H\n\tSQLCommit\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"Z\n\x0cSQLCommitMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.SQLCommit\"a\n\rColTypeChange\x12\x11\n\torig_type\x18\x01 \x01(\t\x12\x10\n\x08new_type\x18\x02 \x01(\t\x12+\n\x05table\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"b\n\x10\x43olTypeChangeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ColTypeChange\"@\n\x0eSchemaCreation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"d\n\x11SchemaCreationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SchemaCreation\"<\n\nSchemaDrop\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"\\\n\rSchemaDropMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SchemaDrop\"\xde\x01\n\x0b\x43\x61\x63heAction\x12\x0e\n\x06\x61\x63tion\x18\x01 \x01(\t\x12-\n\x07ref_key\x18\x02 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_2\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_3\x18\x04 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12.\n\x08ref_list\x18\x05 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"^\n\x0e\x43\x61\x63heActionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.CacheAction\"\x98\x01\n\x0e\x43\x61\x63heDumpGraph\x12\x33\n\x04\x64ump\x18\x01 \x03(\x0b\x32%.proto_types.CacheDumpGraph.DumpEntry\x12\x14\n\x0c\x62\x65\x66ore_after\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t\x1a+\n\tDumpEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"d\n\x11\x43\x61\x63heDumpGraphMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CacheDumpGraph\"B\n\x11\x41\x64\x61pterRegistered\x12\x14\n\x0c\x61\x64\x61pter_name\x18\x01 \x01(\t\x12\x17\n\x0f\x61\x64\x61pter_version\x18\x02 \x01(\t\"j\n\x14\x41\x64\x61pterRegisteredMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterRegistered\"!\n\x12\x41\x64\x61pterImportError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"l\n\x15\x41\x64\x61pterImportErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.AdapterImportError\"#\n\x0fPluginLoadError\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"f\n\x12PluginLoadErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.PluginLoadError\"Z\n\x14NewConnectionOpening\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x18\n\x10\x63onnection_state\x18\x02 \x01(\t\"p\n\x17NewConnectionOpeningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NewConnectionOpening\"8\n\rCodeExecution\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63ode_content\x18\x02 \x01(\t\"b\n\x10\x43odeExecutionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.CodeExecution\"6\n\x13\x43odeExecutionStatus\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x02 \x01(\x02\"n\n\x16\x43odeExecutionStatusMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.CodeExecutionStatus\"%\n\x16\x43\x61talogGenerationError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x19\x43\x61talogGenerationErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.CatalogGenerationError\"-\n\x13WriteCatalogFailure\x12\x16\n\x0enum_exceptions\x18\x01 \x01(\x05\"n\n\x16WriteCatalogFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.WriteCatalogFailure\"\x1e\n\x0e\x43\x61talogWritten\x12\x0c\n\x04path\x18\x01 \x01(\t\"d\n\x11\x43\x61talogWrittenMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CatalogWritten\"\x14\n\x12\x43\x61nnotGenerateDocs\"l\n\x15\x43\x61nnotGenerateDocsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.CannotGenerateDocs\"\x11\n\x0f\x42uildingCatalog\"f\n\x12\x42uildingCatalogMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.BuildingCatalog\"-\n\x18\x44\x61tabaseErrorRunningHook\x12\x11\n\thook_type\x18\x01 \x01(\t\"x\n\x1b\x44\x61tabaseErrorRunningHookMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DatabaseErrorRunningHook\"4\n\x0cHooksRunning\x12\x11\n\tnum_hooks\x18\x01 \x01(\x05\x12\x11\n\thook_type\x18\x02 \x01(\t\"`\n\x0fHooksRunningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.HooksRunning\"T\n\x14\x46inishedRunningStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\x12\x11\n\texecution\x18\x02 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x03 \x01(\x02\"p\n\x17\x46inishedRunningStatsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.FinishedRunningStats\"<\n\x15\x43onstraintNotEnforced\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"r\n\x18\x43onstraintNotEnforcedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConstraintNotEnforced\"=\n\x16\x43onstraintNotSupported\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"t\n\x19\x43onstraintNotSupportedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.ConstraintNotSupported\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"l\n\x15InputFileDiffErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InputFileDiffError\"t\n\x1aPublicationArtifactChanged\x12\x14\n\x0cproject_name\x18\x01 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x02 \x01(\t\x12\x30\n\x0cgenerated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"|\n\x1dPublicationArtifactChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PublicationArtifactChanged\"?\n\x14InvalidValueForField\x12\x12\n\nfield_name\x18\x01 \x01(\t\x12\x13\n\x0b\x66ield_value\x18\x02 \x01(\t\"p\n\x17InvalidValueForFieldMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"j\n\x14ValidationWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"j\n\x14ParsePerfInfoPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x8a\x01\n$PartialParsingErrorProcessingFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16PartialParsingErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"z\n\x1cPartialParsingSkipParsingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"p\n\x17UnableToPartialParseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15StateCheckVarsHashMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"x\n\x1bPartialParsingNotEnabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17ParsedFileLoadFailedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18PartialParsingEnabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15PartialParsingFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bUnusedResourceConfigPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10SeedIncreasedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bSeedExceedsLimitSamePathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!SeedExceedsLimitAndPathChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"`\n\x0fUnusedTablesMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1aWrongResourceSchemaFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13NoNodeForYamlKeyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18MacroNotFoundForPatchMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"t\n\x19NodeNotFoundOrDisabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12JinjaLogWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fJinjaLogInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10JinjaLogDebugMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!UnpinnedRefNewVersionAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"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\"f\n\x12\x44\x65precatedModelMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DeprecatedModel\"\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\"\x80\x01\n\x1fUpcomingReferenceDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16\x44\x65precatedReferenceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DeprecatedReference\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x90\x01\n\'UnsupportedConstraintMaterializationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x82\x01\n GitSparseCheckoutSubdirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"~\n\x1eGitProgressCheckoutRevisionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x92\x01\n(GitProgressUpdatingExistingDependencyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"GitProgressPullingNewDependencyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"d\n\x11GitNothingToDoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1aGitProgressCheckedOutAtMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"|\n\x1dRegistryProgressGETRequestMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1eRegistryProgressGETResponseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x82\x01\n SelectorReportInvalidSelectorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"n\n\x16\x44\x65psNoPackagesFoundMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x44\x65psStartPackageInstallMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x44\x65psInstallInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16\x44\x65psUpdateAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"`\n\x0f\x44\x65psUpToDateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17\x44\x65psListSubdirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\"1\n\x11RetryExternalCall\x12\x0f\n\x07\x61ttempt\x18\x01 \x01(\x05\x12\x0b\n\x03max\x18\x02 \x01(\x05\"j\n\x14RetryExternalCallMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.RetryExternalCall\"#\n\x14RecordRetryException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x17RecordRetryExceptionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.RecordRetryException\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x86\x01\n\"RegistryIndexProgressGETRequestMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x88\x01\n#RegistryIndexProgressGETResponseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x84\x01\n!RegistryResponseUnexpectedTypeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!RegistryResponseMissingTopKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x8a\x01\n$RegistryResponseMissingNestedKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x86\x01\n\"RegistryResponseExtraNestedKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x44\x65psUnpinnedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1eNoNodesForSelectionCriteriaMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\"M\n\x1cPublicationArtifactAvailable\x12-\n\x0cpub_artifact\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\"\x80\x01\n\x1fPublicationArtifactAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.PublicationArtifactAvailable\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"~\n\x1eRunningOperationCaughtErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"f\n\x12\x43ompileCompleteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"t\n\x19\x46reshnessCheckCompleteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"3\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\"l\n\x15SQLRunnerExceptionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10LogTestResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fLogStartLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11LogModelResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\xfa\x01\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\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"j\n\x14LogSnapshotResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10LogSeedResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogFreshnessResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"b\n\x10LogCancelLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x44\x65\x66\x61ultSelectorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"Z\n\x0cNodeStartMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fNodeFinishedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"~\n\x1eQueryCancelationUnsupportedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x43oncurrencyLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1cWritingInjectedSQLForNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10NodeCompilingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10NodeExecutingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13LogHookStartLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11LogHookEndLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12SkippingDetailsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"^\n\x0eNothingToDoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x82\x01\n RunningOperationUncaughtErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x45ndRunResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"f\n\x12NoNodesSelectedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13\x43ommandCompletedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"X\n\x0bShowNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x43ompiledNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x43\x61tchableExceptionOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"5\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"l\n\x15InternalErrorOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"K\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\"r\n\x18GenericExceptionOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1dNodeConnectionReleaseErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"r\n\x18MainKeyboardInterruptMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17MainEncounteredErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"d\n\x11MainStackTraceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"@\n\x13SystemCouldNotWrite\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\"n\n\x16SystemCouldNotWriteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.SystemCouldNotWrite\"!\n\x12SystemExecutingCmd\x12\x0b\n\x03\x63md\x18\x01 \x03(\t\"l\n\x15SystemExecutingCmdMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SystemExecutingCmd\"\x1c\n\x0cSystemStdOut\x12\x0c\n\x04\x62msg\x18\x01 \x01(\t\"`\n\x0fSystemStdOutMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SystemStdOut\"\x1c\n\x0cSystemStdErr\x12\x0c\n\x04\x62msg\x18\x01 \x01(\t\"`\n\x0fSystemStdErrMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SystemStdErr\",\n\x16SystemReportReturnCode\x12\x12\n\nreturncode\x18\x01 \x01(\x05\"t\n\x19SystemReportReturnCodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.SystemReportReturnCode\"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\"n\n\x16TimingInfoCollectedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDebugStackTraceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11\x43heckCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13\x43onfirmCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x15ProtectedCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"l\n\x15\x46inishedCleanPathsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"^\n\x0eOpenCommandMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"\x19\n\nFormatting\x12\x0b\n\x03msg\x18\x01 \x01(\t\"\\\n\rFormattingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.Formatting\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"f\n\x12ServingDocsPortMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"r\n\x18ServingDocsAccessInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"n\n\x16ServingDocsExitInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"J\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\"h\n\x13RunResultWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"J\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\"h\n\x13RunResultFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"Z\n\x0cStatsLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"\x1d\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"d\n\x11RunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\")\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\"v\n\x1aRunResultErrorNoMessageMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"\x1f\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"f\n\x12SQLCompiledPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"-\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\"p\n\x17\x43heckNodeTestFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"\"\n\x13\x46irstRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"n\n\x16\x46irstRunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.FirstRunResultError\"\'\n\x18\x41\x66terFirstRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x1b\x41\x66terFirstRunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.AfterFirstRunResultError\"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\"f\n\x12\x45ndOfRunSummaryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16LogSkipBecauseErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"l\n\x15\x45nsureGitInstalledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"x\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"v\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"f\n\x12\x44isableTrackingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fSendingEventMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"h\n\x13SendEventFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"^\n\x0e\x46lushEventsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"l\n\x15\x46lushEventsFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1cTrackingInitializeFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"&\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\"v\n\x1aRunResultWarningMessageMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"^\n\x0e\x44\x65\x62ugCmdOutMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11\x44\x65\x62ugCmdResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\x13\n\x04Note\x12\x0b\n\x03msg\x18\x01 \x01(\t\"P\n\x07NoteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x1f\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x11.proto_types.Noteb\x06proto3') -_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals()) -_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'types_pb2', globals()) +_globals = globals() +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'types_pb2', _globals) if _descriptor._USE_C_DESCRIPTORS == False: DESCRIPTOR._options = None @@ -34,854 +35,870 @@ _LOGSNAPSHOTRESULT_CFGENTRY._serialized_options = b'8\001' _STATSLINE_STATSENTRY._options = None _STATSLINE_STATSENTRY._serialized_options = b'8\001' - _EVENTINFO._serialized_start=92 - _EVENTINFO._serialized_end=365 - _EVENTINFO_EXTRAENTRY._serialized_start=321 - _EVENTINFO_EXTRAENTRY._serialized_end=365 - _TIMINGINFOMSG._serialized_start=367 - _TIMINGINFOMSG._serialized_end=494 - _NODERELATION._serialized_start=496 - _NODERELATION._serialized_end=582 - _NODEINFO._serialized_start=585 - _NODEINFO._serialized_end=858 - _RUNRESULTMSG._serialized_start=861 - _RUNRESULTMSG._serialized_end=1070 - _REFERENCEKEYMSG._serialized_start=1072 - _REFERENCEKEYMSG._serialized_end=1143 - _GENERICMESSAGE._serialized_start=1145 - _GENERICMESSAGE._serialized_end=1199 - _MAINREPORTVERSION._serialized_start=1201 - _MAINREPORTVERSION._serialized_end=1258 - _MAINREPORTVERSIONMSG._serialized_start=1260 - _MAINREPORTVERSIONMSG._serialized_end=1366 - _MAINREPORTARGS._serialized_start=1368 - _MAINREPORTARGS._serialized_end=1482 - _MAINREPORTARGS_ARGSENTRY._serialized_start=1439 - _MAINREPORTARGS_ARGSENTRY._serialized_end=1482 - _MAINREPORTARGSMSG._serialized_start=1484 - _MAINREPORTARGSMSG._serialized_end=1584 - _MAINTRACKINGUSERSTATE._serialized_start=1586 - _MAINTRACKINGUSERSTATE._serialized_end=1629 - _MAINTRACKINGUSERSTATEMSG._serialized_start=1631 - _MAINTRACKINGUSERSTATEMSG._serialized_end=1745 - _MERGEDFROMSTATE._serialized_start=1747 - _MERGEDFROMSTATE._serialized_end=1800 - _MERGEDFROMSTATEMSG._serialized_start=1802 - _MERGEDFROMSTATEMSG._serialized_end=1904 - _MISSINGPROFILETARGET._serialized_start=1906 - _MISSINGPROFILETARGET._serialized_end=1971 - _MISSINGPROFILETARGETMSG._serialized_start=1973 - _MISSINGPROFILETARGETMSG._serialized_end=2085 - _INVALIDOPTIONYAML._serialized_start=2087 - _INVALIDOPTIONYAML._serialized_end=2127 - _INVALIDOPTIONYAMLMSG._serialized_start=2129 - _INVALIDOPTIONYAMLMSG._serialized_end=2235 - _LOGDBTPROJECTERROR._serialized_start=2237 - _LOGDBTPROJECTERROR._serialized_end=2270 - _LOGDBTPROJECTERRORMSG._serialized_start=2272 - _LOGDBTPROJECTERRORMSG._serialized_end=2380 - _LOGDBTPROFILEERROR._serialized_start=2382 - _LOGDBTPROFILEERROR._serialized_end=2433 - _LOGDBTPROFILEERRORMSG._serialized_start=2435 - _LOGDBTPROFILEERRORMSG._serialized_end=2543 - _STARTERPROJECTPATH._serialized_start=2545 - _STARTERPROJECTPATH._serialized_end=2578 - _STARTERPROJECTPATHMSG._serialized_start=2580 - _STARTERPROJECTPATHMSG._serialized_end=2688 - _CONFIGFOLDERDIRECTORY._serialized_start=2690 - _CONFIGFOLDERDIRECTORY._serialized_end=2726 - _CONFIGFOLDERDIRECTORYMSG._serialized_start=2728 - _CONFIGFOLDERDIRECTORYMSG._serialized_end=2842 - _NOSAMPLEPROFILEFOUND._serialized_start=2844 - _NOSAMPLEPROFILEFOUND._serialized_end=2883 - _NOSAMPLEPROFILEFOUNDMSG._serialized_start=2885 - _NOSAMPLEPROFILEFOUNDMSG._serialized_end=2997 - _PROFILEWRITTENWITHSAMPLE._serialized_start=2999 - _PROFILEWRITTENWITHSAMPLE._serialized_end=3053 - _PROFILEWRITTENWITHSAMPLEMSG._serialized_start=3055 - _PROFILEWRITTENWITHSAMPLEMSG._serialized_end=3175 - _PROFILEWRITTENWITHTARGETTEMPLATEYAML._serialized_start=3177 - _PROFILEWRITTENWITHTARGETTEMPLATEYAML._serialized_end=3243 - _PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG._serialized_start=3246 - _PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG._serialized_end=3390 - _PROFILEWRITTENWITHPROJECTTEMPLATEYAML._serialized_start=3392 - _PROFILEWRITTENWITHPROJECTTEMPLATEYAML._serialized_end=3459 - _PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG._serialized_start=3462 - _PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG._serialized_end=3608 - _SETTINGUPPROFILE._serialized_start=3610 - _SETTINGUPPROFILE._serialized_end=3628 - _SETTINGUPPROFILEMSG._serialized_start=3630 - _SETTINGUPPROFILEMSG._serialized_end=3734 - _INVALIDPROFILETEMPLATEYAML._serialized_start=3736 - _INVALIDPROFILETEMPLATEYAML._serialized_end=3764 - _INVALIDPROFILETEMPLATEYAMLMSG._serialized_start=3766 - _INVALIDPROFILETEMPLATEYAMLMSG._serialized_end=3890 - _PROJECTNAMEALREADYEXISTS._serialized_start=3892 - _PROJECTNAMEALREADYEXISTS._serialized_end=3932 - _PROJECTNAMEALREADYEXISTSMSG._serialized_start=3934 - _PROJECTNAMEALREADYEXISTSMSG._serialized_end=4054 - _PROJECTCREATED._serialized_start=4056 - _PROJECTCREATED._serialized_end=4131 - _PROJECTCREATEDMSG._serialized_start=4133 - _PROJECTCREATEDMSG._serialized_end=4233 - _PACKAGEREDIRECTDEPRECATION._serialized_start=4235 - _PACKAGEREDIRECTDEPRECATION._serialized_end=4299 - _PACKAGEREDIRECTDEPRECATIONMSG._serialized_start=4301 - _PACKAGEREDIRECTDEPRECATIONMSG._serialized_end=4425 - _PACKAGEINSTALLPATHDEPRECATION._serialized_start=4427 - _PACKAGEINSTALLPATHDEPRECATION._serialized_end=4458 - _PACKAGEINSTALLPATHDEPRECATIONMSG._serialized_start=4461 - _PACKAGEINSTALLPATHDEPRECATIONMSG._serialized_end=4591 - _CONFIGSOURCEPATHDEPRECATION._serialized_start=4593 - _CONFIGSOURCEPATHDEPRECATION._serialized_end=4665 - _CONFIGSOURCEPATHDEPRECATIONMSG._serialized_start=4667 - _CONFIGSOURCEPATHDEPRECATIONMSG._serialized_end=4793 - _CONFIGDATAPATHDEPRECATION._serialized_start=4795 - _CONFIGDATAPATHDEPRECATION._serialized_end=4865 - _CONFIGDATAPATHDEPRECATIONMSG._serialized_start=4867 - _CONFIGDATAPATHDEPRECATIONMSG._serialized_end=4989 - _ADAPTERDEPRECATIONWARNING._serialized_start=4991 - _ADAPTERDEPRECATIONWARNING._serialized_end=5054 - _ADAPTERDEPRECATIONWARNINGMSG._serialized_start=5056 - _ADAPTERDEPRECATIONWARNINGMSG._serialized_end=5178 - _METRICATTRIBUTESRENAMED._serialized_start=5180 - _METRICATTRIBUTESRENAMED._serialized_end=5226 - _METRICATTRIBUTESRENAMEDMSG._serialized_start=5228 - _METRICATTRIBUTESRENAMEDMSG._serialized_end=5346 - _EXPOSURENAMEDEPRECATION._serialized_start=5348 - _EXPOSURENAMEDEPRECATION._serialized_end=5391 - _EXPOSURENAMEDEPRECATIONMSG._serialized_start=5393 - _EXPOSURENAMEDEPRECATIONMSG._serialized_end=5511 - _INTERNALDEPRECATION._serialized_start=5513 - _INTERNALDEPRECATION._serialized_end=5607 - _INTERNALDEPRECATIONMSG._serialized_start=5609 - _INTERNALDEPRECATIONMSG._serialized_end=5719 - _ENVIRONMENTVARIABLERENAMED._serialized_start=5721 - _ENVIRONMENTVARIABLERENAMED._serialized_end=5785 - _ENVIRONMENTVARIABLERENAMEDMSG._serialized_start=5787 - _ENVIRONMENTVARIABLERENAMEDMSG._serialized_end=5911 - _CONFIGLOGPATHDEPRECATION._serialized_start=5913 - _CONFIGLOGPATHDEPRECATION._serialized_end=5964 - _CONFIGLOGPATHDEPRECATIONMSG._serialized_start=5966 - _CONFIGLOGPATHDEPRECATIONMSG._serialized_end=6086 - _CONFIGTARGETPATHDEPRECATION._serialized_start=6088 - _CONFIGTARGETPATHDEPRECATION._serialized_end=6142 - _CONFIGTARGETPATHDEPRECATIONMSG._serialized_start=6144 - _CONFIGTARGETPATHDEPRECATIONMSG._serialized_end=6270 - _COLLECTFRESHNESSRETURNSIGNATURE._serialized_start=6272 - _COLLECTFRESHNESSRETURNSIGNATURE._serialized_end=6305 - _COLLECTFRESHNESSRETURNSIGNATUREMSG._serialized_start=6308 - _COLLECTFRESHNESSRETURNSIGNATUREMSG._serialized_end=6442 - _ADAPTEREVENTDEBUG._serialized_start=6445 - _ADAPTEREVENTDEBUG._serialized_end=6580 - _ADAPTEREVENTDEBUGMSG._serialized_start=6582 - _ADAPTEREVENTDEBUGMSG._serialized_end=6688 - _ADAPTEREVENTINFO._serialized_start=6691 - _ADAPTEREVENTINFO._serialized_end=6825 - _ADAPTEREVENTINFOMSG._serialized_start=6827 - _ADAPTEREVENTINFOMSG._serialized_end=6931 - _ADAPTEREVENTWARNING._serialized_start=6934 - _ADAPTEREVENTWARNING._serialized_end=7071 - _ADAPTEREVENTWARNINGMSG._serialized_start=7073 - _ADAPTEREVENTWARNINGMSG._serialized_end=7183 - _ADAPTEREVENTERROR._serialized_start=7186 - _ADAPTEREVENTERROR._serialized_end=7339 - _ADAPTEREVENTERRORMSG._serialized_start=7341 - _ADAPTEREVENTERRORMSG._serialized_end=7447 - _NEWCONNECTION._serialized_start=7449 - _NEWCONNECTION._serialized_end=7544 - _NEWCONNECTIONMSG._serialized_start=7546 - _NEWCONNECTIONMSG._serialized_end=7644 - _CONNECTIONREUSED._serialized_start=7646 - _CONNECTIONREUSED._serialized_end=7707 - _CONNECTIONREUSEDMSG._serialized_start=7709 - _CONNECTIONREUSEDMSG._serialized_end=7813 - _CONNECTIONLEFTOPENINCLEANUP._serialized_start=7815 - _CONNECTIONLEFTOPENINCLEANUP._serialized_end=7863 - _CONNECTIONLEFTOPENINCLEANUPMSG._serialized_start=7865 - _CONNECTIONLEFTOPENINCLEANUPMSG._serialized_end=7991 - _CONNECTIONCLOSEDINCLEANUP._serialized_start=7993 - _CONNECTIONCLOSEDINCLEANUP._serialized_end=8039 - _CONNECTIONCLOSEDINCLEANUPMSG._serialized_start=8041 - _CONNECTIONCLOSEDINCLEANUPMSG._serialized_end=8163 - _ROLLBACKFAILED._serialized_start=8165 - _ROLLBACKFAILED._serialized_end=8260 - _ROLLBACKFAILEDMSG._serialized_start=8262 - _ROLLBACKFAILEDMSG._serialized_end=8362 - _CONNECTIONCLOSED._serialized_start=8364 - _CONNECTIONCLOSED._serialized_end=8443 - _CONNECTIONCLOSEDMSG._serialized_start=8445 - _CONNECTIONCLOSEDMSG._serialized_end=8549 - _CONNECTIONLEFTOPEN._serialized_start=8551 - _CONNECTIONLEFTOPEN._serialized_end=8632 - _CONNECTIONLEFTOPENMSG._serialized_start=8634 - _CONNECTIONLEFTOPENMSG._serialized_end=8742 - _ROLLBACK._serialized_start=8744 - _ROLLBACK._serialized_end=8815 - _ROLLBACKMSG._serialized_start=8817 - _ROLLBACKMSG._serialized_end=8905 - _CACHEMISS._serialized_start=8907 - _CACHEMISS._serialized_end=8971 - _CACHEMISSMSG._serialized_start=8973 - _CACHEMISSMSG._serialized_end=9063 - _LISTRELATIONS._serialized_start=9065 - _LISTRELATIONS._serialized_end=9163 - _LISTRELATIONSMSG._serialized_start=9165 - _LISTRELATIONSMSG._serialized_end=9263 - _CONNECTIONUSED._serialized_start=9265 - _CONNECTIONUSED._serialized_end=9361 - _CONNECTIONUSEDMSG._serialized_start=9363 - _CONNECTIONUSEDMSG._serialized_end=9463 - _SQLQUERY._serialized_start=9465 - _SQLQUERY._serialized_end=9549 - _SQLQUERYMSG._serialized_start=9551 - _SQLQUERYMSG._serialized_end=9639 - _SQLQUERYSTATUS._serialized_start=9641 - _SQLQUERYSTATUS._serialized_end=9732 - _SQLQUERYSTATUSMSG._serialized_start=9734 - _SQLQUERYSTATUSMSG._serialized_end=9834 - _SQLCOMMIT._serialized_start=9836 - _SQLCOMMIT._serialized_end=9908 - _SQLCOMMITMSG._serialized_start=9910 - _SQLCOMMITMSG._serialized_end=10000 - _COLTYPECHANGE._serialized_start=10002 - _COLTYPECHANGE._serialized_end=10099 - _COLTYPECHANGEMSG._serialized_start=10101 - _COLTYPECHANGEMSG._serialized_end=10199 - _SCHEMACREATION._serialized_start=10201 - _SCHEMACREATION._serialized_end=10265 - _SCHEMACREATIONMSG._serialized_start=10267 - _SCHEMACREATIONMSG._serialized_end=10367 - _SCHEMADROP._serialized_start=10369 - _SCHEMADROP._serialized_end=10429 - _SCHEMADROPMSG._serialized_start=10431 - _SCHEMADROPMSG._serialized_end=10523 - _CACHEACTION._serialized_start=10526 - _CACHEACTION._serialized_end=10748 - _CACHEACTIONMSG._serialized_start=10750 - _CACHEACTIONMSG._serialized_end=10844 - _CACHEDUMPGRAPH._serialized_start=10847 - _CACHEDUMPGRAPH._serialized_end=10999 - _CACHEDUMPGRAPH_DUMPENTRY._serialized_start=10956 - _CACHEDUMPGRAPH_DUMPENTRY._serialized_end=10999 - _CACHEDUMPGRAPHMSG._serialized_start=11001 - _CACHEDUMPGRAPHMSG._serialized_end=11101 - _ADAPTERIMPORTERROR._serialized_start=11103 - _ADAPTERIMPORTERROR._serialized_end=11136 - _ADAPTERIMPORTERRORMSG._serialized_start=11138 - _ADAPTERIMPORTERRORMSG._serialized_end=11246 - _PLUGINLOADERROR._serialized_start=11248 - _PLUGINLOADERROR._serialized_end=11283 - _PLUGINLOADERRORMSG._serialized_start=11285 - _PLUGINLOADERRORMSG._serialized_end=11387 - _NEWCONNECTIONOPENING._serialized_start=11389 - _NEWCONNECTIONOPENING._serialized_end=11479 - _NEWCONNECTIONOPENINGMSG._serialized_start=11481 - _NEWCONNECTIONOPENINGMSG._serialized_end=11593 - _CODEEXECUTION._serialized_start=11595 - _CODEEXECUTION._serialized_end=11651 - _CODEEXECUTIONMSG._serialized_start=11653 - _CODEEXECUTIONMSG._serialized_end=11751 - _CODEEXECUTIONSTATUS._serialized_start=11753 - _CODEEXECUTIONSTATUS._serialized_end=11807 - _CODEEXECUTIONSTATUSMSG._serialized_start=11809 - _CODEEXECUTIONSTATUSMSG._serialized_end=11919 - _CATALOGGENERATIONERROR._serialized_start=11921 - _CATALOGGENERATIONERROR._serialized_end=11958 - _CATALOGGENERATIONERRORMSG._serialized_start=11960 - _CATALOGGENERATIONERRORMSG._serialized_end=12076 - _WRITECATALOGFAILURE._serialized_start=12078 - _WRITECATALOGFAILURE._serialized_end=12123 - _WRITECATALOGFAILUREMSG._serialized_start=12125 - _WRITECATALOGFAILUREMSG._serialized_end=12235 - _CATALOGWRITTEN._serialized_start=12237 - _CATALOGWRITTEN._serialized_end=12267 - _CATALOGWRITTENMSG._serialized_start=12269 - _CATALOGWRITTENMSG._serialized_end=12369 - _CANNOTGENERATEDOCS._serialized_start=12371 - _CANNOTGENERATEDOCS._serialized_end=12391 - _CANNOTGENERATEDOCSMSG._serialized_start=12393 - _CANNOTGENERATEDOCSMSG._serialized_end=12501 - _BUILDINGCATALOG._serialized_start=12503 - _BUILDINGCATALOG._serialized_end=12520 - _BUILDINGCATALOGMSG._serialized_start=12522 - _BUILDINGCATALOGMSG._serialized_end=12624 - _DATABASEERRORRUNNINGHOOK._serialized_start=12626 - _DATABASEERRORRUNNINGHOOK._serialized_end=12671 - _DATABASEERRORRUNNINGHOOKMSG._serialized_start=12673 - _DATABASEERRORRUNNINGHOOKMSG._serialized_end=12793 - _HOOKSRUNNING._serialized_start=12795 - _HOOKSRUNNING._serialized_end=12847 - _HOOKSRUNNINGMSG._serialized_start=12849 - _HOOKSRUNNINGMSG._serialized_end=12945 - _FINISHEDRUNNINGSTATS._serialized_start=12947 - _FINISHEDRUNNINGSTATS._serialized_end=13031 - _FINISHEDRUNNINGSTATSMSG._serialized_start=13033 - _FINISHEDRUNNINGSTATSMSG._serialized_end=13145 - _CONSTRAINTNOTENFORCED._serialized_start=13147 - _CONSTRAINTNOTENFORCED._serialized_end=13207 - _CONSTRAINTNOTENFORCEDMSG._serialized_start=13209 - _CONSTRAINTNOTENFORCEDMSG._serialized_end=13323 - _CONSTRAINTNOTSUPPORTED._serialized_start=13325 - _CONSTRAINTNOTSUPPORTED._serialized_end=13386 - _CONSTRAINTNOTSUPPORTEDMSG._serialized_start=13388 - _CONSTRAINTNOTSUPPORTEDMSG._serialized_end=13504 - _INPUTFILEDIFFERROR._serialized_start=13506 - _INPUTFILEDIFFERROR._serialized_end=13561 - _INPUTFILEDIFFERRORMSG._serialized_start=13563 - _INPUTFILEDIFFERRORMSG._serialized_end=13671 - _INVALIDVALUEFORFIELD._serialized_start=13673 - _INVALIDVALUEFORFIELD._serialized_end=13736 - _INVALIDVALUEFORFIELDMSG._serialized_start=13738 - _INVALIDVALUEFORFIELDMSG._serialized_end=13850 - _VALIDATIONWARNING._serialized_start=13852 - _VALIDATIONWARNING._serialized_end=13933 - _VALIDATIONWARNINGMSG._serialized_start=13935 - _VALIDATIONWARNINGMSG._serialized_end=14041 - _PARSEPERFINFOPATH._serialized_start=14043 - _PARSEPERFINFOPATH._serialized_end=14076 - _PARSEPERFINFOPATHMSG._serialized_start=14078 - _PARSEPERFINFOPATHMSG._serialized_end=14184 - _GENERICTESTFILEPARSE._serialized_start=14186 - _GENERICTESTFILEPARSE._serialized_end=14222 - _GENERICTESTFILEPARSEMSG._serialized_start=14224 - _GENERICTESTFILEPARSEMSG._serialized_end=14336 - _MACROFILEPARSE._serialized_start=14338 - _MACROFILEPARSE._serialized_end=14368 - _MACROFILEPARSEMSG._serialized_start=14370 - _MACROFILEPARSEMSG._serialized_end=14470 - _PARTIALPARSINGERRORPROCESSINGFILE._serialized_start=14472 - _PARTIALPARSINGERRORPROCESSINGFILE._serialized_end=14521 - _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_start=14524 - _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_end=14662 - _PARTIALPARSINGERROR._serialized_start=14665 - _PARTIALPARSINGERROR._serialized_end=14799 - _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_start=14753 - _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_end=14799 - _PARTIALPARSINGERRORMSG._serialized_start=14801 - _PARTIALPARSINGERRORMSG._serialized_end=14911 - _PARTIALPARSINGSKIPPARSING._serialized_start=14913 - _PARTIALPARSINGSKIPPARSING._serialized_end=14940 - _PARTIALPARSINGSKIPPARSINGMSG._serialized_start=14942 - _PARTIALPARSINGSKIPPARSINGMSG._serialized_end=15064 - _UNABLETOPARTIALPARSE._serialized_start=15066 - _UNABLETOPARTIALPARSE._serialized_end=15104 - _UNABLETOPARTIALPARSEMSG._serialized_start=15106 - _UNABLETOPARTIALPARSEMSG._serialized_end=15218 - _STATECHECKVARSHASH._serialized_start=15220 - _STATECHECKVARSHASH._serialized_end=15322 - _STATECHECKVARSHASHMSG._serialized_start=15324 - _STATECHECKVARSHASHMSG._serialized_end=15432 - _PARTIALPARSINGNOTENABLED._serialized_start=15434 - _PARTIALPARSINGNOTENABLED._serialized_end=15460 - _PARTIALPARSINGNOTENABLEDMSG._serialized_start=15462 - _PARTIALPARSINGNOTENABLEDMSG._serialized_end=15582 - _PARSEDFILELOADFAILED._serialized_start=15584 - _PARSEDFILELOADFAILED._serialized_end=15651 - _PARSEDFILELOADFAILEDMSG._serialized_start=15653 - _PARSEDFILELOADFAILEDMSG._serialized_end=15765 - _PARTIALPARSINGENABLED._serialized_start=15767 - _PARTIALPARSINGENABLED._serialized_end=15839 - _PARTIALPARSINGENABLEDMSG._serialized_start=15841 - _PARTIALPARSINGENABLEDMSG._serialized_end=15955 - _PARTIALPARSINGFILE._serialized_start=15957 - _PARTIALPARSINGFILE._serialized_end=16013 - _PARTIALPARSINGFILEMSG._serialized_start=16015 - _PARTIALPARSINGFILEMSG._serialized_end=16123 - _INVALIDDISABLEDTARGETINTESTNODE._serialized_start=16126 - _INVALIDDISABLEDTARGETINTESTNODE._serialized_end=16301 - _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_start=16304 - _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_end=16438 - _UNUSEDRESOURCECONFIGPATH._serialized_start=16440 - _UNUSEDRESOURCECONFIGPATH._serialized_end=16495 - _UNUSEDRESOURCECONFIGPATHMSG._serialized_start=16497 - _UNUSEDRESOURCECONFIGPATHMSG._serialized_end=16617 - _SEEDINCREASED._serialized_start=16619 - _SEEDINCREASED._serialized_end=16670 - _SEEDINCREASEDMSG._serialized_start=16672 - _SEEDINCREASEDMSG._serialized_end=16770 - _SEEDEXCEEDSLIMITSAMEPATH._serialized_start=16772 - _SEEDEXCEEDSLIMITSAMEPATH._serialized_end=16834 - _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_start=16836 - _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_end=16956 - _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_start=16958 - _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_end=17026 - _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_start=17029 - _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_end=17161 - _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_start=17163 - _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_end=17255 - _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_start=17258 - _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_end=17392 - _UNUSEDTABLES._serialized_start=17394 - _UNUSEDTABLES._serialized_end=17431 - _UNUSEDTABLESMSG._serialized_start=17433 - _UNUSEDTABLESMSG._serialized_end=17529 - _WRONGRESOURCESCHEMAFILE._serialized_start=17532 - _WRONGRESOURCESCHEMAFILE._serialized_end=17667 - _WRONGRESOURCESCHEMAFILEMSG._serialized_start=17669 - _WRONGRESOURCESCHEMAFILEMSG._serialized_end=17787 - _NONODEFORYAMLKEY._serialized_start=17789 - _NONODEFORYAMLKEY._serialized_end=17864 - _NONODEFORYAMLKEYMSG._serialized_start=17866 - _NONODEFORYAMLKEYMSG._serialized_end=17970 - _MACRONOTFOUNDFORPATCH._serialized_start=17972 - _MACRONOTFOUNDFORPATCH._serialized_end=18015 - _MACRONOTFOUNDFORPATCHMSG._serialized_start=18017 - _MACRONOTFOUNDFORPATCHMSG._serialized_end=18131 - _NODENOTFOUNDORDISABLED._serialized_start=18134 - _NODENOTFOUNDORDISABLED._serialized_end=18318 - _NODENOTFOUNDORDISABLEDMSG._serialized_start=18320 - _NODENOTFOUNDORDISABLEDMSG._serialized_end=18436 - _JINJALOGWARNING._serialized_start=18438 - _JINJALOGWARNING._serialized_end=18510 - _JINJALOGWARNINGMSG._serialized_start=18512 - _JINJALOGWARNINGMSG._serialized_end=18614 - _JINJALOGINFO._serialized_start=18616 - _JINJALOGINFO._serialized_end=18685 - _JINJALOGINFOMSG._serialized_start=18687 - _JINJALOGINFOMSG._serialized_end=18783 - _JINJALOGDEBUG._serialized_start=18785 - _JINJALOGDEBUG._serialized_end=18855 - _JINJALOGDEBUGMSG._serialized_start=18857 - _JINJALOGDEBUGMSG._serialized_end=18955 - _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_start=18958 - _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_end=19132 - _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_start=19135 - _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_end=19267 - _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_start=19269 - _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_end=19329 - _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_start=19332 - _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_end=19476 - _GITSPARSECHECKOUTSUBDIRECTORY._serialized_start=19478 - _GITSPARSECHECKOUTSUBDIRECTORY._serialized_end=19525 - _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_start=19528 - _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_end=19658 - _GITPROGRESSCHECKOUTREVISION._serialized_start=19660 - _GITPROGRESSCHECKOUTREVISION._serialized_end=19707 - _GITPROGRESSCHECKOUTREVISIONMSG._serialized_start=19709 - _GITPROGRESSCHECKOUTREVISIONMSG._serialized_end=19835 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_start=19837 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_end=19889 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_start=19892 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_end=20038 - _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_start=20040 - _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_end=20086 - _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_start=20089 - _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_end=20223 - _GITNOTHINGTODO._serialized_start=20225 - _GITNOTHINGTODO._serialized_end=20254 - _GITNOTHINGTODOMSG._serialized_start=20256 - _GITNOTHINGTODOMSG._serialized_end=20356 - _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_start=20358 - _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_end=20427 - _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_start=20430 - _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_end=20564 - _GITPROGRESSCHECKEDOUTAT._serialized_start=20566 - _GITPROGRESSCHECKEDOUTAT._serialized_end=20608 - _GITPROGRESSCHECKEDOUTATMSG._serialized_start=20610 - _GITPROGRESSCHECKEDOUTATMSG._serialized_end=20728 - _REGISTRYPROGRESSGETREQUEST._serialized_start=20730 - _REGISTRYPROGRESSGETREQUEST._serialized_end=20771 - _REGISTRYPROGRESSGETREQUESTMSG._serialized_start=20773 - _REGISTRYPROGRESSGETREQUESTMSG._serialized_end=20897 - _REGISTRYPROGRESSGETRESPONSE._serialized_start=20899 - _REGISTRYPROGRESSGETRESPONSE._serialized_end=20960 - _REGISTRYPROGRESSGETRESPONSEMSG._serialized_start=20962 - _REGISTRYPROGRESSGETRESPONSEMSG._serialized_end=21088 - _SELECTORREPORTINVALIDSELECTOR._serialized_start=21090 - _SELECTORREPORTINVALIDSELECTOR._serialized_end=21185 - _SELECTORREPORTINVALIDSELECTORMSG._serialized_start=21188 - _SELECTORREPORTINVALIDSELECTORMSG._serialized_end=21318 - _DEPSNOPACKAGESFOUND._serialized_start=21320 - _DEPSNOPACKAGESFOUND._serialized_end=21341 - _DEPSNOPACKAGESFOUNDMSG._serialized_start=21343 - _DEPSNOPACKAGESFOUNDMSG._serialized_end=21453 - _DEPSSTARTPACKAGEINSTALL._serialized_start=21455 - _DEPSSTARTPACKAGEINSTALL._serialized_end=21502 - _DEPSSTARTPACKAGEINSTALLMSG._serialized_start=21504 - _DEPSSTARTPACKAGEINSTALLMSG._serialized_end=21622 - _DEPSINSTALLINFO._serialized_start=21624 - _DEPSINSTALLINFO._serialized_end=21663 - _DEPSINSTALLINFOMSG._serialized_start=21665 - _DEPSINSTALLINFOMSG._serialized_end=21767 - _DEPSUPDATEAVAILABLE._serialized_start=21769 - _DEPSUPDATEAVAILABLE._serialized_end=21814 - _DEPSUPDATEAVAILABLEMSG._serialized_start=21816 - _DEPSUPDATEAVAILABLEMSG._serialized_end=21926 - _DEPSUPTODATE._serialized_start=21928 - _DEPSUPTODATE._serialized_end=21942 - _DEPSUPTODATEMSG._serialized_start=21944 - _DEPSUPTODATEMSG._serialized_end=22040 - _DEPSLISTSUBDIRECTORY._serialized_start=22042 - _DEPSLISTSUBDIRECTORY._serialized_end=22086 - _DEPSLISTSUBDIRECTORYMSG._serialized_start=22088 - _DEPSLISTSUBDIRECTORYMSG._serialized_end=22200 - _DEPSNOTIFYUPDATESAVAILABLE._serialized_start=22202 - _DEPSNOTIFYUPDATESAVAILABLE._serialized_end=22248 - _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_start=22250 - _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_end=22374 - _RETRYEXTERNALCALL._serialized_start=22376 - _RETRYEXTERNALCALL._serialized_end=22425 - _RETRYEXTERNALCALLMSG._serialized_start=22427 - _RETRYEXTERNALCALLMSG._serialized_end=22533 - _RECORDRETRYEXCEPTION._serialized_start=22535 - _RECORDRETRYEXCEPTION._serialized_end=22570 - _RECORDRETRYEXCEPTIONMSG._serialized_start=22572 - _RECORDRETRYEXCEPTIONMSG._serialized_end=22684 - _REGISTRYINDEXPROGRESSGETREQUEST._serialized_start=22686 - _REGISTRYINDEXPROGRESSGETREQUEST._serialized_end=22732 - _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_start=22735 - _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_end=22869 - _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_start=22871 - _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_end=22937 - _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_start=22940 - _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_end=23076 - _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_start=23078 - _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_end=23128 - _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_start=23131 - _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_end=23263 - _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_start=23265 - _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_end=23315 - _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_start=23318 - _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_end=23450 - _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_start=23452 - _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_end=23505 - _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_start=23508 - _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_end=23646 - _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_start=23648 - _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_end=23699 - _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_start=23702 - _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_end=23836 - _DEPSSETDOWNLOADDIRECTORY._serialized_start=23838 - _DEPSSETDOWNLOADDIRECTORY._serialized_end=23878 - _DEPSSETDOWNLOADDIRECTORYMSG._serialized_start=23880 - _DEPSSETDOWNLOADDIRECTORYMSG._serialized_end=24000 - _DEPSUNPINNED._serialized_start=24002 - _DEPSUNPINNED._serialized_end=24047 - _DEPSUNPINNEDMSG._serialized_start=24049 - _DEPSUNPINNEDMSG._serialized_end=24145 - _NONODESFORSELECTIONCRITERIA._serialized_start=24147 - _NONODESFORSELECTIONCRITERIA._serialized_end=24194 - _NONODESFORSELECTIONCRITERIAMSG._serialized_start=24196 - _NONODESFORSELECTIONCRITERIAMSG._serialized_end=24322 - _RUNNINGOPERATIONCAUGHTERROR._serialized_start=24324 - _RUNNINGOPERATIONCAUGHTERROR._serialized_end=24366 - _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_start=24368 - _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_end=24494 - _COMPILECOMPLETE._serialized_start=24496 - _COMPILECOMPLETE._serialized_end=24513 - _COMPILECOMPLETEMSG._serialized_start=24515 - _COMPILECOMPLETEMSG._serialized_end=24617 - _FRESHNESSCHECKCOMPLETE._serialized_start=24619 - _FRESHNESSCHECKCOMPLETE._serialized_end=24643 - _FRESHNESSCHECKCOMPLETEMSG._serialized_start=24645 - _FRESHNESSCHECKCOMPLETEMSG._serialized_end=24761 - _SEEDHEADER._serialized_start=24763 - _SEEDHEADER._serialized_end=24791 - _SEEDHEADERMSG._serialized_start=24793 - _SEEDHEADERMSG._serialized_end=24885 - _SQLRUNNEREXCEPTION._serialized_start=24887 - _SQLRUNNEREXCEPTION._serialized_end=24938 - _SQLRUNNEREXCEPTIONMSG._serialized_start=24940 - _SQLRUNNEREXCEPTIONMSG._serialized_end=25048 - _LOGTESTRESULT._serialized_start=25051 - _LOGTESTRESULT._serialized_end=25219 - _LOGTESTRESULTMSG._serialized_start=25221 - _LOGTESTRESULTMSG._serialized_end=25319 - _LOGSTARTLINE._serialized_start=25321 - _LOGSTARTLINE._serialized_end=25428 - _LOGSTARTLINEMSG._serialized_start=25430 - _LOGSTARTLINEMSG._serialized_end=25526 - _LOGMODELRESULT._serialized_start=25529 - _LOGMODELRESULT._serialized_end=25678 - _LOGMODELRESULTMSG._serialized_start=25680 - _LOGMODELRESULTMSG._serialized_end=25780 - _LOGSNAPSHOTRESULT._serialized_start=25783 - _LOGSNAPSHOTRESULT._serialized_end=26033 - _LOGSNAPSHOTRESULT_CFGENTRY._serialized_start=25991 - _LOGSNAPSHOTRESULT_CFGENTRY._serialized_end=26033 - _LOGSNAPSHOTRESULTMSG._serialized_start=26035 - _LOGSNAPSHOTRESULTMSG._serialized_end=26141 - _LOGSEEDRESULT._serialized_start=26144 - _LOGSEEDRESULT._serialized_end=26329 - _LOGSEEDRESULTMSG._serialized_start=26331 - _LOGSEEDRESULTMSG._serialized_end=26429 - _LOGFRESHNESSRESULT._serialized_start=26432 - _LOGFRESHNESSRESULT._serialized_end=26605 - _LOGFRESHNESSRESULTMSG._serialized_start=26607 - _LOGFRESHNESSRESULTMSG._serialized_end=26715 - _LOGCANCELLINE._serialized_start=26717 - _LOGCANCELLINE._serialized_end=26751 - _LOGCANCELLINEMSG._serialized_start=26753 - _LOGCANCELLINEMSG._serialized_end=26851 - _DEFAULTSELECTOR._serialized_start=26853 - _DEFAULTSELECTOR._serialized_end=26884 - _DEFAULTSELECTORMSG._serialized_start=26886 - _DEFAULTSELECTORMSG._serialized_end=26988 - _NODESTART._serialized_start=26990 - _NODESTART._serialized_end=27043 - _NODESTARTMSG._serialized_start=27045 - _NODESTARTMSG._serialized_end=27135 - _NODEFINISHED._serialized_start=27137 - _NODEFINISHED._serialized_end=27240 - _NODEFINISHEDMSG._serialized_start=27242 - _NODEFINISHEDMSG._serialized_end=27338 - _QUERYCANCELATIONUNSUPPORTED._serialized_start=27340 - _QUERYCANCELATIONUNSUPPORTED._serialized_end=27383 - _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_start=27385 - _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_end=27511 - _CONCURRENCYLINE._serialized_start=27513 - _CONCURRENCYLINE._serialized_end=27592 - _CONCURRENCYLINEMSG._serialized_start=27594 - _CONCURRENCYLINEMSG._serialized_end=27696 - _WRITINGINJECTEDSQLFORNODE._serialized_start=27698 - _WRITINGINJECTEDSQLFORNODE._serialized_end=27767 - _WRITINGINJECTEDSQLFORNODEMSG._serialized_start=27769 - _WRITINGINJECTEDSQLFORNODEMSG._serialized_end=27891 - _NODECOMPILING._serialized_start=27893 - _NODECOMPILING._serialized_end=27950 - _NODECOMPILINGMSG._serialized_start=27952 - _NODECOMPILINGMSG._serialized_end=28050 - _NODEEXECUTING._serialized_start=28052 - _NODEEXECUTING._serialized_end=28109 - _NODEEXECUTINGMSG._serialized_start=28111 - _NODEEXECUTINGMSG._serialized_end=28209 - _LOGHOOKSTARTLINE._serialized_start=28211 - _LOGHOOKSTARTLINE._serialized_end=28320 - _LOGHOOKSTARTLINEMSG._serialized_start=28322 - _LOGHOOKSTARTLINEMSG._serialized_end=28426 - _LOGHOOKENDLINE._serialized_start=28429 - _LOGHOOKENDLINE._serialized_end=28576 - _LOGHOOKENDLINEMSG._serialized_start=28578 - _LOGHOOKENDLINEMSG._serialized_end=28678 - _SKIPPINGDETAILS._serialized_start=28681 - _SKIPPINGDETAILS._serialized_end=28828 - _SKIPPINGDETAILSMSG._serialized_start=28830 - _SKIPPINGDETAILSMSG._serialized_end=28932 - _NOTHINGTODO._serialized_start=28934 - _NOTHINGTODO._serialized_end=28947 - _NOTHINGTODOMSG._serialized_start=28949 - _NOTHINGTODOMSG._serialized_end=29043 - _RUNNINGOPERATIONUNCAUGHTERROR._serialized_start=29045 - _RUNNINGOPERATIONUNCAUGHTERROR._serialized_end=29089 - _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_start=29092 - _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_end=29222 - _ENDRUNRESULT._serialized_start=29225 - _ENDRUNRESULT._serialized_end=29372 - _ENDRUNRESULTMSG._serialized_start=29374 - _ENDRUNRESULTMSG._serialized_end=29470 - _NONODESSELECTED._serialized_start=29472 - _NONODESSELECTED._serialized_end=29489 - _NONODESSELECTEDMSG._serialized_start=29491 - _NONODESSELECTEDMSG._serialized_end=29593 - _COMMANDCOMPLETED._serialized_start=29595 - _COMMANDCOMPLETED._serialized_end=29714 - _COMMANDCOMPLETEDMSG._serialized_start=29716 - _COMMANDCOMPLETEDMSG._serialized_end=29820 - _SHOWNODE._serialized_start=29822 - _SHOWNODE._serialized_end=29929 - _SHOWNODEMSG._serialized_start=29931 - _SHOWNODEMSG._serialized_end=30019 - _COMPILEDNODE._serialized_start=30021 - _COMPILEDNODE._serialized_end=30133 - _COMPILEDNODEMSG._serialized_start=30135 - _COMPILEDNODEMSG._serialized_end=30231 - _CATCHABLEEXCEPTIONONRUN._serialized_start=30233 - _CATCHABLEEXCEPTIONONRUN._serialized_end=30331 - _CATCHABLEEXCEPTIONONRUNMSG._serialized_start=30333 - _CATCHABLEEXCEPTIONONRUNMSG._serialized_end=30451 - _INTERNALERRORONRUN._serialized_start=30453 - _INTERNALERRORONRUN._serialized_end=30506 - _INTERNALERRORONRUNMSG._serialized_start=30508 - _INTERNALERRORONRUNMSG._serialized_end=30616 - _GENERICEXCEPTIONONRUN._serialized_start=30618 - _GENERICEXCEPTIONONRUN._serialized_end=30693 - _GENERICEXCEPTIONONRUNMSG._serialized_start=30695 - _GENERICEXCEPTIONONRUNMSG._serialized_end=30809 - _NODECONNECTIONRELEASEERROR._serialized_start=30811 - _NODECONNECTIONRELEASEERROR._serialized_end=30889 - _NODECONNECTIONRELEASEERRORMSG._serialized_start=30891 - _NODECONNECTIONRELEASEERRORMSG._serialized_end=31015 - _FOUNDSTATS._serialized_start=31017 - _FOUNDSTATS._serialized_end=31048 - _FOUNDSTATSMSG._serialized_start=31050 - _FOUNDSTATSMSG._serialized_end=31142 - _MAINKEYBOARDINTERRUPT._serialized_start=31144 - _MAINKEYBOARDINTERRUPT._serialized_end=31167 - _MAINKEYBOARDINTERRUPTMSG._serialized_start=31169 - _MAINKEYBOARDINTERRUPTMSG._serialized_end=31283 - _MAINENCOUNTEREDERROR._serialized_start=31285 - _MAINENCOUNTEREDERROR._serialized_end=31320 - _MAINENCOUNTEREDERRORMSG._serialized_start=31322 - _MAINENCOUNTEREDERRORMSG._serialized_end=31434 - _MAINSTACKTRACE._serialized_start=31436 - _MAINSTACKTRACE._serialized_end=31473 - _MAINSTACKTRACEMSG._serialized_start=31475 - _MAINSTACKTRACEMSG._serialized_end=31575 - _SYSTEMCOULDNOTWRITE._serialized_start=31577 - _SYSTEMCOULDNOTWRITE._serialized_end=31641 - _SYSTEMCOULDNOTWRITEMSG._serialized_start=31643 - _SYSTEMCOULDNOTWRITEMSG._serialized_end=31753 - _SYSTEMEXECUTINGCMD._serialized_start=31755 - _SYSTEMEXECUTINGCMD._serialized_end=31788 - _SYSTEMEXECUTINGCMDMSG._serialized_start=31790 - _SYSTEMEXECUTINGCMDMSG._serialized_end=31898 - _SYSTEMSTDOUT._serialized_start=31900 - _SYSTEMSTDOUT._serialized_end=31928 - _SYSTEMSTDOUTMSG._serialized_start=31930 - _SYSTEMSTDOUTMSG._serialized_end=32026 - _SYSTEMSTDERR._serialized_start=32028 - _SYSTEMSTDERR._serialized_end=32056 - _SYSTEMSTDERRMSG._serialized_start=32058 - _SYSTEMSTDERRMSG._serialized_end=32154 - _SYSTEMREPORTRETURNCODE._serialized_start=32156 - _SYSTEMREPORTRETURNCODE._serialized_end=32200 - _SYSTEMREPORTRETURNCODEMSG._serialized_start=32202 - _SYSTEMREPORTRETURNCODEMSG._serialized_end=32318 - _TIMINGINFOCOLLECTED._serialized_start=32320 - _TIMINGINFOCOLLECTED._serialized_end=32432 - _TIMINGINFOCOLLECTEDMSG._serialized_start=32434 - _TIMINGINFOCOLLECTEDMSG._serialized_end=32544 - _LOGDEBUGSTACKTRACE._serialized_start=32546 - _LOGDEBUGSTACKTRACE._serialized_end=32584 - _LOGDEBUGSTACKTRACEMSG._serialized_start=32586 - _LOGDEBUGSTACKTRACEMSG._serialized_end=32694 - _CHECKCLEANPATH._serialized_start=32696 - _CHECKCLEANPATH._serialized_end=32726 - _CHECKCLEANPATHMSG._serialized_start=32728 - _CHECKCLEANPATHMSG._serialized_end=32828 - _CONFIRMCLEANPATH._serialized_start=32830 - _CONFIRMCLEANPATH._serialized_end=32862 - _CONFIRMCLEANPATHMSG._serialized_start=32864 - _CONFIRMCLEANPATHMSG._serialized_end=32968 - _PROTECTEDCLEANPATH._serialized_start=32970 - _PROTECTEDCLEANPATH._serialized_end=33004 - _PROTECTEDCLEANPATHMSG._serialized_start=33006 - _PROTECTEDCLEANPATHMSG._serialized_end=33114 - _FINISHEDCLEANPATHS._serialized_start=33116 - _FINISHEDCLEANPATHS._serialized_end=33136 - _FINISHEDCLEANPATHSMSG._serialized_start=33138 - _FINISHEDCLEANPATHSMSG._serialized_end=33246 - _OPENCOMMAND._serialized_start=33248 - _OPENCOMMAND._serialized_end=33301 - _OPENCOMMANDMSG._serialized_start=33303 - _OPENCOMMANDMSG._serialized_end=33397 - _FORMATTING._serialized_start=33399 - _FORMATTING._serialized_end=33424 - _FORMATTINGMSG._serialized_start=33426 - _FORMATTINGMSG._serialized_end=33518 - _SERVINGDOCSPORT._serialized_start=33520 - _SERVINGDOCSPORT._serialized_end=33568 - _SERVINGDOCSPORTMSG._serialized_start=33570 - _SERVINGDOCSPORTMSG._serialized_end=33672 - _SERVINGDOCSACCESSINFO._serialized_start=33674 - _SERVINGDOCSACCESSINFO._serialized_end=33711 - _SERVINGDOCSACCESSINFOMSG._serialized_start=33713 - _SERVINGDOCSACCESSINFOMSG._serialized_end=33827 - _SERVINGDOCSEXITINFO._serialized_start=33829 - _SERVINGDOCSEXITINFO._serialized_end=33850 - _SERVINGDOCSEXITINFOMSG._serialized_start=33852 - _SERVINGDOCSEXITINFOMSG._serialized_end=33962 - _RUNRESULTWARNING._serialized_start=33964 - _RUNRESULTWARNING._serialized_end=34038 - _RUNRESULTWARNINGMSG._serialized_start=34040 - _RUNRESULTWARNINGMSG._serialized_end=34144 - _RUNRESULTFAILURE._serialized_start=34146 - _RUNRESULTFAILURE._serialized_end=34220 - _RUNRESULTFAILUREMSG._serialized_start=34222 - _RUNRESULTFAILUREMSG._serialized_end=34326 - _STATSLINE._serialized_start=34328 - _STATSLINE._serialized_end=34435 - _STATSLINE_STATSENTRY._serialized_start=34391 - _STATSLINE_STATSENTRY._serialized_end=34435 - _STATSLINEMSG._serialized_start=34437 - _STATSLINEMSG._serialized_end=34527 - _RUNRESULTERROR._serialized_start=34529 - _RUNRESULTERROR._serialized_end=34558 - _RUNRESULTERRORMSG._serialized_start=34560 - _RUNRESULTERRORMSG._serialized_end=34660 - _RUNRESULTERRORNOMESSAGE._serialized_start=34662 - _RUNRESULTERRORNOMESSAGE._serialized_end=34703 - _RUNRESULTERRORNOMESSAGEMSG._serialized_start=34705 - _RUNRESULTERRORNOMESSAGEMSG._serialized_end=34823 - _SQLCOMPILEDPATH._serialized_start=34825 - _SQLCOMPILEDPATH._serialized_end=34856 - _SQLCOMPILEDPATHMSG._serialized_start=34858 - _SQLCOMPILEDPATHMSG._serialized_end=34960 - _CHECKNODETESTFAILURE._serialized_start=34962 - _CHECKNODETESTFAILURE._serialized_end=35007 - _CHECKNODETESTFAILUREMSG._serialized_start=35009 - _CHECKNODETESTFAILUREMSG._serialized_end=35121 - _FIRSTRUNRESULTERROR._serialized_start=35123 - _FIRSTRUNRESULTERROR._serialized_end=35157 - _FIRSTRUNRESULTERRORMSG._serialized_start=35159 - _FIRSTRUNRESULTERRORMSG._serialized_end=35269 - _AFTERFIRSTRUNRESULTERROR._serialized_start=35271 - _AFTERFIRSTRUNRESULTERROR._serialized_end=35310 - _AFTERFIRSTRUNRESULTERRORMSG._serialized_start=35312 - _AFTERFIRSTRUNRESULTERRORMSG._serialized_end=35432 - _ENDOFRUNSUMMARY._serialized_start=35434 - _ENDOFRUNSUMMARY._serialized_end=35521 - _ENDOFRUNSUMMARYMSG._serialized_start=35523 - _ENDOFRUNSUMMARYMSG._serialized_end=35625 - _LOGSKIPBECAUSEERROR._serialized_start=35627 - _LOGSKIPBECAUSEERROR._serialized_end=35712 - _LOGSKIPBECAUSEERRORMSG._serialized_start=35714 - _LOGSKIPBECAUSEERRORMSG._serialized_end=35824 - _ENSUREGITINSTALLED._serialized_start=35826 - _ENSUREGITINSTALLED._serialized_end=35846 - _ENSUREGITINSTALLEDMSG._serialized_start=35848 - _ENSUREGITINSTALLEDMSG._serialized_end=35956 - _DEPSCREATINGLOCALSYMLINK._serialized_start=35958 - _DEPSCREATINGLOCALSYMLINK._serialized_end=35984 - _DEPSCREATINGLOCALSYMLINKMSG._serialized_start=35986 - _DEPSCREATINGLOCALSYMLINKMSG._serialized_end=36106 - _DEPSSYMLINKNOTAVAILABLE._serialized_start=36108 - _DEPSSYMLINKNOTAVAILABLE._serialized_end=36133 - _DEPSSYMLINKNOTAVAILABLEMSG._serialized_start=36135 - _DEPSSYMLINKNOTAVAILABLEMSG._serialized_end=36253 - _DISABLETRACKING._serialized_start=36255 - _DISABLETRACKING._serialized_end=36272 - _DISABLETRACKINGMSG._serialized_start=36274 - _DISABLETRACKINGMSG._serialized_end=36376 - _SENDINGEVENT._serialized_start=36378 - _SENDINGEVENT._serialized_end=36408 - _SENDINGEVENTMSG._serialized_start=36410 - _SENDINGEVENTMSG._serialized_end=36506 - _SENDEVENTFAILURE._serialized_start=36508 - _SENDEVENTFAILURE._serialized_end=36526 - _SENDEVENTFAILUREMSG._serialized_start=36528 - _SENDEVENTFAILUREMSG._serialized_end=36632 - _FLUSHEVENTS._serialized_start=36634 - _FLUSHEVENTS._serialized_end=36647 - _FLUSHEVENTSMSG._serialized_start=36649 - _FLUSHEVENTSMSG._serialized_end=36743 - _FLUSHEVENTSFAILURE._serialized_start=36745 - _FLUSHEVENTSFAILURE._serialized_end=36765 - _FLUSHEVENTSFAILUREMSG._serialized_start=36767 - _FLUSHEVENTSFAILUREMSG._serialized_end=36875 - _TRACKINGINITIALIZEFAILURE._serialized_start=36877 - _TRACKINGINITIALIZEFAILURE._serialized_end=36922 - _TRACKINGINITIALIZEFAILUREMSG._serialized_start=36924 - _TRACKINGINITIALIZEFAILUREMSG._serialized_end=37046 - _RUNRESULTWARNINGMESSAGE._serialized_start=37048 - _RUNRESULTWARNINGMESSAGE._serialized_end=37086 - _RUNRESULTWARNINGMESSAGEMSG._serialized_start=37088 - _RUNRESULTWARNINGMESSAGEMSG._serialized_end=37206 - _DEBUGCMDOUT._serialized_start=37208 - _DEBUGCMDOUT._serialized_end=37234 - _DEBUGCMDOUTMSG._serialized_start=37236 - _DEBUGCMDOUTMSG._serialized_end=37330 - _DEBUGCMDRESULT._serialized_start=37332 - _DEBUGCMDRESULT._serialized_end=37361 - _DEBUGCMDRESULTMSG._serialized_start=37363 - _DEBUGCMDRESULTMSG._serialized_end=37463 - _LISTCMDOUT._serialized_start=37465 - _LISTCMDOUT._serialized_end=37490 - _LISTCMDOUTMSG._serialized_start=37492 - _LISTCMDOUTMSG._serialized_end=37584 - _NOTE._serialized_start=37586 - _NOTE._serialized_end=37605 - _NOTEMSG._serialized_start=37607 - _NOTEMSG._serialized_end=37687 + _globals['_EVENTINFO']._serialized_start=92 + _globals['_EVENTINFO']._serialized_end=365 + _globals['_EVENTINFO_EXTRAENTRY']._serialized_start=321 + _globals['_EVENTINFO_EXTRAENTRY']._serialized_end=365 + _globals['_TIMINGINFOMSG']._serialized_start=367 + _globals['_TIMINGINFOMSG']._serialized_end=494 + _globals['_NODERELATION']._serialized_start=496 + _globals['_NODERELATION']._serialized_end=582 + _globals['_NODEINFO']._serialized_start=585 + _globals['_NODEINFO']._serialized_end=858 + _globals['_RUNRESULTMSG']._serialized_start=861 + _globals['_RUNRESULTMSG']._serialized_end=1070 + _globals['_REFERENCEKEYMSG']._serialized_start=1072 + _globals['_REFERENCEKEYMSG']._serialized_end=1143 + _globals['_GENERICMESSAGE']._serialized_start=1145 + _globals['_GENERICMESSAGE']._serialized_end=1199 + _globals['_MAINREPORTVERSION']._serialized_start=1201 + _globals['_MAINREPORTVERSION']._serialized_end=1258 + _globals['_MAINREPORTVERSIONMSG']._serialized_start=1260 + _globals['_MAINREPORTVERSIONMSG']._serialized_end=1366 + _globals['_MAINREPORTARGS']._serialized_start=1368 + _globals['_MAINREPORTARGS']._serialized_end=1482 + _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_start=1439 + _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_end=1482 + _globals['_MAINREPORTARGSMSG']._serialized_start=1484 + _globals['_MAINREPORTARGSMSG']._serialized_end=1584 + _globals['_MAINTRACKINGUSERSTATE']._serialized_start=1586 + _globals['_MAINTRACKINGUSERSTATE']._serialized_end=1629 + _globals['_MAINTRACKINGUSERSTATEMSG']._serialized_start=1631 + _globals['_MAINTRACKINGUSERSTATEMSG']._serialized_end=1745 + _globals['_MERGEDFROMSTATE']._serialized_start=1747 + _globals['_MERGEDFROMSTATE']._serialized_end=1800 + _globals['_MERGEDFROMSTATEMSG']._serialized_start=1802 + _globals['_MERGEDFROMSTATEMSG']._serialized_end=1904 + _globals['_MISSINGPROFILETARGET']._serialized_start=1906 + _globals['_MISSINGPROFILETARGET']._serialized_end=1971 + _globals['_MISSINGPROFILETARGETMSG']._serialized_start=1973 + _globals['_MISSINGPROFILETARGETMSG']._serialized_end=2085 + _globals['_INVALIDOPTIONYAML']._serialized_start=2087 + _globals['_INVALIDOPTIONYAML']._serialized_end=2127 + _globals['_INVALIDOPTIONYAMLMSG']._serialized_start=2129 + _globals['_INVALIDOPTIONYAMLMSG']._serialized_end=2235 + _globals['_LOGDBTPROJECTERROR']._serialized_start=2237 + _globals['_LOGDBTPROJECTERROR']._serialized_end=2270 + _globals['_LOGDBTPROJECTERRORMSG']._serialized_start=2272 + _globals['_LOGDBTPROJECTERRORMSG']._serialized_end=2380 + _globals['_LOGDBTPROFILEERROR']._serialized_start=2382 + _globals['_LOGDBTPROFILEERROR']._serialized_end=2433 + _globals['_LOGDBTPROFILEERRORMSG']._serialized_start=2435 + _globals['_LOGDBTPROFILEERRORMSG']._serialized_end=2543 + _globals['_STARTERPROJECTPATH']._serialized_start=2545 + _globals['_STARTERPROJECTPATH']._serialized_end=2578 + _globals['_STARTERPROJECTPATHMSG']._serialized_start=2580 + _globals['_STARTERPROJECTPATHMSG']._serialized_end=2688 + _globals['_CONFIGFOLDERDIRECTORY']._serialized_start=2690 + _globals['_CONFIGFOLDERDIRECTORY']._serialized_end=2726 + _globals['_CONFIGFOLDERDIRECTORYMSG']._serialized_start=2728 + _globals['_CONFIGFOLDERDIRECTORYMSG']._serialized_end=2842 + _globals['_NOSAMPLEPROFILEFOUND']._serialized_start=2844 + _globals['_NOSAMPLEPROFILEFOUND']._serialized_end=2883 + _globals['_NOSAMPLEPROFILEFOUNDMSG']._serialized_start=2885 + _globals['_NOSAMPLEPROFILEFOUNDMSG']._serialized_end=2997 + _globals['_PROFILEWRITTENWITHSAMPLE']._serialized_start=2999 + _globals['_PROFILEWRITTENWITHSAMPLE']._serialized_end=3053 + _globals['_PROFILEWRITTENWITHSAMPLEMSG']._serialized_start=3055 + _globals['_PROFILEWRITTENWITHSAMPLEMSG']._serialized_end=3175 + _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAML']._serialized_start=3177 + _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAML']._serialized_end=3243 + _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG']._serialized_start=3246 + _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG']._serialized_end=3390 + _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAML']._serialized_start=3392 + _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAML']._serialized_end=3459 + _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG']._serialized_start=3462 + _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG']._serialized_end=3608 + _globals['_SETTINGUPPROFILE']._serialized_start=3610 + _globals['_SETTINGUPPROFILE']._serialized_end=3628 + _globals['_SETTINGUPPROFILEMSG']._serialized_start=3630 + _globals['_SETTINGUPPROFILEMSG']._serialized_end=3734 + _globals['_INVALIDPROFILETEMPLATEYAML']._serialized_start=3736 + _globals['_INVALIDPROFILETEMPLATEYAML']._serialized_end=3764 + _globals['_INVALIDPROFILETEMPLATEYAMLMSG']._serialized_start=3766 + _globals['_INVALIDPROFILETEMPLATEYAMLMSG']._serialized_end=3890 + _globals['_PROJECTNAMEALREADYEXISTS']._serialized_start=3892 + _globals['_PROJECTNAMEALREADYEXISTS']._serialized_end=3932 + _globals['_PROJECTNAMEALREADYEXISTSMSG']._serialized_start=3934 + _globals['_PROJECTNAMEALREADYEXISTSMSG']._serialized_end=4054 + _globals['_PROJECTCREATED']._serialized_start=4056 + _globals['_PROJECTCREATED']._serialized_end=4131 + _globals['_PROJECTCREATEDMSG']._serialized_start=4133 + _globals['_PROJECTCREATEDMSG']._serialized_end=4233 + _globals['_PACKAGEREDIRECTDEPRECATION']._serialized_start=4235 + _globals['_PACKAGEREDIRECTDEPRECATION']._serialized_end=4299 + _globals['_PACKAGEREDIRECTDEPRECATIONMSG']._serialized_start=4301 + _globals['_PACKAGEREDIRECTDEPRECATIONMSG']._serialized_end=4425 + _globals['_PACKAGEINSTALLPATHDEPRECATION']._serialized_start=4427 + _globals['_PACKAGEINSTALLPATHDEPRECATION']._serialized_end=4458 + _globals['_PACKAGEINSTALLPATHDEPRECATIONMSG']._serialized_start=4461 + _globals['_PACKAGEINSTALLPATHDEPRECATIONMSG']._serialized_end=4591 + _globals['_CONFIGSOURCEPATHDEPRECATION']._serialized_start=4593 + _globals['_CONFIGSOURCEPATHDEPRECATION']._serialized_end=4665 + _globals['_CONFIGSOURCEPATHDEPRECATIONMSG']._serialized_start=4667 + _globals['_CONFIGSOURCEPATHDEPRECATIONMSG']._serialized_end=4793 + _globals['_CONFIGDATAPATHDEPRECATION']._serialized_start=4795 + _globals['_CONFIGDATAPATHDEPRECATION']._serialized_end=4865 + _globals['_CONFIGDATAPATHDEPRECATIONMSG']._serialized_start=4867 + _globals['_CONFIGDATAPATHDEPRECATIONMSG']._serialized_end=4989 + _globals['_ADAPTERDEPRECATIONWARNING']._serialized_start=4991 + _globals['_ADAPTERDEPRECATIONWARNING']._serialized_end=5054 + _globals['_ADAPTERDEPRECATIONWARNINGMSG']._serialized_start=5056 + _globals['_ADAPTERDEPRECATIONWARNINGMSG']._serialized_end=5178 + _globals['_METRICATTRIBUTESRENAMED']._serialized_start=5180 + _globals['_METRICATTRIBUTESRENAMED']._serialized_end=5226 + _globals['_METRICATTRIBUTESRENAMEDMSG']._serialized_start=5228 + _globals['_METRICATTRIBUTESRENAMEDMSG']._serialized_end=5346 + _globals['_EXPOSURENAMEDEPRECATION']._serialized_start=5348 + _globals['_EXPOSURENAMEDEPRECATION']._serialized_end=5391 + _globals['_EXPOSURENAMEDEPRECATIONMSG']._serialized_start=5393 + _globals['_EXPOSURENAMEDEPRECATIONMSG']._serialized_end=5511 + _globals['_INTERNALDEPRECATION']._serialized_start=5513 + _globals['_INTERNALDEPRECATION']._serialized_end=5607 + _globals['_INTERNALDEPRECATIONMSG']._serialized_start=5609 + _globals['_INTERNALDEPRECATIONMSG']._serialized_end=5719 + _globals['_ENVIRONMENTVARIABLERENAMED']._serialized_start=5721 + _globals['_ENVIRONMENTVARIABLERENAMED']._serialized_end=5785 + _globals['_ENVIRONMENTVARIABLERENAMEDMSG']._serialized_start=5787 + _globals['_ENVIRONMENTVARIABLERENAMEDMSG']._serialized_end=5911 + _globals['_CONFIGLOGPATHDEPRECATION']._serialized_start=5913 + _globals['_CONFIGLOGPATHDEPRECATION']._serialized_end=5964 + _globals['_CONFIGLOGPATHDEPRECATIONMSG']._serialized_start=5966 + _globals['_CONFIGLOGPATHDEPRECATIONMSG']._serialized_end=6086 + _globals['_CONFIGTARGETPATHDEPRECATION']._serialized_start=6088 + _globals['_CONFIGTARGETPATHDEPRECATION']._serialized_end=6142 + _globals['_CONFIGTARGETPATHDEPRECATIONMSG']._serialized_start=6144 + _globals['_CONFIGTARGETPATHDEPRECATIONMSG']._serialized_end=6270 + _globals['_COLLECTFRESHNESSRETURNSIGNATURE']._serialized_start=6272 + _globals['_COLLECTFRESHNESSRETURNSIGNATURE']._serialized_end=6305 + _globals['_COLLECTFRESHNESSRETURNSIGNATUREMSG']._serialized_start=6308 + _globals['_COLLECTFRESHNESSRETURNSIGNATUREMSG']._serialized_end=6442 + _globals['_ADAPTEREVENTDEBUG']._serialized_start=6445 + _globals['_ADAPTEREVENTDEBUG']._serialized_end=6580 + _globals['_ADAPTEREVENTDEBUGMSG']._serialized_start=6582 + _globals['_ADAPTEREVENTDEBUGMSG']._serialized_end=6688 + _globals['_ADAPTEREVENTINFO']._serialized_start=6691 + _globals['_ADAPTEREVENTINFO']._serialized_end=6825 + _globals['_ADAPTEREVENTINFOMSG']._serialized_start=6827 + _globals['_ADAPTEREVENTINFOMSG']._serialized_end=6931 + _globals['_ADAPTEREVENTWARNING']._serialized_start=6934 + _globals['_ADAPTEREVENTWARNING']._serialized_end=7071 + _globals['_ADAPTEREVENTWARNINGMSG']._serialized_start=7073 + _globals['_ADAPTEREVENTWARNINGMSG']._serialized_end=7183 + _globals['_ADAPTEREVENTERROR']._serialized_start=7186 + _globals['_ADAPTEREVENTERROR']._serialized_end=7339 + _globals['_ADAPTEREVENTERRORMSG']._serialized_start=7341 + _globals['_ADAPTEREVENTERRORMSG']._serialized_end=7447 + _globals['_NEWCONNECTION']._serialized_start=7449 + _globals['_NEWCONNECTION']._serialized_end=7544 + _globals['_NEWCONNECTIONMSG']._serialized_start=7546 + _globals['_NEWCONNECTIONMSG']._serialized_end=7644 + _globals['_CONNECTIONREUSED']._serialized_start=7646 + _globals['_CONNECTIONREUSED']._serialized_end=7707 + _globals['_CONNECTIONREUSEDMSG']._serialized_start=7709 + _globals['_CONNECTIONREUSEDMSG']._serialized_end=7813 + _globals['_CONNECTIONLEFTOPENINCLEANUP']._serialized_start=7815 + _globals['_CONNECTIONLEFTOPENINCLEANUP']._serialized_end=7863 + _globals['_CONNECTIONLEFTOPENINCLEANUPMSG']._serialized_start=7865 + _globals['_CONNECTIONLEFTOPENINCLEANUPMSG']._serialized_end=7991 + _globals['_CONNECTIONCLOSEDINCLEANUP']._serialized_start=7993 + _globals['_CONNECTIONCLOSEDINCLEANUP']._serialized_end=8039 + _globals['_CONNECTIONCLOSEDINCLEANUPMSG']._serialized_start=8041 + _globals['_CONNECTIONCLOSEDINCLEANUPMSG']._serialized_end=8163 + _globals['_ROLLBACKFAILED']._serialized_start=8165 + _globals['_ROLLBACKFAILED']._serialized_end=8260 + _globals['_ROLLBACKFAILEDMSG']._serialized_start=8262 + _globals['_ROLLBACKFAILEDMSG']._serialized_end=8362 + _globals['_CONNECTIONCLOSED']._serialized_start=8364 + _globals['_CONNECTIONCLOSED']._serialized_end=8443 + _globals['_CONNECTIONCLOSEDMSG']._serialized_start=8445 + _globals['_CONNECTIONCLOSEDMSG']._serialized_end=8549 + _globals['_CONNECTIONLEFTOPEN']._serialized_start=8551 + _globals['_CONNECTIONLEFTOPEN']._serialized_end=8632 + _globals['_CONNECTIONLEFTOPENMSG']._serialized_start=8634 + _globals['_CONNECTIONLEFTOPENMSG']._serialized_end=8742 + _globals['_ROLLBACK']._serialized_start=8744 + _globals['_ROLLBACK']._serialized_end=8815 + _globals['_ROLLBACKMSG']._serialized_start=8817 + _globals['_ROLLBACKMSG']._serialized_end=8905 + _globals['_CACHEMISS']._serialized_start=8907 + _globals['_CACHEMISS']._serialized_end=8971 + _globals['_CACHEMISSMSG']._serialized_start=8973 + _globals['_CACHEMISSMSG']._serialized_end=9063 + _globals['_LISTRELATIONS']._serialized_start=9065 + _globals['_LISTRELATIONS']._serialized_end=9163 + _globals['_LISTRELATIONSMSG']._serialized_start=9165 + _globals['_LISTRELATIONSMSG']._serialized_end=9263 + _globals['_CONNECTIONUSED']._serialized_start=9265 + _globals['_CONNECTIONUSED']._serialized_end=9361 + _globals['_CONNECTIONUSEDMSG']._serialized_start=9363 + _globals['_CONNECTIONUSEDMSG']._serialized_end=9463 + _globals['_SQLQUERY']._serialized_start=9465 + _globals['_SQLQUERY']._serialized_end=9549 + _globals['_SQLQUERYMSG']._serialized_start=9551 + _globals['_SQLQUERYMSG']._serialized_end=9639 + _globals['_SQLQUERYSTATUS']._serialized_start=9641 + _globals['_SQLQUERYSTATUS']._serialized_end=9732 + _globals['_SQLQUERYSTATUSMSG']._serialized_start=9734 + _globals['_SQLQUERYSTATUSMSG']._serialized_end=9834 + _globals['_SQLCOMMIT']._serialized_start=9836 + _globals['_SQLCOMMIT']._serialized_end=9908 + _globals['_SQLCOMMITMSG']._serialized_start=9910 + _globals['_SQLCOMMITMSG']._serialized_end=10000 + _globals['_COLTYPECHANGE']._serialized_start=10002 + _globals['_COLTYPECHANGE']._serialized_end=10099 + _globals['_COLTYPECHANGEMSG']._serialized_start=10101 + _globals['_COLTYPECHANGEMSG']._serialized_end=10199 + _globals['_SCHEMACREATION']._serialized_start=10201 + _globals['_SCHEMACREATION']._serialized_end=10265 + _globals['_SCHEMACREATIONMSG']._serialized_start=10267 + _globals['_SCHEMACREATIONMSG']._serialized_end=10367 + _globals['_SCHEMADROP']._serialized_start=10369 + _globals['_SCHEMADROP']._serialized_end=10429 + _globals['_SCHEMADROPMSG']._serialized_start=10431 + _globals['_SCHEMADROPMSG']._serialized_end=10523 + _globals['_CACHEACTION']._serialized_start=10526 + _globals['_CACHEACTION']._serialized_end=10748 + _globals['_CACHEACTIONMSG']._serialized_start=10750 + _globals['_CACHEACTIONMSG']._serialized_end=10844 + _globals['_CACHEDUMPGRAPH']._serialized_start=10847 + _globals['_CACHEDUMPGRAPH']._serialized_end=10999 + _globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_start=10956 + _globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_end=10999 + _globals['_CACHEDUMPGRAPHMSG']._serialized_start=11001 + _globals['_CACHEDUMPGRAPHMSG']._serialized_end=11101 + _globals['_ADAPTERREGISTERED']._serialized_start=11103 + _globals['_ADAPTERREGISTERED']._serialized_end=11169 + _globals['_ADAPTERREGISTEREDMSG']._serialized_start=11171 + _globals['_ADAPTERREGISTEREDMSG']._serialized_end=11277 + _globals['_ADAPTERIMPORTERROR']._serialized_start=11279 + _globals['_ADAPTERIMPORTERROR']._serialized_end=11312 + _globals['_ADAPTERIMPORTERRORMSG']._serialized_start=11314 + _globals['_ADAPTERIMPORTERRORMSG']._serialized_end=11422 + _globals['_PLUGINLOADERROR']._serialized_start=11424 + _globals['_PLUGINLOADERROR']._serialized_end=11459 + _globals['_PLUGINLOADERRORMSG']._serialized_start=11461 + _globals['_PLUGINLOADERRORMSG']._serialized_end=11563 + _globals['_NEWCONNECTIONOPENING']._serialized_start=11565 + _globals['_NEWCONNECTIONOPENING']._serialized_end=11655 + _globals['_NEWCONNECTIONOPENINGMSG']._serialized_start=11657 + _globals['_NEWCONNECTIONOPENINGMSG']._serialized_end=11769 + _globals['_CODEEXECUTION']._serialized_start=11771 + _globals['_CODEEXECUTION']._serialized_end=11827 + _globals['_CODEEXECUTIONMSG']._serialized_start=11829 + _globals['_CODEEXECUTIONMSG']._serialized_end=11927 + _globals['_CODEEXECUTIONSTATUS']._serialized_start=11929 + _globals['_CODEEXECUTIONSTATUS']._serialized_end=11983 + _globals['_CODEEXECUTIONSTATUSMSG']._serialized_start=11985 + _globals['_CODEEXECUTIONSTATUSMSG']._serialized_end=12095 + _globals['_CATALOGGENERATIONERROR']._serialized_start=12097 + _globals['_CATALOGGENERATIONERROR']._serialized_end=12134 + _globals['_CATALOGGENERATIONERRORMSG']._serialized_start=12136 + _globals['_CATALOGGENERATIONERRORMSG']._serialized_end=12252 + _globals['_WRITECATALOGFAILURE']._serialized_start=12254 + _globals['_WRITECATALOGFAILURE']._serialized_end=12299 + _globals['_WRITECATALOGFAILUREMSG']._serialized_start=12301 + _globals['_WRITECATALOGFAILUREMSG']._serialized_end=12411 + _globals['_CATALOGWRITTEN']._serialized_start=12413 + _globals['_CATALOGWRITTEN']._serialized_end=12443 + _globals['_CATALOGWRITTENMSG']._serialized_start=12445 + _globals['_CATALOGWRITTENMSG']._serialized_end=12545 + _globals['_CANNOTGENERATEDOCS']._serialized_start=12547 + _globals['_CANNOTGENERATEDOCS']._serialized_end=12567 + _globals['_CANNOTGENERATEDOCSMSG']._serialized_start=12569 + _globals['_CANNOTGENERATEDOCSMSG']._serialized_end=12677 + _globals['_BUILDINGCATALOG']._serialized_start=12679 + _globals['_BUILDINGCATALOG']._serialized_end=12696 + _globals['_BUILDINGCATALOGMSG']._serialized_start=12698 + _globals['_BUILDINGCATALOGMSG']._serialized_end=12800 + _globals['_DATABASEERRORRUNNINGHOOK']._serialized_start=12802 + _globals['_DATABASEERRORRUNNINGHOOK']._serialized_end=12847 + _globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_start=12849 + _globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_end=12969 + _globals['_HOOKSRUNNING']._serialized_start=12971 + _globals['_HOOKSRUNNING']._serialized_end=13023 + _globals['_HOOKSRUNNINGMSG']._serialized_start=13025 + _globals['_HOOKSRUNNINGMSG']._serialized_end=13121 + _globals['_FINISHEDRUNNINGSTATS']._serialized_start=13123 + _globals['_FINISHEDRUNNINGSTATS']._serialized_end=13207 + _globals['_FINISHEDRUNNINGSTATSMSG']._serialized_start=13209 + _globals['_FINISHEDRUNNINGSTATSMSG']._serialized_end=13321 + _globals['_CONSTRAINTNOTENFORCED']._serialized_start=13323 + _globals['_CONSTRAINTNOTENFORCED']._serialized_end=13383 + _globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_start=13385 + _globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_end=13499 + _globals['_CONSTRAINTNOTSUPPORTED']._serialized_start=13501 + _globals['_CONSTRAINTNOTSUPPORTED']._serialized_end=13562 + _globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_start=13564 + _globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_end=13680 + _globals['_INPUTFILEDIFFERROR']._serialized_start=13682 + _globals['_INPUTFILEDIFFERROR']._serialized_end=13737 + _globals['_INPUTFILEDIFFERRORMSG']._serialized_start=13739 + _globals['_INPUTFILEDIFFERRORMSG']._serialized_end=13847 + _globals['_PUBLICATIONARTIFACTCHANGED']._serialized_start=13849 + _globals['_PUBLICATIONARTIFACTCHANGED']._serialized_end=13965 + _globals['_PUBLICATIONARTIFACTCHANGEDMSG']._serialized_start=13967 + _globals['_PUBLICATIONARTIFACTCHANGEDMSG']._serialized_end=14091 + _globals['_INVALIDVALUEFORFIELD']._serialized_start=14093 + _globals['_INVALIDVALUEFORFIELD']._serialized_end=14156 + _globals['_INVALIDVALUEFORFIELDMSG']._serialized_start=14158 + _globals['_INVALIDVALUEFORFIELDMSG']._serialized_end=14270 + _globals['_VALIDATIONWARNING']._serialized_start=14272 + _globals['_VALIDATIONWARNING']._serialized_end=14353 + _globals['_VALIDATIONWARNINGMSG']._serialized_start=14355 + _globals['_VALIDATIONWARNINGMSG']._serialized_end=14461 + _globals['_PARSEPERFINFOPATH']._serialized_start=14463 + _globals['_PARSEPERFINFOPATH']._serialized_end=14496 + _globals['_PARSEPERFINFOPATHMSG']._serialized_start=14498 + _globals['_PARSEPERFINFOPATHMSG']._serialized_end=14604 + _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_start=14606 + _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_end=14655 + _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_start=14658 + _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_end=14796 + _globals['_PARTIALPARSINGERROR']._serialized_start=14799 + _globals['_PARTIALPARSINGERROR']._serialized_end=14933 + _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_start=14887 + _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_end=14933 + _globals['_PARTIALPARSINGERRORMSG']._serialized_start=14935 + _globals['_PARTIALPARSINGERRORMSG']._serialized_end=15045 + _globals['_PARTIALPARSINGSKIPPARSING']._serialized_start=15047 + _globals['_PARTIALPARSINGSKIPPARSING']._serialized_end=15074 + _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_start=15076 + _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_end=15198 + _globals['_UNABLETOPARTIALPARSE']._serialized_start=15200 + _globals['_UNABLETOPARTIALPARSE']._serialized_end=15238 + _globals['_UNABLETOPARTIALPARSEMSG']._serialized_start=15240 + _globals['_UNABLETOPARTIALPARSEMSG']._serialized_end=15352 + _globals['_STATECHECKVARSHASH']._serialized_start=15354 + _globals['_STATECHECKVARSHASH']._serialized_end=15456 + _globals['_STATECHECKVARSHASHMSG']._serialized_start=15458 + _globals['_STATECHECKVARSHASHMSG']._serialized_end=15566 + _globals['_PARTIALPARSINGNOTENABLED']._serialized_start=15568 + _globals['_PARTIALPARSINGNOTENABLED']._serialized_end=15594 + _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_start=15596 + _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_end=15716 + _globals['_PARSEDFILELOADFAILED']._serialized_start=15718 + _globals['_PARSEDFILELOADFAILED']._serialized_end=15785 + _globals['_PARSEDFILELOADFAILEDMSG']._serialized_start=15787 + _globals['_PARSEDFILELOADFAILEDMSG']._serialized_end=15899 + _globals['_PARTIALPARSINGENABLED']._serialized_start=15901 + _globals['_PARTIALPARSINGENABLED']._serialized_end=15973 + _globals['_PARTIALPARSINGENABLEDMSG']._serialized_start=15975 + _globals['_PARTIALPARSINGENABLEDMSG']._serialized_end=16089 + _globals['_PARTIALPARSINGFILE']._serialized_start=16091 + _globals['_PARTIALPARSINGFILE']._serialized_end=16147 + _globals['_PARTIALPARSINGFILEMSG']._serialized_start=16149 + _globals['_PARTIALPARSINGFILEMSG']._serialized_end=16257 + _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_start=16260 + _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_end=16435 + _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_start=16438 + _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_end=16572 + _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_start=16574 + _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_end=16629 + _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_start=16631 + _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_end=16751 + _globals['_SEEDINCREASED']._serialized_start=16753 + _globals['_SEEDINCREASED']._serialized_end=16804 + _globals['_SEEDINCREASEDMSG']._serialized_start=16806 + _globals['_SEEDINCREASEDMSG']._serialized_end=16904 + _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_start=16906 + _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_end=16968 + _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_start=16970 + _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_end=17090 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_start=17092 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_end=17160 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_start=17163 + _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_end=17295 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_start=17297 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_end=17389 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_start=17392 + _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_end=17526 + _globals['_UNUSEDTABLES']._serialized_start=17528 + _globals['_UNUSEDTABLES']._serialized_end=17565 + _globals['_UNUSEDTABLESMSG']._serialized_start=17567 + _globals['_UNUSEDTABLESMSG']._serialized_end=17663 + _globals['_WRONGRESOURCESCHEMAFILE']._serialized_start=17666 + _globals['_WRONGRESOURCESCHEMAFILE']._serialized_end=17801 + _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_start=17803 + _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_end=17921 + _globals['_NONODEFORYAMLKEY']._serialized_start=17923 + _globals['_NONODEFORYAMLKEY']._serialized_end=17998 + _globals['_NONODEFORYAMLKEYMSG']._serialized_start=18000 + _globals['_NONODEFORYAMLKEYMSG']._serialized_end=18104 + _globals['_MACRONOTFOUNDFORPATCH']._serialized_start=18106 + _globals['_MACRONOTFOUNDFORPATCH']._serialized_end=18149 + _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_start=18151 + _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_end=18265 + _globals['_NODENOTFOUNDORDISABLED']._serialized_start=18268 + _globals['_NODENOTFOUNDORDISABLED']._serialized_end=18452 + _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_start=18454 + _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_end=18570 + _globals['_JINJALOGWARNING']._serialized_start=18572 + _globals['_JINJALOGWARNING']._serialized_end=18644 + _globals['_JINJALOGWARNINGMSG']._serialized_start=18646 + _globals['_JINJALOGWARNINGMSG']._serialized_end=18748 + _globals['_JINJALOGINFO']._serialized_start=18750 + _globals['_JINJALOGINFO']._serialized_end=18819 + _globals['_JINJALOGINFOMSG']._serialized_start=18821 + _globals['_JINJALOGINFOMSG']._serialized_end=18917 + _globals['_JINJALOGDEBUG']._serialized_start=18919 + _globals['_JINJALOGDEBUG']._serialized_end=18989 + _globals['_JINJALOGDEBUGMSG']._serialized_start=18991 + _globals['_JINJALOGDEBUGMSG']._serialized_end=19089 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_start=19092 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_end=19266 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_start=19269 + _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_end=19401 + _globals['_DEPRECATEDMODEL']._serialized_start=19403 + _globals['_DEPRECATEDMODEL']._serialized_end=19489 + _globals['_DEPRECATEDMODELMSG']._serialized_start=19491 + _globals['_DEPRECATEDMODELMSG']._serialized_end=19593 + _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_start=19596 + _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_end=19794 + _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_start=19797 + _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_end=19925 + _globals['_DEPRECATEDREFERENCE']._serialized_start=19928 + _globals['_DEPRECATEDREFERENCE']._serialized_end=20117 + _globals['_DEPRECATEDREFERENCEMSG']._serialized_start=20119 + _globals['_DEPRECATEDREFERENCEMSG']._serialized_end=20229 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_start=20231 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_end=20291 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_start=20294 + _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_end=20438 + _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_start=20440 + _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_end=20487 + _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_start=20490 + _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_end=20620 + _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_start=20622 + _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_end=20669 + _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_start=20671 + _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_end=20797 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_start=20799 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_end=20851 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_start=20854 + _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_end=21000 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_start=21002 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_end=21048 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_start=21051 + _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_end=21185 + _globals['_GITNOTHINGTODO']._serialized_start=21187 + _globals['_GITNOTHINGTODO']._serialized_end=21216 + _globals['_GITNOTHINGTODOMSG']._serialized_start=21218 + _globals['_GITNOTHINGTODOMSG']._serialized_end=21318 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_start=21320 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_end=21389 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_start=21392 + _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_end=21526 + _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_start=21528 + _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_end=21570 + _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_start=21572 + _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_end=21690 + _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_start=21692 + _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_end=21733 + _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_start=21735 + _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_end=21859 + _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_start=21861 + _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_end=21922 + _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_start=21924 + _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_end=22050 + _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_start=22052 + _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_end=22147 + _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_start=22150 + _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_end=22280 + _globals['_DEPSNOPACKAGESFOUND']._serialized_start=22282 + _globals['_DEPSNOPACKAGESFOUND']._serialized_end=22303 + _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_start=22305 + _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_end=22415 + _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_start=22417 + _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_end=22464 + _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_start=22466 + _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_end=22584 + _globals['_DEPSINSTALLINFO']._serialized_start=22586 + _globals['_DEPSINSTALLINFO']._serialized_end=22625 + _globals['_DEPSINSTALLINFOMSG']._serialized_start=22627 + _globals['_DEPSINSTALLINFOMSG']._serialized_end=22729 + _globals['_DEPSUPDATEAVAILABLE']._serialized_start=22731 + _globals['_DEPSUPDATEAVAILABLE']._serialized_end=22776 + _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_start=22778 + _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_end=22888 + _globals['_DEPSUPTODATE']._serialized_start=22890 + _globals['_DEPSUPTODATE']._serialized_end=22904 + _globals['_DEPSUPTODATEMSG']._serialized_start=22906 + _globals['_DEPSUPTODATEMSG']._serialized_end=23002 + _globals['_DEPSLISTSUBDIRECTORY']._serialized_start=23004 + _globals['_DEPSLISTSUBDIRECTORY']._serialized_end=23048 + _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_start=23050 + _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_end=23162 + _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_start=23164 + _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_end=23210 + _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_start=23212 + _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_end=23336 + _globals['_RETRYEXTERNALCALL']._serialized_start=23338 + _globals['_RETRYEXTERNALCALL']._serialized_end=23387 + _globals['_RETRYEXTERNALCALLMSG']._serialized_start=23389 + _globals['_RETRYEXTERNALCALLMSG']._serialized_end=23495 + _globals['_RECORDRETRYEXCEPTION']._serialized_start=23497 + _globals['_RECORDRETRYEXCEPTION']._serialized_end=23532 + _globals['_RECORDRETRYEXCEPTIONMSG']._serialized_start=23534 + _globals['_RECORDRETRYEXCEPTIONMSG']._serialized_end=23646 + _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_start=23648 + _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_end=23694 + _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_start=23697 + _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_end=23831 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_start=23833 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_end=23899 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_start=23902 + _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_end=24038 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_start=24040 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_end=24090 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_start=24093 + _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_end=24225 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_start=24227 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_end=24277 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_start=24280 + _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_end=24412 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_start=24414 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_end=24467 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_start=24470 + _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_end=24608 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_start=24610 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_end=24661 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_start=24664 + _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_end=24798 + _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_start=24800 + _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_end=24840 + _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_start=24842 + _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_end=24962 + _globals['_DEPSUNPINNED']._serialized_start=24964 + _globals['_DEPSUNPINNED']._serialized_end=25009 + _globals['_DEPSUNPINNEDMSG']._serialized_start=25011 + _globals['_DEPSUNPINNEDMSG']._serialized_end=25107 + _globals['_NONODESFORSELECTIONCRITERIA']._serialized_start=25109 + _globals['_NONODESFORSELECTIONCRITERIA']._serialized_end=25156 + _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_start=25158 + _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_end=25284 + _globals['_PUBLICATIONARTIFACTAVAILABLE']._serialized_start=25286 + _globals['_PUBLICATIONARTIFACTAVAILABLE']._serialized_end=25363 + _globals['_PUBLICATIONARTIFACTAVAILABLEMSG']._serialized_start=25366 + _globals['_PUBLICATIONARTIFACTAVAILABLEMSG']._serialized_end=25494 + _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_start=25496 + _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_end=25538 + _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_start=25540 + _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_end=25666 + _globals['_COMPILECOMPLETE']._serialized_start=25668 + _globals['_COMPILECOMPLETE']._serialized_end=25685 + _globals['_COMPILECOMPLETEMSG']._serialized_start=25687 + _globals['_COMPILECOMPLETEMSG']._serialized_end=25789 + _globals['_FRESHNESSCHECKCOMPLETE']._serialized_start=25791 + _globals['_FRESHNESSCHECKCOMPLETE']._serialized_end=25815 + _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_start=25817 + _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_end=25933 + _globals['_SEEDHEADER']._serialized_start=25935 + _globals['_SEEDHEADER']._serialized_end=25963 + _globals['_SEEDHEADERMSG']._serialized_start=25965 + _globals['_SEEDHEADERMSG']._serialized_end=26057 + _globals['_SQLRUNNEREXCEPTION']._serialized_start=26059 + _globals['_SQLRUNNEREXCEPTION']._serialized_end=26110 + _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_start=26112 + _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_end=26220 + _globals['_LOGTESTRESULT']._serialized_start=26223 + _globals['_LOGTESTRESULT']._serialized_end=26391 + _globals['_LOGTESTRESULTMSG']._serialized_start=26393 + _globals['_LOGTESTRESULTMSG']._serialized_end=26491 + _globals['_LOGSTARTLINE']._serialized_start=26493 + _globals['_LOGSTARTLINE']._serialized_end=26600 + _globals['_LOGSTARTLINEMSG']._serialized_start=26602 + _globals['_LOGSTARTLINEMSG']._serialized_end=26698 + _globals['_LOGMODELRESULT']._serialized_start=26701 + _globals['_LOGMODELRESULT']._serialized_end=26850 + _globals['_LOGMODELRESULTMSG']._serialized_start=26852 + _globals['_LOGMODELRESULTMSG']._serialized_end=26952 + _globals['_LOGSNAPSHOTRESULT']._serialized_start=26955 + _globals['_LOGSNAPSHOTRESULT']._serialized_end=27205 + _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_start=27163 + _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_end=27205 + _globals['_LOGSNAPSHOTRESULTMSG']._serialized_start=27207 + _globals['_LOGSNAPSHOTRESULTMSG']._serialized_end=27313 + _globals['_LOGSEEDRESULT']._serialized_start=27316 + _globals['_LOGSEEDRESULT']._serialized_end=27501 + _globals['_LOGSEEDRESULTMSG']._serialized_start=27503 + _globals['_LOGSEEDRESULTMSG']._serialized_end=27601 + _globals['_LOGFRESHNESSRESULT']._serialized_start=27604 + _globals['_LOGFRESHNESSRESULT']._serialized_end=27777 + _globals['_LOGFRESHNESSRESULTMSG']._serialized_start=27779 + _globals['_LOGFRESHNESSRESULTMSG']._serialized_end=27887 + _globals['_LOGCANCELLINE']._serialized_start=27889 + _globals['_LOGCANCELLINE']._serialized_end=27923 + _globals['_LOGCANCELLINEMSG']._serialized_start=27925 + _globals['_LOGCANCELLINEMSG']._serialized_end=28023 + _globals['_DEFAULTSELECTOR']._serialized_start=28025 + _globals['_DEFAULTSELECTOR']._serialized_end=28056 + _globals['_DEFAULTSELECTORMSG']._serialized_start=28058 + _globals['_DEFAULTSELECTORMSG']._serialized_end=28160 + _globals['_NODESTART']._serialized_start=28162 + _globals['_NODESTART']._serialized_end=28215 + _globals['_NODESTARTMSG']._serialized_start=28217 + _globals['_NODESTARTMSG']._serialized_end=28307 + _globals['_NODEFINISHED']._serialized_start=28309 + _globals['_NODEFINISHED']._serialized_end=28412 + _globals['_NODEFINISHEDMSG']._serialized_start=28414 + _globals['_NODEFINISHEDMSG']._serialized_end=28510 + _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_start=28512 + _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_end=28555 + _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_start=28557 + _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_end=28683 + _globals['_CONCURRENCYLINE']._serialized_start=28685 + _globals['_CONCURRENCYLINE']._serialized_end=28764 + _globals['_CONCURRENCYLINEMSG']._serialized_start=28766 + _globals['_CONCURRENCYLINEMSG']._serialized_end=28868 + _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_start=28870 + _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_end=28939 + _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_start=28941 + _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_end=29063 + _globals['_NODECOMPILING']._serialized_start=29065 + _globals['_NODECOMPILING']._serialized_end=29122 + _globals['_NODECOMPILINGMSG']._serialized_start=29124 + _globals['_NODECOMPILINGMSG']._serialized_end=29222 + _globals['_NODEEXECUTING']._serialized_start=29224 + _globals['_NODEEXECUTING']._serialized_end=29281 + _globals['_NODEEXECUTINGMSG']._serialized_start=29283 + _globals['_NODEEXECUTINGMSG']._serialized_end=29381 + _globals['_LOGHOOKSTARTLINE']._serialized_start=29383 + _globals['_LOGHOOKSTARTLINE']._serialized_end=29492 + _globals['_LOGHOOKSTARTLINEMSG']._serialized_start=29494 + _globals['_LOGHOOKSTARTLINEMSG']._serialized_end=29598 + _globals['_LOGHOOKENDLINE']._serialized_start=29601 + _globals['_LOGHOOKENDLINE']._serialized_end=29748 + _globals['_LOGHOOKENDLINEMSG']._serialized_start=29750 + _globals['_LOGHOOKENDLINEMSG']._serialized_end=29850 + _globals['_SKIPPINGDETAILS']._serialized_start=29853 + _globals['_SKIPPINGDETAILS']._serialized_end=30000 + _globals['_SKIPPINGDETAILSMSG']._serialized_start=30002 + _globals['_SKIPPINGDETAILSMSG']._serialized_end=30104 + _globals['_NOTHINGTODO']._serialized_start=30106 + _globals['_NOTHINGTODO']._serialized_end=30119 + _globals['_NOTHINGTODOMSG']._serialized_start=30121 + _globals['_NOTHINGTODOMSG']._serialized_end=30215 + _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_start=30217 + _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_end=30261 + _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_start=30264 + _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_end=30394 + _globals['_ENDRUNRESULT']._serialized_start=30397 + _globals['_ENDRUNRESULT']._serialized_end=30544 + _globals['_ENDRUNRESULTMSG']._serialized_start=30546 + _globals['_ENDRUNRESULTMSG']._serialized_end=30642 + _globals['_NONODESSELECTED']._serialized_start=30644 + _globals['_NONODESSELECTED']._serialized_end=30661 + _globals['_NONODESSELECTEDMSG']._serialized_start=30663 + _globals['_NONODESSELECTEDMSG']._serialized_end=30765 + _globals['_COMMANDCOMPLETED']._serialized_start=30767 + _globals['_COMMANDCOMPLETED']._serialized_end=30886 + _globals['_COMMANDCOMPLETEDMSG']._serialized_start=30888 + _globals['_COMMANDCOMPLETEDMSG']._serialized_end=30992 + _globals['_SHOWNODE']._serialized_start=30994 + _globals['_SHOWNODE']._serialized_end=31101 + _globals['_SHOWNODEMSG']._serialized_start=31103 + _globals['_SHOWNODEMSG']._serialized_end=31191 + _globals['_COMPILEDNODE']._serialized_start=31193 + _globals['_COMPILEDNODE']._serialized_end=31305 + _globals['_COMPILEDNODEMSG']._serialized_start=31307 + _globals['_COMPILEDNODEMSG']._serialized_end=31403 + _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_start=31405 + _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_end=31503 + _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_start=31505 + _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_end=31623 + _globals['_INTERNALERRORONRUN']._serialized_start=31625 + _globals['_INTERNALERRORONRUN']._serialized_end=31678 + _globals['_INTERNALERRORONRUNMSG']._serialized_start=31680 + _globals['_INTERNALERRORONRUNMSG']._serialized_end=31788 + _globals['_GENERICEXCEPTIONONRUN']._serialized_start=31790 + _globals['_GENERICEXCEPTIONONRUN']._serialized_end=31865 + _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_start=31867 + _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_end=31981 + _globals['_NODECONNECTIONRELEASEERROR']._serialized_start=31983 + _globals['_NODECONNECTIONRELEASEERROR']._serialized_end=32061 + _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_start=32063 + _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_end=32187 + _globals['_FOUNDSTATS']._serialized_start=32189 + _globals['_FOUNDSTATS']._serialized_end=32220 + _globals['_FOUNDSTATSMSG']._serialized_start=32222 + _globals['_FOUNDSTATSMSG']._serialized_end=32314 + _globals['_MAINKEYBOARDINTERRUPT']._serialized_start=32316 + _globals['_MAINKEYBOARDINTERRUPT']._serialized_end=32339 + _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_start=32341 + _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_end=32455 + _globals['_MAINENCOUNTEREDERROR']._serialized_start=32457 + _globals['_MAINENCOUNTEREDERROR']._serialized_end=32492 + _globals['_MAINENCOUNTEREDERRORMSG']._serialized_start=32494 + _globals['_MAINENCOUNTEREDERRORMSG']._serialized_end=32606 + _globals['_MAINSTACKTRACE']._serialized_start=32608 + _globals['_MAINSTACKTRACE']._serialized_end=32645 + _globals['_MAINSTACKTRACEMSG']._serialized_start=32647 + _globals['_MAINSTACKTRACEMSG']._serialized_end=32747 + _globals['_SYSTEMCOULDNOTWRITE']._serialized_start=32749 + _globals['_SYSTEMCOULDNOTWRITE']._serialized_end=32813 + _globals['_SYSTEMCOULDNOTWRITEMSG']._serialized_start=32815 + _globals['_SYSTEMCOULDNOTWRITEMSG']._serialized_end=32925 + _globals['_SYSTEMEXECUTINGCMD']._serialized_start=32927 + _globals['_SYSTEMEXECUTINGCMD']._serialized_end=32960 + _globals['_SYSTEMEXECUTINGCMDMSG']._serialized_start=32962 + _globals['_SYSTEMEXECUTINGCMDMSG']._serialized_end=33070 + _globals['_SYSTEMSTDOUT']._serialized_start=33072 + _globals['_SYSTEMSTDOUT']._serialized_end=33100 + _globals['_SYSTEMSTDOUTMSG']._serialized_start=33102 + _globals['_SYSTEMSTDOUTMSG']._serialized_end=33198 + _globals['_SYSTEMSTDERR']._serialized_start=33200 + _globals['_SYSTEMSTDERR']._serialized_end=33228 + _globals['_SYSTEMSTDERRMSG']._serialized_start=33230 + _globals['_SYSTEMSTDERRMSG']._serialized_end=33326 + _globals['_SYSTEMREPORTRETURNCODE']._serialized_start=33328 + _globals['_SYSTEMREPORTRETURNCODE']._serialized_end=33372 + _globals['_SYSTEMREPORTRETURNCODEMSG']._serialized_start=33374 + _globals['_SYSTEMREPORTRETURNCODEMSG']._serialized_end=33490 + _globals['_TIMINGINFOCOLLECTED']._serialized_start=33492 + _globals['_TIMINGINFOCOLLECTED']._serialized_end=33604 + _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_start=33606 + _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_end=33716 + _globals['_LOGDEBUGSTACKTRACE']._serialized_start=33718 + _globals['_LOGDEBUGSTACKTRACE']._serialized_end=33756 + _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_start=33758 + _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_end=33866 + _globals['_CHECKCLEANPATH']._serialized_start=33868 + _globals['_CHECKCLEANPATH']._serialized_end=33898 + _globals['_CHECKCLEANPATHMSG']._serialized_start=33900 + _globals['_CHECKCLEANPATHMSG']._serialized_end=34000 + _globals['_CONFIRMCLEANPATH']._serialized_start=34002 + _globals['_CONFIRMCLEANPATH']._serialized_end=34034 + _globals['_CONFIRMCLEANPATHMSG']._serialized_start=34036 + _globals['_CONFIRMCLEANPATHMSG']._serialized_end=34140 + _globals['_PROTECTEDCLEANPATH']._serialized_start=34142 + _globals['_PROTECTEDCLEANPATH']._serialized_end=34176 + _globals['_PROTECTEDCLEANPATHMSG']._serialized_start=34178 + _globals['_PROTECTEDCLEANPATHMSG']._serialized_end=34286 + _globals['_FINISHEDCLEANPATHS']._serialized_start=34288 + _globals['_FINISHEDCLEANPATHS']._serialized_end=34308 + _globals['_FINISHEDCLEANPATHSMSG']._serialized_start=34310 + _globals['_FINISHEDCLEANPATHSMSG']._serialized_end=34418 + _globals['_OPENCOMMAND']._serialized_start=34420 + _globals['_OPENCOMMAND']._serialized_end=34473 + _globals['_OPENCOMMANDMSG']._serialized_start=34475 + _globals['_OPENCOMMANDMSG']._serialized_end=34569 + _globals['_FORMATTING']._serialized_start=34571 + _globals['_FORMATTING']._serialized_end=34596 + _globals['_FORMATTINGMSG']._serialized_start=34598 + _globals['_FORMATTINGMSG']._serialized_end=34690 + _globals['_SERVINGDOCSPORT']._serialized_start=34692 + _globals['_SERVINGDOCSPORT']._serialized_end=34740 + _globals['_SERVINGDOCSPORTMSG']._serialized_start=34742 + _globals['_SERVINGDOCSPORTMSG']._serialized_end=34844 + _globals['_SERVINGDOCSACCESSINFO']._serialized_start=34846 + _globals['_SERVINGDOCSACCESSINFO']._serialized_end=34883 + _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_start=34885 + _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_end=34999 + _globals['_SERVINGDOCSEXITINFO']._serialized_start=35001 + _globals['_SERVINGDOCSEXITINFO']._serialized_end=35022 + _globals['_SERVINGDOCSEXITINFOMSG']._serialized_start=35024 + _globals['_SERVINGDOCSEXITINFOMSG']._serialized_end=35134 + _globals['_RUNRESULTWARNING']._serialized_start=35136 + _globals['_RUNRESULTWARNING']._serialized_end=35210 + _globals['_RUNRESULTWARNINGMSG']._serialized_start=35212 + _globals['_RUNRESULTWARNINGMSG']._serialized_end=35316 + _globals['_RUNRESULTFAILURE']._serialized_start=35318 + _globals['_RUNRESULTFAILURE']._serialized_end=35392 + _globals['_RUNRESULTFAILUREMSG']._serialized_start=35394 + _globals['_RUNRESULTFAILUREMSG']._serialized_end=35498 + _globals['_STATSLINE']._serialized_start=35500 + _globals['_STATSLINE']._serialized_end=35607 + _globals['_STATSLINE_STATSENTRY']._serialized_start=35563 + _globals['_STATSLINE_STATSENTRY']._serialized_end=35607 + _globals['_STATSLINEMSG']._serialized_start=35609 + _globals['_STATSLINEMSG']._serialized_end=35699 + _globals['_RUNRESULTERROR']._serialized_start=35701 + _globals['_RUNRESULTERROR']._serialized_end=35730 + _globals['_RUNRESULTERRORMSG']._serialized_start=35732 + _globals['_RUNRESULTERRORMSG']._serialized_end=35832 + _globals['_RUNRESULTERRORNOMESSAGE']._serialized_start=35834 + _globals['_RUNRESULTERRORNOMESSAGE']._serialized_end=35875 + _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_start=35877 + _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_end=35995 + _globals['_SQLCOMPILEDPATH']._serialized_start=35997 + _globals['_SQLCOMPILEDPATH']._serialized_end=36028 + _globals['_SQLCOMPILEDPATHMSG']._serialized_start=36030 + _globals['_SQLCOMPILEDPATHMSG']._serialized_end=36132 + _globals['_CHECKNODETESTFAILURE']._serialized_start=36134 + _globals['_CHECKNODETESTFAILURE']._serialized_end=36179 + _globals['_CHECKNODETESTFAILUREMSG']._serialized_start=36181 + _globals['_CHECKNODETESTFAILUREMSG']._serialized_end=36293 + _globals['_FIRSTRUNRESULTERROR']._serialized_start=36295 + _globals['_FIRSTRUNRESULTERROR']._serialized_end=36329 + _globals['_FIRSTRUNRESULTERRORMSG']._serialized_start=36331 + _globals['_FIRSTRUNRESULTERRORMSG']._serialized_end=36441 + _globals['_AFTERFIRSTRUNRESULTERROR']._serialized_start=36443 + _globals['_AFTERFIRSTRUNRESULTERROR']._serialized_end=36482 + _globals['_AFTERFIRSTRUNRESULTERRORMSG']._serialized_start=36484 + _globals['_AFTERFIRSTRUNRESULTERRORMSG']._serialized_end=36604 + _globals['_ENDOFRUNSUMMARY']._serialized_start=36606 + _globals['_ENDOFRUNSUMMARY']._serialized_end=36693 + _globals['_ENDOFRUNSUMMARYMSG']._serialized_start=36695 + _globals['_ENDOFRUNSUMMARYMSG']._serialized_end=36797 + _globals['_LOGSKIPBECAUSEERROR']._serialized_start=36799 + _globals['_LOGSKIPBECAUSEERROR']._serialized_end=36884 + _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_start=36886 + _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_end=36996 + _globals['_ENSUREGITINSTALLED']._serialized_start=36998 + _globals['_ENSUREGITINSTALLED']._serialized_end=37018 + _globals['_ENSUREGITINSTALLEDMSG']._serialized_start=37020 + _globals['_ENSUREGITINSTALLEDMSG']._serialized_end=37128 + _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_start=37130 + _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_end=37156 + _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_start=37158 + _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_end=37278 + _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_start=37280 + _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_end=37305 + _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_start=37307 + _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_end=37425 + _globals['_DISABLETRACKING']._serialized_start=37427 + _globals['_DISABLETRACKING']._serialized_end=37444 + _globals['_DISABLETRACKINGMSG']._serialized_start=37446 + _globals['_DISABLETRACKINGMSG']._serialized_end=37548 + _globals['_SENDINGEVENT']._serialized_start=37550 + _globals['_SENDINGEVENT']._serialized_end=37580 + _globals['_SENDINGEVENTMSG']._serialized_start=37582 + _globals['_SENDINGEVENTMSG']._serialized_end=37678 + _globals['_SENDEVENTFAILURE']._serialized_start=37680 + _globals['_SENDEVENTFAILURE']._serialized_end=37698 + _globals['_SENDEVENTFAILUREMSG']._serialized_start=37700 + _globals['_SENDEVENTFAILUREMSG']._serialized_end=37804 + _globals['_FLUSHEVENTS']._serialized_start=37806 + _globals['_FLUSHEVENTS']._serialized_end=37819 + _globals['_FLUSHEVENTSMSG']._serialized_start=37821 + _globals['_FLUSHEVENTSMSG']._serialized_end=37915 + _globals['_FLUSHEVENTSFAILURE']._serialized_start=37917 + _globals['_FLUSHEVENTSFAILURE']._serialized_end=37937 + _globals['_FLUSHEVENTSFAILUREMSG']._serialized_start=37939 + _globals['_FLUSHEVENTSFAILUREMSG']._serialized_end=38047 + _globals['_TRACKINGINITIALIZEFAILURE']._serialized_start=38049 + _globals['_TRACKINGINITIALIZEFAILURE']._serialized_end=38094 + _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_start=38096 + _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_end=38218 + _globals['_RUNRESULTWARNINGMESSAGE']._serialized_start=38220 + _globals['_RUNRESULTWARNINGMESSAGE']._serialized_end=38258 + _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_start=38260 + _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_end=38378 + _globals['_DEBUGCMDOUT']._serialized_start=38380 + _globals['_DEBUGCMDOUT']._serialized_end=38406 + _globals['_DEBUGCMDOUTMSG']._serialized_start=38408 + _globals['_DEBUGCMDOUTMSG']._serialized_end=38502 + _globals['_DEBUGCMDRESULT']._serialized_start=38504 + _globals['_DEBUGCMDRESULT']._serialized_end=38533 + _globals['_DEBUGCMDRESULTMSG']._serialized_start=38535 + _globals['_DEBUGCMDRESULTMSG']._serialized_end=38635 + _globals['_LISTCMDOUT']._serialized_start=38637 + _globals['_LISTCMDOUT']._serialized_end=38662 + _globals['_LISTCMDOUTMSG']._serialized_start=38664 + _globals['_LISTCMDOUTMSG']._serialized_end=38756 + _globals['_NOTE']._serialized_start=38758 + _globals['_NOTE']._serialized_end=38777 + _globals['_NOTEMSG']._serialized_start=38779 + _globals['_NOTEMSG']._serialized_end=38859 # @@protoc_insertion_point(module_scope) diff --git a/tests/unit/test_events.py b/tests/unit/test_events.py index 58a10cf66d6..b01a1f588c7 100644 --- a/tests/unit/test_events.py +++ b/tests/unit/test_events.py @@ -139,6 +139,7 @@ def test_event_codes(self): types.AdapterEventInfo(), types.AdapterEventWarning(), types.AdapterEventError(), + types.AdapterRegistered(adapter_name="dbt-awesome", adapter_version="1.2.3"), types.NewConnection(conn_type="", conn_name=""), types.ConnectionReused(conn_name=""), types.ConnectionLeftOpenInCleanup(conn_name=""), From 40a707de9c59f640b9997e64d0c845f6cc95387c Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Fri, 16 Jun 2023 10:51:48 -0400 Subject: [PATCH 2/2] Regenerate event proto types --- core/dbt/events/types_pb2.py | 1729 +++++++++++++++++----------------- 1 file changed, 858 insertions(+), 871 deletions(-) diff --git a/core/dbt/events/types_pb2.py b/core/dbt/events/types_pb2.py index 5e201a8ef24..b6ce6c9eb9a 100644 --- a/core/dbt/events/types_pb2.py +++ b/core/dbt/events/types_pb2.py @@ -2,10 +2,10 @@ # Generated by the protocol buffer compiler. DO NOT EDIT! # source: types.proto """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() @@ -15,11 +15,10 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0btypes.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x91\x02\n\tEventInfo\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\x30\n\x05\x65xtra\x18\t \x03(\x0b\x32!.proto_types.EventInfo.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\"\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\"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\"\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\"G\n\x0fReferenceKeyMsg\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x12\n\nidentifier\x18\x03 \x01(\t\"6\n\x0eGenericMessage\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"j\n\x14MainReportVersionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11MainReportArgsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18MainTrackingUserStateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12MergedFromStateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17MissingProfileTargetMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"j\n\x14InvalidOptionYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDbtProjectErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDbtProfileErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15StarterProjectPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18\x43onfigFolderDirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17NoSampleProfileFoundMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bProfileWrittenWithSampleMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x90\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x92\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"h\n\x13SettingUpProfileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"|\n\x1dInvalidProfileTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"x\n\x1bProjectNameAlreadyExistsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11ProjectCreatedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1dPackageRedirectDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x82\x01\n PackageInstallPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1e\x43onfigSourcePathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1c\x43onfigDataPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\"?\n\x19\x41\x64\x61pterDeprecationWarning\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"z\n\x1c\x41\x64\x61pterDeprecationWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.AdapterDeprecationWarning\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"v\n\x1aMetricAttributesRenamedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x45xposureNameDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16InternalDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1d\x45nvironmentVariableRenamedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1b\x43onfigLogPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1e\x43onfigTargetPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"!\n\x1f\x43ollectFreshnessReturnSignature\"\x86\x01\n\"CollectFreshnessReturnSignatureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.CollectFreshnessReturnSignature\"\x87\x01\n\x11\x41\x64\x61pterEventDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"j\n\x14\x41\x64\x61pterEventDebugMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventDebug\"\x86\x01\n\x10\x41\x64\x61pterEventInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"h\n\x13\x41\x64\x61pterEventInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.AdapterEventInfo\"\x89\x01\n\x13\x41\x64\x61pterEventWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"n\n\x16\x41\x64\x61pterEventWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.AdapterEventWarning\"\x99\x01\n\x11\x41\x64\x61pterEventError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\x12\x10\n\x08\x65xc_info\x18\x05 \x01(\t\"j\n\x14\x41\x64\x61pterEventErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventError\"_\n\rNewConnection\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"b\n\x10NewConnectionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NewConnection\"=\n\x10\x43onnectionReused\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x16\n\x0eorig_conn_name\x18\x02 \x01(\t\"h\n\x13\x43onnectionReusedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionReused\"0\n\x1b\x43onnectionLeftOpenInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"~\n\x1e\x43onnectionLeftOpenInCleanupMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConnectionLeftOpenInCleanup\".\n\x19\x43onnectionClosedInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"z\n\x1c\x43onnectionClosedInCleanupMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConnectionClosedInCleanup\"_\n\x0eRollbackFailed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"d\n\x11RollbackFailedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RollbackFailed\"O\n\x10\x43onnectionClosed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"h\n\x13\x43onnectionClosedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionClosed\"Q\n\x12\x43onnectionLeftOpen\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"l\n\x15\x43onnectionLeftOpenMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ConnectionLeftOpen\"G\n\x08Rollback\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"X\n\x0bRollbackMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.Rollback\"@\n\tCacheMiss\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\"Z\n\x0c\x43\x61\x63heMissMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.CacheMiss\"b\n\rListRelations\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12/\n\trelations\x18\x03 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"b\n\x10ListRelationsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ListRelations\"`\n\x0e\x43onnectionUsed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"d\n\x11\x43onnectionUsedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ConnectionUsed\"T\n\x08SQLQuery\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x0b\n\x03sql\x18\x03 \x01(\t\"X\n\x0bSQLQueryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.SQLQuery\"[\n\x0eSQLQueryStatus\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x03 \x01(\x02\"d\n\x11SQLQueryStatusMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SQLQueryStatus\"H\n\tSQLCommit\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"Z\n\x0cSQLCommitMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.SQLCommit\"a\n\rColTypeChange\x12\x11\n\torig_type\x18\x01 \x01(\t\x12\x10\n\x08new_type\x18\x02 \x01(\t\x12+\n\x05table\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"b\n\x10\x43olTypeChangeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ColTypeChange\"@\n\x0eSchemaCreation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"d\n\x11SchemaCreationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SchemaCreation\"<\n\nSchemaDrop\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"\\\n\rSchemaDropMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SchemaDrop\"\xde\x01\n\x0b\x43\x61\x63heAction\x12\x0e\n\x06\x61\x63tion\x18\x01 \x01(\t\x12-\n\x07ref_key\x18\x02 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_2\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_3\x18\x04 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12.\n\x08ref_list\x18\x05 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"^\n\x0e\x43\x61\x63heActionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.CacheAction\"\x98\x01\n\x0e\x43\x61\x63heDumpGraph\x12\x33\n\x04\x64ump\x18\x01 \x03(\x0b\x32%.proto_types.CacheDumpGraph.DumpEntry\x12\x14\n\x0c\x62\x65\x66ore_after\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t\x1a+\n\tDumpEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"d\n\x11\x43\x61\x63heDumpGraphMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CacheDumpGraph\"B\n\x11\x41\x64\x61pterRegistered\x12\x14\n\x0c\x61\x64\x61pter_name\x18\x01 \x01(\t\x12\x17\n\x0f\x61\x64\x61pter_version\x18\x02 \x01(\t\"j\n\x14\x41\x64\x61pterRegisteredMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterRegistered\"!\n\x12\x41\x64\x61pterImportError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"l\n\x15\x41\x64\x61pterImportErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.AdapterImportError\"#\n\x0fPluginLoadError\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"f\n\x12PluginLoadErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.PluginLoadError\"Z\n\x14NewConnectionOpening\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x18\n\x10\x63onnection_state\x18\x02 \x01(\t\"p\n\x17NewConnectionOpeningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NewConnectionOpening\"8\n\rCodeExecution\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63ode_content\x18\x02 \x01(\t\"b\n\x10\x43odeExecutionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.CodeExecution\"6\n\x13\x43odeExecutionStatus\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x02 \x01(\x02\"n\n\x16\x43odeExecutionStatusMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.CodeExecutionStatus\"%\n\x16\x43\x61talogGenerationError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x19\x43\x61talogGenerationErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.CatalogGenerationError\"-\n\x13WriteCatalogFailure\x12\x16\n\x0enum_exceptions\x18\x01 \x01(\x05\"n\n\x16WriteCatalogFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.WriteCatalogFailure\"\x1e\n\x0e\x43\x61talogWritten\x12\x0c\n\x04path\x18\x01 \x01(\t\"d\n\x11\x43\x61talogWrittenMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CatalogWritten\"\x14\n\x12\x43\x61nnotGenerateDocs\"l\n\x15\x43\x61nnotGenerateDocsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.CannotGenerateDocs\"\x11\n\x0f\x42uildingCatalog\"f\n\x12\x42uildingCatalogMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.BuildingCatalog\"-\n\x18\x44\x61tabaseErrorRunningHook\x12\x11\n\thook_type\x18\x01 \x01(\t\"x\n\x1b\x44\x61tabaseErrorRunningHookMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DatabaseErrorRunningHook\"4\n\x0cHooksRunning\x12\x11\n\tnum_hooks\x18\x01 \x01(\x05\x12\x11\n\thook_type\x18\x02 \x01(\t\"`\n\x0fHooksRunningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.HooksRunning\"T\n\x14\x46inishedRunningStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\x12\x11\n\texecution\x18\x02 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x03 \x01(\x02\"p\n\x17\x46inishedRunningStatsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.FinishedRunningStats\"<\n\x15\x43onstraintNotEnforced\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"r\n\x18\x43onstraintNotEnforcedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConstraintNotEnforced\"=\n\x16\x43onstraintNotSupported\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"t\n\x19\x43onstraintNotSupportedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.ConstraintNotSupported\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"l\n\x15InputFileDiffErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InputFileDiffError\"t\n\x1aPublicationArtifactChanged\x12\x14\n\x0cproject_name\x18\x01 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x02 \x01(\t\x12\x30\n\x0cgenerated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"|\n\x1dPublicationArtifactChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PublicationArtifactChanged\"?\n\x14InvalidValueForField\x12\x12\n\nfield_name\x18\x01 \x01(\t\x12\x13\n\x0b\x66ield_value\x18\x02 \x01(\t\"p\n\x17InvalidValueForFieldMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"j\n\x14ValidationWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"j\n\x14ParsePerfInfoPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x8a\x01\n$PartialParsingErrorProcessingFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16PartialParsingErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"z\n\x1cPartialParsingSkipParsingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"p\n\x17UnableToPartialParseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15StateCheckVarsHashMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"x\n\x1bPartialParsingNotEnabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17ParsedFileLoadFailedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18PartialParsingEnabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15PartialParsingFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bUnusedResourceConfigPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10SeedIncreasedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bSeedExceedsLimitSamePathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!SeedExceedsLimitAndPathChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"`\n\x0fUnusedTablesMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1aWrongResourceSchemaFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13NoNodeForYamlKeyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18MacroNotFoundForPatchMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"t\n\x19NodeNotFoundOrDisabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12JinjaLogWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fJinjaLogInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10JinjaLogDebugMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!UnpinnedRefNewVersionAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"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\"f\n\x12\x44\x65precatedModelMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.DeprecatedModel\"\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\"\x80\x01\n\x1fUpcomingReferenceDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16\x44\x65precatedReferenceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DeprecatedReference\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x90\x01\n\'UnsupportedConstraintMaterializationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x82\x01\n GitSparseCheckoutSubdirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"~\n\x1eGitProgressCheckoutRevisionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x92\x01\n(GitProgressUpdatingExistingDependencyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"GitProgressPullingNewDependencyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"d\n\x11GitNothingToDoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1aGitProgressCheckedOutAtMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"|\n\x1dRegistryProgressGETRequestMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1eRegistryProgressGETResponseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x82\x01\n SelectorReportInvalidSelectorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"n\n\x16\x44\x65psNoPackagesFoundMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x44\x65psStartPackageInstallMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x44\x65psInstallInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16\x44\x65psUpdateAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"`\n\x0f\x44\x65psUpToDateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17\x44\x65psListSubdirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\"1\n\x11RetryExternalCall\x12\x0f\n\x07\x61ttempt\x18\x01 \x01(\x05\x12\x0b\n\x03max\x18\x02 \x01(\x05\"j\n\x14RetryExternalCallMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.RetryExternalCall\"#\n\x14RecordRetryException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x17RecordRetryExceptionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.RecordRetryException\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x86\x01\n\"RegistryIndexProgressGETRequestMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x88\x01\n#RegistryIndexProgressGETResponseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x84\x01\n!RegistryResponseUnexpectedTypeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!RegistryResponseMissingTopKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x8a\x01\n$RegistryResponseMissingNestedKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x86\x01\n\"RegistryResponseExtraNestedKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x44\x65psUnpinnedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1eNoNodesForSelectionCriteriaMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\"M\n\x1cPublicationArtifactAvailable\x12-\n\x0cpub_artifact\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\"\x80\x01\n\x1fPublicationArtifactAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x37\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32).proto_types.PublicationArtifactAvailable\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"~\n\x1eRunningOperationCaughtErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"f\n\x12\x43ompileCompleteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"t\n\x19\x46reshnessCheckCompleteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"3\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\"l\n\x15SQLRunnerExceptionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10LogTestResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fLogStartLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11LogModelResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\xfa\x01\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\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"j\n\x14LogSnapshotResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10LogSeedResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogFreshnessResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"b\n\x10LogCancelLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x44\x65\x66\x61ultSelectorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"Z\n\x0cNodeStartMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fNodeFinishedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"~\n\x1eQueryCancelationUnsupportedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x43oncurrencyLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1cWritingInjectedSQLForNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10NodeCompilingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10NodeExecutingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13LogHookStartLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11LogHookEndLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12SkippingDetailsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"^\n\x0eNothingToDoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x82\x01\n RunningOperationUncaughtErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x45ndRunResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"f\n\x12NoNodesSelectedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13\x43ommandCompletedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"X\n\x0bShowNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x43ompiledNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x43\x61tchableExceptionOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"5\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"l\n\x15InternalErrorOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"K\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\"r\n\x18GenericExceptionOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1dNodeConnectionReleaseErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"r\n\x18MainKeyboardInterruptMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17MainEncounteredErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"d\n\x11MainStackTraceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"@\n\x13SystemCouldNotWrite\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\"n\n\x16SystemCouldNotWriteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.SystemCouldNotWrite\"!\n\x12SystemExecutingCmd\x12\x0b\n\x03\x63md\x18\x01 \x03(\t\"l\n\x15SystemExecutingCmdMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SystemExecutingCmd\"\x1c\n\x0cSystemStdOut\x12\x0c\n\x04\x62msg\x18\x01 \x01(\t\"`\n\x0fSystemStdOutMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SystemStdOut\"\x1c\n\x0cSystemStdErr\x12\x0c\n\x04\x62msg\x18\x01 \x01(\t\"`\n\x0fSystemStdErrMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SystemStdErr\",\n\x16SystemReportReturnCode\x12\x12\n\nreturncode\x18\x01 \x01(\x05\"t\n\x19SystemReportReturnCodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.SystemReportReturnCode\"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\"n\n\x16TimingInfoCollectedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDebugStackTraceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11\x43heckCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13\x43onfirmCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x15ProtectedCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"l\n\x15\x46inishedCleanPathsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"^\n\x0eOpenCommandMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"\x19\n\nFormatting\x12\x0b\n\x03msg\x18\x01 \x01(\t\"\\\n\rFormattingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.Formatting\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"f\n\x12ServingDocsPortMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"r\n\x18ServingDocsAccessInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"n\n\x16ServingDocsExitInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"J\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\"h\n\x13RunResultWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"J\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\"h\n\x13RunResultFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"Z\n\x0cStatsLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"\x1d\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"d\n\x11RunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\")\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\"v\n\x1aRunResultErrorNoMessageMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"\x1f\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"f\n\x12SQLCompiledPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"-\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\"p\n\x17\x43heckNodeTestFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"\"\n\x13\x46irstRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"n\n\x16\x46irstRunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.FirstRunResultError\"\'\n\x18\x41\x66terFirstRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x1b\x41\x66terFirstRunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.AfterFirstRunResultError\"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\"f\n\x12\x45ndOfRunSummaryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16LogSkipBecauseErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"l\n\x15\x45nsureGitInstalledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"x\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"v\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"f\n\x12\x44isableTrackingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fSendingEventMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"h\n\x13SendEventFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"^\n\x0e\x46lushEventsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"l\n\x15\x46lushEventsFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1cTrackingInitializeFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"&\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\"v\n\x1aRunResultWarningMessageMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"^\n\x0e\x44\x65\x62ugCmdOutMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11\x44\x65\x62ugCmdResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\x13\n\x04Note\x12\x0b\n\x03msg\x18\x01 \x01(\t\"P\n\x07NoteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x1f\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x11.proto_types.Noteb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0btypes.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\x91\x02\n\tEventInfo\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\x30\n\x05\x65xtra\x18\t \x03(\x0b\x32!.proto_types.EventInfo.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\"\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\"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\"\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\"G\n\x0fReferenceKeyMsg\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x12\n\nidentifier\x18\x03 \x01(\t\"6\n\x0eGenericMessage\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\"9\n\x11MainReportVersion\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0blog_version\x18\x02 \x01(\x05\"j\n\x14MainReportVersionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11MainReportArgsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18MainTrackingUserStateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12MergedFromStateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17MissingProfileTargetMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MissingProfileTarget\"(\n\x11InvalidOptionYAML\x12\x13\n\x0boption_name\x18\x01 \x01(\t\"j\n\x14InvalidOptionYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDbtProjectErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDbtProfileErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15StarterProjectPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18\x43onfigFolderDirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17NoSampleProfileFoundMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bProfileWrittenWithSampleMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x90\x01\n\'ProfileWrittenWithTargetTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x92\x01\n(ProfileWrittenWithProjectTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12@\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x32.proto_types.ProfileWrittenWithProjectTemplateYAML\"\x12\n\x10SettingUpProfile\"h\n\x13SettingUpProfileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SettingUpProfile\"\x1c\n\x1aInvalidProfileTemplateYAML\"|\n\x1dInvalidProfileTemplateYAMLMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.InvalidProfileTemplateYAML\"(\n\x18ProjectNameAlreadyExists\x12\x0c\n\x04name\x18\x01 \x01(\t\"x\n\x1bProjectNameAlreadyExistsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11ProjectCreatedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1dPackageRedirectDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.PackageRedirectDeprecation\"\x1f\n\x1dPackageInstallPathDeprecation\"\x82\x01\n PackageInstallPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1e\x43onfigSourcePathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1c\x43onfigDataPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConfigDataPathDeprecation\"?\n\x19\x41\x64\x61pterDeprecationWarning\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"z\n\x1c\x41\x64\x61pterDeprecationWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.AdapterDeprecationWarning\".\n\x17MetricAttributesRenamed\x12\x13\n\x0bmetric_name\x18\x01 \x01(\t\"v\n\x1aMetricAttributesRenamedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x45xposureNameDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16InternalDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1d\x45nvironmentVariableRenamedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1b\x43onfigLogPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1e\x43onfigTargetPathDeprecationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConfigTargetPathDeprecation\"!\n\x1f\x43ollectFreshnessReturnSignature\"\x86\x01\n\"CollectFreshnessReturnSignatureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.CollectFreshnessReturnSignature\"\x87\x01\n\x11\x41\x64\x61pterEventDebug\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"j\n\x14\x41\x64\x61pterEventDebugMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventDebug\"\x86\x01\n\x10\x41\x64\x61pterEventInfo\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"h\n\x13\x41\x64\x61pterEventInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.AdapterEventInfo\"\x89\x01\n\x13\x41\x64\x61pterEventWarning\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"n\n\x16\x41\x64\x61pterEventWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.AdapterEventWarning\"\x99\x01\n\x11\x41\x64\x61pterEventError\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\x12\x10\n\x08\x65xc_info\x18\x05 \x01(\t\"j\n\x14\x41\x64\x61pterEventErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventError\"_\n\rNewConnection\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"b\n\x10NewConnectionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NewConnection\"=\n\x10\x43onnectionReused\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x16\n\x0eorig_conn_name\x18\x02 \x01(\t\"h\n\x13\x43onnectionReusedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionReused\"0\n\x1b\x43onnectionLeftOpenInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"~\n\x1e\x43onnectionLeftOpenInCleanupMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConnectionLeftOpenInCleanup\".\n\x19\x43onnectionClosedInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"z\n\x1c\x43onnectionClosedInCleanupMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConnectionClosedInCleanup\"_\n\x0eRollbackFailed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"d\n\x11RollbackFailedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RollbackFailed\"O\n\x10\x43onnectionClosed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"h\n\x13\x43onnectionClosedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionClosed\"Q\n\x12\x43onnectionLeftOpen\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"l\n\x15\x43onnectionLeftOpenMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ConnectionLeftOpen\"G\n\x08Rollback\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"X\n\x0bRollbackMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.Rollback\"@\n\tCacheMiss\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\"Z\n\x0c\x43\x61\x63heMissMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.CacheMiss\"b\n\rListRelations\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12/\n\trelations\x18\x03 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"b\n\x10ListRelationsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ListRelations\"`\n\x0e\x43onnectionUsed\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"d\n\x11\x43onnectionUsedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ConnectionUsed\"T\n\x08SQLQuery\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x0b\n\x03sql\x18\x03 \x01(\t\"X\n\x0bSQLQueryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.SQLQuery\"[\n\x0eSQLQueryStatus\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x03 \x01(\x02\"d\n\x11SQLQueryStatusMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SQLQueryStatus\"H\n\tSQLCommit\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"Z\n\x0cSQLCommitMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.SQLCommit\"a\n\rColTypeChange\x12\x11\n\torig_type\x18\x01 \x01(\t\x12\x10\n\x08new_type\x18\x02 \x01(\t\x12+\n\x05table\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"b\n\x10\x43olTypeChangeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ColTypeChange\"@\n\x0eSchemaCreation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"d\n\x11SchemaCreationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SchemaCreation\"<\n\nSchemaDrop\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"\\\n\rSchemaDropMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SchemaDrop\"\xde\x01\n\x0b\x43\x61\x63heAction\x12\x0e\n\x06\x61\x63tion\x18\x01 \x01(\t\x12-\n\x07ref_key\x18\x02 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_2\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_3\x18\x04 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12.\n\x08ref_list\x18\x05 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"^\n\x0e\x43\x61\x63heActionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.CacheAction\"\x98\x01\n\x0e\x43\x61\x63heDumpGraph\x12\x33\n\x04\x64ump\x18\x01 \x03(\x0b\x32%.proto_types.CacheDumpGraph.DumpEntry\x12\x14\n\x0c\x62\x65\x66ore_after\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t\x1a+\n\tDumpEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"d\n\x11\x43\x61\x63heDumpGraphMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CacheDumpGraph\"B\n\x11\x41\x64\x61pterRegistered\x12\x14\n\x0c\x61\x64\x61pter_name\x18\x01 \x01(\t\x12\x17\n\x0f\x61\x64\x61pter_version\x18\x02 \x01(\t\"j\n\x14\x41\x64\x61pterRegisteredMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterRegistered\"!\n\x12\x41\x64\x61pterImportError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"l\n\x15\x41\x64\x61pterImportErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.AdapterImportError\"#\n\x0fPluginLoadError\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"f\n\x12PluginLoadErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.PluginLoadError\"Z\n\x14NewConnectionOpening\x12(\n\tnode_info\x18\x01 \x01(\x0b\x32\x15.proto_types.NodeInfo\x12\x18\n\x10\x63onnection_state\x18\x02 \x01(\t\"p\n\x17NewConnectionOpeningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NewConnectionOpening\"8\n\rCodeExecution\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63ode_content\x18\x02 \x01(\t\"b\n\x10\x43odeExecutionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.CodeExecution\"6\n\x13\x43odeExecutionStatus\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x02 \x01(\x02\"n\n\x16\x43odeExecutionStatusMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.CodeExecutionStatus\"%\n\x16\x43\x61talogGenerationError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"t\n\x19\x43\x61talogGenerationErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.CatalogGenerationError\"-\n\x13WriteCatalogFailure\x12\x16\n\x0enum_exceptions\x18\x01 \x01(\x05\"n\n\x16WriteCatalogFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.WriteCatalogFailure\"\x1e\n\x0e\x43\x61talogWritten\x12\x0c\n\x04path\x18\x01 \x01(\t\"d\n\x11\x43\x61talogWrittenMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CatalogWritten\"\x14\n\x12\x43\x61nnotGenerateDocs\"l\n\x15\x43\x61nnotGenerateDocsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.CannotGenerateDocs\"\x11\n\x0f\x42uildingCatalog\"f\n\x12\x42uildingCatalogMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.BuildingCatalog\"-\n\x18\x44\x61tabaseErrorRunningHook\x12\x11\n\thook_type\x18\x01 \x01(\t\"x\n\x1b\x44\x61tabaseErrorRunningHookMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DatabaseErrorRunningHook\"4\n\x0cHooksRunning\x12\x11\n\tnum_hooks\x18\x01 \x01(\x05\x12\x11\n\thook_type\x18\x02 \x01(\t\"`\n\x0fHooksRunningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.HooksRunning\"T\n\x14\x46inishedRunningStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\x12\x11\n\texecution\x18\x02 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x03 \x01(\x02\"p\n\x17\x46inishedRunningStatsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.FinishedRunningStats\"<\n\x15\x43onstraintNotEnforced\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"r\n\x18\x43onstraintNotEnforcedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConstraintNotEnforced\"=\n\x16\x43onstraintNotSupported\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"t\n\x19\x43onstraintNotSupportedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.ConstraintNotSupported\"7\n\x12InputFileDiffError\x12\x10\n\x08\x63\x61tegory\x18\x01 \x01(\t\x12\x0f\n\x07\x66ile_id\x18\x02 \x01(\t\"l\n\x15InputFileDiffErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17InvalidValueForFieldMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"j\n\x14ValidationWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ValidationWarning\"!\n\x11ParsePerfInfoPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"j\n\x14ParsePerfInfoPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.ParsePerfInfoPath\"$\n\x14GenericTestFileParse\x12\x0c\n\x04path\x18\x01 \x01(\t\"p\n\x17GenericTestFileParseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.GenericTestFileParse\"\x1e\n\x0eMacroFileParse\x12\x0c\n\x04path\x18\x01 \x01(\t\"d\n\x11MacroFileParseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MacroFileParse\"1\n!PartialParsingErrorProcessingFile\x12\x0c\n\x04\x66ile\x18\x01 \x01(\t\"\x8a\x01\n$PartialParsingErrorProcessingFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16PartialParsingErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.PartialParsingError\"\x1b\n\x19PartialParsingSkipParsing\"z\n\x1cPartialParsingSkipParsingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.PartialParsingSkipParsing\"&\n\x14UnableToPartialParse\x12\x0e\n\x06reason\x18\x01 \x01(\t\"p\n\x17UnableToPartialParseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15StateCheckVarsHashMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.StateCheckVarsHash\"\x1a\n\x18PartialParsingNotEnabled\"x\n\x1bPartialParsingNotEnabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17ParsedFileLoadFailedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18PartialParsingEnabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15PartialParsingFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"InvalidDisabledTargetInTestNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bUnusedResourceConfigPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10SeedIncreasedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1bSeedExceedsLimitSamePathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!SeedExceedsLimitAndPathChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"SeedExceedsLimitChecksumChangedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.SeedExceedsLimitChecksumChanged\"%\n\x0cUnusedTables\x12\x15\n\runused_tables\x18\x01 \x03(\t\"`\n\x0fUnusedTablesMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1aWrongResourceSchemaFileMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13NoNodeForYamlKeyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"r\n\x18MacroNotFoundForPatchMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"t\n\x19NodeNotFoundOrDisabledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12JinjaLogWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fJinjaLogInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10JinjaLogDebugMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!UnpinnedRefNewVersionAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x39\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32+.proto_types.UnpinnedRefNewVersionAvailable\"<\n$UnsupportedConstraintMaterialization\x12\x14\n\x0cmaterialized\x18\x01 \x01(\t\"\x90\x01\n\'UnsupportedConstraintMaterializationMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12?\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x31.proto_types.UnsupportedConstraintMaterialization\"/\n\x1dGitSparseCheckoutSubdirectory\x12\x0e\n\x06subdir\x18\x01 \x01(\t\"\x82\x01\n GitSparseCheckoutSubdirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.GitSparseCheckoutSubdirectory\"/\n\x1bGitProgressCheckoutRevision\x12\x10\n\x08revision\x18\x01 \x01(\t\"~\n\x1eGitProgressCheckoutRevisionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x92\x01\n(GitProgressUpdatingExistingDependencyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"GitProgressPullingNewDependencyMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.GitProgressPullingNewDependency\"\x1d\n\x0eGitNothingToDo\x12\x0b\n\x03sha\x18\x01 \x01(\t\"d\n\x11GitNothingToDoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x86\x01\n\"GitProgressUpdatedCheckoutRangeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1aGitProgressCheckedOutAtMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.GitProgressCheckedOutAt\")\n\x1aRegistryProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"|\n\x1dRegistryProgressGETRequestMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1eRegistryProgressGETResponseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x82\x01\n SelectorReportInvalidSelectorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x38\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32*.proto_types.SelectorReportInvalidSelector\"\x15\n\x13\x44\x65psNoPackagesFound\"n\n\x16\x44\x65psNoPackagesFoundMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x44\x65psStartPackageInstallMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x44\x65psInstallInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16\x44\x65psUpdateAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.DepsUpdateAvailable\"\x0e\n\x0c\x44\x65psUpToDate\"`\n\x0f\x44\x65psUpToDateMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17\x44\x65psListSubdirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1d\x44\x65psNotifyUpdatesAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x35\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\'.proto_types.DepsNotifyUpdatesAvailable\"1\n\x11RetryExternalCall\x12\x0f\n\x07\x61ttempt\x18\x01 \x01(\x05\x12\x0b\n\x03max\x18\x02 \x01(\x05\"j\n\x14RetryExternalCallMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.RetryExternalCall\"#\n\x14RecordRetryException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"p\n\x17RecordRetryExceptionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.RecordRetryException\".\n\x1fRegistryIndexProgressGETRequest\x12\x0b\n\x03url\x18\x01 \x01(\t\"\x86\x01\n\"RegistryIndexProgressGETRequestMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x88\x01\n#RegistryIndexProgressGETResponseMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12;\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32-.proto_types.RegistryIndexProgressGETResponse\"2\n\x1eRegistryResponseUnexpectedType\x12\x10\n\x08response\x18\x01 \x01(\t\"\x84\x01\n!RegistryResponseUnexpectedTypeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x84\x01\n!RegistryResponseMissingTopKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x8a\x01\n$RegistryResponseMissingNestedKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12<\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32..proto_types.RegistryResponseMissingNestedKeys\"3\n\x1fRegistryResponseExtraNestedKeys\x12\x10\n\x08response\x18\x01 \x01(\t\"\x86\x01\n\"RegistryResponseExtraNestedKeysMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"x\n\x1b\x44\x65psSetDownloadDirectoryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x44\x65psUnpinnedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"~\n\x1eNoNodesForSelectionCriteriaMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.NoNodesForSelectionCriteria\"*\n\x1bRunningOperationCaughtError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"~\n\x1eRunningOperationCaughtErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.RunningOperationCaughtError\"\x11\n\x0f\x43ompileComplete\"f\n\x12\x43ompileCompleteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.CompileComplete\"\x18\n\x16\x46reshnessCheckComplete\"t\n\x19\x46reshnessCheckCompleteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SeedHeader\"3\n\x12SQLRunnerException\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x02 \x01(\t\"l\n\x15SQLRunnerExceptionMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10LogTestResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fLogStartLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11LogModelResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.LogModelResult\"\xfa\x01\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\x1a*\n\x08\x43\x66gEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"j\n\x14LogSnapshotResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10LogSeedResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogFreshnessResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.LogFreshnessResult\"\"\n\rLogCancelLine\x12\x11\n\tconn_name\x18\x01 \x01(\t\"b\n\x10LogCancelLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x44\x65\x66\x61ultSelectorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"Z\n\x0cNodeStartMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fNodeFinishedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.NodeFinished\"+\n\x1bQueryCancelationUnsupported\x12\x0c\n\x04type\x18\x01 \x01(\t\"~\n\x1eQueryCancelationUnsupportedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12\x43oncurrencyLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1cWritingInjectedSQLForNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10NodeCompilingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"b\n\x10NodeExecutingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13LogHookStartLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11LogHookEndLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"f\n\x12SkippingDetailsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SkippingDetails\"\r\n\x0bNothingToDo\"^\n\x0eNothingToDoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"\x82\x01\n RunningOperationUncaughtErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x45ndRunResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.EndRunResult\"\x11\n\x0fNoNodesSelected\"f\n\x12NoNodesSelectedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13\x43ommandCompletedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"X\n\x0bShowNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0f\x43ompiledNodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"v\n\x1a\x43\x61tchableExceptionOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.CatchableExceptionOnRun\"5\n\x12InternalErrorOnRun\x12\x12\n\nbuild_path\x18\x01 \x01(\t\x12\x0b\n\x03\x65xc\x18\x02 \x01(\t\"l\n\x15InternalErrorOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.InternalErrorOnRun\"K\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\"r\n\x18GenericExceptionOnRunMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"|\n\x1dNodeConnectionReleaseErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.FoundStats\"\x17\n\x15MainKeyboardInterrupt\"r\n\x18MainKeyboardInterruptMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"p\n\x17MainEncounteredErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.MainEncounteredError\"%\n\x0eMainStackTrace\x12\x13\n\x0bstack_trace\x18\x01 \x01(\t\"d\n\x11MainStackTraceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.MainStackTrace\"@\n\x13SystemCouldNotWrite\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0e\n\x06reason\x18\x02 \x01(\t\x12\x0b\n\x03\x65xc\x18\x03 \x01(\t\"n\n\x16SystemCouldNotWriteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.SystemCouldNotWrite\"!\n\x12SystemExecutingCmd\x12\x0b\n\x03\x63md\x18\x01 \x03(\t\"l\n\x15SystemExecutingCmdMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.SystemExecutingCmd\"\x1c\n\x0cSystemStdOut\x12\x0c\n\x04\x62msg\x18\x01 \x01(\t\"`\n\x0fSystemStdOutMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SystemStdOut\"\x1c\n\x0cSystemStdErr\x12\x0c\n\x04\x62msg\x18\x01 \x01(\t\"`\n\x0fSystemStdErrMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SystemStdErr\",\n\x16SystemReportReturnCode\x12\x12\n\nreturncode\x18\x01 \x01(\x05\"t\n\x19SystemReportReturnCodeMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.SystemReportReturnCode\"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\"n\n\x16TimingInfoCollectedMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"l\n\x15LogDebugStackTraceMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11\x43heckCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"h\n\x13\x43onfirmCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConfirmCleanPath\"\"\n\x12ProtectedCleanPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"l\n\x15ProtectedCleanPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ProtectedCleanPath\"\x14\n\x12\x46inishedCleanPaths\"l\n\x15\x46inishedCleanPathsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"^\n\x0eOpenCommandMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.OpenCommand\"\x19\n\nFormatting\x12\x0b\n\x03msg\x18\x01 \x01(\t\"\\\n\rFormattingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.Formatting\"0\n\x0fServingDocsPort\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x0c\n\x04port\x18\x02 \x01(\x05\"f\n\x12ServingDocsPortMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.ServingDocsPort\"%\n\x15ServingDocsAccessInfo\x12\x0c\n\x04port\x18\x01 \x01(\t\"r\n\x18ServingDocsAccessInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ServingDocsAccessInfo\"\x15\n\x13ServingDocsExitInfo\"n\n\x16ServingDocsExitInfoMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.ServingDocsExitInfo\"J\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\"h\n\x13RunResultWarningMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.RunResultWarning\"J\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\"h\n\x13RunResultFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"Z\n\x0cStatsLineMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.StatsLine\"\x1d\n\x0eRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"d\n\x11RunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RunResultError\")\n\x17RunResultErrorNoMessage\x12\x0e\n\x06status\x18\x01 \x01(\t\"v\n\x1aRunResultErrorNoMessageMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.RunResultErrorNoMessage\"\x1f\n\x0fSQLCompiledPath\x12\x0c\n\x04path\x18\x01 \x01(\t\"f\n\x12SQLCompiledPathMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.SQLCompiledPath\"-\n\x14\x43heckNodeTestFailure\x12\x15\n\rrelation_name\x18\x01 \x01(\t\"p\n\x17\x43heckNodeTestFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.CheckNodeTestFailure\"\"\n\x13\x46irstRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"n\n\x16\x46irstRunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.FirstRunResultError\"\'\n\x18\x41\x66terFirstRunResultError\x12\x0b\n\x03msg\x18\x01 \x01(\t\"x\n\x1b\x41\x66terFirstRunResultErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.AfterFirstRunResultError\"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\"f\n\x12\x45ndOfRunSummaryMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"n\n\x16LogSkipBecauseErrorMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.LogSkipBecauseError\"\x14\n\x12\x45nsureGitInstalled\"l\n\x15\x45nsureGitInstalledMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.EnsureGitInstalled\"\x1a\n\x18\x44\x65psCreatingLocalSymlink\"x\n\x1b\x44\x65psCreatingLocalSymlinkMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DepsCreatingLocalSymlink\"\x19\n\x17\x44\x65psSymlinkNotAvailable\"v\n\x1a\x44\x65psSymlinkNotAvailableMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x32\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32$.proto_types.DepsSymlinkNotAvailable\"\x11\n\x0f\x44isableTracking\"f\n\x12\x44isableTrackingMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"`\n\x0fSendingEventMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.SendingEvent\"\x12\n\x10SendEventFailure\"h\n\x13SendEventFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.SendEventFailure\"\r\n\x0b\x46lushEvents\"^\n\x0e\x46lushEventsMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.FlushEvents\"\x14\n\x12\x46lushEventsFailure\"l\n\x15\x46lushEventsFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"z\n\x1cTrackingInitializeFailureMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.TrackingInitializeFailure\"&\n\x17RunResultWarningMessage\x12\x0b\n\x03msg\x18\x01 \x01(\t\"v\n\x1aRunResultWarningMessageMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"^\n\x0e\x44\x65\x62ugCmdOutMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\"d\n\x11\x44\x65\x62ugCmdResultMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\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\x16.proto_types.EventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.ListCmdOut\"\x13\n\x04Note\x12\x0b\n\x03msg\x18\x01 \x01(\t\"P\n\x07NoteMsg\x12$\n\x04info\x18\x01 \x01(\x0b\x32\x16.proto_types.EventInfo\x12\x1f\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x11.proto_types.Noteb\x06proto3') -_globals = globals() -_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) -_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'types_pb2', _globals) +_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals()) +_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'types_pb2', globals()) if _descriptor._USE_C_DESCRIPTORS == False: DESCRIPTOR._options = None @@ -35,870 +34,858 @@ _LOGSNAPSHOTRESULT_CFGENTRY._serialized_options = b'8\001' _STATSLINE_STATSENTRY._options = None _STATSLINE_STATSENTRY._serialized_options = b'8\001' - _globals['_EVENTINFO']._serialized_start=92 - _globals['_EVENTINFO']._serialized_end=365 - _globals['_EVENTINFO_EXTRAENTRY']._serialized_start=321 - _globals['_EVENTINFO_EXTRAENTRY']._serialized_end=365 - _globals['_TIMINGINFOMSG']._serialized_start=367 - _globals['_TIMINGINFOMSG']._serialized_end=494 - _globals['_NODERELATION']._serialized_start=496 - _globals['_NODERELATION']._serialized_end=582 - _globals['_NODEINFO']._serialized_start=585 - _globals['_NODEINFO']._serialized_end=858 - _globals['_RUNRESULTMSG']._serialized_start=861 - _globals['_RUNRESULTMSG']._serialized_end=1070 - _globals['_REFERENCEKEYMSG']._serialized_start=1072 - _globals['_REFERENCEKEYMSG']._serialized_end=1143 - _globals['_GENERICMESSAGE']._serialized_start=1145 - _globals['_GENERICMESSAGE']._serialized_end=1199 - _globals['_MAINREPORTVERSION']._serialized_start=1201 - _globals['_MAINREPORTVERSION']._serialized_end=1258 - _globals['_MAINREPORTVERSIONMSG']._serialized_start=1260 - _globals['_MAINREPORTVERSIONMSG']._serialized_end=1366 - _globals['_MAINREPORTARGS']._serialized_start=1368 - _globals['_MAINREPORTARGS']._serialized_end=1482 - _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_start=1439 - _globals['_MAINREPORTARGS_ARGSENTRY']._serialized_end=1482 - _globals['_MAINREPORTARGSMSG']._serialized_start=1484 - _globals['_MAINREPORTARGSMSG']._serialized_end=1584 - _globals['_MAINTRACKINGUSERSTATE']._serialized_start=1586 - _globals['_MAINTRACKINGUSERSTATE']._serialized_end=1629 - _globals['_MAINTRACKINGUSERSTATEMSG']._serialized_start=1631 - _globals['_MAINTRACKINGUSERSTATEMSG']._serialized_end=1745 - _globals['_MERGEDFROMSTATE']._serialized_start=1747 - _globals['_MERGEDFROMSTATE']._serialized_end=1800 - _globals['_MERGEDFROMSTATEMSG']._serialized_start=1802 - _globals['_MERGEDFROMSTATEMSG']._serialized_end=1904 - _globals['_MISSINGPROFILETARGET']._serialized_start=1906 - _globals['_MISSINGPROFILETARGET']._serialized_end=1971 - _globals['_MISSINGPROFILETARGETMSG']._serialized_start=1973 - _globals['_MISSINGPROFILETARGETMSG']._serialized_end=2085 - _globals['_INVALIDOPTIONYAML']._serialized_start=2087 - _globals['_INVALIDOPTIONYAML']._serialized_end=2127 - _globals['_INVALIDOPTIONYAMLMSG']._serialized_start=2129 - _globals['_INVALIDOPTIONYAMLMSG']._serialized_end=2235 - _globals['_LOGDBTPROJECTERROR']._serialized_start=2237 - _globals['_LOGDBTPROJECTERROR']._serialized_end=2270 - _globals['_LOGDBTPROJECTERRORMSG']._serialized_start=2272 - _globals['_LOGDBTPROJECTERRORMSG']._serialized_end=2380 - _globals['_LOGDBTPROFILEERROR']._serialized_start=2382 - _globals['_LOGDBTPROFILEERROR']._serialized_end=2433 - _globals['_LOGDBTPROFILEERRORMSG']._serialized_start=2435 - _globals['_LOGDBTPROFILEERRORMSG']._serialized_end=2543 - _globals['_STARTERPROJECTPATH']._serialized_start=2545 - _globals['_STARTERPROJECTPATH']._serialized_end=2578 - _globals['_STARTERPROJECTPATHMSG']._serialized_start=2580 - _globals['_STARTERPROJECTPATHMSG']._serialized_end=2688 - _globals['_CONFIGFOLDERDIRECTORY']._serialized_start=2690 - _globals['_CONFIGFOLDERDIRECTORY']._serialized_end=2726 - _globals['_CONFIGFOLDERDIRECTORYMSG']._serialized_start=2728 - _globals['_CONFIGFOLDERDIRECTORYMSG']._serialized_end=2842 - _globals['_NOSAMPLEPROFILEFOUND']._serialized_start=2844 - _globals['_NOSAMPLEPROFILEFOUND']._serialized_end=2883 - _globals['_NOSAMPLEPROFILEFOUNDMSG']._serialized_start=2885 - _globals['_NOSAMPLEPROFILEFOUNDMSG']._serialized_end=2997 - _globals['_PROFILEWRITTENWITHSAMPLE']._serialized_start=2999 - _globals['_PROFILEWRITTENWITHSAMPLE']._serialized_end=3053 - _globals['_PROFILEWRITTENWITHSAMPLEMSG']._serialized_start=3055 - _globals['_PROFILEWRITTENWITHSAMPLEMSG']._serialized_end=3175 - _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAML']._serialized_start=3177 - _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAML']._serialized_end=3243 - _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG']._serialized_start=3246 - _globals['_PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG']._serialized_end=3390 - _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAML']._serialized_start=3392 - _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAML']._serialized_end=3459 - _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG']._serialized_start=3462 - _globals['_PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG']._serialized_end=3608 - _globals['_SETTINGUPPROFILE']._serialized_start=3610 - _globals['_SETTINGUPPROFILE']._serialized_end=3628 - _globals['_SETTINGUPPROFILEMSG']._serialized_start=3630 - _globals['_SETTINGUPPROFILEMSG']._serialized_end=3734 - _globals['_INVALIDPROFILETEMPLATEYAML']._serialized_start=3736 - _globals['_INVALIDPROFILETEMPLATEYAML']._serialized_end=3764 - _globals['_INVALIDPROFILETEMPLATEYAMLMSG']._serialized_start=3766 - _globals['_INVALIDPROFILETEMPLATEYAMLMSG']._serialized_end=3890 - _globals['_PROJECTNAMEALREADYEXISTS']._serialized_start=3892 - _globals['_PROJECTNAMEALREADYEXISTS']._serialized_end=3932 - _globals['_PROJECTNAMEALREADYEXISTSMSG']._serialized_start=3934 - _globals['_PROJECTNAMEALREADYEXISTSMSG']._serialized_end=4054 - _globals['_PROJECTCREATED']._serialized_start=4056 - _globals['_PROJECTCREATED']._serialized_end=4131 - _globals['_PROJECTCREATEDMSG']._serialized_start=4133 - _globals['_PROJECTCREATEDMSG']._serialized_end=4233 - _globals['_PACKAGEREDIRECTDEPRECATION']._serialized_start=4235 - _globals['_PACKAGEREDIRECTDEPRECATION']._serialized_end=4299 - _globals['_PACKAGEREDIRECTDEPRECATIONMSG']._serialized_start=4301 - _globals['_PACKAGEREDIRECTDEPRECATIONMSG']._serialized_end=4425 - _globals['_PACKAGEINSTALLPATHDEPRECATION']._serialized_start=4427 - _globals['_PACKAGEINSTALLPATHDEPRECATION']._serialized_end=4458 - _globals['_PACKAGEINSTALLPATHDEPRECATIONMSG']._serialized_start=4461 - _globals['_PACKAGEINSTALLPATHDEPRECATIONMSG']._serialized_end=4591 - _globals['_CONFIGSOURCEPATHDEPRECATION']._serialized_start=4593 - _globals['_CONFIGSOURCEPATHDEPRECATION']._serialized_end=4665 - _globals['_CONFIGSOURCEPATHDEPRECATIONMSG']._serialized_start=4667 - _globals['_CONFIGSOURCEPATHDEPRECATIONMSG']._serialized_end=4793 - _globals['_CONFIGDATAPATHDEPRECATION']._serialized_start=4795 - _globals['_CONFIGDATAPATHDEPRECATION']._serialized_end=4865 - _globals['_CONFIGDATAPATHDEPRECATIONMSG']._serialized_start=4867 - _globals['_CONFIGDATAPATHDEPRECATIONMSG']._serialized_end=4989 - _globals['_ADAPTERDEPRECATIONWARNING']._serialized_start=4991 - _globals['_ADAPTERDEPRECATIONWARNING']._serialized_end=5054 - _globals['_ADAPTERDEPRECATIONWARNINGMSG']._serialized_start=5056 - _globals['_ADAPTERDEPRECATIONWARNINGMSG']._serialized_end=5178 - _globals['_METRICATTRIBUTESRENAMED']._serialized_start=5180 - _globals['_METRICATTRIBUTESRENAMED']._serialized_end=5226 - _globals['_METRICATTRIBUTESRENAMEDMSG']._serialized_start=5228 - _globals['_METRICATTRIBUTESRENAMEDMSG']._serialized_end=5346 - _globals['_EXPOSURENAMEDEPRECATION']._serialized_start=5348 - _globals['_EXPOSURENAMEDEPRECATION']._serialized_end=5391 - _globals['_EXPOSURENAMEDEPRECATIONMSG']._serialized_start=5393 - _globals['_EXPOSURENAMEDEPRECATIONMSG']._serialized_end=5511 - _globals['_INTERNALDEPRECATION']._serialized_start=5513 - _globals['_INTERNALDEPRECATION']._serialized_end=5607 - _globals['_INTERNALDEPRECATIONMSG']._serialized_start=5609 - _globals['_INTERNALDEPRECATIONMSG']._serialized_end=5719 - _globals['_ENVIRONMENTVARIABLERENAMED']._serialized_start=5721 - _globals['_ENVIRONMENTVARIABLERENAMED']._serialized_end=5785 - _globals['_ENVIRONMENTVARIABLERENAMEDMSG']._serialized_start=5787 - _globals['_ENVIRONMENTVARIABLERENAMEDMSG']._serialized_end=5911 - _globals['_CONFIGLOGPATHDEPRECATION']._serialized_start=5913 - _globals['_CONFIGLOGPATHDEPRECATION']._serialized_end=5964 - _globals['_CONFIGLOGPATHDEPRECATIONMSG']._serialized_start=5966 - _globals['_CONFIGLOGPATHDEPRECATIONMSG']._serialized_end=6086 - _globals['_CONFIGTARGETPATHDEPRECATION']._serialized_start=6088 - _globals['_CONFIGTARGETPATHDEPRECATION']._serialized_end=6142 - _globals['_CONFIGTARGETPATHDEPRECATIONMSG']._serialized_start=6144 - _globals['_CONFIGTARGETPATHDEPRECATIONMSG']._serialized_end=6270 - _globals['_COLLECTFRESHNESSRETURNSIGNATURE']._serialized_start=6272 - _globals['_COLLECTFRESHNESSRETURNSIGNATURE']._serialized_end=6305 - _globals['_COLLECTFRESHNESSRETURNSIGNATUREMSG']._serialized_start=6308 - _globals['_COLLECTFRESHNESSRETURNSIGNATUREMSG']._serialized_end=6442 - _globals['_ADAPTEREVENTDEBUG']._serialized_start=6445 - _globals['_ADAPTEREVENTDEBUG']._serialized_end=6580 - _globals['_ADAPTEREVENTDEBUGMSG']._serialized_start=6582 - _globals['_ADAPTEREVENTDEBUGMSG']._serialized_end=6688 - _globals['_ADAPTEREVENTINFO']._serialized_start=6691 - _globals['_ADAPTEREVENTINFO']._serialized_end=6825 - _globals['_ADAPTEREVENTINFOMSG']._serialized_start=6827 - _globals['_ADAPTEREVENTINFOMSG']._serialized_end=6931 - _globals['_ADAPTEREVENTWARNING']._serialized_start=6934 - _globals['_ADAPTEREVENTWARNING']._serialized_end=7071 - _globals['_ADAPTEREVENTWARNINGMSG']._serialized_start=7073 - _globals['_ADAPTEREVENTWARNINGMSG']._serialized_end=7183 - _globals['_ADAPTEREVENTERROR']._serialized_start=7186 - _globals['_ADAPTEREVENTERROR']._serialized_end=7339 - _globals['_ADAPTEREVENTERRORMSG']._serialized_start=7341 - _globals['_ADAPTEREVENTERRORMSG']._serialized_end=7447 - _globals['_NEWCONNECTION']._serialized_start=7449 - _globals['_NEWCONNECTION']._serialized_end=7544 - _globals['_NEWCONNECTIONMSG']._serialized_start=7546 - _globals['_NEWCONNECTIONMSG']._serialized_end=7644 - _globals['_CONNECTIONREUSED']._serialized_start=7646 - _globals['_CONNECTIONREUSED']._serialized_end=7707 - _globals['_CONNECTIONREUSEDMSG']._serialized_start=7709 - _globals['_CONNECTIONREUSEDMSG']._serialized_end=7813 - _globals['_CONNECTIONLEFTOPENINCLEANUP']._serialized_start=7815 - _globals['_CONNECTIONLEFTOPENINCLEANUP']._serialized_end=7863 - _globals['_CONNECTIONLEFTOPENINCLEANUPMSG']._serialized_start=7865 - _globals['_CONNECTIONLEFTOPENINCLEANUPMSG']._serialized_end=7991 - _globals['_CONNECTIONCLOSEDINCLEANUP']._serialized_start=7993 - _globals['_CONNECTIONCLOSEDINCLEANUP']._serialized_end=8039 - _globals['_CONNECTIONCLOSEDINCLEANUPMSG']._serialized_start=8041 - _globals['_CONNECTIONCLOSEDINCLEANUPMSG']._serialized_end=8163 - _globals['_ROLLBACKFAILED']._serialized_start=8165 - _globals['_ROLLBACKFAILED']._serialized_end=8260 - _globals['_ROLLBACKFAILEDMSG']._serialized_start=8262 - _globals['_ROLLBACKFAILEDMSG']._serialized_end=8362 - _globals['_CONNECTIONCLOSED']._serialized_start=8364 - _globals['_CONNECTIONCLOSED']._serialized_end=8443 - _globals['_CONNECTIONCLOSEDMSG']._serialized_start=8445 - _globals['_CONNECTIONCLOSEDMSG']._serialized_end=8549 - _globals['_CONNECTIONLEFTOPEN']._serialized_start=8551 - _globals['_CONNECTIONLEFTOPEN']._serialized_end=8632 - _globals['_CONNECTIONLEFTOPENMSG']._serialized_start=8634 - _globals['_CONNECTIONLEFTOPENMSG']._serialized_end=8742 - _globals['_ROLLBACK']._serialized_start=8744 - _globals['_ROLLBACK']._serialized_end=8815 - _globals['_ROLLBACKMSG']._serialized_start=8817 - _globals['_ROLLBACKMSG']._serialized_end=8905 - _globals['_CACHEMISS']._serialized_start=8907 - _globals['_CACHEMISS']._serialized_end=8971 - _globals['_CACHEMISSMSG']._serialized_start=8973 - _globals['_CACHEMISSMSG']._serialized_end=9063 - _globals['_LISTRELATIONS']._serialized_start=9065 - _globals['_LISTRELATIONS']._serialized_end=9163 - _globals['_LISTRELATIONSMSG']._serialized_start=9165 - _globals['_LISTRELATIONSMSG']._serialized_end=9263 - _globals['_CONNECTIONUSED']._serialized_start=9265 - _globals['_CONNECTIONUSED']._serialized_end=9361 - _globals['_CONNECTIONUSEDMSG']._serialized_start=9363 - _globals['_CONNECTIONUSEDMSG']._serialized_end=9463 - _globals['_SQLQUERY']._serialized_start=9465 - _globals['_SQLQUERY']._serialized_end=9549 - _globals['_SQLQUERYMSG']._serialized_start=9551 - _globals['_SQLQUERYMSG']._serialized_end=9639 - _globals['_SQLQUERYSTATUS']._serialized_start=9641 - _globals['_SQLQUERYSTATUS']._serialized_end=9732 - _globals['_SQLQUERYSTATUSMSG']._serialized_start=9734 - _globals['_SQLQUERYSTATUSMSG']._serialized_end=9834 - _globals['_SQLCOMMIT']._serialized_start=9836 - _globals['_SQLCOMMIT']._serialized_end=9908 - _globals['_SQLCOMMITMSG']._serialized_start=9910 - _globals['_SQLCOMMITMSG']._serialized_end=10000 - _globals['_COLTYPECHANGE']._serialized_start=10002 - _globals['_COLTYPECHANGE']._serialized_end=10099 - _globals['_COLTYPECHANGEMSG']._serialized_start=10101 - _globals['_COLTYPECHANGEMSG']._serialized_end=10199 - _globals['_SCHEMACREATION']._serialized_start=10201 - _globals['_SCHEMACREATION']._serialized_end=10265 - _globals['_SCHEMACREATIONMSG']._serialized_start=10267 - _globals['_SCHEMACREATIONMSG']._serialized_end=10367 - _globals['_SCHEMADROP']._serialized_start=10369 - _globals['_SCHEMADROP']._serialized_end=10429 - _globals['_SCHEMADROPMSG']._serialized_start=10431 - _globals['_SCHEMADROPMSG']._serialized_end=10523 - _globals['_CACHEACTION']._serialized_start=10526 - _globals['_CACHEACTION']._serialized_end=10748 - _globals['_CACHEACTIONMSG']._serialized_start=10750 - _globals['_CACHEACTIONMSG']._serialized_end=10844 - _globals['_CACHEDUMPGRAPH']._serialized_start=10847 - _globals['_CACHEDUMPGRAPH']._serialized_end=10999 - _globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_start=10956 - _globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_end=10999 - _globals['_CACHEDUMPGRAPHMSG']._serialized_start=11001 - _globals['_CACHEDUMPGRAPHMSG']._serialized_end=11101 - _globals['_ADAPTERREGISTERED']._serialized_start=11103 - _globals['_ADAPTERREGISTERED']._serialized_end=11169 - _globals['_ADAPTERREGISTEREDMSG']._serialized_start=11171 - _globals['_ADAPTERREGISTEREDMSG']._serialized_end=11277 - _globals['_ADAPTERIMPORTERROR']._serialized_start=11279 - _globals['_ADAPTERIMPORTERROR']._serialized_end=11312 - _globals['_ADAPTERIMPORTERRORMSG']._serialized_start=11314 - _globals['_ADAPTERIMPORTERRORMSG']._serialized_end=11422 - _globals['_PLUGINLOADERROR']._serialized_start=11424 - _globals['_PLUGINLOADERROR']._serialized_end=11459 - _globals['_PLUGINLOADERRORMSG']._serialized_start=11461 - _globals['_PLUGINLOADERRORMSG']._serialized_end=11563 - _globals['_NEWCONNECTIONOPENING']._serialized_start=11565 - _globals['_NEWCONNECTIONOPENING']._serialized_end=11655 - _globals['_NEWCONNECTIONOPENINGMSG']._serialized_start=11657 - _globals['_NEWCONNECTIONOPENINGMSG']._serialized_end=11769 - _globals['_CODEEXECUTION']._serialized_start=11771 - _globals['_CODEEXECUTION']._serialized_end=11827 - _globals['_CODEEXECUTIONMSG']._serialized_start=11829 - _globals['_CODEEXECUTIONMSG']._serialized_end=11927 - _globals['_CODEEXECUTIONSTATUS']._serialized_start=11929 - _globals['_CODEEXECUTIONSTATUS']._serialized_end=11983 - _globals['_CODEEXECUTIONSTATUSMSG']._serialized_start=11985 - _globals['_CODEEXECUTIONSTATUSMSG']._serialized_end=12095 - _globals['_CATALOGGENERATIONERROR']._serialized_start=12097 - _globals['_CATALOGGENERATIONERROR']._serialized_end=12134 - _globals['_CATALOGGENERATIONERRORMSG']._serialized_start=12136 - _globals['_CATALOGGENERATIONERRORMSG']._serialized_end=12252 - _globals['_WRITECATALOGFAILURE']._serialized_start=12254 - _globals['_WRITECATALOGFAILURE']._serialized_end=12299 - _globals['_WRITECATALOGFAILUREMSG']._serialized_start=12301 - _globals['_WRITECATALOGFAILUREMSG']._serialized_end=12411 - _globals['_CATALOGWRITTEN']._serialized_start=12413 - _globals['_CATALOGWRITTEN']._serialized_end=12443 - _globals['_CATALOGWRITTENMSG']._serialized_start=12445 - _globals['_CATALOGWRITTENMSG']._serialized_end=12545 - _globals['_CANNOTGENERATEDOCS']._serialized_start=12547 - _globals['_CANNOTGENERATEDOCS']._serialized_end=12567 - _globals['_CANNOTGENERATEDOCSMSG']._serialized_start=12569 - _globals['_CANNOTGENERATEDOCSMSG']._serialized_end=12677 - _globals['_BUILDINGCATALOG']._serialized_start=12679 - _globals['_BUILDINGCATALOG']._serialized_end=12696 - _globals['_BUILDINGCATALOGMSG']._serialized_start=12698 - _globals['_BUILDINGCATALOGMSG']._serialized_end=12800 - _globals['_DATABASEERRORRUNNINGHOOK']._serialized_start=12802 - _globals['_DATABASEERRORRUNNINGHOOK']._serialized_end=12847 - _globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_start=12849 - _globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_end=12969 - _globals['_HOOKSRUNNING']._serialized_start=12971 - _globals['_HOOKSRUNNING']._serialized_end=13023 - _globals['_HOOKSRUNNINGMSG']._serialized_start=13025 - _globals['_HOOKSRUNNINGMSG']._serialized_end=13121 - _globals['_FINISHEDRUNNINGSTATS']._serialized_start=13123 - _globals['_FINISHEDRUNNINGSTATS']._serialized_end=13207 - _globals['_FINISHEDRUNNINGSTATSMSG']._serialized_start=13209 - _globals['_FINISHEDRUNNINGSTATSMSG']._serialized_end=13321 - _globals['_CONSTRAINTNOTENFORCED']._serialized_start=13323 - _globals['_CONSTRAINTNOTENFORCED']._serialized_end=13383 - _globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_start=13385 - _globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_end=13499 - _globals['_CONSTRAINTNOTSUPPORTED']._serialized_start=13501 - _globals['_CONSTRAINTNOTSUPPORTED']._serialized_end=13562 - _globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_start=13564 - _globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_end=13680 - _globals['_INPUTFILEDIFFERROR']._serialized_start=13682 - _globals['_INPUTFILEDIFFERROR']._serialized_end=13737 - _globals['_INPUTFILEDIFFERRORMSG']._serialized_start=13739 - _globals['_INPUTFILEDIFFERRORMSG']._serialized_end=13847 - _globals['_PUBLICATIONARTIFACTCHANGED']._serialized_start=13849 - _globals['_PUBLICATIONARTIFACTCHANGED']._serialized_end=13965 - _globals['_PUBLICATIONARTIFACTCHANGEDMSG']._serialized_start=13967 - _globals['_PUBLICATIONARTIFACTCHANGEDMSG']._serialized_end=14091 - _globals['_INVALIDVALUEFORFIELD']._serialized_start=14093 - _globals['_INVALIDVALUEFORFIELD']._serialized_end=14156 - _globals['_INVALIDVALUEFORFIELDMSG']._serialized_start=14158 - _globals['_INVALIDVALUEFORFIELDMSG']._serialized_end=14270 - _globals['_VALIDATIONWARNING']._serialized_start=14272 - _globals['_VALIDATIONWARNING']._serialized_end=14353 - _globals['_VALIDATIONWARNINGMSG']._serialized_start=14355 - _globals['_VALIDATIONWARNINGMSG']._serialized_end=14461 - _globals['_PARSEPERFINFOPATH']._serialized_start=14463 - _globals['_PARSEPERFINFOPATH']._serialized_end=14496 - _globals['_PARSEPERFINFOPATHMSG']._serialized_start=14498 - _globals['_PARSEPERFINFOPATHMSG']._serialized_end=14604 - _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_start=14606 - _globals['_PARTIALPARSINGERRORPROCESSINGFILE']._serialized_end=14655 - _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_start=14658 - _globals['_PARTIALPARSINGERRORPROCESSINGFILEMSG']._serialized_end=14796 - _globals['_PARTIALPARSINGERROR']._serialized_start=14799 - _globals['_PARTIALPARSINGERROR']._serialized_end=14933 - _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_start=14887 - _globals['_PARTIALPARSINGERROR_EXCINFOENTRY']._serialized_end=14933 - _globals['_PARTIALPARSINGERRORMSG']._serialized_start=14935 - _globals['_PARTIALPARSINGERRORMSG']._serialized_end=15045 - _globals['_PARTIALPARSINGSKIPPARSING']._serialized_start=15047 - _globals['_PARTIALPARSINGSKIPPARSING']._serialized_end=15074 - _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_start=15076 - _globals['_PARTIALPARSINGSKIPPARSINGMSG']._serialized_end=15198 - _globals['_UNABLETOPARTIALPARSE']._serialized_start=15200 - _globals['_UNABLETOPARTIALPARSE']._serialized_end=15238 - _globals['_UNABLETOPARTIALPARSEMSG']._serialized_start=15240 - _globals['_UNABLETOPARTIALPARSEMSG']._serialized_end=15352 - _globals['_STATECHECKVARSHASH']._serialized_start=15354 - _globals['_STATECHECKVARSHASH']._serialized_end=15456 - _globals['_STATECHECKVARSHASHMSG']._serialized_start=15458 - _globals['_STATECHECKVARSHASHMSG']._serialized_end=15566 - _globals['_PARTIALPARSINGNOTENABLED']._serialized_start=15568 - _globals['_PARTIALPARSINGNOTENABLED']._serialized_end=15594 - _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_start=15596 - _globals['_PARTIALPARSINGNOTENABLEDMSG']._serialized_end=15716 - _globals['_PARSEDFILELOADFAILED']._serialized_start=15718 - _globals['_PARSEDFILELOADFAILED']._serialized_end=15785 - _globals['_PARSEDFILELOADFAILEDMSG']._serialized_start=15787 - _globals['_PARSEDFILELOADFAILEDMSG']._serialized_end=15899 - _globals['_PARTIALPARSINGENABLED']._serialized_start=15901 - _globals['_PARTIALPARSINGENABLED']._serialized_end=15973 - _globals['_PARTIALPARSINGENABLEDMSG']._serialized_start=15975 - _globals['_PARTIALPARSINGENABLEDMSG']._serialized_end=16089 - _globals['_PARTIALPARSINGFILE']._serialized_start=16091 - _globals['_PARTIALPARSINGFILE']._serialized_end=16147 - _globals['_PARTIALPARSINGFILEMSG']._serialized_start=16149 - _globals['_PARTIALPARSINGFILEMSG']._serialized_end=16257 - _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_start=16260 - _globals['_INVALIDDISABLEDTARGETINTESTNODE']._serialized_end=16435 - _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_start=16438 - _globals['_INVALIDDISABLEDTARGETINTESTNODEMSG']._serialized_end=16572 - _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_start=16574 - _globals['_UNUSEDRESOURCECONFIGPATH']._serialized_end=16629 - _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_start=16631 - _globals['_UNUSEDRESOURCECONFIGPATHMSG']._serialized_end=16751 - _globals['_SEEDINCREASED']._serialized_start=16753 - _globals['_SEEDINCREASED']._serialized_end=16804 - _globals['_SEEDINCREASEDMSG']._serialized_start=16806 - _globals['_SEEDINCREASEDMSG']._serialized_end=16904 - _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_start=16906 - _globals['_SEEDEXCEEDSLIMITSAMEPATH']._serialized_end=16968 - _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_start=16970 - _globals['_SEEDEXCEEDSLIMITSAMEPATHMSG']._serialized_end=17090 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_start=17092 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGED']._serialized_end=17160 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_start=17163 - _globals['_SEEDEXCEEDSLIMITANDPATHCHANGEDMSG']._serialized_end=17295 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_start=17297 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGED']._serialized_end=17389 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_start=17392 - _globals['_SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG']._serialized_end=17526 - _globals['_UNUSEDTABLES']._serialized_start=17528 - _globals['_UNUSEDTABLES']._serialized_end=17565 - _globals['_UNUSEDTABLESMSG']._serialized_start=17567 - _globals['_UNUSEDTABLESMSG']._serialized_end=17663 - _globals['_WRONGRESOURCESCHEMAFILE']._serialized_start=17666 - _globals['_WRONGRESOURCESCHEMAFILE']._serialized_end=17801 - _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_start=17803 - _globals['_WRONGRESOURCESCHEMAFILEMSG']._serialized_end=17921 - _globals['_NONODEFORYAMLKEY']._serialized_start=17923 - _globals['_NONODEFORYAMLKEY']._serialized_end=17998 - _globals['_NONODEFORYAMLKEYMSG']._serialized_start=18000 - _globals['_NONODEFORYAMLKEYMSG']._serialized_end=18104 - _globals['_MACRONOTFOUNDFORPATCH']._serialized_start=18106 - _globals['_MACRONOTFOUNDFORPATCH']._serialized_end=18149 - _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_start=18151 - _globals['_MACRONOTFOUNDFORPATCHMSG']._serialized_end=18265 - _globals['_NODENOTFOUNDORDISABLED']._serialized_start=18268 - _globals['_NODENOTFOUNDORDISABLED']._serialized_end=18452 - _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_start=18454 - _globals['_NODENOTFOUNDORDISABLEDMSG']._serialized_end=18570 - _globals['_JINJALOGWARNING']._serialized_start=18572 - _globals['_JINJALOGWARNING']._serialized_end=18644 - _globals['_JINJALOGWARNINGMSG']._serialized_start=18646 - _globals['_JINJALOGWARNINGMSG']._serialized_end=18748 - _globals['_JINJALOGINFO']._serialized_start=18750 - _globals['_JINJALOGINFO']._serialized_end=18819 - _globals['_JINJALOGINFOMSG']._serialized_start=18821 - _globals['_JINJALOGINFOMSG']._serialized_end=18917 - _globals['_JINJALOGDEBUG']._serialized_start=18919 - _globals['_JINJALOGDEBUG']._serialized_end=18989 - _globals['_JINJALOGDEBUGMSG']._serialized_start=18991 - _globals['_JINJALOGDEBUGMSG']._serialized_end=19089 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_start=19092 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLE']._serialized_end=19266 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_start=19269 - _globals['_UNPINNEDREFNEWVERSIONAVAILABLEMSG']._serialized_end=19401 - _globals['_DEPRECATEDMODEL']._serialized_start=19403 - _globals['_DEPRECATEDMODEL']._serialized_end=19489 - _globals['_DEPRECATEDMODELMSG']._serialized_start=19491 - _globals['_DEPRECATEDMODELMSG']._serialized_end=19593 - _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_start=19596 - _globals['_UPCOMINGREFERENCEDEPRECATION']._serialized_end=19794 - _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_start=19797 - _globals['_UPCOMINGREFERENCEDEPRECATIONMSG']._serialized_end=19925 - _globals['_DEPRECATEDREFERENCE']._serialized_start=19928 - _globals['_DEPRECATEDREFERENCE']._serialized_end=20117 - _globals['_DEPRECATEDREFERENCEMSG']._serialized_start=20119 - _globals['_DEPRECATEDREFERENCEMSG']._serialized_end=20229 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_start=20231 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATION']._serialized_end=20291 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_start=20294 - _globals['_UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG']._serialized_end=20438 - _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_start=20440 - _globals['_GITSPARSECHECKOUTSUBDIRECTORY']._serialized_end=20487 - _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_start=20490 - _globals['_GITSPARSECHECKOUTSUBDIRECTORYMSG']._serialized_end=20620 - _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_start=20622 - _globals['_GITPROGRESSCHECKOUTREVISION']._serialized_end=20669 - _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_start=20671 - _globals['_GITPROGRESSCHECKOUTREVISIONMSG']._serialized_end=20797 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_start=20799 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCY']._serialized_end=20851 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_start=20854 - _globals['_GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG']._serialized_end=21000 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_start=21002 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCY']._serialized_end=21048 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_start=21051 - _globals['_GITPROGRESSPULLINGNEWDEPENDENCYMSG']._serialized_end=21185 - _globals['_GITNOTHINGTODO']._serialized_start=21187 - _globals['_GITNOTHINGTODO']._serialized_end=21216 - _globals['_GITNOTHINGTODOMSG']._serialized_start=21218 - _globals['_GITNOTHINGTODOMSG']._serialized_end=21318 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_start=21320 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGE']._serialized_end=21389 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_start=21392 - _globals['_GITPROGRESSUPDATEDCHECKOUTRANGEMSG']._serialized_end=21526 - _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_start=21528 - _globals['_GITPROGRESSCHECKEDOUTAT']._serialized_end=21570 - _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_start=21572 - _globals['_GITPROGRESSCHECKEDOUTATMSG']._serialized_end=21690 - _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_start=21692 - _globals['_REGISTRYPROGRESSGETREQUEST']._serialized_end=21733 - _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_start=21735 - _globals['_REGISTRYPROGRESSGETREQUESTMSG']._serialized_end=21859 - _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_start=21861 - _globals['_REGISTRYPROGRESSGETRESPONSE']._serialized_end=21922 - _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_start=21924 - _globals['_REGISTRYPROGRESSGETRESPONSEMSG']._serialized_end=22050 - _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_start=22052 - _globals['_SELECTORREPORTINVALIDSELECTOR']._serialized_end=22147 - _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_start=22150 - _globals['_SELECTORREPORTINVALIDSELECTORMSG']._serialized_end=22280 - _globals['_DEPSNOPACKAGESFOUND']._serialized_start=22282 - _globals['_DEPSNOPACKAGESFOUND']._serialized_end=22303 - _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_start=22305 - _globals['_DEPSNOPACKAGESFOUNDMSG']._serialized_end=22415 - _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_start=22417 - _globals['_DEPSSTARTPACKAGEINSTALL']._serialized_end=22464 - _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_start=22466 - _globals['_DEPSSTARTPACKAGEINSTALLMSG']._serialized_end=22584 - _globals['_DEPSINSTALLINFO']._serialized_start=22586 - _globals['_DEPSINSTALLINFO']._serialized_end=22625 - _globals['_DEPSINSTALLINFOMSG']._serialized_start=22627 - _globals['_DEPSINSTALLINFOMSG']._serialized_end=22729 - _globals['_DEPSUPDATEAVAILABLE']._serialized_start=22731 - _globals['_DEPSUPDATEAVAILABLE']._serialized_end=22776 - _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_start=22778 - _globals['_DEPSUPDATEAVAILABLEMSG']._serialized_end=22888 - _globals['_DEPSUPTODATE']._serialized_start=22890 - _globals['_DEPSUPTODATE']._serialized_end=22904 - _globals['_DEPSUPTODATEMSG']._serialized_start=22906 - _globals['_DEPSUPTODATEMSG']._serialized_end=23002 - _globals['_DEPSLISTSUBDIRECTORY']._serialized_start=23004 - _globals['_DEPSLISTSUBDIRECTORY']._serialized_end=23048 - _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_start=23050 - _globals['_DEPSLISTSUBDIRECTORYMSG']._serialized_end=23162 - _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_start=23164 - _globals['_DEPSNOTIFYUPDATESAVAILABLE']._serialized_end=23210 - _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_start=23212 - _globals['_DEPSNOTIFYUPDATESAVAILABLEMSG']._serialized_end=23336 - _globals['_RETRYEXTERNALCALL']._serialized_start=23338 - _globals['_RETRYEXTERNALCALL']._serialized_end=23387 - _globals['_RETRYEXTERNALCALLMSG']._serialized_start=23389 - _globals['_RETRYEXTERNALCALLMSG']._serialized_end=23495 - _globals['_RECORDRETRYEXCEPTION']._serialized_start=23497 - _globals['_RECORDRETRYEXCEPTION']._serialized_end=23532 - _globals['_RECORDRETRYEXCEPTIONMSG']._serialized_start=23534 - _globals['_RECORDRETRYEXCEPTIONMSG']._serialized_end=23646 - _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_start=23648 - _globals['_REGISTRYINDEXPROGRESSGETREQUEST']._serialized_end=23694 - _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_start=23697 - _globals['_REGISTRYINDEXPROGRESSGETREQUESTMSG']._serialized_end=23831 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_start=23833 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSE']._serialized_end=23899 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_start=23902 - _globals['_REGISTRYINDEXPROGRESSGETRESPONSEMSG']._serialized_end=24038 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_start=24040 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPE']._serialized_end=24090 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_start=24093 - _globals['_REGISTRYRESPONSEUNEXPECTEDTYPEMSG']._serialized_end=24225 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_start=24227 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYS']._serialized_end=24277 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_start=24280 - _globals['_REGISTRYRESPONSEMISSINGTOPKEYSMSG']._serialized_end=24412 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_start=24414 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYS']._serialized_end=24467 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_start=24470 - _globals['_REGISTRYRESPONSEMISSINGNESTEDKEYSMSG']._serialized_end=24608 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_start=24610 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYS']._serialized_end=24661 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_start=24664 - _globals['_REGISTRYRESPONSEEXTRANESTEDKEYSMSG']._serialized_end=24798 - _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_start=24800 - _globals['_DEPSSETDOWNLOADDIRECTORY']._serialized_end=24840 - _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_start=24842 - _globals['_DEPSSETDOWNLOADDIRECTORYMSG']._serialized_end=24962 - _globals['_DEPSUNPINNED']._serialized_start=24964 - _globals['_DEPSUNPINNED']._serialized_end=25009 - _globals['_DEPSUNPINNEDMSG']._serialized_start=25011 - _globals['_DEPSUNPINNEDMSG']._serialized_end=25107 - _globals['_NONODESFORSELECTIONCRITERIA']._serialized_start=25109 - _globals['_NONODESFORSELECTIONCRITERIA']._serialized_end=25156 - _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_start=25158 - _globals['_NONODESFORSELECTIONCRITERIAMSG']._serialized_end=25284 - _globals['_PUBLICATIONARTIFACTAVAILABLE']._serialized_start=25286 - _globals['_PUBLICATIONARTIFACTAVAILABLE']._serialized_end=25363 - _globals['_PUBLICATIONARTIFACTAVAILABLEMSG']._serialized_start=25366 - _globals['_PUBLICATIONARTIFACTAVAILABLEMSG']._serialized_end=25494 - _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_start=25496 - _globals['_RUNNINGOPERATIONCAUGHTERROR']._serialized_end=25538 - _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_start=25540 - _globals['_RUNNINGOPERATIONCAUGHTERRORMSG']._serialized_end=25666 - _globals['_COMPILECOMPLETE']._serialized_start=25668 - _globals['_COMPILECOMPLETE']._serialized_end=25685 - _globals['_COMPILECOMPLETEMSG']._serialized_start=25687 - _globals['_COMPILECOMPLETEMSG']._serialized_end=25789 - _globals['_FRESHNESSCHECKCOMPLETE']._serialized_start=25791 - _globals['_FRESHNESSCHECKCOMPLETE']._serialized_end=25815 - _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_start=25817 - _globals['_FRESHNESSCHECKCOMPLETEMSG']._serialized_end=25933 - _globals['_SEEDHEADER']._serialized_start=25935 - _globals['_SEEDHEADER']._serialized_end=25963 - _globals['_SEEDHEADERMSG']._serialized_start=25965 - _globals['_SEEDHEADERMSG']._serialized_end=26057 - _globals['_SQLRUNNEREXCEPTION']._serialized_start=26059 - _globals['_SQLRUNNEREXCEPTION']._serialized_end=26110 - _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_start=26112 - _globals['_SQLRUNNEREXCEPTIONMSG']._serialized_end=26220 - _globals['_LOGTESTRESULT']._serialized_start=26223 - _globals['_LOGTESTRESULT']._serialized_end=26391 - _globals['_LOGTESTRESULTMSG']._serialized_start=26393 - _globals['_LOGTESTRESULTMSG']._serialized_end=26491 - _globals['_LOGSTARTLINE']._serialized_start=26493 - _globals['_LOGSTARTLINE']._serialized_end=26600 - _globals['_LOGSTARTLINEMSG']._serialized_start=26602 - _globals['_LOGSTARTLINEMSG']._serialized_end=26698 - _globals['_LOGMODELRESULT']._serialized_start=26701 - _globals['_LOGMODELRESULT']._serialized_end=26850 - _globals['_LOGMODELRESULTMSG']._serialized_start=26852 - _globals['_LOGMODELRESULTMSG']._serialized_end=26952 - _globals['_LOGSNAPSHOTRESULT']._serialized_start=26955 - _globals['_LOGSNAPSHOTRESULT']._serialized_end=27205 - _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_start=27163 - _globals['_LOGSNAPSHOTRESULT_CFGENTRY']._serialized_end=27205 - _globals['_LOGSNAPSHOTRESULTMSG']._serialized_start=27207 - _globals['_LOGSNAPSHOTRESULTMSG']._serialized_end=27313 - _globals['_LOGSEEDRESULT']._serialized_start=27316 - _globals['_LOGSEEDRESULT']._serialized_end=27501 - _globals['_LOGSEEDRESULTMSG']._serialized_start=27503 - _globals['_LOGSEEDRESULTMSG']._serialized_end=27601 - _globals['_LOGFRESHNESSRESULT']._serialized_start=27604 - _globals['_LOGFRESHNESSRESULT']._serialized_end=27777 - _globals['_LOGFRESHNESSRESULTMSG']._serialized_start=27779 - _globals['_LOGFRESHNESSRESULTMSG']._serialized_end=27887 - _globals['_LOGCANCELLINE']._serialized_start=27889 - _globals['_LOGCANCELLINE']._serialized_end=27923 - _globals['_LOGCANCELLINEMSG']._serialized_start=27925 - _globals['_LOGCANCELLINEMSG']._serialized_end=28023 - _globals['_DEFAULTSELECTOR']._serialized_start=28025 - _globals['_DEFAULTSELECTOR']._serialized_end=28056 - _globals['_DEFAULTSELECTORMSG']._serialized_start=28058 - _globals['_DEFAULTSELECTORMSG']._serialized_end=28160 - _globals['_NODESTART']._serialized_start=28162 - _globals['_NODESTART']._serialized_end=28215 - _globals['_NODESTARTMSG']._serialized_start=28217 - _globals['_NODESTARTMSG']._serialized_end=28307 - _globals['_NODEFINISHED']._serialized_start=28309 - _globals['_NODEFINISHED']._serialized_end=28412 - _globals['_NODEFINISHEDMSG']._serialized_start=28414 - _globals['_NODEFINISHEDMSG']._serialized_end=28510 - _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_start=28512 - _globals['_QUERYCANCELATIONUNSUPPORTED']._serialized_end=28555 - _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_start=28557 - _globals['_QUERYCANCELATIONUNSUPPORTEDMSG']._serialized_end=28683 - _globals['_CONCURRENCYLINE']._serialized_start=28685 - _globals['_CONCURRENCYLINE']._serialized_end=28764 - _globals['_CONCURRENCYLINEMSG']._serialized_start=28766 - _globals['_CONCURRENCYLINEMSG']._serialized_end=28868 - _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_start=28870 - _globals['_WRITINGINJECTEDSQLFORNODE']._serialized_end=28939 - _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_start=28941 - _globals['_WRITINGINJECTEDSQLFORNODEMSG']._serialized_end=29063 - _globals['_NODECOMPILING']._serialized_start=29065 - _globals['_NODECOMPILING']._serialized_end=29122 - _globals['_NODECOMPILINGMSG']._serialized_start=29124 - _globals['_NODECOMPILINGMSG']._serialized_end=29222 - _globals['_NODEEXECUTING']._serialized_start=29224 - _globals['_NODEEXECUTING']._serialized_end=29281 - _globals['_NODEEXECUTINGMSG']._serialized_start=29283 - _globals['_NODEEXECUTINGMSG']._serialized_end=29381 - _globals['_LOGHOOKSTARTLINE']._serialized_start=29383 - _globals['_LOGHOOKSTARTLINE']._serialized_end=29492 - _globals['_LOGHOOKSTARTLINEMSG']._serialized_start=29494 - _globals['_LOGHOOKSTARTLINEMSG']._serialized_end=29598 - _globals['_LOGHOOKENDLINE']._serialized_start=29601 - _globals['_LOGHOOKENDLINE']._serialized_end=29748 - _globals['_LOGHOOKENDLINEMSG']._serialized_start=29750 - _globals['_LOGHOOKENDLINEMSG']._serialized_end=29850 - _globals['_SKIPPINGDETAILS']._serialized_start=29853 - _globals['_SKIPPINGDETAILS']._serialized_end=30000 - _globals['_SKIPPINGDETAILSMSG']._serialized_start=30002 - _globals['_SKIPPINGDETAILSMSG']._serialized_end=30104 - _globals['_NOTHINGTODO']._serialized_start=30106 - _globals['_NOTHINGTODO']._serialized_end=30119 - _globals['_NOTHINGTODOMSG']._serialized_start=30121 - _globals['_NOTHINGTODOMSG']._serialized_end=30215 - _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_start=30217 - _globals['_RUNNINGOPERATIONUNCAUGHTERROR']._serialized_end=30261 - _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_start=30264 - _globals['_RUNNINGOPERATIONUNCAUGHTERRORMSG']._serialized_end=30394 - _globals['_ENDRUNRESULT']._serialized_start=30397 - _globals['_ENDRUNRESULT']._serialized_end=30544 - _globals['_ENDRUNRESULTMSG']._serialized_start=30546 - _globals['_ENDRUNRESULTMSG']._serialized_end=30642 - _globals['_NONODESSELECTED']._serialized_start=30644 - _globals['_NONODESSELECTED']._serialized_end=30661 - _globals['_NONODESSELECTEDMSG']._serialized_start=30663 - _globals['_NONODESSELECTEDMSG']._serialized_end=30765 - _globals['_COMMANDCOMPLETED']._serialized_start=30767 - _globals['_COMMANDCOMPLETED']._serialized_end=30886 - _globals['_COMMANDCOMPLETEDMSG']._serialized_start=30888 - _globals['_COMMANDCOMPLETEDMSG']._serialized_end=30992 - _globals['_SHOWNODE']._serialized_start=30994 - _globals['_SHOWNODE']._serialized_end=31101 - _globals['_SHOWNODEMSG']._serialized_start=31103 - _globals['_SHOWNODEMSG']._serialized_end=31191 - _globals['_COMPILEDNODE']._serialized_start=31193 - _globals['_COMPILEDNODE']._serialized_end=31305 - _globals['_COMPILEDNODEMSG']._serialized_start=31307 - _globals['_COMPILEDNODEMSG']._serialized_end=31403 - _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_start=31405 - _globals['_CATCHABLEEXCEPTIONONRUN']._serialized_end=31503 - _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_start=31505 - _globals['_CATCHABLEEXCEPTIONONRUNMSG']._serialized_end=31623 - _globals['_INTERNALERRORONRUN']._serialized_start=31625 - _globals['_INTERNALERRORONRUN']._serialized_end=31678 - _globals['_INTERNALERRORONRUNMSG']._serialized_start=31680 - _globals['_INTERNALERRORONRUNMSG']._serialized_end=31788 - _globals['_GENERICEXCEPTIONONRUN']._serialized_start=31790 - _globals['_GENERICEXCEPTIONONRUN']._serialized_end=31865 - _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_start=31867 - _globals['_GENERICEXCEPTIONONRUNMSG']._serialized_end=31981 - _globals['_NODECONNECTIONRELEASEERROR']._serialized_start=31983 - _globals['_NODECONNECTIONRELEASEERROR']._serialized_end=32061 - _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_start=32063 - _globals['_NODECONNECTIONRELEASEERRORMSG']._serialized_end=32187 - _globals['_FOUNDSTATS']._serialized_start=32189 - _globals['_FOUNDSTATS']._serialized_end=32220 - _globals['_FOUNDSTATSMSG']._serialized_start=32222 - _globals['_FOUNDSTATSMSG']._serialized_end=32314 - _globals['_MAINKEYBOARDINTERRUPT']._serialized_start=32316 - _globals['_MAINKEYBOARDINTERRUPT']._serialized_end=32339 - _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_start=32341 - _globals['_MAINKEYBOARDINTERRUPTMSG']._serialized_end=32455 - _globals['_MAINENCOUNTEREDERROR']._serialized_start=32457 - _globals['_MAINENCOUNTEREDERROR']._serialized_end=32492 - _globals['_MAINENCOUNTEREDERRORMSG']._serialized_start=32494 - _globals['_MAINENCOUNTEREDERRORMSG']._serialized_end=32606 - _globals['_MAINSTACKTRACE']._serialized_start=32608 - _globals['_MAINSTACKTRACE']._serialized_end=32645 - _globals['_MAINSTACKTRACEMSG']._serialized_start=32647 - _globals['_MAINSTACKTRACEMSG']._serialized_end=32747 - _globals['_SYSTEMCOULDNOTWRITE']._serialized_start=32749 - _globals['_SYSTEMCOULDNOTWRITE']._serialized_end=32813 - _globals['_SYSTEMCOULDNOTWRITEMSG']._serialized_start=32815 - _globals['_SYSTEMCOULDNOTWRITEMSG']._serialized_end=32925 - _globals['_SYSTEMEXECUTINGCMD']._serialized_start=32927 - _globals['_SYSTEMEXECUTINGCMD']._serialized_end=32960 - _globals['_SYSTEMEXECUTINGCMDMSG']._serialized_start=32962 - _globals['_SYSTEMEXECUTINGCMDMSG']._serialized_end=33070 - _globals['_SYSTEMSTDOUT']._serialized_start=33072 - _globals['_SYSTEMSTDOUT']._serialized_end=33100 - _globals['_SYSTEMSTDOUTMSG']._serialized_start=33102 - _globals['_SYSTEMSTDOUTMSG']._serialized_end=33198 - _globals['_SYSTEMSTDERR']._serialized_start=33200 - _globals['_SYSTEMSTDERR']._serialized_end=33228 - _globals['_SYSTEMSTDERRMSG']._serialized_start=33230 - _globals['_SYSTEMSTDERRMSG']._serialized_end=33326 - _globals['_SYSTEMREPORTRETURNCODE']._serialized_start=33328 - _globals['_SYSTEMREPORTRETURNCODE']._serialized_end=33372 - _globals['_SYSTEMREPORTRETURNCODEMSG']._serialized_start=33374 - _globals['_SYSTEMREPORTRETURNCODEMSG']._serialized_end=33490 - _globals['_TIMINGINFOCOLLECTED']._serialized_start=33492 - _globals['_TIMINGINFOCOLLECTED']._serialized_end=33604 - _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_start=33606 - _globals['_TIMINGINFOCOLLECTEDMSG']._serialized_end=33716 - _globals['_LOGDEBUGSTACKTRACE']._serialized_start=33718 - _globals['_LOGDEBUGSTACKTRACE']._serialized_end=33756 - _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_start=33758 - _globals['_LOGDEBUGSTACKTRACEMSG']._serialized_end=33866 - _globals['_CHECKCLEANPATH']._serialized_start=33868 - _globals['_CHECKCLEANPATH']._serialized_end=33898 - _globals['_CHECKCLEANPATHMSG']._serialized_start=33900 - _globals['_CHECKCLEANPATHMSG']._serialized_end=34000 - _globals['_CONFIRMCLEANPATH']._serialized_start=34002 - _globals['_CONFIRMCLEANPATH']._serialized_end=34034 - _globals['_CONFIRMCLEANPATHMSG']._serialized_start=34036 - _globals['_CONFIRMCLEANPATHMSG']._serialized_end=34140 - _globals['_PROTECTEDCLEANPATH']._serialized_start=34142 - _globals['_PROTECTEDCLEANPATH']._serialized_end=34176 - _globals['_PROTECTEDCLEANPATHMSG']._serialized_start=34178 - _globals['_PROTECTEDCLEANPATHMSG']._serialized_end=34286 - _globals['_FINISHEDCLEANPATHS']._serialized_start=34288 - _globals['_FINISHEDCLEANPATHS']._serialized_end=34308 - _globals['_FINISHEDCLEANPATHSMSG']._serialized_start=34310 - _globals['_FINISHEDCLEANPATHSMSG']._serialized_end=34418 - _globals['_OPENCOMMAND']._serialized_start=34420 - _globals['_OPENCOMMAND']._serialized_end=34473 - _globals['_OPENCOMMANDMSG']._serialized_start=34475 - _globals['_OPENCOMMANDMSG']._serialized_end=34569 - _globals['_FORMATTING']._serialized_start=34571 - _globals['_FORMATTING']._serialized_end=34596 - _globals['_FORMATTINGMSG']._serialized_start=34598 - _globals['_FORMATTINGMSG']._serialized_end=34690 - _globals['_SERVINGDOCSPORT']._serialized_start=34692 - _globals['_SERVINGDOCSPORT']._serialized_end=34740 - _globals['_SERVINGDOCSPORTMSG']._serialized_start=34742 - _globals['_SERVINGDOCSPORTMSG']._serialized_end=34844 - _globals['_SERVINGDOCSACCESSINFO']._serialized_start=34846 - _globals['_SERVINGDOCSACCESSINFO']._serialized_end=34883 - _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_start=34885 - _globals['_SERVINGDOCSACCESSINFOMSG']._serialized_end=34999 - _globals['_SERVINGDOCSEXITINFO']._serialized_start=35001 - _globals['_SERVINGDOCSEXITINFO']._serialized_end=35022 - _globals['_SERVINGDOCSEXITINFOMSG']._serialized_start=35024 - _globals['_SERVINGDOCSEXITINFOMSG']._serialized_end=35134 - _globals['_RUNRESULTWARNING']._serialized_start=35136 - _globals['_RUNRESULTWARNING']._serialized_end=35210 - _globals['_RUNRESULTWARNINGMSG']._serialized_start=35212 - _globals['_RUNRESULTWARNINGMSG']._serialized_end=35316 - _globals['_RUNRESULTFAILURE']._serialized_start=35318 - _globals['_RUNRESULTFAILURE']._serialized_end=35392 - _globals['_RUNRESULTFAILUREMSG']._serialized_start=35394 - _globals['_RUNRESULTFAILUREMSG']._serialized_end=35498 - _globals['_STATSLINE']._serialized_start=35500 - _globals['_STATSLINE']._serialized_end=35607 - _globals['_STATSLINE_STATSENTRY']._serialized_start=35563 - _globals['_STATSLINE_STATSENTRY']._serialized_end=35607 - _globals['_STATSLINEMSG']._serialized_start=35609 - _globals['_STATSLINEMSG']._serialized_end=35699 - _globals['_RUNRESULTERROR']._serialized_start=35701 - _globals['_RUNRESULTERROR']._serialized_end=35730 - _globals['_RUNRESULTERRORMSG']._serialized_start=35732 - _globals['_RUNRESULTERRORMSG']._serialized_end=35832 - _globals['_RUNRESULTERRORNOMESSAGE']._serialized_start=35834 - _globals['_RUNRESULTERRORNOMESSAGE']._serialized_end=35875 - _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_start=35877 - _globals['_RUNRESULTERRORNOMESSAGEMSG']._serialized_end=35995 - _globals['_SQLCOMPILEDPATH']._serialized_start=35997 - _globals['_SQLCOMPILEDPATH']._serialized_end=36028 - _globals['_SQLCOMPILEDPATHMSG']._serialized_start=36030 - _globals['_SQLCOMPILEDPATHMSG']._serialized_end=36132 - _globals['_CHECKNODETESTFAILURE']._serialized_start=36134 - _globals['_CHECKNODETESTFAILURE']._serialized_end=36179 - _globals['_CHECKNODETESTFAILUREMSG']._serialized_start=36181 - _globals['_CHECKNODETESTFAILUREMSG']._serialized_end=36293 - _globals['_FIRSTRUNRESULTERROR']._serialized_start=36295 - _globals['_FIRSTRUNRESULTERROR']._serialized_end=36329 - _globals['_FIRSTRUNRESULTERRORMSG']._serialized_start=36331 - _globals['_FIRSTRUNRESULTERRORMSG']._serialized_end=36441 - _globals['_AFTERFIRSTRUNRESULTERROR']._serialized_start=36443 - _globals['_AFTERFIRSTRUNRESULTERROR']._serialized_end=36482 - _globals['_AFTERFIRSTRUNRESULTERRORMSG']._serialized_start=36484 - _globals['_AFTERFIRSTRUNRESULTERRORMSG']._serialized_end=36604 - _globals['_ENDOFRUNSUMMARY']._serialized_start=36606 - _globals['_ENDOFRUNSUMMARY']._serialized_end=36693 - _globals['_ENDOFRUNSUMMARYMSG']._serialized_start=36695 - _globals['_ENDOFRUNSUMMARYMSG']._serialized_end=36797 - _globals['_LOGSKIPBECAUSEERROR']._serialized_start=36799 - _globals['_LOGSKIPBECAUSEERROR']._serialized_end=36884 - _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_start=36886 - _globals['_LOGSKIPBECAUSEERRORMSG']._serialized_end=36996 - _globals['_ENSUREGITINSTALLED']._serialized_start=36998 - _globals['_ENSUREGITINSTALLED']._serialized_end=37018 - _globals['_ENSUREGITINSTALLEDMSG']._serialized_start=37020 - _globals['_ENSUREGITINSTALLEDMSG']._serialized_end=37128 - _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_start=37130 - _globals['_DEPSCREATINGLOCALSYMLINK']._serialized_end=37156 - _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_start=37158 - _globals['_DEPSCREATINGLOCALSYMLINKMSG']._serialized_end=37278 - _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_start=37280 - _globals['_DEPSSYMLINKNOTAVAILABLE']._serialized_end=37305 - _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_start=37307 - _globals['_DEPSSYMLINKNOTAVAILABLEMSG']._serialized_end=37425 - _globals['_DISABLETRACKING']._serialized_start=37427 - _globals['_DISABLETRACKING']._serialized_end=37444 - _globals['_DISABLETRACKINGMSG']._serialized_start=37446 - _globals['_DISABLETRACKINGMSG']._serialized_end=37548 - _globals['_SENDINGEVENT']._serialized_start=37550 - _globals['_SENDINGEVENT']._serialized_end=37580 - _globals['_SENDINGEVENTMSG']._serialized_start=37582 - _globals['_SENDINGEVENTMSG']._serialized_end=37678 - _globals['_SENDEVENTFAILURE']._serialized_start=37680 - _globals['_SENDEVENTFAILURE']._serialized_end=37698 - _globals['_SENDEVENTFAILUREMSG']._serialized_start=37700 - _globals['_SENDEVENTFAILUREMSG']._serialized_end=37804 - _globals['_FLUSHEVENTS']._serialized_start=37806 - _globals['_FLUSHEVENTS']._serialized_end=37819 - _globals['_FLUSHEVENTSMSG']._serialized_start=37821 - _globals['_FLUSHEVENTSMSG']._serialized_end=37915 - _globals['_FLUSHEVENTSFAILURE']._serialized_start=37917 - _globals['_FLUSHEVENTSFAILURE']._serialized_end=37937 - _globals['_FLUSHEVENTSFAILUREMSG']._serialized_start=37939 - _globals['_FLUSHEVENTSFAILUREMSG']._serialized_end=38047 - _globals['_TRACKINGINITIALIZEFAILURE']._serialized_start=38049 - _globals['_TRACKINGINITIALIZEFAILURE']._serialized_end=38094 - _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_start=38096 - _globals['_TRACKINGINITIALIZEFAILUREMSG']._serialized_end=38218 - _globals['_RUNRESULTWARNINGMESSAGE']._serialized_start=38220 - _globals['_RUNRESULTWARNINGMESSAGE']._serialized_end=38258 - _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_start=38260 - _globals['_RUNRESULTWARNINGMESSAGEMSG']._serialized_end=38378 - _globals['_DEBUGCMDOUT']._serialized_start=38380 - _globals['_DEBUGCMDOUT']._serialized_end=38406 - _globals['_DEBUGCMDOUTMSG']._serialized_start=38408 - _globals['_DEBUGCMDOUTMSG']._serialized_end=38502 - _globals['_DEBUGCMDRESULT']._serialized_start=38504 - _globals['_DEBUGCMDRESULT']._serialized_end=38533 - _globals['_DEBUGCMDRESULTMSG']._serialized_start=38535 - _globals['_DEBUGCMDRESULTMSG']._serialized_end=38635 - _globals['_LISTCMDOUT']._serialized_start=38637 - _globals['_LISTCMDOUT']._serialized_end=38662 - _globals['_LISTCMDOUTMSG']._serialized_start=38664 - _globals['_LISTCMDOUTMSG']._serialized_end=38756 - _globals['_NOTE']._serialized_start=38758 - _globals['_NOTE']._serialized_end=38777 - _globals['_NOTEMSG']._serialized_start=38779 - _globals['_NOTEMSG']._serialized_end=38859 + _EVENTINFO._serialized_start=92 + _EVENTINFO._serialized_end=365 + _EVENTINFO_EXTRAENTRY._serialized_start=321 + _EVENTINFO_EXTRAENTRY._serialized_end=365 + _TIMINGINFOMSG._serialized_start=367 + _TIMINGINFOMSG._serialized_end=494 + _NODERELATION._serialized_start=496 + _NODERELATION._serialized_end=582 + _NODEINFO._serialized_start=585 + _NODEINFO._serialized_end=858 + _RUNRESULTMSG._serialized_start=861 + _RUNRESULTMSG._serialized_end=1070 + _REFERENCEKEYMSG._serialized_start=1072 + _REFERENCEKEYMSG._serialized_end=1143 + _GENERICMESSAGE._serialized_start=1145 + _GENERICMESSAGE._serialized_end=1199 + _MAINREPORTVERSION._serialized_start=1201 + _MAINREPORTVERSION._serialized_end=1258 + _MAINREPORTVERSIONMSG._serialized_start=1260 + _MAINREPORTVERSIONMSG._serialized_end=1366 + _MAINREPORTARGS._serialized_start=1368 + _MAINREPORTARGS._serialized_end=1482 + _MAINREPORTARGS_ARGSENTRY._serialized_start=1439 + _MAINREPORTARGS_ARGSENTRY._serialized_end=1482 + _MAINREPORTARGSMSG._serialized_start=1484 + _MAINREPORTARGSMSG._serialized_end=1584 + _MAINTRACKINGUSERSTATE._serialized_start=1586 + _MAINTRACKINGUSERSTATE._serialized_end=1629 + _MAINTRACKINGUSERSTATEMSG._serialized_start=1631 + _MAINTRACKINGUSERSTATEMSG._serialized_end=1745 + _MERGEDFROMSTATE._serialized_start=1747 + _MERGEDFROMSTATE._serialized_end=1800 + _MERGEDFROMSTATEMSG._serialized_start=1802 + _MERGEDFROMSTATEMSG._serialized_end=1904 + _MISSINGPROFILETARGET._serialized_start=1906 + _MISSINGPROFILETARGET._serialized_end=1971 + _MISSINGPROFILETARGETMSG._serialized_start=1973 + _MISSINGPROFILETARGETMSG._serialized_end=2085 + _INVALIDOPTIONYAML._serialized_start=2087 + _INVALIDOPTIONYAML._serialized_end=2127 + _INVALIDOPTIONYAMLMSG._serialized_start=2129 + _INVALIDOPTIONYAMLMSG._serialized_end=2235 + _LOGDBTPROJECTERROR._serialized_start=2237 + _LOGDBTPROJECTERROR._serialized_end=2270 + _LOGDBTPROJECTERRORMSG._serialized_start=2272 + _LOGDBTPROJECTERRORMSG._serialized_end=2380 + _LOGDBTPROFILEERROR._serialized_start=2382 + _LOGDBTPROFILEERROR._serialized_end=2433 + _LOGDBTPROFILEERRORMSG._serialized_start=2435 + _LOGDBTPROFILEERRORMSG._serialized_end=2543 + _STARTERPROJECTPATH._serialized_start=2545 + _STARTERPROJECTPATH._serialized_end=2578 + _STARTERPROJECTPATHMSG._serialized_start=2580 + _STARTERPROJECTPATHMSG._serialized_end=2688 + _CONFIGFOLDERDIRECTORY._serialized_start=2690 + _CONFIGFOLDERDIRECTORY._serialized_end=2726 + _CONFIGFOLDERDIRECTORYMSG._serialized_start=2728 + _CONFIGFOLDERDIRECTORYMSG._serialized_end=2842 + _NOSAMPLEPROFILEFOUND._serialized_start=2844 + _NOSAMPLEPROFILEFOUND._serialized_end=2883 + _NOSAMPLEPROFILEFOUNDMSG._serialized_start=2885 + _NOSAMPLEPROFILEFOUNDMSG._serialized_end=2997 + _PROFILEWRITTENWITHSAMPLE._serialized_start=2999 + _PROFILEWRITTENWITHSAMPLE._serialized_end=3053 + _PROFILEWRITTENWITHSAMPLEMSG._serialized_start=3055 + _PROFILEWRITTENWITHSAMPLEMSG._serialized_end=3175 + _PROFILEWRITTENWITHTARGETTEMPLATEYAML._serialized_start=3177 + _PROFILEWRITTENWITHTARGETTEMPLATEYAML._serialized_end=3243 + _PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG._serialized_start=3246 + _PROFILEWRITTENWITHTARGETTEMPLATEYAMLMSG._serialized_end=3390 + _PROFILEWRITTENWITHPROJECTTEMPLATEYAML._serialized_start=3392 + _PROFILEWRITTENWITHPROJECTTEMPLATEYAML._serialized_end=3459 + _PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG._serialized_start=3462 + _PROFILEWRITTENWITHPROJECTTEMPLATEYAMLMSG._serialized_end=3608 + _SETTINGUPPROFILE._serialized_start=3610 + _SETTINGUPPROFILE._serialized_end=3628 + _SETTINGUPPROFILEMSG._serialized_start=3630 + _SETTINGUPPROFILEMSG._serialized_end=3734 + _INVALIDPROFILETEMPLATEYAML._serialized_start=3736 + _INVALIDPROFILETEMPLATEYAML._serialized_end=3764 + _INVALIDPROFILETEMPLATEYAMLMSG._serialized_start=3766 + _INVALIDPROFILETEMPLATEYAMLMSG._serialized_end=3890 + _PROJECTNAMEALREADYEXISTS._serialized_start=3892 + _PROJECTNAMEALREADYEXISTS._serialized_end=3932 + _PROJECTNAMEALREADYEXISTSMSG._serialized_start=3934 + _PROJECTNAMEALREADYEXISTSMSG._serialized_end=4054 + _PROJECTCREATED._serialized_start=4056 + _PROJECTCREATED._serialized_end=4131 + _PROJECTCREATEDMSG._serialized_start=4133 + _PROJECTCREATEDMSG._serialized_end=4233 + _PACKAGEREDIRECTDEPRECATION._serialized_start=4235 + _PACKAGEREDIRECTDEPRECATION._serialized_end=4299 + _PACKAGEREDIRECTDEPRECATIONMSG._serialized_start=4301 + _PACKAGEREDIRECTDEPRECATIONMSG._serialized_end=4425 + _PACKAGEINSTALLPATHDEPRECATION._serialized_start=4427 + _PACKAGEINSTALLPATHDEPRECATION._serialized_end=4458 + _PACKAGEINSTALLPATHDEPRECATIONMSG._serialized_start=4461 + _PACKAGEINSTALLPATHDEPRECATIONMSG._serialized_end=4591 + _CONFIGSOURCEPATHDEPRECATION._serialized_start=4593 + _CONFIGSOURCEPATHDEPRECATION._serialized_end=4665 + _CONFIGSOURCEPATHDEPRECATIONMSG._serialized_start=4667 + _CONFIGSOURCEPATHDEPRECATIONMSG._serialized_end=4793 + _CONFIGDATAPATHDEPRECATION._serialized_start=4795 + _CONFIGDATAPATHDEPRECATION._serialized_end=4865 + _CONFIGDATAPATHDEPRECATIONMSG._serialized_start=4867 + _CONFIGDATAPATHDEPRECATIONMSG._serialized_end=4989 + _ADAPTERDEPRECATIONWARNING._serialized_start=4991 + _ADAPTERDEPRECATIONWARNING._serialized_end=5054 + _ADAPTERDEPRECATIONWARNINGMSG._serialized_start=5056 + _ADAPTERDEPRECATIONWARNINGMSG._serialized_end=5178 + _METRICATTRIBUTESRENAMED._serialized_start=5180 + _METRICATTRIBUTESRENAMED._serialized_end=5226 + _METRICATTRIBUTESRENAMEDMSG._serialized_start=5228 + _METRICATTRIBUTESRENAMEDMSG._serialized_end=5346 + _EXPOSURENAMEDEPRECATION._serialized_start=5348 + _EXPOSURENAMEDEPRECATION._serialized_end=5391 + _EXPOSURENAMEDEPRECATIONMSG._serialized_start=5393 + _EXPOSURENAMEDEPRECATIONMSG._serialized_end=5511 + _INTERNALDEPRECATION._serialized_start=5513 + _INTERNALDEPRECATION._serialized_end=5607 + _INTERNALDEPRECATIONMSG._serialized_start=5609 + _INTERNALDEPRECATIONMSG._serialized_end=5719 + _ENVIRONMENTVARIABLERENAMED._serialized_start=5721 + _ENVIRONMENTVARIABLERENAMED._serialized_end=5785 + _ENVIRONMENTVARIABLERENAMEDMSG._serialized_start=5787 + _ENVIRONMENTVARIABLERENAMEDMSG._serialized_end=5911 + _CONFIGLOGPATHDEPRECATION._serialized_start=5913 + _CONFIGLOGPATHDEPRECATION._serialized_end=5964 + _CONFIGLOGPATHDEPRECATIONMSG._serialized_start=5966 + _CONFIGLOGPATHDEPRECATIONMSG._serialized_end=6086 + _CONFIGTARGETPATHDEPRECATION._serialized_start=6088 + _CONFIGTARGETPATHDEPRECATION._serialized_end=6142 + _CONFIGTARGETPATHDEPRECATIONMSG._serialized_start=6144 + _CONFIGTARGETPATHDEPRECATIONMSG._serialized_end=6270 + _COLLECTFRESHNESSRETURNSIGNATURE._serialized_start=6272 + _COLLECTFRESHNESSRETURNSIGNATURE._serialized_end=6305 + _COLLECTFRESHNESSRETURNSIGNATUREMSG._serialized_start=6308 + _COLLECTFRESHNESSRETURNSIGNATUREMSG._serialized_end=6442 + _ADAPTEREVENTDEBUG._serialized_start=6445 + _ADAPTEREVENTDEBUG._serialized_end=6580 + _ADAPTEREVENTDEBUGMSG._serialized_start=6582 + _ADAPTEREVENTDEBUGMSG._serialized_end=6688 + _ADAPTEREVENTINFO._serialized_start=6691 + _ADAPTEREVENTINFO._serialized_end=6825 + _ADAPTEREVENTINFOMSG._serialized_start=6827 + _ADAPTEREVENTINFOMSG._serialized_end=6931 + _ADAPTEREVENTWARNING._serialized_start=6934 + _ADAPTEREVENTWARNING._serialized_end=7071 + _ADAPTEREVENTWARNINGMSG._serialized_start=7073 + _ADAPTEREVENTWARNINGMSG._serialized_end=7183 + _ADAPTEREVENTERROR._serialized_start=7186 + _ADAPTEREVENTERROR._serialized_end=7339 + _ADAPTEREVENTERRORMSG._serialized_start=7341 + _ADAPTEREVENTERRORMSG._serialized_end=7447 + _NEWCONNECTION._serialized_start=7449 + _NEWCONNECTION._serialized_end=7544 + _NEWCONNECTIONMSG._serialized_start=7546 + _NEWCONNECTIONMSG._serialized_end=7644 + _CONNECTIONREUSED._serialized_start=7646 + _CONNECTIONREUSED._serialized_end=7707 + _CONNECTIONREUSEDMSG._serialized_start=7709 + _CONNECTIONREUSEDMSG._serialized_end=7813 + _CONNECTIONLEFTOPENINCLEANUP._serialized_start=7815 + _CONNECTIONLEFTOPENINCLEANUP._serialized_end=7863 + _CONNECTIONLEFTOPENINCLEANUPMSG._serialized_start=7865 + _CONNECTIONLEFTOPENINCLEANUPMSG._serialized_end=7991 + _CONNECTIONCLOSEDINCLEANUP._serialized_start=7993 + _CONNECTIONCLOSEDINCLEANUP._serialized_end=8039 + _CONNECTIONCLOSEDINCLEANUPMSG._serialized_start=8041 + _CONNECTIONCLOSEDINCLEANUPMSG._serialized_end=8163 + _ROLLBACKFAILED._serialized_start=8165 + _ROLLBACKFAILED._serialized_end=8260 + _ROLLBACKFAILEDMSG._serialized_start=8262 + _ROLLBACKFAILEDMSG._serialized_end=8362 + _CONNECTIONCLOSED._serialized_start=8364 + _CONNECTIONCLOSED._serialized_end=8443 + _CONNECTIONCLOSEDMSG._serialized_start=8445 + _CONNECTIONCLOSEDMSG._serialized_end=8549 + _CONNECTIONLEFTOPEN._serialized_start=8551 + _CONNECTIONLEFTOPEN._serialized_end=8632 + _CONNECTIONLEFTOPENMSG._serialized_start=8634 + _CONNECTIONLEFTOPENMSG._serialized_end=8742 + _ROLLBACK._serialized_start=8744 + _ROLLBACK._serialized_end=8815 + _ROLLBACKMSG._serialized_start=8817 + _ROLLBACKMSG._serialized_end=8905 + _CACHEMISS._serialized_start=8907 + _CACHEMISS._serialized_end=8971 + _CACHEMISSMSG._serialized_start=8973 + _CACHEMISSMSG._serialized_end=9063 + _LISTRELATIONS._serialized_start=9065 + _LISTRELATIONS._serialized_end=9163 + _LISTRELATIONSMSG._serialized_start=9165 + _LISTRELATIONSMSG._serialized_end=9263 + _CONNECTIONUSED._serialized_start=9265 + _CONNECTIONUSED._serialized_end=9361 + _CONNECTIONUSEDMSG._serialized_start=9363 + _CONNECTIONUSEDMSG._serialized_end=9463 + _SQLQUERY._serialized_start=9465 + _SQLQUERY._serialized_end=9549 + _SQLQUERYMSG._serialized_start=9551 + _SQLQUERYMSG._serialized_end=9639 + _SQLQUERYSTATUS._serialized_start=9641 + _SQLQUERYSTATUS._serialized_end=9732 + _SQLQUERYSTATUSMSG._serialized_start=9734 + _SQLQUERYSTATUSMSG._serialized_end=9834 + _SQLCOMMIT._serialized_start=9836 + _SQLCOMMIT._serialized_end=9908 + _SQLCOMMITMSG._serialized_start=9910 + _SQLCOMMITMSG._serialized_end=10000 + _COLTYPECHANGE._serialized_start=10002 + _COLTYPECHANGE._serialized_end=10099 + _COLTYPECHANGEMSG._serialized_start=10101 + _COLTYPECHANGEMSG._serialized_end=10199 + _SCHEMACREATION._serialized_start=10201 + _SCHEMACREATION._serialized_end=10265 + _SCHEMACREATIONMSG._serialized_start=10267 + _SCHEMACREATIONMSG._serialized_end=10367 + _SCHEMADROP._serialized_start=10369 + _SCHEMADROP._serialized_end=10429 + _SCHEMADROPMSG._serialized_start=10431 + _SCHEMADROPMSG._serialized_end=10523 + _CACHEACTION._serialized_start=10526 + _CACHEACTION._serialized_end=10748 + _CACHEACTIONMSG._serialized_start=10750 + _CACHEACTIONMSG._serialized_end=10844 + _CACHEDUMPGRAPH._serialized_start=10847 + _CACHEDUMPGRAPH._serialized_end=10999 + _CACHEDUMPGRAPH_DUMPENTRY._serialized_start=10956 + _CACHEDUMPGRAPH_DUMPENTRY._serialized_end=10999 + _CACHEDUMPGRAPHMSG._serialized_start=11001 + _CACHEDUMPGRAPHMSG._serialized_end=11101 + _ADAPTERREGISTERED._serialized_start=11103 + _ADAPTERREGISTERED._serialized_end=11169 + _ADAPTERREGISTEREDMSG._serialized_start=11171 + _ADAPTERREGISTEREDMSG._serialized_end=11277 + _ADAPTERIMPORTERROR._serialized_start=11279 + _ADAPTERIMPORTERROR._serialized_end=11312 + _ADAPTERIMPORTERRORMSG._serialized_start=11314 + _ADAPTERIMPORTERRORMSG._serialized_end=11422 + _PLUGINLOADERROR._serialized_start=11424 + _PLUGINLOADERROR._serialized_end=11459 + _PLUGINLOADERRORMSG._serialized_start=11461 + _PLUGINLOADERRORMSG._serialized_end=11563 + _NEWCONNECTIONOPENING._serialized_start=11565 + _NEWCONNECTIONOPENING._serialized_end=11655 + _NEWCONNECTIONOPENINGMSG._serialized_start=11657 + _NEWCONNECTIONOPENINGMSG._serialized_end=11769 + _CODEEXECUTION._serialized_start=11771 + _CODEEXECUTION._serialized_end=11827 + _CODEEXECUTIONMSG._serialized_start=11829 + _CODEEXECUTIONMSG._serialized_end=11927 + _CODEEXECUTIONSTATUS._serialized_start=11929 + _CODEEXECUTIONSTATUS._serialized_end=11983 + _CODEEXECUTIONSTATUSMSG._serialized_start=11985 + _CODEEXECUTIONSTATUSMSG._serialized_end=12095 + _CATALOGGENERATIONERROR._serialized_start=12097 + _CATALOGGENERATIONERROR._serialized_end=12134 + _CATALOGGENERATIONERRORMSG._serialized_start=12136 + _CATALOGGENERATIONERRORMSG._serialized_end=12252 + _WRITECATALOGFAILURE._serialized_start=12254 + _WRITECATALOGFAILURE._serialized_end=12299 + _WRITECATALOGFAILUREMSG._serialized_start=12301 + _WRITECATALOGFAILUREMSG._serialized_end=12411 + _CATALOGWRITTEN._serialized_start=12413 + _CATALOGWRITTEN._serialized_end=12443 + _CATALOGWRITTENMSG._serialized_start=12445 + _CATALOGWRITTENMSG._serialized_end=12545 + _CANNOTGENERATEDOCS._serialized_start=12547 + _CANNOTGENERATEDOCS._serialized_end=12567 + _CANNOTGENERATEDOCSMSG._serialized_start=12569 + _CANNOTGENERATEDOCSMSG._serialized_end=12677 + _BUILDINGCATALOG._serialized_start=12679 + _BUILDINGCATALOG._serialized_end=12696 + _BUILDINGCATALOGMSG._serialized_start=12698 + _BUILDINGCATALOGMSG._serialized_end=12800 + _DATABASEERRORRUNNINGHOOK._serialized_start=12802 + _DATABASEERRORRUNNINGHOOK._serialized_end=12847 + _DATABASEERRORRUNNINGHOOKMSG._serialized_start=12849 + _DATABASEERRORRUNNINGHOOKMSG._serialized_end=12969 + _HOOKSRUNNING._serialized_start=12971 + _HOOKSRUNNING._serialized_end=13023 + _HOOKSRUNNINGMSG._serialized_start=13025 + _HOOKSRUNNINGMSG._serialized_end=13121 + _FINISHEDRUNNINGSTATS._serialized_start=13123 + _FINISHEDRUNNINGSTATS._serialized_end=13207 + _FINISHEDRUNNINGSTATSMSG._serialized_start=13209 + _FINISHEDRUNNINGSTATSMSG._serialized_end=13321 + _CONSTRAINTNOTENFORCED._serialized_start=13323 + _CONSTRAINTNOTENFORCED._serialized_end=13383 + _CONSTRAINTNOTENFORCEDMSG._serialized_start=13385 + _CONSTRAINTNOTENFORCEDMSG._serialized_end=13499 + _CONSTRAINTNOTSUPPORTED._serialized_start=13501 + _CONSTRAINTNOTSUPPORTED._serialized_end=13562 + _CONSTRAINTNOTSUPPORTEDMSG._serialized_start=13564 + _CONSTRAINTNOTSUPPORTEDMSG._serialized_end=13680 + _INPUTFILEDIFFERROR._serialized_start=13682 + _INPUTFILEDIFFERROR._serialized_end=13737 + _INPUTFILEDIFFERRORMSG._serialized_start=13739 + _INPUTFILEDIFFERRORMSG._serialized_end=13847 + _INVALIDVALUEFORFIELD._serialized_start=13849 + _INVALIDVALUEFORFIELD._serialized_end=13912 + _INVALIDVALUEFORFIELDMSG._serialized_start=13914 + _INVALIDVALUEFORFIELDMSG._serialized_end=14026 + _VALIDATIONWARNING._serialized_start=14028 + _VALIDATIONWARNING._serialized_end=14109 + _VALIDATIONWARNINGMSG._serialized_start=14111 + _VALIDATIONWARNINGMSG._serialized_end=14217 + _PARSEPERFINFOPATH._serialized_start=14219 + _PARSEPERFINFOPATH._serialized_end=14252 + _PARSEPERFINFOPATHMSG._serialized_start=14254 + _PARSEPERFINFOPATHMSG._serialized_end=14360 + _GENERICTESTFILEPARSE._serialized_start=14362 + _GENERICTESTFILEPARSE._serialized_end=14398 + _GENERICTESTFILEPARSEMSG._serialized_start=14400 + _GENERICTESTFILEPARSEMSG._serialized_end=14512 + _MACROFILEPARSE._serialized_start=14514 + _MACROFILEPARSE._serialized_end=14544 + _MACROFILEPARSEMSG._serialized_start=14546 + _MACROFILEPARSEMSG._serialized_end=14646 + _PARTIALPARSINGERRORPROCESSINGFILE._serialized_start=14648 + _PARTIALPARSINGERRORPROCESSINGFILE._serialized_end=14697 + _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_start=14700 + _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_end=14838 + _PARTIALPARSINGERROR._serialized_start=14841 + _PARTIALPARSINGERROR._serialized_end=14975 + _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_start=14929 + _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_end=14975 + _PARTIALPARSINGERRORMSG._serialized_start=14977 + _PARTIALPARSINGERRORMSG._serialized_end=15087 + _PARTIALPARSINGSKIPPARSING._serialized_start=15089 + _PARTIALPARSINGSKIPPARSING._serialized_end=15116 + _PARTIALPARSINGSKIPPARSINGMSG._serialized_start=15118 + _PARTIALPARSINGSKIPPARSINGMSG._serialized_end=15240 + _UNABLETOPARTIALPARSE._serialized_start=15242 + _UNABLETOPARTIALPARSE._serialized_end=15280 + _UNABLETOPARTIALPARSEMSG._serialized_start=15282 + _UNABLETOPARTIALPARSEMSG._serialized_end=15394 + _STATECHECKVARSHASH._serialized_start=15396 + _STATECHECKVARSHASH._serialized_end=15498 + _STATECHECKVARSHASHMSG._serialized_start=15500 + _STATECHECKVARSHASHMSG._serialized_end=15608 + _PARTIALPARSINGNOTENABLED._serialized_start=15610 + _PARTIALPARSINGNOTENABLED._serialized_end=15636 + _PARTIALPARSINGNOTENABLEDMSG._serialized_start=15638 + _PARTIALPARSINGNOTENABLEDMSG._serialized_end=15758 + _PARSEDFILELOADFAILED._serialized_start=15760 + _PARSEDFILELOADFAILED._serialized_end=15827 + _PARSEDFILELOADFAILEDMSG._serialized_start=15829 + _PARSEDFILELOADFAILEDMSG._serialized_end=15941 + _PARTIALPARSINGENABLED._serialized_start=15943 + _PARTIALPARSINGENABLED._serialized_end=16015 + _PARTIALPARSINGENABLEDMSG._serialized_start=16017 + _PARTIALPARSINGENABLEDMSG._serialized_end=16131 + _PARTIALPARSINGFILE._serialized_start=16133 + _PARTIALPARSINGFILE._serialized_end=16189 + _PARTIALPARSINGFILEMSG._serialized_start=16191 + _PARTIALPARSINGFILEMSG._serialized_end=16299 + _INVALIDDISABLEDTARGETINTESTNODE._serialized_start=16302 + _INVALIDDISABLEDTARGETINTESTNODE._serialized_end=16477 + _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_start=16480 + _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_end=16614 + _UNUSEDRESOURCECONFIGPATH._serialized_start=16616 + _UNUSEDRESOURCECONFIGPATH._serialized_end=16671 + _UNUSEDRESOURCECONFIGPATHMSG._serialized_start=16673 + _UNUSEDRESOURCECONFIGPATHMSG._serialized_end=16793 + _SEEDINCREASED._serialized_start=16795 + _SEEDINCREASED._serialized_end=16846 + _SEEDINCREASEDMSG._serialized_start=16848 + _SEEDINCREASEDMSG._serialized_end=16946 + _SEEDEXCEEDSLIMITSAMEPATH._serialized_start=16948 + _SEEDEXCEEDSLIMITSAMEPATH._serialized_end=17010 + _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_start=17012 + _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_end=17132 + _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_start=17134 + _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_end=17202 + _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_start=17205 + _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_end=17337 + _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_start=17339 + _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_end=17431 + _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_start=17434 + _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_end=17568 + _UNUSEDTABLES._serialized_start=17570 + _UNUSEDTABLES._serialized_end=17607 + _UNUSEDTABLESMSG._serialized_start=17609 + _UNUSEDTABLESMSG._serialized_end=17705 + _WRONGRESOURCESCHEMAFILE._serialized_start=17708 + _WRONGRESOURCESCHEMAFILE._serialized_end=17843 + _WRONGRESOURCESCHEMAFILEMSG._serialized_start=17845 + _WRONGRESOURCESCHEMAFILEMSG._serialized_end=17963 + _NONODEFORYAMLKEY._serialized_start=17965 + _NONODEFORYAMLKEY._serialized_end=18040 + _NONODEFORYAMLKEYMSG._serialized_start=18042 + _NONODEFORYAMLKEYMSG._serialized_end=18146 + _MACRONOTFOUNDFORPATCH._serialized_start=18148 + _MACRONOTFOUNDFORPATCH._serialized_end=18191 + _MACRONOTFOUNDFORPATCHMSG._serialized_start=18193 + _MACRONOTFOUNDFORPATCHMSG._serialized_end=18307 + _NODENOTFOUNDORDISABLED._serialized_start=18310 + _NODENOTFOUNDORDISABLED._serialized_end=18494 + _NODENOTFOUNDORDISABLEDMSG._serialized_start=18496 + _NODENOTFOUNDORDISABLEDMSG._serialized_end=18612 + _JINJALOGWARNING._serialized_start=18614 + _JINJALOGWARNING._serialized_end=18686 + _JINJALOGWARNINGMSG._serialized_start=18688 + _JINJALOGWARNINGMSG._serialized_end=18790 + _JINJALOGINFO._serialized_start=18792 + _JINJALOGINFO._serialized_end=18861 + _JINJALOGINFOMSG._serialized_start=18863 + _JINJALOGINFOMSG._serialized_end=18959 + _JINJALOGDEBUG._serialized_start=18961 + _JINJALOGDEBUG._serialized_end=19031 + _JINJALOGDEBUGMSG._serialized_start=19033 + _JINJALOGDEBUGMSG._serialized_end=19131 + _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_start=19134 + _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_end=19308 + _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_start=19311 + _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_end=19443 + _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_start=19445 + _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_end=19505 + _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_start=19508 + _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_end=19652 + _GITSPARSECHECKOUTSUBDIRECTORY._serialized_start=19654 + _GITSPARSECHECKOUTSUBDIRECTORY._serialized_end=19701 + _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_start=19704 + _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_end=19834 + _GITPROGRESSCHECKOUTREVISION._serialized_start=19836 + _GITPROGRESSCHECKOUTREVISION._serialized_end=19883 + _GITPROGRESSCHECKOUTREVISIONMSG._serialized_start=19885 + _GITPROGRESSCHECKOUTREVISIONMSG._serialized_end=20011 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_start=20013 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_end=20065 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_start=20068 + _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_end=20214 + _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_start=20216 + _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_end=20262 + _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_start=20265 + _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_end=20399 + _GITNOTHINGTODO._serialized_start=20401 + _GITNOTHINGTODO._serialized_end=20430 + _GITNOTHINGTODOMSG._serialized_start=20432 + _GITNOTHINGTODOMSG._serialized_end=20532 + _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_start=20534 + _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_end=20603 + _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_start=20606 + _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_end=20740 + _GITPROGRESSCHECKEDOUTAT._serialized_start=20742 + _GITPROGRESSCHECKEDOUTAT._serialized_end=20784 + _GITPROGRESSCHECKEDOUTATMSG._serialized_start=20786 + _GITPROGRESSCHECKEDOUTATMSG._serialized_end=20904 + _REGISTRYPROGRESSGETREQUEST._serialized_start=20906 + _REGISTRYPROGRESSGETREQUEST._serialized_end=20947 + _REGISTRYPROGRESSGETREQUESTMSG._serialized_start=20949 + _REGISTRYPROGRESSGETREQUESTMSG._serialized_end=21073 + _REGISTRYPROGRESSGETRESPONSE._serialized_start=21075 + _REGISTRYPROGRESSGETRESPONSE._serialized_end=21136 + _REGISTRYPROGRESSGETRESPONSEMSG._serialized_start=21138 + _REGISTRYPROGRESSGETRESPONSEMSG._serialized_end=21264 + _SELECTORREPORTINVALIDSELECTOR._serialized_start=21266 + _SELECTORREPORTINVALIDSELECTOR._serialized_end=21361 + _SELECTORREPORTINVALIDSELECTORMSG._serialized_start=21364 + _SELECTORREPORTINVALIDSELECTORMSG._serialized_end=21494 + _DEPSNOPACKAGESFOUND._serialized_start=21496 + _DEPSNOPACKAGESFOUND._serialized_end=21517 + _DEPSNOPACKAGESFOUNDMSG._serialized_start=21519 + _DEPSNOPACKAGESFOUNDMSG._serialized_end=21629 + _DEPSSTARTPACKAGEINSTALL._serialized_start=21631 + _DEPSSTARTPACKAGEINSTALL._serialized_end=21678 + _DEPSSTARTPACKAGEINSTALLMSG._serialized_start=21680 + _DEPSSTARTPACKAGEINSTALLMSG._serialized_end=21798 + _DEPSINSTALLINFO._serialized_start=21800 + _DEPSINSTALLINFO._serialized_end=21839 + _DEPSINSTALLINFOMSG._serialized_start=21841 + _DEPSINSTALLINFOMSG._serialized_end=21943 + _DEPSUPDATEAVAILABLE._serialized_start=21945 + _DEPSUPDATEAVAILABLE._serialized_end=21990 + _DEPSUPDATEAVAILABLEMSG._serialized_start=21992 + _DEPSUPDATEAVAILABLEMSG._serialized_end=22102 + _DEPSUPTODATE._serialized_start=22104 + _DEPSUPTODATE._serialized_end=22118 + _DEPSUPTODATEMSG._serialized_start=22120 + _DEPSUPTODATEMSG._serialized_end=22216 + _DEPSLISTSUBDIRECTORY._serialized_start=22218 + _DEPSLISTSUBDIRECTORY._serialized_end=22262 + _DEPSLISTSUBDIRECTORYMSG._serialized_start=22264 + _DEPSLISTSUBDIRECTORYMSG._serialized_end=22376 + _DEPSNOTIFYUPDATESAVAILABLE._serialized_start=22378 + _DEPSNOTIFYUPDATESAVAILABLE._serialized_end=22424 + _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_start=22426 + _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_end=22550 + _RETRYEXTERNALCALL._serialized_start=22552 + _RETRYEXTERNALCALL._serialized_end=22601 + _RETRYEXTERNALCALLMSG._serialized_start=22603 + _RETRYEXTERNALCALLMSG._serialized_end=22709 + _RECORDRETRYEXCEPTION._serialized_start=22711 + _RECORDRETRYEXCEPTION._serialized_end=22746 + _RECORDRETRYEXCEPTIONMSG._serialized_start=22748 + _RECORDRETRYEXCEPTIONMSG._serialized_end=22860 + _REGISTRYINDEXPROGRESSGETREQUEST._serialized_start=22862 + _REGISTRYINDEXPROGRESSGETREQUEST._serialized_end=22908 + _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_start=22911 + _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_end=23045 + _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_start=23047 + _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_end=23113 + _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_start=23116 + _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_end=23252 + _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_start=23254 + _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_end=23304 + _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_start=23307 + _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_end=23439 + _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_start=23441 + _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_end=23491 + _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_start=23494 + _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_end=23626 + _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_start=23628 + _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_end=23681 + _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_start=23684 + _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_end=23822 + _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_start=23824 + _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_end=23875 + _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_start=23878 + _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_end=24012 + _DEPSSETDOWNLOADDIRECTORY._serialized_start=24014 + _DEPSSETDOWNLOADDIRECTORY._serialized_end=24054 + _DEPSSETDOWNLOADDIRECTORYMSG._serialized_start=24056 + _DEPSSETDOWNLOADDIRECTORYMSG._serialized_end=24176 + _DEPSUNPINNED._serialized_start=24178 + _DEPSUNPINNED._serialized_end=24223 + _DEPSUNPINNEDMSG._serialized_start=24225 + _DEPSUNPINNEDMSG._serialized_end=24321 + _NONODESFORSELECTIONCRITERIA._serialized_start=24323 + _NONODESFORSELECTIONCRITERIA._serialized_end=24370 + _NONODESFORSELECTIONCRITERIAMSG._serialized_start=24372 + _NONODESFORSELECTIONCRITERIAMSG._serialized_end=24498 + _RUNNINGOPERATIONCAUGHTERROR._serialized_start=24500 + _RUNNINGOPERATIONCAUGHTERROR._serialized_end=24542 + _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_start=24544 + _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_end=24670 + _COMPILECOMPLETE._serialized_start=24672 + _COMPILECOMPLETE._serialized_end=24689 + _COMPILECOMPLETEMSG._serialized_start=24691 + _COMPILECOMPLETEMSG._serialized_end=24793 + _FRESHNESSCHECKCOMPLETE._serialized_start=24795 + _FRESHNESSCHECKCOMPLETE._serialized_end=24819 + _FRESHNESSCHECKCOMPLETEMSG._serialized_start=24821 + _FRESHNESSCHECKCOMPLETEMSG._serialized_end=24937 + _SEEDHEADER._serialized_start=24939 + _SEEDHEADER._serialized_end=24967 + _SEEDHEADERMSG._serialized_start=24969 + _SEEDHEADERMSG._serialized_end=25061 + _SQLRUNNEREXCEPTION._serialized_start=25063 + _SQLRUNNEREXCEPTION._serialized_end=25114 + _SQLRUNNEREXCEPTIONMSG._serialized_start=25116 + _SQLRUNNEREXCEPTIONMSG._serialized_end=25224 + _LOGTESTRESULT._serialized_start=25227 + _LOGTESTRESULT._serialized_end=25395 + _LOGTESTRESULTMSG._serialized_start=25397 + _LOGTESTRESULTMSG._serialized_end=25495 + _LOGSTARTLINE._serialized_start=25497 + _LOGSTARTLINE._serialized_end=25604 + _LOGSTARTLINEMSG._serialized_start=25606 + _LOGSTARTLINEMSG._serialized_end=25702 + _LOGMODELRESULT._serialized_start=25705 + _LOGMODELRESULT._serialized_end=25854 + _LOGMODELRESULTMSG._serialized_start=25856 + _LOGMODELRESULTMSG._serialized_end=25956 + _LOGSNAPSHOTRESULT._serialized_start=25959 + _LOGSNAPSHOTRESULT._serialized_end=26209 + _LOGSNAPSHOTRESULT_CFGENTRY._serialized_start=26167 + _LOGSNAPSHOTRESULT_CFGENTRY._serialized_end=26209 + _LOGSNAPSHOTRESULTMSG._serialized_start=26211 + _LOGSNAPSHOTRESULTMSG._serialized_end=26317 + _LOGSEEDRESULT._serialized_start=26320 + _LOGSEEDRESULT._serialized_end=26505 + _LOGSEEDRESULTMSG._serialized_start=26507 + _LOGSEEDRESULTMSG._serialized_end=26605 + _LOGFRESHNESSRESULT._serialized_start=26608 + _LOGFRESHNESSRESULT._serialized_end=26781 + _LOGFRESHNESSRESULTMSG._serialized_start=26783 + _LOGFRESHNESSRESULTMSG._serialized_end=26891 + _LOGCANCELLINE._serialized_start=26893 + _LOGCANCELLINE._serialized_end=26927 + _LOGCANCELLINEMSG._serialized_start=26929 + _LOGCANCELLINEMSG._serialized_end=27027 + _DEFAULTSELECTOR._serialized_start=27029 + _DEFAULTSELECTOR._serialized_end=27060 + _DEFAULTSELECTORMSG._serialized_start=27062 + _DEFAULTSELECTORMSG._serialized_end=27164 + _NODESTART._serialized_start=27166 + _NODESTART._serialized_end=27219 + _NODESTARTMSG._serialized_start=27221 + _NODESTARTMSG._serialized_end=27311 + _NODEFINISHED._serialized_start=27313 + _NODEFINISHED._serialized_end=27416 + _NODEFINISHEDMSG._serialized_start=27418 + _NODEFINISHEDMSG._serialized_end=27514 + _QUERYCANCELATIONUNSUPPORTED._serialized_start=27516 + _QUERYCANCELATIONUNSUPPORTED._serialized_end=27559 + _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_start=27561 + _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_end=27687 + _CONCURRENCYLINE._serialized_start=27689 + _CONCURRENCYLINE._serialized_end=27768 + _CONCURRENCYLINEMSG._serialized_start=27770 + _CONCURRENCYLINEMSG._serialized_end=27872 + _WRITINGINJECTEDSQLFORNODE._serialized_start=27874 + _WRITINGINJECTEDSQLFORNODE._serialized_end=27943 + _WRITINGINJECTEDSQLFORNODEMSG._serialized_start=27945 + _WRITINGINJECTEDSQLFORNODEMSG._serialized_end=28067 + _NODECOMPILING._serialized_start=28069 + _NODECOMPILING._serialized_end=28126 + _NODECOMPILINGMSG._serialized_start=28128 + _NODECOMPILINGMSG._serialized_end=28226 + _NODEEXECUTING._serialized_start=28228 + _NODEEXECUTING._serialized_end=28285 + _NODEEXECUTINGMSG._serialized_start=28287 + _NODEEXECUTINGMSG._serialized_end=28385 + _LOGHOOKSTARTLINE._serialized_start=28387 + _LOGHOOKSTARTLINE._serialized_end=28496 + _LOGHOOKSTARTLINEMSG._serialized_start=28498 + _LOGHOOKSTARTLINEMSG._serialized_end=28602 + _LOGHOOKENDLINE._serialized_start=28605 + _LOGHOOKENDLINE._serialized_end=28752 + _LOGHOOKENDLINEMSG._serialized_start=28754 + _LOGHOOKENDLINEMSG._serialized_end=28854 + _SKIPPINGDETAILS._serialized_start=28857 + _SKIPPINGDETAILS._serialized_end=29004 + _SKIPPINGDETAILSMSG._serialized_start=29006 + _SKIPPINGDETAILSMSG._serialized_end=29108 + _NOTHINGTODO._serialized_start=29110 + _NOTHINGTODO._serialized_end=29123 + _NOTHINGTODOMSG._serialized_start=29125 + _NOTHINGTODOMSG._serialized_end=29219 + _RUNNINGOPERATIONUNCAUGHTERROR._serialized_start=29221 + _RUNNINGOPERATIONUNCAUGHTERROR._serialized_end=29265 + _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_start=29268 + _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_end=29398 + _ENDRUNRESULT._serialized_start=29401 + _ENDRUNRESULT._serialized_end=29548 + _ENDRUNRESULTMSG._serialized_start=29550 + _ENDRUNRESULTMSG._serialized_end=29646 + _NONODESSELECTED._serialized_start=29648 + _NONODESSELECTED._serialized_end=29665 + _NONODESSELECTEDMSG._serialized_start=29667 + _NONODESSELECTEDMSG._serialized_end=29769 + _COMMANDCOMPLETED._serialized_start=29771 + _COMMANDCOMPLETED._serialized_end=29890 + _COMMANDCOMPLETEDMSG._serialized_start=29892 + _COMMANDCOMPLETEDMSG._serialized_end=29996 + _SHOWNODE._serialized_start=29998 + _SHOWNODE._serialized_end=30105 + _SHOWNODEMSG._serialized_start=30107 + _SHOWNODEMSG._serialized_end=30195 + _COMPILEDNODE._serialized_start=30197 + _COMPILEDNODE._serialized_end=30309 + _COMPILEDNODEMSG._serialized_start=30311 + _COMPILEDNODEMSG._serialized_end=30407 + _CATCHABLEEXCEPTIONONRUN._serialized_start=30409 + _CATCHABLEEXCEPTIONONRUN._serialized_end=30507 + _CATCHABLEEXCEPTIONONRUNMSG._serialized_start=30509 + _CATCHABLEEXCEPTIONONRUNMSG._serialized_end=30627 + _INTERNALERRORONRUN._serialized_start=30629 + _INTERNALERRORONRUN._serialized_end=30682 + _INTERNALERRORONRUNMSG._serialized_start=30684 + _INTERNALERRORONRUNMSG._serialized_end=30792 + _GENERICEXCEPTIONONRUN._serialized_start=30794 + _GENERICEXCEPTIONONRUN._serialized_end=30869 + _GENERICEXCEPTIONONRUNMSG._serialized_start=30871 + _GENERICEXCEPTIONONRUNMSG._serialized_end=30985 + _NODECONNECTIONRELEASEERROR._serialized_start=30987 + _NODECONNECTIONRELEASEERROR._serialized_end=31065 + _NODECONNECTIONRELEASEERRORMSG._serialized_start=31067 + _NODECONNECTIONRELEASEERRORMSG._serialized_end=31191 + _FOUNDSTATS._serialized_start=31193 + _FOUNDSTATS._serialized_end=31224 + _FOUNDSTATSMSG._serialized_start=31226 + _FOUNDSTATSMSG._serialized_end=31318 + _MAINKEYBOARDINTERRUPT._serialized_start=31320 + _MAINKEYBOARDINTERRUPT._serialized_end=31343 + _MAINKEYBOARDINTERRUPTMSG._serialized_start=31345 + _MAINKEYBOARDINTERRUPTMSG._serialized_end=31459 + _MAINENCOUNTEREDERROR._serialized_start=31461 + _MAINENCOUNTEREDERROR._serialized_end=31496 + _MAINENCOUNTEREDERRORMSG._serialized_start=31498 + _MAINENCOUNTEREDERRORMSG._serialized_end=31610 + _MAINSTACKTRACE._serialized_start=31612 + _MAINSTACKTRACE._serialized_end=31649 + _MAINSTACKTRACEMSG._serialized_start=31651 + _MAINSTACKTRACEMSG._serialized_end=31751 + _SYSTEMCOULDNOTWRITE._serialized_start=31753 + _SYSTEMCOULDNOTWRITE._serialized_end=31817 + _SYSTEMCOULDNOTWRITEMSG._serialized_start=31819 + _SYSTEMCOULDNOTWRITEMSG._serialized_end=31929 + _SYSTEMEXECUTINGCMD._serialized_start=31931 + _SYSTEMEXECUTINGCMD._serialized_end=31964 + _SYSTEMEXECUTINGCMDMSG._serialized_start=31966 + _SYSTEMEXECUTINGCMDMSG._serialized_end=32074 + _SYSTEMSTDOUT._serialized_start=32076 + _SYSTEMSTDOUT._serialized_end=32104 + _SYSTEMSTDOUTMSG._serialized_start=32106 + _SYSTEMSTDOUTMSG._serialized_end=32202 + _SYSTEMSTDERR._serialized_start=32204 + _SYSTEMSTDERR._serialized_end=32232 + _SYSTEMSTDERRMSG._serialized_start=32234 + _SYSTEMSTDERRMSG._serialized_end=32330 + _SYSTEMREPORTRETURNCODE._serialized_start=32332 + _SYSTEMREPORTRETURNCODE._serialized_end=32376 + _SYSTEMREPORTRETURNCODEMSG._serialized_start=32378 + _SYSTEMREPORTRETURNCODEMSG._serialized_end=32494 + _TIMINGINFOCOLLECTED._serialized_start=32496 + _TIMINGINFOCOLLECTED._serialized_end=32608 + _TIMINGINFOCOLLECTEDMSG._serialized_start=32610 + _TIMINGINFOCOLLECTEDMSG._serialized_end=32720 + _LOGDEBUGSTACKTRACE._serialized_start=32722 + _LOGDEBUGSTACKTRACE._serialized_end=32760 + _LOGDEBUGSTACKTRACEMSG._serialized_start=32762 + _LOGDEBUGSTACKTRACEMSG._serialized_end=32870 + _CHECKCLEANPATH._serialized_start=32872 + _CHECKCLEANPATH._serialized_end=32902 + _CHECKCLEANPATHMSG._serialized_start=32904 + _CHECKCLEANPATHMSG._serialized_end=33004 + _CONFIRMCLEANPATH._serialized_start=33006 + _CONFIRMCLEANPATH._serialized_end=33038 + _CONFIRMCLEANPATHMSG._serialized_start=33040 + _CONFIRMCLEANPATHMSG._serialized_end=33144 + _PROTECTEDCLEANPATH._serialized_start=33146 + _PROTECTEDCLEANPATH._serialized_end=33180 + _PROTECTEDCLEANPATHMSG._serialized_start=33182 + _PROTECTEDCLEANPATHMSG._serialized_end=33290 + _FINISHEDCLEANPATHS._serialized_start=33292 + _FINISHEDCLEANPATHS._serialized_end=33312 + _FINISHEDCLEANPATHSMSG._serialized_start=33314 + _FINISHEDCLEANPATHSMSG._serialized_end=33422 + _OPENCOMMAND._serialized_start=33424 + _OPENCOMMAND._serialized_end=33477 + _OPENCOMMANDMSG._serialized_start=33479 + _OPENCOMMANDMSG._serialized_end=33573 + _FORMATTING._serialized_start=33575 + _FORMATTING._serialized_end=33600 + _FORMATTINGMSG._serialized_start=33602 + _FORMATTINGMSG._serialized_end=33694 + _SERVINGDOCSPORT._serialized_start=33696 + _SERVINGDOCSPORT._serialized_end=33744 + _SERVINGDOCSPORTMSG._serialized_start=33746 + _SERVINGDOCSPORTMSG._serialized_end=33848 + _SERVINGDOCSACCESSINFO._serialized_start=33850 + _SERVINGDOCSACCESSINFO._serialized_end=33887 + _SERVINGDOCSACCESSINFOMSG._serialized_start=33889 + _SERVINGDOCSACCESSINFOMSG._serialized_end=34003 + _SERVINGDOCSEXITINFO._serialized_start=34005 + _SERVINGDOCSEXITINFO._serialized_end=34026 + _SERVINGDOCSEXITINFOMSG._serialized_start=34028 + _SERVINGDOCSEXITINFOMSG._serialized_end=34138 + _RUNRESULTWARNING._serialized_start=34140 + _RUNRESULTWARNING._serialized_end=34214 + _RUNRESULTWARNINGMSG._serialized_start=34216 + _RUNRESULTWARNINGMSG._serialized_end=34320 + _RUNRESULTFAILURE._serialized_start=34322 + _RUNRESULTFAILURE._serialized_end=34396 + _RUNRESULTFAILUREMSG._serialized_start=34398 + _RUNRESULTFAILUREMSG._serialized_end=34502 + _STATSLINE._serialized_start=34504 + _STATSLINE._serialized_end=34611 + _STATSLINE_STATSENTRY._serialized_start=34567 + _STATSLINE_STATSENTRY._serialized_end=34611 + _STATSLINEMSG._serialized_start=34613 + _STATSLINEMSG._serialized_end=34703 + _RUNRESULTERROR._serialized_start=34705 + _RUNRESULTERROR._serialized_end=34734 + _RUNRESULTERRORMSG._serialized_start=34736 + _RUNRESULTERRORMSG._serialized_end=34836 + _RUNRESULTERRORNOMESSAGE._serialized_start=34838 + _RUNRESULTERRORNOMESSAGE._serialized_end=34879 + _RUNRESULTERRORNOMESSAGEMSG._serialized_start=34881 + _RUNRESULTERRORNOMESSAGEMSG._serialized_end=34999 + _SQLCOMPILEDPATH._serialized_start=35001 + _SQLCOMPILEDPATH._serialized_end=35032 + _SQLCOMPILEDPATHMSG._serialized_start=35034 + _SQLCOMPILEDPATHMSG._serialized_end=35136 + _CHECKNODETESTFAILURE._serialized_start=35138 + _CHECKNODETESTFAILURE._serialized_end=35183 + _CHECKNODETESTFAILUREMSG._serialized_start=35185 + _CHECKNODETESTFAILUREMSG._serialized_end=35297 + _FIRSTRUNRESULTERROR._serialized_start=35299 + _FIRSTRUNRESULTERROR._serialized_end=35333 + _FIRSTRUNRESULTERRORMSG._serialized_start=35335 + _FIRSTRUNRESULTERRORMSG._serialized_end=35445 + _AFTERFIRSTRUNRESULTERROR._serialized_start=35447 + _AFTERFIRSTRUNRESULTERROR._serialized_end=35486 + _AFTERFIRSTRUNRESULTERRORMSG._serialized_start=35488 + _AFTERFIRSTRUNRESULTERRORMSG._serialized_end=35608 + _ENDOFRUNSUMMARY._serialized_start=35610 + _ENDOFRUNSUMMARY._serialized_end=35697 + _ENDOFRUNSUMMARYMSG._serialized_start=35699 + _ENDOFRUNSUMMARYMSG._serialized_end=35801 + _LOGSKIPBECAUSEERROR._serialized_start=35803 + _LOGSKIPBECAUSEERROR._serialized_end=35888 + _LOGSKIPBECAUSEERRORMSG._serialized_start=35890 + _LOGSKIPBECAUSEERRORMSG._serialized_end=36000 + _ENSUREGITINSTALLED._serialized_start=36002 + _ENSUREGITINSTALLED._serialized_end=36022 + _ENSUREGITINSTALLEDMSG._serialized_start=36024 + _ENSUREGITINSTALLEDMSG._serialized_end=36132 + _DEPSCREATINGLOCALSYMLINK._serialized_start=36134 + _DEPSCREATINGLOCALSYMLINK._serialized_end=36160 + _DEPSCREATINGLOCALSYMLINKMSG._serialized_start=36162 + _DEPSCREATINGLOCALSYMLINKMSG._serialized_end=36282 + _DEPSSYMLINKNOTAVAILABLE._serialized_start=36284 + _DEPSSYMLINKNOTAVAILABLE._serialized_end=36309 + _DEPSSYMLINKNOTAVAILABLEMSG._serialized_start=36311 + _DEPSSYMLINKNOTAVAILABLEMSG._serialized_end=36429 + _DISABLETRACKING._serialized_start=36431 + _DISABLETRACKING._serialized_end=36448 + _DISABLETRACKINGMSG._serialized_start=36450 + _DISABLETRACKINGMSG._serialized_end=36552 + _SENDINGEVENT._serialized_start=36554 + _SENDINGEVENT._serialized_end=36584 + _SENDINGEVENTMSG._serialized_start=36586 + _SENDINGEVENTMSG._serialized_end=36682 + _SENDEVENTFAILURE._serialized_start=36684 + _SENDEVENTFAILURE._serialized_end=36702 + _SENDEVENTFAILUREMSG._serialized_start=36704 + _SENDEVENTFAILUREMSG._serialized_end=36808 + _FLUSHEVENTS._serialized_start=36810 + _FLUSHEVENTS._serialized_end=36823 + _FLUSHEVENTSMSG._serialized_start=36825 + _FLUSHEVENTSMSG._serialized_end=36919 + _FLUSHEVENTSFAILURE._serialized_start=36921 + _FLUSHEVENTSFAILURE._serialized_end=36941 + _FLUSHEVENTSFAILUREMSG._serialized_start=36943 + _FLUSHEVENTSFAILUREMSG._serialized_end=37051 + _TRACKINGINITIALIZEFAILURE._serialized_start=37053 + _TRACKINGINITIALIZEFAILURE._serialized_end=37098 + _TRACKINGINITIALIZEFAILUREMSG._serialized_start=37100 + _TRACKINGINITIALIZEFAILUREMSG._serialized_end=37222 + _RUNRESULTWARNINGMESSAGE._serialized_start=37224 + _RUNRESULTWARNINGMESSAGE._serialized_end=37262 + _RUNRESULTWARNINGMESSAGEMSG._serialized_start=37264 + _RUNRESULTWARNINGMESSAGEMSG._serialized_end=37382 + _DEBUGCMDOUT._serialized_start=37384 + _DEBUGCMDOUT._serialized_end=37410 + _DEBUGCMDOUTMSG._serialized_start=37412 + _DEBUGCMDOUTMSG._serialized_end=37506 + _DEBUGCMDRESULT._serialized_start=37508 + _DEBUGCMDRESULT._serialized_end=37537 + _DEBUGCMDRESULTMSG._serialized_start=37539 + _DEBUGCMDRESULTMSG._serialized_end=37639 + _LISTCMDOUT._serialized_start=37641 + _LISTCMDOUT._serialized_end=37666 + _LISTCMDOUTMSG._serialized_start=37668 + _LISTCMDOUTMSG._serialized_end=37760 + _NOTE._serialized_start=37762 + _NOTE._serialized_end=37781 + _NOTEMSG._serialized_start=37783 + _NOTEMSG._serialized_end=37863 # @@protoc_insertion_point(module_scope)