conduit-client 0.1.0.dev1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- conduit/__init__.py +58 -0
- conduit/_grpc/__init__.py +54 -0
- conduit/_grpc/api/v1/api_pb2.py +381 -0
- conduit/_grpc/api/v1/api_pb2.pyi +837 -0
- conduit/_grpc/api/v1/api_pb2_grpc.py +1527 -0
- conduit/_grpc/config/v1/parameter_pb2.py +43 -0
- conduit/_grpc/config/v1/parameter_pb2.pyi +59 -0
- conduit/_grpc/config/v1/parameter_pb2_grpc.py +4 -0
- conduit/_grpc/google/api/annotations_pb2.py +37 -0
- conduit/_grpc/google/api/annotations_pb2.pyi +8 -0
- conduit/_grpc/google/api/annotations_pb2_grpc.py +4 -0
- conduit/_grpc/google/api/field_behavior_pb2.py +40 -0
- conduit/_grpc/google/api/field_behavior_pb2.pyi +29 -0
- conduit/_grpc/google/api/field_behavior_pb2_grpc.py +4 -0
- conduit/_grpc/google/api/http_pb2.py +41 -0
- conduit/_grpc/google/api/http_pb2.pyi +46 -0
- conduit/_grpc/google/api/http_pb2_grpc.py +4 -0
- conduit/_grpc/opencdc/v1/opencdc_pb2.py +49 -0
- conduit/_grpc/opencdc/v1/opencdc_pb2.pyi +89 -0
- conduit/_grpc/opencdc/v1/opencdc_pb2_grpc.py +4 -0
- conduit/_grpc/protoc_gen_openapiv2/options/annotations_pb2.py +37 -0
- conduit/_grpc/protoc_gen_openapiv2/options/annotations_pb2.pyi +18 -0
- conduit/_grpc/protoc_gen_openapiv2/options/annotations_pb2_grpc.py +4 -0
- conduit/_grpc/protoc_gen_openapiv2/options/openapiv2_pb2.py +148 -0
- conduit/_grpc/protoc_gen_openapiv2/options/openapiv2_pb2.pyi +493 -0
- conduit/_grpc/protoc_gen_openapiv2/options/openapiv2_pb2_grpc.py +4 -0
- conduit/_local.py +297 -0
- conduit/_provision.py +231 -0
- conduit/client.py +245 -0
- conduit/errors.py +152 -0
- conduit/pipeline.py +353 -0
- conduit/py.typed +0 -0
- conduit/run.py +165 -0
- conduit_client-0.1.0.dev1.dist-info/METADATA +238 -0
- conduit_client-0.1.0.dev1.dist-info/RECORD +37 -0
- conduit_client-0.1.0.dev1.dist-info/WHEEL +4 -0
- conduit_client-0.1.0.dev1.dist-info/licenses/LICENSE +201 -0
conduit/__init__.py
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"""Python client library for defining and running Conduit pipelines in code.
|
|
2
|
+
|
|
3
|
+
Slice 1 (Case A: named connector plugins only -- see
|
|
4
|
+
``docs/design/20260724-embed-grpc-client-libraries.md``, "Build slices"), a
|
|
5
|
+
gRPC client over Conduit's existing control-plane API
|
|
6
|
+
(``proto/api/v1/api.proto``), per
|
|
7
|
+
``docs/design/20260724-embed-bindings-via-grpc.md`` (the ADR this design
|
|
8
|
+
implements).
|
|
9
|
+
|
|
10
|
+
Quickstart::
|
|
11
|
+
|
|
12
|
+
import conduit
|
|
13
|
+
|
|
14
|
+
pipeline = (
|
|
15
|
+
conduit.Pipeline("orders-sync")
|
|
16
|
+
.source("generator", settings={"format.type": "structured"}, operations="create")
|
|
17
|
+
.destination("log", level="info")
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
with conduit.local(state_dir="./conduit-state") as client:
|
|
21
|
+
run = client.run(pipeline)
|
|
22
|
+
run.wait_running()
|
|
23
|
+
print(run.status())
|
|
24
|
+
run.stop()
|
|
25
|
+
|
|
26
|
+
Public surface: :class:`Pipeline` (builder), :func:`local`/:func:`connect`
|
|
27
|
+
(client construction), :class:`~conduit.client.Client`, :class:`~conduit.run.Run`
|
|
28
|
+
/ :class:`~conduit.run.RunStatus`, and :class:`ConduitError`.
|
|
29
|
+
|
|
30
|
+
**Not yet public** (fast-follows, see the design doc's "Build slices"):
|
|
31
|
+
typed per-connector config (``Settings`` is a flat ``map<string, string>``
|
|
32
|
+
today -- every keyword argument to ``.source()``/``.destination()``/
|
|
33
|
+
``.process()`` is coerced to a string), ``inline_source``/
|
|
34
|
+
``inline_destination`` (Case B, needs the external-connector engine feature,
|
|
35
|
+
Slice 2), and an async client.
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
from __future__ import annotations
|
|
39
|
+
|
|
40
|
+
from conduit._local import LocalConduit, local
|
|
41
|
+
from conduit.client import Client, connect
|
|
42
|
+
from conduit.errors import ConduitError
|
|
43
|
+
from conduit.pipeline import Pipeline
|
|
44
|
+
from conduit.run import Run, RunStatus
|
|
45
|
+
|
|
46
|
+
__version__ = "0.1.0.dev0"
|
|
47
|
+
|
|
48
|
+
__all__ = [
|
|
49
|
+
"Client",
|
|
50
|
+
"ConduitError",
|
|
51
|
+
"LocalConduit",
|
|
52
|
+
"Pipeline",
|
|
53
|
+
"Run",
|
|
54
|
+
"RunStatus",
|
|
55
|
+
"__version__",
|
|
56
|
+
"connect",
|
|
57
|
+
"local",
|
|
58
|
+
]
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"""Generated protobuf/grpc stubs for the control-plane API (``proto/api/v1/api.proto``).
|
|
2
|
+
|
|
3
|
+
**Generated, vendored code below this package -- never hand-edit.** Regenerate via
|
|
4
|
+
``./tools/generate-stubs.sh`` (requires ``buf`` on ``PATH``; see that script and
|
|
5
|
+
``buf.gen.yaml`` for the exact BSR modules/paths pulled).
|
|
6
|
+
|
|
7
|
+
Layout note / known tradeoff (same one ``conduit-connector-sdk-python`` documents,
|
|
8
|
+
reused here verbatim because the cause is identical): protoc's Python codegen
|
|
9
|
+
emits *absolute* imports rooted at each ``.proto`` file's own package path --
|
|
10
|
+
e.g. ``api/v1/api.proto`` imports ``config/v1/parameter.proto`` and becomes
|
|
11
|
+
``from config.v1 import parameter_pb2``, not an import nested under
|
|
12
|
+
``conduit._grpc``. Rewriting generated output to nest those imports would mean
|
|
13
|
+
hand-patching files explicitly marked "NO CHECKED-IN PROTOBUF GENCODE / DO NOT
|
|
14
|
+
EDIT", which is fragile across regenerations. Instead, this module prepends its
|
|
15
|
+
own directory to ``sys.path`` once, at import time, so the absolute imports the
|
|
16
|
+
generated code already contains resolve correctly as long as something has
|
|
17
|
+
imported ``conduit._grpc`` (directly or transitively) before importing e.g.
|
|
18
|
+
``api.v1.api_pb2``.
|
|
19
|
+
|
|
20
|
+
**Why this package vendors more than just ``api/v1``:** ``api.proto`` imports
|
|
21
|
+
``config/v1/parameter.proto`` and ``opencdc/v1/opencdc.proto`` (from
|
|
22
|
+
``conduit-commons``), plus ``google/api/annotations.proto``,
|
|
23
|
+
``google/api/field_behavior.proto`` and
|
|
24
|
+
``protoc-gen-openapiv2/options/annotations.proto`` (used as message/method
|
|
25
|
+
options, e.g. ``google.api.http``) from ``googleapis``/``grpc-gateway``. The
|
|
26
|
+
Python protobuf runtime resolves a message's full descriptor -- including its
|
|
27
|
+
declared options -- through the descriptor pool at import time, so every
|
|
28
|
+
transitively imported ``.proto`` file needs a corresponding generated Python
|
|
29
|
+
module physically present, even though this client only ever constructs and
|
|
30
|
+
reads a handful of ``api.v1`` message types directly. ``api_pb2.py`` is the
|
|
31
|
+
only module here with request/response types this package's public API
|
|
32
|
+
touches; the ``config``, ``opencdc``, ``google.api`` and
|
|
33
|
+
``protoc_gen_openapiv2`` trees exist solely so ``import api.v1.api_pb2``
|
|
34
|
+
succeeds.
|
|
35
|
+
|
|
36
|
+
**Tradeoff, stated plainly:** this makes top-level names like ``api``,
|
|
37
|
+
``config``, ``opencdc``, ``google``, and ``protoc_gen_openapiv2`` resolvable as
|
|
38
|
+
importable modules process-wide once this package has been imported -- ``api``,
|
|
39
|
+
``config``, and ``google`` in particular are generic enough that a real (if
|
|
40
|
+
low-probability) collision risk exists with an unrelated third-party package of
|
|
41
|
+
the same name installed in the same environment. Acceptable for a Slice-1
|
|
42
|
+
vendored-stub layer behind the internal ``_grpc/`` boundary (callers never
|
|
43
|
+
import ``conduit._grpc`` submodules directly -- only ``conduit``'s public
|
|
44
|
+
API does); revisit if this becomes a real collision in practice.
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
from __future__ import annotations
|
|
48
|
+
|
|
49
|
+
import sys
|
|
50
|
+
from pathlib import Path
|
|
51
|
+
|
|
52
|
+
_STUB_ROOT = str(Path(__file__).parent)
|
|
53
|
+
if _STUB_ROOT not in sys.path:
|
|
54
|
+
sys.path.insert(0, _STUB_ROOT)
|
|
@@ -0,0 +1,381 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: api/v1/api.proto
|
|
5
|
+
# Protobuf Python Version: 5.29.2
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
29,
|
|
16
|
+
2,
|
|
17
|
+
'',
|
|
18
|
+
'api/v1/api.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from config.v1 import parameter_pb2 as config_dot_v1_dot_parameter__pb2
|
|
26
|
+
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
27
|
+
from google.api import field_behavior_pb2 as google_dot_api_dot_field__behavior__pb2
|
|
28
|
+
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
29
|
+
from opencdc.v1 import opencdc_pb2 as opencdc_dot_v1_dot_opencdc__pb2
|
|
30
|
+
from protoc_gen_openapiv2.options import annotations_pb2 as protoc__gen__openapiv2_dot_options_dot_annotations__pb2
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x10\x61pi/v1/api.proto\x12\x06\x61pi.v1\x1a\x19\x63onfig/v1/parameter.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x18opencdc/v1/opencdc.proto\x1a.protoc-gen-openapiv2/options/annotations.proto\"\xf3\x07\n\x08Pipeline\x12\x13\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x03R\x02id\x12,\n\x05state\x18\x02 \x01(\x0b\x32\x16.api.v1.Pipeline.StateR\x05state\x12/\n\x06\x63onfig\x18\x03 \x01(\x0b\x32\x17.api.v1.Pipeline.ConfigR\x06\x63onfig\x12(\n\rconnector_ids\x18\x05 \x03(\tB\x03\xe0\x41\x03R\x0c\x63onnectorIds\x12(\n\rprocessor_ids\x18\x06 \x03(\tB\x03\xe0\x41\x03R\x0cprocessorIds\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x1a\x80\x02\n\x05State\x12/\n\x06status\x18\x01 \x01(\x0e\x32\x17.api.v1.Pipeline.StatusR\x06status\x12\x14\n\x05\x65rror\x18\x02 \x01(\tR\x05\x65rror\x12K\n\x0estopped_reason\x18\x03 \x01(\x0e\x32$.api.v1.Pipeline.State.StoppedReasonR\rstoppedReason\"c\n\rStoppedReason\x12\x1e\n\x1aSTOPPED_REASON_UNSPECIFIED\x10\x00\x12\x17\n\x13STOPPED_REASON_USER\x10\x01\x12\x19\n\x15STOPPED_REASON_SYSTEM\x10\x02\x1a>\n\x06\x43onfig\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x02 \x01(\tR\x0b\x64\x65scription\x1a\xef\x01\n\x03\x44LQ\x12\x16\n\x06plugin\x18\x01 \x01(\tR\x06plugin\x12>\n\x08settings\x18\x02 \x03(\x0b\x32\".api.v1.Pipeline.DLQ.SettingsEntryR\x08settings\x12\x1f\n\x0bwindow_size\x18\x03 \x01(\x04R\nwindowSize\x12\x32\n\x15window_nack_threshold\x18\x04 \x01(\x04R\x13windowNackThreshold\x1a;\n\rSettingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"t\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x12\n\x0eSTATUS_RUNNING\x10\x01\x12\x12\n\x0eSTATUS_STOPPED\x10\x02\x12\x13\n\x0fSTATUS_DEGRADED\x10\x03\x12\x15\n\x11STATUS_RECOVERING\x10\x04\"\xba\x07\n\tConnector\x12\x13\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x03R\x02id\x12Q\n\x11\x64\x65stination_state\x18\x02 \x01(\x0b\x32\".api.v1.Connector.DestinationStateH\x00R\x10\x64\x65stinationState\x12\x42\n\x0csource_state\x18\x03 \x01(\x0b\x32\x1d.api.v1.Connector.SourceStateH\x00R\x0bsourceState\x12\x30\n\x06\x63onfig\x18\x04 \x01(\x0b\x32\x18.api.v1.Connector.ConfigR\x06\x63onfig\x12/\n\x04type\x18\x05 \x01(\x0e\x32\x16.api.v1.Connector.TypeB\x03\xe0\x41\x05R\x04type\x12\x1b\n\x06plugin\x18\x06 \x01(\tB\x03\xe0\x41\x05R\x06plugin\x12$\n\x0bpipeline_id\x18\x07 \x01(\tB\x03\xe0\x41\x05R\npipelineId\x12(\n\rprocessor_ids\x18\x08 \x03(\tB\x03\xe0\x41\x03R\x0cprocessorIds\x12\x39\n\ncreated_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x1a)\n\x0bSourceState\x12\x1a\n\x08position\x18\x01 \x01(\x0cR\x08position\x1a\xa1\x01\n\x10\x44\x65stinationState\x12O\n\tpositions\x18\x01 \x03(\x0b\x32\x31.api.v1.Connector.DestinationState.PositionsEntryR\tpositions\x1a<\n\x0ePositionsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\x0cR\x05value:\x02\x38\x01\x1a\x9d\x01\n\x06\x43onfig\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x42\n\x08settings\x18\x02 \x03(\x0b\x32&.api.v1.Connector.Config.SettingsEntryR\x08settings\x1a;\n\rSettingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"C\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bTYPE_SOURCE\x10\x01\x12\x14\n\x10TYPE_DESTINATION\x10\x02\x42\x07\n\x05state\"\x8c\x05\n\tProcessor\x12\x13\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x03R\x02id\x12\x30\n\x06\x63onfig\x18\x03 \x01(\x0b\x32\x18.api.v1.Processor.ConfigR\x06\x63onfig\x12\x1c\n\tcondition\x18\t \x01(\tR\tcondition\x12\x1b\n\x06plugin\x18\x05 \x01(\tB\x03\xe0\x41\x05R\x06plugin\x12\x35\n\x06parent\x18\x06 \x01(\x0b\x32\x18.api.v1.Processor.ParentB\x03\xe0\x41\x05R\x06parent\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x1a\x90\x01\n\x06Parent\x12\x31\n\x04type\x18\x01 \x01(\x0e\x32\x1d.api.v1.Processor.Parent.TypeR\x04type\x12\x0e\n\x02id\x18\x02 \x01(\tR\x02id\"C\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x12\n\x0eTYPE_CONNECTOR\x10\x01\x12\x11\n\rTYPE_PIPELINE\x10\x02\x1a\xa3\x01\n\x06\x43onfig\x12\x42\n\x08settings\x18\x01 \x03(\x0b\x32&.api.v1.Processor.Config.SettingsEntryR\x08settings\x12\x18\n\x07workers\x18\x02 \x01(\x05R\x07workers\x1a;\n\rSettingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01J\x04\x08\x02\x10\x03J\x04\x08\x04\x10\x05R\x05stateR\x04type\"\x9f\x04\n\x1d\x43onnectorPluginSpecifications\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07summary\x18\x02 \x01(\tR\x07summary\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x18\n\x07version\x18\x04 \x01(\tR\x07version\x12\x16\n\x06\x61uthor\x18\x05 \x01(\tR\x06\x61uthor\x12k\n\x12\x64\x65stination_params\x18\x06 \x03(\x0b\x32<.api.v1.ConnectorPluginSpecifications.DestinationParamsEntryR\x11\x64\x65stinationParams\x12\\\n\rsource_params\x18\x07 \x03(\x0b\x32\x37.api.v1.ConnectorPluginSpecifications.SourceParamsEntryR\x0csourceParams\x1aZ\n\x16\x44\x65stinationParamsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b\x32\x14.config.v1.ParameterR\x05value:\x02\x38\x01\x1aU\n\x11SourceParamsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b\x32\x14.config.v1.ParameterR\x05value:\x02\x38\x01\"\xcd\x02\n\x1dProcessorPluginSpecifications\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07summary\x18\x02 \x01(\tR\x07summary\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x18\n\x07version\x18\x04 \x01(\tR\x07version\x12\x16\n\x06\x61uthor\x18\x05 \x01(\tR\x06\x61uthor\x12U\n\nparameters\x18\x06 \x03(\x0b\x32\x35.api.v1.ProcessorPluginSpecifications.ParametersEntryR\nparameters\x1aS\n\x0fParametersEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12*\n\x05value\x18\x02 \x01(\x0b\x32\x14.config.v1.ParameterR\x05value:\x02\x38\x01\"\xa1\t\n\x14PluginSpecifications\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07summary\x18\x02 \x01(\tR\x07summary\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x18\n\x07version\x18\x04 \x01(\tR\x07version\x12\x16\n\x06\x61uthor\x18\x05 \x01(\tR\x06\x61uthor\x12\x62\n\x12\x64\x65stination_params\x18\x06 \x03(\x0b\x32\x33.api.v1.PluginSpecifications.DestinationParamsEntryR\x11\x64\x65stinationParams\x12S\n\rsource_params\x18\x07 \x03(\x0b\x32..api.v1.PluginSpecifications.SourceParamsEntryR\x0csourceParams\x1a\xf2\x04\n\tParameter\x12 \n\x0b\x64\x65scription\x18\x01 \x01(\tR\x0b\x64\x65scription\x12\x18\n\x07\x64\x65\x66\x61ult\x18\x02 \x01(\tR\x07\x64\x65\x66\x61ult\x12?\n\x04type\x18\x03 \x01(\x0e\x32+.api.v1.PluginSpecifications.Parameter.TypeR\x04type\x12S\n\x0bvalidations\x18\x04 \x03(\x0b\x32\x31.api.v1.PluginSpecifications.Parameter.ValidationR\x0bvalidations\x1a\x8b\x02\n\nValidation\x12J\n\x04type\x18\x01 \x01(\x0e\x32\x36.api.v1.PluginSpecifications.Parameter.Validation.TypeR\x04type\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value\"\x96\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x11\n\rTYPE_REQUIRED\x10\x01\x12\x15\n\x11TYPE_GREATER_THAN\x10\x02\x12\x12\n\x0eTYPE_LESS_THAN\x10\x03\x12\x12\n\x0eTYPE_INCLUSION\x10\x04\x12\x12\n\x0eTYPE_EXCLUSION\x10\x05\x12\x0e\n\nTYPE_REGEX\x10\x06\x1a\x02\x18\x01:\x02\x18\x01\"\x80\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0f\n\x0bTYPE_STRING\x10\x01\x12\x0c\n\x08TYPE_INT\x10\x02\x12\x0e\n\nTYPE_FLOAT\x10\x03\x12\r\n\tTYPE_BOOL\x10\x04\x12\r\n\tTYPE_FILE\x10\x05\x12\x11\n\rTYPE_DURATION\x10\x06\x1a\x02\x18\x01:\x02\x18\x01\x1al\n\x16\x44\x65stinationParamsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\x05value\x18\x02 \x01(\x0b\x32&.api.v1.PluginSpecifications.ParameterR\x05value:\x02\x38\x01\x1ag\n\x11SourceParamsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12<\n\x05value\x18\x02 \x01(\x0b\x32&.api.v1.PluginSpecifications.ParameterR\x05value:\x02\x38\x01:\x02\x18\x01\"*\n\x14ListPipelinesRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"G\n\x15ListPipelinesResponse\x12.\n\tpipelines\x18\x01 \x03(\x0b\x32\x10.api.v1.PipelineR\tpipelines\"H\n\x15\x43reatePipelineRequest\x12/\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x17.api.v1.Pipeline.ConfigR\x06\x63onfig\"F\n\x16\x43reatePipelineResponse\x12,\n\x08pipeline\x18\x01 \x01(\x0b\x32\x10.api.v1.PipelineR\x08pipeline\"$\n\x12GetPipelineRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"C\n\x13GetPipelineResponse\x12,\n\x08pipeline\x18\x01 \x01(\x0b\x32\x10.api.v1.PipelineR\x08pipeline\"X\n\x15UpdatePipelineRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12/\n\x06\x63onfig\x18\x02 \x01(\x0b\x32\x17.api.v1.Pipeline.ConfigR\x06\x63onfig\"F\n\x16UpdatePipelineResponse\x12,\n\x08pipeline\x18\x01 \x01(\x0b\x32\x10.api.v1.PipelineR\x08pipeline\"\'\n\x15\x44\x65letePipelineRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\x18\n\x16\x44\x65letePipelineResponse\"&\n\x14StartPipelineRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\x17\n\x15StartPipelineResponse\";\n\x13StopPipelineRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x14\n\x05\x66orce\x18\x02 \x01(\x08R\x05\x66orce\"\x16\n\x14StopPipelineResponse\"\x1f\n\rGetDLQRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"8\n\x0eGetDLQResponse\x12&\n\x03\x64lq\x18\x01 \x01(\x0b\x32\x14.api.v1.Pipeline.DLQR\x03\x64lq\"J\n\x10UpdateDLQRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12&\n\x03\x64lq\x18\x02 \x01(\x0b\x32\x14.api.v1.Pipeline.DLQR\x03\x64lq\";\n\x11UpdateDLQResponse\x12&\n\x03\x64lq\x18\x01 \x01(\x0b\x32\x14.api.v1.Pipeline.DLQR\x03\x64lq\"\'\n\x15\x45xportPipelineRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"F\n\x16\x45xportPipelineResponse\x12,\n\x08pipeline\x18\x01 \x01(\x0b\x32\x10.api.v1.PipelineR\x08pipeline\"E\n\x15ImportPipelineRequest\x12,\n\x08pipeline\x18\x01 \x01(\x0b\x32\x10.api.v1.PipelineR\x08pipeline\"F\n\x16ImportPipelineResponse\x12,\n\x08pipeline\x18\x01 \x01(\x0b\x32\x10.api.v1.PipelineR\x08pipeline\"\xc8\x08\n\x10PipelineDocument\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x16\n\x06status\x18\x02 \x01(\tR\x06status\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x04 \x01(\tR\x0b\x64\x65scription\x12\x42\n\nconnectors\x18\x05 \x03(\x0b\x32\".api.v1.PipelineDocument.ConnectorR\nconnectors\x12\x42\n\nprocessors\x18\x06 \x03(\x0b\x32\".api.v1.PipelineDocument.ProcessorR\nprocessors\x12.\n\x03\x64lq\x18\x07 \x01(\x0b\x32\x1c.api.v1.PipelineDocument.DLQR\x03\x64lq\x1a\xaa\x02\n\tConnector\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04type\x18\x02 \x01(\tR\x04type\x12\x16\n\x06plugin\x18\x03 \x01(\tR\x06plugin\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12L\n\x08settings\x18\x05 \x03(\x0b\x32\x30.api.v1.PipelineDocument.Connector.SettingsEntryR\x08settings\x12\x42\n\nprocessors\x18\x06 \x03(\x0b\x32\".api.v1.PipelineDocument.ProcessorR\nprocessors\x1a;\n\rSettingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a\xf6\x01\n\tProcessor\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x16\n\x06plugin\x18\x02 \x01(\tR\x06plugin\x12L\n\x08settings\x18\x03 \x03(\x0b\x32\x30.api.v1.PipelineDocument.Processor.SettingsEntryR\x08settings\x12\x18\n\x07workers\x18\x04 \x01(\x05R\x07workers\x12\x1c\n\tcondition\x18\x05 \x01(\tR\tcondition\x1a;\n\rSettingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x1a\xf7\x01\n\x03\x44LQ\x12\x16\n\x06plugin\x18\x01 \x01(\tR\x06plugin\x12\x46\n\x08settings\x18\x02 \x03(\x0b\x32*.api.v1.PipelineDocument.DLQ.SettingsEntryR\x08settings\x12\x1f\n\x0bwindow_size\x18\x03 \x01(\x04R\nwindowSize\x12\x32\n\x15window_nack_threshold\x18\x04 \x01(\x04R\x13windowNackThreshold\x1a;\n\rSettingsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\"\x88\x02\n\x04\x44iff\x12\x1f\n\x0bpipeline_id\x18\x01 \x01(\tR\npipelineId\x12-\n\x07\x63hanges\x18\x02 \x03(\x0b\x32\x13.api.v1.Diff.ChangeR\x07\x63hanges\x12\x12\n\x04hash\x18\x03 \x01(\tR\x04hash\x1a\x9b\x01\n\x06\x43hange\x12\x1a\n\x08resource\x18\x01 \x01(\tR\x08resource\x12\x0e\n\x02id\x18\x02 \x01(\tR\x02id\x12\x16\n\x06\x61\x63tion\x18\x03 \x01(\tR\x06\x61\x63tion\x12\x16\n\x06\x65\x66\x66\x65\x63t\x18\x04 \x01(\tR\x06\x65\x66\x66\x65\x63t\x12!\n\x0c\x63onfig_paths\x18\x05 \x03(\tR\x0b\x63onfigPaths\x12\x12\n\x04\x63ode\x18\x06 \x01(\tR\x04\x63ode\"G\n\x13PlanPipelineRequest\x12\x30\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x18.api.v1.PipelineDocumentR\x06\x63onfig\"8\n\x14PlanPipelineResponse\x12 \n\x04\x64iff\x18\x01 \x01(\x0b\x32\x0c.api.v1.DiffR\x04\x64iff\"\\\n\x14\x41pplyPipelineRequest\x12\x30\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x18.api.v1.PipelineDocumentR\x06\x63onfig\x12\x12\n\x04hash\x18\x02 \x01(\tR\x04hash\"9\n\x15\x41pplyPipelineResponse\x12 \n\x04\x64iff\x18\x01 \x01(\x0b\x32\x0c.api.v1.DiffR\x04\x64iff\"\xaf\x01\n\x16\x43reateConnectorRequest\x12*\n\x04type\x18\x01 \x01(\x0e\x32\x16.api.v1.Connector.TypeR\x04type\x12\x16\n\x06plugin\x18\x02 \x01(\tR\x06plugin\x12\x1f\n\x0bpipeline_id\x18\x03 \x01(\tR\npipelineId\x12\x30\n\x06\x63onfig\x18\x04 \x01(\x0b\x32\x18.api.v1.Connector.ConfigR\x06\x63onfig\"J\n\x17\x43reateConnectorResponse\x12/\n\tconnector\x18\x01 \x01(\x0b\x32\x11.api.v1.ConnectorR\tconnector\"\x90\x01\n\x18ValidateConnectorRequest\x12*\n\x04type\x18\x01 \x01(\x0e\x32\x16.api.v1.Connector.TypeR\x04type\x12\x16\n\x06plugin\x18\x02 \x01(\tR\x06plugin\x12\x30\n\x06\x63onfig\x18\x04 \x01(\x0b\x32\x18.api.v1.Connector.ConfigR\x06\x63onfig\"\x1b\n\x19ValidateConnectorResponse\"8\n\x15ListConnectorsRequest\x12\x1f\n\x0bpipeline_id\x18\x01 \x01(\tR\npipelineId\"K\n\x16ListConnectorsResponse\x12\x31\n\nconnectors\x18\x01 \x03(\x0b\x32\x11.api.v1.ConnectorR\nconnectors\")\n\x17InspectConnectorRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"F\n\x18InspectConnectorResponse\x12*\n\x06record\x18\x01 \x01(\x0b\x32\x12.opencdc.v1.RecordR\x06record\"%\n\x13GetConnectorRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"G\n\x14GetConnectorResponse\x12/\n\tconnector\x18\x01 \x01(\x0b\x32\x11.api.v1.ConnectorR\tconnector\"r\n\x16UpdateConnectorRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x30\n\x06\x63onfig\x18\x02 \x01(\x0b\x32\x18.api.v1.Connector.ConfigR\x06\x63onfig\x12\x16\n\x06plugin\x18\x03 \x01(\tR\x06plugin\"J\n\x17UpdateConnectorResponse\x12/\n\tconnector\x18\x01 \x01(\x0b\x32\x11.api.v1.ConnectorR\tconnector\"(\n\x16\x44\x65leteConnectorRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\x19\n\x17\x44\x65leteConnectorResponse\"1\n\x1bListConnectorPluginsRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"_\n\x1cListConnectorPluginsResponse\x12?\n\x07plugins\x18\x01 \x03(\x0b\x32%.api.v1.ConnectorPluginSpecificationsR\x07plugins\"6\n\x15ListProcessorsRequest\x12\x1d\n\nparent_ids\x18\x01 \x03(\tR\tparentIds\"K\n\x16ListProcessorsResponse\x12\x31\n\nprocessors\x18\x01 \x03(\x0b\x32\x11.api.v1.ProcessorR\nprocessors\"+\n\x19InspectProcessorInRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"H\n\x1aInspectProcessorInResponse\x12*\n\x06record\x18\x01 \x01(\x0b\x32\x12.opencdc.v1.RecordR\x06record\",\n\x1aInspectProcessorOutRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"I\n\x1bInspectProcessorOutResponse\x12*\n\x06record\x18\x01 \x01(\x0b\x32\x12.opencdc.v1.RecordR\x06record\"\xca\x01\n\x16\x43reateProcessorRequest\x12\x16\n\x04type\x18\x01 \x01(\tB\x02\x18\x01R\x04type\x12\x30\n\x06parent\x18\x03 \x01(\x0b\x32\x18.api.v1.Processor.ParentR\x06parent\x12\x30\n\x06\x63onfig\x18\x04 \x01(\x0b\x32\x18.api.v1.Processor.ConfigR\x06\x63onfig\x12\x1c\n\tcondition\x18\x05 \x01(\tR\tcondition\x12\x16\n\x06plugin\x18\x06 \x01(\tR\x06plugin\"J\n\x17\x43reateProcessorResponse\x12/\n\tprocessor\x18\x01 \x01(\x0b\x32\x11.api.v1.ProcessorR\tprocessor\"%\n\x13GetProcessorRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"G\n\x14GetProcessorResponse\x12/\n\tprocessor\x18\x01 \x01(\x0b\x32\x11.api.v1.ProcessorR\tprocessor\"r\n\x16UpdateProcessorRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x30\n\x06\x63onfig\x18\x02 \x01(\x0b\x32\x18.api.v1.Processor.ConfigR\x06\x63onfig\x12\x16\n\x06plugin\x18\x03 \x01(\tR\x06plugin\"J\n\x17UpdateProcessorResponse\x12/\n\tprocessor\x18\x01 \x01(\x0b\x32\x11.api.v1.ProcessorR\tprocessor\"(\n\x16\x44\x65leteProcessorRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\x19\n\x17\x44\x65leteProcessorResponse\"1\n\x1bListProcessorPluginsRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\"_\n\x1cListProcessorPluginsResponse\x12?\n\x07plugins\x18\x01 \x03(\x0b\x32%.api.v1.ProcessorPluginSpecificationsR\x07plugins\"\x10\n\x0eGetInfoRequest\"3\n\x0fGetInfoResponse\x12 \n\x04info\x18\x01 \x01(\x0b\x32\x0c.api.v1.InfoR\x04info\"D\n\x04Info\x12\x18\n\x07version\x18\x01 \x01(\tR\x07version\x12\x0e\n\x02os\x18\x02 \x01(\tR\x02os\x12\x12\n\x04\x61rch\x18\x03 \x01(\tR\x04\x61rch\",\n\x12ListPluginsRequest\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name:\x02\x18\x01\"Q\n\x13ListPluginsResponse\x12\x36\n\x07plugins\x18\x01 \x03(\x0b\x32\x1c.api.v1.PluginSpecificationsR\x07plugins:\x02\x18\x01\x32\xc4\x19\n\x0fPipelineService\x12n\n\rListPipelines\x12\x1c.api.v1.ListPipelinesRequest\x1a\x1d.api.v1.ListPipelinesResponse\" \x82\xd3\xe4\x93\x02\x1a\x12\r/v1/pipelinesb\tpipelines\x12\xe7\x02\n\x0e\x43reatePipeline\x12\x1d.api.v1.CreatePipelineRequest\x1a\x1e.api.v1.CreatePipelineResponse\"\x95\x02\x92\x41\xef\x01Jw\n\x03\x34\x30\x30\x12p\x12\x16\n\x14\x1a\x12.google.rpc.Status\"V\n\x10\x61pplication/json\x12\x42{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jt\n\x03\x34\x30\x39\x12m\x12\x16\n\x14\x1a\x12.google.rpc.Status\"S\n\x10\x61pplication/json\x12?{ \"code\": 6, \"message\": \"already exists error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x1c\"\r/v1/pipelines:\x01*b\x08pipeline\x12\xea\x01\n\x0bGetPipeline\x12\x1a.api.v1.GetPipelineRequest\x1a\x1b.api.v1.GetPipelineResponse\"\xa1\x01\x92\x41zJx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x1e\x12\x12/v1/pipelines/{id}b\x08pipeline\x12\xe6\x03\n\x0eUpdatePipeline\x12\x1d.api.v1.UpdatePipelineRequest\x1a\x1e.api.v1.UpdatePipelineResponse\"\x94\x03\x92\x41\xe9\x02Jw\n\x03\x34\x30\x30\x12p\x12\x16\n\x14\x1a\x12.google.rpc.Status\"V\n\x10\x61pplication/json\x12\x42{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }Jt\n\x03\x34\x30\x39\x12m\x12\x16\n\x14\x1a\x12.google.rpc.Status\"S\n\x10\x61pplication/json\x12?{ \"code\": 6, \"message\": \"already exists error\", \"details\": [] }\x82\xd3\xe4\x93\x02!\x1a\x12/v1/pipelines/{id}:\x01*b\x08pipeline\x12\xe5\x02\n\x0e\x44\x65letePipeline\x12\x1d.api.v1.DeletePipelineRequest\x1a\x1e.api.v1.DeletePipelineResponse\"\x93\x02\x92\x41\xf5\x01Jy\n\x03\x34\x30\x30\x12r\x12\x16\n\x14\x1a\x12.google.rpc.Status\"X\n\x10\x61pplication/json\x12\x44{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x14*\x12/v1/pipelines/{id}\x12\xe8\x02\n\rStartPipeline\x12\x1c.api.v1.StartPipelineRequest\x1a\x1d.api.v1.StartPipelineResponse\"\x99\x02\x92\x41\xf5\x01Jy\n\x03\x34\x30\x30\x12r\x12\x16\n\x14\x1a\x12.google.rpc.Status\"X\n\x10\x61pplication/json\x12\x44{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x1a\"\x18/v1/pipelines/{id}/start\x12\xe7\x02\n\x0cStopPipeline\x12\x1b.api.v1.StopPipelineRequest\x1a\x1c.api.v1.StopPipelineResponse\"\x9b\x02\x92\x41\xf5\x01Jy\n\x03\x34\x30\x30\x12r\x12\x16\n\x14\x1a\x12.google.rpc.Status\"X\n\x10\x61pplication/json\x12\x44{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x1c\"\x17/v1/pipelines/{id}/stop:\x01*\x12j\n\x06GetDLQ\x12\x15.api.v1.GetDLQRequest\x1a\x16.api.v1.GetDLQResponse\"1\x82\xd3\xe4\x93\x02+\x12$/v1/pipelines/{id}/dead-letter-queueb\x03\x64lq\x12x\n\tUpdateDLQ\x12\x18.api.v1.UpdateDLQRequest\x1a\x19.api.v1.UpdateDLQResponse\"6\x82\xd3\xe4\x93\x02\x30\x1a$/v1/pipelines/{id}/dead-letter-queue:\x03\x64lqb\x03\x64lq\x12|\n\x0e\x45xportPipeline\x12\x1d.api.v1.ExportPipelineRequest\x1a\x1e.api.v1.ExportPipelineResponse\"+\x82\xd3\xe4\x93\x02%\"\x19/v1/pipelines/{id}/exportb\x08pipeline\x12\x81\x01\n\x0eImportPipeline\x12\x1d.api.v1.ImportPipelineRequest\x1a\x1e.api.v1.ImportPipelineResponse\"0\x82\xd3\xe4\x93\x02*\"\x14/v1/pipelines/import:\x08pipelineb\x08pipeline\x12n\n\x0cPlanPipeline\x12\x1b.api.v1.PlanPipelineRequest\x1a\x1c.api.v1.PlanPipelineResponse\"#\x82\xd3\xe4\x93\x02\x1d\"\x12/v1/pipelines/plan:\x01*b\x04\x64iff\x12\xeb\x02\n\rApplyPipeline\x12\x1c.api.v1.ApplyPipelineRequest\x1a\x1d.api.v1.ApplyPipelineResponse\"\x9c\x02\x92\x41\xf4\x01Jw\n\x03\x34\x30\x30\x12p\x12\x16\n\x14\x1a\x12.google.rpc.Status\"V\n\x10\x61pplication/json\x12\x42{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jy\n\x03\x34\x31\x32\x12r\x12\x16\n\x14\x1a\x12.google.rpc.Status\"X\n\x10\x61pplication/json\x12\x44{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x1e\"\x13/v1/pipelines/apply:\x01*b\x04\x64iff2\x8e\x10\n\x10\x43onnectorService\x12s\n\x0eListConnectors\x12\x1d.api.v1.ListConnectorsRequest\x1a\x1e.api.v1.ListConnectorsResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x0e/v1/connectorsb\nconnectors\x12\x84\x01\n\x10InspectConnector\x12\x1f.api.v1.InspectConnectorRequest\x1a .api.v1.InspectConnectorResponse\"+\x82\xd3\xe4\x93\x02%\x12\x1b/v1/connectors/{id}/inspectb\x06record0\x01\x12\xef\x01\n\x0cGetConnector\x12\x1b.api.v1.GetConnectorRequest\x1a\x1c.api.v1.GetConnectorResponse\"\xa3\x01\x92\x41zJx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02 \x12\x13/v1/connectors/{id}b\tconnector\x12\xf5\x01\n\x0f\x43reateConnector\x12\x1e.api.v1.CreateConnectorRequest\x1a\x1f.api.v1.CreateConnectorResponse\"\xa0\x01\x92\x41yJw\n\x03\x34\x30\x30\x12p\x12\x16\n\x14\x1a\x12.google.rpc.Status\"V\n\x10\x61pplication/json\x12\x42{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x1e\"\x0e/v1/connectors:\x01*b\tconnector\x12\xa2\x03\n\x11ValidateConnector\x12 .api.v1.ValidateConnectorRequest\x1a!.api.v1.ValidateConnectorResponse\"\xc7\x02\x92\x41\xa1\x02J\x9d\x01\n\x03\x34\x30\x30\x12\x95\x01\x12\x16\n\x14\x1a\x12.google.rpc.Status\"{\n\x10\x61pplication/json\x12g{ \"code\": 9, \"message\": \"validation error: `aws.accessKeyId` config value must be set\", \"details\": [] }J\x7f\n\x03\x35\x30\x30\x12x\x12\x16\n\x14\x1a\x12.google.rpc.Status\"^\n\x10\x61pplication/json\x12J{ \"code\": 13, \"message\": \"could not dispense destination\", \"details\": [] }\x82\xd3\xe4\x93\x02\x1c\"\x17/v1/connectors/validate:\x01*\x12\xf5\x02\n\x0fUpdateConnector\x12\x1e.api.v1.UpdateConnectorRequest\x1a\x1f.api.v1.UpdateConnectorResponse\"\xa0\x02\x92\x41\xf3\x01Jw\n\x03\x34\x30\x30\x12p\x12\x16\n\x14\x1a\x12.google.rpc.Status\"V\n\x10\x61pplication/json\x12\x42{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02#\x1a\x13/v1/connectors/{id}:\x01*b\tconnector\x12\xe9\x02\n\x0f\x44\x65leteConnector\x12\x1e.api.v1.DeleteConnectorRequest\x1a\x1f.api.v1.DeleteConnectorResponse\"\x94\x02\x92\x41\xf5\x01Jy\n\x03\x34\x30\x30\x12r\x12\x16\n\x14\x1a\x12.google.rpc.Status\"X\n\x10\x61pplication/json\x12\x44{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x15*\x13/v1/connectors/{id}\x12\x8a\x01\n\x14ListConnectorPlugins\x12#.api.v1.ListConnectorPluginsRequest\x1a$.api.v1.ListConnectorPluginsResponse\"\'\x82\xd3\xe4\x93\x02!\x12\x16/v1/connectors/pluginsb\x07plugins2\x86\x0e\n\x10ProcessorService\x12s\n\x0eListProcessors\x12\x1d.api.v1.ListProcessorsRequest\x1a\x1e.api.v1.ListProcessorsResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x0e/v1/processorsb\nprocessors\x12\x8d\x01\n\x12InspectProcessorIn\x12!.api.v1.InspectProcessorInRequest\x1a\".api.v1.InspectProcessorInResponse\".\x82\xd3\xe4\x93\x02(\x12\x1e/v1/processors/{id}/inspect-inb\x06record0\x01\x12\x91\x01\n\x13InspectProcessorOut\x12\".api.v1.InspectProcessorOutRequest\x1a#.api.v1.InspectProcessorOutResponse\"/\x82\xd3\xe4\x93\x02)\x12\x1f/v1/processors/{id}/inspect-outb\x06record0\x01\x12\xef\x01\n\x0cGetProcessor\x12\x1b.api.v1.GetProcessorRequest\x1a\x1c.api.v1.GetProcessorResponse\"\xa3\x01\x92\x41zJx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02 \x12\x13/v1/processors/{id}b\tprocessor\x12\xf5\x01\n\x0f\x43reateProcessor\x12\x1e.api.v1.CreateProcessorRequest\x1a\x1f.api.v1.CreateProcessorResponse\"\xa0\x01\x92\x41yJw\n\x03\x34\x30\x30\x12p\x12\x16\n\x14\x1a\x12.google.rpc.Status\"V\n\x10\x61pplication/json\x12\x42{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x1e\"\x0e/v1/processors:\x01*b\tprocessor\x12\xf5\x02\n\x0fUpdateProcessor\x12\x1e.api.v1.UpdateProcessorRequest\x1a\x1f.api.v1.UpdateProcessorResponse\"\xa0\x02\x92\x41\xf3\x01Jw\n\x03\x34\x30\x30\x12p\x12\x16\n\x14\x1a\x12.google.rpc.Status\"V\n\x10\x61pplication/json\x12\x42{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02#\x1a\x13/v1/processors/{id}:\x01*b\tprocessor\x12\xe9\x02\n\x0f\x44\x65leteProcessor\x12\x1e.api.v1.DeleteProcessorRequest\x1a\x1f.api.v1.DeleteProcessorResponse\"\x94\x02\x92\x41\xf5\x01Jy\n\x03\x34\x30\x30\x12r\x12\x16\n\x14\x1a\x12.google.rpc.Status\"X\n\x10\x61pplication/json\x12\x44{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\x03\x34\x30\x34\x12q\x12\x16\n\x14\x1a\x12.google.rpc.Status\"W\n\x10\x61pplication/json\x12\x43{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\x82\xd3\xe4\x93\x02\x15*\x13/v1/processors/{id}\x12\x8a\x01\n\x14ListProcessorPlugins\x12#.api.v1.ListProcessorPluginsRequest\x1a$.api.v1.ListProcessorPluginsResponse\"\'\x82\xd3\xe4\x93\x02!\x12\x16/v1/processors/pluginsb\x07plugins2e\n\x12InformationService\x12O\n\x07GetInfo\x12\x16.api.v1.GetInfoRequest\x1a\x17.api.v1.GetInfoResponse\"\x13\x82\xd3\xe4\x93\x02\r\x12\x05/infob\x04info2x\n\rPluginService\x12g\n\x0bListPlugins\x12\x1a.api.v1.ListPluginsRequest\x1a\x1b.api.v1.ListPluginsResponse\"\x1f\x88\x02\x01\x82\xd3\xe4\x93\x02\x16\x12\x0b/v1/pluginsb\x07pluginsB\xa2\x02\x92\x41\x9e\x02\x12\xac\x01\n\x10\x43onduit REST API\"7\n\x0f\x43onduit project\x12$https://github.com/conduitio/conduit*W\n\x1a\x41pache License Version 2.0\x12\x39https://github.com/ConduitIO/conduit/blob/main/LICENSE.md2\x06v0.1.0Rm\n\x03\x35\x30\x30\x12\x66\x12\x16\n\x14\x1a\x12.google.rpc.Status\"L\n\x10\x61pplication/json\x12\x38{ \"code\": 13, \"message\": \"server error\", \"details\": [] }b\x06proto3')
|
|
34
|
+
|
|
35
|
+
_globals = globals()
|
|
36
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
37
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'api.v1.api_pb2', _globals)
|
|
38
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
39
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
40
|
+
_globals['DESCRIPTOR']._serialized_options = b'\222A\236\002\022\254\001\n\020Conduit REST API\"7\n\017Conduit project\022$https://github.com/conduitio/conduit*W\n\032Apache License Version 2.0\0229https://github.com/ConduitIO/conduit/blob/main/LICENSE.md2\006v0.1.0Rm\n\003500\022f\022\026\n\024\032\022.google.rpc.Status\"L\n\020application/json\0228{ \"code\": 13, \"message\": \"server error\", \"details\": [] }'
|
|
41
|
+
_globals['_PIPELINE_DLQ_SETTINGSENTRY']._loaded_options = None
|
|
42
|
+
_globals['_PIPELINE_DLQ_SETTINGSENTRY']._serialized_options = b'8\001'
|
|
43
|
+
_globals['_PIPELINE'].fields_by_name['id']._loaded_options = None
|
|
44
|
+
_globals['_PIPELINE'].fields_by_name['id']._serialized_options = b'\340A\003'
|
|
45
|
+
_globals['_PIPELINE'].fields_by_name['connector_ids']._loaded_options = None
|
|
46
|
+
_globals['_PIPELINE'].fields_by_name['connector_ids']._serialized_options = b'\340A\003'
|
|
47
|
+
_globals['_PIPELINE'].fields_by_name['processor_ids']._loaded_options = None
|
|
48
|
+
_globals['_PIPELINE'].fields_by_name['processor_ids']._serialized_options = b'\340A\003'
|
|
49
|
+
_globals['_CONNECTOR_DESTINATIONSTATE_POSITIONSENTRY']._loaded_options = None
|
|
50
|
+
_globals['_CONNECTOR_DESTINATIONSTATE_POSITIONSENTRY']._serialized_options = b'8\001'
|
|
51
|
+
_globals['_CONNECTOR_CONFIG_SETTINGSENTRY']._loaded_options = None
|
|
52
|
+
_globals['_CONNECTOR_CONFIG_SETTINGSENTRY']._serialized_options = b'8\001'
|
|
53
|
+
_globals['_CONNECTOR'].fields_by_name['id']._loaded_options = None
|
|
54
|
+
_globals['_CONNECTOR'].fields_by_name['id']._serialized_options = b'\340A\003'
|
|
55
|
+
_globals['_CONNECTOR'].fields_by_name['type']._loaded_options = None
|
|
56
|
+
_globals['_CONNECTOR'].fields_by_name['type']._serialized_options = b'\340A\005'
|
|
57
|
+
_globals['_CONNECTOR'].fields_by_name['plugin']._loaded_options = None
|
|
58
|
+
_globals['_CONNECTOR'].fields_by_name['plugin']._serialized_options = b'\340A\005'
|
|
59
|
+
_globals['_CONNECTOR'].fields_by_name['pipeline_id']._loaded_options = None
|
|
60
|
+
_globals['_CONNECTOR'].fields_by_name['pipeline_id']._serialized_options = b'\340A\005'
|
|
61
|
+
_globals['_CONNECTOR'].fields_by_name['processor_ids']._loaded_options = None
|
|
62
|
+
_globals['_CONNECTOR'].fields_by_name['processor_ids']._serialized_options = b'\340A\003'
|
|
63
|
+
_globals['_PROCESSOR_CONFIG_SETTINGSENTRY']._loaded_options = None
|
|
64
|
+
_globals['_PROCESSOR_CONFIG_SETTINGSENTRY']._serialized_options = b'8\001'
|
|
65
|
+
_globals['_PROCESSOR'].fields_by_name['id']._loaded_options = None
|
|
66
|
+
_globals['_PROCESSOR'].fields_by_name['id']._serialized_options = b'\340A\003'
|
|
67
|
+
_globals['_PROCESSOR'].fields_by_name['plugin']._loaded_options = None
|
|
68
|
+
_globals['_PROCESSOR'].fields_by_name['plugin']._serialized_options = b'\340A\005'
|
|
69
|
+
_globals['_PROCESSOR'].fields_by_name['parent']._loaded_options = None
|
|
70
|
+
_globals['_PROCESSOR'].fields_by_name['parent']._serialized_options = b'\340A\005'
|
|
71
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS_DESTINATIONPARAMSENTRY']._loaded_options = None
|
|
72
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS_DESTINATIONPARAMSENTRY']._serialized_options = b'8\001'
|
|
73
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS_SOURCEPARAMSENTRY']._loaded_options = None
|
|
74
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS_SOURCEPARAMSENTRY']._serialized_options = b'8\001'
|
|
75
|
+
_globals['_PROCESSORPLUGINSPECIFICATIONS_PARAMETERSENTRY']._loaded_options = None
|
|
76
|
+
_globals['_PROCESSORPLUGINSPECIFICATIONS_PARAMETERSENTRY']._serialized_options = b'8\001'
|
|
77
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_VALIDATION_TYPE']._loaded_options = None
|
|
78
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_VALIDATION_TYPE']._serialized_options = b'\030\001'
|
|
79
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_VALIDATION']._loaded_options = None
|
|
80
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_VALIDATION']._serialized_options = b'\030\001'
|
|
81
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_TYPE']._loaded_options = None
|
|
82
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_TYPE']._serialized_options = b'\030\001'
|
|
83
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER']._loaded_options = None
|
|
84
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER']._serialized_options = b'\030\001'
|
|
85
|
+
_globals['_PLUGINSPECIFICATIONS_DESTINATIONPARAMSENTRY']._loaded_options = None
|
|
86
|
+
_globals['_PLUGINSPECIFICATIONS_DESTINATIONPARAMSENTRY']._serialized_options = b'8\001'
|
|
87
|
+
_globals['_PLUGINSPECIFICATIONS_SOURCEPARAMSENTRY']._loaded_options = None
|
|
88
|
+
_globals['_PLUGINSPECIFICATIONS_SOURCEPARAMSENTRY']._serialized_options = b'8\001'
|
|
89
|
+
_globals['_PLUGINSPECIFICATIONS']._loaded_options = None
|
|
90
|
+
_globals['_PLUGINSPECIFICATIONS']._serialized_options = b'\030\001'
|
|
91
|
+
_globals['_PIPELINEDOCUMENT_CONNECTOR_SETTINGSENTRY']._loaded_options = None
|
|
92
|
+
_globals['_PIPELINEDOCUMENT_CONNECTOR_SETTINGSENTRY']._serialized_options = b'8\001'
|
|
93
|
+
_globals['_PIPELINEDOCUMENT_PROCESSOR_SETTINGSENTRY']._loaded_options = None
|
|
94
|
+
_globals['_PIPELINEDOCUMENT_PROCESSOR_SETTINGSENTRY']._serialized_options = b'8\001'
|
|
95
|
+
_globals['_PIPELINEDOCUMENT_DLQ_SETTINGSENTRY']._loaded_options = None
|
|
96
|
+
_globals['_PIPELINEDOCUMENT_DLQ_SETTINGSENTRY']._serialized_options = b'8\001'
|
|
97
|
+
_globals['_CREATEPROCESSORREQUEST'].fields_by_name['type']._loaded_options = None
|
|
98
|
+
_globals['_CREATEPROCESSORREQUEST'].fields_by_name['type']._serialized_options = b'\030\001'
|
|
99
|
+
_globals['_LISTPLUGINSREQUEST']._loaded_options = None
|
|
100
|
+
_globals['_LISTPLUGINSREQUEST']._serialized_options = b'\030\001'
|
|
101
|
+
_globals['_LISTPLUGINSRESPONSE']._loaded_options = None
|
|
102
|
+
_globals['_LISTPLUGINSRESPONSE']._serialized_options = b'\030\001'
|
|
103
|
+
_globals['_PIPELINESERVICE'].methods_by_name['ListPipelines']._loaded_options = None
|
|
104
|
+
_globals['_PIPELINESERVICE'].methods_by_name['ListPipelines']._serialized_options = b'\202\323\344\223\002\032\022\r/v1/pipelinesb\tpipelines'
|
|
105
|
+
_globals['_PIPELINESERVICE'].methods_by_name['CreatePipeline']._loaded_options = None
|
|
106
|
+
_globals['_PIPELINESERVICE'].methods_by_name['CreatePipeline']._serialized_options = b'\222A\357\001Jw\n\003400\022p\022\026\n\024\032\022.google.rpc.Status\"V\n\020application/json\022B{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jt\n\003409\022m\022\026\n\024\032\022.google.rpc.Status\"S\n\020application/json\022?{ \"code\": 6, \"message\": \"already exists error\", \"details\": [] }\202\323\344\223\002\034\"\r/v1/pipelines:\001*b\010pipeline'
|
|
107
|
+
_globals['_PIPELINESERVICE'].methods_by_name['GetPipeline']._loaded_options = None
|
|
108
|
+
_globals['_PIPELINESERVICE'].methods_by_name['GetPipeline']._serialized_options = b'\222AzJx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002\036\022\022/v1/pipelines/{id}b\010pipeline'
|
|
109
|
+
_globals['_PIPELINESERVICE'].methods_by_name['UpdatePipeline']._loaded_options = None
|
|
110
|
+
_globals['_PIPELINESERVICE'].methods_by_name['UpdatePipeline']._serialized_options = b'\222A\351\002Jw\n\003400\022p\022\026\n\024\032\022.google.rpc.Status\"V\n\020application/json\022B{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }Jt\n\003409\022m\022\026\n\024\032\022.google.rpc.Status\"S\n\020application/json\022?{ \"code\": 6, \"message\": \"already exists error\", \"details\": [] }\202\323\344\223\002!\032\022/v1/pipelines/{id}:\001*b\010pipeline'
|
|
111
|
+
_globals['_PIPELINESERVICE'].methods_by_name['DeletePipeline']._loaded_options = None
|
|
112
|
+
_globals['_PIPELINESERVICE'].methods_by_name['DeletePipeline']._serialized_options = b'\222A\365\001Jy\n\003400\022r\022\026\n\024\032\022.google.rpc.Status\"X\n\020application/json\022D{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002\024*\022/v1/pipelines/{id}'
|
|
113
|
+
_globals['_PIPELINESERVICE'].methods_by_name['StartPipeline']._loaded_options = None
|
|
114
|
+
_globals['_PIPELINESERVICE'].methods_by_name['StartPipeline']._serialized_options = b'\222A\365\001Jy\n\003400\022r\022\026\n\024\032\022.google.rpc.Status\"X\n\020application/json\022D{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002\032\"\030/v1/pipelines/{id}/start'
|
|
115
|
+
_globals['_PIPELINESERVICE'].methods_by_name['StopPipeline']._loaded_options = None
|
|
116
|
+
_globals['_PIPELINESERVICE'].methods_by_name['StopPipeline']._serialized_options = b'\222A\365\001Jy\n\003400\022r\022\026\n\024\032\022.google.rpc.Status\"X\n\020application/json\022D{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002\034\"\027/v1/pipelines/{id}/stop:\001*'
|
|
117
|
+
_globals['_PIPELINESERVICE'].methods_by_name['GetDLQ']._loaded_options = None
|
|
118
|
+
_globals['_PIPELINESERVICE'].methods_by_name['GetDLQ']._serialized_options = b'\202\323\344\223\002+\022$/v1/pipelines/{id}/dead-letter-queueb\003dlq'
|
|
119
|
+
_globals['_PIPELINESERVICE'].methods_by_name['UpdateDLQ']._loaded_options = None
|
|
120
|
+
_globals['_PIPELINESERVICE'].methods_by_name['UpdateDLQ']._serialized_options = b'\202\323\344\223\0020\032$/v1/pipelines/{id}/dead-letter-queue:\003dlqb\003dlq'
|
|
121
|
+
_globals['_PIPELINESERVICE'].methods_by_name['ExportPipeline']._loaded_options = None
|
|
122
|
+
_globals['_PIPELINESERVICE'].methods_by_name['ExportPipeline']._serialized_options = b'\202\323\344\223\002%\"\031/v1/pipelines/{id}/exportb\010pipeline'
|
|
123
|
+
_globals['_PIPELINESERVICE'].methods_by_name['ImportPipeline']._loaded_options = None
|
|
124
|
+
_globals['_PIPELINESERVICE'].methods_by_name['ImportPipeline']._serialized_options = b'\202\323\344\223\002*\"\024/v1/pipelines/import:\010pipelineb\010pipeline'
|
|
125
|
+
_globals['_PIPELINESERVICE'].methods_by_name['PlanPipeline']._loaded_options = None
|
|
126
|
+
_globals['_PIPELINESERVICE'].methods_by_name['PlanPipeline']._serialized_options = b'\202\323\344\223\002\035\"\022/v1/pipelines/plan:\001*b\004diff'
|
|
127
|
+
_globals['_PIPELINESERVICE'].methods_by_name['ApplyPipeline']._loaded_options = None
|
|
128
|
+
_globals['_PIPELINESERVICE'].methods_by_name['ApplyPipeline']._serialized_options = b'\222A\364\001Jw\n\003400\022p\022\026\n\024\032\022.google.rpc.Status\"V\n\020application/json\022B{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jy\n\003412\022r\022\026\n\024\032\022.google.rpc.Status\"X\n\020application/json\022D{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }\202\323\344\223\002\036\"\023/v1/pipelines/apply:\001*b\004diff'
|
|
129
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['ListConnectors']._loaded_options = None
|
|
130
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['ListConnectors']._serialized_options = b'\202\323\344\223\002\034\022\016/v1/connectorsb\nconnectors'
|
|
131
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['InspectConnector']._loaded_options = None
|
|
132
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['InspectConnector']._serialized_options = b'\202\323\344\223\002%\022\033/v1/connectors/{id}/inspectb\006record'
|
|
133
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['GetConnector']._loaded_options = None
|
|
134
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['GetConnector']._serialized_options = b'\222AzJx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002 \022\023/v1/connectors/{id}b\tconnector'
|
|
135
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['CreateConnector']._loaded_options = None
|
|
136
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['CreateConnector']._serialized_options = b'\222AyJw\n\003400\022p\022\026\n\024\032\022.google.rpc.Status\"V\n\020application/json\022B{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }\202\323\344\223\002\036\"\016/v1/connectors:\001*b\tconnector'
|
|
137
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['ValidateConnector']._loaded_options = None
|
|
138
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['ValidateConnector']._serialized_options = b'\222A\241\002J\235\001\n\003400\022\225\001\022\026\n\024\032\022.google.rpc.Status\"{\n\020application/json\022g{ \"code\": 9, \"message\": \"validation error: `aws.accessKeyId` config value must be set\", \"details\": [] }J\177\n\003500\022x\022\026\n\024\032\022.google.rpc.Status\"^\n\020application/json\022J{ \"code\": 13, \"message\": \"could not dispense destination\", \"details\": [] }\202\323\344\223\002\034\"\027/v1/connectors/validate:\001*'
|
|
139
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['UpdateConnector']._loaded_options = None
|
|
140
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['UpdateConnector']._serialized_options = b'\222A\363\001Jw\n\003400\022p\022\026\n\024\032\022.google.rpc.Status\"V\n\020application/json\022B{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002#\032\023/v1/connectors/{id}:\001*b\tconnector'
|
|
141
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['DeleteConnector']._loaded_options = None
|
|
142
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['DeleteConnector']._serialized_options = b'\222A\365\001Jy\n\003400\022r\022\026\n\024\032\022.google.rpc.Status\"X\n\020application/json\022D{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002\025*\023/v1/connectors/{id}'
|
|
143
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['ListConnectorPlugins']._loaded_options = None
|
|
144
|
+
_globals['_CONNECTORSERVICE'].methods_by_name['ListConnectorPlugins']._serialized_options = b'\202\323\344\223\002!\022\026/v1/connectors/pluginsb\007plugins'
|
|
145
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['ListProcessors']._loaded_options = None
|
|
146
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['ListProcessors']._serialized_options = b'\202\323\344\223\002\034\022\016/v1/processorsb\nprocessors'
|
|
147
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['InspectProcessorIn']._loaded_options = None
|
|
148
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['InspectProcessorIn']._serialized_options = b'\202\323\344\223\002(\022\036/v1/processors/{id}/inspect-inb\006record'
|
|
149
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['InspectProcessorOut']._loaded_options = None
|
|
150
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['InspectProcessorOut']._serialized_options = b'\202\323\344\223\002)\022\037/v1/processors/{id}/inspect-outb\006record'
|
|
151
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['GetProcessor']._loaded_options = None
|
|
152
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['GetProcessor']._serialized_options = b'\222AzJx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002 \022\023/v1/processors/{id}b\tprocessor'
|
|
153
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['CreateProcessor']._loaded_options = None
|
|
154
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['CreateProcessor']._serialized_options = b'\222AyJw\n\003400\022p\022\026\n\024\032\022.google.rpc.Status\"V\n\020application/json\022B{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }\202\323\344\223\002\036\"\016/v1/processors:\001*b\tprocessor'
|
|
155
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['UpdateProcessor']._loaded_options = None
|
|
156
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['UpdateProcessor']._serialized_options = b'\222A\363\001Jw\n\003400\022p\022\026\n\024\032\022.google.rpc.Status\"V\n\020application/json\022B{ \"code\": 3, \"message\": \"invalid arguments error\", \"details\": [] }Jx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002#\032\023/v1/processors/{id}:\001*b\tprocessor'
|
|
157
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['DeleteProcessor']._loaded_options = None
|
|
158
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['DeleteProcessor']._serialized_options = b'\222A\365\001Jy\n\003400\022r\022\026\n\024\032\022.google.rpc.Status\"X\n\020application/json\022D{ \"code\": 9, \"message\": \"failed precondition error\", \"details\": [] }Jx\n\003404\022q\022\026\n\024\032\022.google.rpc.Status\"W\n\020application/json\022C{ \"code\": 5, \"message\": \"resource not found error\", \"details\": [] }\202\323\344\223\002\025*\023/v1/processors/{id}'
|
|
159
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['ListProcessorPlugins']._loaded_options = None
|
|
160
|
+
_globals['_PROCESSORSERVICE'].methods_by_name['ListProcessorPlugins']._serialized_options = b'\202\323\344\223\002!\022\026/v1/processors/pluginsb\007plugins'
|
|
161
|
+
_globals['_INFORMATIONSERVICE'].methods_by_name['GetInfo']._loaded_options = None
|
|
162
|
+
_globals['_INFORMATIONSERVICE'].methods_by_name['GetInfo']._serialized_options = b'\202\323\344\223\002\r\022\005/infob\004info'
|
|
163
|
+
_globals['_PLUGINSERVICE'].methods_by_name['ListPlugins']._loaded_options = None
|
|
164
|
+
_globals['_PLUGINSERVICE'].methods_by_name['ListPlugins']._serialized_options = b'\210\002\001\202\323\344\223\002\026\022\013/v1/pluginsb\007plugins'
|
|
165
|
+
_globals['_PIPELINE']._serialized_start=226
|
|
166
|
+
_globals['_PIPELINE']._serialized_end=1237
|
|
167
|
+
_globals['_PIPELINE_STATE']._serialized_start=557
|
|
168
|
+
_globals['_PIPELINE_STATE']._serialized_end=813
|
|
169
|
+
_globals['_PIPELINE_STATE_STOPPEDREASON']._serialized_start=714
|
|
170
|
+
_globals['_PIPELINE_STATE_STOPPEDREASON']._serialized_end=813
|
|
171
|
+
_globals['_PIPELINE_CONFIG']._serialized_start=815
|
|
172
|
+
_globals['_PIPELINE_CONFIG']._serialized_end=877
|
|
173
|
+
_globals['_PIPELINE_DLQ']._serialized_start=880
|
|
174
|
+
_globals['_PIPELINE_DLQ']._serialized_end=1119
|
|
175
|
+
_globals['_PIPELINE_DLQ_SETTINGSENTRY']._serialized_start=1060
|
|
176
|
+
_globals['_PIPELINE_DLQ_SETTINGSENTRY']._serialized_end=1119
|
|
177
|
+
_globals['_PIPELINE_STATUS']._serialized_start=1121
|
|
178
|
+
_globals['_PIPELINE_STATUS']._serialized_end=1237
|
|
179
|
+
_globals['_CONNECTOR']._serialized_start=1240
|
|
180
|
+
_globals['_CONNECTOR']._serialized_end=2194
|
|
181
|
+
_globals['_CONNECTOR_SOURCESTATE']._serialized_start=1751
|
|
182
|
+
_globals['_CONNECTOR_SOURCESTATE']._serialized_end=1792
|
|
183
|
+
_globals['_CONNECTOR_DESTINATIONSTATE']._serialized_start=1795
|
|
184
|
+
_globals['_CONNECTOR_DESTINATIONSTATE']._serialized_end=1956
|
|
185
|
+
_globals['_CONNECTOR_DESTINATIONSTATE_POSITIONSENTRY']._serialized_start=1896
|
|
186
|
+
_globals['_CONNECTOR_DESTINATIONSTATE_POSITIONSENTRY']._serialized_end=1956
|
|
187
|
+
_globals['_CONNECTOR_CONFIG']._serialized_start=1959
|
|
188
|
+
_globals['_CONNECTOR_CONFIG']._serialized_end=2116
|
|
189
|
+
_globals['_CONNECTOR_CONFIG_SETTINGSENTRY']._serialized_start=1060
|
|
190
|
+
_globals['_CONNECTOR_CONFIG_SETTINGSENTRY']._serialized_end=1119
|
|
191
|
+
_globals['_CONNECTOR_TYPE']._serialized_start=2118
|
|
192
|
+
_globals['_CONNECTOR_TYPE']._serialized_end=2185
|
|
193
|
+
_globals['_PROCESSOR']._serialized_start=2197
|
|
194
|
+
_globals['_PROCESSOR']._serialized_end=2849
|
|
195
|
+
_globals['_PROCESSOR_PARENT']._serialized_start=2514
|
|
196
|
+
_globals['_PROCESSOR_PARENT']._serialized_end=2658
|
|
197
|
+
_globals['_PROCESSOR_PARENT_TYPE']._serialized_start=2591
|
|
198
|
+
_globals['_PROCESSOR_PARENT_TYPE']._serialized_end=2658
|
|
199
|
+
_globals['_PROCESSOR_CONFIG']._serialized_start=2661
|
|
200
|
+
_globals['_PROCESSOR_CONFIG']._serialized_end=2824
|
|
201
|
+
_globals['_PROCESSOR_CONFIG_SETTINGSENTRY']._serialized_start=1060
|
|
202
|
+
_globals['_PROCESSOR_CONFIG_SETTINGSENTRY']._serialized_end=1119
|
|
203
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS']._serialized_start=2852
|
|
204
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS']._serialized_end=3395
|
|
205
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS_DESTINATIONPARAMSENTRY']._serialized_start=3218
|
|
206
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS_DESTINATIONPARAMSENTRY']._serialized_end=3308
|
|
207
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS_SOURCEPARAMSENTRY']._serialized_start=3310
|
|
208
|
+
_globals['_CONNECTORPLUGINSPECIFICATIONS_SOURCEPARAMSENTRY']._serialized_end=3395
|
|
209
|
+
_globals['_PROCESSORPLUGINSPECIFICATIONS']._serialized_start=3398
|
|
210
|
+
_globals['_PROCESSORPLUGINSPECIFICATIONS']._serialized_end=3731
|
|
211
|
+
_globals['_PROCESSORPLUGINSPECIFICATIONS_PARAMETERSENTRY']._serialized_start=3648
|
|
212
|
+
_globals['_PROCESSORPLUGINSPECIFICATIONS_PARAMETERSENTRY']._serialized_end=3731
|
|
213
|
+
_globals['_PLUGINSPECIFICATIONS']._serialized_start=3734
|
|
214
|
+
_globals['_PLUGINSPECIFICATIONS']._serialized_end=4919
|
|
215
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER']._serialized_start=4074
|
|
216
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER']._serialized_end=4700
|
|
217
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_VALIDATION']._serialized_start=4298
|
|
218
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_VALIDATION']._serialized_end=4565
|
|
219
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_VALIDATION_TYPE']._serialized_start=4411
|
|
220
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_VALIDATION_TYPE']._serialized_end=4561
|
|
221
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_TYPE']._serialized_start=4568
|
|
222
|
+
_globals['_PLUGINSPECIFICATIONS_PARAMETER_TYPE']._serialized_end=4696
|
|
223
|
+
_globals['_PLUGINSPECIFICATIONS_DESTINATIONPARAMSENTRY']._serialized_start=4702
|
|
224
|
+
_globals['_PLUGINSPECIFICATIONS_DESTINATIONPARAMSENTRY']._serialized_end=4810
|
|
225
|
+
_globals['_PLUGINSPECIFICATIONS_SOURCEPARAMSENTRY']._serialized_start=4812
|
|
226
|
+
_globals['_PLUGINSPECIFICATIONS_SOURCEPARAMSENTRY']._serialized_end=4915
|
|
227
|
+
_globals['_LISTPIPELINESREQUEST']._serialized_start=4921
|
|
228
|
+
_globals['_LISTPIPELINESREQUEST']._serialized_end=4963
|
|
229
|
+
_globals['_LISTPIPELINESRESPONSE']._serialized_start=4965
|
|
230
|
+
_globals['_LISTPIPELINESRESPONSE']._serialized_end=5036
|
|
231
|
+
_globals['_CREATEPIPELINEREQUEST']._serialized_start=5038
|
|
232
|
+
_globals['_CREATEPIPELINEREQUEST']._serialized_end=5110
|
|
233
|
+
_globals['_CREATEPIPELINERESPONSE']._serialized_start=5112
|
|
234
|
+
_globals['_CREATEPIPELINERESPONSE']._serialized_end=5182
|
|
235
|
+
_globals['_GETPIPELINEREQUEST']._serialized_start=5184
|
|
236
|
+
_globals['_GETPIPELINEREQUEST']._serialized_end=5220
|
|
237
|
+
_globals['_GETPIPELINERESPONSE']._serialized_start=5222
|
|
238
|
+
_globals['_GETPIPELINERESPONSE']._serialized_end=5289
|
|
239
|
+
_globals['_UPDATEPIPELINEREQUEST']._serialized_start=5291
|
|
240
|
+
_globals['_UPDATEPIPELINEREQUEST']._serialized_end=5379
|
|
241
|
+
_globals['_UPDATEPIPELINERESPONSE']._serialized_start=5381
|
|
242
|
+
_globals['_UPDATEPIPELINERESPONSE']._serialized_end=5451
|
|
243
|
+
_globals['_DELETEPIPELINEREQUEST']._serialized_start=5453
|
|
244
|
+
_globals['_DELETEPIPELINEREQUEST']._serialized_end=5492
|
|
245
|
+
_globals['_DELETEPIPELINERESPONSE']._serialized_start=5494
|
|
246
|
+
_globals['_DELETEPIPELINERESPONSE']._serialized_end=5518
|
|
247
|
+
_globals['_STARTPIPELINEREQUEST']._serialized_start=5520
|
|
248
|
+
_globals['_STARTPIPELINEREQUEST']._serialized_end=5558
|
|
249
|
+
_globals['_STARTPIPELINERESPONSE']._serialized_start=5560
|
|
250
|
+
_globals['_STARTPIPELINERESPONSE']._serialized_end=5583
|
|
251
|
+
_globals['_STOPPIPELINEREQUEST']._serialized_start=5585
|
|
252
|
+
_globals['_STOPPIPELINEREQUEST']._serialized_end=5644
|
|
253
|
+
_globals['_STOPPIPELINERESPONSE']._serialized_start=5646
|
|
254
|
+
_globals['_STOPPIPELINERESPONSE']._serialized_end=5668
|
|
255
|
+
_globals['_GETDLQREQUEST']._serialized_start=5670
|
|
256
|
+
_globals['_GETDLQREQUEST']._serialized_end=5701
|
|
257
|
+
_globals['_GETDLQRESPONSE']._serialized_start=5703
|
|
258
|
+
_globals['_GETDLQRESPONSE']._serialized_end=5759
|
|
259
|
+
_globals['_UPDATEDLQREQUEST']._serialized_start=5761
|
|
260
|
+
_globals['_UPDATEDLQREQUEST']._serialized_end=5835
|
|
261
|
+
_globals['_UPDATEDLQRESPONSE']._serialized_start=5837
|
|
262
|
+
_globals['_UPDATEDLQRESPONSE']._serialized_end=5896
|
|
263
|
+
_globals['_EXPORTPIPELINEREQUEST']._serialized_start=5898
|
|
264
|
+
_globals['_EXPORTPIPELINEREQUEST']._serialized_end=5937
|
|
265
|
+
_globals['_EXPORTPIPELINERESPONSE']._serialized_start=5939
|
|
266
|
+
_globals['_EXPORTPIPELINERESPONSE']._serialized_end=6009
|
|
267
|
+
_globals['_IMPORTPIPELINEREQUEST']._serialized_start=6011
|
|
268
|
+
_globals['_IMPORTPIPELINEREQUEST']._serialized_end=6080
|
|
269
|
+
_globals['_IMPORTPIPELINERESPONSE']._serialized_start=6082
|
|
270
|
+
_globals['_IMPORTPIPELINERESPONSE']._serialized_end=6152
|
|
271
|
+
_globals['_PIPELINEDOCUMENT']._serialized_start=6155
|
|
272
|
+
_globals['_PIPELINEDOCUMENT']._serialized_end=7251
|
|
273
|
+
_globals['_PIPELINEDOCUMENT_CONNECTOR']._serialized_start=6454
|
|
274
|
+
_globals['_PIPELINEDOCUMENT_CONNECTOR']._serialized_end=6752
|
|
275
|
+
_globals['_PIPELINEDOCUMENT_CONNECTOR_SETTINGSENTRY']._serialized_start=1060
|
|
276
|
+
_globals['_PIPELINEDOCUMENT_CONNECTOR_SETTINGSENTRY']._serialized_end=1119
|
|
277
|
+
_globals['_PIPELINEDOCUMENT_PROCESSOR']._serialized_start=6755
|
|
278
|
+
_globals['_PIPELINEDOCUMENT_PROCESSOR']._serialized_end=7001
|
|
279
|
+
_globals['_PIPELINEDOCUMENT_PROCESSOR_SETTINGSENTRY']._serialized_start=1060
|
|
280
|
+
_globals['_PIPELINEDOCUMENT_PROCESSOR_SETTINGSENTRY']._serialized_end=1119
|
|
281
|
+
_globals['_PIPELINEDOCUMENT_DLQ']._serialized_start=7004
|
|
282
|
+
_globals['_PIPELINEDOCUMENT_DLQ']._serialized_end=7251
|
|
283
|
+
_globals['_PIPELINEDOCUMENT_DLQ_SETTINGSENTRY']._serialized_start=1060
|
|
284
|
+
_globals['_PIPELINEDOCUMENT_DLQ_SETTINGSENTRY']._serialized_end=1119
|
|
285
|
+
_globals['_DIFF']._serialized_start=7254
|
|
286
|
+
_globals['_DIFF']._serialized_end=7518
|
|
287
|
+
_globals['_DIFF_CHANGE']._serialized_start=7363
|
|
288
|
+
_globals['_DIFF_CHANGE']._serialized_end=7518
|
|
289
|
+
_globals['_PLANPIPELINEREQUEST']._serialized_start=7520
|
|
290
|
+
_globals['_PLANPIPELINEREQUEST']._serialized_end=7591
|
|
291
|
+
_globals['_PLANPIPELINERESPONSE']._serialized_start=7593
|
|
292
|
+
_globals['_PLANPIPELINERESPONSE']._serialized_end=7649
|
|
293
|
+
_globals['_APPLYPIPELINEREQUEST']._serialized_start=7651
|
|
294
|
+
_globals['_APPLYPIPELINEREQUEST']._serialized_end=7743
|
|
295
|
+
_globals['_APPLYPIPELINERESPONSE']._serialized_start=7745
|
|
296
|
+
_globals['_APPLYPIPELINERESPONSE']._serialized_end=7802
|
|
297
|
+
_globals['_CREATECONNECTORREQUEST']._serialized_start=7805
|
|
298
|
+
_globals['_CREATECONNECTORREQUEST']._serialized_end=7980
|
|
299
|
+
_globals['_CREATECONNECTORRESPONSE']._serialized_start=7982
|
|
300
|
+
_globals['_CREATECONNECTORRESPONSE']._serialized_end=8056
|
|
301
|
+
_globals['_VALIDATECONNECTORREQUEST']._serialized_start=8059
|
|
302
|
+
_globals['_VALIDATECONNECTORREQUEST']._serialized_end=8203
|
|
303
|
+
_globals['_VALIDATECONNECTORRESPONSE']._serialized_start=8205
|
|
304
|
+
_globals['_VALIDATECONNECTORRESPONSE']._serialized_end=8232
|
|
305
|
+
_globals['_LISTCONNECTORSREQUEST']._serialized_start=8234
|
|
306
|
+
_globals['_LISTCONNECTORSREQUEST']._serialized_end=8290
|
|
307
|
+
_globals['_LISTCONNECTORSRESPONSE']._serialized_start=8292
|
|
308
|
+
_globals['_LISTCONNECTORSRESPONSE']._serialized_end=8367
|
|
309
|
+
_globals['_INSPECTCONNECTORREQUEST']._serialized_start=8369
|
|
310
|
+
_globals['_INSPECTCONNECTORREQUEST']._serialized_end=8410
|
|
311
|
+
_globals['_INSPECTCONNECTORRESPONSE']._serialized_start=8412
|
|
312
|
+
_globals['_INSPECTCONNECTORRESPONSE']._serialized_end=8482
|
|
313
|
+
_globals['_GETCONNECTORREQUEST']._serialized_start=8484
|
|
314
|
+
_globals['_GETCONNECTORREQUEST']._serialized_end=8521
|
|
315
|
+
_globals['_GETCONNECTORRESPONSE']._serialized_start=8523
|
|
316
|
+
_globals['_GETCONNECTORRESPONSE']._serialized_end=8594
|
|
317
|
+
_globals['_UPDATECONNECTORREQUEST']._serialized_start=8596
|
|
318
|
+
_globals['_UPDATECONNECTORREQUEST']._serialized_end=8710
|
|
319
|
+
_globals['_UPDATECONNECTORRESPONSE']._serialized_start=8712
|
|
320
|
+
_globals['_UPDATECONNECTORRESPONSE']._serialized_end=8786
|
|
321
|
+
_globals['_DELETECONNECTORREQUEST']._serialized_start=8788
|
|
322
|
+
_globals['_DELETECONNECTORREQUEST']._serialized_end=8828
|
|
323
|
+
_globals['_DELETECONNECTORRESPONSE']._serialized_start=8830
|
|
324
|
+
_globals['_DELETECONNECTORRESPONSE']._serialized_end=8855
|
|
325
|
+
_globals['_LISTCONNECTORPLUGINSREQUEST']._serialized_start=8857
|
|
326
|
+
_globals['_LISTCONNECTORPLUGINSREQUEST']._serialized_end=8906
|
|
327
|
+
_globals['_LISTCONNECTORPLUGINSRESPONSE']._serialized_start=8908
|
|
328
|
+
_globals['_LISTCONNECTORPLUGINSRESPONSE']._serialized_end=9003
|
|
329
|
+
_globals['_LISTPROCESSORSREQUEST']._serialized_start=9005
|
|
330
|
+
_globals['_LISTPROCESSORSREQUEST']._serialized_end=9059
|
|
331
|
+
_globals['_LISTPROCESSORSRESPONSE']._serialized_start=9061
|
|
332
|
+
_globals['_LISTPROCESSORSRESPONSE']._serialized_end=9136
|
|
333
|
+
_globals['_INSPECTPROCESSORINREQUEST']._serialized_start=9138
|
|
334
|
+
_globals['_INSPECTPROCESSORINREQUEST']._serialized_end=9181
|
|
335
|
+
_globals['_INSPECTPROCESSORINRESPONSE']._serialized_start=9183
|
|
336
|
+
_globals['_INSPECTPROCESSORINRESPONSE']._serialized_end=9255
|
|
337
|
+
_globals['_INSPECTPROCESSOROUTREQUEST']._serialized_start=9257
|
|
338
|
+
_globals['_INSPECTPROCESSOROUTREQUEST']._serialized_end=9301
|
|
339
|
+
_globals['_INSPECTPROCESSOROUTRESPONSE']._serialized_start=9303
|
|
340
|
+
_globals['_INSPECTPROCESSOROUTRESPONSE']._serialized_end=9376
|
|
341
|
+
_globals['_CREATEPROCESSORREQUEST']._serialized_start=9379
|
|
342
|
+
_globals['_CREATEPROCESSORREQUEST']._serialized_end=9581
|
|
343
|
+
_globals['_CREATEPROCESSORRESPONSE']._serialized_start=9583
|
|
344
|
+
_globals['_CREATEPROCESSORRESPONSE']._serialized_end=9657
|
|
345
|
+
_globals['_GETPROCESSORREQUEST']._serialized_start=9659
|
|
346
|
+
_globals['_GETPROCESSORREQUEST']._serialized_end=9696
|
|
347
|
+
_globals['_GETPROCESSORRESPONSE']._serialized_start=9698
|
|
348
|
+
_globals['_GETPROCESSORRESPONSE']._serialized_end=9769
|
|
349
|
+
_globals['_UPDATEPROCESSORREQUEST']._serialized_start=9771
|
|
350
|
+
_globals['_UPDATEPROCESSORREQUEST']._serialized_end=9885
|
|
351
|
+
_globals['_UPDATEPROCESSORRESPONSE']._serialized_start=9887
|
|
352
|
+
_globals['_UPDATEPROCESSORRESPONSE']._serialized_end=9961
|
|
353
|
+
_globals['_DELETEPROCESSORREQUEST']._serialized_start=9963
|
|
354
|
+
_globals['_DELETEPROCESSORREQUEST']._serialized_end=10003
|
|
355
|
+
_globals['_DELETEPROCESSORRESPONSE']._serialized_start=10005
|
|
356
|
+
_globals['_DELETEPROCESSORRESPONSE']._serialized_end=10030
|
|
357
|
+
_globals['_LISTPROCESSORPLUGINSREQUEST']._serialized_start=10032
|
|
358
|
+
_globals['_LISTPROCESSORPLUGINSREQUEST']._serialized_end=10081
|
|
359
|
+
_globals['_LISTPROCESSORPLUGINSRESPONSE']._serialized_start=10083
|
|
360
|
+
_globals['_LISTPROCESSORPLUGINSRESPONSE']._serialized_end=10178
|
|
361
|
+
_globals['_GETINFOREQUEST']._serialized_start=10180
|
|
362
|
+
_globals['_GETINFOREQUEST']._serialized_end=10196
|
|
363
|
+
_globals['_GETINFORESPONSE']._serialized_start=10198
|
|
364
|
+
_globals['_GETINFORESPONSE']._serialized_end=10249
|
|
365
|
+
_globals['_INFO']._serialized_start=10251
|
|
366
|
+
_globals['_INFO']._serialized_end=10319
|
|
367
|
+
_globals['_LISTPLUGINSREQUEST']._serialized_start=10321
|
|
368
|
+
_globals['_LISTPLUGINSREQUEST']._serialized_end=10365
|
|
369
|
+
_globals['_LISTPLUGINSRESPONSE']._serialized_start=10367
|
|
370
|
+
_globals['_LISTPLUGINSRESPONSE']._serialized_end=10448
|
|
371
|
+
_globals['_PIPELINESERVICE']._serialized_start=10451
|
|
372
|
+
_globals['_PIPELINESERVICE']._serialized_end=13719
|
|
373
|
+
_globals['_CONNECTORSERVICE']._serialized_start=13722
|
|
374
|
+
_globals['_CONNECTORSERVICE']._serialized_end=15784
|
|
375
|
+
_globals['_PROCESSORSERVICE']._serialized_start=15787
|
|
376
|
+
_globals['_PROCESSORSERVICE']._serialized_end=17585
|
|
377
|
+
_globals['_INFORMATIONSERVICE']._serialized_start=17587
|
|
378
|
+
_globals['_INFORMATIONSERVICE']._serialized_end=17688
|
|
379
|
+
_globals['_PLUGINSERVICE']._serialized_start=17690
|
|
380
|
+
_globals['_PLUGINSERVICE']._serialized_end=17810
|
|
381
|
+
# @@protoc_insertion_point(module_scope)
|