platform-api-python-client 0.3.0__tar.gz → 3.1.15__tar.gz

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 (144) hide show
  1. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/PKG-INFO +9 -2
  2. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/README.md +25 -5
  3. platform_api_python_client-3.1.15/platform_api_python_client/__init__.py +89 -0
  4. platform_api_python_client-3.1.15/platform_api_python_client/api/__init__.py +5 -0
  5. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/api/external_api.py +2380 -189
  6. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/api_client.py +7 -7
  7. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/configuration.py +2 -2
  8. platform_api_python_client-3.1.15/platform_api_python_client/models/__init__.py +72 -0
  9. platform_api_python_client-0.3.0/platform_api_external_client/models/c_serve_recipe_input.py → platform_api_python_client-3.1.15/platform_api_python_client/models/c_serve_recipe.py +65 -7
  10. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/c_serve_recipe_perf.py +3 -3
  11. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/c_serve_recipe_response.py +1 -1
  12. platform_api_python_client-0.3.0/platform_api_external_client/models/c_serve_recipe_output.py → platform_api_python_client-3.1.15/platform_api_python_client/models/c_serve_v2_recipe.py +63 -43
  13. platform_api_python_client-3.1.15/platform_api_python_client/models/c_serve_v2_recipe_input.py +186 -0
  14. platform_api_python_client-3.1.15/platform_api_python_client/models/c_serve_v2_recipe_output.py +186 -0
  15. platform_api_python_client-3.1.15/platform_api_python_client/models/client_secret_response.py +87 -0
  16. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/create_c_serve_deployment_request.py +9 -4
  17. platform_api_python_client-3.1.15/platform_api_python_client/models/create_c_serve_v2_deployment_request.py +125 -0
  18. platform_api_python_client-0.3.0/platform_api_external_client/models/create_compute_deployment_response.py → platform_api_python_client-3.1.15/platform_api_python_client/models/create_c_serve_v2_deployment_response.py +6 -8
  19. platform_api_python_client-3.1.15/platform_api_python_client/models/create_checkout_session_response.py +87 -0
  20. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/create_compute_deployment_request.py +6 -16
  21. platform_api_python_client-3.1.15/platform_api_python_client/models/create_compute_deployment_response.py +101 -0
  22. platform_api_python_client-3.1.15/platform_api_python_client/models/create_rag_deployment_request.py +129 -0
  23. platform_api_python_client-3.1.15/platform_api_python_client/models/create_rag_deployment_response.py +92 -0
  24. platform_api_python_client-3.1.15/platform_api_python_client/models/create_setup_checkout_request.py +87 -0
  25. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/deployment_status_request.py +1 -1
  26. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/deployment_status_response.py +3 -3
  27. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/deployment_type.py +2 -0
  28. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/get_c_serve_deployment_response.py +58 -6
  29. platform_api_python_client-3.1.15/platform_api_python_client/models/get_c_serve_v2_deployment_response.py +137 -0
  30. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/get_cluster_response.py +10 -3
  31. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/get_compute_deployment_response.py +2 -2
  32. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/get_deployment_response.py +2 -2
  33. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/get_deployment_usage_response.py +1 -1
  34. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/get_inference_deployment_response.py +2 -2
  35. platform_api_python_client-3.1.15/platform_api_python_client/models/get_rag_deployment_response.py +141 -0
  36. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/hardware_instance_response.py +19 -3
  37. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/http_validation_error.py +1 -1
  38. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/list_api_key_response.py +1 -1
  39. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/list_c_serve_recipe_response.py +1 -1
  40. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/list_daily_bill_response.py +1 -1
  41. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/list_get_cluster_response.py +1 -1
  42. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/list_get_deployment_response.py +1 -1
  43. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/list_hardware_instance_response.py +1 -1
  44. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/list_prebuilt_image_response.py +1 -1
  45. platform_api_python_client-3.1.15/platform_api_python_client/models/list_user_vault_items_response.py +95 -0
  46. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/prebuilt_image_response.py +1 -1
  47. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/user_support_email_request.py +5 -3
  48. platform_api_python_client-3.1.15/platform_api_python_client/models/user_vault_item_input.py +97 -0
  49. platform_api_python_client-3.1.15/platform_api_python_client/models/user_vault_item_output.py +97 -0
  50. platform_api_python_client-3.1.15/platform_api_python_client/models/user_vault_type.py +39 -0
  51. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/validation_error.py +1 -1
  52. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/rest.py +1 -1
  53. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/platform_api_python_client.egg-info/PKG-INFO +9 -2
  54. platform_api_python_client-3.1.15/platform_api_python_client.egg-info/SOURCES.txt +138 -0
  55. platform_api_python_client-3.1.15/platform_api_python_client.egg-info/top_level.txt +1 -0
  56. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/pyproject.toml +1 -1
  57. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/setup.py +1 -1
  58. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_api_key_request.py +1 -1
  59. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_api_key_response.py +1 -1
  60. platform_api_python_client-0.3.0/test/test_c_serve_recipe_input.py → platform_api_python_client-3.1.15/test/test_c_serve_recipe.py +18 -14
  61. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_c_serve_recipe_perf.py +41 -25
  62. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_c_serve_recipe_response.py +127 -79
  63. platform_api_python_client-3.1.15/test/test_c_serve_v2_recipe.py +106 -0
  64. platform_api_python_client-0.3.0/test/test_c_serve_recipe_output.py → platform_api_python_client-3.1.15/test/test_c_serve_v2_recipe_input.py +31 -39
  65. platform_api_python_client-3.1.15/test/test_c_serve_v2_recipe_output.py +106 -0
  66. platform_api_python_client-3.1.15/test/test_client_secret_response.py +52 -0
  67. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_create_c_serve_deployment_request.py +17 -10
  68. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_create_c_serve_deployment_response.py +1 -1
  69. platform_api_python_client-3.1.15/test/test_create_c_serve_v2_deployment_request.py +124 -0
  70. platform_api_python_client-3.1.15/test/test_create_c_serve_v2_deployment_response.py +56 -0
  71. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_create_checkout_request.py +1 -1
  72. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_create_checkout_response.py +1 -1
  73. platform_api_python_client-3.1.15/test/test_create_checkout_session_response.py +52 -0
  74. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_create_compute_deployment_request.py +1 -1
  75. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_create_compute_deployment_response.py +1 -1
  76. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_create_inference_deployment_request.py +1 -1
  77. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_create_inference_deployment_response.py +1 -1
  78. platform_api_python_client-3.1.15/test/test_create_rag_deployment_request.py +116 -0
  79. platform_api_python_client-3.1.15/test/test_create_rag_deployment_response.py +56 -0
  80. platform_api_python_client-3.1.15/test/test_create_setup_checkout_request.py +52 -0
  81. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_credits_response.py +1 -1
  82. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_daily_bill_response.py +1 -1
  83. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_deployment_status.py +1 -1
  84. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_deployment_status_request.py +1 -1
  85. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_deployment_status_response.py +1 -1
  86. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_deployment_type.py +1 -1
  87. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_deployment_usage_value.py +1 -1
  88. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_external_api.py +15 -1
  89. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_get_c_serve_deployment_response.py +15 -7
  90. platform_api_python_client-3.1.15/test/test_get_c_serve_v2_deployment_response.py +138 -0
  91. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_get_cluster_response.py +1 -1
  92. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_get_compute_deployment_response.py +1 -1
  93. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_get_deployment_log_response.py +1 -1
  94. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_get_deployment_response.py +1 -1
  95. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_get_deployment_usage_response.py +3 -3
  96. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_get_inference_deployment_response.py +1 -1
  97. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_get_payments_response.py +1 -1
  98. platform_api_python_client-3.1.15/test/test_get_rag_deployment_response.py +132 -0
  99. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_hardware_instance_response.py +1 -1
  100. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_http_validation_error.py +2 -2
  101. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_list_api_key_response.py +3 -3
  102. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_list_c_serve_recipe_response.py +87 -55
  103. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_list_daily_bill_response.py +3 -3
  104. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_list_get_cluster_response.py +3 -3
  105. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_list_get_deployment_response.py +3 -3
  106. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_list_hardware_instance_response.py +3 -3
  107. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_list_prebuilt_image_response.py +3 -3
  108. platform_api_python_client-3.1.15/test/test_list_user_vault_items_response.py +62 -0
  109. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_metric.py +1 -1
  110. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_prebuilt_image_response.py +1 -1
  111. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_service_status.py +1 -1
  112. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_user_support_email_request.py +4 -2
  113. platform_api_python_client-3.1.15/test/test_user_vault_item_input.py +55 -0
  114. platform_api_python_client-3.1.15/test/test_user_vault_item_output.py +56 -0
  115. platform_api_python_client-3.1.15/test/test_user_vault_type.py +33 -0
  116. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_validation_error.py +1 -1
  117. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/test/test_validation_error_loc_inner.py +1 -1
  118. platform_api_python_client-0.3.0/platform_api_external_client/__init__.py +0 -77
  119. platform_api_python_client-0.3.0/platform_api_external_client/api/__init__.py +0 -5
  120. platform_api_python_client-0.3.0/platform_api_external_client/models/__init__.py +0 -60
  121. platform_api_python_client-0.3.0/platform_api_python_client.egg-info/SOURCES.txt +0 -108
  122. platform_api_python_client-0.3.0/platform_api_python_client.egg-info/top_level.txt +0 -1
  123. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/api_response.py +0 -0
  124. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/exceptions.py +0 -0
  125. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/api_key_request.py +0 -0
  126. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/api_key_response.py +0 -0
  127. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/create_c_serve_deployment_response.py +0 -0
  128. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/create_checkout_request.py +0 -0
  129. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/create_checkout_response.py +0 -0
  130. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/create_inference_deployment_request.py +0 -0
  131. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/create_inference_deployment_response.py +0 -0
  132. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/credits_response.py +0 -0
  133. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/daily_bill_response.py +0 -0
  134. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/deployment_status.py +0 -0
  135. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/deployment_usage_value.py +0 -0
  136. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/get_deployment_log_response.py +0 -0
  137. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/get_payments_response.py +0 -0
  138. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/metric.py +0 -0
  139. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/service_status.py +0 -0
  140. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/models/validation_error_loc_inner.py +0 -0
  141. {platform_api_python_client-0.3.0/platform_api_external_client → platform_api_python_client-3.1.15/platform_api_python_client}/py.typed +0 -0
  142. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/platform_api_python_client.egg-info/dependency_links.txt +0 -0
  143. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/platform_api_python_client.egg-info/requires.txt +0 -0
  144. {platform_api_python_client-0.3.0 → platform_api_python_client-3.1.15}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: platform-api-python-client
3
- Version: 0.3.0
3
+ Version: 3.1.15
4
4
  Summary: Platform External API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -11,6 +11,13 @@ Requires-Dist: urllib3<3.0.0,>=1.25.3
11
11
  Requires-Dist: python-dateutil>=2.8.2
12
12
  Requires-Dist: pydantic>=2
13
13
  Requires-Dist: typing-extensions>=4.7.1
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: keywords
19
+ Dynamic: requires-dist
20
+ Dynamic: summary
14
21
 
15
22
  No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
16
23
 
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
4
4
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
6
  - API version: 0.1.0
7
- - Package version: 0.3.0
7
+ - Package version: 3.1.15
8
8
  - Generator version: 7.9.0
9
9
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
10
 
@@ -76,7 +76,7 @@ configuration = platform_api_python_client.Configuration(
76
76
  with platform_api_python_client.ApiClient(configuration) as api_client:
77
77
  # Create an instance of the API class
78
78
  api_instance = platform_api_python_client.EXTERNALApi(api_client)
79
- feedback_request = platform_api_python_client.FeedbackRequest() # FeedbackRequest |
79
+ user_support_email_request = platform_api_python_client.UserSupportEmailRequest() # UserSupportEmailRequest |
80
80
 
81
81
  try:
82
82
  # Add User Request
@@ -99,14 +99,20 @@ Class | Method | HTTP request | Description
99
99
  *EXTERNALApi* | [**create_checkout_payments_checkout_post**](docs/EXTERNALApi.md#create_checkout_payments_checkout_post) | **POST** /payments/checkout | Create Checkout
100
100
  *EXTERNALApi* | [**create_compute_deployment_deployments_compute_post**](docs/EXTERNALApi.md#create_compute_deployment_deployments_compute_post) | **POST** /deployments/compute | Create Compute Deployment
101
101
  *EXTERNALApi* | [**create_cserve_deployment_deployments_cserve_post**](docs/EXTERNALApi.md#create_cserve_deployment_deployments_cserve_post) | **POST** /deployments/cserve | Create Cserve Deployment
102
+ *EXTERNALApi* | [**create_cserve_v2_deployment_deployments_cserve_v2_post**](docs/EXTERNALApi.md#create_cserve_v2_deployment_deployments_cserve_v2_post) | **POST** /deployments/cserve_v2 | Create Cserve V2 Deployment
102
103
  *EXTERNALApi* | [**create_inference_deployment_deployments_inference_post**](docs/EXTERNALApi.md#create_inference_deployment_deployments_inference_post) | **POST** /deployments/inference | Create Inference Deployment
104
+ *EXTERNALApi* | [**create_rag_deployment_deployments_rag_post**](docs/EXTERNALApi.md#create_rag_deployment_deployments_rag_post) | **POST** /deployments/rag | Create Rag Deployment
105
+ *EXTERNALApi* | [**create_setup_payments_setup_checkout_post**](docs/EXTERNALApi.md#create_setup_payments_setup_checkout_post) | **POST** /payments/setup_checkout | Create Setup
103
106
  *EXTERNALApi* | [**delete_api_key_credentials_api_key_id_delete**](docs/EXTERNALApi.md#delete_api_key_credentials_api_key_id_delete) | **DELETE** /credentials/api-key/{id} | Delete Api Key
107
+ *EXTERNALApi* | [**delete_user_vault_item_endpoint_user_vault_delete**](docs/EXTERNALApi.md#delete_user_vault_item_endpoint_user_vault_delete) | **DELETE** /user_vault | Delete User Vault Item Endpoint
108
+ *EXTERNALApi* | [**get_all_user_vault_items_endpoint_user_vault_get**](docs/EXTERNALApi.md#get_all_user_vault_items_endpoint_user_vault_get) | **GET** /user_vault | Get All User Vault Items Endpoint
104
109
  *EXTERNALApi* | [**get_api_keys_credentials_api_key_get**](docs/EXTERNALApi.md#get_api_keys_credentials_api_key_get) | **GET** /credentials/api-key | Get Api Keys
105
110
  *EXTERNALApi* | [**get_clusters_clusters_get**](docs/EXTERNALApi.md#get_clusters_clusters_get) | **GET** /clusters | Get Clusters
106
111
  *EXTERNALApi* | [**get_compute_deployment_deployments_compute_deployment_id_get**](docs/EXTERNALApi.md#get_compute_deployment_deployments_compute_deployment_id_get) | **GET** /deployments/compute/{deployment_id} | Get Compute Deployment
107
112
  *EXTERNALApi* | [**get_credits_credits_get**](docs/EXTERNALApi.md#get_credits_credits_get) | **GET** /credits | Get Credits
108
113
  *EXTERNALApi* | [**get_cserve_deployment_deployments_cserve_deployment_id_get**](docs/EXTERNALApi.md#get_cserve_deployment_deployments_cserve_deployment_id_get) | **GET** /deployments/cserve/{deployment_id} | Get Cserve Deployment
109
114
  *EXTERNALApi* | [**get_cserve_recipe_deployments_cserve_recipes_get**](docs/EXTERNALApi.md#get_cserve_recipe_deployments_cserve_recipes_get) | **GET** /deployments/cserve/recipes | Get Cserve Recipe
115
+ *EXTERNALApi* | [**get_cserve_v2_deployment_deployments_cserve_v2_deployment_id_get**](docs/EXTERNALApi.md#get_cserve_v2_deployment_deployments_cserve_v2_deployment_id_get) | **GET** /deployments/cserve_v2/{deployment_id} | Get Cserve V2 Deployment
110
116
  *EXTERNALApi* | [**get_deployment_logs_deployments_logs_deployment_id_get**](docs/EXTERNALApi.md#get_deployment_logs_deployments_logs_deployment_id_get) | **GET** /deployments/logs/{deployment_id} | Get Deployment Logs
111
117
  *EXTERNALApi* | [**get_deployment_status_deployments_status_deployment_id_get**](docs/EXTERNALApi.md#get_deployment_status_deployments_status_deployment_id_get) | **GET** /deployments/status/{deployment_id} | Get Deployment Status
112
118
  *EXTERNALApi* | [**get_deployments_deployments_get**](docs/EXTERNALApi.md#get_deployments_deployments_get) | **GET** /deployments | Get Deployments
@@ -114,28 +120,36 @@ Class | Method | HTTP request | Description
114
120
  *EXTERNALApi* | [**get_inference_deployment_deployments_inference_deployment_id_get**](docs/EXTERNALApi.md#get_inference_deployment_deployments_inference_deployment_id_get) | **GET** /deployments/inference/{deployment_id} | Get Inference Deployment
115
121
  *EXTERNALApi* | [**get_payments_payments_get**](docs/EXTERNALApi.md#get_payments_payments_get) | **GET** /payments | Get Payments
116
122
  *EXTERNALApi* | [**get_prebuilt_images_prebuilt_images_get**](docs/EXTERNALApi.md#get_prebuilt_images_prebuilt_images_get) | **GET** /prebuilt-images | Get Prebuilt Images
123
+ *EXTERNALApi* | [**get_rag_deployment_deployments_rag_deployment_id_get**](docs/EXTERNALApi.md#get_rag_deployment_deployments_rag_deployment_id_get) | **GET** /deployments/rag/{deployment_id} | Get Rag Deployment
117
124
  *EXTERNALApi* | [**get_usage_daily_bills_get**](docs/EXTERNALApi.md#get_usage_daily_bills_get) | **GET** /daily_bills | Get Usage
118
125
  *EXTERNALApi* | [**get_usage_deployments_usage_deployment_id_get**](docs/EXTERNALApi.md#get_usage_deployments_usage_deployment_id_get) | **GET** /deployments/usage/{deployment_id} | Get Usage
119
126
  *EXTERNALApi* | [**setup_stripe_customer_payments_setup_post**](docs/EXTERNALApi.md#setup_stripe_customer_payments_setup_post) | **POST** /payments/setup | Setup Stripe Customer
120
127
  *EXTERNALApi* | [**update_deployment_status_deployments_status_deployment_id_put**](docs/EXTERNALApi.md#update_deployment_status_deployments_status_deployment_id_put) | **PUT** /deployments/status/{deployment_id} | Update Deployment Status
128
+ *EXTERNALApi* | [**update_user_vault_item_endpoint_user_vault_put**](docs/EXTERNALApi.md#update_user_vault_item_endpoint_user_vault_put) | **PUT** /user_vault | Update User Vault Item Endpoint
121
129
 
122
130
 
123
131
  ## Documentation For Models
124
132
 
125
133
  - [APIKeyRequest](docs/APIKeyRequest.md)
126
134
  - [APIKeyResponse](docs/APIKeyResponse.md)
127
- - [CServeRecipeInput](docs/CServeRecipeInput.md)
128
- - [CServeRecipeOutput](docs/CServeRecipeOutput.md)
135
+ - [CServeRecipe](docs/CServeRecipe.md)
129
136
  - [CServeRecipePerf](docs/CServeRecipePerf.md)
130
137
  - [CServeRecipeResponse](docs/CServeRecipeResponse.md)
138
+ - [CServeV2RecipeInput](docs/CServeV2RecipeInput.md)
139
+ - [CServeV2RecipeOutput](docs/CServeV2RecipeOutput.md)
131
140
  - [CreateCServeDeploymentRequest](docs/CreateCServeDeploymentRequest.md)
132
141
  - [CreateCServeDeploymentResponse](docs/CreateCServeDeploymentResponse.md)
142
+ - [CreateCServeV2DeploymentRequest](docs/CreateCServeV2DeploymentRequest.md)
143
+ - [CreateCServeV2DeploymentResponse](docs/CreateCServeV2DeploymentResponse.md)
133
144
  - [CreateCheckoutRequest](docs/CreateCheckoutRequest.md)
134
- - [CreateCheckoutResponse](docs/CreateCheckoutResponse.md)
145
+ - [CreateCheckoutSessionResponse](docs/CreateCheckoutSessionResponse.md)
135
146
  - [CreateComputeDeploymentRequest](docs/CreateComputeDeploymentRequest.md)
136
147
  - [CreateComputeDeploymentResponse](docs/CreateComputeDeploymentResponse.md)
137
148
  - [CreateInferenceDeploymentRequest](docs/CreateInferenceDeploymentRequest.md)
138
149
  - [CreateInferenceDeploymentResponse](docs/CreateInferenceDeploymentResponse.md)
150
+ - [CreateRagDeploymentRequest](docs/CreateRagDeploymentRequest.md)
151
+ - [CreateRagDeploymentResponse](docs/CreateRagDeploymentResponse.md)
152
+ - [CreateSetupCheckoutRequest](docs/CreateSetupCheckoutRequest.md)
139
153
  - [CreditsResponse](docs/CreditsResponse.md)
140
154
  - [DailyBillResponse](docs/DailyBillResponse.md)
141
155
  - [DeploymentStatus](docs/DeploymentStatus.md)
@@ -144,6 +158,7 @@ Class | Method | HTTP request | Description
144
158
  - [DeploymentType](docs/DeploymentType.md)
145
159
  - [DeploymentUsageValue](docs/DeploymentUsageValue.md)
146
160
  - [GetCServeDeploymentResponse](docs/GetCServeDeploymentResponse.md)
161
+ - [GetCServeV2DeploymentResponse](docs/GetCServeV2DeploymentResponse.md)
147
162
  - [GetClusterResponse](docs/GetClusterResponse.md)
148
163
  - [GetComputeDeploymentResponse](docs/GetComputeDeploymentResponse.md)
149
164
  - [GetDeploymentLogResponse](docs/GetDeploymentLogResponse.md)
@@ -151,6 +166,7 @@ Class | Method | HTTP request | Description
151
166
  - [GetDeploymentUsageResponse](docs/GetDeploymentUsageResponse.md)
152
167
  - [GetInferenceDeploymentResponse](docs/GetInferenceDeploymentResponse.md)
153
168
  - [GetPaymentsResponse](docs/GetPaymentsResponse.md)
169
+ - [GetRagDeploymentResponse](docs/GetRagDeploymentResponse.md)
154
170
  - [HTTPValidationError](docs/HTTPValidationError.md)
155
171
  - [HardwareInstanceResponse](docs/HardwareInstanceResponse.md)
156
172
  - [ListAPIKeyResponse](docs/ListAPIKeyResponse.md)
@@ -160,10 +176,14 @@ Class | Method | HTTP request | Description
160
176
  - [ListGetDeploymentResponse](docs/ListGetDeploymentResponse.md)
161
177
  - [ListHardwareInstanceResponse](docs/ListHardwareInstanceResponse.md)
162
178
  - [ListPrebuiltImageResponse](docs/ListPrebuiltImageResponse.md)
179
+ - [ListUserVaultItemsResponse](docs/ListUserVaultItemsResponse.md)
163
180
  - [Metric](docs/Metric.md)
164
181
  - [PrebuiltImageResponse](docs/PrebuiltImageResponse.md)
165
182
  - [ServiceStatus](docs/ServiceStatus.md)
166
183
  - [UserSupportEmailRequest](docs/UserSupportEmailRequest.md)
184
+ - [UserVaultItemInput](docs/UserVaultItemInput.md)
185
+ - [UserVaultItemOutput](docs/UserVaultItemOutput.md)
186
+ - [UserVaultType](docs/UserVaultType.md)
167
187
  - [ValidationError](docs/ValidationError.md)
168
188
  - [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)
169
189
 
@@ -0,0 +1,89 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ Platform External API
7
+
8
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
9
+
10
+ The version of the OpenAPI document: 0.1.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "3.1.15"
18
+
19
+ # import apis into sdk package
20
+ from platform_api_python_client.api.external_api import EXTERNALApi
21
+
22
+ # import ApiClient
23
+ from platform_api_python_client.api_response import ApiResponse
24
+ from platform_api_python_client.api_client import ApiClient
25
+ from platform_api_python_client.configuration import Configuration
26
+ from platform_api_python_client.exceptions import OpenApiException
27
+ from platform_api_python_client.exceptions import ApiTypeError
28
+ from platform_api_python_client.exceptions import ApiValueError
29
+ from platform_api_python_client.exceptions import ApiKeyError
30
+ from platform_api_python_client.exceptions import ApiAttributeError
31
+ from platform_api_python_client.exceptions import ApiException
32
+
33
+ # import models into sdk package
34
+ from platform_api_python_client.models.api_key_request import APIKeyRequest
35
+ from platform_api_python_client.models.api_key_response import APIKeyResponse
36
+ from platform_api_python_client.models.c_serve_recipe import CServeRecipe
37
+ from platform_api_python_client.models.c_serve_recipe_perf import CServeRecipePerf
38
+ from platform_api_python_client.models.c_serve_recipe_response import CServeRecipeResponse
39
+ from platform_api_python_client.models.c_serve_v2_recipe_input import CServeV2RecipeInput
40
+ from platform_api_python_client.models.c_serve_v2_recipe_output import CServeV2RecipeOutput
41
+ from platform_api_python_client.models.create_c_serve_deployment_request import CreateCServeDeploymentRequest
42
+ from platform_api_python_client.models.create_c_serve_deployment_response import CreateCServeDeploymentResponse
43
+ from platform_api_python_client.models.create_c_serve_v2_deployment_request import CreateCServeV2DeploymentRequest
44
+ from platform_api_python_client.models.create_c_serve_v2_deployment_response import CreateCServeV2DeploymentResponse
45
+ from platform_api_python_client.models.create_checkout_request import CreateCheckoutRequest
46
+ from platform_api_python_client.models.create_checkout_session_response import CreateCheckoutSessionResponse
47
+ from platform_api_python_client.models.create_compute_deployment_request import CreateComputeDeploymentRequest
48
+ from platform_api_python_client.models.create_compute_deployment_response import CreateComputeDeploymentResponse
49
+ from platform_api_python_client.models.create_inference_deployment_request import CreateInferenceDeploymentRequest
50
+ from platform_api_python_client.models.create_inference_deployment_response import CreateInferenceDeploymentResponse
51
+ from platform_api_python_client.models.create_rag_deployment_request import CreateRagDeploymentRequest
52
+ from platform_api_python_client.models.create_rag_deployment_response import CreateRagDeploymentResponse
53
+ from platform_api_python_client.models.create_setup_checkout_request import CreateSetupCheckoutRequest
54
+ from platform_api_python_client.models.credits_response import CreditsResponse
55
+ from platform_api_python_client.models.daily_bill_response import DailyBillResponse
56
+ from platform_api_python_client.models.deployment_status import DeploymentStatus
57
+ from platform_api_python_client.models.deployment_status_request import DeploymentStatusRequest
58
+ from platform_api_python_client.models.deployment_status_response import DeploymentStatusResponse
59
+ from platform_api_python_client.models.deployment_type import DeploymentType
60
+ from platform_api_python_client.models.deployment_usage_value import DeploymentUsageValue
61
+ from platform_api_python_client.models.get_c_serve_deployment_response import GetCServeDeploymentResponse
62
+ from platform_api_python_client.models.get_c_serve_v2_deployment_response import GetCServeV2DeploymentResponse
63
+ from platform_api_python_client.models.get_cluster_response import GetClusterResponse
64
+ from platform_api_python_client.models.get_compute_deployment_response import GetComputeDeploymentResponse
65
+ from platform_api_python_client.models.get_deployment_log_response import GetDeploymentLogResponse
66
+ from platform_api_python_client.models.get_deployment_response import GetDeploymentResponse
67
+ from platform_api_python_client.models.get_deployment_usage_response import GetDeploymentUsageResponse
68
+ from platform_api_python_client.models.get_inference_deployment_response import GetInferenceDeploymentResponse
69
+ from platform_api_python_client.models.get_payments_response import GetPaymentsResponse
70
+ from platform_api_python_client.models.get_rag_deployment_response import GetRagDeploymentResponse
71
+ from platform_api_python_client.models.http_validation_error import HTTPValidationError
72
+ from platform_api_python_client.models.hardware_instance_response import HardwareInstanceResponse
73
+ from platform_api_python_client.models.list_api_key_response import ListAPIKeyResponse
74
+ from platform_api_python_client.models.list_c_serve_recipe_response import ListCServeRecipeResponse
75
+ from platform_api_python_client.models.list_daily_bill_response import ListDailyBillResponse
76
+ from platform_api_python_client.models.list_get_cluster_response import ListGetClusterResponse
77
+ from platform_api_python_client.models.list_get_deployment_response import ListGetDeploymentResponse
78
+ from platform_api_python_client.models.list_hardware_instance_response import ListHardwareInstanceResponse
79
+ from platform_api_python_client.models.list_prebuilt_image_response import ListPrebuiltImageResponse
80
+ from platform_api_python_client.models.list_user_vault_items_response import ListUserVaultItemsResponse
81
+ from platform_api_python_client.models.metric import Metric
82
+ from platform_api_python_client.models.prebuilt_image_response import PrebuiltImageResponse
83
+ from platform_api_python_client.models.service_status import ServiceStatus
84
+ from platform_api_python_client.models.user_support_email_request import UserSupportEmailRequest
85
+ from platform_api_python_client.models.user_vault_item_input import UserVaultItemInput
86
+ from platform_api_python_client.models.user_vault_item_output import UserVaultItemOutput
87
+ from platform_api_python_client.models.user_vault_type import UserVaultType
88
+ from platform_api_python_client.models.validation_error import ValidationError
89
+ from platform_api_python_client.models.validation_error_loc_inner import ValidationErrorLocInner
@@ -0,0 +1,5 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from platform_api_python_client.api.external_api import EXTERNALApi
5
+