metalstack.cloud 0.15.2__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 (111) hide show
  1. buf/__init__.py +0 -0
  2. buf/validate/__init__.py +0 -0
  3. buf/validate/validate_pb2.py +450 -0
  4. buf/validate/validate_pb2.pyi +631 -0
  5. buf/validate/validate_pb2_grpc.py +4 -0
  6. metalstack_cloud-0.15.2.dist-info/METADATA +26 -0
  7. metalstack_cloud-0.15.2.dist-info/RECORD +111 -0
  8. metalstack_cloud-0.15.2.dist-info/WHEEL +5 -0
  9. metalstack_cloud-0.15.2.dist-info/top_level.txt +2 -0
  10. metalstackcloud/__init__.py +0 -0
  11. metalstackcloud/admin/__init__.py +0 -0
  12. metalstackcloud/admin/v1/__init__.py +0 -0
  13. metalstackcloud/admin/v1/cluster_connecpy.py +214 -0
  14. metalstackcloud/admin/v1/cluster_pb2.py +70 -0
  15. metalstackcloud/admin/v1/cluster_pb2.pyi +93 -0
  16. metalstackcloud/admin/v1/cluster_pb2_grpc.py +169 -0
  17. metalstackcloud/admin/v1/machine_pb2.py +42 -0
  18. metalstackcloud/admin/v1/machine_pb2.pyi +76 -0
  19. metalstackcloud/admin/v1/machine_pb2_grpc.py +4 -0
  20. metalstackcloud/admin/v1/payment_connecpy.py +158 -0
  21. metalstackcloud/admin/v1/payment_pb2.py +51 -0
  22. metalstackcloud/admin/v1/payment_pb2.pyi +33 -0
  23. metalstackcloud/admin/v1/payment_pb2_grpc.py +125 -0
  24. metalstackcloud/admin/v1/project_connecpy.py +102 -0
  25. metalstackcloud/admin/v1/project_pb2.py +49 -0
  26. metalstackcloud/admin/v1/project_pb2.pyi +34 -0
  27. metalstackcloud/admin/v1/project_pb2_grpc.py +81 -0
  28. metalstackcloud/admin/v1/storage_connecpy.py +214 -0
  29. metalstackcloud/admin/v1/storage_pb2.py +75 -0
  30. metalstackcloud/admin/v1/storage_pb2.pyi +149 -0
  31. metalstackcloud/admin/v1/storage_pb2_grpc.py +169 -0
  32. metalstackcloud/admin/v1/tenant_connecpy.py +270 -0
  33. metalstackcloud/admin/v1/tenant_pb2.py +66 -0
  34. metalstackcloud/admin/v1/tenant_pb2.pyi +72 -0
  35. metalstackcloud/admin/v1/tenant_pb2_grpc.py +213 -0
  36. metalstackcloud/admin/v1/token_connecpy.py +158 -0
  37. metalstackcloud/admin/v1/token_pb2.py +56 -0
  38. metalstackcloud/admin/v1/token_pb2.pyi +34 -0
  39. metalstackcloud/admin/v1/token_pb2_grpc.py +125 -0
  40. metalstackcloud/api/__init__.py +0 -0
  41. metalstackcloud/api/v1/__init__.py +0 -0
  42. metalstackcloud/api/v1/asset_connecpy.py +102 -0
  43. metalstackcloud/api/v1/asset_pb2.py +76 -0
  44. metalstackcloud/api/v1/asset_pb2.pyi +132 -0
  45. metalstackcloud/api/v1/asset_pb2_grpc.py +81 -0
  46. metalstackcloud/api/v1/audit_connecpy.py +158 -0
  47. metalstackcloud/api/v1/audit_pb2.py +84 -0
  48. metalstackcloud/api/v1/audit_pb2.pyi +95 -0
  49. metalstackcloud/api/v1/audit_pb2_grpc.py +125 -0
  50. metalstackcloud/api/v1/cluster_connecpy.py +494 -0
  51. metalstackcloud/api/v1/cluster_pb2.py +183 -0
  52. metalstackcloud/api/v1/cluster_pb2.pyi +311 -0
  53. metalstackcloud/api/v1/cluster_pb2_grpc.py +389 -0
  54. metalstackcloud/api/v1/common_pb2.py +52 -0
  55. metalstackcloud/api/v1/common_pb2.pyi +98 -0
  56. metalstackcloud/api/v1/common_pb2_grpc.py +4 -0
  57. metalstackcloud/api/v1/health_connecpy.py +102 -0
  58. metalstackcloud/api/v1/health_pb2.py +58 -0
  59. metalstackcloud/api/v1/health_pb2.pyi +74 -0
  60. metalstackcloud/api/v1/health_pb2_grpc.py +81 -0
  61. metalstackcloud/api/v1/ip_connecpy.py +326 -0
  62. metalstackcloud/api/v1/ip_pb2.py +110 -0
  63. metalstackcloud/api/v1/ip_pb2.pyi +122 -0
  64. metalstackcloud/api/v1/ip_pb2_grpc.py +257 -0
  65. metalstackcloud/api/v1/method_connecpy.py +158 -0
  66. metalstackcloud/api/v1/method_pb2.py +62 -0
  67. metalstackcloud/api/v1/method_pb2.pyi +50 -0
  68. metalstackcloud/api/v1/method_pb2_grpc.py +128 -0
  69. metalstackcloud/api/v1/payment_connecpy.py +550 -0
  70. metalstackcloud/api/v1/payment_pb2.py +134 -0
  71. metalstackcloud/api/v1/payment_pb2.pyi +291 -0
  72. metalstackcloud/api/v1/payment_pb2_grpc.py +433 -0
  73. metalstackcloud/api/v1/project_connecpy.py +718 -0
  74. metalstackcloud/api/v1/project_pb2.py +156 -0
  75. metalstackcloud/api/v1/project_pb2.pyi +234 -0
  76. metalstackcloud/api/v1/project_pb2_grpc.py +565 -0
  77. metalstackcloud/api/v1/snapshot_connecpy.py +214 -0
  78. metalstackcloud/api/v1/snapshot_pb2.py +75 -0
  79. metalstackcloud/api/v1/snapshot_pb2.pyi +109 -0
  80. metalstackcloud/api/v1/snapshot_pb2_grpc.py +169 -0
  81. metalstackcloud/api/v1/tenant_connecpy.py +774 -0
  82. metalstackcloud/api/v1/tenant_pb2.py +159 -0
  83. metalstackcloud/api/v1/tenant_pb2.pyi +305 -0
  84. metalstackcloud/api/v1/tenant_pb2_grpc.py +609 -0
  85. metalstackcloud/api/v1/token_connecpy.py +326 -0
  86. metalstackcloud/api/v1/token_pb2.py +131 -0
  87. metalstackcloud/api/v1/token_pb2.pyi +175 -0
  88. metalstackcloud/api/v1/token_pb2_grpc.py +257 -0
  89. metalstackcloud/api/v1/user_connecpy.py +102 -0
  90. metalstackcloud/api/v1/user_pb2.py +48 -0
  91. metalstackcloud/api/v1/user_pb2.pyi +42 -0
  92. metalstackcloud/api/v1/user_pb2_grpc.py +81 -0
  93. metalstackcloud/api/v1/version_connecpy.py +102 -0
  94. metalstackcloud/api/v1/version_pb2.py +46 -0
  95. metalstackcloud/api/v1/version_pb2.pyi +29 -0
  96. metalstackcloud/api/v1/version_pb2_grpc.py +81 -0
  97. metalstackcloud/api/v1/volume_connecpy.py +270 -0
  98. metalstackcloud/api/v1/volume_pb2.py +91 -0
  99. metalstackcloud/api/v1/volume_pb2.pyi +165 -0
  100. metalstackcloud/api/v1/volume_pb2_grpc.py +213 -0
  101. metalstackcloud/client.py +139 -0
  102. metalstackcloud/status/__init__.py +0 -0
  103. metalstackcloud/status/v1/__init__.py +0 -0
  104. metalstackcloud/status/v1/message_connecpy.py +102 -0
  105. metalstackcloud/status/v1/message_pb2.py +51 -0
  106. metalstackcloud/status/v1/message_pb2.pyi +65 -0
  107. metalstackcloud/status/v1/message_pb2_grpc.py +84 -0
  108. metalstackcloud/status/v1/status_connecpy.py +102 -0
  109. metalstackcloud/status/v1/status_pb2.py +45 -0
  110. metalstackcloud/status/v1/status_pb2.pyi +24 -0
  111. metalstackcloud/status/v1/status_pb2_grpc.py +84 -0
@@ -0,0 +1,111 @@
1
+ buf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ buf/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ buf/validate/validate_pb2.py,sha256=J4tdtd3BeHcjzxdhS1HVMy07np8r-qjqxNxc8di4JBU,154183
4
+ buf/validate/validate_pb2.pyi,sha256=auKexsIZ6Ss_zFA4w5jfygXdY9tYATAd-xAF6shVH_4,30969
5
+ buf/validate/validate_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
6
+ metalstackcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ metalstackcloud/client.py,sha256=I-yV3BiXiIbGtwTpsk5FPM46qL93vrRVSVcwS7cVW5o,5581
8
+ metalstackcloud/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ metalstackcloud/admin/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ metalstackcloud/admin/v1/cluster_connecpy.py,sha256=xLNyzTvoMtGhBgBWIQsOqkUg-PvwBukJ42z9Yra4Hzg,9404
11
+ metalstackcloud/admin/v1/cluster_pb2.py,sha256=jfohfIUMQzCbrhfHJLAqA1Ea0Ti4neeEEv3XNRVKTvs,6931
12
+ metalstackcloud/admin/v1/cluster_pb2.pyi,sha256=rWzLSPpXRiTO6KZvAvccouuCE2NM_dcY55AkG9jtgCg,4326
13
+ metalstackcloud/admin/v1/cluster_pb2_grpc.py,sha256=GXR4_Z1sKkl04rCGdslbUhcyXdlf-t6CnyL5MCvyZA0,6467
14
+ metalstackcloud/admin/v1/machine_pb2.py,sha256=reeV3OeLAHSBhjLWswOyg7w0rYOuxtkiHuORHhzvlKc,3583
15
+ metalstackcloud/admin/v1/machine_pb2.pyi,sha256=16C99CS0JuC8fcx57mBa_SDH9af6GijAS1wcVabz42M,3811
16
+ metalstackcloud/admin/v1/machine_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
17
+ metalstackcloud/admin/v1/payment_connecpy.py,sha256=DJAj6pprsIAWED_qbbvXbaIO8VId4aD52GsO34vb8xg,7287
18
+ metalstackcloud/admin/v1/payment_pb2.py,sha256=dN_zlwWbuIVmYRGWVHiOC7q1QU7Shi9jYWuvY1qpmr0,3816
19
+ metalstackcloud/admin/v1/payment_pb2.pyi,sha256=SjFYSop-XSC53Kx3o6BjHLZR4BuOtmO502QvZOu9k4I,1535
20
+ metalstackcloud/admin/v1/payment_pb2_grpc.py,sha256=nmMxteS4uqwLetJs9_B31DE7ewpHNb8ohdwrIGdqP3I,4966
21
+ metalstackcloud/admin/v1/project_connecpy.py,sha256=MAJUuX5UK0Wmt-wzx6bHXMe8nvi9MVzHnUbE9khGI5Q,3970
22
+ metalstackcloud/admin/v1/project_pb2.py,sha256=MOG54iHKC2W75AAxoVVdVFZ1jmAPudNm5CsFBqfZy8M,3534
23
+ metalstackcloud/admin/v1/project_pb2.pyi,sha256=E5Ex07lCm8oAoo1aBjgpp0dEtEmZVLKQGRc67oKsg0Q,1690
24
+ metalstackcloud/admin/v1/project_pb2_grpc.py,sha256=8RDyY7A78mzohA75Xydo-J3jWRGkpsObOgbLh36v4oY,2871
25
+ metalstackcloud/admin/v1/storage_connecpy.py,sha256=t6grUuajE6-pW8VME3WlajkzUPGXDnQPwDsKOlVcUnU,9914
26
+ metalstackcloud/admin/v1/storage_pb2.py,sha256=npsu1pg-csf2X8Kvc3KtXKvBwK-Heo3GuZS1KOmwf3w,9592
27
+ metalstackcloud/admin/v1/storage_pb2.pyi,sha256=SoVtZGfmUrj0z7tR999aicJGwpemACXKQPUfQ27qYnM,8609
28
+ metalstackcloud/admin/v1/storage_pb2_grpc.py,sha256=r6Fm5prjzM3gragiAkavxr9yIKJfVB1S-gehAzxcRDI,6758
29
+ metalstackcloud/admin/v1/tenant_connecpy.py,sha256=Ti0jWyc8om1W2sO4UPTJU0RuljVsmKsVAvh49HuEIyY,11916
30
+ metalstackcloud/admin/v1/tenant_pb2.py,sha256=FkUbSytiHRxqgjNARz5UTun8lNd17b9rHyFf-WqC0PM,6124
31
+ metalstackcloud/admin/v1/tenant_pb2.pyi,sha256=_qKgQu8-EXsmP0aYE878Ll_RzcxmlVyq1WM18nScgr0,3231
32
+ metalstackcloud/admin/v1/tenant_pb2_grpc.py,sha256=qdvo2R1QesLhsUcj-0KIGaOXHb6LS4LB-oU9IMxUxNo,8195
33
+ metalstackcloud/admin/v1/token_connecpy.py,sha256=5WEF1eexGQaskzaLzInjPzN_6iqLcfMtFx7PpNtB3GA,6467
34
+ metalstackcloud/admin/v1/token_pb2.py,sha256=ogmlSvastbXBJHdBnApfPimYGbTo8SX6Ijr-C0JhtE4,4057
35
+ metalstackcloud/admin/v1/token_pb2.pyi,sha256=ragATCLq1oZvBI3UqNPNDGRMraaeyjybzyUhisFekdE,1406
36
+ metalstackcloud/admin/v1/token_pb2_grpc.py,sha256=gD4hufYF8rIARPqZCC_GQa_pXsvOgjcJs54uOnylc-4,4549
37
+ metalstackcloud/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ metalstackcloud/api/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ metalstackcloud/api/v1/asset_connecpy.py,sha256=eCOviCMNkon20HC5bF-marYbPjAKCsIx0akS4giuBCM,3806
40
+ metalstackcloud/api/v1/asset_pb2.py,sha256=uCaffUxr-9Y1iyVbcWbzBVcMx683q-XkTd6f_nxCeE4,7679
41
+ metalstackcloud/api/v1/asset_pb2.pyi,sha256=8iwO8CWOaxIHRjDYuc_njRmiKvOImInDcATWX29Iu90,6293
42
+ metalstackcloud/api/v1/asset_pb2_grpc.py,sha256=D2GKbXNDjRDrI33w6p66pQ_1TBuUkUa535g8A5HWdpQ,2766
43
+ metalstackcloud/api/v1/audit_connecpy.py,sha256=OCsdSY4rgpurHj42-DB_H95IPsgS54C3X7Wq4GGaVbU,6283
44
+ metalstackcloud/api/v1/audit_pb2.py,sha256=hicgdjH9EBxjBlwJVzeG3EWWqFZNfG79pa06w7gDKLw,9014
45
+ metalstackcloud/api/v1/audit_pb2.pyi,sha256=H6QXj4FOWKt-apmSJRGBYHX2C_7NxQLixodYvQ3cW9o,4338
46
+ metalstackcloud/api/v1/audit_pb2_grpc.py,sha256=y3AaJwKCfL7DC5sZJVO4WmyQuLhrlXuUNv4ppAwniEs,4480
47
+ metalstackcloud/api/v1/cluster_connecpy.py,sha256=VM-nG3EEmmpK-z2_3N1ou5g2Zv5cxpipf0MHe5csO9c,22775
48
+ metalstackcloud/api/v1/cluster_pb2.py,sha256=4oLBcrv4CzH4rjmRcLIBCeacdHMbNm6xnbRcwT12TmU,23494
49
+ metalstackcloud/api/v1/cluster_pb2.pyi,sha256=M6DApjagsC8Tl0QZ6IzMzS-fPZjqHIUVuCDrM7u5_CE,15017
50
+ metalstackcloud/api/v1/cluster_pb2_grpc.py,sha256=zaJcr4tazMOqXqtQmlc7llIFkFqL3-vASz718l6ZqlY,15494
51
+ metalstackcloud/api/v1/common_pb2.py,sha256=-JTqjjabIzaBy6ZbNBoxESxvqOgWRAbGrPE074FJTGI,4604
52
+ metalstackcloud/api/v1/common_pb2.pyi,sha256=Tt2NFVnh5ZETeSQoo3hNbBgKkk5Vpf385AaxFkBovSk,3726
53
+ metalstackcloud/api/v1/common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
54
+ metalstackcloud/api/v1/health_connecpy.py,sha256=WrEeSKUmT8QnliWwglgtoWaczT0lRtuK7F1GMliCvnc,3831
55
+ metalstackcloud/api/v1/health_pb2.py,sha256=7Ffeo7mYiODv_JdQGOJP0UAtwGoWtpla7oxi1mFvP8s,4365
56
+ metalstackcloud/api/v1/health_pb2.pyi,sha256=V7N20QvubV0kaLyLBahGTfSSj6ppuAPwsgqA72kgmX0,3190
57
+ metalstackcloud/api/v1/health_pb2_grpc.py,sha256=XHmEW266sTcyS1-U9mihLPqZEkBRF8tq3uCZTsBYLUk,2790
58
+ metalstackcloud/api/v1/ip_connecpy.py,sha256=np5DK6Lj2obUGfEIZZzFd3pXfW9ylhC_IcMj4kKXsbk,13399
59
+ metalstackcloud/api/v1/ip_pb2.py,sha256=mozq_jM_h4iMceVGmTJzNdw3k5_f7lliGd01saKK5N8,10959
60
+ metalstackcloud/api/v1/ip_pb2.pyi,sha256=vfyNjbVmarwIXo36wnGkRVjiAXrCg0EMkxjimzmDt08,5139
61
+ metalstackcloud/api/v1/ip_pb2_grpc.py,sha256=Nkute_AHizDvSsLRg_PfxTWep70aqLjoiRnrmVwnVWE,9515
62
+ metalstackcloud/api/v1/method_connecpy.py,sha256=Z91fVZj4n0KzPn0xfRapoWuWZuU_RfLawaHUVGkTQMo,6738
63
+ metalstackcloud/api/v1/method_pb2.py,sha256=ftxX-CBR68laZu1W8rZILlfKU49NaIjrelnddDnAero,5235
64
+ metalstackcloud/api/v1/method_pb2.pyi,sha256=-Dtq7Ur_598xM1EjNzfrjdoWKRAkN-THw-wyuqCUyTo,2608
65
+ metalstackcloud/api/v1/method_pb2_grpc.py,sha256=7VBO81LRyzwH71RwUZbbm19ew-xRBtdPQRmwOsf1NRs,4862
66
+ metalstackcloud/api/v1/payment_connecpy.py,sha256=JjvltQ1XfW4_IIrPg9pV3lAO4bPjqnlOT8wMiP2bGzM,28272
67
+ metalstackcloud/api/v1/payment_pb2.py,sha256=c4v6qRz-ju6VGywVZFISmx07aN7BiVZKGtZ0_DxwEzQ,19031
68
+ metalstackcloud/api/v1/payment_pb2.pyi,sha256=rpFIgq4wBn6wyF-BXmvmOowur0Btaod781aFS3ypnao,13693
69
+ metalstackcloud/api/v1/payment_pb2_grpc.py,sha256=fKZCVRiFPTFN7f2xUTlqD0Njhe2dUe7P7dPLKR-Gga0,18775
70
+ metalstackcloud/api/v1/project_connecpy.py,sha256=6xaF0BKuUP8Zv5nU2ma34H_l7lC2Xix_WkrbHjdZJHU,33903
71
+ metalstackcloud/api/v1/project_pb2.py,sha256=U-yKT6qxztfCXxUAWEHZWCm0pmud80abdw5vwpifIAE,19139
72
+ metalstackcloud/api/v1/project_pb2.pyi,sha256=c7Gu85Aow7RR2Mp8BbLMeYzGbw8smKWc_57br5Mi2us,10422
73
+ metalstackcloud/api/v1/project_pb2_grpc.py,sha256=p_Rq0v5wC1cAlFPrdB03GxGiC4BbnzgmZQ10c-82qy8,22973
74
+ metalstackcloud/api/v1/snapshot_connecpy.py,sha256=wYOJB23nPNg4ttNZq-uZmLcPgabNX5MbCvPNlhJkvgw,9255
75
+ metalstackcloud/api/v1/snapshot_pb2.py,sha256=kF2KNEdatF4DI0u_OOyCN6GPW2KWpjxO2Dr88Bb-hYc,7934
76
+ metalstackcloud/api/v1/snapshot_pb2.pyi,sha256=F_KVVQ3rFsDitkPEe5Hxd_Wu_vRwTmmybH3JJn8bieQ,5333
77
+ metalstackcloud/api/v1/snapshot_pb2_grpc.py,sha256=Q82PZlwCM5uctcE3f1irNMCDQ7Kl25txVJiX4TrV7Xo,6397
78
+ metalstackcloud/api/v1/tenant_connecpy.py,sha256=bLNo8ZhqCtjYW4CxNb5WTxYorazx5j099F0ve8VOKLU,36315
79
+ metalstackcloud/api/v1/tenant_pb2.py,sha256=6pU-YSUy2q5uePvRba4hwc5G1cZOth9RPM5uFlYUdXE,20981
80
+ metalstackcloud/api/v1/tenant_pb2.pyi,sha256=GYpXgUtsktC5wTSm6exN48ewynBsgVoSzNJLp7i1uAQ,14177
81
+ metalstackcloud/api/v1/tenant_pb2_grpc.py,sha256=WFIJBUUktcawdJEtO9q26d__55flalC56PTA3ifnlME,24719
82
+ metalstackcloud/api/v1/token_connecpy.py,sha256=y0Be9rkQ8FIpe_ly02mtN7fq-GfYzM3IULKglMBd8fs,13984
83
+ metalstackcloud/api/v1/token_pb2.py,sha256=h4ikPOWYbV45oE9Vct58822mlw5VrQTGZqDwbGOgV_4,15035
84
+ metalstackcloud/api/v1/token_pb2.pyi,sha256=C4erznNIzoh9E2mvajhwrctsZNjRm_QywNYBRqiJrdQ,9025
85
+ metalstackcloud/api/v1/token_pb2_grpc.py,sha256=9UP_YnhNaH0yX4o8XB51_lk7_Ik7S0G8esm9THtpM6A,9862
86
+ metalstackcloud/api/v1/user_connecpy.py,sha256=ClGhHovQSvW0ZBvjfhAveKxUOA1Ehu_BO0WQq2W32Hk,3721
87
+ metalstackcloud/api/v1/user_pb2.py,sha256=6RyIiFLMhhICMGuth_VkINq1VsXCkG-DBOEu606wo4E,3461
88
+ metalstackcloud/api/v1/user_pb2.pyi,sha256=V6QoLi56HH-WgT2nWgoXRPMaSiKWOKOX-neSom-wsRU,2237
89
+ metalstackcloud/api/v1/user_pb2_grpc.py,sha256=VcOE-D9_KhJpOhNFd4gEqkXkRvwpy640x1Kks3Ks-l4,2708
90
+ metalstackcloud/api/v1/version_connecpy.py,sha256=sOdVFzWmhJMiUWhwAZXfiFKCZwMStNW5rmP_LHixKvg,3886
91
+ metalstackcloud/api/v1/version_pb2.py,sha256=-V8iSI9vCCrAzwatX3A15NYTvx99rtDdEVt6sHLYWqI,2850
92
+ metalstackcloud/api/v1/version_pb2.pyi,sha256=YVPwmKAizd7eUxdpLGXRewXybUKilZIMenaA6YiSu8I,1161
93
+ metalstackcloud/api/v1/version_pb2_grpc.py,sha256=ZARvOJiSyC-_Mdzh7o-voSKr-51w7xXzW2qqjDE6-WM,2803
94
+ metalstackcloud/api/v1/volume_connecpy.py,sha256=vZRDW0Rzih9PF_bv2Ti2m28JyqLZSu6X6ecr-G0LFJw,11592
95
+ metalstackcloud/api/v1/volume_pb2.py,sha256=ngPLWAXwcYDKBsNnC1aZ2zmHRC6-Xa1R6Yqd4woPMH8,10810
96
+ metalstackcloud/api/v1/volume_pb2.pyi,sha256=0DvXBhLyn2ok1BeXaI3KUBTpSiqSE7dlRXhGVNXFJto,8625
97
+ metalstackcloud/api/v1/volume_pb2_grpc.py,sha256=aZ7JCRXcgtgR_Hkd1ED-a3nbbX9LH-0imFRLTuiOBqo,8051
98
+ metalstackcloud/status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
+ metalstackcloud/status/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
+ metalstackcloud/status/v1/message_connecpy.py,sha256=HqMxSsxN6ZlQYcn-M4zWh3JbWyFhdVhYxDOSiY-EDtE,4027
101
+ metalstackcloud/status/v1/message_pb2.py,sha256=WS8YIkjOrORM8LHCIcj6NnHbU4_nKGnZWTNNT79uzT4,3955
102
+ metalstackcloud/status/v1/message_pb2.pyi,sha256=d9iJt_10m-VyA_JSZPpfeSzcD6-ZfQeGa0dOR70feBA,3052
103
+ metalstackcloud/status/v1/message_pb2_grpc.py,sha256=7BAWZ76XtdaC6mwhwb1OrXmWZlhCtSDWvp5gNw29OKE,3095
104
+ metalstackcloud/status/v1/status_connecpy.py,sha256=KTRBwPokt32e4ifq9YQytuS7d16NLtigE4OMZ0sUmI4,3972
105
+ metalstackcloud/status/v1/status_pb2.py,sha256=9D3oWEWKNUtLenA6NLLtQ3qOol9w2EoiMPvPlvepzW4,2880
106
+ metalstackcloud/status/v1/status_pb2.pyi,sha256=oRg_lTDhZSi7tMoI_w-Rplh1G70WoD-RTQsNSE_ANhs,1150
107
+ metalstackcloud/status/v1/status_pb2_grpc.py,sha256=sUGTYcrofizu4ZHxnVKyv7i_B1zja5V8Udif3uJoYWs,3031
108
+ metalstack_cloud-0.15.2.dist-info/METADATA,sha256=jZ9UyW7k-_zyAwvxJKs_12Xg2-Iw4Gk8cCJwwrzekaM,788
109
+ metalstack_cloud-0.15.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
110
+ metalstack_cloud-0.15.2.dist-info/top_level.txt,sha256=amuFdBtLQnMBW-NVwfdfMejHNh00BRLa6C6ia38xyrw,20
111
+ metalstack_cloud-0.15.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ buf
2
+ metalstackcloud
File without changes
File without changes
File without changes
@@ -0,0 +1,214 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by https://github.com/i2y/connecpy/protoc-gen-connecpy. DO NOT EDIT!
3
+ # source: admin/v1/cluster.proto
4
+
5
+ from typing import Optional, Protocol, Union
6
+
7
+ import httpx
8
+
9
+ from connecpy.async_client import AsyncConnecpyClient
10
+ from connecpy.base import Endpoint
11
+ from connecpy.server import ConnecpyServer
12
+ from connecpy.client import ConnecpyClient
13
+ from connecpy.context import ClientContext, ServiceContext
14
+ import metalstackcloud.admin.v1.cluster_pb2 as admin_dot_v1_dot_cluster__pb2
15
+
16
+
17
+ class ClusterService(Protocol):
18
+ async def Get(self, req: admin_dot_v1_dot_cluster__pb2.ClusterServiceGetRequest, ctx: ServiceContext) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse: ...
19
+ async def List(self, req: admin_dot_v1_dot_cluster__pb2.ClusterServiceListRequest, ctx: ServiceContext) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse: ...
20
+ async def Credentials(self, req: admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsRequest, ctx: ServiceContext) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse: ...
21
+
22
+
23
+ class ClusterServiceServer(ConnecpyServer):
24
+ def __init__(self, *, service: ClusterService, server_path_prefix=""):
25
+ super().__init__()
26
+ self._prefix = f"{server_path_prefix}/admin.v1.ClusterService"
27
+ self._endpoints = {
28
+ "Get": Endpoint[admin_dot_v1_dot_cluster__pb2.ClusterServiceGetRequest, admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse](
29
+ service_name="ClusterService",
30
+ name="Get",
31
+ function=getattr(service, "Get"),
32
+ input=admin_dot_v1_dot_cluster__pb2.ClusterServiceGetRequest,
33
+ output=admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse,
34
+ allowed_methods=("POST",),
35
+ ),
36
+ "List": Endpoint[admin_dot_v1_dot_cluster__pb2.ClusterServiceListRequest, admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse](
37
+ service_name="ClusterService",
38
+ name="List",
39
+ function=getattr(service, "List"),
40
+ input=admin_dot_v1_dot_cluster__pb2.ClusterServiceListRequest,
41
+ output=admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse,
42
+ allowed_methods=("POST",),
43
+ ),
44
+ "Credentials": Endpoint[admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsRequest, admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse](
45
+ service_name="ClusterService",
46
+ name="Credentials",
47
+ function=getattr(service, "Credentials"),
48
+ input=admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsRequest,
49
+ output=admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse,
50
+ allowed_methods=("POST",),
51
+ ),
52
+ }
53
+
54
+ def serviceName(self):
55
+ return "admin.v1.ClusterService"
56
+
57
+
58
+ class ClusterServiceSync(Protocol):
59
+ def Get(self, req: admin_dot_v1_dot_cluster__pb2.ClusterServiceGetRequest, ctx: ServiceContext) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse: ...
60
+ def List(self, req: admin_dot_v1_dot_cluster__pb2.ClusterServiceListRequest, ctx: ServiceContext) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse: ...
61
+ def Credentials(self, req: admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsRequest, ctx: ServiceContext) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse: ...
62
+
63
+
64
+ class ClusterServiceServerSync(ConnecpyServer):
65
+ def __init__(self, *, service: ClusterServiceSync, server_path_prefix=""):
66
+ super().__init__()
67
+ self._prefix = f"{server_path_prefix}/admin.v1.ClusterService"
68
+ self._endpoints = {
69
+ "Get": Endpoint[admin_dot_v1_dot_cluster__pb2.ClusterServiceGetRequest, admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse](
70
+ service_name="ClusterService",
71
+ name="Get",
72
+ function=getattr(service, "Get"),
73
+ input=admin_dot_v1_dot_cluster__pb2.ClusterServiceGetRequest,
74
+ output=admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse,
75
+ allowed_methods=("POST",),
76
+ ),
77
+ "List": Endpoint[admin_dot_v1_dot_cluster__pb2.ClusterServiceListRequest, admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse](
78
+ service_name="ClusterService",
79
+ name="List",
80
+ function=getattr(service, "List"),
81
+ input=admin_dot_v1_dot_cluster__pb2.ClusterServiceListRequest,
82
+ output=admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse,
83
+ allowed_methods=("POST",),
84
+ ),
85
+ "Credentials": Endpoint[admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsRequest, admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse](
86
+ service_name="ClusterService",
87
+ name="Credentials",
88
+ function=getattr(service, "Credentials"),
89
+ input=admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsRequest,
90
+ output=admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse,
91
+ allowed_methods=("POST",),
92
+ ),
93
+ }
94
+
95
+ def serviceName(self):
96
+ return "admin.v1.ClusterService"
97
+
98
+
99
+ class ClusterServiceClient(ConnecpyClient):
100
+ def Get(
101
+ self,
102
+ request: admin_dot_v1_dot_cluster__pb2.ClusterServiceGetRequest,
103
+ *,
104
+ ctx: Optional[ClientContext] = None,
105
+ server_path_prefix: str = "",
106
+ **kwargs,
107
+ ) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse:
108
+ method = "POST"
109
+ return self._make_request(
110
+ url=f"{server_path_prefix}/admin.v1.ClusterService/Get",
111
+ ctx=ctx,
112
+ request=request,
113
+ response_class=admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse,
114
+ method=method,
115
+ **kwargs,
116
+ )
117
+
118
+ def List(
119
+ self,
120
+ request: admin_dot_v1_dot_cluster__pb2.ClusterServiceListRequest,
121
+ *,
122
+ ctx: Optional[ClientContext] = None,
123
+ server_path_prefix: str = "",
124
+ **kwargs,
125
+ ) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse:
126
+ method = "POST"
127
+ return self._make_request(
128
+ url=f"{server_path_prefix}/admin.v1.ClusterService/List",
129
+ ctx=ctx,
130
+ request=request,
131
+ response_class=admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse,
132
+ method=method,
133
+ **kwargs,
134
+ )
135
+
136
+ def Credentials(
137
+ self,
138
+ request: admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsRequest,
139
+ *,
140
+ ctx: Optional[ClientContext] = None,
141
+ server_path_prefix: str = "",
142
+ **kwargs,
143
+ ) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse:
144
+ method = "POST"
145
+ return self._make_request(
146
+ url=f"{server_path_prefix}/admin.v1.ClusterService/Credentials",
147
+ ctx=ctx,
148
+ request=request,
149
+ response_class=admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse,
150
+ method=method,
151
+ **kwargs,
152
+ )
153
+
154
+
155
+ class AsyncClusterServiceClient(AsyncConnecpyClient):
156
+ async def Get(
157
+ self,
158
+ request: admin_dot_v1_dot_cluster__pb2.ClusterServiceGetRequest,
159
+ *,
160
+ ctx: Optional[ClientContext] = None,
161
+ server_path_prefix: str = "",
162
+ session: Union[httpx.AsyncClient, None] = None,
163
+ **kwargs,
164
+ ) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse:
165
+ method = "POST"
166
+ return await self._make_request(
167
+ url=f"{server_path_prefix}/admin.v1.ClusterService/Get",
168
+ ctx=ctx,
169
+ request=request,
170
+ response_class=admin_dot_v1_dot_cluster__pb2.ClusterServiceGetResponse,
171
+ method=method,
172
+ session=session,
173
+ **kwargs,
174
+ )
175
+
176
+ async def List(
177
+ self,
178
+ request: admin_dot_v1_dot_cluster__pb2.ClusterServiceListRequest,
179
+ *,
180
+ ctx: Optional[ClientContext] = None,
181
+ server_path_prefix: str = "",
182
+ session: Union[httpx.AsyncClient, None] = None,
183
+ **kwargs,
184
+ ) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse:
185
+ method = "POST"
186
+ return await self._make_request(
187
+ url=f"{server_path_prefix}/admin.v1.ClusterService/List",
188
+ ctx=ctx,
189
+ request=request,
190
+ response_class=admin_dot_v1_dot_cluster__pb2.ClusterServiceListResponse,
191
+ method=method,
192
+ session=session,
193
+ **kwargs,
194
+ )
195
+
196
+ async def Credentials(
197
+ self,
198
+ request: admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsRequest,
199
+ *,
200
+ ctx: Optional[ClientContext] = None,
201
+ server_path_prefix: str = "",
202
+ session: Union[httpx.AsyncClient, None] = None,
203
+ **kwargs,
204
+ ) -> admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse:
205
+ method = "POST"
206
+ return await self._make_request(
207
+ url=f"{server_path_prefix}/admin.v1.ClusterService/Credentials",
208
+ ctx=ctx,
209
+ request=request,
210
+ response_class=admin_dot_v1_dot_cluster__pb2.ClusterServiceCredentialsResponse,
211
+ method=method,
212
+ session=session,
213
+ **kwargs,
214
+ )
@@ -0,0 +1,70 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: admin/v1/cluster.proto
5
+ # Protobuf Python Version: 6.31.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 31,
16
+ 1,
17
+ '',
18
+ 'admin/v1/cluster.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from metalstackcloud.admin.v1 import machine_pb2 as admin_dot_v1_dot_machine__pb2
26
+ from metalstackcloud.api.v1 import cluster_pb2 as api_dot_v1_dot_cluster__pb2
27
+ from metalstackcloud.api.v1 import common_pb2 as api_dot_v1_dot_common__pb2
28
+ from buf.validate import validate_pb2 as buf_dot_validate_dot_validate__pb2
29
+ from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2
30
+
31
+
32
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16\x61\x64min/v1/cluster.proto\x12\x08\x61\x64min.v1\x1a\x16\x61\x64min/v1/machine.proto\x1a\x14\x61pi/v1/cluster.proto\x1a\x13\x61pi/v1/common.proto\x1a\x1b\x62uf/validate/validate.proto\x1a\x1egoogle/protobuf/duration.proto\"]\n\x18\x43lusterServiceGetRequest\x12\x1c\n\x04uuid\x18\x01 \x01(\tB\x08\xbaH\x05r\x03\xb0\x01\x01R\x04uuid\x12#\n\rwith_machines\x18\x02 \x01(\x08R\x0cwithMachines\"\xb4\x03\n\x19\x43lusterServiceListRequest\x12\x17\n\x04uuid\x18\x01 \x01(\tH\x00R\x04uuid\x88\x01\x01\x12\x1d\n\x07project\x18\x02 \x01(\tH\x01R\x07project\x88\x01\x01\x12\x1b\n\x06tenant\x18\x03 \x01(\tH\x02R\x06tenant\x88\x01\x01\x12!\n\tpartition\x18\x04 \x01(\tH\x03R\tpartition\x88\x01\x01\x12\x17\n\x04seed\x18\x05 \x01(\tH\x04R\x04seed\x88\x01\x01\x12\x17\n\x04name\x18\x06 \x01(\tH\x05R\x04name\x88\x01\x01\x12\x1d\n\x07purpose\x18\x07 \x01(\tH\x06R\x07purpose\x88\x01\x01\x12G\n\x06labels\x18\x08 \x03(\x0b\x32/.admin.v1.ClusterServiceListRequest.LabelsEntryR\x06labels\x1a\x39\n\x0bLabelsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x02\x38\x01\x42\x07\n\x05_uuidB\n\n\x08_projectB\t\n\x07_tenantB\x0c\n\n_partitionB\x07\n\x05_seedB\x07\n\x05_nameB\n\n\x08_purpose\"\xc5\x01\n ClusterServiceCredentialsRequest\x12\x1c\n\x04uuid\x18\x01 \x01(\tB\x08\xbaH\x05r\x03\xb0\x01\x01R\x04uuid\x12\x19\n\x08with_vpn\x18\x02 \x01(\x08R\x07withVpn\x12\x19\n\x08with_ssh\x18\x03 \x01(\x08R\x07withSsh\x12>\n\nexpiration\x18\x04 \x01(\x0b\x32\x19.google.protobuf.DurationH\x00R\nexpiration\x88\x01\x01\x42\r\n\x0b_expiration\"u\n\x19\x43lusterServiceGetResponse\x12)\n\x07\x63luster\x18\x01 \x01(\x0b\x32\x0f.api.v1.ClusterR\x07\x63luster\x12-\n\x08machines\x18\x02 \x03(\x0b\x32\x11.admin.v1.MachineR\x08machines\"I\n\x1a\x43lusterServiceListResponse\x12+\n\x08\x63lusters\x18\x01 \x03(\x0b\x32\x0f.api.v1.ClusterR\x08\x63lusters\"\x9b\x01\n!ClusterServiceCredentialsResponse\x12\x1e\n\nkubeconfig\x18\x01 \x01(\tR\nkubeconfig\x12\x35\n\x0bssh_keypair\x18\x02 \x01(\x0b\x32\x14.admin.v1.SSHKeyPairR\nsshKeypair\x12\x1f\n\x03vpn\x18\x03 \x01(\x0b\x32\r.admin.v1.VPNR\x03vpn\"J\n\nSSHKeyPair\x12\x1c\n\tpublickey\x18\x01 \x01(\x0cR\tpublickey\x12\x1e\n\nprivatekey\x18\x02 \x01(\x0cR\nprivatekey2\xb2\x02\n\x0e\x43lusterService\x12V\n\x03Get\x12\".admin.v1.ClusterServiceGetRequest\x1a#.admin.v1.ClusterServiceGetResponse\"\x06\xd2\xf3\x18\x02\x01\x02\x12Y\n\x04List\x12#.admin.v1.ClusterServiceListRequest\x1a$.admin.v1.ClusterServiceListResponse\"\x06\xd2\xf3\x18\x02\x01\x02\x12m\n\x0b\x43redentials\x12*.admin.v1.ClusterServiceCredentialsRequest\x1a+.admin.v1.ClusterServiceCredentialsResponse\"\x05\xd2\xf3\x18\x01\x01\x42\x93\x01\n\x0c\x63om.admin.v1B\x0c\x43lusterProtoP\x01Z4github.com/metal-stack-cloud/api/go/admin/v1;adminv1\xa2\x02\x03\x41XX\xaa\x02\x08\x41\x64min.V1\xca\x02\x08\x41\x64min\\V1\xe2\x02\x14\x41\x64min\\V1\\GPBMetadata\xea\x02\tAdmin::V1b\x06proto3')
33
+
34
+ _globals = globals()
35
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
36
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'admin.v1.cluster_pb2', _globals)
37
+ if not _descriptor._USE_C_DESCRIPTORS:
38
+ _globals['DESCRIPTOR']._loaded_options = None
39
+ _globals['DESCRIPTOR']._serialized_options = b'\n\014com.admin.v1B\014ClusterProtoP\001Z4github.com/metal-stack-cloud/api/go/admin/v1;adminv1\242\002\003AXX\252\002\010Admin.V1\312\002\010Admin\\V1\342\002\024Admin\\V1\\GPBMetadata\352\002\tAdmin::V1'
40
+ _globals['_CLUSTERSERVICEGETREQUEST'].fields_by_name['uuid']._loaded_options = None
41
+ _globals['_CLUSTERSERVICEGETREQUEST'].fields_by_name['uuid']._serialized_options = b'\272H\005r\003\260\001\001'
42
+ _globals['_CLUSTERSERVICELISTREQUEST_LABELSENTRY']._loaded_options = None
43
+ _globals['_CLUSTERSERVICELISTREQUEST_LABELSENTRY']._serialized_options = b'8\001'
44
+ _globals['_CLUSTERSERVICECREDENTIALSREQUEST'].fields_by_name['uuid']._loaded_options = None
45
+ _globals['_CLUSTERSERVICECREDENTIALSREQUEST'].fields_by_name['uuid']._serialized_options = b'\272H\005r\003\260\001\001'
46
+ _globals['_CLUSTERSERVICE'].methods_by_name['Get']._loaded_options = None
47
+ _globals['_CLUSTERSERVICE'].methods_by_name['Get']._serialized_options = b'\322\363\030\002\001\002'
48
+ _globals['_CLUSTERSERVICE'].methods_by_name['List']._loaded_options = None
49
+ _globals['_CLUSTERSERVICE'].methods_by_name['List']._serialized_options = b'\322\363\030\002\001\002'
50
+ _globals['_CLUSTERSERVICE'].methods_by_name['Credentials']._loaded_options = None
51
+ _globals['_CLUSTERSERVICE'].methods_by_name['Credentials']._serialized_options = b'\322\363\030\001\001'
52
+ _globals['_CLUSTERSERVICEGETREQUEST']._serialized_start=164
53
+ _globals['_CLUSTERSERVICEGETREQUEST']._serialized_end=257
54
+ _globals['_CLUSTERSERVICELISTREQUEST']._serialized_start=260
55
+ _globals['_CLUSTERSERVICELISTREQUEST']._serialized_end=696
56
+ _globals['_CLUSTERSERVICELISTREQUEST_LABELSENTRY']._serialized_start=563
57
+ _globals['_CLUSTERSERVICELISTREQUEST_LABELSENTRY']._serialized_end=620
58
+ _globals['_CLUSTERSERVICECREDENTIALSREQUEST']._serialized_start=699
59
+ _globals['_CLUSTERSERVICECREDENTIALSREQUEST']._serialized_end=896
60
+ _globals['_CLUSTERSERVICEGETRESPONSE']._serialized_start=898
61
+ _globals['_CLUSTERSERVICEGETRESPONSE']._serialized_end=1015
62
+ _globals['_CLUSTERSERVICELISTRESPONSE']._serialized_start=1017
63
+ _globals['_CLUSTERSERVICELISTRESPONSE']._serialized_end=1090
64
+ _globals['_CLUSTERSERVICECREDENTIALSRESPONSE']._serialized_start=1093
65
+ _globals['_CLUSTERSERVICECREDENTIALSRESPONSE']._serialized_end=1248
66
+ _globals['_SSHKEYPAIR']._serialized_start=1250
67
+ _globals['_SSHKEYPAIR']._serialized_end=1324
68
+ _globals['_CLUSTERSERVICE']._serialized_start=1327
69
+ _globals['_CLUSTERSERVICE']._serialized_end=1633
70
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,93 @@
1
+ import datetime
2
+
3
+ from admin.v1 import machine_pb2 as _machine_pb2
4
+ from api.v1 import cluster_pb2 as _cluster_pb2
5
+ from api.v1 import common_pb2 as _common_pb2
6
+ from buf.validate import validate_pb2 as _validate_pb2
7
+ from google.protobuf import duration_pb2 as _duration_pb2
8
+ from google.protobuf.internal import containers as _containers
9
+ from google.protobuf import descriptor as _descriptor
10
+ from google.protobuf import message as _message
11
+ from collections.abc import Iterable as _Iterable, Mapping as _Mapping
12
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
13
+
14
+ DESCRIPTOR: _descriptor.FileDescriptor
15
+
16
+ class ClusterServiceGetRequest(_message.Message):
17
+ __slots__ = ("uuid", "with_machines")
18
+ UUID_FIELD_NUMBER: _ClassVar[int]
19
+ WITH_MACHINES_FIELD_NUMBER: _ClassVar[int]
20
+ uuid: str
21
+ with_machines: bool
22
+ def __init__(self, uuid: _Optional[str] = ..., with_machines: bool = ...) -> None: ...
23
+
24
+ class ClusterServiceListRequest(_message.Message):
25
+ __slots__ = ("uuid", "project", "tenant", "partition", "seed", "name", "purpose", "labels")
26
+ class LabelsEntry(_message.Message):
27
+ __slots__ = ("key", "value")
28
+ KEY_FIELD_NUMBER: _ClassVar[int]
29
+ VALUE_FIELD_NUMBER: _ClassVar[int]
30
+ key: str
31
+ value: str
32
+ def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
33
+ UUID_FIELD_NUMBER: _ClassVar[int]
34
+ PROJECT_FIELD_NUMBER: _ClassVar[int]
35
+ TENANT_FIELD_NUMBER: _ClassVar[int]
36
+ PARTITION_FIELD_NUMBER: _ClassVar[int]
37
+ SEED_FIELD_NUMBER: _ClassVar[int]
38
+ NAME_FIELD_NUMBER: _ClassVar[int]
39
+ PURPOSE_FIELD_NUMBER: _ClassVar[int]
40
+ LABELS_FIELD_NUMBER: _ClassVar[int]
41
+ uuid: str
42
+ project: str
43
+ tenant: str
44
+ partition: str
45
+ seed: str
46
+ name: str
47
+ purpose: str
48
+ labels: _containers.ScalarMap[str, str]
49
+ def __init__(self, uuid: _Optional[str] = ..., project: _Optional[str] = ..., tenant: _Optional[str] = ..., partition: _Optional[str] = ..., seed: _Optional[str] = ..., name: _Optional[str] = ..., purpose: _Optional[str] = ..., labels: _Optional[_Mapping[str, str]] = ...) -> None: ...
50
+
51
+ class ClusterServiceCredentialsRequest(_message.Message):
52
+ __slots__ = ("uuid", "with_vpn", "with_ssh", "expiration")
53
+ UUID_FIELD_NUMBER: _ClassVar[int]
54
+ WITH_VPN_FIELD_NUMBER: _ClassVar[int]
55
+ WITH_SSH_FIELD_NUMBER: _ClassVar[int]
56
+ EXPIRATION_FIELD_NUMBER: _ClassVar[int]
57
+ uuid: str
58
+ with_vpn: bool
59
+ with_ssh: bool
60
+ expiration: _duration_pb2.Duration
61
+ def __init__(self, uuid: _Optional[str] = ..., with_vpn: bool = ..., with_ssh: bool = ..., expiration: _Optional[_Union[datetime.timedelta, _duration_pb2.Duration, _Mapping]] = ...) -> None: ...
62
+
63
+ class ClusterServiceGetResponse(_message.Message):
64
+ __slots__ = ("cluster", "machines")
65
+ CLUSTER_FIELD_NUMBER: _ClassVar[int]
66
+ MACHINES_FIELD_NUMBER: _ClassVar[int]
67
+ cluster: _cluster_pb2.Cluster
68
+ machines: _containers.RepeatedCompositeFieldContainer[_machine_pb2.Machine]
69
+ def __init__(self, cluster: _Optional[_Union[_cluster_pb2.Cluster, _Mapping]] = ..., machines: _Optional[_Iterable[_Union[_machine_pb2.Machine, _Mapping]]] = ...) -> None: ...
70
+
71
+ class ClusterServiceListResponse(_message.Message):
72
+ __slots__ = ("clusters",)
73
+ CLUSTERS_FIELD_NUMBER: _ClassVar[int]
74
+ clusters: _containers.RepeatedCompositeFieldContainer[_cluster_pb2.Cluster]
75
+ def __init__(self, clusters: _Optional[_Iterable[_Union[_cluster_pb2.Cluster, _Mapping]]] = ...) -> None: ...
76
+
77
+ class ClusterServiceCredentialsResponse(_message.Message):
78
+ __slots__ = ("kubeconfig", "ssh_keypair", "vpn")
79
+ KUBECONFIG_FIELD_NUMBER: _ClassVar[int]
80
+ SSH_KEYPAIR_FIELD_NUMBER: _ClassVar[int]
81
+ VPN_FIELD_NUMBER: _ClassVar[int]
82
+ kubeconfig: str
83
+ ssh_keypair: SSHKeyPair
84
+ vpn: _machine_pb2.VPN
85
+ def __init__(self, kubeconfig: _Optional[str] = ..., ssh_keypair: _Optional[_Union[SSHKeyPair, _Mapping]] = ..., vpn: _Optional[_Union[_machine_pb2.VPN, _Mapping]] = ...) -> None: ...
86
+
87
+ class SSHKeyPair(_message.Message):
88
+ __slots__ = ("publickey", "privatekey")
89
+ PUBLICKEY_FIELD_NUMBER: _ClassVar[int]
90
+ PRIVATEKEY_FIELD_NUMBER: _ClassVar[int]
91
+ publickey: bytes
92
+ privatekey: bytes
93
+ def __init__(self, publickey: _Optional[bytes] = ..., privatekey: _Optional[bytes] = ...) -> None: ...