modal 1.1.5.dev85__py3-none-any.whl → 1.1.5.dev87__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 modal might be problematic. Click here for more details.
- modal/client.pyi +2 -2
- {modal-1.1.5.dev85.dist-info → modal-1.1.5.dev87.dist-info}/METADATA +1 -1
- {modal-1.1.5.dev85.dist-info → modal-1.1.5.dev87.dist-info}/RECORD +21 -22
- modal_proto/api.proto +15 -0
- modal_proto/api_grpc.py +16 -0
- modal_proto/api_pb2.py +201 -181
- modal_proto/api_pb2.pyi +38 -0
- modal_proto/api_pb2_grpc.py +33 -0
- modal_proto/api_pb2_grpc.pyi +10 -0
- modal_proto/modal_api_grpc.py +1 -0
- modal_proto/task_command_router.proto +144 -0
- modal_proto/task_command_router_grpc.py +105 -0
- modal_proto/task_command_router_pb2.py +149 -0
- modal_proto/task_command_router_pb2.pyi +333 -0
- modal_proto/task_command_router_pb2_grpc.py +203 -0
- modal_proto/task_command_router_pb2_grpc.pyi +75 -0
- modal_version/__init__.py +1 -1
- modal_proto/modal_options_grpc.py +0 -3
- modal_proto/options.proto +0 -19
- modal_proto/options_grpc.py +0 -3
- modal_proto/options_pb2.py +0 -35
- modal_proto/options_pb2.pyi +0 -20
- modal_proto/options_pb2_grpc.py +0 -4
- modal_proto/options_pb2_grpc.pyi +0 -7
- {modal-1.1.5.dev85.dist-info → modal-1.1.5.dev87.dist-info}/WHEEL +0 -0
- {modal-1.1.5.dev85.dist-info → modal-1.1.5.dev87.dist-info}/entry_points.txt +0 -0
- {modal-1.1.5.dev85.dist-info → modal-1.1.5.dev87.dist-info}/licenses/LICENSE +0 -0
- {modal-1.1.5.dev85.dist-info → modal-1.1.5.dev87.dist-info}/top_level.txt +0 -0
modal_proto/options_pb2.py
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# source: modal_proto/options.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 message as _message
|
|
8
|
-
from google.protobuf import reflection as _reflection
|
|
9
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
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
|
-
|
|
17
|
-
|
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19modal_proto/options.proto\x12\rmodal.options\x1a google/protobuf/descriptor.proto:=\n\x11\x61udit_target_attr\x12\x1d.google.protobuf.FieldOptions\x18\xd0\x86\x03 \x01(\x08\x88\x01\x01:=\n\x10\x61udit_event_name\x12\x1e.google.protobuf.MethodOptions\x18\xd0\x86\x03 \x01(\t\x88\x01\x01:D\n\x17\x61udit_event_description\x12\x1e.google.protobuf.MethodOptions\x18\xd1\x86\x03 \x01(\t\x88\x01\x01\x42&Z$github.com/modal-labs/modal/go/protob\x06proto3')
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
AUDIT_TARGET_ATTR_FIELD_NUMBER = 50000
|
|
22
|
-
audit_target_attr = DESCRIPTOR.extensions_by_name['audit_target_attr']
|
|
23
|
-
AUDIT_EVENT_NAME_FIELD_NUMBER = 50000
|
|
24
|
-
audit_event_name = DESCRIPTOR.extensions_by_name['audit_event_name']
|
|
25
|
-
AUDIT_EVENT_DESCRIPTION_FIELD_NUMBER = 50001
|
|
26
|
-
audit_event_description = DESCRIPTOR.extensions_by_name['audit_event_description']
|
|
27
|
-
|
|
28
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
29
|
-
google_dot_protobuf_dot_descriptor__pb2.FieldOptions.RegisterExtension(audit_target_attr)
|
|
30
|
-
google_dot_protobuf_dot_descriptor__pb2.MethodOptions.RegisterExtension(audit_event_name)
|
|
31
|
-
google_dot_protobuf_dot_descriptor__pb2.MethodOptions.RegisterExtension(audit_event_description)
|
|
32
|
-
|
|
33
|
-
DESCRIPTOR._options = None
|
|
34
|
-
DESCRIPTOR._serialized_options = b'Z$github.com/modal-labs/modal/go/proto'
|
|
35
|
-
# @@protoc_insertion_point(module_scope)
|
modal_proto/options_pb2.pyi
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
-
isort:skip_file
|
|
4
|
-
Defines custom options used internally at Modal.
|
|
5
|
-
Custom options must be in the range 50000-99999.
|
|
6
|
-
Reference: https://protobuf.dev/programming-guides/proto2/#customoptions
|
|
7
|
-
"""
|
|
8
|
-
import builtins
|
|
9
|
-
import google.protobuf.descriptor
|
|
10
|
-
import google.protobuf.descriptor_pb2
|
|
11
|
-
import google.protobuf.internal.extension_dict
|
|
12
|
-
|
|
13
|
-
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
|
14
|
-
|
|
15
|
-
AUDIT_TARGET_ATTR_FIELD_NUMBER: builtins.int
|
|
16
|
-
AUDIT_EVENT_NAME_FIELD_NUMBER: builtins.int
|
|
17
|
-
AUDIT_EVENT_DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
18
|
-
audit_target_attr: google.protobuf.internal.extension_dict._ExtensionFieldDescriptor[google.protobuf.descriptor_pb2.FieldOptions, builtins.bool]
|
|
19
|
-
audit_event_name: google.protobuf.internal.extension_dict._ExtensionFieldDescriptor[google.protobuf.descriptor_pb2.MethodOptions, builtins.str]
|
|
20
|
-
audit_event_description: google.protobuf.internal.extension_dict._ExtensionFieldDescriptor[google.protobuf.descriptor_pb2.MethodOptions, builtins.str]
|
modal_proto/options_pb2_grpc.py
DELETED
modal_proto/options_pb2_grpc.pyi
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|