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 fffde6b487f..c5e94c27466 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 5f12eee1d87..82cbf592262 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 89a00d86b3c..a5c13a11717 100644 --- a/core/dbt/events/types.py +++ b/core/dbt/events/types.py @@ -655,6 +655,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 a91c8543d78..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\"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\"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,866 +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 - _PUBLICATIONARTIFACTCHANGED._serialized_start=13673 - _PUBLICATIONARTIFACTCHANGED._serialized_end=13789 - _PUBLICATIONARTIFACTCHANGEDMSG._serialized_start=13791 - _PUBLICATIONARTIFACTCHANGEDMSG._serialized_end=13915 - _INVALIDVALUEFORFIELD._serialized_start=13917 - _INVALIDVALUEFORFIELD._serialized_end=13980 - _INVALIDVALUEFORFIELDMSG._serialized_start=13982 - _INVALIDVALUEFORFIELDMSG._serialized_end=14094 - _VALIDATIONWARNING._serialized_start=14096 - _VALIDATIONWARNING._serialized_end=14177 - _VALIDATIONWARNINGMSG._serialized_start=14179 - _VALIDATIONWARNINGMSG._serialized_end=14285 - _PARSEPERFINFOPATH._serialized_start=14287 - _PARSEPERFINFOPATH._serialized_end=14320 - _PARSEPERFINFOPATHMSG._serialized_start=14322 - _PARSEPERFINFOPATHMSG._serialized_end=14428 - _PARTIALPARSINGERRORPROCESSINGFILE._serialized_start=14430 - _PARTIALPARSINGERRORPROCESSINGFILE._serialized_end=14479 - _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_start=14482 - _PARTIALPARSINGERRORPROCESSINGFILEMSG._serialized_end=14620 - _PARTIALPARSINGERROR._serialized_start=14623 - _PARTIALPARSINGERROR._serialized_end=14757 - _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_start=14711 - _PARTIALPARSINGERROR_EXCINFOENTRY._serialized_end=14757 - _PARTIALPARSINGERRORMSG._serialized_start=14759 - _PARTIALPARSINGERRORMSG._serialized_end=14869 - _PARTIALPARSINGSKIPPARSING._serialized_start=14871 - _PARTIALPARSINGSKIPPARSING._serialized_end=14898 - _PARTIALPARSINGSKIPPARSINGMSG._serialized_start=14900 - _PARTIALPARSINGSKIPPARSINGMSG._serialized_end=15022 - _UNABLETOPARTIALPARSE._serialized_start=15024 - _UNABLETOPARTIALPARSE._serialized_end=15062 - _UNABLETOPARTIALPARSEMSG._serialized_start=15064 - _UNABLETOPARTIALPARSEMSG._serialized_end=15176 - _STATECHECKVARSHASH._serialized_start=15178 - _STATECHECKVARSHASH._serialized_end=15280 - _STATECHECKVARSHASHMSG._serialized_start=15282 - _STATECHECKVARSHASHMSG._serialized_end=15390 - _PARTIALPARSINGNOTENABLED._serialized_start=15392 - _PARTIALPARSINGNOTENABLED._serialized_end=15418 - _PARTIALPARSINGNOTENABLEDMSG._serialized_start=15420 - _PARTIALPARSINGNOTENABLEDMSG._serialized_end=15540 - _PARSEDFILELOADFAILED._serialized_start=15542 - _PARSEDFILELOADFAILED._serialized_end=15609 - _PARSEDFILELOADFAILEDMSG._serialized_start=15611 - _PARSEDFILELOADFAILEDMSG._serialized_end=15723 - _PARTIALPARSINGENABLED._serialized_start=15725 - _PARTIALPARSINGENABLED._serialized_end=15797 - _PARTIALPARSINGENABLEDMSG._serialized_start=15799 - _PARTIALPARSINGENABLEDMSG._serialized_end=15913 - _PARTIALPARSINGFILE._serialized_start=15915 - _PARTIALPARSINGFILE._serialized_end=15971 - _PARTIALPARSINGFILEMSG._serialized_start=15973 - _PARTIALPARSINGFILEMSG._serialized_end=16081 - _INVALIDDISABLEDTARGETINTESTNODE._serialized_start=16084 - _INVALIDDISABLEDTARGETINTESTNODE._serialized_end=16259 - _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_start=16262 - _INVALIDDISABLEDTARGETINTESTNODEMSG._serialized_end=16396 - _UNUSEDRESOURCECONFIGPATH._serialized_start=16398 - _UNUSEDRESOURCECONFIGPATH._serialized_end=16453 - _UNUSEDRESOURCECONFIGPATHMSG._serialized_start=16455 - _UNUSEDRESOURCECONFIGPATHMSG._serialized_end=16575 - _SEEDINCREASED._serialized_start=16577 - _SEEDINCREASED._serialized_end=16628 - _SEEDINCREASEDMSG._serialized_start=16630 - _SEEDINCREASEDMSG._serialized_end=16728 - _SEEDEXCEEDSLIMITSAMEPATH._serialized_start=16730 - _SEEDEXCEEDSLIMITSAMEPATH._serialized_end=16792 - _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_start=16794 - _SEEDEXCEEDSLIMITSAMEPATHMSG._serialized_end=16914 - _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_start=16916 - _SEEDEXCEEDSLIMITANDPATHCHANGED._serialized_end=16984 - _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_start=16987 - _SEEDEXCEEDSLIMITANDPATHCHANGEDMSG._serialized_end=17119 - _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_start=17121 - _SEEDEXCEEDSLIMITCHECKSUMCHANGED._serialized_end=17213 - _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_start=17216 - _SEEDEXCEEDSLIMITCHECKSUMCHANGEDMSG._serialized_end=17350 - _UNUSEDTABLES._serialized_start=17352 - _UNUSEDTABLES._serialized_end=17389 - _UNUSEDTABLESMSG._serialized_start=17391 - _UNUSEDTABLESMSG._serialized_end=17487 - _WRONGRESOURCESCHEMAFILE._serialized_start=17490 - _WRONGRESOURCESCHEMAFILE._serialized_end=17625 - _WRONGRESOURCESCHEMAFILEMSG._serialized_start=17627 - _WRONGRESOURCESCHEMAFILEMSG._serialized_end=17745 - _NONODEFORYAMLKEY._serialized_start=17747 - _NONODEFORYAMLKEY._serialized_end=17822 - _NONODEFORYAMLKEYMSG._serialized_start=17824 - _NONODEFORYAMLKEYMSG._serialized_end=17928 - _MACRONOTFOUNDFORPATCH._serialized_start=17930 - _MACRONOTFOUNDFORPATCH._serialized_end=17973 - _MACRONOTFOUNDFORPATCHMSG._serialized_start=17975 - _MACRONOTFOUNDFORPATCHMSG._serialized_end=18089 - _NODENOTFOUNDORDISABLED._serialized_start=18092 - _NODENOTFOUNDORDISABLED._serialized_end=18276 - _NODENOTFOUNDORDISABLEDMSG._serialized_start=18278 - _NODENOTFOUNDORDISABLEDMSG._serialized_end=18394 - _JINJALOGWARNING._serialized_start=18396 - _JINJALOGWARNING._serialized_end=18468 - _JINJALOGWARNINGMSG._serialized_start=18470 - _JINJALOGWARNINGMSG._serialized_end=18572 - _JINJALOGINFO._serialized_start=18574 - _JINJALOGINFO._serialized_end=18643 - _JINJALOGINFOMSG._serialized_start=18645 - _JINJALOGINFOMSG._serialized_end=18741 - _JINJALOGDEBUG._serialized_start=18743 - _JINJALOGDEBUG._serialized_end=18813 - _JINJALOGDEBUGMSG._serialized_start=18815 - _JINJALOGDEBUGMSG._serialized_end=18913 - _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_start=18916 - _UNPINNEDREFNEWVERSIONAVAILABLE._serialized_end=19090 - _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_start=19093 - _UNPINNEDREFNEWVERSIONAVAILABLEMSG._serialized_end=19225 - _DEPRECATEDMODEL._serialized_start=19227 - _DEPRECATEDMODEL._serialized_end=19313 - _DEPRECATEDMODELMSG._serialized_start=19315 - _DEPRECATEDMODELMSG._serialized_end=19417 - _UPCOMINGREFERENCEDEPRECATION._serialized_start=19420 - _UPCOMINGREFERENCEDEPRECATION._serialized_end=19618 - _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_start=19621 - _UPCOMINGREFERENCEDEPRECATIONMSG._serialized_end=19749 - _DEPRECATEDREFERENCE._serialized_start=19752 - _DEPRECATEDREFERENCE._serialized_end=19941 - _DEPRECATEDREFERENCEMSG._serialized_start=19943 - _DEPRECATEDREFERENCEMSG._serialized_end=20053 - _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_start=20055 - _UNSUPPORTEDCONSTRAINTMATERIALIZATION._serialized_end=20115 - _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_start=20118 - _UNSUPPORTEDCONSTRAINTMATERIALIZATIONMSG._serialized_end=20262 - _GITSPARSECHECKOUTSUBDIRECTORY._serialized_start=20264 - _GITSPARSECHECKOUTSUBDIRECTORY._serialized_end=20311 - _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_start=20314 - _GITSPARSECHECKOUTSUBDIRECTORYMSG._serialized_end=20444 - _GITPROGRESSCHECKOUTREVISION._serialized_start=20446 - _GITPROGRESSCHECKOUTREVISION._serialized_end=20493 - _GITPROGRESSCHECKOUTREVISIONMSG._serialized_start=20495 - _GITPROGRESSCHECKOUTREVISIONMSG._serialized_end=20621 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_start=20623 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCY._serialized_end=20675 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_start=20678 - _GITPROGRESSUPDATINGEXISTINGDEPENDENCYMSG._serialized_end=20824 - _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_start=20826 - _GITPROGRESSPULLINGNEWDEPENDENCY._serialized_end=20872 - _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_start=20875 - _GITPROGRESSPULLINGNEWDEPENDENCYMSG._serialized_end=21009 - _GITNOTHINGTODO._serialized_start=21011 - _GITNOTHINGTODO._serialized_end=21040 - _GITNOTHINGTODOMSG._serialized_start=21042 - _GITNOTHINGTODOMSG._serialized_end=21142 - _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_start=21144 - _GITPROGRESSUPDATEDCHECKOUTRANGE._serialized_end=21213 - _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_start=21216 - _GITPROGRESSUPDATEDCHECKOUTRANGEMSG._serialized_end=21350 - _GITPROGRESSCHECKEDOUTAT._serialized_start=21352 - _GITPROGRESSCHECKEDOUTAT._serialized_end=21394 - _GITPROGRESSCHECKEDOUTATMSG._serialized_start=21396 - _GITPROGRESSCHECKEDOUTATMSG._serialized_end=21514 - _REGISTRYPROGRESSGETREQUEST._serialized_start=21516 - _REGISTRYPROGRESSGETREQUEST._serialized_end=21557 - _REGISTRYPROGRESSGETREQUESTMSG._serialized_start=21559 - _REGISTRYPROGRESSGETREQUESTMSG._serialized_end=21683 - _REGISTRYPROGRESSGETRESPONSE._serialized_start=21685 - _REGISTRYPROGRESSGETRESPONSE._serialized_end=21746 - _REGISTRYPROGRESSGETRESPONSEMSG._serialized_start=21748 - _REGISTRYPROGRESSGETRESPONSEMSG._serialized_end=21874 - _SELECTORREPORTINVALIDSELECTOR._serialized_start=21876 - _SELECTORREPORTINVALIDSELECTOR._serialized_end=21971 - _SELECTORREPORTINVALIDSELECTORMSG._serialized_start=21974 - _SELECTORREPORTINVALIDSELECTORMSG._serialized_end=22104 - _DEPSNOPACKAGESFOUND._serialized_start=22106 - _DEPSNOPACKAGESFOUND._serialized_end=22127 - _DEPSNOPACKAGESFOUNDMSG._serialized_start=22129 - _DEPSNOPACKAGESFOUNDMSG._serialized_end=22239 - _DEPSSTARTPACKAGEINSTALL._serialized_start=22241 - _DEPSSTARTPACKAGEINSTALL._serialized_end=22288 - _DEPSSTARTPACKAGEINSTALLMSG._serialized_start=22290 - _DEPSSTARTPACKAGEINSTALLMSG._serialized_end=22408 - _DEPSINSTALLINFO._serialized_start=22410 - _DEPSINSTALLINFO._serialized_end=22449 - _DEPSINSTALLINFOMSG._serialized_start=22451 - _DEPSINSTALLINFOMSG._serialized_end=22553 - _DEPSUPDATEAVAILABLE._serialized_start=22555 - _DEPSUPDATEAVAILABLE._serialized_end=22600 - _DEPSUPDATEAVAILABLEMSG._serialized_start=22602 - _DEPSUPDATEAVAILABLEMSG._serialized_end=22712 - _DEPSUPTODATE._serialized_start=22714 - _DEPSUPTODATE._serialized_end=22728 - _DEPSUPTODATEMSG._serialized_start=22730 - _DEPSUPTODATEMSG._serialized_end=22826 - _DEPSLISTSUBDIRECTORY._serialized_start=22828 - _DEPSLISTSUBDIRECTORY._serialized_end=22872 - _DEPSLISTSUBDIRECTORYMSG._serialized_start=22874 - _DEPSLISTSUBDIRECTORYMSG._serialized_end=22986 - _DEPSNOTIFYUPDATESAVAILABLE._serialized_start=22988 - _DEPSNOTIFYUPDATESAVAILABLE._serialized_end=23034 - _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_start=23036 - _DEPSNOTIFYUPDATESAVAILABLEMSG._serialized_end=23160 - _RETRYEXTERNALCALL._serialized_start=23162 - _RETRYEXTERNALCALL._serialized_end=23211 - _RETRYEXTERNALCALLMSG._serialized_start=23213 - _RETRYEXTERNALCALLMSG._serialized_end=23319 - _RECORDRETRYEXCEPTION._serialized_start=23321 - _RECORDRETRYEXCEPTION._serialized_end=23356 - _RECORDRETRYEXCEPTIONMSG._serialized_start=23358 - _RECORDRETRYEXCEPTIONMSG._serialized_end=23470 - _REGISTRYINDEXPROGRESSGETREQUEST._serialized_start=23472 - _REGISTRYINDEXPROGRESSGETREQUEST._serialized_end=23518 - _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_start=23521 - _REGISTRYINDEXPROGRESSGETREQUESTMSG._serialized_end=23655 - _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_start=23657 - _REGISTRYINDEXPROGRESSGETRESPONSE._serialized_end=23723 - _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_start=23726 - _REGISTRYINDEXPROGRESSGETRESPONSEMSG._serialized_end=23862 - _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_start=23864 - _REGISTRYRESPONSEUNEXPECTEDTYPE._serialized_end=23914 - _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_start=23917 - _REGISTRYRESPONSEUNEXPECTEDTYPEMSG._serialized_end=24049 - _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_start=24051 - _REGISTRYRESPONSEMISSINGTOPKEYS._serialized_end=24101 - _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_start=24104 - _REGISTRYRESPONSEMISSINGTOPKEYSMSG._serialized_end=24236 - _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_start=24238 - _REGISTRYRESPONSEMISSINGNESTEDKEYS._serialized_end=24291 - _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_start=24294 - _REGISTRYRESPONSEMISSINGNESTEDKEYSMSG._serialized_end=24432 - _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_start=24434 - _REGISTRYRESPONSEEXTRANESTEDKEYS._serialized_end=24485 - _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_start=24488 - _REGISTRYRESPONSEEXTRANESTEDKEYSMSG._serialized_end=24622 - _DEPSSETDOWNLOADDIRECTORY._serialized_start=24624 - _DEPSSETDOWNLOADDIRECTORY._serialized_end=24664 - _DEPSSETDOWNLOADDIRECTORYMSG._serialized_start=24666 - _DEPSSETDOWNLOADDIRECTORYMSG._serialized_end=24786 - _DEPSUNPINNED._serialized_start=24788 - _DEPSUNPINNED._serialized_end=24833 - _DEPSUNPINNEDMSG._serialized_start=24835 - _DEPSUNPINNEDMSG._serialized_end=24931 - _NONODESFORSELECTIONCRITERIA._serialized_start=24933 - _NONODESFORSELECTIONCRITERIA._serialized_end=24980 - _NONODESFORSELECTIONCRITERIAMSG._serialized_start=24982 - _NONODESFORSELECTIONCRITERIAMSG._serialized_end=25108 - _PUBLICATIONARTIFACTAVAILABLE._serialized_start=25110 - _PUBLICATIONARTIFACTAVAILABLE._serialized_end=25187 - _PUBLICATIONARTIFACTAVAILABLEMSG._serialized_start=25190 - _PUBLICATIONARTIFACTAVAILABLEMSG._serialized_end=25318 - _RUNNINGOPERATIONCAUGHTERROR._serialized_start=25320 - _RUNNINGOPERATIONCAUGHTERROR._serialized_end=25362 - _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_start=25364 - _RUNNINGOPERATIONCAUGHTERRORMSG._serialized_end=25490 - _COMPILECOMPLETE._serialized_start=25492 - _COMPILECOMPLETE._serialized_end=25509 - _COMPILECOMPLETEMSG._serialized_start=25511 - _COMPILECOMPLETEMSG._serialized_end=25613 - _FRESHNESSCHECKCOMPLETE._serialized_start=25615 - _FRESHNESSCHECKCOMPLETE._serialized_end=25639 - _FRESHNESSCHECKCOMPLETEMSG._serialized_start=25641 - _FRESHNESSCHECKCOMPLETEMSG._serialized_end=25757 - _SEEDHEADER._serialized_start=25759 - _SEEDHEADER._serialized_end=25787 - _SEEDHEADERMSG._serialized_start=25789 - _SEEDHEADERMSG._serialized_end=25881 - _SQLRUNNEREXCEPTION._serialized_start=25883 - _SQLRUNNEREXCEPTION._serialized_end=25934 - _SQLRUNNEREXCEPTIONMSG._serialized_start=25936 - _SQLRUNNEREXCEPTIONMSG._serialized_end=26044 - _LOGTESTRESULT._serialized_start=26047 - _LOGTESTRESULT._serialized_end=26215 - _LOGTESTRESULTMSG._serialized_start=26217 - _LOGTESTRESULTMSG._serialized_end=26315 - _LOGSTARTLINE._serialized_start=26317 - _LOGSTARTLINE._serialized_end=26424 - _LOGSTARTLINEMSG._serialized_start=26426 - _LOGSTARTLINEMSG._serialized_end=26522 - _LOGMODELRESULT._serialized_start=26525 - _LOGMODELRESULT._serialized_end=26674 - _LOGMODELRESULTMSG._serialized_start=26676 - _LOGMODELRESULTMSG._serialized_end=26776 - _LOGSNAPSHOTRESULT._serialized_start=26779 - _LOGSNAPSHOTRESULT._serialized_end=27029 - _LOGSNAPSHOTRESULT_CFGENTRY._serialized_start=26987 - _LOGSNAPSHOTRESULT_CFGENTRY._serialized_end=27029 - _LOGSNAPSHOTRESULTMSG._serialized_start=27031 - _LOGSNAPSHOTRESULTMSG._serialized_end=27137 - _LOGSEEDRESULT._serialized_start=27140 - _LOGSEEDRESULT._serialized_end=27325 - _LOGSEEDRESULTMSG._serialized_start=27327 - _LOGSEEDRESULTMSG._serialized_end=27425 - _LOGFRESHNESSRESULT._serialized_start=27428 - _LOGFRESHNESSRESULT._serialized_end=27601 - _LOGFRESHNESSRESULTMSG._serialized_start=27603 - _LOGFRESHNESSRESULTMSG._serialized_end=27711 - _LOGCANCELLINE._serialized_start=27713 - _LOGCANCELLINE._serialized_end=27747 - _LOGCANCELLINEMSG._serialized_start=27749 - _LOGCANCELLINEMSG._serialized_end=27847 - _DEFAULTSELECTOR._serialized_start=27849 - _DEFAULTSELECTOR._serialized_end=27880 - _DEFAULTSELECTORMSG._serialized_start=27882 - _DEFAULTSELECTORMSG._serialized_end=27984 - _NODESTART._serialized_start=27986 - _NODESTART._serialized_end=28039 - _NODESTARTMSG._serialized_start=28041 - _NODESTARTMSG._serialized_end=28131 - _NODEFINISHED._serialized_start=28133 - _NODEFINISHED._serialized_end=28236 - _NODEFINISHEDMSG._serialized_start=28238 - _NODEFINISHEDMSG._serialized_end=28334 - _QUERYCANCELATIONUNSUPPORTED._serialized_start=28336 - _QUERYCANCELATIONUNSUPPORTED._serialized_end=28379 - _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_start=28381 - _QUERYCANCELATIONUNSUPPORTEDMSG._serialized_end=28507 - _CONCURRENCYLINE._serialized_start=28509 - _CONCURRENCYLINE._serialized_end=28588 - _CONCURRENCYLINEMSG._serialized_start=28590 - _CONCURRENCYLINEMSG._serialized_end=28692 - _WRITINGINJECTEDSQLFORNODE._serialized_start=28694 - _WRITINGINJECTEDSQLFORNODE._serialized_end=28763 - _WRITINGINJECTEDSQLFORNODEMSG._serialized_start=28765 - _WRITINGINJECTEDSQLFORNODEMSG._serialized_end=28887 - _NODECOMPILING._serialized_start=28889 - _NODECOMPILING._serialized_end=28946 - _NODECOMPILINGMSG._serialized_start=28948 - _NODECOMPILINGMSG._serialized_end=29046 - _NODEEXECUTING._serialized_start=29048 - _NODEEXECUTING._serialized_end=29105 - _NODEEXECUTINGMSG._serialized_start=29107 - _NODEEXECUTINGMSG._serialized_end=29205 - _LOGHOOKSTARTLINE._serialized_start=29207 - _LOGHOOKSTARTLINE._serialized_end=29316 - _LOGHOOKSTARTLINEMSG._serialized_start=29318 - _LOGHOOKSTARTLINEMSG._serialized_end=29422 - _LOGHOOKENDLINE._serialized_start=29425 - _LOGHOOKENDLINE._serialized_end=29572 - _LOGHOOKENDLINEMSG._serialized_start=29574 - _LOGHOOKENDLINEMSG._serialized_end=29674 - _SKIPPINGDETAILS._serialized_start=29677 - _SKIPPINGDETAILS._serialized_end=29824 - _SKIPPINGDETAILSMSG._serialized_start=29826 - _SKIPPINGDETAILSMSG._serialized_end=29928 - _NOTHINGTODO._serialized_start=29930 - _NOTHINGTODO._serialized_end=29943 - _NOTHINGTODOMSG._serialized_start=29945 - _NOTHINGTODOMSG._serialized_end=30039 - _RUNNINGOPERATIONUNCAUGHTERROR._serialized_start=30041 - _RUNNINGOPERATIONUNCAUGHTERROR._serialized_end=30085 - _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_start=30088 - _RUNNINGOPERATIONUNCAUGHTERRORMSG._serialized_end=30218 - _ENDRUNRESULT._serialized_start=30221 - _ENDRUNRESULT._serialized_end=30368 - _ENDRUNRESULTMSG._serialized_start=30370 - _ENDRUNRESULTMSG._serialized_end=30466 - _NONODESSELECTED._serialized_start=30468 - _NONODESSELECTED._serialized_end=30485 - _NONODESSELECTEDMSG._serialized_start=30487 - _NONODESSELECTEDMSG._serialized_end=30589 - _COMMANDCOMPLETED._serialized_start=30591 - _COMMANDCOMPLETED._serialized_end=30710 - _COMMANDCOMPLETEDMSG._serialized_start=30712 - _COMMANDCOMPLETEDMSG._serialized_end=30816 - _SHOWNODE._serialized_start=30818 - _SHOWNODE._serialized_end=30925 - _SHOWNODEMSG._serialized_start=30927 - _SHOWNODEMSG._serialized_end=31015 - _COMPILEDNODE._serialized_start=31017 - _COMPILEDNODE._serialized_end=31129 - _COMPILEDNODEMSG._serialized_start=31131 - _COMPILEDNODEMSG._serialized_end=31227 - _CATCHABLEEXCEPTIONONRUN._serialized_start=31229 - _CATCHABLEEXCEPTIONONRUN._serialized_end=31327 - _CATCHABLEEXCEPTIONONRUNMSG._serialized_start=31329 - _CATCHABLEEXCEPTIONONRUNMSG._serialized_end=31447 - _INTERNALERRORONRUN._serialized_start=31449 - _INTERNALERRORONRUN._serialized_end=31502 - _INTERNALERRORONRUNMSG._serialized_start=31504 - _INTERNALERRORONRUNMSG._serialized_end=31612 - _GENERICEXCEPTIONONRUN._serialized_start=31614 - _GENERICEXCEPTIONONRUN._serialized_end=31689 - _GENERICEXCEPTIONONRUNMSG._serialized_start=31691 - _GENERICEXCEPTIONONRUNMSG._serialized_end=31805 - _NODECONNECTIONRELEASEERROR._serialized_start=31807 - _NODECONNECTIONRELEASEERROR._serialized_end=31885 - _NODECONNECTIONRELEASEERRORMSG._serialized_start=31887 - _NODECONNECTIONRELEASEERRORMSG._serialized_end=32011 - _FOUNDSTATS._serialized_start=32013 - _FOUNDSTATS._serialized_end=32044 - _FOUNDSTATSMSG._serialized_start=32046 - _FOUNDSTATSMSG._serialized_end=32138 - _MAINKEYBOARDINTERRUPT._serialized_start=32140 - _MAINKEYBOARDINTERRUPT._serialized_end=32163 - _MAINKEYBOARDINTERRUPTMSG._serialized_start=32165 - _MAINKEYBOARDINTERRUPTMSG._serialized_end=32279 - _MAINENCOUNTEREDERROR._serialized_start=32281 - _MAINENCOUNTEREDERROR._serialized_end=32316 - _MAINENCOUNTEREDERRORMSG._serialized_start=32318 - _MAINENCOUNTEREDERRORMSG._serialized_end=32430 - _MAINSTACKTRACE._serialized_start=32432 - _MAINSTACKTRACE._serialized_end=32469 - _MAINSTACKTRACEMSG._serialized_start=32471 - _MAINSTACKTRACEMSG._serialized_end=32571 - _SYSTEMCOULDNOTWRITE._serialized_start=32573 - _SYSTEMCOULDNOTWRITE._serialized_end=32637 - _SYSTEMCOULDNOTWRITEMSG._serialized_start=32639 - _SYSTEMCOULDNOTWRITEMSG._serialized_end=32749 - _SYSTEMEXECUTINGCMD._serialized_start=32751 - _SYSTEMEXECUTINGCMD._serialized_end=32784 - _SYSTEMEXECUTINGCMDMSG._serialized_start=32786 - _SYSTEMEXECUTINGCMDMSG._serialized_end=32894 - _SYSTEMSTDOUT._serialized_start=32896 - _SYSTEMSTDOUT._serialized_end=32924 - _SYSTEMSTDOUTMSG._serialized_start=32926 - _SYSTEMSTDOUTMSG._serialized_end=33022 - _SYSTEMSTDERR._serialized_start=33024 - _SYSTEMSTDERR._serialized_end=33052 - _SYSTEMSTDERRMSG._serialized_start=33054 - _SYSTEMSTDERRMSG._serialized_end=33150 - _SYSTEMREPORTRETURNCODE._serialized_start=33152 - _SYSTEMREPORTRETURNCODE._serialized_end=33196 - _SYSTEMREPORTRETURNCODEMSG._serialized_start=33198 - _SYSTEMREPORTRETURNCODEMSG._serialized_end=33314 - _TIMINGINFOCOLLECTED._serialized_start=33316 - _TIMINGINFOCOLLECTED._serialized_end=33428 - _TIMINGINFOCOLLECTEDMSG._serialized_start=33430 - _TIMINGINFOCOLLECTEDMSG._serialized_end=33540 - _LOGDEBUGSTACKTRACE._serialized_start=33542 - _LOGDEBUGSTACKTRACE._serialized_end=33580 - _LOGDEBUGSTACKTRACEMSG._serialized_start=33582 - _LOGDEBUGSTACKTRACEMSG._serialized_end=33690 - _CHECKCLEANPATH._serialized_start=33692 - _CHECKCLEANPATH._serialized_end=33722 - _CHECKCLEANPATHMSG._serialized_start=33724 - _CHECKCLEANPATHMSG._serialized_end=33824 - _CONFIRMCLEANPATH._serialized_start=33826 - _CONFIRMCLEANPATH._serialized_end=33858 - _CONFIRMCLEANPATHMSG._serialized_start=33860 - _CONFIRMCLEANPATHMSG._serialized_end=33964 - _PROTECTEDCLEANPATH._serialized_start=33966 - _PROTECTEDCLEANPATH._serialized_end=34000 - _PROTECTEDCLEANPATHMSG._serialized_start=34002 - _PROTECTEDCLEANPATHMSG._serialized_end=34110 - _FINISHEDCLEANPATHS._serialized_start=34112 - _FINISHEDCLEANPATHS._serialized_end=34132 - _FINISHEDCLEANPATHSMSG._serialized_start=34134 - _FINISHEDCLEANPATHSMSG._serialized_end=34242 - _OPENCOMMAND._serialized_start=34244 - _OPENCOMMAND._serialized_end=34297 - _OPENCOMMANDMSG._serialized_start=34299 - _OPENCOMMANDMSG._serialized_end=34393 - _FORMATTING._serialized_start=34395 - _FORMATTING._serialized_end=34420 - _FORMATTINGMSG._serialized_start=34422 - _FORMATTINGMSG._serialized_end=34514 - _SERVINGDOCSPORT._serialized_start=34516 - _SERVINGDOCSPORT._serialized_end=34564 - _SERVINGDOCSPORTMSG._serialized_start=34566 - _SERVINGDOCSPORTMSG._serialized_end=34668 - _SERVINGDOCSACCESSINFO._serialized_start=34670 - _SERVINGDOCSACCESSINFO._serialized_end=34707 - _SERVINGDOCSACCESSINFOMSG._serialized_start=34709 - _SERVINGDOCSACCESSINFOMSG._serialized_end=34823 - _SERVINGDOCSEXITINFO._serialized_start=34825 - _SERVINGDOCSEXITINFO._serialized_end=34846 - _SERVINGDOCSEXITINFOMSG._serialized_start=34848 - _SERVINGDOCSEXITINFOMSG._serialized_end=34958 - _RUNRESULTWARNING._serialized_start=34960 - _RUNRESULTWARNING._serialized_end=35034 - _RUNRESULTWARNINGMSG._serialized_start=35036 - _RUNRESULTWARNINGMSG._serialized_end=35140 - _RUNRESULTFAILURE._serialized_start=35142 - _RUNRESULTFAILURE._serialized_end=35216 - _RUNRESULTFAILUREMSG._serialized_start=35218 - _RUNRESULTFAILUREMSG._serialized_end=35322 - _STATSLINE._serialized_start=35324 - _STATSLINE._serialized_end=35431 - _STATSLINE_STATSENTRY._serialized_start=35387 - _STATSLINE_STATSENTRY._serialized_end=35431 - _STATSLINEMSG._serialized_start=35433 - _STATSLINEMSG._serialized_end=35523 - _RUNRESULTERROR._serialized_start=35525 - _RUNRESULTERROR._serialized_end=35554 - _RUNRESULTERRORMSG._serialized_start=35556 - _RUNRESULTERRORMSG._serialized_end=35656 - _RUNRESULTERRORNOMESSAGE._serialized_start=35658 - _RUNRESULTERRORNOMESSAGE._serialized_end=35699 - _RUNRESULTERRORNOMESSAGEMSG._serialized_start=35701 - _RUNRESULTERRORNOMESSAGEMSG._serialized_end=35819 - _SQLCOMPILEDPATH._serialized_start=35821 - _SQLCOMPILEDPATH._serialized_end=35852 - _SQLCOMPILEDPATHMSG._serialized_start=35854 - _SQLCOMPILEDPATHMSG._serialized_end=35956 - _CHECKNODETESTFAILURE._serialized_start=35958 - _CHECKNODETESTFAILURE._serialized_end=36003 - _CHECKNODETESTFAILUREMSG._serialized_start=36005 - _CHECKNODETESTFAILUREMSG._serialized_end=36117 - _FIRSTRUNRESULTERROR._serialized_start=36119 - _FIRSTRUNRESULTERROR._serialized_end=36153 - _FIRSTRUNRESULTERRORMSG._serialized_start=36155 - _FIRSTRUNRESULTERRORMSG._serialized_end=36265 - _AFTERFIRSTRUNRESULTERROR._serialized_start=36267 - _AFTERFIRSTRUNRESULTERROR._serialized_end=36306 - _AFTERFIRSTRUNRESULTERRORMSG._serialized_start=36308 - _AFTERFIRSTRUNRESULTERRORMSG._serialized_end=36428 - _ENDOFRUNSUMMARY._serialized_start=36430 - _ENDOFRUNSUMMARY._serialized_end=36517 - _ENDOFRUNSUMMARYMSG._serialized_start=36519 - _ENDOFRUNSUMMARYMSG._serialized_end=36621 - _LOGSKIPBECAUSEERROR._serialized_start=36623 - _LOGSKIPBECAUSEERROR._serialized_end=36708 - _LOGSKIPBECAUSEERRORMSG._serialized_start=36710 - _LOGSKIPBECAUSEERRORMSG._serialized_end=36820 - _ENSUREGITINSTALLED._serialized_start=36822 - _ENSUREGITINSTALLED._serialized_end=36842 - _ENSUREGITINSTALLEDMSG._serialized_start=36844 - _ENSUREGITINSTALLEDMSG._serialized_end=36952 - _DEPSCREATINGLOCALSYMLINK._serialized_start=36954 - _DEPSCREATINGLOCALSYMLINK._serialized_end=36980 - _DEPSCREATINGLOCALSYMLINKMSG._serialized_start=36982 - _DEPSCREATINGLOCALSYMLINKMSG._serialized_end=37102 - _DEPSSYMLINKNOTAVAILABLE._serialized_start=37104 - _DEPSSYMLINKNOTAVAILABLE._serialized_end=37129 - _DEPSSYMLINKNOTAVAILABLEMSG._serialized_start=37131 - _DEPSSYMLINKNOTAVAILABLEMSG._serialized_end=37249 - _DISABLETRACKING._serialized_start=37251 - _DISABLETRACKING._serialized_end=37268 - _DISABLETRACKINGMSG._serialized_start=37270 - _DISABLETRACKINGMSG._serialized_end=37372 - _SENDINGEVENT._serialized_start=37374 - _SENDINGEVENT._serialized_end=37404 - _SENDINGEVENTMSG._serialized_start=37406 - _SENDINGEVENTMSG._serialized_end=37502 - _SENDEVENTFAILURE._serialized_start=37504 - _SENDEVENTFAILURE._serialized_end=37522 - _SENDEVENTFAILUREMSG._serialized_start=37524 - _SENDEVENTFAILUREMSG._serialized_end=37628 - _FLUSHEVENTS._serialized_start=37630 - _FLUSHEVENTS._serialized_end=37643 - _FLUSHEVENTSMSG._serialized_start=37645 - _FLUSHEVENTSMSG._serialized_end=37739 - _FLUSHEVENTSFAILURE._serialized_start=37741 - _FLUSHEVENTSFAILURE._serialized_end=37761 - _FLUSHEVENTSFAILUREMSG._serialized_start=37763 - _FLUSHEVENTSFAILUREMSG._serialized_end=37871 - _TRACKINGINITIALIZEFAILURE._serialized_start=37873 - _TRACKINGINITIALIZEFAILURE._serialized_end=37918 - _TRACKINGINITIALIZEFAILUREMSG._serialized_start=37920 - _TRACKINGINITIALIZEFAILUREMSG._serialized_end=38042 - _RUNRESULTWARNINGMESSAGE._serialized_start=38044 - _RUNRESULTWARNINGMESSAGE._serialized_end=38082 - _RUNRESULTWARNINGMESSAGEMSG._serialized_start=38084 - _RUNRESULTWARNINGMESSAGEMSG._serialized_end=38202 - _DEBUGCMDOUT._serialized_start=38204 - _DEBUGCMDOUT._serialized_end=38230 - _DEBUGCMDOUTMSG._serialized_start=38232 - _DEBUGCMDOUTMSG._serialized_end=38326 - _DEBUGCMDRESULT._serialized_start=38328 - _DEBUGCMDRESULT._serialized_end=38357 - _DEBUGCMDRESULTMSG._serialized_start=38359 - _DEBUGCMDRESULTMSG._serialized_end=38459 - _LISTCMDOUT._serialized_start=38461 - _LISTCMDOUT._serialized_end=38486 - _LISTCMDOUTMSG._serialized_start=38488 - _LISTCMDOUTMSG._serialized_end=38580 - _NOTE._serialized_start=38582 - _NOTE._serialized_end=38601 - _NOTEMSG._serialized_start=38603 - _NOTEMSG._serialized_end=38683 + _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 3e65fbc793c..2ff2c8856eb 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=""),