flyte 2.0.0b13__py3-none-any.whl → 2.0.0b30__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.
Files changed (211) hide show
  1. flyte/__init__.py +18 -2
  2. flyte/_bin/debug.py +38 -0
  3. flyte/_bin/runtime.py +62 -8
  4. flyte/_cache/cache.py +4 -2
  5. flyte/_cache/local_cache.py +216 -0
  6. flyte/_code_bundle/_ignore.py +12 -4
  7. flyte/_code_bundle/_packaging.py +13 -9
  8. flyte/_code_bundle/_utils.py +18 -10
  9. flyte/_code_bundle/bundle.py +17 -9
  10. flyte/_constants.py +1 -0
  11. flyte/_context.py +4 -1
  12. flyte/_custom_context.py +73 -0
  13. flyte/_debug/constants.py +38 -0
  14. flyte/_debug/utils.py +17 -0
  15. flyte/_debug/vscode.py +307 -0
  16. flyte/_deploy.py +235 -61
  17. flyte/_environment.py +20 -6
  18. flyte/_excepthook.py +1 -1
  19. flyte/_hash.py +1 -16
  20. flyte/_image.py +178 -81
  21. flyte/_initialize.py +132 -51
  22. flyte/_interface.py +39 -2
  23. flyte/_internal/controllers/__init__.py +4 -5
  24. flyte/_internal/controllers/_local_controller.py +70 -29
  25. flyte/_internal/controllers/_trace.py +1 -1
  26. flyte/_internal/controllers/remote/__init__.py +0 -2
  27. flyte/_internal/controllers/remote/_action.py +14 -16
  28. flyte/_internal/controllers/remote/_client.py +1 -1
  29. flyte/_internal/controllers/remote/_controller.py +68 -70
  30. flyte/_internal/controllers/remote/_core.py +127 -99
  31. flyte/_internal/controllers/remote/_informer.py +19 -10
  32. flyte/_internal/controllers/remote/_service_protocol.py +7 -7
  33. flyte/_internal/imagebuild/docker_builder.py +181 -69
  34. flyte/_internal/imagebuild/image_builder.py +0 -5
  35. flyte/_internal/imagebuild/remote_builder.py +155 -64
  36. flyte/_internal/imagebuild/utils.py +51 -2
  37. flyte/_internal/resolvers/_task_module.py +5 -38
  38. flyte/_internal/resolvers/default.py +2 -2
  39. flyte/_internal/runtime/convert.py +110 -21
  40. flyte/_internal/runtime/entrypoints.py +27 -1
  41. flyte/_internal/runtime/io.py +21 -8
  42. flyte/_internal/runtime/resources_serde.py +20 -6
  43. flyte/_internal/runtime/reuse.py +1 -1
  44. flyte/_internal/runtime/rusty.py +20 -5
  45. flyte/_internal/runtime/task_serde.py +34 -19
  46. flyte/_internal/runtime/taskrunner.py +22 -4
  47. flyte/_internal/runtime/trigger_serde.py +160 -0
  48. flyte/_internal/runtime/types_serde.py +1 -1
  49. flyte/_keyring/__init__.py +0 -0
  50. flyte/_keyring/file.py +115 -0
  51. flyte/_logging.py +201 -39
  52. flyte/_map.py +111 -14
  53. flyte/_module.py +70 -0
  54. flyte/_pod.py +4 -3
  55. flyte/_resources.py +213 -31
  56. flyte/_run.py +110 -39
  57. flyte/_task.py +75 -16
  58. flyte/_task_environment.py +105 -29
  59. flyte/_task_plugins.py +4 -2
  60. flyte/_trace.py +5 -0
  61. flyte/_trigger.py +1000 -0
  62. flyte/_utils/__init__.py +2 -1
  63. flyte/_utils/asyn.py +3 -1
  64. flyte/_utils/coro_management.py +2 -1
  65. flyte/_utils/docker_credentials.py +173 -0
  66. flyte/_utils/module_loader.py +17 -2
  67. flyte/_version.py +3 -3
  68. flyte/cli/_abort.py +3 -3
  69. flyte/cli/_build.py +3 -6
  70. flyte/cli/_common.py +78 -7
  71. flyte/cli/_create.py +182 -4
  72. flyte/cli/_delete.py +23 -1
  73. flyte/cli/_deploy.py +63 -16
  74. flyte/cli/_get.py +79 -34
  75. flyte/cli/_params.py +26 -10
  76. flyte/cli/_plugins.py +209 -0
  77. flyte/cli/_run.py +151 -26
  78. flyte/cli/_serve.py +64 -0
  79. flyte/cli/_update.py +37 -0
  80. flyte/cli/_user.py +17 -0
  81. flyte/cli/main.py +30 -4
  82. flyte/config/_config.py +10 -6
  83. flyte/config/_internal.py +1 -0
  84. flyte/config/_reader.py +29 -8
  85. flyte/connectors/__init__.py +11 -0
  86. flyte/connectors/_connector.py +270 -0
  87. flyte/connectors/_server.py +197 -0
  88. flyte/connectors/utils.py +135 -0
  89. flyte/errors.py +22 -2
  90. flyte/extend.py +8 -1
  91. flyte/extras/_container.py +6 -1
  92. flyte/git/__init__.py +3 -0
  93. flyte/git/_config.py +21 -0
  94. flyte/io/__init__.py +2 -0
  95. flyte/io/_dataframe/__init__.py +2 -0
  96. flyte/io/_dataframe/basic_dfs.py +17 -8
  97. flyte/io/_dataframe/dataframe.py +98 -132
  98. flyte/io/_dir.py +575 -113
  99. flyte/io/_file.py +582 -139
  100. flyte/io/_hashing_io.py +342 -0
  101. flyte/models.py +74 -15
  102. flyte/remote/__init__.py +6 -1
  103. flyte/remote/_action.py +34 -26
  104. flyte/remote/_client/_protocols.py +39 -4
  105. flyte/remote/_client/auth/_authenticators/device_code.py +4 -5
  106. flyte/remote/_client/auth/_authenticators/pkce.py +1 -1
  107. flyte/remote/_client/auth/_channel.py +10 -6
  108. flyte/remote/_client/controlplane.py +17 -5
  109. flyte/remote/_console.py +3 -2
  110. flyte/remote/_data.py +6 -6
  111. flyte/remote/_logs.py +3 -3
  112. flyte/remote/_run.py +64 -8
  113. flyte/remote/_secret.py +26 -17
  114. flyte/remote/_task.py +75 -33
  115. flyte/remote/_trigger.py +306 -0
  116. flyte/remote/_user.py +33 -0
  117. flyte/report/_report.py +1 -1
  118. flyte/storage/__init__.py +6 -1
  119. flyte/storage/_config.py +5 -1
  120. flyte/storage/_parallel_reader.py +274 -0
  121. flyte/storage/_storage.py +200 -103
  122. flyte/types/__init__.py +16 -0
  123. flyte/types/_interface.py +2 -2
  124. flyte/types/_pickle.py +35 -8
  125. flyte/types/_string_literals.py +8 -9
  126. flyte/types/_type_engine.py +40 -70
  127. flyte/types/_utils.py +1 -1
  128. flyte-2.0.0b30.data/scripts/debug.py +38 -0
  129. {flyte-2.0.0b13.data → flyte-2.0.0b30.data}/scripts/runtime.py +62 -8
  130. {flyte-2.0.0b13.dist-info → flyte-2.0.0b30.dist-info}/METADATA +11 -3
  131. flyte-2.0.0b30.dist-info/RECORD +192 -0
  132. {flyte-2.0.0b13.dist-info → flyte-2.0.0b30.dist-info}/entry_points.txt +3 -0
  133. flyte/_protos/common/authorization_pb2.py +0 -66
  134. flyte/_protos/common/authorization_pb2.pyi +0 -108
  135. flyte/_protos/common/authorization_pb2_grpc.py +0 -4
  136. flyte/_protos/common/identifier_pb2.py +0 -93
  137. flyte/_protos/common/identifier_pb2.pyi +0 -110
  138. flyte/_protos/common/identifier_pb2_grpc.py +0 -4
  139. flyte/_protos/common/identity_pb2.py +0 -48
  140. flyte/_protos/common/identity_pb2.pyi +0 -72
  141. flyte/_protos/common/identity_pb2_grpc.py +0 -4
  142. flyte/_protos/common/list_pb2.py +0 -36
  143. flyte/_protos/common/list_pb2.pyi +0 -71
  144. flyte/_protos/common/list_pb2_grpc.py +0 -4
  145. flyte/_protos/common/policy_pb2.py +0 -37
  146. flyte/_protos/common/policy_pb2.pyi +0 -27
  147. flyte/_protos/common/policy_pb2_grpc.py +0 -4
  148. flyte/_protos/common/role_pb2.py +0 -37
  149. flyte/_protos/common/role_pb2.pyi +0 -53
  150. flyte/_protos/common/role_pb2_grpc.py +0 -4
  151. flyte/_protos/common/runtime_version_pb2.py +0 -28
  152. flyte/_protos/common/runtime_version_pb2.pyi +0 -24
  153. flyte/_protos/common/runtime_version_pb2_grpc.py +0 -4
  154. flyte/_protos/imagebuilder/definition_pb2.py +0 -59
  155. flyte/_protos/imagebuilder/definition_pb2.pyi +0 -140
  156. flyte/_protos/imagebuilder/definition_pb2_grpc.py +0 -4
  157. flyte/_protos/imagebuilder/payload_pb2.py +0 -32
  158. flyte/_protos/imagebuilder/payload_pb2.pyi +0 -21
  159. flyte/_protos/imagebuilder/payload_pb2_grpc.py +0 -4
  160. flyte/_protos/imagebuilder/service_pb2.py +0 -29
  161. flyte/_protos/imagebuilder/service_pb2.pyi +0 -5
  162. flyte/_protos/imagebuilder/service_pb2_grpc.py +0 -66
  163. flyte/_protos/logs/dataplane/payload_pb2.py +0 -100
  164. flyte/_protos/logs/dataplane/payload_pb2.pyi +0 -177
  165. flyte/_protos/logs/dataplane/payload_pb2_grpc.py +0 -4
  166. flyte/_protos/secret/definition_pb2.py +0 -49
  167. flyte/_protos/secret/definition_pb2.pyi +0 -93
  168. flyte/_protos/secret/definition_pb2_grpc.py +0 -4
  169. flyte/_protos/secret/payload_pb2.py +0 -62
  170. flyte/_protos/secret/payload_pb2.pyi +0 -94
  171. flyte/_protos/secret/payload_pb2_grpc.py +0 -4
  172. flyte/_protos/secret/secret_pb2.py +0 -38
  173. flyte/_protos/secret/secret_pb2.pyi +0 -6
  174. flyte/_protos/secret/secret_pb2_grpc.py +0 -198
  175. flyte/_protos/secret/secret_pb2_grpc_grpc.py +0 -198
  176. flyte/_protos/validate/validate/validate_pb2.py +0 -76
  177. flyte/_protos/workflow/common_pb2.py +0 -27
  178. flyte/_protos/workflow/common_pb2.pyi +0 -14
  179. flyte/_protos/workflow/common_pb2_grpc.py +0 -4
  180. flyte/_protos/workflow/environment_pb2.py +0 -29
  181. flyte/_protos/workflow/environment_pb2.pyi +0 -12
  182. flyte/_protos/workflow/environment_pb2_grpc.py +0 -4
  183. flyte/_protos/workflow/node_execution_service_pb2.py +0 -26
  184. flyte/_protos/workflow/node_execution_service_pb2.pyi +0 -4
  185. flyte/_protos/workflow/node_execution_service_pb2_grpc.py +0 -32
  186. flyte/_protos/workflow/queue_service_pb2.py +0 -109
  187. flyte/_protos/workflow/queue_service_pb2.pyi +0 -166
  188. flyte/_protos/workflow/queue_service_pb2_grpc.py +0 -172
  189. flyte/_protos/workflow/run_definition_pb2.py +0 -121
  190. flyte/_protos/workflow/run_definition_pb2.pyi +0 -327
  191. flyte/_protos/workflow/run_definition_pb2_grpc.py +0 -4
  192. flyte/_protos/workflow/run_logs_service_pb2.py +0 -41
  193. flyte/_protos/workflow/run_logs_service_pb2.pyi +0 -28
  194. flyte/_protos/workflow/run_logs_service_pb2_grpc.py +0 -69
  195. flyte/_protos/workflow/run_service_pb2.py +0 -137
  196. flyte/_protos/workflow/run_service_pb2.pyi +0 -185
  197. flyte/_protos/workflow/run_service_pb2_grpc.py +0 -446
  198. flyte/_protos/workflow/state_service_pb2.py +0 -67
  199. flyte/_protos/workflow/state_service_pb2.pyi +0 -76
  200. flyte/_protos/workflow/state_service_pb2_grpc.py +0 -138
  201. flyte/_protos/workflow/task_definition_pb2.py +0 -79
  202. flyte/_protos/workflow/task_definition_pb2.pyi +0 -81
  203. flyte/_protos/workflow/task_definition_pb2_grpc.py +0 -4
  204. flyte/_protos/workflow/task_service_pb2.py +0 -60
  205. flyte/_protos/workflow/task_service_pb2.pyi +0 -59
  206. flyte/_protos/workflow/task_service_pb2_grpc.py +0 -138
  207. flyte-2.0.0b13.dist-info/RECORD +0 -239
  208. /flyte/{_protos → _debug}/__init__.py +0 -0
  209. {flyte-2.0.0b13.dist-info → flyte-2.0.0b30.dist-info}/WHEEL +0 -0
  210. {flyte-2.0.0b13.dist-info → flyte-2.0.0b30.dist-info}/licenses/LICENSE +0 -0
  211. {flyte-2.0.0b13.dist-info → flyte-2.0.0b30.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,192 @@
1
+ flyte/__init__.py,sha256=cVXCnCRigt3aFgvLgzWFbwh9OalTIaM6jv7zeuczuJE,2601
2
+ flyte/_build.py,sha256=MkgfLAPeL56YeVrGRNZUCZgbwzlEzVP3wLbl5Qru4yk,578
3
+ flyte/_constants.py,sha256=QHzughBvzvUc9l0rmcitq9ZCk0NqNRAG1jwtP3cHTMg,89
4
+ flyte/_context.py,sha256=v5JXeI3sEiIICN0eo7rtnMnBdO5GEAoKM10yeL49eJw,5321
5
+ flyte/_custom_context.py,sha256=-jcKWBPXw08w_n4o86huiSVPesOyXYcv-2L8RY2hb54,1791
6
+ flyte/_deploy.py,sha256=aF0JFCDSgM-QZV1ePPVdCSX70mG4dBkF_lSoMgBZVwU,16072
7
+ flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
8
+ flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
9
+ flyte/_environment.py,sha256=d4UIACWod0E_tQ72zs0bOSJHC8s6EpfGm7g6n3XF7AY,4905
10
+ flyte/_excepthook.py,sha256=0pZ1ZQZSRjDSe2f_CuqAiOccq-KfRXYpnsuhYIs_x90,1293
11
+ flyte/_group.py,sha256=7o1j16sZyUmYB50mOiq1ui4TBAKhRpDqLakV8Ya1kw4,803
12
+ flyte/_hash.py,sha256=KMKjoI7SaxXildb-xv6n5Vb32B0csvBiYc06iUe-BrI,137
13
+ flyte/_image.py,sha256=CeiPrdPNjgWGK_L3tLHiQozSydiWMKzfj34lDu3OFDk,41229
14
+ flyte/_initialize.py,sha256=EWxk2fk_vUBZ1Cyv8PcsboQjn94fpvBcAk3JWzKOqaU,21882
15
+ flyte/_interface.py,sha256=hQiN74NF2guU-BAat-yefP-gQ5f4hQSk0OeHUSKUVh0,4910
16
+ flyte/_logging.py,sha256=lkJ9-x4RR6LYvxcf1lLkcLiOiY1DEgEIMTY0ZYCQ-7Y,8871
17
+ flyte/_map.py,sha256=x1wASt3fTuWKaLjE5sABdG9xeHfaUBWvI_RdWy_9jRs,11413
18
+ flyte/_module.py,sha256=Wdm1dpcFSUVkwGGHm6BodE8kAKI8plwHJ1ql5ksidVE,2913
19
+ flyte/_pod.py,sha256=NtXZ70jJVfp8FGastHGVypfTZiYkoKAtj1IVfUEMiv0,1107
20
+ flyte/_resources.py,sha256=r7cP0DW_Lnh2M2Du9v4ujgcH9av6ocGCOH_5PMMRdrk,13779
21
+ flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
22
+ flyte/_reusable_environment.py,sha256=qzmLJlHFiek8_k3EEqxew3837Pe2xjmz3mjGk_xqPEo,4857
23
+ flyte/_run.py,sha256=3PPZ-9ZnphnP0f2PzGcSmLh9FnbFfUUWAYpaNU8w3Zs,29039
24
+ flyte/_secret.py,sha256=wug5NbIYEkXO6FJkqnPRnPoc2nKDerQiemWtRGRi288,3576
25
+ flyte/_task.py,sha256=V1HhFmhJ7kWVTypRCxvDzQF5DQ8Z5AHWvFQSeq5uDSU,23163
26
+ flyte/_task_environment.py,sha256=gUh50v70nVBov-umT-MIUjgiy6banH3n3ay3tjpQ2OM,13713
27
+ flyte/_task_plugins.py,sha256=4KcdSERpQ0yR9q0CO3H2VC84egaj7r1fqHg8YO2xsFM,1093
28
+ flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
29
+ flyte/_tools.py,sha256=lB3OiJSAhxzSMCYjLUF6nZjlFsmNpaRXtr3_Fefcxbg,747
30
+ flyte/_trace.py,sha256=-BIprs2MbupWl3vsC_Pn33SV3fSVku1rUIsnwfmrIy0,5204
31
+ flyte/_trigger.py,sha256=fsDQv-_j7sw0UTdTjMNdtjRSXuSty8ihijYPi0VTf00,28973
32
+ flyte/_version.py,sha256=d9ky8f6d2r_jeRP7NS9ItJnnqTLQCmvb_42i6gwkpOw,722
33
+ flyte/errors.py,sha256=L_05C2BAfDSWqmU6hHnJyzkBQDPcLeIiW6oGZl3sQLw,6965
34
+ flyte/extend.py,sha256=L3LxIziMMUBjUfilF2GNx_JNgA7Y1v_DLIxJFa9wC2E,685
35
+ flyte/models.py,sha256=dqpMq_BGi3_VR1zKK1pw8WckNmDT_4rLWCKu_uhY3Nw,18249
36
+ flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ flyte/_bin/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
39
+ flyte/_bin/runtime.py,sha256=_FymfqibynxcmaGu5HT8XITk_5i2VsUbfpxKUbqenVc,8061
40
+ flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
41
+ flyte/_cache/cache.py,sha256=WmvpvXCzI1leXyjOmG0n4G53BoMy9lI-9Q7WoU0r7RU,5124
42
+ flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
43
+ flyte/_cache/local_cache.py,sha256=czSjM8vpchNxIiuspUH1b_gz_pEBiYT3RkoaA8DppNQ,7044
44
+ flyte/_cache/policy_function_body.py,sha256=_AcyN6XKRXq16yV5lWuRJYCIVUlmyPvvWuYRxfU-Ldo,1507
45
+ flyte/_code_bundle/__init__.py,sha256=G7DJTQ0UN_ETvdh55pYcWsTrZJKXEcyQl9iQQNQOBXQ,328
46
+ flyte/_code_bundle/_ignore.py,sha256=DCw2L_krKRmho7cwLZrrSyAEB1st5tSxHXNKU690S7Q,4137
47
+ flyte/_code_bundle/_packaging.py,sha256=2_4qNb9Qrnfd4MOjYDc_fQGiRsXxzN7LftegWXgLDek,7153
48
+ flyte/_code_bundle/_utils.py,sha256=CC_qWqMvCjjUC7Si7fRFyB27DWLeptvgwgu20zfrJfQ,12620
49
+ flyte/_code_bundle/bundle.py,sha256=0BkBsd-suB9I70Fo8VuDol8k8P_ecSFb3AbRceSeOqI,8987
50
+ flyte/_debug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ flyte/_debug/constants.py,sha256=tI4410tMsCGdgsrCCdk28RAWu6lyTQs7yRvzrRoR1HY,1516
52
+ flyte/_debug/utils.py,sha256=Nc6n1Y_OdLMa4VtvigP6U738D4Fpbuog94g37tPwu6k,596
53
+ flyte/_debug/vscode.py,sha256=XsrXegavYfH52Vr4jYqbLsMQFQKo8cF5DpFpzEGz61I,11298
54
+ flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
55
+ flyte/_internal/controllers/__init__.py,sha256=yNALzu-3YVii_D_GlrBoWUpL4PTLYUa7oIKnA7hbee0,4296
56
+ flyte/_internal/controllers/_local_controller.py,sha256=-W1Mmfx7yhRcjLbm49HfquzDM8taW-NjQon46_Gq5VU,9133
57
+ flyte/_internal/controllers/_trace.py,sha256=WE0DnB9ID0gMw_o-m3JXOhIg-PVrRHqVACKvsemOvSc,1500
58
+ flyte/_internal/controllers/remote/__init__.py,sha256=EkDZ4gpp715M5CMnwpFh9s04jkWowndF9RqhXJ34yRA,1869
59
+ flyte/_internal/controllers/remote/_action.py,sha256=x9ssw_jmU1kO0ZVLrH1Cbp1ZZCLOQfoa2G33uPBJ01g,7452
60
+ flyte/_internal/controllers/remote/_client.py,sha256=_qtnkKCmWIPslu1LUNXOMf_hc6fAfHnvlqFoKUIeihU,1417
61
+ flyte/_internal/controllers/remote/_controller.py,sha256=O2ZxDe-5ZgnLck-j5yhlvzNaAONMkXxvbnfRZZUaous,25336
62
+ flyte/_internal/controllers/remote/_core.py,sha256=3MuiFY-RFhn1WPvINNN9DYVGsmEkL9YgvSVmiRb4GZc,20912
63
+ flyte/_internal/controllers/remote/_informer.py,sha256=m47lZVaYA8nrLVVZ8AIyFJDnNCtw3ahlNyq93IBM1h8,14954
64
+ flyte/_internal/controllers/remote/_service_protocol.py,sha256=c8bBVsKNb84Q7Q50_ttZMf1zKadDP6Z8Qyw3LPfCf-A,1350
65
+ flyte/_internal/imagebuild/__init__.py,sha256=dwXdJ1jMhw9RF8itF7jkPLanvX1yCviSns7hE5eoIts,102
66
+ flyte/_internal/imagebuild/docker_builder.py,sha256=OI-yGsAjYmYDpHwuyz4DbwHGIOBGFN42sm1We_YE1XU,26260
67
+ flyte/_internal/imagebuild/image_builder.py,sha256=FRbeoFFjGLgRybyhN3RLikmxSWQ7giTDKurHisUhFHE,10944
68
+ flyte/_internal/imagebuild/remote_builder.py,sha256=9Tk8bo9elujKxcBuZ-fYqNUMwvoC1yNFE4uhFyw55-k,15641
69
+ flyte/_internal/imagebuild/utils.py,sha256=PpWmrdt8n4RHbI4iK7afTQcyS7tsCc1-geSh9Az3c9w,3311
70
+ flyte/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ flyte/_internal/resolvers/_task_module.py,sha256=7MBMgELgcqZxQQjJP41xyFAJm9-fGK-kwWHmIrm5l9A,804
72
+ flyte/_internal/resolvers/common.py,sha256=ADQLRoyGsJ4vuUkitffMGrMKKjy0vpk6X53g4FuKDLc,993
73
+ flyte/_internal/resolvers/default.py,sha256=NL1jxTL9fUctUhwUXu3PpP2-7sGAblqf51d6FdnMqdw,954
74
+ flyte/_internal/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ flyte/_internal/runtime/convert.py,sha256=Ho5AN-i1NyvhNqHx1rU8n9DaFnQ8nd4mHnTHF4Yql1c,19698
76
+ flyte/_internal/runtime/entrypoints.py,sha256=AYG95URIAOx2dIbSg76aBGps008p9lGpTJ8GCuySdg4,7694
77
+ flyte/_internal/runtime/io.py,sha256=Z5UFkR5QRTlo1gGvU8_SKthWp2FRbDTvsxB1rtLyaa0,6603
78
+ flyte/_internal/runtime/resources_serde.py,sha256=pZd9r8JDm3byyoa9GG-sl1eiPAkKiNlANQMZae3IKrg,5367
79
+ flyte/_internal/runtime/reuse.py,sha256=Z7TU-H4hdWUfD2rMl8iU1pljKLEEvB2YKZPEdQonjvs,4902
80
+ flyte/_internal/runtime/rusty.py,sha256=cbEq2ISfYE93CJclDPGOgZOUKKjvPhdfZHuhmFHWzcI,7648
81
+ flyte/_internal/runtime/task_serde.py,sha256=IiCK53YeO4ZZ53n5unQl1K9pz90WeaFUxQ8BTeh9ZHI,14748
82
+ flyte/_internal/runtime/taskrunner.py,sha256=XXKWaCd1kGaaCXTKxEOVkPVq3hX62-qjV3eY4Ru_fkY,7894
83
+ flyte/_internal/runtime/trigger_serde.py,sha256=8oem0QJNrqA9fKjQZcn-SBbxQI-ey3QE5vK3j8ryJX4,5388
84
+ flyte/_internal/runtime/types_serde.py,sha256=gVUKagPBoQ3Yukce_0DSbiwtyXJGqbwa-0p2zTNDSPc,1814
85
+ flyte/_keyring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
+ flyte/_keyring/file.py,sha256=DPfaNT1Gs5_j1oFfZaGU_myWw8lMagUSeF1kMvnbLVw,4172
87
+ flyte/_utils/__init__.py,sha256=gKIzivo6mLdg5TzVyBIdAiCEMnwfZhYCoz6L1ZmbTX0,871
88
+ flyte/_utils/asyn.py,sha256=TrwAhvt2Jqvfh3ArBnzXi_YLOtHle5D5QzV-AvC6XHI,3728
89
+ flyte/_utils/async_cache.py,sha256=JtZJmWO62OowJ0QFNl6wryWqh-kuDi76aAASMie87QY,4596
90
+ flyte/_utils/coro_management.py,sha256=2XPC1UznYDwJB9_BXMSUjsJmbksiW1JKIU3fNmBWMCI,1030
91
+ flyte/_utils/docker_credentials.py,sha256=mCWfBJuKAFHjdzWK8pFtB_OcdqauJW_1BC-fKNijbys,6049
92
+ flyte/_utils/file_handling.py,sha256=iU4TxW--fCho_Eg5xTMODn96P03SxzF-V-5f-7bZAZY,2233
93
+ flyte/_utils/helpers.py,sha256=9N70yzfLF4lLGEEdOv5OcweEpYtrCvZqqhtzkjZUXNY,4779
94
+ flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
95
+ flyte/_utils/module_loader.py,sha256=lGnPfbxXAeBi5ev5mjSESRrtklAPDEmoDZXNk4VusI8,3654
96
+ flyte/_utils/org_discovery.py,sha256=C7aJa0LfnWBkDtSU9M7bE60zp27qEhJC58piqOErZ94,2088
97
+ flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
98
+ flyte/cli/__init__.py,sha256=aeCcumeP9xD_5aCmaRYUPCe2QRJSGCaxcUbTZ3co768,341
99
+ flyte/cli/_abort.py,sha256=drOg1EyQq0jZP9IpUS4hnqqhKHpml0yGiLH5t3Dg6q4,721
100
+ flyte/cli/_build.py,sha256=R0cgC-C55pdHI73sGxEOjzptcL4gmUmRf7ZmCPr3hdk,3503
101
+ flyte/cli/_common.py,sha256=eohe7aG0OUEhKKilQLKNhMOHYpvtZPyl_oJaaRvM_pc,15661
102
+ flyte/cli/_create.py,sha256=k5q2uSVQ_MoLtLH42XlvjDlGnecLiWA_Bad06Eau0Eo,11776
103
+ flyte/cli/_delete.py,sha256=FErGR5z-1Sbl8JqeSKWFlMnGFJfNcJ2-lAyd_ZLZxdY,1339
104
+ flyte/cli/_deploy.py,sha256=C0qkFF8FfK4EltDrXUidzdWxJG9RObRvMlYG6JJNOkM,10523
105
+ flyte/cli/_gen.py,sha256=7K2eYQLGVr26I2OC3Xe_bzAn4ANYA5mPlBW5m1476PM,6079
106
+ flyte/cli/_get.py,sha256=g53ThkT7qWgWPaxyr-0-WBOKs7vcOtlAjO4INBuSuFc,12136
107
+ flyte/cli/_option.py,sha256=oC1Gs0u0UrOC1SsrFo-iCuAkqQvI1wJWCdjYXA9rW4Q,1445
108
+ flyte/cli/_params.py,sha256=ZCyd714-CKXAzIL3tb3zfheTYpV0aqZFT3YEL3voS4w,20051
109
+ flyte/cli/_plugins.py,sha256=j_17iJXaeGFagDf31cGGbf7VKHCRGNUAAjI7g5FoXgs,8021
110
+ flyte/cli/_run.py,sha256=r6undnhVwEv-U7TvY83Mrab3NzMypnsu7hP7emzB2iQ,20689
111
+ flyte/cli/_serve.py,sha256=ZvDPq5NDkeyvVXxRWt1gKWRlbjRsTIvrQtUAMiHrmUE,1382
112
+ flyte/cli/_update.py,sha256=oEG5hEe1xML6e8Q8k74ejdPjrMZd8b1trjqKNcFLLV0,1115
113
+ flyte/cli/_user.py,sha256=x32vEXpJkV6ONoCCcq7DbCIltHcALcSvm3PalNI57kI,339
114
+ flyte/cli/main.py,sha256=3eSS_Bpz9AWKoGIN-wwP1ZXo2dQVABZ3hKaL7Y3kV28,6267
115
+ flyte/config/__init__.py,sha256=MiwEYK5Iv7MRR22z61nzbsbvZ9Q6MdmAU_g9If1Pmb8,144
116
+ flyte/config/_config.py,sha256=IPfKboFar4CELhdJf583R10gG0PIhzUl1YAAP0ccObc,11109
117
+ flyte/config/_internal.py,sha256=cmRtr6JeIkSfGgw9gloDkTuGpFNdwoUbnBJgbmAhPUE,3055
118
+ flyte/config/_reader.py,sha256=RRGaPkFqDn4b5-xRfiDPvmT78WQtEzUc4N7FPIhEN_0,7707
119
+ flyte/connectors/__init__.py,sha256=LEKk8cl4Z0rL_ibu4TOhB3WJZKDwujNcVQ8SX4tD0MA,306
120
+ flyte/connectors/_connector.py,sha256=K71B2QgOuTFOKXaONb5MIBGG4ahJ-3taJHgXr8717Rk,9863
121
+ flyte/connectors/_server.py,sha256=Fn2zilcq6i3sRyzDXQAj4L6eDwA9MeYZXJzfFl2teaI,8541
122
+ flyte/connectors/utils.py,sha256=5vlvN8O-0I2V7uljdJfR_I82lR8RIQXpcNmApUwp00Y,4583
123
+ flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
124
+ flyte/extras/_container.py,sha256=-JFOPgZu9R1wa4pzvbV4_Gz9MxI2ME6A_2V94dpsHDQ,12128
125
+ flyte/git/__init__.py,sha256=OYDrwq1mZ70xC4QC205s1seFvdk9fjDPSv8DrbopdC8,70
126
+ flyte/git/_config.py,sha256=8PRzAExg8M01cLfRcriwrHT40gky-AQoQiDNjPjiaoc,711
127
+ flyte/io/__init__.py,sha256=42zlMAZwfyvuc1plg4LT9l53y-2HJ4DGThW3h-jmAhk,566
128
+ flyte/io/_dir.py,sha256=l-EFpnP47gt6Y3jeM_beQOpJMPNpBqxVjzdGV9YaYr0,31489
129
+ flyte/io/_file.py,sha256=aMuVCvgpod4rDJ4UrfLKj9jlefDcZ4VON-Zy-tc1ZvY,33352
130
+ flyte/io/_hashing_io.py,sha256=QvhQ4K5jiHgzzPqZY4gFz5Fm-BAzq6bzyCpzXhfnWlk,10014
131
+ flyte/io/_dataframe/__init__.py,sha256=bbc72MKlwwlUXZO2Hc1jmaXtzSx-TE6aIJ3kzYupyoo,4311
132
+ flyte/io/_dataframe/basic_dfs.py,sha256=u-TlWNuKm3bqFp7w4zZWg3QWvUKnks5Gvx0-UsThZN8,8044
133
+ flyte/io/_dataframe/dataframe.py,sha256=ab4f8zrembIMyQSUohKgL5MFtcei0kAuEJjHJpWIAdI,49537
134
+ flyte/remote/__init__.py,sha256=3YJcBJI4tVhAuAsPg68HbuA1yJ00V7PCsMrupgtJFeo,718
135
+ flyte/remote/_action.py,sha256=qJCINAzNjW2uanFllpB6NOTaCOf1jKNr-hrtrrUPnRQ,24333
136
+ flyte/remote/_common.py,sha256=2XLLxWL1NjwfdPQUhOfYn3zMrg-yGNfi6NYIaqHutUA,862
137
+ flyte/remote/_console.py,sha256=9pP_nFFG2OxU_2WkgOhEdFZUMtWhz_opxrUvS9W_uf0,729
138
+ flyte/remote/_data.py,sha256=u74dhiqgcFhlSfsTEkibW6cgfdYTLqoNXTet1P-wQZo,6206
139
+ flyte/remote/_logs.py,sha256=DB4dk4YxCeoaFVilDXLREJ0gnU27TDo7kQ-I6cH-eUk,6699
140
+ flyte/remote/_project.py,sha256=IbkxKRAvZunKLIwpmcreA4O-0GxWC0KPC62WSYvsK34,2868
141
+ flyte/remote/_run.py,sha256=lFoWp1vn-keruKqBLSwxMdRtydXF1TMmL0BRbvNfHHM,12210
142
+ flyte/remote/_secret.py,sha256=hX3_Kgajd_jZunQzzAeLhBDC_vgXNNt5AP1uxj9NeQg,4824
143
+ flyte/remote/_task.py,sha256=kGd7WcwrbQ_76gv9vSfDnayM2vU6VOUXlWliziXFYBI,18890
144
+ flyte/remote/_trigger.py,sha256=UCxiARcuxBUaUtehyHOl5ttWvYMV3-Qv-Kx-t82-alo,9978
145
+ flyte/remote/_user.py,sha256=Fcy2oKep-BAGcqRQUdEi-K6Bu2I2YtECJviGDrzoY7Q,831
146
+ flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
+ flyte/remote/_client/_protocols.py,sha256=SMmQjn6i1w2c0xM8wU5EspzAVZ735JGiKfq4RdLaXqY,6991
148
+ flyte/remote/_client/controlplane.py,sha256=0Qa8I-3E8NKozIjiTFgUOuJp_VzUvemfHUUmndtsGGU,4066
149
+ flyte/remote/_client/auth/__init__.py,sha256=JQrIlwaqPlPzrxcOREhcfyFsC4LrfqL5TRz6A3JNSEA,413
150
+ flyte/remote/_client/auth/_auth_utils.py,sha256=Is6mr18J8AMQlbtu-Q63aMJgrZ27dXXNSig8KshR1_8,545
151
+ flyte/remote/_client/auth/_channel.py,sha256=SHtk8PoBkKx9yBfFTBH88Jvuj4t2uWzzfZwVBsNhgUA,9401
152
+ flyte/remote/_client/auth/_client_config.py,sha256=LhJpznsibAQkVx0emOhBSrfXjis7WkoL695WXHZAJMo,3435
153
+ flyte/remote/_client/auth/_default_html.py,sha256=XAdgP-25WySMODbusWOcQQPiXin1h-hfzmRJv_Dg3tE,1651
154
+ flyte/remote/_client/auth/_keyring.py,sha256=hJ2FxFdi5_FaKLcuqhelxj6Hc1WYQrez4c47qSl5c5A,5681
155
+ flyte/remote/_client/auth/_token_client.py,sha256=FxFaG_DcynQIZfEdAuJUsrcy0OnYbEr4gKLpu8WZHJo,10460
156
+ flyte/remote/_client/auth/errors.py,sha256=ZYS9k4GX_McacKhxHKt5V2A4CWjLUq4RkBx_goDTdHY,390
157
+ flyte/remote/_client/auth/_authenticators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
158
+ flyte/remote/_client/auth/_authenticators/base.py,sha256=LIIYt46j6_ShJRiwjNwNX-LxLiUoG1qbiN0ypyzGedY,17020
159
+ flyte/remote/_client/auth/_authenticators/client_credentials.py,sha256=e9DOFdKEvaM3uSR10lnNuJaOwAcCkZQWZPKv7xUoFsI,3483
160
+ flyte/remote/_client/auth/_authenticators/device_code.py,sha256=YKj0HLT2Gegoc8_mKEOgVRUw_Bp9EtDeTUAvmc3IoMY,4806
161
+ flyte/remote/_client/auth/_authenticators/external_command.py,sha256=IfTJQACPd1xc6htZYC-HdMIx6Q9JHBPw1HUG1Pv6lXg,3838
162
+ flyte/remote/_client/auth/_authenticators/factory.py,sha256=_oBWs7xIG6l13q06V2PUGIDmzU9-XYUK5hx5S6gZjrU,10291
163
+ flyte/remote/_client/auth/_authenticators/pkce.py,sha256=PXbYCmgYGn_LP2EED1O41uzeV4I7L03M1-u3CMRag_M,23097
164
+ flyte/remote/_client/auth/_grpc_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
+ flyte/remote/_client/auth/_grpc_utils/auth_interceptor.py,sha256=JCjdoWV41sjdvfJcUmrJdIfQ0meuGFwv2ArU7FQGDDA,12403
166
+ flyte/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py,sha256=IoMGWM42_VyzxqIVYe458o0uKsqhH-mcERUs9CY1L5U,6194
167
+ flyte/report/__init__.py,sha256=yLbeUxYaVaDlgBod3Oh34zGBSotl1UlXq1vUkb9q7cs,152
168
+ flyte/report/_report.py,sha256=b-VMFke-5SitqGfNEXKTm0PuEPzonWpvlAl5V3wSh4o,5328
169
+ flyte/report/_template.html,sha256=YehmLJG3QMYQ10UT1YZBu2ncVmAJ4iyqVp5hF3sXRAs,3458
170
+ flyte/storage/__init__.py,sha256=Lvss5m16YAxEb_NX73VsSv0LdXzsRpJ0iRwucu1PvfQ,635
171
+ flyte/storage/_config.py,sha256=Pl4i5KSkUJA_4HqDdvQlPn1OxFmVWIxl1bw0tp0mDGM,8871
172
+ flyte/storage/_parallel_reader.py,sha256=vUsPFscw8DykIrWDKh23X-x2gLwp2LUKBsbFhjUEurk,9539
173
+ flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1124
174
+ flyte/storage/_storage.py,sha256=eyV5Eyq__vH0GuXGem9q1UQRlKw1EyaSs-ZmFVAOyfM,16626
175
+ flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
176
+ flyte/syncify/__init__.py,sha256=WgTk-v-SntULnI55CsVy71cxGJ9Q6pxpTrhbPFuouJ0,1974
177
+ flyte/syncify/_api.py,sha256=k4LQB8odJb5Fx2dabL340g0Tq1bKfSG_ZHsV5qRodE0,14858
178
+ flyte/types/__init__.py,sha256=Pt9BmwAPuxGuvrIvpFj3N04tXAp1V3m8bDyJfwoUcT0,2230
179
+ flyte/types/_interface.py,sha256=jBKq7-IRGpkZRwrP4Ex3pDkyN3BmVehP6xlrrkMqOag,1670
180
+ flyte/types/_pickle.py,sha256=qap9ufbudVCPZLAZXu_rDt7KlwOpKwEqxlnjfLf9Nx0,5241
181
+ flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
182
+ flyte/types/_string_literals.py,sha256=Tg14opnmkB7MvfNyUACbcPAeph6vg88aW5yC_G9kPIA,4167
183
+ flyte/types/_type_engine.py,sha256=997leiWW55t8rWbYLnif9hGrgVP2tzpSMfOoF_MSPvg,96036
184
+ flyte/types/_utils.py,sha256=-4M__ImscXMqsySaKDrCBJA-xX-c1-Vbc0_zPVoGRyc,2627
185
+ flyte-2.0.0b30.data/scripts/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
186
+ flyte-2.0.0b30.data/scripts/runtime.py,sha256=_FymfqibynxcmaGu5HT8XITk_5i2VsUbfpxKUbqenVc,8061
187
+ flyte-2.0.0b30.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
188
+ flyte-2.0.0b30.dist-info/METADATA,sha256=BYlgbGVBwXvjps_oj8PUJmHpWxE5j1PX0d3PU9mJO_E,10345
189
+ flyte-2.0.0b30.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
190
+ flyte-2.0.0b30.dist-info/entry_points.txt,sha256=rb43Gfxw40iPH5B6EUs6Ter0ekLkGXsj7R890_MOTyk,136
191
+ flyte-2.0.0b30.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
192
+ flyte-2.0.0b30.dist-info/RECORD,,
@@ -1,3 +1,6 @@
1
1
  [console_scripts]
2
2
  a0 = flyte._bin.runtime:main
3
3
  flyte = flyte.cli.main:main
4
+
5
+ [keyring.backends]
6
+ flyte_keyring_file = flyte._keyring.file
@@ -1,66 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: common/authorization.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 flyte._protos.common import identifier_pb2 as common_dot_identifier__pb2
15
- from flyte._protos.validate.validate import validate_pb2 as validate_dot_validate__pb2
16
-
17
-
18
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x63ommon/authorization.proto\x12\x0f\x63loudidl.common\x1a\x17\x63ommon/identifier.proto\x1a\x17validate/validate.proto\"+\n\x0cOrganization\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\"i\n\x06\x44omain\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12K\n\x0corganization\x18\x02 \x01(\x0b\x32\x1d.cloudidl.common.OrganizationB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x0corganization\"a\n\x07Project\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\x12\x39\n\x06\x64omain\x18\x02 \x01(\x0b\x32\x17.cloudidl.common.DomainB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x06\x64omain\"e\n\x08Workflow\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\x12<\n\x07project\x18\x02 \x01(\x0b\x32\x18.cloudidl.common.ProjectB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x07project\"g\n\nLaunchPlan\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\x12<\n\x07project\x18\x02 \x01(\x0b\x32\x18.cloudidl.common.ProjectB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x07project\"\xfd\x02\n\x08Resource\x12\x43\n\x0corganization\x18\x01 \x01(\x0b\x32\x1d.cloudidl.common.OrganizationH\x00R\x0corganization\x12\x31\n\x06\x64omain\x18\x02 \x01(\x0b\x32\x17.cloudidl.common.DomainH\x00R\x06\x64omain\x12\x34\n\x07project\x18\x03 \x01(\x0b\x32\x18.cloudidl.common.ProjectH\x00R\x07project\x12\x37\n\x08workflow\x18\x04 \x01(\x0b\x32\x19.cloudidl.common.WorkflowH\x00R\x08workflow\x12>\n\x0blaunch_plan\x18\x05 \x01(\x0b\x32\x1b.cloudidl.common.LaunchPlanH\x00R\nlaunchPlan\x12>\n\x07\x63luster\x18\x06 \x01(\x0b\x32\".cloudidl.common.ClusterIdentifierH\x00R\x07\x63lusterB\n\n\x08resource\"v\n\nPermission\x12\x35\n\x08resource\x18\x01 \x01(\x0b\x32\x19.cloudidl.common.ResourceR\x08resource\x12\x31\n\x07\x61\x63tions\x18\x02 \x03(\x0e\x32\x17.cloudidl.common.ActionR\x07\x61\x63tions*\x94\x04\n\x06\x41\x63tion\x12\x0f\n\x0b\x41\x43TION_NONE\x10\x00\x12\x15\n\rACTION_CREATE\x10\x01\x1a\x02\x08\x01\x12\x13\n\x0b\x41\x43TION_READ\x10\x02\x1a\x02\x08\x01\x12\x15\n\rACTION_UPDATE\x10\x03\x1a\x02\x08\x01\x12\x15\n\rACTION_DELETE\x10\x04\x1a\x02\x08\x01\x12\x1f\n\x1b\x41\x43TION_VIEW_FLYTE_INVENTORY\x10\x05\x12 \n\x1c\x41\x43TION_VIEW_FLYTE_EXECUTIONS\x10\x06\x12#\n\x1f\x41\x43TION_REGISTER_FLYTE_INVENTORY\x10\x07\x12\"\n\x1e\x41\x43TION_CREATE_FLYTE_EXECUTIONS\x10\x08\x12\x1d\n\x19\x41\x43TION_ADMINISTER_PROJECT\x10\t\x12\x1d\n\x19\x41\x43TION_MANAGE_PERMISSIONS\x10\n\x12\x1d\n\x19\x41\x43TION_ADMINISTER_ACCOUNT\x10\x0b\x12\x19\n\x15\x41\x43TION_MANAGE_CLUSTER\x10\x0c\x12,\n(ACTION_EDIT_EXECUTION_RELATED_ATTRIBUTES\x10\r\x12*\n&ACTION_EDIT_CLUSTER_RELATED_ATTRIBUTES\x10\x0e\x12!\n\x1d\x41\x43TION_EDIT_UNUSED_ATTRIBUTES\x10\x0f\x12\x1e\n\x1a\x41\x43TION_SUPPORT_SYSTEM_LOGS\x10\x10\x42\xb3\x01\n\x13\x63om.cloudidl.commonB\x12\x41uthorizationProtoH\x02P\x01Z)github.com/unionai/cloud/gen/pb-go/common\xa2\x02\x03\x43\x43X\xaa\x02\x0f\x43loudidl.Common\xca\x02\x0f\x43loudidl\\Common\xe2\x02\x1b\x43loudidl\\Common\\GPBMetadata\xea\x02\x10\x43loudidl::Commonb\x06proto3')
19
-
20
- _globals = globals()
21
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
22
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'common.authorization_pb2', _globals)
23
- if _descriptor._USE_C_DESCRIPTORS == False:
24
- DESCRIPTOR._options = None
25
- DESCRIPTOR._serialized_options = b'\n\023com.cloudidl.commonB\022AuthorizationProtoH\002P\001Z)github.com/unionai/cloud/gen/pb-go/common\242\002\003CCX\252\002\017Cloudidl.Common\312\002\017Cloudidl\\Common\342\002\033Cloudidl\\Common\\GPBMetadata\352\002\020Cloudidl::Common'
26
- _ACTION.values_by_name["ACTION_CREATE"]._options = None
27
- _ACTION.values_by_name["ACTION_CREATE"]._serialized_options = b'\010\001'
28
- _ACTION.values_by_name["ACTION_READ"]._options = None
29
- _ACTION.values_by_name["ACTION_READ"]._serialized_options = b'\010\001'
30
- _ACTION.values_by_name["ACTION_UPDATE"]._options = None
31
- _ACTION.values_by_name["ACTION_UPDATE"]._serialized_options = b'\010\001'
32
- _ACTION.values_by_name["ACTION_DELETE"]._options = None
33
- _ACTION.values_by_name["ACTION_DELETE"]._serialized_options = b'\010\001'
34
- _ORGANIZATION.fields_by_name['name']._options = None
35
- _ORGANIZATION.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
36
- _DOMAIN.fields_by_name['organization']._options = None
37
- _DOMAIN.fields_by_name['organization']._serialized_options = b'\372B\005\212\001\002\020\001'
38
- _PROJECT.fields_by_name['name']._options = None
39
- _PROJECT.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
40
- _PROJECT.fields_by_name['domain']._options = None
41
- _PROJECT.fields_by_name['domain']._serialized_options = b'\372B\005\212\001\002\020\001'
42
- _WORKFLOW.fields_by_name['name']._options = None
43
- _WORKFLOW.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
44
- _WORKFLOW.fields_by_name['project']._options = None
45
- _WORKFLOW.fields_by_name['project']._serialized_options = b'\372B\005\212\001\002\020\001'
46
- _LAUNCHPLAN.fields_by_name['name']._options = None
47
- _LAUNCHPLAN.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
48
- _LAUNCHPLAN.fields_by_name['project']._options = None
49
- _LAUNCHPLAN.fields_by_name['project']._serialized_options = b'\372B\005\212\001\002\020\001'
50
- _globals['_ACTION']._serialized_start=1061
51
- _globals['_ACTION']._serialized_end=1593
52
- _globals['_ORGANIZATION']._serialized_start=97
53
- _globals['_ORGANIZATION']._serialized_end=140
54
- _globals['_DOMAIN']._serialized_start=142
55
- _globals['_DOMAIN']._serialized_end=247
56
- _globals['_PROJECT']._serialized_start=249
57
- _globals['_PROJECT']._serialized_end=346
58
- _globals['_WORKFLOW']._serialized_start=348
59
- _globals['_WORKFLOW']._serialized_end=449
60
- _globals['_LAUNCHPLAN']._serialized_start=451
61
- _globals['_LAUNCHPLAN']._serialized_end=554
62
- _globals['_RESOURCE']._serialized_start=557
63
- _globals['_RESOURCE']._serialized_end=938
64
- _globals['_PERMISSION']._serialized_start=940
65
- _globals['_PERMISSION']._serialized_end=1058
66
- # @@protoc_insertion_point(module_scope)
@@ -1,108 +0,0 @@
1
- from flyte._protos.common import identifier_pb2 as _identifier_pb2
2
- from flyte._protos.validate.validate import validate_pb2 as _validate_pb2
3
- from google.protobuf.internal import containers as _containers
4
- from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
5
- from google.protobuf import descriptor as _descriptor
6
- from google.protobuf import message as _message
7
- from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
8
-
9
- DESCRIPTOR: _descriptor.FileDescriptor
10
-
11
- class Action(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
12
- __slots__ = []
13
- ACTION_NONE: _ClassVar[Action]
14
- ACTION_CREATE: _ClassVar[Action]
15
- ACTION_READ: _ClassVar[Action]
16
- ACTION_UPDATE: _ClassVar[Action]
17
- ACTION_DELETE: _ClassVar[Action]
18
- ACTION_VIEW_FLYTE_INVENTORY: _ClassVar[Action]
19
- ACTION_VIEW_FLYTE_EXECUTIONS: _ClassVar[Action]
20
- ACTION_REGISTER_FLYTE_INVENTORY: _ClassVar[Action]
21
- ACTION_CREATE_FLYTE_EXECUTIONS: _ClassVar[Action]
22
- ACTION_ADMINISTER_PROJECT: _ClassVar[Action]
23
- ACTION_MANAGE_PERMISSIONS: _ClassVar[Action]
24
- ACTION_ADMINISTER_ACCOUNT: _ClassVar[Action]
25
- ACTION_MANAGE_CLUSTER: _ClassVar[Action]
26
- ACTION_EDIT_EXECUTION_RELATED_ATTRIBUTES: _ClassVar[Action]
27
- ACTION_EDIT_CLUSTER_RELATED_ATTRIBUTES: _ClassVar[Action]
28
- ACTION_EDIT_UNUSED_ATTRIBUTES: _ClassVar[Action]
29
- ACTION_SUPPORT_SYSTEM_LOGS: _ClassVar[Action]
30
- ACTION_NONE: Action
31
- ACTION_CREATE: Action
32
- ACTION_READ: Action
33
- ACTION_UPDATE: Action
34
- ACTION_DELETE: Action
35
- ACTION_VIEW_FLYTE_INVENTORY: Action
36
- ACTION_VIEW_FLYTE_EXECUTIONS: Action
37
- ACTION_REGISTER_FLYTE_INVENTORY: Action
38
- ACTION_CREATE_FLYTE_EXECUTIONS: Action
39
- ACTION_ADMINISTER_PROJECT: Action
40
- ACTION_MANAGE_PERMISSIONS: Action
41
- ACTION_ADMINISTER_ACCOUNT: Action
42
- ACTION_MANAGE_CLUSTER: Action
43
- ACTION_EDIT_EXECUTION_RELATED_ATTRIBUTES: Action
44
- ACTION_EDIT_CLUSTER_RELATED_ATTRIBUTES: Action
45
- ACTION_EDIT_UNUSED_ATTRIBUTES: Action
46
- ACTION_SUPPORT_SYSTEM_LOGS: Action
47
-
48
- class Organization(_message.Message):
49
- __slots__ = ["name"]
50
- NAME_FIELD_NUMBER: _ClassVar[int]
51
- name: str
52
- def __init__(self, name: _Optional[str] = ...) -> None: ...
53
-
54
- class Domain(_message.Message):
55
- __slots__ = ["name", "organization"]
56
- NAME_FIELD_NUMBER: _ClassVar[int]
57
- ORGANIZATION_FIELD_NUMBER: _ClassVar[int]
58
- name: str
59
- organization: Organization
60
- def __init__(self, name: _Optional[str] = ..., organization: _Optional[_Union[Organization, _Mapping]] = ...) -> None: ...
61
-
62
- class Project(_message.Message):
63
- __slots__ = ["name", "domain"]
64
- NAME_FIELD_NUMBER: _ClassVar[int]
65
- DOMAIN_FIELD_NUMBER: _ClassVar[int]
66
- name: str
67
- domain: Domain
68
- def __init__(self, name: _Optional[str] = ..., domain: _Optional[_Union[Domain, _Mapping]] = ...) -> None: ...
69
-
70
- class Workflow(_message.Message):
71
- __slots__ = ["name", "project"]
72
- NAME_FIELD_NUMBER: _ClassVar[int]
73
- PROJECT_FIELD_NUMBER: _ClassVar[int]
74
- name: str
75
- project: Project
76
- def __init__(self, name: _Optional[str] = ..., project: _Optional[_Union[Project, _Mapping]] = ...) -> None: ...
77
-
78
- class LaunchPlan(_message.Message):
79
- __slots__ = ["name", "project"]
80
- NAME_FIELD_NUMBER: _ClassVar[int]
81
- PROJECT_FIELD_NUMBER: _ClassVar[int]
82
- name: str
83
- project: Project
84
- def __init__(self, name: _Optional[str] = ..., project: _Optional[_Union[Project, _Mapping]] = ...) -> None: ...
85
-
86
- class Resource(_message.Message):
87
- __slots__ = ["organization", "domain", "project", "workflow", "launch_plan", "cluster"]
88
- ORGANIZATION_FIELD_NUMBER: _ClassVar[int]
89
- DOMAIN_FIELD_NUMBER: _ClassVar[int]
90
- PROJECT_FIELD_NUMBER: _ClassVar[int]
91
- WORKFLOW_FIELD_NUMBER: _ClassVar[int]
92
- LAUNCH_PLAN_FIELD_NUMBER: _ClassVar[int]
93
- CLUSTER_FIELD_NUMBER: _ClassVar[int]
94
- organization: Organization
95
- domain: Domain
96
- project: Project
97
- workflow: Workflow
98
- launch_plan: LaunchPlan
99
- cluster: _identifier_pb2.ClusterIdentifier
100
- def __init__(self, organization: _Optional[_Union[Organization, _Mapping]] = ..., domain: _Optional[_Union[Domain, _Mapping]] = ..., project: _Optional[_Union[Project, _Mapping]] = ..., workflow: _Optional[_Union[Workflow, _Mapping]] = ..., launch_plan: _Optional[_Union[LaunchPlan, _Mapping]] = ..., cluster: _Optional[_Union[_identifier_pb2.ClusterIdentifier, _Mapping]] = ...) -> None: ...
101
-
102
- class Permission(_message.Message):
103
- __slots__ = ["resource", "actions"]
104
- RESOURCE_FIELD_NUMBER: _ClassVar[int]
105
- ACTIONS_FIELD_NUMBER: _ClassVar[int]
106
- resource: Resource
107
- actions: _containers.RepeatedScalarFieldContainer[Action]
108
- def __init__(self, resource: _Optional[_Union[Resource, _Mapping]] = ..., actions: _Optional[_Iterable[_Union[Action, str]]] = ...) -> None: ...
@@ -1,4 +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
-
@@ -1,93 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: common/identifier.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 flyte._protos.validate.validate import validate_pb2 as validate_dot_validate__pb2
15
-
16
-
17
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x17\x63ommon/identifier.proto\x12\x0f\x63loudidl.common\x1a\x17validate/validate.proto\"~\n\x11ProjectIdentifier\x12+\n\x0corganization\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x0corganization\x12\x1f\n\x06\x64omain\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x06\x64omain\x12\x1b\n\x04name\x18\x03 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\"T\n\x11\x43lusterIdentifier\x12\"\n\x0corganization\x18\x01 \x01(\tR\x0corganization\x12\x1b\n\x04name\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\"O\n\x15\x43lusterPoolIdentifier\x12\"\n\x0corganization\x18\x01 \x01(\tR\x0corganization\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"_\n\x17\x43lusterConfigIdentifier\x12+\n\x0corganization\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x0corganization\x12\x17\n\x02id\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x02id\"3\n\x0eUserIdentifier\x12!\n\x07subject\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x07subject\":\n\x15\x41pplicationIdentifier\x12!\n\x07subject\x18\x01 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x07subject\"Q\n\x0eRoleIdentifier\x12\"\n\x0corganization\x18\x01 \x01(\tR\x0corganization\x12\x1b\n\x04name\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\"O\n\rOrgIdentifier\x12>\n\x04name\x18\x01 \x01(\tB*\xfa\x42\'r%\x10\x01\x18?2\x1f^[a-z0-9]([-a-z0-9]*[a-z0-9])?$R\x04name\"y\n\x18ManagedClusterIdentifier\x12\x1b\n\x04name\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\x12:\n\x03org\x18\x03 \x01(\x0b\x32\x1e.cloudidl.common.OrgIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x03orgJ\x04\x08\x01\x10\x02\"S\n\x10PolicyIdentifier\x12\"\n\x0corganization\x18\x01 \x01(\tR\x0corganization\x12\x1b\n\x04name\x18\x02 \x01(\tB\x07\xfa\x42\x04r\x02\x10\x01R\x04name\"\x93\x01\n\rRunIdentifier\x12\x1b\n\x03org\x18\x01 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x03org\x12#\n\x07project\x18\x02 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x07project\x12!\n\x06\x64omain\x18\x03 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18?R\x06\x64omain\x12\x1d\n\x04name\x18\x04 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18\x1eR\x04name\"m\n\x10\x41\x63tionIdentifier\x12:\n\x03run\x18\x01 \x01(\x0b\x32\x1e.cloudidl.common.RunIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x03run\x12\x1d\n\x04name\x18\x02 \x01(\tB\t\xfa\x42\x06r\x04\x10\x01\x18\x1eR\x04name\"\x86\x01\n\x17\x41\x63tionAttemptIdentifier\x12H\n\taction_id\x18\x01 \x01(\x0b\x32!.cloudidl.common.ActionIdentifierB\x08\xfa\x42\x05\x8a\x01\x02\x10\x01R\x08\x61\x63tionId\x12!\n\x07\x61ttempt\x18\x02 \x01(\rB\x07\xfa\x42\x04*\x02 \x00R\x07\x61ttemptB\xb0\x01\n\x13\x63om.cloudidl.commonB\x0fIdentifierProtoH\x02P\x01Z)github.com/unionai/cloud/gen/pb-go/common\xa2\x02\x03\x43\x43X\xaa\x02\x0f\x43loudidl.Common\xca\x02\x0f\x43loudidl\\Common\xe2\x02\x1b\x43loudidl\\Common\\GPBMetadata\xea\x02\x10\x43loudidl::Commonb\x06proto3')
18
-
19
- _globals = globals()
20
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
21
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'common.identifier_pb2', _globals)
22
- if _descriptor._USE_C_DESCRIPTORS == False:
23
- DESCRIPTOR._options = None
24
- DESCRIPTOR._serialized_options = b'\n\023com.cloudidl.commonB\017IdentifierProtoH\002P\001Z)github.com/unionai/cloud/gen/pb-go/common\242\002\003CCX\252\002\017Cloudidl.Common\312\002\017Cloudidl\\Common\342\002\033Cloudidl\\Common\\GPBMetadata\352\002\020Cloudidl::Common'
25
- _PROJECTIDENTIFIER.fields_by_name['organization']._options = None
26
- _PROJECTIDENTIFIER.fields_by_name['organization']._serialized_options = b'\372B\004r\002\020\001'
27
- _PROJECTIDENTIFIER.fields_by_name['domain']._options = None
28
- _PROJECTIDENTIFIER.fields_by_name['domain']._serialized_options = b'\372B\004r\002\020\001'
29
- _PROJECTIDENTIFIER.fields_by_name['name']._options = None
30
- _PROJECTIDENTIFIER.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
31
- _CLUSTERIDENTIFIER.fields_by_name['name']._options = None
32
- _CLUSTERIDENTIFIER.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
33
- _CLUSTERCONFIGIDENTIFIER.fields_by_name['organization']._options = None
34
- _CLUSTERCONFIGIDENTIFIER.fields_by_name['organization']._serialized_options = b'\372B\004r\002\020\001'
35
- _CLUSTERCONFIGIDENTIFIER.fields_by_name['id']._options = None
36
- _CLUSTERCONFIGIDENTIFIER.fields_by_name['id']._serialized_options = b'\372B\004r\002\020\001'
37
- _USERIDENTIFIER.fields_by_name['subject']._options = None
38
- _USERIDENTIFIER.fields_by_name['subject']._serialized_options = b'\372B\004r\002\020\001'
39
- _APPLICATIONIDENTIFIER.fields_by_name['subject']._options = None
40
- _APPLICATIONIDENTIFIER.fields_by_name['subject']._serialized_options = b'\372B\004r\002\020\001'
41
- _ROLEIDENTIFIER.fields_by_name['name']._options = None
42
- _ROLEIDENTIFIER.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
43
- _ORGIDENTIFIER.fields_by_name['name']._options = None
44
- _ORGIDENTIFIER.fields_by_name['name']._serialized_options = b'\372B\'r%\020\001\030?2\037^[a-z0-9]([-a-z0-9]*[a-z0-9])?$'
45
- _MANAGEDCLUSTERIDENTIFIER.fields_by_name['name']._options = None
46
- _MANAGEDCLUSTERIDENTIFIER.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
47
- _MANAGEDCLUSTERIDENTIFIER.fields_by_name['org']._options = None
48
- _MANAGEDCLUSTERIDENTIFIER.fields_by_name['org']._serialized_options = b'\372B\005\212\001\002\020\001'
49
- _POLICYIDENTIFIER.fields_by_name['name']._options = None
50
- _POLICYIDENTIFIER.fields_by_name['name']._serialized_options = b'\372B\004r\002\020\001'
51
- _RUNIDENTIFIER.fields_by_name['org']._options = None
52
- _RUNIDENTIFIER.fields_by_name['org']._serialized_options = b'\372B\006r\004\020\001\030?'
53
- _RUNIDENTIFIER.fields_by_name['project']._options = None
54
- _RUNIDENTIFIER.fields_by_name['project']._serialized_options = b'\372B\006r\004\020\001\030?'
55
- _RUNIDENTIFIER.fields_by_name['domain']._options = None
56
- _RUNIDENTIFIER.fields_by_name['domain']._serialized_options = b'\372B\006r\004\020\001\030?'
57
- _RUNIDENTIFIER.fields_by_name['name']._options = None
58
- _RUNIDENTIFIER.fields_by_name['name']._serialized_options = b'\372B\006r\004\020\001\030\036'
59
- _ACTIONIDENTIFIER.fields_by_name['run']._options = None
60
- _ACTIONIDENTIFIER.fields_by_name['run']._serialized_options = b'\372B\005\212\001\002\020\001'
61
- _ACTIONIDENTIFIER.fields_by_name['name']._options = None
62
- _ACTIONIDENTIFIER.fields_by_name['name']._serialized_options = b'\372B\006r\004\020\001\030\036'
63
- _ACTIONATTEMPTIDENTIFIER.fields_by_name['action_id']._options = None
64
- _ACTIONATTEMPTIDENTIFIER.fields_by_name['action_id']._serialized_options = b'\372B\005\212\001\002\020\001'
65
- _ACTIONATTEMPTIDENTIFIER.fields_by_name['attempt']._options = None
66
- _ACTIONATTEMPTIDENTIFIER.fields_by_name['attempt']._serialized_options = b'\372B\004*\002 \000'
67
- _globals['_PROJECTIDENTIFIER']._serialized_start=69
68
- _globals['_PROJECTIDENTIFIER']._serialized_end=195
69
- _globals['_CLUSTERIDENTIFIER']._serialized_start=197
70
- _globals['_CLUSTERIDENTIFIER']._serialized_end=281
71
- _globals['_CLUSTERPOOLIDENTIFIER']._serialized_start=283
72
- _globals['_CLUSTERPOOLIDENTIFIER']._serialized_end=362
73
- _globals['_CLUSTERCONFIGIDENTIFIER']._serialized_start=364
74
- _globals['_CLUSTERCONFIGIDENTIFIER']._serialized_end=459
75
- _globals['_USERIDENTIFIER']._serialized_start=461
76
- _globals['_USERIDENTIFIER']._serialized_end=512
77
- _globals['_APPLICATIONIDENTIFIER']._serialized_start=514
78
- _globals['_APPLICATIONIDENTIFIER']._serialized_end=572
79
- _globals['_ROLEIDENTIFIER']._serialized_start=574
80
- _globals['_ROLEIDENTIFIER']._serialized_end=655
81
- _globals['_ORGIDENTIFIER']._serialized_start=657
82
- _globals['_ORGIDENTIFIER']._serialized_end=736
83
- _globals['_MANAGEDCLUSTERIDENTIFIER']._serialized_start=738
84
- _globals['_MANAGEDCLUSTERIDENTIFIER']._serialized_end=859
85
- _globals['_POLICYIDENTIFIER']._serialized_start=861
86
- _globals['_POLICYIDENTIFIER']._serialized_end=944
87
- _globals['_RUNIDENTIFIER']._serialized_start=947
88
- _globals['_RUNIDENTIFIER']._serialized_end=1094
89
- _globals['_ACTIONIDENTIFIER']._serialized_start=1096
90
- _globals['_ACTIONIDENTIFIER']._serialized_end=1205
91
- _globals['_ACTIONATTEMPTIDENTIFIER']._serialized_start=1208
92
- _globals['_ACTIONATTEMPTIDENTIFIER']._serialized_end=1342
93
- # @@protoc_insertion_point(module_scope)
@@ -1,110 +0,0 @@
1
- from flyte._protos.validate.validate import validate_pb2 as _validate_pb2
2
- from google.protobuf import descriptor as _descriptor
3
- from google.protobuf import message as _message
4
- from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
-
6
- DESCRIPTOR: _descriptor.FileDescriptor
7
-
8
- class ProjectIdentifier(_message.Message):
9
- __slots__ = ["organization", "domain", "name"]
10
- ORGANIZATION_FIELD_NUMBER: _ClassVar[int]
11
- DOMAIN_FIELD_NUMBER: _ClassVar[int]
12
- NAME_FIELD_NUMBER: _ClassVar[int]
13
- organization: str
14
- domain: str
15
- name: str
16
- def __init__(self, organization: _Optional[str] = ..., domain: _Optional[str] = ..., name: _Optional[str] = ...) -> None: ...
17
-
18
- class ClusterIdentifier(_message.Message):
19
- __slots__ = ["organization", "name"]
20
- ORGANIZATION_FIELD_NUMBER: _ClassVar[int]
21
- NAME_FIELD_NUMBER: _ClassVar[int]
22
- organization: str
23
- name: str
24
- def __init__(self, organization: _Optional[str] = ..., name: _Optional[str] = ...) -> None: ...
25
-
26
- class ClusterPoolIdentifier(_message.Message):
27
- __slots__ = ["organization", "name"]
28
- ORGANIZATION_FIELD_NUMBER: _ClassVar[int]
29
- NAME_FIELD_NUMBER: _ClassVar[int]
30
- organization: str
31
- name: str
32
- def __init__(self, organization: _Optional[str] = ..., name: _Optional[str] = ...) -> None: ...
33
-
34
- class ClusterConfigIdentifier(_message.Message):
35
- __slots__ = ["organization", "id"]
36
- ORGANIZATION_FIELD_NUMBER: _ClassVar[int]
37
- ID_FIELD_NUMBER: _ClassVar[int]
38
- organization: str
39
- id: str
40
- def __init__(self, organization: _Optional[str] = ..., id: _Optional[str] = ...) -> None: ...
41
-
42
- class UserIdentifier(_message.Message):
43
- __slots__ = ["subject"]
44
- SUBJECT_FIELD_NUMBER: _ClassVar[int]
45
- subject: str
46
- def __init__(self, subject: _Optional[str] = ...) -> None: ...
47
-
48
- class ApplicationIdentifier(_message.Message):
49
- __slots__ = ["subject"]
50
- SUBJECT_FIELD_NUMBER: _ClassVar[int]
51
- subject: str
52
- def __init__(self, subject: _Optional[str] = ...) -> None: ...
53
-
54
- class RoleIdentifier(_message.Message):
55
- __slots__ = ["organization", "name"]
56
- ORGANIZATION_FIELD_NUMBER: _ClassVar[int]
57
- NAME_FIELD_NUMBER: _ClassVar[int]
58
- organization: str
59
- name: str
60
- def __init__(self, organization: _Optional[str] = ..., name: _Optional[str] = ...) -> None: ...
61
-
62
- class OrgIdentifier(_message.Message):
63
- __slots__ = ["name"]
64
- NAME_FIELD_NUMBER: _ClassVar[int]
65
- name: str
66
- def __init__(self, name: _Optional[str] = ...) -> None: ...
67
-
68
- class ManagedClusterIdentifier(_message.Message):
69
- __slots__ = ["name", "org"]
70
- NAME_FIELD_NUMBER: _ClassVar[int]
71
- ORG_FIELD_NUMBER: _ClassVar[int]
72
- name: str
73
- org: OrgIdentifier
74
- def __init__(self, name: _Optional[str] = ..., org: _Optional[_Union[OrgIdentifier, _Mapping]] = ...) -> None: ...
75
-
76
- class PolicyIdentifier(_message.Message):
77
- __slots__ = ["organization", "name"]
78
- ORGANIZATION_FIELD_NUMBER: _ClassVar[int]
79
- NAME_FIELD_NUMBER: _ClassVar[int]
80
- organization: str
81
- name: str
82
- def __init__(self, organization: _Optional[str] = ..., name: _Optional[str] = ...) -> None: ...
83
-
84
- class RunIdentifier(_message.Message):
85
- __slots__ = ["org", "project", "domain", "name"]
86
- ORG_FIELD_NUMBER: _ClassVar[int]
87
- PROJECT_FIELD_NUMBER: _ClassVar[int]
88
- DOMAIN_FIELD_NUMBER: _ClassVar[int]
89
- NAME_FIELD_NUMBER: _ClassVar[int]
90
- org: str
91
- project: str
92
- domain: str
93
- name: str
94
- def __init__(self, org: _Optional[str] = ..., project: _Optional[str] = ..., domain: _Optional[str] = ..., name: _Optional[str] = ...) -> None: ...
95
-
96
- class ActionIdentifier(_message.Message):
97
- __slots__ = ["run", "name"]
98
- RUN_FIELD_NUMBER: _ClassVar[int]
99
- NAME_FIELD_NUMBER: _ClassVar[int]
100
- run: RunIdentifier
101
- name: str
102
- def __init__(self, run: _Optional[_Union[RunIdentifier, _Mapping]] = ..., name: _Optional[str] = ...) -> None: ...
103
-
104
- class ActionAttemptIdentifier(_message.Message):
105
- __slots__ = ["action_id", "attempt"]
106
- ACTION_ID_FIELD_NUMBER: _ClassVar[int]
107
- ATTEMPT_FIELD_NUMBER: _ClassVar[int]
108
- action_id: ActionIdentifier
109
- attempt: int
110
- def __init__(self, action_id: _Optional[_Union[ActionIdentifier, _Mapping]] = ..., attempt: _Optional[int] = ...) -> None: ...
@@ -1,4 +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
-