flyte 2.0.0b23__py3-none-any.whl → 2.0.0b25__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.

Files changed (162) hide show
  1. flyte/__init__.py +11 -2
  2. flyte/_cache/local_cache.py +4 -3
  3. flyte/_code_bundle/_utils.py +3 -3
  4. flyte/_code_bundle/bundle.py +12 -5
  5. flyte/_context.py +4 -1
  6. flyte/_custom_context.py +73 -0
  7. flyte/_deploy.py +31 -7
  8. flyte/_image.py +48 -16
  9. flyte/_initialize.py +69 -26
  10. flyte/_internal/controllers/_local_controller.py +1 -0
  11. flyte/_internal/controllers/_trace.py +1 -1
  12. flyte/_internal/controllers/remote/_action.py +9 -10
  13. flyte/_internal/controllers/remote/_client.py +1 -1
  14. flyte/_internal/controllers/remote/_controller.py +4 -2
  15. flyte/_internal/controllers/remote/_core.py +10 -13
  16. flyte/_internal/controllers/remote/_informer.py +3 -3
  17. flyte/_internal/controllers/remote/_service_protocol.py +7 -7
  18. flyte/_internal/imagebuild/docker_builder.py +45 -59
  19. flyte/_internal/imagebuild/remote_builder.py +51 -11
  20. flyte/_internal/imagebuild/utils.py +51 -3
  21. flyte/_internal/runtime/convert.py +39 -18
  22. flyte/_internal/runtime/io.py +8 -7
  23. flyte/_internal/runtime/resources_serde.py +20 -6
  24. flyte/_internal/runtime/reuse.py +1 -1
  25. flyte/_internal/runtime/task_serde.py +7 -10
  26. flyte/_internal/runtime/taskrunner.py +10 -1
  27. flyte/_internal/runtime/trigger_serde.py +13 -13
  28. flyte/_internal/runtime/types_serde.py +1 -1
  29. flyte/_keyring/file.py +2 -2
  30. flyte/_map.py +65 -13
  31. flyte/_pod.py +2 -2
  32. flyte/_resources.py +175 -31
  33. flyte/_run.py +37 -21
  34. flyte/_task.py +27 -6
  35. flyte/_task_environment.py +37 -10
  36. flyte/_utils/module_loader.py +2 -2
  37. flyte/_version.py +3 -3
  38. flyte/cli/_common.py +47 -5
  39. flyte/cli/_create.py +4 -0
  40. flyte/cli/_deploy.py +8 -0
  41. flyte/cli/_get.py +4 -0
  42. flyte/cli/_params.py +4 -4
  43. flyte/cli/_run.py +50 -7
  44. flyte/cli/_update.py +4 -3
  45. flyte/config/_config.py +2 -0
  46. flyte/config/_internal.py +1 -0
  47. flyte/config/_reader.py +3 -3
  48. flyte/errors.py +1 -1
  49. flyte/extend.py +4 -0
  50. flyte/extras/_container.py +6 -1
  51. flyte/git/_config.py +11 -9
  52. flyte/io/_dataframe/basic_dfs.py +1 -1
  53. flyte/io/_dataframe/dataframe.py +12 -8
  54. flyte/io/_dir.py +48 -15
  55. flyte/io/_file.py +48 -11
  56. flyte/models.py +12 -8
  57. flyte/remote/_action.py +18 -16
  58. flyte/remote/_client/_protocols.py +4 -3
  59. flyte/remote/_client/auth/_channel.py +1 -1
  60. flyte/remote/_client/controlplane.py +4 -8
  61. flyte/remote/_data.py +4 -3
  62. flyte/remote/_logs.py +3 -3
  63. flyte/remote/_run.py +5 -5
  64. flyte/remote/_secret.py +20 -13
  65. flyte/remote/_task.py +7 -8
  66. flyte/remote/_trigger.py +25 -27
  67. flyte/storage/_parallel_reader.py +274 -0
  68. flyte/storage/_storage.py +66 -2
  69. flyte/types/_interface.py +2 -2
  70. flyte/types/_pickle.py +1 -1
  71. flyte/types/_string_literals.py +8 -9
  72. flyte/types/_type_engine.py +25 -17
  73. flyte/types/_utils.py +1 -1
  74. {flyte-2.0.0b23.dist-info → flyte-2.0.0b25.dist-info}/METADATA +2 -1
  75. flyte-2.0.0b25.dist-info/RECORD +184 -0
  76. flyte/_protos/__init__.py +0 -0
  77. flyte/_protos/common/authorization_pb2.py +0 -66
  78. flyte/_protos/common/authorization_pb2.pyi +0 -108
  79. flyte/_protos/common/authorization_pb2_grpc.py +0 -4
  80. flyte/_protos/common/identifier_pb2.py +0 -117
  81. flyte/_protos/common/identifier_pb2.pyi +0 -142
  82. flyte/_protos/common/identifier_pb2_grpc.py +0 -4
  83. flyte/_protos/common/identity_pb2.py +0 -48
  84. flyte/_protos/common/identity_pb2.pyi +0 -72
  85. flyte/_protos/common/identity_pb2_grpc.py +0 -4
  86. flyte/_protos/common/list_pb2.py +0 -36
  87. flyte/_protos/common/list_pb2.pyi +0 -71
  88. flyte/_protos/common/list_pb2_grpc.py +0 -4
  89. flyte/_protos/common/policy_pb2.py +0 -37
  90. flyte/_protos/common/policy_pb2.pyi +0 -27
  91. flyte/_protos/common/policy_pb2_grpc.py +0 -4
  92. flyte/_protos/common/role_pb2.py +0 -37
  93. flyte/_protos/common/role_pb2.pyi +0 -53
  94. flyte/_protos/common/role_pb2_grpc.py +0 -4
  95. flyte/_protos/common/runtime_version_pb2.py +0 -28
  96. flyte/_protos/common/runtime_version_pb2.pyi +0 -24
  97. flyte/_protos/common/runtime_version_pb2_grpc.py +0 -4
  98. flyte/_protos/imagebuilder/definition_pb2.py +0 -60
  99. flyte/_protos/imagebuilder/definition_pb2.pyi +0 -153
  100. flyte/_protos/imagebuilder/definition_pb2_grpc.py +0 -4
  101. flyte/_protos/imagebuilder/payload_pb2.py +0 -32
  102. flyte/_protos/imagebuilder/payload_pb2.pyi +0 -21
  103. flyte/_protos/imagebuilder/payload_pb2_grpc.py +0 -4
  104. flyte/_protos/imagebuilder/service_pb2.py +0 -29
  105. flyte/_protos/imagebuilder/service_pb2.pyi +0 -5
  106. flyte/_protos/imagebuilder/service_pb2_grpc.py +0 -66
  107. flyte/_protos/logs/dataplane/payload_pb2.py +0 -100
  108. flyte/_protos/logs/dataplane/payload_pb2.pyi +0 -177
  109. flyte/_protos/logs/dataplane/payload_pb2_grpc.py +0 -4
  110. flyte/_protos/secret/definition_pb2.py +0 -49
  111. flyte/_protos/secret/definition_pb2.pyi +0 -93
  112. flyte/_protos/secret/definition_pb2_grpc.py +0 -4
  113. flyte/_protos/secret/payload_pb2.py +0 -62
  114. flyte/_protos/secret/payload_pb2.pyi +0 -94
  115. flyte/_protos/secret/payload_pb2_grpc.py +0 -4
  116. flyte/_protos/secret/secret_pb2.py +0 -38
  117. flyte/_protos/secret/secret_pb2.pyi +0 -6
  118. flyte/_protos/secret/secret_pb2_grpc.py +0 -198
  119. flyte/_protos/validate/validate/validate_pb2.py +0 -76
  120. flyte/_protos/workflow/common_pb2.py +0 -38
  121. flyte/_protos/workflow/common_pb2.pyi +0 -63
  122. flyte/_protos/workflow/common_pb2_grpc.py +0 -4
  123. flyte/_protos/workflow/environment_pb2.py +0 -29
  124. flyte/_protos/workflow/environment_pb2.pyi +0 -12
  125. flyte/_protos/workflow/environment_pb2_grpc.py +0 -4
  126. flyte/_protos/workflow/node_execution_service_pb2.py +0 -26
  127. flyte/_protos/workflow/node_execution_service_pb2.pyi +0 -4
  128. flyte/_protos/workflow/node_execution_service_pb2_grpc.py +0 -32
  129. flyte/_protos/workflow/queue_service_pb2.py +0 -117
  130. flyte/_protos/workflow/queue_service_pb2.pyi +0 -182
  131. flyte/_protos/workflow/queue_service_pb2_grpc.py +0 -206
  132. flyte/_protos/workflow/run_definition_pb2.py +0 -123
  133. flyte/_protos/workflow/run_definition_pb2.pyi +0 -354
  134. flyte/_protos/workflow/run_definition_pb2_grpc.py +0 -4
  135. flyte/_protos/workflow/run_logs_service_pb2.py +0 -41
  136. flyte/_protos/workflow/run_logs_service_pb2.pyi +0 -28
  137. flyte/_protos/workflow/run_logs_service_pb2_grpc.py +0 -69
  138. flyte/_protos/workflow/run_service_pb2.py +0 -147
  139. flyte/_protos/workflow/run_service_pb2.pyi +0 -203
  140. flyte/_protos/workflow/run_service_pb2_grpc.py +0 -480
  141. flyte/_protos/workflow/state_service_pb2.py +0 -67
  142. flyte/_protos/workflow/state_service_pb2.pyi +0 -76
  143. flyte/_protos/workflow/state_service_pb2_grpc.py +0 -138
  144. flyte/_protos/workflow/task_definition_pb2.py +0 -86
  145. flyte/_protos/workflow/task_definition_pb2.pyi +0 -105
  146. flyte/_protos/workflow/task_definition_pb2_grpc.py +0 -4
  147. flyte/_protos/workflow/task_service_pb2.py +0 -61
  148. flyte/_protos/workflow/task_service_pb2.pyi +0 -62
  149. flyte/_protos/workflow/task_service_pb2_grpc.py +0 -138
  150. flyte/_protos/workflow/trigger_definition_pb2.py +0 -66
  151. flyte/_protos/workflow/trigger_definition_pb2.pyi +0 -117
  152. flyte/_protos/workflow/trigger_definition_pb2_grpc.py +0 -4
  153. flyte/_protos/workflow/trigger_service_pb2.py +0 -96
  154. flyte/_protos/workflow/trigger_service_pb2.pyi +0 -110
  155. flyte/_protos/workflow/trigger_service_pb2_grpc.py +0 -281
  156. flyte-2.0.0b23.dist-info/RECORD +0 -262
  157. {flyte-2.0.0b23.data → flyte-2.0.0b25.data}/scripts/debug.py +0 -0
  158. {flyte-2.0.0b23.data → flyte-2.0.0b25.data}/scripts/runtime.py +0 -0
  159. {flyte-2.0.0b23.dist-info → flyte-2.0.0b25.dist-info}/WHEEL +0 -0
  160. {flyte-2.0.0b23.dist-info → flyte-2.0.0b25.dist-info}/entry_points.txt +0 -0
  161. {flyte-2.0.0b23.dist-info → flyte-2.0.0b25.dist-info}/licenses/LICENSE +0 -0
  162. {flyte-2.0.0b23.dist-info → flyte-2.0.0b25.dist-info}/top_level.txt +0 -0
@@ -1,281 +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 flyte._protos.workflow import trigger_service_pb2 as workflow_dot_trigger__service__pb2
6
-
7
-
8
- class TriggerServiceStub(object):
9
- """TriggerService provides an interface for managing triggers.
10
- """
11
-
12
- def __init__(self, channel):
13
- """Constructor.
14
-
15
- Args:
16
- channel: A grpc.Channel.
17
- """
18
- self.DeployTrigger = channel.unary_unary(
19
- '/cloudidl.workflow.TriggerService/DeployTrigger',
20
- request_serializer=workflow_dot_trigger__service__pb2.DeployTriggerRequest.SerializeToString,
21
- response_deserializer=workflow_dot_trigger__service__pb2.DeployTriggerResponse.FromString,
22
- )
23
- self.GetTriggerDetails = channel.unary_unary(
24
- '/cloudidl.workflow.TriggerService/GetTriggerDetails',
25
- request_serializer=workflow_dot_trigger__service__pb2.GetTriggerDetailsRequest.SerializeToString,
26
- response_deserializer=workflow_dot_trigger__service__pb2.GetTriggerDetailsResponse.FromString,
27
- )
28
- self.GetTriggerRevisionDetails = channel.unary_unary(
29
- '/cloudidl.workflow.TriggerService/GetTriggerRevisionDetails',
30
- request_serializer=workflow_dot_trigger__service__pb2.GetTriggerRevisionDetailsRequest.SerializeToString,
31
- response_deserializer=workflow_dot_trigger__service__pb2.GetTriggerRevisionDetailsResponse.FromString,
32
- )
33
- self.ListTriggers = channel.unary_unary(
34
- '/cloudidl.workflow.TriggerService/ListTriggers',
35
- request_serializer=workflow_dot_trigger__service__pb2.ListTriggersRequest.SerializeToString,
36
- response_deserializer=workflow_dot_trigger__service__pb2.ListTriggersResponse.FromString,
37
- )
38
- self.GetTriggerRevisionHistory = channel.unary_unary(
39
- '/cloudidl.workflow.TriggerService/GetTriggerRevisionHistory',
40
- request_serializer=workflow_dot_trigger__service__pb2.GetTriggerRevisionHistoryRequest.SerializeToString,
41
- response_deserializer=workflow_dot_trigger__service__pb2.GetTriggerRevisionHistoryResponse.FromString,
42
- )
43
- self.UpdateTriggers = channel.unary_unary(
44
- '/cloudidl.workflow.TriggerService/UpdateTriggers',
45
- request_serializer=workflow_dot_trigger__service__pb2.UpdateTriggersRequest.SerializeToString,
46
- response_deserializer=workflow_dot_trigger__service__pb2.UpdateTriggersResponse.FromString,
47
- )
48
- self.DeleteTriggers = channel.unary_unary(
49
- '/cloudidl.workflow.TriggerService/DeleteTriggers',
50
- request_serializer=workflow_dot_trigger__service__pb2.DeleteTriggersRequest.SerializeToString,
51
- response_deserializer=workflow_dot_trigger__service__pb2.DeleteTriggersResponse.FromString,
52
- )
53
-
54
-
55
- class TriggerServiceServicer(object):
56
- """TriggerService provides an interface for managing triggers.
57
- """
58
-
59
- def DeployTrigger(self, request, context):
60
- """Create if trigger didn't exist previously.
61
- Update if it already exists.
62
- Re-create(or undelete) if it was soft-deleted.
63
- Client must fetch the latest trigger in order to obtain the latest `trigger.id.revision`.
64
- If trigger is not found, client can set `trigger.id.revision` to 1, it is ignored and set automatically by backend.
65
- If trigger is found, client should set `trigger.id.revision` to the <latest>.
66
- Backend validates that version is the latest and creates a new revision of the trigger.
67
- Otherwise, operation is rejected(optimistic locking) and client must re-fetch trigger again.
68
- """
69
- context.set_code(grpc.StatusCode.UNIMPLEMENTED)
70
- context.set_details('Method not implemented!')
71
- raise NotImplementedError('Method not implemented!')
72
-
73
- def GetTriggerDetails(self, request, context):
74
- """Get detailed info about the latest trigger revision
75
- """
76
- context.set_code(grpc.StatusCode.UNIMPLEMENTED)
77
- context.set_details('Method not implemented!')
78
- raise NotImplementedError('Method not implemented!')
79
-
80
- def GetTriggerRevisionDetails(self, request, context):
81
- """Get detailed info about a specific trigger revision
82
- """
83
- context.set_code(grpc.StatusCode.UNIMPLEMENTED)
84
- context.set_details('Method not implemented!')
85
- raise NotImplementedError('Method not implemented!')
86
-
87
- def ListTriggers(self, request, context):
88
- """List basic info about triggers based on various filtering and sorting rules.
89
- """
90
- context.set_code(grpc.StatusCode.UNIMPLEMENTED)
91
- context.set_details('Method not implemented!')
92
- raise NotImplementedError('Method not implemented!')
93
-
94
- def GetTriggerRevisionHistory(self, request, context):
95
- """GetTriggerRevisionHistory returns all revisions for a given trigger
96
- """
97
- context.set_code(grpc.StatusCode.UNIMPLEMENTED)
98
- context.set_details('Method not implemented!')
99
- raise NotImplementedError('Method not implemented!')
100
-
101
- def UpdateTriggers(self, request, context):
102
- """Update some trigger spec fields for multiple triggers at once
103
- """
104
- context.set_code(grpc.StatusCode.UNIMPLEMENTED)
105
- context.set_details('Method not implemented!')
106
- raise NotImplementedError('Method not implemented!')
107
-
108
- def DeleteTriggers(self, request, context):
109
- """Soft-delete multiple triggers at once.
110
- """
111
- context.set_code(grpc.StatusCode.UNIMPLEMENTED)
112
- context.set_details('Method not implemented!')
113
- raise NotImplementedError('Method not implemented!')
114
-
115
-
116
- def add_TriggerServiceServicer_to_server(servicer, server):
117
- rpc_method_handlers = {
118
- 'DeployTrigger': grpc.unary_unary_rpc_method_handler(
119
- servicer.DeployTrigger,
120
- request_deserializer=workflow_dot_trigger__service__pb2.DeployTriggerRequest.FromString,
121
- response_serializer=workflow_dot_trigger__service__pb2.DeployTriggerResponse.SerializeToString,
122
- ),
123
- 'GetTriggerDetails': grpc.unary_unary_rpc_method_handler(
124
- servicer.GetTriggerDetails,
125
- request_deserializer=workflow_dot_trigger__service__pb2.GetTriggerDetailsRequest.FromString,
126
- response_serializer=workflow_dot_trigger__service__pb2.GetTriggerDetailsResponse.SerializeToString,
127
- ),
128
- 'GetTriggerRevisionDetails': grpc.unary_unary_rpc_method_handler(
129
- servicer.GetTriggerRevisionDetails,
130
- request_deserializer=workflow_dot_trigger__service__pb2.GetTriggerRevisionDetailsRequest.FromString,
131
- response_serializer=workflow_dot_trigger__service__pb2.GetTriggerRevisionDetailsResponse.SerializeToString,
132
- ),
133
- 'ListTriggers': grpc.unary_unary_rpc_method_handler(
134
- servicer.ListTriggers,
135
- request_deserializer=workflow_dot_trigger__service__pb2.ListTriggersRequest.FromString,
136
- response_serializer=workflow_dot_trigger__service__pb2.ListTriggersResponse.SerializeToString,
137
- ),
138
- 'GetTriggerRevisionHistory': grpc.unary_unary_rpc_method_handler(
139
- servicer.GetTriggerRevisionHistory,
140
- request_deserializer=workflow_dot_trigger__service__pb2.GetTriggerRevisionHistoryRequest.FromString,
141
- response_serializer=workflow_dot_trigger__service__pb2.GetTriggerRevisionHistoryResponse.SerializeToString,
142
- ),
143
- 'UpdateTriggers': grpc.unary_unary_rpc_method_handler(
144
- servicer.UpdateTriggers,
145
- request_deserializer=workflow_dot_trigger__service__pb2.UpdateTriggersRequest.FromString,
146
- response_serializer=workflow_dot_trigger__service__pb2.UpdateTriggersResponse.SerializeToString,
147
- ),
148
- 'DeleteTriggers': grpc.unary_unary_rpc_method_handler(
149
- servicer.DeleteTriggers,
150
- request_deserializer=workflow_dot_trigger__service__pb2.DeleteTriggersRequest.FromString,
151
- response_serializer=workflow_dot_trigger__service__pb2.DeleteTriggersResponse.SerializeToString,
152
- ),
153
- }
154
- generic_handler = grpc.method_handlers_generic_handler(
155
- 'cloudidl.workflow.TriggerService', rpc_method_handlers)
156
- server.add_generic_rpc_handlers((generic_handler,))
157
-
158
-
159
- # This class is part of an EXPERIMENTAL API.
160
- class TriggerService(object):
161
- """TriggerService provides an interface for managing triggers.
162
- """
163
-
164
- @staticmethod
165
- def DeployTrigger(request,
166
- target,
167
- options=(),
168
- channel_credentials=None,
169
- call_credentials=None,
170
- insecure=False,
171
- compression=None,
172
- wait_for_ready=None,
173
- timeout=None,
174
- metadata=None):
175
- return grpc.experimental.unary_unary(request, target, '/cloudidl.workflow.TriggerService/DeployTrigger',
176
- workflow_dot_trigger__service__pb2.DeployTriggerRequest.SerializeToString,
177
- workflow_dot_trigger__service__pb2.DeployTriggerResponse.FromString,
178
- options, channel_credentials,
179
- insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
180
-
181
- @staticmethod
182
- def GetTriggerDetails(request,
183
- target,
184
- options=(),
185
- channel_credentials=None,
186
- call_credentials=None,
187
- insecure=False,
188
- compression=None,
189
- wait_for_ready=None,
190
- timeout=None,
191
- metadata=None):
192
- return grpc.experimental.unary_unary(request, target, '/cloudidl.workflow.TriggerService/GetTriggerDetails',
193
- workflow_dot_trigger__service__pb2.GetTriggerDetailsRequest.SerializeToString,
194
- workflow_dot_trigger__service__pb2.GetTriggerDetailsResponse.FromString,
195
- options, channel_credentials,
196
- insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
197
-
198
- @staticmethod
199
- def GetTriggerRevisionDetails(request,
200
- target,
201
- options=(),
202
- channel_credentials=None,
203
- call_credentials=None,
204
- insecure=False,
205
- compression=None,
206
- wait_for_ready=None,
207
- timeout=None,
208
- metadata=None):
209
- return grpc.experimental.unary_unary(request, target, '/cloudidl.workflow.TriggerService/GetTriggerRevisionDetails',
210
- workflow_dot_trigger__service__pb2.GetTriggerRevisionDetailsRequest.SerializeToString,
211
- workflow_dot_trigger__service__pb2.GetTriggerRevisionDetailsResponse.FromString,
212
- options, channel_credentials,
213
- insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
214
-
215
- @staticmethod
216
- def ListTriggers(request,
217
- target,
218
- options=(),
219
- channel_credentials=None,
220
- call_credentials=None,
221
- insecure=False,
222
- compression=None,
223
- wait_for_ready=None,
224
- timeout=None,
225
- metadata=None):
226
- return grpc.experimental.unary_unary(request, target, '/cloudidl.workflow.TriggerService/ListTriggers',
227
- workflow_dot_trigger__service__pb2.ListTriggersRequest.SerializeToString,
228
- workflow_dot_trigger__service__pb2.ListTriggersResponse.FromString,
229
- options, channel_credentials,
230
- insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
231
-
232
- @staticmethod
233
- def GetTriggerRevisionHistory(request,
234
- target,
235
- options=(),
236
- channel_credentials=None,
237
- call_credentials=None,
238
- insecure=False,
239
- compression=None,
240
- wait_for_ready=None,
241
- timeout=None,
242
- metadata=None):
243
- return grpc.experimental.unary_unary(request, target, '/cloudidl.workflow.TriggerService/GetTriggerRevisionHistory',
244
- workflow_dot_trigger__service__pb2.GetTriggerRevisionHistoryRequest.SerializeToString,
245
- workflow_dot_trigger__service__pb2.GetTriggerRevisionHistoryResponse.FromString,
246
- options, channel_credentials,
247
- insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
248
-
249
- @staticmethod
250
- def UpdateTriggers(request,
251
- target,
252
- options=(),
253
- channel_credentials=None,
254
- call_credentials=None,
255
- insecure=False,
256
- compression=None,
257
- wait_for_ready=None,
258
- timeout=None,
259
- metadata=None):
260
- return grpc.experimental.unary_unary(request, target, '/cloudidl.workflow.TriggerService/UpdateTriggers',
261
- workflow_dot_trigger__service__pb2.UpdateTriggersRequest.SerializeToString,
262
- workflow_dot_trigger__service__pb2.UpdateTriggersResponse.FromString,
263
- options, channel_credentials,
264
- insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
265
-
266
- @staticmethod
267
- def DeleteTriggers(request,
268
- target,
269
- options=(),
270
- channel_credentials=None,
271
- call_credentials=None,
272
- insecure=False,
273
- compression=None,
274
- wait_for_ready=None,
275
- timeout=None,
276
- metadata=None):
277
- return grpc.experimental.unary_unary(request, target, '/cloudidl.workflow.TriggerService/DeleteTriggers',
278
- workflow_dot_trigger__service__pb2.DeleteTriggersRequest.SerializeToString,
279
- workflow_dot_trigger__service__pb2.DeleteTriggersResponse.FromString,
280
- options, channel_credentials,
281
- insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -1,262 +0,0 @@
1
- flyte/__init__.py,sha256=xNzVaGtjTOBnbTStzPrJ2h7uDd-3QTWGnv1rCh1QnDE,2281
2
- flyte/_build.py,sha256=MkgfLAPeL56YeVrGRNZUCZgbwzlEzVP3wLbl5Qru4yk,578
3
- flyte/_context.py,sha256=NGl-tDoTOoIljsUzD1IPTESOdaG8vKeoAzs5271XuPM,5244
4
- flyte/_deploy.py,sha256=elOJ5uHIlCRo477e0JCo-qu8wf-crau1_9WKg4KNB7M,14922
5
- flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
6
- flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
7
- flyte/_environment.py,sha256=d4UIACWod0E_tQ72zs0bOSJHC8s6EpfGm7g6n3XF7AY,4905
8
- flyte/_excepthook.py,sha256=pKwEtG0bqsQxu3suT-zBW5C9igIWD0YY6pKfHIJYIpE,1291
9
- flyte/_group.py,sha256=7o1j16sZyUmYB50mOiq1ui4TBAKhRpDqLakV8Ya1kw4,803
10
- flyte/_hash.py,sha256=KMKjoI7SaxXildb-xv6n5Vb32B0csvBiYc06iUe-BrI,137
11
- flyte/_image.py,sha256=2pVyMdOlcficWDssRJbyn70N74OQKUk-kWQkSBbAoZ4,39098
12
- flyte/_initialize.py,sha256=Wn8pJnihwMZ2727MBSFEW6rMDEkGvY-tfIWPfZh8z50,19373
13
- flyte/_interface.py,sha256=krUJOv43dOsSUNGlt30ajfFUl8_HPhubPg6dRlGSa4k,4795
14
- flyte/_logging.py,sha256=PIvpYiFa23XjDbpXI8oxwqxve02ZfXZy6zCkY0flqs0,6284
15
- flyte/_map.py,sha256=8u4jZsM26V-M-dhVbSnyqSrkzJnGgisN3kwwSNQZaa4,10697
16
- flyte/_pod.py,sha256=MB5eP2WvTc5lD5ovdVlxoOpx-wJeutv0S64s75astLc,1105
17
- flyte/_resources.py,sha256=L2JuvQDlMo1JLJeUmJPRwtWbunhR2xJEhFgQW5yc72c,9690
18
- flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
19
- flyte/_reusable_environment.py,sha256=qzmLJlHFiek8_k3EEqxew3837Pe2xjmz3mjGk_xqPEo,4857
20
- flyte/_run.py,sha256=9eCZKww7g498p_yRmcWlSwHQUUlXG7AHPMRKgolcDfM,27286
21
- flyte/_secret.py,sha256=wug5NbIYEkXO6FJkqnPRnPoc2nKDerQiemWtRGRi288,3576
22
- flyte/_task.py,sha256=4lVPc3u74qxcn-VuJAqv5r4BU7S3xg2nkeQF-E9fmsU,22122
23
- flyte/_task_environment.py,sha256=N3TKiPIcE1ljWvZmcPiBKv3V2PzgkbZTDJqShD-a4M0,12778
24
- flyte/_task_plugins.py,sha256=9MH3nFPOH_e8_92BT4sFk4oyAnj6GJFvaPYWaraX7yE,1037
25
- flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
26
- flyte/_tools.py,sha256=lB3OiJSAhxzSMCYjLUF6nZjlFsmNpaRXtr3_Fefcxbg,747
27
- flyte/_trace.py,sha256=-BIprs2MbupWl3vsC_Pn33SV3fSVku1rUIsnwfmrIy0,5204
28
- flyte/_trigger.py,sha256=RprrBjpv1Zcim2WBrudZlvU_sh8EXaleT2edAZGbdkY,15110
29
- flyte/_version.py,sha256=knVoWctZwqZP3ZMZ9UDoEmXhrkuIuFieWsKTn3fhjuI,722
30
- flyte/errors.py,sha256=YiEsqCjKSON9JU2h8XOY30CZLJflRcEAI860muqhq_8,6964
31
- flyte/extend.py,sha256=GB4ZedGzKa30vYWRVPOdxEeK62xnUVFY4z2tD6H9eEw,376
32
- flyte/models.py,sha256=5Ac61jMLqn2Xga0tII--iLWDUD1QDNZwMmtyDp7SHoE,17508
33
- flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- flyte/_bin/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
36
- flyte/_bin/runtime.py,sha256=q3y0QP92U97sy5ED2NowGA6hWsNskUsWU8GDmCgugFQ,7620
37
- flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
38
- flyte/_cache/cache.py,sha256=WmvpvXCzI1leXyjOmG0n4G53BoMy9lI-9Q7WoU0r7RU,5124
39
- flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
40
- flyte/_cache/local_cache.py,sha256=oXgosicjRsglqeWvV_Qa9fdYTO2CszMSlnYm2FIxk-U,7075
41
- flyte/_cache/policy_function_body.py,sha256=_AcyN6XKRXq16yV5lWuRJYCIVUlmyPvvWuYRxfU-Ldo,1507
42
- flyte/_code_bundle/__init__.py,sha256=G7DJTQ0UN_ETvdh55pYcWsTrZJKXEcyQl9iQQNQOBXQ,328
43
- flyte/_code_bundle/_ignore.py,sha256=INTPvv8ironCBIl_sJ_VaXnMd7gJcx0hL-OvrZNXdRo,4127
44
- flyte/_code_bundle/_packaging.py,sha256=H-_boKm4Wlri2D1zR-VzjvDxM-_R-_hKUBWVPUWYFKU,7094
45
- flyte/_code_bundle/_utils.py,sha256=UXyYiW5fPGgSDi1KnVX1Ow_03oKnROhLS21GiYRjlpE,12203
46
- flyte/_code_bundle/bundle.py,sha256=x1YILfhFLF-cE0OmfFJTuM9zxt6dTU8G8o42C51l_yk,8848
47
- flyte/_debug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- flyte/_debug/constants.py,sha256=tI4410tMsCGdgsrCCdk28RAWu6lyTQs7yRvzrRoR1HY,1516
49
- flyte/_debug/utils.py,sha256=Nc6n1Y_OdLMa4VtvigP6U738D4Fpbuog94g37tPwu6k,596
50
- flyte/_debug/vscode.py,sha256=XsrXegavYfH52Vr4jYqbLsMQFQKo8cF5DpFpzEGz61I,11298
51
- flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
52
- flyte/_internal/controllers/__init__.py,sha256=yNALzu-3YVii_D_GlrBoWUpL4PTLYUa7oIKnA7hbee0,4296
53
- flyte/_internal/controllers/_local_controller.py,sha256=gw4XC2bOJKLlcx5U9XpsabSvsiQ0hkrvVDBnmMUtuFs,9132
54
- flyte/_internal/controllers/_trace.py,sha256=ywFg_M2nGrCKYLbh4iVdsVlRtPT1K2S-XZMvDJU8AKU,1499
55
- flyte/_internal/controllers/remote/__init__.py,sha256=EkDZ4gpp715M5CMnwpFh9s04jkWowndF9RqhXJ34yRA,1869
56
- flyte/_internal/controllers/remote/_action.py,sha256=FxvrDTh_sVsHSXnjXyP4G5_lvmAS44h7UZgbPbmZNPU,7454
57
- flyte/_internal/controllers/remote/_client.py,sha256=HPbzbfaWZVv5wpOvKNtFXR6COiZDwd1cUJQqi60A7oU,1421
58
- flyte/_internal/controllers/remote/_controller.py,sha256=lqpbPnxBsOZWNRaNUaWKQaDdcD0l6eBjYTJVfPq1ju0,25342
59
- flyte/_internal/controllers/remote/_core.py,sha256=EoSNu5uwV3D0ElLOOaUMHBXHqkl9LY7D7sj3De8bVtw,20980
60
- flyte/_internal/controllers/remote/_informer.py,sha256=UbPs-9myF6-dRTV6GY6WRnI2vmEg1x6XCQSV8vH0nPQ,14961
61
- flyte/_internal/controllers/remote/_service_protocol.py,sha256=B9qbIg6DiGeac-iSccLmX_AL2xUgX4ezNUOiAbSy4V0,1357
62
- flyte/_internal/imagebuild/__init__.py,sha256=dwXdJ1jMhw9RF8itF7jkPLanvX1yCviSns7hE5eoIts,102
63
- flyte/_internal/imagebuild/docker_builder.py,sha256=oxCLrNBa95NOo4YpqTRLaCYmPQtks6n9RzWwETQkDr4,26636
64
- flyte/_internal/imagebuild/image_builder.py,sha256=FRbeoFFjGLgRybyhN3RLikmxSWQ7giTDKurHisUhFHE,10944
65
- flyte/_internal/imagebuild/remote_builder.py,sha256=f6QiSbJTeLFGGxQe3SfvB3N2uwWw9r2ZJ5K1Qwwx3Gk,13316
66
- flyte/_internal/imagebuild/utils.py,sha256=2MMCNyyMoPLO8sJ5J9TnrZwd1xWTty5AW2VVp8ZUd_M,1250
67
- flyte/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- flyte/_internal/resolvers/_task_module.py,sha256=jwy1QYygUK7xmpCZLt1SPTfJCkfox3Ck3mTlTsm66UI,1973
69
- flyte/_internal/resolvers/common.py,sha256=ADQLRoyGsJ4vuUkitffMGrMKKjy0vpk6X53g4FuKDLc,993
70
- flyte/_internal/resolvers/default.py,sha256=nX4DHUYod1nRvEsl_vSgutQVEdExu2xL8pRkyi4VWbY,981
71
- flyte/_internal/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- flyte/_internal/runtime/convert.py,sha256=JIjjJXqhopUj8DatDNyVJGpObCZWHcIQupVGI_CLiJU,18793
73
- flyte/_internal/runtime/entrypoints.py,sha256=WxaabGgnJZNCtfrA6afwwJyv-0PecsGuAWMn1NiMwKs,6734
74
- flyte/_internal/runtime/io.py,sha256=XYR35jn3-IhgpOlh503QEtPGmUqrju1t_ITziAvTMCM,6594
75
- flyte/_internal/runtime/resources_serde.py,sha256=TObMVsSjVcQhcY8-nY81pbvrz7TP-adDD5xV-LqAaxM,4813
76
- flyte/_internal/runtime/reuse.py,sha256=uGjomQz4X4JvPv6M8eDW94g4YfHJugNYufwK6eVFlwI,4901
77
- flyte/_internal/runtime/rusty.py,sha256=k-wRX_Rh7iQPeGi5ma2I4Up2vA2Ai4Qd53697oj5ztA,7630
78
- flyte/_internal/runtime/task_serde.py,sha256=XL2hdiyKvpIGZYRfaWt5030JURFYq7krLK01WQC0L7c,14008
79
- flyte/_internal/runtime/taskrunner.py,sha256=UcInyHzFIZVCGpLiALN-Wk_b6K1QmOkbD2RkpG-11dg,7731
80
- flyte/_internal/runtime/trigger_serde.py,sha256=DU-WyDa7obd1zhwu_lK8JP8rZsL56KoWTUq6nLUHRoc,5107
81
- flyte/_internal/runtime/types_serde.py,sha256=EjRh9Yypx9-20XXQprtNgp766LeQVRoYWtY6XPGMZQg,1813
82
- flyte/_keyring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- flyte/_keyring/file.py,sha256=MKAHv7B6rFV0gJN509jSMSG7beu-wEpizvDaQ1uuwLY,2962
84
- flyte/_protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
- flyte/_protos/common/authorization_pb2.py,sha256=6G7CAfq_Vq1qrm8JFkAnMAj0AaEipiX7MkjA7nk91-M,6707
86
- flyte/_protos/common/authorization_pb2.pyi,sha256=tdqc3wZo3Yc6lKfjVgJlUFUFzGv4GAaCknIv43RGd-8,4759
87
- flyte/_protos/common/authorization_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
88
- flyte/_protos/common/identifier_pb2.py,sha256=XR4s8lEaxdyJJfxkRhzA-g_IbsaKVR4nMCeh6Fgcrzg,11482
89
- flyte/_protos/common/identifier_pb2.pyi,sha256=dBYyQI-QwECwSMGcLzbDVQ07oFhhdZ3BebVs-pctTCE,5577
90
- flyte/_protos/common/identifier_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
91
- flyte/_protos/common/identity_pb2.py,sha256=Q3UHzjnYkgHPjBC001DSRSVd5IbiarijpWpUt-GSWAo,4581
92
- flyte/_protos/common/identity_pb2.pyi,sha256=gjcp8lg-XIBP4ZzFBI8-Uf8DofAkheZlZLG5Cj3m4-g,3720
93
- flyte/_protos/common/identity_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
94
- flyte/_protos/common/list_pb2.py,sha256=T8LVB2Gj8_FLEEfCjDOjBdqfhJ2ve4vizyqbgQ_exxw,3276
95
- flyte/_protos/common/list_pb2.pyi,sha256=Mz0ZTm3eHTbaK86joit0xl8_jUWpswxDhLZmU3kg8hY,3398
96
- flyte/_protos/common/list_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
97
- flyte/_protos/common/policy_pb2.py,sha256=NceBASAzGQVU0A-WKSViDndQ_3cEGbDA3vXg8Lf-g0s,2966
98
- flyte/_protos/common/policy_pb2.pyi,sha256=LCHthmNrqlRI-rrAB7D4gMrH-OnlrCGymquNGN6vO9Q,1535
99
- flyte/_protos/common/policy_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
100
- flyte/_protos/common/role_pb2.py,sha256=_Ve6LHrjS617n4Wa36LYVo_vvxlL_fbqbi891XQ44FA,3301
101
- flyte/_protos/common/role_pb2.pyi,sha256=wVl1Q4x5hhdJ3s12hxqnA6J6tLbg6VXBWKLz8CZOjZY,2661
102
- flyte/_protos/common/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
103
- flyte/_protos/common/runtime_version_pb2.py,sha256=djTmB3fRv2V0IV6Jzz4mtmHvEuEK4KPCkJWdRcW3DUQ,2012
104
- flyte/_protos/common/runtime_version_pb2.pyi,sha256=pPQ9qVtfvE1sGhdZo47aThk2quLtXOOywRhYXFp-Kzg,1132
105
- flyte/_protos/common/runtime_version_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
106
- flyte/_protos/imagebuilder/definition_pb2.py,sha256=QNGx4BqqalortuyGRWjW9Ml7FCnNqq_a-K2ZEw1MMvk,6871
107
- flyte/_protos/imagebuilder/definition_pb2.pyi,sha256=KGaWKuMQHZTEFBy1bbZewIRrVWhPjAfF26au19zrbt8,7816
108
- flyte/_protos/imagebuilder/definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
109
- flyte/_protos/imagebuilder/payload_pb2.py,sha256=CwlIgDS3aP-9fcNPnkLBhGvHMvy14YJahrlAx1DY6M0,2411
110
- flyte/_protos/imagebuilder/payload_pb2.pyi,sha256=67PTfjzvozDcLDeE4aFdUf27CmHiKKc9FlI_RW0G94A,1002
111
- flyte/_protos/imagebuilder/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
112
- flyte/_protos/imagebuilder/service_pb2.py,sha256=mDmwsjYZAP_TQisdRQOq3hu1CtdjyqqHpIwvh96o0uI,2003
113
- flyte/_protos/imagebuilder/service_pb2.pyi,sha256=VtgJsGavjjVjxdMJQ2OiA2EckDOoPn1DSzKZ-Nfgzf4,202
114
- flyte/_protos/imagebuilder/service_pb2_grpc.py,sha256=zAmG2jku0e_uRzjcncuy49-7qOZQTxcPCJYJLHD9BSU,2620
115
- flyte/_protos/logs/dataplane/payload_pb2.py,sha256=3AqZl3EzNtGZcc5hDxPoP_QQRz1pbCeI-vCcoUyT_U4,12114
116
- flyte/_protos/logs/dataplane/payload_pb2.pyi,sha256=KuuIIpTUpXR-HVwKc9kqUvs1cRyMQzFhERdr3GUGTeA,9714
117
- flyte/_protos/logs/dataplane/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
118
- flyte/_protos/secret/definition_pb2.py,sha256=OCV8zbPz9nxKJM215_3J4sbT0YVx5z_p6vCoYNHFZo4,4904
119
- flyte/_protos/secret/definition_pb2.pyi,sha256=EQPG_os98mnRT3Hfn3kHHgI-ZYrIV6ZUmo2PgY4vAFM,4412
120
- flyte/_protos/secret/definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
121
- flyte/_protos/secret/payload_pb2.py,sha256=O0ryqbUf6UG08r7MVfpReXeIFxg6334PSw75hjwBFwA,5918
122
- flyte/_protos/secret/payload_pb2.pyi,sha256=0rxXcrbekexC2MrbvwPLZNf33EjPSaRKt2nXcpSaoxM,4386
123
- flyte/_protos/secret/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
124
- flyte/_protos/secret/secret_pb2.py,sha256=Zcvxs6pRv8H0_amjLjd5i_pxYhQRPFy4Vs-WsC9zRG8,3554
125
- flyte/_protos/secret/secret_pb2.pyi,sha256=gQ2SbW8J93TB2i4c7FjsrJdj38rlhLmdY1T3kOomJgA,255
126
- flyte/_protos/secret/secret_pb2_grpc.py,sha256=3DOSlIwXhKUn_Kvsv3V6Hmnge1NgtZUI2V_wYOl3aak,9085
127
- flyte/_protos/validate/validate/validate_pb2.py,sha256=yJOyUdZVPAVOSvo8uNgynvObiS-fQFYJE97KilJnLZA,13409
128
- flyte/_protos/workflow/common_pb2.py,sha256=gqywtAVOQOZCC2TQPxZCn4ShWi0NXe3EAg8ufq0u_Cw,3544
129
- flyte/_protos/workflow/common_pb2.pyi,sha256=vmtusLkFvdkd9-KZ7v4-HiB4pH2ac2Vrkx72PxbYINA,3006
130
- flyte/_protos/workflow/common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
131
- flyte/_protos/workflow/environment_pb2.py,sha256=N3zUd5CdKy6rZmZiAaiQRNmAv-3NOMMTzYRSQc5xIxs,1923
132
- flyte/_protos/workflow/environment_pb2.pyi,sha256=ly3FuUNeCPo845N307SZ5-W1-DJGqOJK454jpJwoUVk,459
133
- flyte/_protos/workflow/environment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
134
- flyte/_protos/workflow/node_execution_service_pb2.py,sha256=IOLg3tNikY7n00kLOVsC69yyXc5Ttnx-_-xUuc0q05Q,1654
135
- flyte/_protos/workflow/node_execution_service_pb2.pyi,sha256=C7VVuw_bnxp68qemD3SLoGIL-Hmno6qkIoq3l6W2qb8,135
136
- flyte/_protos/workflow/node_execution_service_pb2_grpc.py,sha256=2JJDS3Aww3FFDW-qYdTaxC75gRpsgnn4an6LPZmF9uA,947
137
- flyte/_protos/workflow/queue_service_pb2.py,sha256=4n0e5a1tsU0r9hkf8PyD6tFQ2wZccsX7sX0bO_WiEbQ,14578
138
- flyte/_protos/workflow/queue_service_pb2.pyi,sha256=nmzXxse9hcwM9rwxlFdv2iqeoFTJCJo-YxLoy86pNfY,10188
139
- flyte/_protos/workflow/queue_service_pb2_grpc.py,sha256=ExfgSj83rmkvpQ6HAHICuEXPCT43RmltCLnCuVkp2cQ,9650
140
- flyte/_protos/workflow/run_definition_pb2.py,sha256=dofWR4BlF5YaYYi64KfCDXUJbmv_bJaQE-YPJcjGTH4,17205
141
- flyte/_protos/workflow/run_definition_pb2.pyi,sha256=t5zILFD7eT2da2Wv_LO7dc5MBPa0tQre9SYztpSWudg,18649
142
- flyte/_protos/workflow/run_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
143
- flyte/_protos/workflow/run_logs_service_pb2.py,sha256=VXuiAXyB-R7LLHpllCSXXcDpaeUMStJNHUJOadudwfY,3333
144
- flyte/_protos/workflow/run_logs_service_pb2.pyi,sha256=AeCw_SXrtbRtF-_hBBjHxF64WO2k_41xk-lG6tIXaHo,1516
145
- flyte/_protos/workflow/run_logs_service_pb2_grpc.py,sha256=xoNyNBaK9dmrjZtiYkZQSQnSLNY7d2CK9pr5BTP7zxQ,2694
146
- flyte/_protos/workflow/run_service_pb2.py,sha256=-RvTTL6EwmIwmNrXSigHrGVj0hiI66XZ5cpZCAIy5s8,17458
147
- flyte/_protos/workflow/run_service_pb2.pyi,sha256=Byhjt6GxFClwXLf9Yedah6xrrTZPKEAjxKyuGlC7IxE,10647
148
- flyte/_protos/workflow/run_service_pb2_grpc.py,sha256=tzDTbIZqJCuHhlYAFY4oGf3Vuc3GqaGZ3JrpYLIA_k8,23131
149
- flyte/_protos/workflow/state_service_pb2.py,sha256=TlrvkZrLmCA0bm9NYPE4CETRiVM_wnTE8zh-l_klWdg,6812
150
- flyte/_protos/workflow/state_service_pb2.pyi,sha256=Bq21Gr7EFCT9nFrt9p2bdU5Mq4hVNZ8SjxaSaxnor8Q,3900
151
- flyte/_protos/workflow/state_service_pb2_grpc.py,sha256=nCRIosO0pGM66H-i3hP_KFQKSMCFHmnspGgyxchaxQA,5825
152
- flyte/_protos/workflow/task_definition_pb2.py,sha256=yDDfHCR9IaUdmFDU6ziOwihJedfJMjZWdjAEUKLamtE,8915
153
- flyte/_protos/workflow/task_definition_pb2.pyi,sha256=gYkeYaUd53H988ZekcYCqv0M024ot3r4To7u9BJEXHc,5458
154
- flyte/_protos/workflow/task_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
155
- flyte/_protos/workflow/task_service_pb2.py,sha256=KlkEuFgZ70aR4rovooXh_5oCAlymfND4QAXuLMxmlIA,6008
156
- flyte/_protos/workflow/task_service_pb2.pyi,sha256=JzCRSlYq4uc-I5RUzdeuifJIto_uhCG0zm8Lg-oqE0E,3427
157
- flyte/_protos/workflow/task_service_pb2_grpc.py,sha256=whmfmOTiNhz6_CBsXm8aXUCwtA5bncOikqKYz-bKdok,5992
158
- flyte/_protos/workflow/trigger_definition_pb2.py,sha256=KPtLHxnrC4RW82Skol0i1MsOpShYiE4FeV2C6k7Bymo,7956
159
- flyte/_protos/workflow/trigger_definition_pb2.pyi,sha256=WErAbg3QQMUzpTZuL_cqrFb0fu_sx9Tg-Kk0U9qF0-E,6743
160
- flyte/_protos/workflow/trigger_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
161
- flyte/_protos/workflow/trigger_service_pb2.py,sha256=eyvMzHUd1KTrKjFj5CquAgQH6a3AYXurvdj1lDErzHg,10861
162
- flyte/_protos/workflow/trigger_service_pb2.pyi,sha256=noVOcA7Kj3_IJp6rQPfnq-d1weBB_9Tv6cEtV7e9POU,5735
163
- flyte/_protos/workflow/trigger_service_pb2_grpc.py,sha256=e8KVEFPtthfzwmG0Aj8aU893lCd34OEO2YczTTrGYnc,14077
164
- flyte/_utils/__init__.py,sha256=Lwn9_fLxNF4YR0oCUIKCwM_aXYT5UFjUFInofTHnQTs,831
165
- flyte/_utils/asyn.py,sha256=KeJKarXNIyD16g6oPM0T9cH7JDmh1KY7JLbwo7i0IlQ,3673
166
- flyte/_utils/async_cache.py,sha256=JtZJmWO62OowJ0QFNl6wryWqh-kuDi76aAASMie87QY,4596
167
- flyte/_utils/coro_management.py,sha256=2XPC1UznYDwJB9_BXMSUjsJmbksiW1JKIU3fNmBWMCI,1030
168
- flyte/_utils/file_handling.py,sha256=iU4TxW--fCho_Eg5xTMODn96P03SxzF-V-5f-7bZAZY,2233
169
- flyte/_utils/helpers.py,sha256=9N70yzfLF4lLGEEdOv5OcweEpYtrCvZqqhtzkjZUXNY,4779
170
- flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
171
- flyte/_utils/module_loader.py,sha256=XDmK2qndI2Lx-7JUvPi0LW33_zr5HgCgt-FsyXJzccI,3124
172
- flyte/_utils/org_discovery.py,sha256=C7aJa0LfnWBkDtSU9M7bE60zp27qEhJC58piqOErZ94,2088
173
- flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
174
- flyte/cli/__init__.py,sha256=aeCcumeP9xD_5aCmaRYUPCe2QRJSGCaxcUbTZ3co768,341
175
- flyte/cli/_abort.py,sha256=drOg1EyQq0jZP9IpUS4hnqqhKHpml0yGiLH5t3Dg6q4,721
176
- flyte/cli/_build.py,sha256=R0cgC-C55pdHI73sGxEOjzptcL4gmUmRf7ZmCPr3hdk,3503
177
- flyte/cli/_common.py,sha256=QzTR1sS9qwKFMX8rVGNyR-hLArL--msTwxahlSj_bnA,14003
178
- flyte/cli/_create.py,sha256=o64Y_10IY2jRaYwMhfLStBRXstBt_mabgHTYfmzGhk4,7634
179
- flyte/cli/_delete.py,sha256=FErGR5z-1Sbl8JqeSKWFlMnGFJfNcJ2-lAyd_ZLZxdY,1339
180
- flyte/cli/_deploy.py,sha256=oMuDt1ZUws4KDvnJ4xmNGz7_A-7L3IYQuA9uu4HHogc,9164
181
- flyte/cli/_gen.py,sha256=7K2eYQLGVr26I2OC3Xe_bzAn4ANYA5mPlBW5m1476PM,6079
182
- flyte/cli/_get.py,sha256=2Zm2VZ1n1gaRI-eyiIJL85wsxkzL41oY5UudhM6IDPE,12048
183
- flyte/cli/_option.py,sha256=oC1Gs0u0UrOC1SsrFo-iCuAkqQvI1wJWCdjYXA9rW4Q,1445
184
- flyte/cli/_params.py,sha256=Zo3q5h60YGJC2EySkIDw95kG_9bZHHjLAgLT0td4-m4,20047
185
- flyte/cli/_run.py,sha256=-zJepQffOYloFBAJbjfdz5tHIi-9nU9h4ZdVgpMVZ70,17126
186
- flyte/cli/_update.py,sha256=n4GmLyeOgHTkjxP17rJwaRVbIEEh1_2tPlgcF7kSYtI,1059
187
- flyte/cli/_user.py,sha256=x32vEXpJkV6ONoCCcq7DbCIltHcALcSvm3PalNI57kI,339
188
- flyte/cli/main.py,sha256=8TO4GO0RGiEw8QraYz5fn5OqrNysZmiNDW9eU73RBww,5593
189
- flyte/config/__init__.py,sha256=MiwEYK5Iv7MRR22z61nzbsbvZ9Q6MdmAU_g9If1Pmb8,144
190
- flyte/config/_config.py,sha256=gsGtIZa9CUILfBmWm2CaEMRLHcSOeNUgwPHeIV807bs,10942
191
- flyte/config/_internal.py,sha256=LMcAtDjvTjf5bGlsJVxPuLxQQ82mLd00xK5-JlYGCi8,2989
192
- flyte/config/_reader.py,sha256=dMS27dI8CUjwIEzpTR4aQpNzA_GP0vpaquLIlv-UW3E,7702
193
- flyte/connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
- flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
195
- flyte/extras/_container.py,sha256=xfbxaGrx2JyQyrvQx1UWTzho2ion8_xujPW5V4uDEIs,11818
196
- flyte/git/__init__.py,sha256=OYDrwq1mZ70xC4QC205s1seFvdk9fjDPSv8DrbopdC8,70
197
- flyte/git/_config.py,sha256=nOczu_9GwaDLji_TbrwjtKoG_buiJEPXMGzSDjeLhr0,739
198
- flyte/io/__init__.py,sha256=qF8jq_IKuocuGU0LAvoy_uxjMs4G-vXjDA9Prba0JGU,538
199
- flyte/io/_dir.py,sha256=0rBU1n07mkoQFrDD6AmogZLjunrwhb6Jb7C110cmcNA,29816
200
- flyte/io/_file.py,sha256=BRIJZaADOtewdfHZgial-HqRTpxN0fy24GGtnJ8pE3U,31392
201
- flyte/io/_hashing_io.py,sha256=QvhQ4K5jiHgzzPqZY4gFz5Fm-BAzq6bzyCpzXhfnWlk,10014
202
- flyte/io/_dataframe/__init__.py,sha256=SDgNw45uf7m3cHhbUCOA3V3-5A2zSKgPcsWriRLwd74,4283
203
- flyte/io/_dataframe/basic_dfs.py,sha256=tUJKiBbIJ30r9hjwMo-y3bxjdLmyf3WVe9n9tYskKWk,8043
204
- flyte/io/_dataframe/dataframe.py,sha256=HOW6W12uAlN_1YH9fOgk-HaAse3ACgVyb18vsa83Uzo,49371
205
- flyte/remote/__init__.py,sha256=3YJcBJI4tVhAuAsPg68HbuA1yJ00V7PCsMrupgtJFeo,718
206
- flyte/remote/_action.py,sha256=wYP_tD0tOnjhOAUP3CzyJfiE6tzE2IePXa48qf8Q3qs,24324
207
- flyte/remote/_common.py,sha256=2XLLxWL1NjwfdPQUhOfYn3zMrg-yGNfi6NYIaqHutUA,862
208
- flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
209
- flyte/remote/_data.py,sha256=WeRkhUrJlx7rU3CpvbPvikosv7r02UMveWrf70cFilQ,6156
210
- flyte/remote/_logs.py,sha256=t4H7DEZDYJC9Vx7oJ7R7m4Z56bWBAjm9ylU4UP1hKq0,6711
211
- flyte/remote/_project.py,sha256=IbkxKRAvZunKLIwpmcreA4O-0GxWC0KPC62WSYvsK34,2868
212
- flyte/remote/_run.py,sha256=FtWXo7daoK55Medp4mdFAYCVTCNkBiACiOK7S4HLFbs,12224
213
- flyte/remote/_secret.py,sha256=CF9WiZKeMJaUNeIawVPf8XHk9OjFt2wc0m7S9ZOdGbE,4399
214
- flyte/remote/_task.py,sha256=pORXF-pNWB5ycwsuta1EGvK_9L83FmRpjh093DePz04,18955
215
- flyte/remote/_trigger.py,sha256=Ow7Yx-R_C9xahRhh6uqo5f1sZ3_StTq4eMwPtpXk1cA,10229
216
- flyte/remote/_user.py,sha256=Fcy2oKep-BAGcqRQUdEi-K6Bu2I2YtECJviGDrzoY7Q,831
217
- flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
- flyte/remote/_client/_protocols.py,sha256=cs6z1IPqvKH-djNJrB-4TU5DisVkheQINI5H8EhOnXE,6945
219
- flyte/remote/_client/controlplane.py,sha256=BdcFrUvOXVXUiGNhXqHPg5Prt6tP4UnGvrLiSmnwYn4,4041
220
- flyte/remote/_client/auth/__init__.py,sha256=JQrIlwaqPlPzrxcOREhcfyFsC4LrfqL5TRz6A3JNSEA,413
221
- flyte/remote/_client/auth/_auth_utils.py,sha256=Is6mr18J8AMQlbtu-Q63aMJgrZ27dXXNSig8KshR1_8,545
222
- flyte/remote/_client/auth/_channel.py,sha256=dIo8s8lhd5XCEQ0qgDewMBY93E2RQn56Yak-T-esH8k,9219
223
- flyte/remote/_client/auth/_client_config.py,sha256=LhJpznsibAQkVx0emOhBSrfXjis7WkoL695WXHZAJMo,3435
224
- flyte/remote/_client/auth/_default_html.py,sha256=XAdgP-25WySMODbusWOcQQPiXin1h-hfzmRJv_Dg3tE,1651
225
- flyte/remote/_client/auth/_keyring.py,sha256=hJ2FxFdi5_FaKLcuqhelxj6Hc1WYQrez4c47qSl5c5A,5681
226
- flyte/remote/_client/auth/_token_client.py,sha256=FxFaG_DcynQIZfEdAuJUsrcy0OnYbEr4gKLpu8WZHJo,10460
227
- flyte/remote/_client/auth/errors.py,sha256=ZYS9k4GX_McacKhxHKt5V2A4CWjLUq4RkBx_goDTdHY,390
228
- flyte/remote/_client/auth/_authenticators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
- flyte/remote/_client/auth/_authenticators/base.py,sha256=LIIYt46j6_ShJRiwjNwNX-LxLiUoG1qbiN0ypyzGedY,17020
230
- flyte/remote/_client/auth/_authenticators/client_credentials.py,sha256=e9DOFdKEvaM3uSR10lnNuJaOwAcCkZQWZPKv7xUoFsI,3483
231
- flyte/remote/_client/auth/_authenticators/device_code.py,sha256=YKj0HLT2Gegoc8_mKEOgVRUw_Bp9EtDeTUAvmc3IoMY,4806
232
- flyte/remote/_client/auth/_authenticators/external_command.py,sha256=IfTJQACPd1xc6htZYC-HdMIx6Q9JHBPw1HUG1Pv6lXg,3838
233
- flyte/remote/_client/auth/_authenticators/factory.py,sha256=_oBWs7xIG6l13q06V2PUGIDmzU9-XYUK5hx5S6gZjrU,10291
234
- flyte/remote/_client/auth/_authenticators/pkce.py,sha256=PXbYCmgYGn_LP2EED1O41uzeV4I7L03M1-u3CMRag_M,23097
235
- flyte/remote/_client/auth/_grpc_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
- flyte/remote/_client/auth/_grpc_utils/auth_interceptor.py,sha256=JCjdoWV41sjdvfJcUmrJdIfQ0meuGFwv2ArU7FQGDDA,12403
237
- flyte/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py,sha256=IoMGWM42_VyzxqIVYe458o0uKsqhH-mcERUs9CY1L5U,6194
238
- flyte/report/__init__.py,sha256=yLbeUxYaVaDlgBod3Oh34zGBSotl1UlXq1vUkb9q7cs,152
239
- flyte/report/_report.py,sha256=b-VMFke-5SitqGfNEXKTm0PuEPzonWpvlAl5V3wSh4o,5328
240
- flyte/report/_template.html,sha256=YehmLJG3QMYQ10UT1YZBu2ncVmAJ4iyqVp5hF3sXRAs,3458
241
- flyte/storage/__init__.py,sha256=Lvss5m16YAxEb_NX73VsSv0LdXzsRpJ0iRwucu1PvfQ,635
242
- flyte/storage/_config.py,sha256=Pl4i5KSkUJA_4HqDdvQlPn1OxFmVWIxl1bw0tp0mDGM,8871
243
- flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1124
244
- flyte/storage/_storage.py,sha256=XdgEF_XUWzmI7DuM58gxIVzEQVXKzKdOCEv9I96rL7Q,13994
245
- flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
246
- flyte/syncify/__init__.py,sha256=WgTk-v-SntULnI55CsVy71cxGJ9Q6pxpTrhbPFuouJ0,1974
247
- flyte/syncify/_api.py,sha256=k4LQB8odJb5Fx2dabL340g0Tq1bKfSG_ZHsV5qRodE0,14858
248
- flyte/types/__init__.py,sha256=9310PRtVrwJePwEPeoUO0HPyIkgaja7-Dar_QlE_MUI,1745
249
- flyte/types/_interface.py,sha256=5y9EC5r897xz03Hh0ltF8QVGKMfMfAznws-hKSEO4Go,1677
250
- flyte/types/_pickle.py,sha256=9sShZTCqtUtAv16j_jwLyk5zfjWYy5JCEc9wbb_97cY,5240
251
- flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
252
- flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
253
- flyte/types/_type_engine.py,sha256=xGxuNQK2kShdvxcAvN5v0yP704EXMraM_d7gBPJgHn4,95711
254
- flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
255
- flyte-2.0.0b23.data/scripts/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
256
- flyte-2.0.0b23.data/scripts/runtime.py,sha256=q3y0QP92U97sy5ED2NowGA6hWsNskUsWU8GDmCgugFQ,7620
257
- flyte-2.0.0b23.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
258
- flyte-2.0.0b23.dist-info/METADATA,sha256=vpptnxpzkHK-ZuD48EfO-nfFnIBCJWNqKp6vlEDqPTs,10126
259
- flyte-2.0.0b23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
260
- flyte-2.0.0b23.dist-info/entry_points.txt,sha256=rb43Gfxw40iPH5B6EUs6Ter0ekLkGXsj7R890_MOTyk,136
261
- flyte-2.0.0b23.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
262
- flyte-2.0.0b23.dist-info/RECORD,,