flyte 0.0.1b3__py3-none-any.whl → 0.2.0a0__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.
Potentially problematic release.
This version of flyte might be problematic. Click here for more details.
- flyte/__init__.py +20 -4
- flyte/_bin/runtime.py +33 -7
- flyte/_build.py +3 -2
- flyte/_cache/cache.py +1 -2
- flyte/_code_bundle/_packaging.py +1 -1
- flyte/_code_bundle/_utils.py +0 -16
- flyte/_code_bundle/bundle.py +43 -12
- flyte/_context.py +8 -2
- flyte/_deploy.py +56 -15
- flyte/_environment.py +45 -4
- flyte/_excepthook.py +37 -0
- flyte/_group.py +2 -1
- flyte/_image.py +8 -4
- flyte/_initialize.py +112 -254
- flyte/_interface.py +3 -3
- flyte/_internal/controllers/__init__.py +19 -6
- flyte/_internal/controllers/_local_controller.py +83 -8
- flyte/_internal/controllers/_trace.py +2 -1
- flyte/_internal/controllers/remote/__init__.py +27 -7
- flyte/_internal/controllers/remote/_action.py +7 -2
- flyte/_internal/controllers/remote/_client.py +5 -1
- flyte/_internal/controllers/remote/_controller.py +159 -26
- flyte/_internal/controllers/remote/_core.py +13 -5
- flyte/_internal/controllers/remote/_informer.py +4 -4
- flyte/_internal/controllers/remote/_service_protocol.py +6 -6
- flyte/_internal/imagebuild/docker_builder.py +12 -1
- flyte/_internal/imagebuild/image_builder.py +16 -11
- flyte/_internal/runtime/convert.py +164 -21
- flyte/_internal/runtime/entrypoints.py +1 -1
- flyte/_internal/runtime/io.py +3 -3
- flyte/_internal/runtime/task_serde.py +140 -20
- flyte/_internal/runtime/taskrunner.py +4 -3
- flyte/_internal/runtime/types_serde.py +1 -1
- flyte/_logging.py +12 -1
- flyte/_map.py +215 -0
- flyte/_pod.py +19 -0
- flyte/_protos/common/list_pb2.py +3 -3
- flyte/_protos/common/list_pb2.pyi +2 -0
- flyte/_protos/logs/dataplane/payload_pb2.py +28 -24
- flyte/_protos/logs/dataplane/payload_pb2.pyi +11 -2
- flyte/_protos/workflow/common_pb2.py +27 -0
- flyte/_protos/workflow/common_pb2.pyi +14 -0
- flyte/_protos/workflow/environment_pb2.py +29 -0
- flyte/_protos/workflow/environment_pb2.pyi +12 -0
- flyte/_protos/workflow/queue_service_pb2.py +40 -41
- flyte/_protos/workflow/queue_service_pb2.pyi +35 -30
- flyte/_protos/workflow/queue_service_pb2_grpc.py +15 -15
- flyte/_protos/workflow/run_definition_pb2.py +61 -61
- flyte/_protos/workflow/run_definition_pb2.pyi +8 -4
- flyte/_protos/workflow/run_service_pb2.py +20 -24
- flyte/_protos/workflow/run_service_pb2.pyi +2 -6
- flyte/_protos/workflow/state_service_pb2.py +36 -28
- flyte/_protos/workflow/state_service_pb2.pyi +19 -15
- flyte/_protos/workflow/state_service_pb2_grpc.py +28 -28
- flyte/_protos/workflow/task_definition_pb2.py +29 -22
- flyte/_protos/workflow/task_definition_pb2.pyi +21 -5
- flyte/_protos/workflow/task_service_pb2.py +27 -11
- flyte/_protos/workflow/task_service_pb2.pyi +29 -1
- flyte/_protos/workflow/task_service_pb2_grpc.py +34 -0
- flyte/_run.py +166 -95
- flyte/_task.py +110 -28
- flyte/_task_environment.py +55 -72
- flyte/_trace.py +6 -14
- flyte/_utils/__init__.py +6 -0
- flyte/_utils/async_cache.py +139 -0
- flyte/_utils/coro_management.py +0 -2
- flyte/_utils/helpers.py +45 -19
- flyte/_utils/org_discovery.py +57 -0
- flyte/_version.py +2 -2
- flyte/cli/__init__.py +3 -0
- flyte/cli/_abort.py +28 -0
- flyte/{_cli → cli}/_common.py +73 -23
- flyte/cli/_create.py +145 -0
- flyte/{_cli → cli}/_delete.py +4 -4
- flyte/{_cli → cli}/_deploy.py +26 -14
- flyte/cli/_gen.py +163 -0
- flyte/{_cli → cli}/_get.py +98 -23
- {union/_cli → flyte/cli}/_params.py +106 -147
- flyte/{_cli → cli}/_run.py +99 -20
- flyte/cli/main.py +166 -0
- flyte/config/__init__.py +3 -0
- flyte/config/_config.py +216 -0
- flyte/config/_internal.py +64 -0
- flyte/config/_reader.py +207 -0
- flyte/errors.py +29 -0
- flyte/extras/_container.py +33 -43
- flyte/io/__init__.py +17 -1
- flyte/io/_dir.py +2 -2
- flyte/io/_file.py +3 -4
- flyte/io/{structured_dataset → _structured_dataset}/basic_dfs.py +1 -1
- flyte/io/{structured_dataset → _structured_dataset}/structured_dataset.py +1 -1
- flyte/{_datastructures.py → models.py} +56 -7
- flyte/remote/__init__.py +2 -1
- flyte/remote/_client/_protocols.py +2 -0
- flyte/remote/_client/auth/_auth_utils.py +14 -0
- flyte/remote/_client/auth/_channel.py +34 -3
- flyte/remote/_client/auth/_token_client.py +3 -3
- flyte/remote/_client/controlplane.py +13 -13
- flyte/remote/_console.py +1 -1
- flyte/remote/_data.py +10 -6
- flyte/remote/_logs.py +89 -29
- flyte/remote/_project.py +8 -9
- flyte/remote/_run.py +228 -131
- flyte/remote/_secret.py +12 -12
- flyte/remote/_task.py +179 -15
- flyte/report/_report.py +4 -4
- flyte/storage/__init__.py +5 -0
- flyte/storage/_config.py +233 -0
- flyte/storage/_storage.py +23 -3
- flyte/syncify/__init__.py +56 -0
- flyte/syncify/_api.py +371 -0
- flyte/types/__init__.py +23 -0
- flyte/types/_interface.py +22 -7
- flyte/{io/pickle/transformer.py → types/_pickle.py} +2 -1
- flyte/types/_type_engine.py +95 -18
- flyte-0.2.0a0.dist-info/METADATA +249 -0
- flyte-0.2.0a0.dist-info/RECORD +218 -0
- {flyte-0.0.1b3.dist-info → flyte-0.2.0a0.dist-info}/entry_points.txt +1 -1
- flyte/_api_commons.py +0 -3
- flyte/_cli/__init__.py +0 -0
- flyte/_cli/_create.py +0 -42
- flyte/_cli/main.py +0 -72
- flyte/_internal/controllers/pbhash.py +0 -39
- flyte/io/_dataframe.py +0 -0
- flyte/io/pickle/__init__.py +0 -0
- flyte-0.0.1b3.dist-info/METADATA +0 -179
- flyte-0.0.1b3.dist-info/RECORD +0 -390
- union/__init__.py +0 -54
- union/_api_commons.py +0 -3
- union/_bin/__init__.py +0 -0
- union/_bin/runtime.py +0 -113
- union/_build.py +0 -25
- union/_cache/__init__.py +0 -12
- union/_cache/cache.py +0 -141
- union/_cache/defaults.py +0 -9
- union/_cache/policy_function_body.py +0 -42
- union/_cli/__init__.py +0 -0
- union/_cli/_common.py +0 -263
- union/_cli/_create.py +0 -40
- union/_cli/_delete.py +0 -23
- union/_cli/_deploy.py +0 -120
- union/_cli/_get.py +0 -162
- union/_cli/_run.py +0 -150
- union/_cli/main.py +0 -72
- union/_code_bundle/__init__.py +0 -8
- union/_code_bundle/_ignore.py +0 -113
- union/_code_bundle/_packaging.py +0 -187
- union/_code_bundle/_utils.py +0 -342
- union/_code_bundle/bundle.py +0 -176
- union/_context.py +0 -146
- union/_datastructures.py +0 -295
- union/_deploy.py +0 -185
- union/_doc.py +0 -29
- union/_docstring.py +0 -26
- union/_environment.py +0 -43
- union/_group.py +0 -31
- union/_hash.py +0 -23
- union/_image.py +0 -760
- union/_initialize.py +0 -585
- union/_interface.py +0 -84
- union/_internal/__init__.py +0 -3
- union/_internal/controllers/__init__.py +0 -77
- union/_internal/controllers/_local_controller.py +0 -77
- union/_internal/controllers/pbhash.py +0 -39
- union/_internal/controllers/remote/__init__.py +0 -40
- union/_internal/controllers/remote/_action.py +0 -131
- union/_internal/controllers/remote/_client.py +0 -43
- union/_internal/controllers/remote/_controller.py +0 -169
- union/_internal/controllers/remote/_core.py +0 -341
- union/_internal/controllers/remote/_informer.py +0 -260
- union/_internal/controllers/remote/_service_protocol.py +0 -44
- union/_internal/imagebuild/__init__.py +0 -11
- union/_internal/imagebuild/docker_builder.py +0 -416
- union/_internal/imagebuild/image_builder.py +0 -243
- union/_internal/imagebuild/remote_builder.py +0 -0
- union/_internal/resolvers/__init__.py +0 -0
- union/_internal/resolvers/_task_module.py +0 -31
- union/_internal/resolvers/common.py +0 -24
- union/_internal/resolvers/default.py +0 -27
- union/_internal/runtime/__init__.py +0 -0
- union/_internal/runtime/convert.py +0 -163
- union/_internal/runtime/entrypoints.py +0 -121
- union/_internal/runtime/io.py +0 -136
- union/_internal/runtime/resources_serde.py +0 -134
- union/_internal/runtime/task_serde.py +0 -202
- union/_internal/runtime/taskrunner.py +0 -179
- union/_internal/runtime/types_serde.py +0 -53
- union/_logging.py +0 -124
- union/_protos/__init__.py +0 -0
- union/_protos/common/authorization_pb2.py +0 -66
- union/_protos/common/authorization_pb2.pyi +0 -106
- union/_protos/common/identifier_pb2.py +0 -71
- union/_protos/common/identifier_pb2.pyi +0 -82
- union/_protos/common/identity_pb2.py +0 -48
- union/_protos/common/identity_pb2.pyi +0 -72
- union/_protos/common/identity_pb2_grpc.py +0 -4
- union/_protos/common/list_pb2.py +0 -36
- union/_protos/common/list_pb2.pyi +0 -69
- union/_protos/common/list_pb2_grpc.py +0 -4
- union/_protos/common/policy_pb2.py +0 -37
- union/_protos/common/policy_pb2.pyi +0 -27
- union/_protos/common/policy_pb2_grpc.py +0 -4
- union/_protos/common/role_pb2.py +0 -37
- union/_protos/common/role_pb2.pyi +0 -51
- union/_protos/common/role_pb2_grpc.py +0 -4
- union/_protos/common/runtime_version_pb2.py +0 -28
- union/_protos/common/runtime_version_pb2.pyi +0 -24
- union/_protos/common/runtime_version_pb2_grpc.py +0 -4
- union/_protos/logs/dataplane/payload_pb2.py +0 -96
- union/_protos/logs/dataplane/payload_pb2.pyi +0 -168
- union/_protos/logs/dataplane/payload_pb2_grpc.py +0 -4
- union/_protos/secret/definition_pb2.py +0 -49
- union/_protos/secret/definition_pb2.pyi +0 -93
- union/_protos/secret/definition_pb2_grpc.py +0 -4
- union/_protos/secret/payload_pb2.py +0 -62
- union/_protos/secret/payload_pb2.pyi +0 -94
- union/_protos/secret/payload_pb2_grpc.py +0 -4
- union/_protos/secret/secret_pb2.py +0 -38
- union/_protos/secret/secret_pb2.pyi +0 -6
- union/_protos/secret/secret_pb2_grpc.py +0 -198
- union/_protos/validate/validate/validate_pb2.py +0 -76
- union/_protos/workflow/node_execution_service_pb2.py +0 -26
- union/_protos/workflow/node_execution_service_pb2.pyi +0 -4
- union/_protos/workflow/node_execution_service_pb2_grpc.py +0 -32
- union/_protos/workflow/queue_service_pb2.py +0 -75
- union/_protos/workflow/queue_service_pb2.pyi +0 -103
- union/_protos/workflow/queue_service_pb2_grpc.py +0 -172
- union/_protos/workflow/run_definition_pb2.py +0 -100
- union/_protos/workflow/run_definition_pb2.pyi +0 -256
- union/_protos/workflow/run_definition_pb2_grpc.py +0 -4
- union/_protos/workflow/run_logs_service_pb2.py +0 -41
- union/_protos/workflow/run_logs_service_pb2.pyi +0 -28
- union/_protos/workflow/run_logs_service_pb2_grpc.py +0 -69
- union/_protos/workflow/run_service_pb2.py +0 -133
- union/_protos/workflow/run_service_pb2.pyi +0 -173
- union/_protos/workflow/run_service_pb2_grpc.py +0 -412
- union/_protos/workflow/state_service_pb2.py +0 -58
- union/_protos/workflow/state_service_pb2.pyi +0 -69
- union/_protos/workflow/state_service_pb2_grpc.py +0 -138
- union/_protos/workflow/task_definition_pb2.py +0 -72
- union/_protos/workflow/task_definition_pb2.pyi +0 -65
- union/_protos/workflow/task_definition_pb2_grpc.py +0 -4
- union/_protos/workflow/task_service_pb2.py +0 -44
- union/_protos/workflow/task_service_pb2.pyi +0 -31
- union/_protos/workflow/task_service_pb2_grpc.py +0 -104
- union/_resources.py +0 -226
- union/_retry.py +0 -32
- union/_reusable_environment.py +0 -25
- union/_run.py +0 -374
- union/_secret.py +0 -61
- union/_task.py +0 -354
- union/_task_environment.py +0 -186
- union/_timeout.py +0 -47
- union/_tools.py +0 -27
- union/_utils/__init__.py +0 -11
- union/_utils/asyn.py +0 -119
- union/_utils/file_handling.py +0 -71
- union/_utils/helpers.py +0 -46
- union/_utils/lazy_module.py +0 -54
- union/_utils/uv_script_parser.py +0 -49
- union/_version.py +0 -21
- union/connectors/__init__.py +0 -0
- union/errors.py +0 -128
- union/extras/__init__.py +0 -5
- union/extras/_container.py +0 -263
- union/io/__init__.py +0 -11
- union/io/_dataframe.py +0 -0
- union/io/_dir.py +0 -425
- union/io/_file.py +0 -418
- union/io/pickle/__init__.py +0 -0
- union/io/pickle/transformer.py +0 -117
- union/io/structured_dataset/__init__.py +0 -122
- union/io/structured_dataset/basic_dfs.py +0 -219
- union/io/structured_dataset/structured_dataset.py +0 -1057
- union/py.typed +0 -0
- union/remote/__init__.py +0 -23
- union/remote/_client/__init__.py +0 -0
- union/remote/_client/_protocols.py +0 -129
- union/remote/_client/auth/__init__.py +0 -12
- union/remote/_client/auth/_authenticators/__init__.py +0 -0
- union/remote/_client/auth/_authenticators/base.py +0 -391
- union/remote/_client/auth/_authenticators/client_credentials.py +0 -73
- union/remote/_client/auth/_authenticators/device_code.py +0 -120
- union/remote/_client/auth/_authenticators/external_command.py +0 -77
- union/remote/_client/auth/_authenticators/factory.py +0 -200
- union/remote/_client/auth/_authenticators/pkce.py +0 -515
- union/remote/_client/auth/_channel.py +0 -184
- union/remote/_client/auth/_client_config.py +0 -83
- union/remote/_client/auth/_default_html.py +0 -32
- union/remote/_client/auth/_grpc_utils/__init__.py +0 -0
- union/remote/_client/auth/_grpc_utils/auth_interceptor.py +0 -204
- union/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py +0 -144
- union/remote/_client/auth/_keyring.py +0 -154
- union/remote/_client/auth/_token_client.py +0 -258
- union/remote/_client/auth/errors.py +0 -16
- union/remote/_client/controlplane.py +0 -86
- union/remote/_data.py +0 -149
- union/remote/_logs.py +0 -74
- union/remote/_project.py +0 -86
- union/remote/_run.py +0 -820
- union/remote/_secret.py +0 -132
- union/remote/_task.py +0 -193
- union/report/__init__.py +0 -3
- union/report/_report.py +0 -178
- union/report/_template.html +0 -124
- union/storage/__init__.py +0 -24
- union/storage/_remote_fs.py +0 -34
- union/storage/_storage.py +0 -247
- union/storage/_utils.py +0 -5
- union/types/__init__.py +0 -11
- union/types/_renderer.py +0 -162
- union/types/_string_literals.py +0 -120
- union/types/_type_engine.py +0 -2131
- union/types/_utils.py +0 -80
- /union/_protos/common/authorization_pb2_grpc.py → /flyte/_protos/workflow/common_pb2_grpc.py +0 -0
- /union/_protos/common/identifier_pb2_grpc.py → /flyte/_protos/workflow/environment_pb2_grpc.py +0 -0
- /flyte/io/{structured_dataset → _structured_dataset}/__init__.py +0 -0
- {flyte-0.0.1b3.dist-info → flyte-0.2.0a0.dist-info}/WHEEL +0 -0
- {flyte-0.0.1b3.dist-info → flyte-0.2.0a0.dist-info}/top_level.txt +0 -0
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
from union._protos.secret import definition_pb2 as _definition_pb2
|
|
2
|
-
from union._protos.validate.validate import validate_pb2 as _validate_pb2
|
|
3
|
-
from google.protobuf.internal import containers as _containers
|
|
4
|
-
from google.protobuf import descriptor as _descriptor
|
|
5
|
-
from google.protobuf import message as _message
|
|
6
|
-
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
7
|
-
|
|
8
|
-
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
-
|
|
10
|
-
class CreateSecretRequest(_message.Message):
|
|
11
|
-
__slots__ = ["id", "secret_spec"]
|
|
12
|
-
ID_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
-
SECRET_SPEC_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
-
id: _definition_pb2.SecretIdentifier
|
|
15
|
-
secret_spec: _definition_pb2.SecretSpec
|
|
16
|
-
def __init__(self, id: _Optional[_Union[_definition_pb2.SecretIdentifier, _Mapping]] = ..., secret_spec: _Optional[_Union[_definition_pb2.SecretSpec, _Mapping]] = ...) -> None: ...
|
|
17
|
-
|
|
18
|
-
class CreateSecretResponse(_message.Message):
|
|
19
|
-
__slots__ = []
|
|
20
|
-
def __init__(self) -> None: ...
|
|
21
|
-
|
|
22
|
-
class UpdateSecretRequest(_message.Message):
|
|
23
|
-
__slots__ = ["id", "secret_spec"]
|
|
24
|
-
ID_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
-
SECRET_SPEC_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
-
id: _definition_pb2.SecretIdentifier
|
|
27
|
-
secret_spec: _definition_pb2.SecretSpec
|
|
28
|
-
def __init__(self, id: _Optional[_Union[_definition_pb2.SecretIdentifier, _Mapping]] = ..., secret_spec: _Optional[_Union[_definition_pb2.SecretSpec, _Mapping]] = ...) -> None: ...
|
|
29
|
-
|
|
30
|
-
class UpdateSecretResponse(_message.Message):
|
|
31
|
-
__slots__ = []
|
|
32
|
-
def __init__(self) -> None: ...
|
|
33
|
-
|
|
34
|
-
class GetSecretRequest(_message.Message):
|
|
35
|
-
__slots__ = ["id"]
|
|
36
|
-
ID_FIELD_NUMBER: _ClassVar[int]
|
|
37
|
-
id: _definition_pb2.SecretIdentifier
|
|
38
|
-
def __init__(self, id: _Optional[_Union[_definition_pb2.SecretIdentifier, _Mapping]] = ...) -> None: ...
|
|
39
|
-
|
|
40
|
-
class GetSecretResponse(_message.Message):
|
|
41
|
-
__slots__ = ["secret"]
|
|
42
|
-
SECRET_FIELD_NUMBER: _ClassVar[int]
|
|
43
|
-
secret: _definition_pb2.Secret
|
|
44
|
-
def __init__(self, secret: _Optional[_Union[_definition_pb2.Secret, _Mapping]] = ...) -> None: ...
|
|
45
|
-
|
|
46
|
-
class DeleteSecretRequest(_message.Message):
|
|
47
|
-
__slots__ = ["id"]
|
|
48
|
-
ID_FIELD_NUMBER: _ClassVar[int]
|
|
49
|
-
id: _definition_pb2.SecretIdentifier
|
|
50
|
-
def __init__(self, id: _Optional[_Union[_definition_pb2.SecretIdentifier, _Mapping]] = ...) -> None: ...
|
|
51
|
-
|
|
52
|
-
class DeleteSecretResponse(_message.Message):
|
|
53
|
-
__slots__ = []
|
|
54
|
-
def __init__(self) -> None: ...
|
|
55
|
-
|
|
56
|
-
class ListSecretsRequest(_message.Message):
|
|
57
|
-
__slots__ = ["organization", "domain", "project", "limit", "token", "per_cluster_tokens"]
|
|
58
|
-
class PerClusterTokensEntry(_message.Message):
|
|
59
|
-
__slots__ = ["key", "value"]
|
|
60
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
61
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
62
|
-
key: str
|
|
63
|
-
value: str
|
|
64
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
|
65
|
-
ORGANIZATION_FIELD_NUMBER: _ClassVar[int]
|
|
66
|
-
DOMAIN_FIELD_NUMBER: _ClassVar[int]
|
|
67
|
-
PROJECT_FIELD_NUMBER: _ClassVar[int]
|
|
68
|
-
LIMIT_FIELD_NUMBER: _ClassVar[int]
|
|
69
|
-
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
-
PER_CLUSTER_TOKENS_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
-
organization: str
|
|
72
|
-
domain: str
|
|
73
|
-
project: str
|
|
74
|
-
limit: int
|
|
75
|
-
token: str
|
|
76
|
-
per_cluster_tokens: _containers.ScalarMap[str, str]
|
|
77
|
-
def __init__(self, organization: _Optional[str] = ..., domain: _Optional[str] = ..., project: _Optional[str] = ..., limit: _Optional[int] = ..., token: _Optional[str] = ..., per_cluster_tokens: _Optional[_Mapping[str, str]] = ...) -> None: ...
|
|
78
|
-
|
|
79
|
-
class ListSecretsResponse(_message.Message):
|
|
80
|
-
__slots__ = ["secrets", "token", "per_cluster_tokens"]
|
|
81
|
-
class PerClusterTokensEntry(_message.Message):
|
|
82
|
-
__slots__ = ["key", "value"]
|
|
83
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
-
key: str
|
|
86
|
-
value: str
|
|
87
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
|
88
|
-
SECRETS_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
-
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
-
PER_CLUSTER_TOKENS_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
-
secrets: _containers.RepeatedCompositeFieldContainer[_definition_pb2.Secret]
|
|
92
|
-
token: str
|
|
93
|
-
per_cluster_tokens: _containers.ScalarMap[str, str]
|
|
94
|
-
def __init__(self, secrets: _Optional[_Iterable[_Union[_definition_pb2.Secret, _Mapping]]] = ..., token: _Optional[str] = ..., per_cluster_tokens: _Optional[_Mapping[str, str]] = ...) -> None: ...
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# source: secret/secret.proto
|
|
4
|
-
"""Generated protocol buffer code."""
|
|
5
|
-
from google.protobuf import descriptor as _descriptor
|
|
6
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
8
|
-
from google.protobuf.internal import builder as _builder
|
|
9
|
-
# @@protoc_insertion_point(imports)
|
|
10
|
-
|
|
11
|
-
_sym_db = _symbol_database.Default()
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
15
|
-
from union._protos.secret import payload_pb2 as secret_dot_payload__pb2
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13secret/secret.proto\x12\x0f\x63loudidl.secret\x1a\x1cgoogle/api/annotations.proto\x1a\x14secret/payload.proto2\x86\x05\n\rSecretService\x12w\n\x0c\x43reateSecret\x12$.cloudidl.secret.CreateSecretRequest\x1a%.cloudidl.secret.CreateSecretResponse\"\x1a\x82\xd3\xe4\x93\x02\x14\"\x0f/secrets/api/v1:\x01*\x12\x86\x01\n\x0cUpdateSecret\x12$.cloudidl.secret.UpdateSecretRequest\x1a%.cloudidl.secret.UpdateSecretResponse\")\x82\xd3\xe4\x93\x02#\x1a\x1e/secrets/api/v1/name/{id.name}:\x01*\x12z\n\tGetSecret\x12!.cloudidl.secret.GetSecretRequest\x1a\".cloudidl.secret.GetSecretResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/secrets/api/v1/name/{id.name}\x12\x83\x01\n\x0c\x44\x65leteSecret\x12$.cloudidl.secret.DeleteSecretRequest\x1a%.cloudidl.secret.DeleteSecretResponse\"&\x82\xd3\xe4\x93\x02 *\x1e/secrets/api/v1/name/{id.name}\x12q\n\x0bListSecrets\x12#.cloudidl.secret.ListSecretsRequest\x1a$.cloudidl.secret.ListSecretsResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/secrets/api/v1B\xac\x01\n\x13\x63om.cloudidl.secretB\x0bSecretProtoH\x02P\x01Z)github.com/unionai/cloud/gen/pb-go/secret\xa2\x02\x03\x43SX\xaa\x02\x0f\x43loudidl.Secret\xca\x02\x0f\x43loudidl\\Secret\xe2\x02\x1b\x43loudidl\\Secret\\GPBMetadata\xea\x02\x10\x43loudidl::Secretb\x06proto3')
|
|
19
|
-
|
|
20
|
-
_globals = globals()
|
|
21
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
22
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'secret.secret_pb2', _globals)
|
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
24
|
-
DESCRIPTOR._options = None
|
|
25
|
-
DESCRIPTOR._serialized_options = b'\n\023com.cloudidl.secretB\013SecretProtoH\002P\001Z)github.com/unionai/cloud/gen/pb-go/secret\242\002\003CSX\252\002\017Cloudidl.Secret\312\002\017Cloudidl\\Secret\342\002\033Cloudidl\\Secret\\GPBMetadata\352\002\020Cloudidl::Secret'
|
|
26
|
-
_SECRETSERVICE.methods_by_name['CreateSecret']._options = None
|
|
27
|
-
_SECRETSERVICE.methods_by_name['CreateSecret']._serialized_options = b'\202\323\344\223\002\024\"\017/secrets/api/v1:\001*'
|
|
28
|
-
_SECRETSERVICE.methods_by_name['UpdateSecret']._options = None
|
|
29
|
-
_SECRETSERVICE.methods_by_name['UpdateSecret']._serialized_options = b'\202\323\344\223\002#\032\036/secrets/api/v1/name/{id.name}:\001*'
|
|
30
|
-
_SECRETSERVICE.methods_by_name['GetSecret']._options = None
|
|
31
|
-
_SECRETSERVICE.methods_by_name['GetSecret']._serialized_options = b'\202\323\344\223\002 \022\036/secrets/api/v1/name/{id.name}'
|
|
32
|
-
_SECRETSERVICE.methods_by_name['DeleteSecret']._options = None
|
|
33
|
-
_SECRETSERVICE.methods_by_name['DeleteSecret']._serialized_options = b'\202\323\344\223\002 *\036/secrets/api/v1/name/{id.name}'
|
|
34
|
-
_SECRETSERVICE.methods_by_name['ListSecrets']._options = None
|
|
35
|
-
_SECRETSERVICE.methods_by_name['ListSecrets']._serialized_options = b'\202\323\344\223\002\021\022\017/secrets/api/v1'
|
|
36
|
-
_globals['_SECRETSERVICE']._serialized_start=93
|
|
37
|
-
_globals['_SECRETSERVICE']._serialized_end=739
|
|
38
|
-
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
-
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
-
import grpc
|
|
4
|
-
|
|
5
|
-
from union._protos.secret import payload_pb2 as secret_dot_payload__pb2
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class SecretServiceStub(object):
|
|
9
|
-
"""Missing associated documentation comment in .proto file."""
|
|
10
|
-
|
|
11
|
-
def __init__(self, channel):
|
|
12
|
-
"""Constructor.
|
|
13
|
-
|
|
14
|
-
Args:
|
|
15
|
-
channel: A grpc.Channel.
|
|
16
|
-
"""
|
|
17
|
-
self.CreateSecret = channel.unary_unary(
|
|
18
|
-
'/cloudidl.secret.SecretService/CreateSecret',
|
|
19
|
-
request_serializer=secret_dot_payload__pb2.CreateSecretRequest.SerializeToString,
|
|
20
|
-
response_deserializer=secret_dot_payload__pb2.CreateSecretResponse.FromString,
|
|
21
|
-
)
|
|
22
|
-
self.UpdateSecret = channel.unary_unary(
|
|
23
|
-
'/cloudidl.secret.SecretService/UpdateSecret',
|
|
24
|
-
request_serializer=secret_dot_payload__pb2.UpdateSecretRequest.SerializeToString,
|
|
25
|
-
response_deserializer=secret_dot_payload__pb2.UpdateSecretResponse.FromString,
|
|
26
|
-
)
|
|
27
|
-
self.GetSecret = channel.unary_unary(
|
|
28
|
-
'/cloudidl.secret.SecretService/GetSecret',
|
|
29
|
-
request_serializer=secret_dot_payload__pb2.GetSecretRequest.SerializeToString,
|
|
30
|
-
response_deserializer=secret_dot_payload__pb2.GetSecretResponse.FromString,
|
|
31
|
-
)
|
|
32
|
-
self.DeleteSecret = channel.unary_unary(
|
|
33
|
-
'/cloudidl.secret.SecretService/DeleteSecret',
|
|
34
|
-
request_serializer=secret_dot_payload__pb2.DeleteSecretRequest.SerializeToString,
|
|
35
|
-
response_deserializer=secret_dot_payload__pb2.DeleteSecretResponse.FromString,
|
|
36
|
-
)
|
|
37
|
-
self.ListSecrets = channel.unary_unary(
|
|
38
|
-
'/cloudidl.secret.SecretService/ListSecrets',
|
|
39
|
-
request_serializer=secret_dot_payload__pb2.ListSecretsRequest.SerializeToString,
|
|
40
|
-
response_deserializer=secret_dot_payload__pb2.ListSecretsResponse.FromString,
|
|
41
|
-
)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
class SecretServiceServicer(object):
|
|
45
|
-
"""Missing associated documentation comment in .proto file."""
|
|
46
|
-
|
|
47
|
-
def CreateSecret(self, request, context):
|
|
48
|
-
"""Missing associated documentation comment in .proto file."""
|
|
49
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
50
|
-
context.set_details('Method not implemented!')
|
|
51
|
-
raise NotImplementedError('Method not implemented!')
|
|
52
|
-
|
|
53
|
-
def UpdateSecret(self, request, context):
|
|
54
|
-
"""Missing associated documentation comment in .proto file."""
|
|
55
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
56
|
-
context.set_details('Method not implemented!')
|
|
57
|
-
raise NotImplementedError('Method not implemented!')
|
|
58
|
-
|
|
59
|
-
def GetSecret(self, request, context):
|
|
60
|
-
"""Missing associated documentation comment in .proto file."""
|
|
61
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
62
|
-
context.set_details('Method not implemented!')
|
|
63
|
-
raise NotImplementedError('Method not implemented!')
|
|
64
|
-
|
|
65
|
-
def DeleteSecret(self, request, context):
|
|
66
|
-
"""Missing associated documentation comment in .proto file."""
|
|
67
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
68
|
-
context.set_details('Method not implemented!')
|
|
69
|
-
raise NotImplementedError('Method not implemented!')
|
|
70
|
-
|
|
71
|
-
def ListSecrets(self, request, context):
|
|
72
|
-
"""Missing associated documentation comment in .proto file."""
|
|
73
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
74
|
-
context.set_details('Method not implemented!')
|
|
75
|
-
raise NotImplementedError('Method not implemented!')
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
def add_SecretServiceServicer_to_server(servicer, server):
|
|
79
|
-
rpc_method_handlers = {
|
|
80
|
-
'CreateSecret': grpc.unary_unary_rpc_method_handler(
|
|
81
|
-
servicer.CreateSecret,
|
|
82
|
-
request_deserializer=secret_dot_payload__pb2.CreateSecretRequest.FromString,
|
|
83
|
-
response_serializer=secret_dot_payload__pb2.CreateSecretResponse.SerializeToString,
|
|
84
|
-
),
|
|
85
|
-
'UpdateSecret': grpc.unary_unary_rpc_method_handler(
|
|
86
|
-
servicer.UpdateSecret,
|
|
87
|
-
request_deserializer=secret_dot_payload__pb2.UpdateSecretRequest.FromString,
|
|
88
|
-
response_serializer=secret_dot_payload__pb2.UpdateSecretResponse.SerializeToString,
|
|
89
|
-
),
|
|
90
|
-
'GetSecret': grpc.unary_unary_rpc_method_handler(
|
|
91
|
-
servicer.GetSecret,
|
|
92
|
-
request_deserializer=secret_dot_payload__pb2.GetSecretRequest.FromString,
|
|
93
|
-
response_serializer=secret_dot_payload__pb2.GetSecretResponse.SerializeToString,
|
|
94
|
-
),
|
|
95
|
-
'DeleteSecret': grpc.unary_unary_rpc_method_handler(
|
|
96
|
-
servicer.DeleteSecret,
|
|
97
|
-
request_deserializer=secret_dot_payload__pb2.DeleteSecretRequest.FromString,
|
|
98
|
-
response_serializer=secret_dot_payload__pb2.DeleteSecretResponse.SerializeToString,
|
|
99
|
-
),
|
|
100
|
-
'ListSecrets': grpc.unary_unary_rpc_method_handler(
|
|
101
|
-
servicer.ListSecrets,
|
|
102
|
-
request_deserializer=secret_dot_payload__pb2.ListSecretsRequest.FromString,
|
|
103
|
-
response_serializer=secret_dot_payload__pb2.ListSecretsResponse.SerializeToString,
|
|
104
|
-
),
|
|
105
|
-
}
|
|
106
|
-
generic_handler = grpc.method_handlers_generic_handler(
|
|
107
|
-
'cloudidl.secret.SecretService', rpc_method_handlers)
|
|
108
|
-
server.add_generic_rpc_handlers((generic_handler,))
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
# This class is part of an EXPERIMENTAL API.
|
|
112
|
-
class SecretService(object):
|
|
113
|
-
"""Missing associated documentation comment in .proto file."""
|
|
114
|
-
|
|
115
|
-
@staticmethod
|
|
116
|
-
def CreateSecret(request,
|
|
117
|
-
target,
|
|
118
|
-
options=(),
|
|
119
|
-
channel_credentials=None,
|
|
120
|
-
call_credentials=None,
|
|
121
|
-
insecure=False,
|
|
122
|
-
compression=None,
|
|
123
|
-
wait_for_ready=None,
|
|
124
|
-
timeout=None,
|
|
125
|
-
metadata=None):
|
|
126
|
-
return grpc.experimental.unary_unary(request, target, '/cloudidl.secret.SecretService/CreateSecret',
|
|
127
|
-
secret_dot_payload__pb2.CreateSecretRequest.SerializeToString,
|
|
128
|
-
secret_dot_payload__pb2.CreateSecretResponse.FromString,
|
|
129
|
-
options, channel_credentials,
|
|
130
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
131
|
-
|
|
132
|
-
@staticmethod
|
|
133
|
-
def UpdateSecret(request,
|
|
134
|
-
target,
|
|
135
|
-
options=(),
|
|
136
|
-
channel_credentials=None,
|
|
137
|
-
call_credentials=None,
|
|
138
|
-
insecure=False,
|
|
139
|
-
compression=None,
|
|
140
|
-
wait_for_ready=None,
|
|
141
|
-
timeout=None,
|
|
142
|
-
metadata=None):
|
|
143
|
-
return grpc.experimental.unary_unary(request, target, '/cloudidl.secret.SecretService/UpdateSecret',
|
|
144
|
-
secret_dot_payload__pb2.UpdateSecretRequest.SerializeToString,
|
|
145
|
-
secret_dot_payload__pb2.UpdateSecretResponse.FromString,
|
|
146
|
-
options, channel_credentials,
|
|
147
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
148
|
-
|
|
149
|
-
@staticmethod
|
|
150
|
-
def GetSecret(request,
|
|
151
|
-
target,
|
|
152
|
-
options=(),
|
|
153
|
-
channel_credentials=None,
|
|
154
|
-
call_credentials=None,
|
|
155
|
-
insecure=False,
|
|
156
|
-
compression=None,
|
|
157
|
-
wait_for_ready=None,
|
|
158
|
-
timeout=None,
|
|
159
|
-
metadata=None):
|
|
160
|
-
return grpc.experimental.unary_unary(request, target, '/cloudidl.secret.SecretService/GetSecret',
|
|
161
|
-
secret_dot_payload__pb2.GetSecretRequest.SerializeToString,
|
|
162
|
-
secret_dot_payload__pb2.GetSecretResponse.FromString,
|
|
163
|
-
options, channel_credentials,
|
|
164
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
165
|
-
|
|
166
|
-
@staticmethod
|
|
167
|
-
def DeleteSecret(request,
|
|
168
|
-
target,
|
|
169
|
-
options=(),
|
|
170
|
-
channel_credentials=None,
|
|
171
|
-
call_credentials=None,
|
|
172
|
-
insecure=False,
|
|
173
|
-
compression=None,
|
|
174
|
-
wait_for_ready=None,
|
|
175
|
-
timeout=None,
|
|
176
|
-
metadata=None):
|
|
177
|
-
return grpc.experimental.unary_unary(request, target, '/cloudidl.secret.SecretService/DeleteSecret',
|
|
178
|
-
secret_dot_payload__pb2.DeleteSecretRequest.SerializeToString,
|
|
179
|
-
secret_dot_payload__pb2.DeleteSecretResponse.FromString,
|
|
180
|
-
options, channel_credentials,
|
|
181
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
182
|
-
|
|
183
|
-
@staticmethod
|
|
184
|
-
def ListSecrets(request,
|
|
185
|
-
target,
|
|
186
|
-
options=(),
|
|
187
|
-
channel_credentials=None,
|
|
188
|
-
call_credentials=None,
|
|
189
|
-
insecure=False,
|
|
190
|
-
compression=None,
|
|
191
|
-
wait_for_ready=None,
|
|
192
|
-
timeout=None,
|
|
193
|
-
metadata=None):
|
|
194
|
-
return grpc.experimental.unary_unary(request, target, '/cloudidl.secret.SecretService/ListSecrets',
|
|
195
|
-
secret_dot_payload__pb2.ListSecretsRequest.SerializeToString,
|
|
196
|
-
secret_dot_payload__pb2.ListSecretsResponse.FromString,
|
|
197
|
-
options, channel_credentials,
|
|
198
|
-
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# source: validate/validate.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.0
|
|
5
|
-
"""Generated protocol buffer code."""
|
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
-
from google.protobuf.internal import builder as _builder
|
|
10
|
-
# @@protoc_insertion_point(imports)
|
|
11
|
-
|
|
12
|
-
_sym_db = _symbol_database.Default()
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
|
|
16
|
-
from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2
|
|
17
|
-
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x17validate/validate.proto\x12\x08validate\x1a google/protobuf/descriptor.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x98\x07\n\nFieldRules\x12\'\n\x07message\x18\x11 \x01(\x0b\x32\x16.validate.MessageRules\x12%\n\x05\x66loat\x18\x01 \x01(\x0b\x32\x14.validate.FloatRulesH\x00\x12\'\n\x06\x64ouble\x18\x02 \x01(\x0b\x32\x15.validate.DoubleRulesH\x00\x12%\n\x05int32\x18\x03 \x01(\x0b\x32\x14.validate.Int32RulesH\x00\x12%\n\x05int64\x18\x04 \x01(\x0b\x32\x14.validate.Int64RulesH\x00\x12\'\n\x06uint32\x18\x05 \x01(\x0b\x32\x15.validate.UInt32RulesH\x00\x12\'\n\x06uint64\x18\x06 \x01(\x0b\x32\x15.validate.UInt64RulesH\x00\x12\'\n\x06sint32\x18\x07 \x01(\x0b\x32\x15.validate.SInt32RulesH\x00\x12\'\n\x06sint64\x18\x08 \x01(\x0b\x32\x15.validate.SInt64RulesH\x00\x12)\n\x07\x66ixed32\x18\t \x01(\x0b\x32\x16.validate.Fixed32RulesH\x00\x12)\n\x07\x66ixed64\x18\n \x01(\x0b\x32\x16.validate.Fixed64RulesH\x00\x12+\n\x08sfixed32\x18\x0b \x01(\x0b\x32\x17.validate.SFixed32RulesH\x00\x12+\n\x08sfixed64\x18\x0c \x01(\x0b\x32\x17.validate.SFixed64RulesH\x00\x12#\n\x04\x62ool\x18\r \x01(\x0b\x32\x13.validate.BoolRulesH\x00\x12\'\n\x06string\x18\x0e \x01(\x0b\x32\x15.validate.StringRulesH\x00\x12%\n\x05\x62ytes\x18\x0f \x01(\x0b\x32\x14.validate.BytesRulesH\x00\x12#\n\x04\x65num\x18\x10 \x01(\x0b\x32\x13.validate.EnumRulesH\x00\x12+\n\x08repeated\x18\x12 \x01(\x0b\x32\x17.validate.RepeatedRulesH\x00\x12!\n\x03map\x18\x13 \x01(\x0b\x32\x12.validate.MapRulesH\x00\x12!\n\x03\x61ny\x18\x14 \x01(\x0b\x32\x12.validate.AnyRulesH\x00\x12+\n\x08\x64uration\x18\x15 \x01(\x0b\x32\x17.validate.DurationRulesH\x00\x12-\n\ttimestamp\x18\x16 \x01(\x0b\x32\x18.validate.TimestampRulesH\x00\x42\x06\n\x04type\"\x7f\n\nFloatRules\x12\r\n\x05\x63onst\x18\x01 \x01(\x02\x12\n\n\x02lt\x18\x02 \x01(\x02\x12\x0b\n\x03lte\x18\x03 \x01(\x02\x12\n\n\x02gt\x18\x04 \x01(\x02\x12\x0b\n\x03gte\x18\x05 \x01(\x02\x12\n\n\x02in\x18\x06 \x03(\x02\x12\x0e\n\x06not_in\x18\x07 \x03(\x02\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x80\x01\n\x0b\x44oubleRules\x12\r\n\x05\x63onst\x18\x01 \x01(\x01\x12\n\n\x02lt\x18\x02 \x01(\x01\x12\x0b\n\x03lte\x18\x03 \x01(\x01\x12\n\n\x02gt\x18\x04 \x01(\x01\x12\x0b\n\x03gte\x18\x05 \x01(\x01\x12\n\n\x02in\x18\x06 \x03(\x01\x12\x0e\n\x06not_in\x18\x07 \x03(\x01\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x7f\n\nInt32Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\x05\x12\n\n\x02lt\x18\x02 \x01(\x05\x12\x0b\n\x03lte\x18\x03 \x01(\x05\x12\n\n\x02gt\x18\x04 \x01(\x05\x12\x0b\n\x03gte\x18\x05 \x01(\x05\x12\n\n\x02in\x18\x06 \x03(\x05\x12\x0e\n\x06not_in\x18\x07 \x03(\x05\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x7f\n\nInt64Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\x03\x12\n\n\x02lt\x18\x02 \x01(\x03\x12\x0b\n\x03lte\x18\x03 \x01(\x03\x12\n\n\x02gt\x18\x04 \x01(\x03\x12\x0b\n\x03gte\x18\x05 \x01(\x03\x12\n\n\x02in\x18\x06 \x03(\x03\x12\x0e\n\x06not_in\x18\x07 \x03(\x03\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x80\x01\n\x0bUInt32Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\r\x12\n\n\x02lt\x18\x02 \x01(\r\x12\x0b\n\x03lte\x18\x03 \x01(\r\x12\n\n\x02gt\x18\x04 \x01(\r\x12\x0b\n\x03gte\x18\x05 \x01(\r\x12\n\n\x02in\x18\x06 \x03(\r\x12\x0e\n\x06not_in\x18\x07 \x03(\r\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x80\x01\n\x0bUInt64Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\x04\x12\n\n\x02lt\x18\x02 \x01(\x04\x12\x0b\n\x03lte\x18\x03 \x01(\x04\x12\n\n\x02gt\x18\x04 \x01(\x04\x12\x0b\n\x03gte\x18\x05 \x01(\x04\x12\n\n\x02in\x18\x06 \x03(\x04\x12\x0e\n\x06not_in\x18\x07 \x03(\x04\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x80\x01\n\x0bSInt32Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\x11\x12\n\n\x02lt\x18\x02 \x01(\x11\x12\x0b\n\x03lte\x18\x03 \x01(\x11\x12\n\n\x02gt\x18\x04 \x01(\x11\x12\x0b\n\x03gte\x18\x05 \x01(\x11\x12\n\n\x02in\x18\x06 \x03(\x11\x12\x0e\n\x06not_in\x18\x07 \x03(\x11\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x80\x01\n\x0bSInt64Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\x12\x12\n\n\x02lt\x18\x02 \x01(\x12\x12\x0b\n\x03lte\x18\x03 \x01(\x12\x12\n\n\x02gt\x18\x04 \x01(\x12\x12\x0b\n\x03gte\x18\x05 \x01(\x12\x12\n\n\x02in\x18\x06 \x03(\x12\x12\x0e\n\x06not_in\x18\x07 \x03(\x12\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x81\x01\n\x0c\x46ixed32Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\x07\x12\n\n\x02lt\x18\x02 \x01(\x07\x12\x0b\n\x03lte\x18\x03 \x01(\x07\x12\n\n\x02gt\x18\x04 \x01(\x07\x12\x0b\n\x03gte\x18\x05 \x01(\x07\x12\n\n\x02in\x18\x06 \x03(\x07\x12\x0e\n\x06not_in\x18\x07 \x03(\x07\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x81\x01\n\x0c\x46ixed64Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\x06\x12\n\n\x02lt\x18\x02 \x01(\x06\x12\x0b\n\x03lte\x18\x03 \x01(\x06\x12\n\n\x02gt\x18\x04 \x01(\x06\x12\x0b\n\x03gte\x18\x05 \x01(\x06\x12\n\n\x02in\x18\x06 \x03(\x06\x12\x0e\n\x06not_in\x18\x07 \x03(\x06\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x82\x01\n\rSFixed32Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\x0f\x12\n\n\x02lt\x18\x02 \x01(\x0f\x12\x0b\n\x03lte\x18\x03 \x01(\x0f\x12\n\n\x02gt\x18\x04 \x01(\x0f\x12\x0b\n\x03gte\x18\x05 \x01(\x0f\x12\n\n\x02in\x18\x06 \x03(\x0f\x12\x0e\n\x06not_in\x18\x07 \x03(\x0f\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x82\x01\n\rSFixed64Rules\x12\r\n\x05\x63onst\x18\x01 \x01(\x10\x12\n\n\x02lt\x18\x02 \x01(\x10\x12\x0b\n\x03lte\x18\x03 \x01(\x10\x12\n\n\x02gt\x18\x04 \x01(\x10\x12\x0b\n\x03gte\x18\x05 \x01(\x10\x12\n\n\x02in\x18\x06 \x03(\x10\x12\x0e\n\x06not_in\x18\x07 \x03(\x10\x12\x14\n\x0cignore_empty\x18\x08 \x01(\x08\"\x1a\n\tBoolRules\x12\r\n\x05\x63onst\x18\x01 \x01(\x08\"\xfd\x03\n\x0bStringRules\x12\r\n\x05\x63onst\x18\x01 \x01(\t\x12\x0b\n\x03len\x18\x13 \x01(\x04\x12\x0f\n\x07min_len\x18\x02 \x01(\x04\x12\x0f\n\x07max_len\x18\x03 \x01(\x04\x12\x11\n\tlen_bytes\x18\x14 \x01(\x04\x12\x11\n\tmin_bytes\x18\x04 \x01(\x04\x12\x11\n\tmax_bytes\x18\x05 \x01(\x04\x12\x0f\n\x07pattern\x18\x06 \x01(\t\x12\x0e\n\x06prefix\x18\x07 \x01(\t\x12\x0e\n\x06suffix\x18\x08 \x01(\t\x12\x10\n\x08\x63ontains\x18\t \x01(\t\x12\x14\n\x0cnot_contains\x18\x17 \x01(\t\x12\n\n\x02in\x18\n \x03(\t\x12\x0e\n\x06not_in\x18\x0b \x03(\t\x12\x0f\n\x05\x65mail\x18\x0c \x01(\x08H\x00\x12\x12\n\x08hostname\x18\r \x01(\x08H\x00\x12\x0c\n\x02ip\x18\x0e \x01(\x08H\x00\x12\x0e\n\x04ipv4\x18\x0f \x01(\x08H\x00\x12\x0e\n\x04ipv6\x18\x10 \x01(\x08H\x00\x12\r\n\x03uri\x18\x11 \x01(\x08H\x00\x12\x11\n\x07uri_ref\x18\x12 \x01(\x08H\x00\x12\x11\n\x07\x61\x64\x64ress\x18\x15 \x01(\x08H\x00\x12\x0e\n\x04uuid\x18\x16 \x01(\x08H\x00\x12\x30\n\x10well_known_regex\x18\x18 \x01(\x0e\x32\x14.validate.KnownRegexH\x00\x12\x14\n\x06strict\x18\x19 \x01(\x08:\x04true\x12\x14\n\x0cignore_empty\x18\x1a \x01(\x08\x42\x0c\n\nwell_known\"\xfb\x01\n\nBytesRules\x12\r\n\x05\x63onst\x18\x01 \x01(\x0c\x12\x0b\n\x03len\x18\r \x01(\x04\x12\x0f\n\x07min_len\x18\x02 \x01(\x04\x12\x0f\n\x07max_len\x18\x03 \x01(\x04\x12\x0f\n\x07pattern\x18\x04 \x01(\t\x12\x0e\n\x06prefix\x18\x05 \x01(\x0c\x12\x0e\n\x06suffix\x18\x06 \x01(\x0c\x12\x10\n\x08\x63ontains\x18\x07 \x01(\x0c\x12\n\n\x02in\x18\x08 \x03(\x0c\x12\x0e\n\x06not_in\x18\t \x03(\x0c\x12\x0c\n\x02ip\x18\n \x01(\x08H\x00\x12\x0e\n\x04ipv4\x18\x0b \x01(\x08H\x00\x12\x0e\n\x04ipv6\x18\x0c \x01(\x08H\x00\x12\x14\n\x0cignore_empty\x18\x0e \x01(\x08\x42\x0c\n\nwell_known\"L\n\tEnumRules\x12\r\n\x05\x63onst\x18\x01 \x01(\x05\x12\x14\n\x0c\x64\x65\x66ined_only\x18\x02 \x01(\x08\x12\n\n\x02in\x18\x03 \x03(\x05\x12\x0e\n\x06not_in\x18\x04 \x03(\x05\".\n\x0cMessageRules\x12\x0c\n\x04skip\x18\x01 \x01(\x08\x12\x10\n\x08required\x18\x02 \x01(\x08\"\x80\x01\n\rRepeatedRules\x12\x11\n\tmin_items\x18\x01 \x01(\x04\x12\x11\n\tmax_items\x18\x02 \x01(\x04\x12\x0e\n\x06unique\x18\x03 \x01(\x08\x12#\n\x05items\x18\x04 \x01(\x0b\x32\x14.validate.FieldRules\x12\x14\n\x0cignore_empty\x18\x05 \x01(\x08\"\xa3\x01\n\x08MapRules\x12\x11\n\tmin_pairs\x18\x01 \x01(\x04\x12\x11\n\tmax_pairs\x18\x02 \x01(\x04\x12\x11\n\tno_sparse\x18\x03 \x01(\x08\x12\"\n\x04keys\x18\x04 \x01(\x0b\x32\x14.validate.FieldRules\x12$\n\x06values\x18\x05 \x01(\x0b\x32\x14.validate.FieldRules\x12\x14\n\x0cignore_empty\x18\x06 \x01(\x08\"8\n\x08\x41nyRules\x12\x10\n\x08required\x18\x01 \x01(\x08\x12\n\n\x02in\x18\x02 \x03(\t\x12\x0e\n\x06not_in\x18\x03 \x03(\t\"\xbb\x02\n\rDurationRules\x12\x10\n\x08required\x18\x01 \x01(\x08\x12(\n\x05\x63onst\x18\x02 \x01(\x0b\x32\x19.google.protobuf.Duration\x12%\n\x02lt\x18\x03 \x01(\x0b\x32\x19.google.protobuf.Duration\x12&\n\x03lte\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12%\n\x02gt\x18\x05 \x01(\x0b\x32\x19.google.protobuf.Duration\x12&\n\x03gte\x18\x06 \x01(\x0b\x32\x19.google.protobuf.Duration\x12%\n\x02in\x18\x07 \x03(\x0b\x32\x19.google.protobuf.Duration\x12)\n\x06not_in\x18\x08 \x03(\x0b\x32\x19.google.protobuf.Duration\"\xba\x02\n\x0eTimestampRules\x12\x10\n\x08required\x18\x01 \x01(\x08\x12)\n\x05\x63onst\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12&\n\x02lt\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\'\n\x03lte\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12&\n\x02gt\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\'\n\x03gte\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0e\n\x06lt_now\x18\x07 \x01(\x08\x12\x0e\n\x06gt_now\x18\x08 \x01(\x08\x12)\n\x06within\x18\t \x01(\x0b\x32\x19.google.protobuf.Duration*F\n\nKnownRegex\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x14\n\x10HTTP_HEADER_NAME\x10\x01\x12\x15\n\x11HTTP_HEADER_VALUE\x10\x02:2\n\x08\x64isabled\x12\x1f.google.protobuf.MessageOptions\x18\xaf\x08 \x01(\x08:1\n\x07ignored\x12\x1f.google.protobuf.MessageOptions\x18\xb0\x08 \x01(\x08:0\n\x08required\x12\x1d.google.protobuf.OneofOptions\x18\xaf\x08 \x01(\x08:C\n\x05rules\x12\x1d.google.protobuf.FieldOptions\x18\xaf\x08 \x01(\x0b\x32\x14.validate.FieldRulesBP\n\x1aio.envoyproxy.pgv.validateZ2github.com/envoyproxy/protoc-gen-validate/validate')
|
|
21
|
-
|
|
22
|
-
_globals = globals()
|
|
23
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
24
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'validate.validate_pb2', _globals)
|
|
25
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
26
|
-
_globals['DESCRIPTOR']._options = None
|
|
27
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032io.envoyproxy.pgv.validateZ2github.com/envoyproxy/protoc-gen-validate/validate'
|
|
28
|
-
_globals['_KNOWNREGEX']._serialized_start=4541
|
|
29
|
-
_globals['_KNOWNREGEX']._serialized_end=4611
|
|
30
|
-
_globals['_FIELDRULES']._serialized_start=137
|
|
31
|
-
_globals['_FIELDRULES']._serialized_end=1057
|
|
32
|
-
_globals['_FLOATRULES']._serialized_start=1059
|
|
33
|
-
_globals['_FLOATRULES']._serialized_end=1186
|
|
34
|
-
_globals['_DOUBLERULES']._serialized_start=1189
|
|
35
|
-
_globals['_DOUBLERULES']._serialized_end=1317
|
|
36
|
-
_globals['_INT32RULES']._serialized_start=1319
|
|
37
|
-
_globals['_INT32RULES']._serialized_end=1446
|
|
38
|
-
_globals['_INT64RULES']._serialized_start=1448
|
|
39
|
-
_globals['_INT64RULES']._serialized_end=1575
|
|
40
|
-
_globals['_UINT32RULES']._serialized_start=1578
|
|
41
|
-
_globals['_UINT32RULES']._serialized_end=1706
|
|
42
|
-
_globals['_UINT64RULES']._serialized_start=1709
|
|
43
|
-
_globals['_UINT64RULES']._serialized_end=1837
|
|
44
|
-
_globals['_SINT32RULES']._serialized_start=1840
|
|
45
|
-
_globals['_SINT32RULES']._serialized_end=1968
|
|
46
|
-
_globals['_SINT64RULES']._serialized_start=1971
|
|
47
|
-
_globals['_SINT64RULES']._serialized_end=2099
|
|
48
|
-
_globals['_FIXED32RULES']._serialized_start=2102
|
|
49
|
-
_globals['_FIXED32RULES']._serialized_end=2231
|
|
50
|
-
_globals['_FIXED64RULES']._serialized_start=2234
|
|
51
|
-
_globals['_FIXED64RULES']._serialized_end=2363
|
|
52
|
-
_globals['_SFIXED32RULES']._serialized_start=2366
|
|
53
|
-
_globals['_SFIXED32RULES']._serialized_end=2496
|
|
54
|
-
_globals['_SFIXED64RULES']._serialized_start=2499
|
|
55
|
-
_globals['_SFIXED64RULES']._serialized_end=2629
|
|
56
|
-
_globals['_BOOLRULES']._serialized_start=2631
|
|
57
|
-
_globals['_BOOLRULES']._serialized_end=2657
|
|
58
|
-
_globals['_STRINGRULES']._serialized_start=2660
|
|
59
|
-
_globals['_STRINGRULES']._serialized_end=3169
|
|
60
|
-
_globals['_BYTESRULES']._serialized_start=3172
|
|
61
|
-
_globals['_BYTESRULES']._serialized_end=3423
|
|
62
|
-
_globals['_ENUMRULES']._serialized_start=3425
|
|
63
|
-
_globals['_ENUMRULES']._serialized_end=3501
|
|
64
|
-
_globals['_MESSAGERULES']._serialized_start=3503
|
|
65
|
-
_globals['_MESSAGERULES']._serialized_end=3549
|
|
66
|
-
_globals['_REPEATEDRULES']._serialized_start=3552
|
|
67
|
-
_globals['_REPEATEDRULES']._serialized_end=3680
|
|
68
|
-
_globals['_MAPRULES']._serialized_start=3683
|
|
69
|
-
_globals['_MAPRULES']._serialized_end=3846
|
|
70
|
-
_globals['_ANYRULES']._serialized_start=3848
|
|
71
|
-
_globals['_ANYRULES']._serialized_end=3904
|
|
72
|
-
_globals['_DURATIONRULES']._serialized_start=3907
|
|
73
|
-
_globals['_DURATIONRULES']._serialized_end=4222
|
|
74
|
-
_globals['_TIMESTAMPRULES']._serialized_start=4225
|
|
75
|
-
_globals['_TIMESTAMPRULES']._serialized_end=4539
|
|
76
|
-
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# source: workflow/node_execution_service.proto
|
|
4
|
-
"""Generated protocol buffer code."""
|
|
5
|
-
from google.protobuf import descriptor as _descriptor
|
|
6
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
8
|
-
from google.protobuf.internal import builder as _builder
|
|
9
|
-
# @@protoc_insertion_point(imports)
|
|
10
|
-
|
|
11
|
-
_sym_db = _symbol_database.Default()
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%workflow/node_execution_service.proto\x12\x11\x63loudidl.workflow2\x16\n\x14NodeExecutionServiceB\xc6\x01\n\x15\x63om.cloudidl.workflowB\x19NodeExecutionServiceProtoH\x02P\x01Z+github.com/unionai/cloud/gen/pb-go/workflow\xa2\x02\x03\x43WX\xaa\x02\x11\x43loudidl.Workflow\xca\x02\x11\x43loudidl\\Workflow\xe2\x02\x1d\x43loudidl\\Workflow\\GPBMetadata\xea\x02\x12\x43loudidl::Workflowb\x06proto3')
|
|
17
|
-
|
|
18
|
-
_globals = globals()
|
|
19
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
20
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'workflow.node_execution_service_pb2', _globals)
|
|
21
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
-
DESCRIPTOR._options = None
|
|
23
|
-
DESCRIPTOR._serialized_options = b'\n\025com.cloudidl.workflowB\031NodeExecutionServiceProtoH\002P\001Z+github.com/unionai/cloud/gen/pb-go/workflow\242\002\003CWX\252\002\021Cloudidl.Workflow\312\002\021Cloudidl\\Workflow\342\002\035Cloudidl\\Workflow\\GPBMetadata\352\002\022Cloudidl::Workflow'
|
|
24
|
-
_globals['_NODEEXECUTIONSERVICE']._serialized_start=60
|
|
25
|
-
_globals['_NODEEXECUTIONSERVICE']._serialized_end=82
|
|
26
|
-
# @@protoc_insertion_point(module_scope)
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
-
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
-
import grpc
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class NodeExecutionServiceStub(object):
|
|
8
|
-
"""Missing associated documentation comment in .proto file."""
|
|
9
|
-
|
|
10
|
-
def __init__(self, channel):
|
|
11
|
-
"""Constructor.
|
|
12
|
-
|
|
13
|
-
Args:
|
|
14
|
-
channel: A grpc.Channel.
|
|
15
|
-
"""
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
class NodeExecutionServiceServicer(object):
|
|
19
|
-
"""Missing associated documentation comment in .proto file."""
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
def add_NodeExecutionServiceServicer_to_server(servicer, server):
|
|
23
|
-
rpc_method_handlers = {
|
|
24
|
-
}
|
|
25
|
-
generic_handler = grpc.method_handlers_generic_handler(
|
|
26
|
-
'cloudidl.workflow.NodeExecutionService', rpc_method_handlers)
|
|
27
|
-
server.add_generic_rpc_handlers((generic_handler,))
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# This class is part of an EXPERIMENTAL API.
|
|
31
|
-
class NodeExecutionService(object):
|
|
32
|
-
"""Missing associated documentation comment in .proto file."""
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# source: workflow/queue_service.proto
|
|
4
|
-
"""Generated protocol buffer code."""
|
|
5
|
-
from google.protobuf import descriptor as _descriptor
|
|
6
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
8
|
-
from google.protobuf.internal import builder as _builder
|
|
9
|
-
# @@protoc_insertion_point(imports)
|
|
10
|
-
|
|
11
|
-
_sym_db = _symbol_database.Default()
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
from union._protos.validate.validate import validate_pb2 as validate_dot_validate__pb2
|
|
15
|
-
from union._protos.workflow import run_definition_pb2 as workflow_dot_run__definition__pb2
|
|
16
|
-
from union._protos.workflow import task_definition_pb2 as workflow_dot_task__definition__pb2
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1cworkflow/queue_service.proto\x12\x11\x63loudidl.workflow\x1a\x17validate/validate.proto\x1a\x1dworkflow/run_definition.proto\x1a\x1eworkflow/task_definition.proto\"\xaa\x03\n\x14\x45nqueueActionRequest\x12J\n\taction_id\x18\x01 \x01(\x0b\x32#.cloudidl.workflow.ActionIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08\x61\x63tionId\x12\x31\n\x12parent_action_name\x18\x02 \x01(\tH\x00R\x10parentActionName\x88\x01\x01\x12:\n\x07task_id\x18\x04 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierR\x06taskId\x12\x42\n\ttask_spec\x18\x05 \x01(\x0b\x32\x1b.cloudidl.workflow.TaskSpecB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08taskSpec\x12$\n\tinput_uri\x18\x06 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x08inputUri\x12&\n\noutput_uri\x18\x07 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\toutputUri\x12\x14\n\x05group\x18\x08 \x01(\tR\x05group\x12\x18\n\x07subject\x18\t \x01(\tR\x07subjectB\x15\n\x13_parent_action_name\"\x17\n\x15\x45nqueueActionResponse\"f\n\x18\x41\x62ortQueuedActionRequest\x12J\n\taction_id\x18\x01 \x01(\x0b\x32#.cloudidl.workflow.ActionIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08\x61\x63tionId\"\x1b\n\x19\x41\x62ortQueuedActionResponse\"\xf3\x02\n\x10HeartbeatRequest\x12$\n\tworker_id\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x08workerId\x12&\n\ncluster_id\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\tclusterId\x12O\n\x11\x61\x63tive_action_ids\x18\x03 \x03(\x0b\x32#.cloudidl.workflow.ActionIdentifierR\x0f\x61\x63tiveActionIds\x12S\n\x13terminal_action_ids\x18\x04 \x03(\x0b\x32#.cloudidl.workflow.ActionIdentifierR\x11terminalActionIds\x12-\n\x0corganization\x18\x05 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01H\x00R\x0corganization\x12-\n\x12\x61vailable_capacity\x18\x06 \x01(\x05R\x11\x61vailableCapacityB\r\n\x06\x66ilter\x12\x03\xf8\x42\x01\"\xf6\x01\n\x11HeartbeatResponse\x12\x37\n\nnew_leases\x18\x01 \x03(\x0b\x32\x18.cloudidl.workflow.LeaseR\tnewLeases\x12Q\n\x12\x61\x62orted_action_ids\x18\x02 \x03(\x0b\x32#.cloudidl.workflow.ActionIdentifierR\x10\x61\x62ortedActionIds\x12U\n\x14\x66inalized_action_ids\x18\x03 \x03(\x0b\x32#.cloudidl.workflow.ActionIdentifierR\x12\x66inalizedActionIds\";\n\x13StreamLeasesRequest\x12$\n\tworker_id\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x08workerId\"H\n\x14StreamLeasesResponse\x12\x30\n\x06leases\x18\x01 \x03(\x0b\x32\x18.cloudidl.workflow.LeaseR\x06leases\"\xc2\x03\n\x05Lease\x12J\n\taction_id\x18\x01 \x01(\x0b\x32#.cloudidl.workflow.ActionIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08\x61\x63tionId\x12\x31\n\x12parent_action_name\x18\x02 \x01(\tH\x00R\x10parentActionName\x88\x01\x01\x12\x44\n\x07task_id\x18\x04 \x01(\x0b\x32!.cloudidl.workflow.TaskIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x06taskId\x12\x38\n\ttask_spec\x18\x05 \x01(\x0b\x32\x1b.cloudidl.workflow.TaskSpecR\x08taskSpec\x12$\n\tinput_uri\x18\x06 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x08inputUri\x12&\n\noutput_uri\x18\x07 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\toutputUri\x12\x14\n\x05group\x18\x08 \x01(\tR\x05group\x12\x18\n\x07subject\x18\t \x01(\tR\x07subject\x12%\n\x0eprevious_state\x18\n \x01(\tR\rpreviousStateB\x15\n\x13_parent_action_name2\xa9\x03\n\x0cQueueService\x12\x64\n\rEnqueueAction\x12\'.cloudidl.workflow.EnqueueActionRequest\x1a(.cloudidl.workflow.EnqueueActionResponse\"\x00\x12p\n\x11\x41\x62ortQueuedAction\x12+.cloudidl.workflow.AbortQueuedActionRequest\x1a,.cloudidl.workflow.AbortQueuedActionResponse\"\x00\x12\\\n\tHeartbeat\x12#.cloudidl.workflow.HeartbeatRequest\x1a$.cloudidl.workflow.HeartbeatResponse\"\x00(\x01\x30\x01\x12\x63\n\x0cStreamLeases\x12&.cloudidl.workflow.StreamLeasesRequest\x1a\'.cloudidl.workflow.StreamLeasesResponse\"\x00\x30\x01\x42\xbe\x01\n\x15\x63om.cloudidl.workflowB\x11QueueServiceProtoH\x02P\x01Z+github.com/unionai/cloud/gen/pb-go/workflow\xa2\x02\x03\x43WX\xaa\x02\x11\x43loudidl.Workflow\xca\x02\x11\x43loudidl\\Workflow\xe2\x02\x1d\x43loudidl\\Workflow\\GPBMetadata\xea\x02\x12\x43loudidl::Workflowb\x06proto3')
|
|
20
|
-
|
|
21
|
-
_globals = globals()
|
|
22
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
23
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'workflow.queue_service_pb2', _globals)
|
|
24
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
25
|
-
DESCRIPTOR._options = None
|
|
26
|
-
DESCRIPTOR._serialized_options = b'\n\025com.cloudidl.workflowB\021QueueServiceProtoH\002P\001Z+github.com/unionai/cloud/gen/pb-go/workflow\242\002\003CWX\252\002\021Cloudidl.Workflow\312\002\021Cloudidl\\Workflow\342\002\035Cloudidl\\Workflow\\GPBMetadata\352\002\022Cloudidl::Workflow'
|
|
27
|
-
_ENQUEUEACTIONREQUEST.fields_by_name['action_id']._options = None
|
|
28
|
-
_ENQUEUEACTIONREQUEST.fields_by_name['action_id']._serialized_options = b'\372B\005\212\001\002\020\001'
|
|
29
|
-
_ENQUEUEACTIONREQUEST.fields_by_name['task_spec']._options = None
|
|
30
|
-
_ENQUEUEACTIONREQUEST.fields_by_name['task_spec']._serialized_options = b'\372B\005\212\001\002\020\001'
|
|
31
|
-
_ENQUEUEACTIONREQUEST.fields_by_name['input_uri']._options = None
|
|
32
|
-
_ENQUEUEACTIONREQUEST.fields_by_name['input_uri']._serialized_options = b'\372B\004r\002\020\001'
|
|
33
|
-
_ENQUEUEACTIONREQUEST.fields_by_name['output_uri']._options = None
|
|
34
|
-
_ENQUEUEACTIONREQUEST.fields_by_name['output_uri']._serialized_options = b'\372B\004r\002\020\001'
|
|
35
|
-
_ABORTQUEUEDACTIONREQUEST.fields_by_name['action_id']._options = None
|
|
36
|
-
_ABORTQUEUEDACTIONREQUEST.fields_by_name['action_id']._serialized_options = b'\372B\005\212\001\002\020\001'
|
|
37
|
-
_HEARTBEATREQUEST.oneofs_by_name['filter']._options = None
|
|
38
|
-
_HEARTBEATREQUEST.oneofs_by_name['filter']._serialized_options = b'\370B\001'
|
|
39
|
-
_HEARTBEATREQUEST.fields_by_name['worker_id']._options = None
|
|
40
|
-
_HEARTBEATREQUEST.fields_by_name['worker_id']._serialized_options = b'\372B\004r\002\020\001'
|
|
41
|
-
_HEARTBEATREQUEST.fields_by_name['cluster_id']._options = None
|
|
42
|
-
_HEARTBEATREQUEST.fields_by_name['cluster_id']._serialized_options = b'\372B\004r\002\020\001'
|
|
43
|
-
_HEARTBEATREQUEST.fields_by_name['organization']._options = None
|
|
44
|
-
_HEARTBEATREQUEST.fields_by_name['organization']._serialized_options = b'\372B\004r\002\020\001'
|
|
45
|
-
_STREAMLEASESREQUEST.fields_by_name['worker_id']._options = None
|
|
46
|
-
_STREAMLEASESREQUEST.fields_by_name['worker_id']._serialized_options = b'\372B\004r\002\020\001'
|
|
47
|
-
_LEASE.fields_by_name['action_id']._options = None
|
|
48
|
-
_LEASE.fields_by_name['action_id']._serialized_options = b'\372B\005\212\001\002\020\001'
|
|
49
|
-
_LEASE.fields_by_name['task_id']._options = None
|
|
50
|
-
_LEASE.fields_by_name['task_id']._serialized_options = b'\372B\005\212\001\002\020\001'
|
|
51
|
-
_LEASE.fields_by_name['input_uri']._options = None
|
|
52
|
-
_LEASE.fields_by_name['input_uri']._serialized_options = b'\372B\004r\002\020\001'
|
|
53
|
-
_LEASE.fields_by_name['output_uri']._options = None
|
|
54
|
-
_LEASE.fields_by_name['output_uri']._serialized_options = b'\372B\004r\002\020\001'
|
|
55
|
-
_globals['_ENQUEUEACTIONREQUEST']._serialized_start=140
|
|
56
|
-
_globals['_ENQUEUEACTIONREQUEST']._serialized_end=566
|
|
57
|
-
_globals['_ENQUEUEACTIONRESPONSE']._serialized_start=568
|
|
58
|
-
_globals['_ENQUEUEACTIONRESPONSE']._serialized_end=591
|
|
59
|
-
_globals['_ABORTQUEUEDACTIONREQUEST']._serialized_start=593
|
|
60
|
-
_globals['_ABORTQUEUEDACTIONREQUEST']._serialized_end=695
|
|
61
|
-
_globals['_ABORTQUEUEDACTIONRESPONSE']._serialized_start=697
|
|
62
|
-
_globals['_ABORTQUEUEDACTIONRESPONSE']._serialized_end=724
|
|
63
|
-
_globals['_HEARTBEATREQUEST']._serialized_start=727
|
|
64
|
-
_globals['_HEARTBEATREQUEST']._serialized_end=1098
|
|
65
|
-
_globals['_HEARTBEATRESPONSE']._serialized_start=1101
|
|
66
|
-
_globals['_HEARTBEATRESPONSE']._serialized_end=1347
|
|
67
|
-
_globals['_STREAMLEASESREQUEST']._serialized_start=1349
|
|
68
|
-
_globals['_STREAMLEASESREQUEST']._serialized_end=1408
|
|
69
|
-
_globals['_STREAMLEASESRESPONSE']._serialized_start=1410
|
|
70
|
-
_globals['_STREAMLEASESRESPONSE']._serialized_end=1482
|
|
71
|
-
_globals['_LEASE']._serialized_start=1485
|
|
72
|
-
_globals['_LEASE']._serialized_end=1935
|
|
73
|
-
_globals['_QUEUESERVICE']._serialized_start=1938
|
|
74
|
-
_globals['_QUEUESERVICE']._serialized_end=2363
|
|
75
|
-
# @@protoc_insertion_point(module_scope)
|