truefoundry-sdk 0.1.17rc1__tar.gz → 0.1.19__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 (1351) hide show
  1. truefoundry_sdk-0.1.19/PKG-INFO +303 -0
  2. truefoundry_sdk-0.1.19/README.md +272 -0
  3. truefoundry_sdk-0.1.19/pyproject.toml +92 -0
  4. truefoundry_sdk-0.1.19/src/truefoundry_sdk/__init__.py +2796 -0
  5. truefoundry_sdk-0.1.19/src/truefoundry_sdk/_wrapped_clients.py +821 -0
  6. truefoundry_sdk-0.1.19/src/truefoundry_sdk/application_versions/raw_client.py +355 -0
  7. truefoundry_sdk-0.1.19/src/truefoundry_sdk/applications/raw_client.py +1312 -0
  8. truefoundry_sdk-0.1.19/src/truefoundry_sdk/applications/types/applications_list_request_device_type_filter.py +50 -0
  9. truefoundry_sdk-0.1.19/src/truefoundry_sdk/applications/types/applications_list_request_lifecycle_stage.py +38 -0
  10. truefoundry_sdk-0.1.19/src/truefoundry_sdk/artifact_versions/raw_client.py +1230 -0
  11. truefoundry_sdk-0.1.19/src/truefoundry_sdk/artifacts/raw_client.py +518 -0
  12. truefoundry_sdk-0.1.19/src/truefoundry_sdk/base_client.py +838 -0
  13. truefoundry_sdk-0.1.19/src/truefoundry_sdk/clusters/raw_client.py +855 -0
  14. truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/client_wrapper.py +99 -0
  15. truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/http_client.py +663 -0
  16. truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/http_response.py +59 -0
  17. truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/jsonable_encoder.py +108 -0
  18. truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/pydantic_utilities.py +560 -0
  19. truefoundry_sdk-0.1.19/src/truefoundry_sdk/data_directories/raw_client.py +1187 -0
  20. truefoundry_sdk-0.1.19/src/truefoundry_sdk/environments/raw_client.py +487 -0
  21. truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/ai_gateway/types/ai_gateway_get_gateway_config_request_type.py +62 -0
  22. truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/artifact_versions/raw_client.py +262 -0
  23. truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/docker_registries/types/docker_registries_create_repository_response.py +22 -0
  24. truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/docker_registries/types/docker_registries_get_credentials_response.py +40 -0
  25. truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/metrics/types/metrics_get_charts_request_filter_entity.py +46 -0
  26. truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/ml/types/apply_ml_entity_request_manifest.py +10 -0
  27. truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/workflows/types/workflows_execute_workflow_response.py +25 -0
  28. truefoundry_sdk-0.1.19/src/truefoundry_sdk/jobs/raw_client.py +995 -0
  29. truefoundry_sdk-0.1.19/src/truefoundry_sdk/ml_repos/raw_client.py +601 -0
  30. truefoundry_sdk-0.1.19/src/truefoundry_sdk/model_versions/raw_client.py +585 -0
  31. truefoundry_sdk-0.1.19/src/truefoundry_sdk/models/raw_client.py +518 -0
  32. truefoundry_sdk-0.1.19/src/truefoundry_sdk/personal_access_tokens/raw_client.py +630 -0
  33. truefoundry_sdk-0.1.19/src/truefoundry_sdk/prompt_versions/raw_client.py +555 -0
  34. truefoundry_sdk-0.1.19/src/truefoundry_sdk/prompts/raw_client.py +508 -0
  35. truefoundry_sdk-0.1.19/src/truefoundry_sdk/secret_groups/raw_client.py +997 -0
  36. truefoundry_sdk-0.1.19/src/truefoundry_sdk/secrets/raw_client.py +505 -0
  37. truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/__init__.py +34 -0
  38. truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/client.py +406 -0
  39. truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/raw_client.py +545 -0
  40. truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/types/__init__.py +34 -0
  41. truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/types/teams_list_request_type.py +34 -0
  42. truefoundry_sdk-0.1.19/src/truefoundry_sdk/traces/client.py +281 -0
  43. truefoundry_sdk-0.1.19/src/truefoundry_sdk/traces/raw_client.py +318 -0
  44. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/__init__.py +2664 -0
  45. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/account.py +44 -0
  46. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/account_info.py +21 -0
  47. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/addon_component.py +68 -0
  48. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/addon_component_name.py +134 -0
  49. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/addon_component_status.py +37 -0
  50. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/agent_manifest.py +52 -0
  51. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/agent_skill.py +30 -0
  52. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/agent_source.py +8 -0
  53. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ai21provider_account.py +51 -0
  54. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/alert.py +46 -0
  55. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/alert_config_resource_type.py +38 -0
  56. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/alert_severity.py +34 -0
  57. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/alert_status.py +34 -0
  58. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/all_data_access_rule.py +32 -0
  59. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/all_data_access_rule_filters_item.py +8 -0
  60. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/anthropic_provider_account.py +51 -0
  61. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/application.py +109 -0
  62. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/application_debug_info.py +42 -0
  63. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/application_lifecycle_stage.py +38 -0
  64. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/application_type.py +82 -0
  65. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/apply_ml_entity_response_data.py +10 -0
  66. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/artifact_type.py +50 -0
  67. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_api_key_auth.py +30 -0
  68. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_guardrail_config.py +63 -0
  69. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_guardrail_config_config.py +29 -0
  70. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_guardrail_config_operation.py +39 -0
  71. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_provider_account.py +57 -0
  72. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_provider_account_auth_data.py +11 -0
  73. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_provider_account.py +54 -0
  74. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_region.py +170 -0
  75. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_sagemaker_provider_account.py +57 -0
  76. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_certificate_auth.py +45 -0
  77. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_content_safety_category.py +42 -0
  78. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_content_safety_guardrail_config.py +52 -0
  79. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_content_safety_guardrail_config_config.py +47 -0
  80. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_foundry_model.py +64 -0
  81. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_foundry_model_auth_data.py +8 -0
  82. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_foundry_provider_account.py +49 -0
  83. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_open_ai_provider_account.py +60 -0
  84. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_open_ai_provider_account_auth_data.py +8 -0
  85. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_pii_category.py +78 -0
  86. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_pii_guardrail_config.py +57 -0
  87. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_pii_guardrail_config_config.py +53 -0
  88. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_pii_guardrail_config_config_domain.py +38 -0
  89. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_provider_account.py +48 -0
  90. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/base_o_auth2login_jwt_source.py +38 -0
  91. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/bitbucket_provider_account.py +43 -0
  92. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/budget_limit_unit.py +50 -0
  93. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/build_status.py +38 -0
  94. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cerebras_provider_account.py +51 -0
  95. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/chat_prompt_manifest.py +106 -0
  96. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/chat_prompt_manifest_cache_config.py +8 -0
  97. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cloudera_provider_account.py +55 -0
  98. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster.py +42 -0
  99. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster_gateway.py +30 -0
  100. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster_manifest.py +102 -0
  101. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster_manifest_cluster_type.py +50 -0
  102. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster_type.py +46 -0
  103. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/code_safety_linter_guardrail_config.py +48 -0
  104. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cohere_provider_account.py +51 -0
  105. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/common_tools_settings.py +55 -0
  106. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_guardrail_config.py +69 -0
  107. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_guardrail_config_config.py +31 -0
  108. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_guardrail_config_operation.py +39 -0
  109. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_guardrail_config_target.py +38 -0
  110. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_provider_account.py +45 -0
  111. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/data_access_rule.py +9 -0
  112. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/data_access_rule_base.py +40 -0
  113. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/databricks_provider_account.py +60 -0
  114. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deepinfra_provider_account.py +51 -0
  115. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment.py +72 -0
  116. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment_build.py +54 -0
  117. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment_status.py +39 -0
  118. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment_status_value.py +78 -0
  119. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment_transition.py +50 -0
  120. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/dockerhub_basic_auth.py +36 -0
  121. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/dockerhub_provider_account.py +50 -0
  122. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/enforcing_strategy.py +42 -0
  123. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config.py +59 -0
  124. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config_config.py +21 -0
  125. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config_operation.py +39 -0
  126. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/environment.py +43 -0
  127. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/environment_color.py +29 -0
  128. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/environment_manifest.py +42 -0
  129. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/environment_optimize_for.py +34 -0
  130. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/event.py +76 -0
  131. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/event_chart_category.py +46 -0
  132. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/event_involved_object.py +28 -0
  133. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/exact_match_cache_config.py +31 -0
  134. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/external_blob_storage_source.py +22 -0
  135. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/fast_ai_framework.py +18 -0
  136. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/fiddler_guard_type.py +34 -0
  137. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/fiddler_guardrail_config.py +52 -0
  138. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/fiddler_guardrail_config_config.py +23 -0
  139. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_launch_plan_id.py +23 -0
  140. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_launch_plan_spec.py +23 -0
  141. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_task_custom.py +22 -0
  142. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_task_id.py +23 -0
  143. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_workflow_id.py +23 -0
  144. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_config.py +27 -0
  145. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_configuration.py +37 -0
  146. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_access_config.py +32 -0
  147. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_created_by_filter.py +35 -0
  148. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_metadata_filter.py +40 -0
  149. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config.py +34 -0
  150. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination.py +42 -0
  151. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_condition.py +14 -0
  152. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_control_plane_managed_storage.py +35 -0
  153. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_control_plane_managed_storage_region.py +42 -0
  154. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_created_by_condition.py +35 -0
  155. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_customer_managed_storage.py +30 -0
  156. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_metadata_condition.py +40 -0
  157. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_storage.py +27 -0
  158. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_storage_storage.py +15 -0
  159. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_logging_config.py +37 -0
  160. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_logging_rule.py +32 -0
  161. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_logging_when.py +25 -0
  162. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_metadata_config.py +37 -0
  163. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_metadata_rule.py +32 -0
  164. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_metadata_when.py +25 -0
  165. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_request_metadata_filter.py +26 -0
  166. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_request_metadata_filter_operator.py +82 -0
  167. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gcp_api_key_auth.py +32 -0
  168. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gcp_provider_account.py +50 -0
  169. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gcp_region.py +174 -0
  170. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/get_authenticated_vcsurl_response.py +25 -0
  171. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/github_provider_account.py +43 -0
  172. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gitlab_provider_account.py +43 -0
  173. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/global_settings.py +33 -0
  174. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gluon_framework.py +18 -0
  175. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/google_gemini_provider_account.py +51 -0
  176. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/google_vertex_provider_account.py +58 -0
  177. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/graph.py +46 -0
  178. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/graph_chart_type.py +62 -0
  179. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/groq_provider_account.py +51 -0
  180. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/guardrail_config_group.py +52 -0
  181. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/guardrail_config_integrations.py +35 -0
  182. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/guardrails_rule.py +47 -0
  183. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/guardrails_when.py +22 -0
  184. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/h2o_framework.py +18 -0
  185. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/hashicorp_provider_account.py +43 -0
  186. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/helm.py +54 -0
  187. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/hosted_a2a_agent.py +35 -0
  188. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/http_error.py +41 -0
  189. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/i_change.py +32 -0
  190. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/i_change_operation.py +38 -0
  191. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/in_not_in_operator.py +20 -0
  192. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/in_not_in_operator_condition.py +34 -0
  193. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/infer_method_name.py +38 -0
  194. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/input_output_based_cost_metric_value.py +42 -0
  195. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/is_cluster_connected_response.py +25 -0
  196. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/jfrog_provider_account.py +50 -0
  197. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/job_run.py +106 -0
  198. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/job_run_status.py +66 -0
  199. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/job_runs_sort_by.py +46 -0
  200. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/json_object_response_format.py +22 -0
  201. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/json_schema.py +34 -0
  202. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/json_schema_response_format.py +24 -0
  203. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/jwt.py +33 -0
  204. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/keras_framework.py +18 -0
  205. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/latency_based_load_balancing.py +27 -0
  206. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/library_name.py +42 -0
  207. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/light_gbm_framework.py +18 -0
  208. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/list_files_request.py +25 -0
  209. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/local_artifact_source.py +23 -0
  210. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/local_model_source.py +22 -0
  211. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/log.py +45 -0
  212. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_config.py +30 -0
  213. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_mode.py +9 -0
  214. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_mode_always.py +25 -0
  215. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_mode_header_controlled.py +30 -0
  216. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_mode_never.py +25 -0
  217. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_filter_query.py +37 -0
  218. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_filter_query_type.py +42 -0
  219. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_search_filter_type.py +42 -0
  220. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_search_operator_type.py +38 -0
  221. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_sorting_direction.py +34 -0
  222. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mcp_server_integration_transport.py +38 -0
  223. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mcp_server_o_auth2jwt_source.py +38 -0
  224. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mcp_server_provider_account.py +51 -0
  225. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mime_type.py +50 -0
  226. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mistral_ai_provider_account.py +51 -0
  227. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ml_repo.py +48 -0
  228. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ml_repo_manifest.py +49 -0
  229. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/model_provider_account.py +61 -0
  230. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/model_type.py +70 -0
  231. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/multi_part_upload.py +28 -0
  232. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/multi_part_upload_storage_provider.py +38 -0
  233. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/node_selector_capacity_type.py +45 -0
  234. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/nomic_provider_account.py +51 -0
  235. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/nvidia_miggpu_profile.py +174 -0
  236. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ollama_provider_account.py +51 -0
  237. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/onnx_framework.py +18 -0
  238. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config.py +53 -0
  239. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_config.py +33 -0
  240. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_config_category_thresholds_value.py +11 -0
  241. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_config_category_thresholds_value_harassment.py +20 -0
  242. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_router_provider_account.py +51 -0
  243. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/openai_provider_account.py +56 -0
  244. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/operation.py +38 -0
  245. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/otel_exporter_grpc_config.py +51 -0
  246. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/otel_exporter_http_config.py +57 -0
  247. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/otel_exporter_http_config_encoding.py +38 -0
  248. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/otel_exporter_span_attribute_filter.py +40 -0
  249. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/own_data_access_rule.py +26 -0
  250. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/paddle_framework.py +18 -0
  251. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pager_duty_provider_account.py +43 -0
  252. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/palm_provider_account.py +51 -0
  253. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config.py +52 -0
  254. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config_config.py +32 -0
  255. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config_config_mode.py +38 -0
  256. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pangea_guard_type.py +34 -0
  257. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pangea_guardrail_config.py +58 -0
  258. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pangea_guardrail_config_config.py +33 -0
  259. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pangea_guardrail_config_operation.py +38 -0
  260. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/param_param_type.py +34 -0
  261. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_glider_criteria.py +46 -0
  262. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_guardrail_config.py +52 -0
  263. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_guardrail_config_config.py +28 -0
  264. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_guardrail_config_config_target.py +38 -0
  265. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_judge_criteria.py +86 -0
  266. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/perplexity_ai_provider_account.py +51 -0
  267. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/personal_access_token_manifest.py +43 -0
  268. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/policy_entity_types.py +54 -0
  269. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/policy_manifest_mode.py +42 -0
  270. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/port_app_protocol.py +45 -0
  271. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/port_protocol.py +38 -0
  272. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/priority_based_load_balancing.py +27 -0
  273. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/private_pricing_tier.py +30 -0
  274. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prometheus_alert_rule.py +54 -0
  275. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_foo_guard_type.py +38 -0
  276. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_foo_guardrail_config.py +56 -0
  277. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_foo_guardrail_config_config.py +19 -0
  278. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_foo_guardrail_config_operation.py +38 -0
  279. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_source.py +36 -0
  280. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/py_torch_framework.py +18 -0
  281. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/quay_provider_account.py +50 -0
  282. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/rate_limit_rule.py +39 -0
  283. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/rate_limit_unit.py +54 -0
  284. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/recommendation.py +51 -0
  285. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/remote_source.py +30 -0
  286. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/role_manifest.py +52 -0
  287. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/role_with_resource.py +27 -0
  288. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/role_with_resource_resource_type.py +174 -0
  289. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/samba_nova_provider_account.py +51 -0
  290. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sample_agent_input.py +26 -0
  291. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/schedule_concurrency_policy.py +44 -0
  292. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret.py +53 -0
  293. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_detection_guardrail_config.py +56 -0
  294. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_detection_guardrail_config_config.py +21 -0
  295. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_detection_guardrail_config_operation.py +38 -0
  296. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_group.py +55 -0
  297. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_group_manifest.py +44 -0
  298. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_version.py +41 -0
  299. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/self_hosted_model_model_server.py +54 -0
  300. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/self_hosted_model_provider_account.py +51 -0
  301. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/semantic_cache_config.py +36 -0
  302. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/semantic_cache_settings.py +25 -0
  303. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/session.py +58 -0
  304. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/session_account.py +19 -0
  305. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/session_team.py +19 -0
  306. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sklearn_framework.py +27 -0
  307. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sklearn_serialization_format.py +42 -0
  308. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/slack_provider_account.py +43 -0
  309. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/smtp_credentials.py +51 -0
  310. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/snowflake_cortex_provider_account.py +58 -0
  311. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sort_direction.py +34 -0
  312. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/spa_cy_framework.py +18 -0
  313. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_attribute_filter.py +26 -0
  314. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_attribute_filter_operator.py +82 -0
  315. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_field_filter.py +27 -0
  316. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_field_filter_operator.py +82 -0
  317. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_field_filter_span_field_name.py +82 -0
  318. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_field_filter_value.py +5 -0
  319. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/spark_job_trigger_input.py +37 -0
  320. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sql_sanitizer_guardrail_config.py +56 -0
  321. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sql_sanitizer_guardrail_config_config.py +61 -0
  322. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sql_sanitizer_guardrail_config_operation.py +38 -0
  323. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/stats_models_framework.py +18 -0
  324. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sub_agent.py +25 -0
  325. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject.py +45 -0
  326. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject_clause.py +23 -0
  327. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject_condition_group.py +21 -0
  328. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject_condition_group_operator.py +34 -0
  329. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject_type.py +50 -0
  330. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sync_token_in_secret_store_info.py +28 -0
  331. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sync_virtual_account_token_response.py +26 -0
  332. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/target_clause.py +27 -0
  333. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/target_condition_group.py +20 -0
  334. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/team.py +45 -0
  335. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/team_data_access_rule.py +26 -0
  336. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/team_manifest.py +43 -0
  337. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/team_metadata.py +22 -0
  338. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tensor_flow_framework.py +18 -0
  339. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/terminate_job_response.py +31 -0
  340. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/together_ai_provider_account.py +51 -0
  341. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/token_pagination.py +37 -0
  342. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/trace_span.py +115 -0
  343. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tracing_project_control_plane_managed_storage.py +25 -0
  344. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tracing_project_customer_managed_storage.py +30 -0
  345. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tracing_project_manifest.py +58 -0
  346. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tracing_project_storage_config.py +10 -0
  347. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/transformers_framework.py +33 -0
  348. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/trigger_job_run_response.py +36 -0
  349. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_apply_request_manifest.py +69 -0
  350. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_apply_response.py +37 -0
  351. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_apply_response_action.py +38 -0
  352. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_apply_response_existing_manifest.py +69 -0
  353. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_delete_request_manifest.py +69 -0
  354. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_managed_source.py +19 -0
  355. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_provider_account.py +43 -0
  356. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ttl_provider_account.py +43 -0
  357. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/upgrade_data.py +43 -0
  358. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/user.py +44 -0
  359. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/user_metadata.py +56 -0
  360. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/user_metadata_tenant_role_managed_by.py +38 -0
  361. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/user_resource.py +44 -0
  362. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/virtual_account.py +61 -0
  363. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/virtual_account_manifest.py +50 -0
  364. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/virtual_model_provider_account.py +49 -0
  365. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/webhook_provider_account.py +43 -0
  366. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/weight_based_load_balancing.py +27 -0
  367. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/workspace.py +49 -0
  368. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/workspace_manifest.py +65 -0
  369. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xai_integrations.py +5 -0
  370. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xai_key_auth.py +30 -0
  371. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xai_model.py +48 -0
  372. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xai_provider_account.py +51 -0
  373. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xg_boost_framework.py +27 -0
  374. truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xg_boost_serialization_format.py +46 -0
  375. truefoundry_sdk-0.1.19/src/truefoundry_sdk/users/raw_client.py +1629 -0
  376. truefoundry_sdk-0.1.19/src/truefoundry_sdk/virtual_accounts/client.py +751 -0
  377. truefoundry_sdk-0.1.19/src/truefoundry_sdk/virtual_accounts/raw_client.py +891 -0
  378. truefoundry_sdk-0.1.19/src/truefoundry_sdk/workspaces/raw_client.py +624 -0
  379. truefoundry_sdk-0.1.17rc1/PKG-INFO +0 -299
  380. truefoundry_sdk-0.1.17rc1/README.md +0 -271
  381. truefoundry_sdk-0.1.17rc1/pyproject.toml +0 -89
  382. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/__init__.py +0 -2552
  383. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/_wrapped_clients.py +0 -821
  384. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/application_versions/raw_client.py +0 -355
  385. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/applications/raw_client.py +0 -1312
  386. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/applications/types/applications_list_request_device_type_filter.py +0 -38
  387. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/applications/types/applications_list_request_lifecycle_stage.py +0 -26
  388. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/artifact_versions/raw_client.py +0 -1230
  389. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/artifacts/raw_client.py +0 -518
  390. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/base_client.py +0 -838
  391. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/clusters/raw_client.py +0 -855
  392. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/client_wrapper.py +0 -95
  393. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/http_client.py +0 -613
  394. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/http_response.py +0 -55
  395. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/jsonable_encoder.py +0 -100
  396. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/pydantic_utilities.py +0 -260
  397. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/data_directories/raw_client.py +0 -1187
  398. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/environments/raw_client.py +0 -487
  399. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/ai_gateway/types/ai_gateway_get_gateway_config_request_type.py +0 -38
  400. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/artifact_versions/raw_client.py +0 -262
  401. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/docker_registries/types/docker_registries_create_repository_response.py +0 -20
  402. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/docker_registries/types/docker_registries_get_credentials_response.py +0 -40
  403. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/metrics/types/metrics_get_charts_request_filter_entity.py +0 -34
  404. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/ml/types/apply_ml_entity_request_manifest.py +0 -13
  405. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/workflows/types/workflows_execute_workflow_response.py +0 -25
  406. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/jobs/raw_client.py +0 -995
  407. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/ml_repos/raw_client.py +0 -601
  408. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/model_versions/raw_client.py +0 -585
  409. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/models/raw_client.py +0 -518
  410. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/personal_access_tokens/raw_client.py +0 -630
  411. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/prompt_versions/raw_client.py +0 -555
  412. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/prompts/raw_client.py +0 -508
  413. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/secret_groups/raw_client.py +0 -997
  414. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/secrets/raw_client.py +0 -505
  415. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/__init__.py +0 -34
  416. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/client.py +0 -406
  417. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/raw_client.py +0 -545
  418. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/types/__init__.py +0 -38
  419. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/types/apply_team_request_manifest.py +0 -8
  420. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/types/teams_list_request_type.py +0 -18
  421. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/traces/client.py +0 -263
  422. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/traces/raw_client.py +0 -294
  423. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/__init__.py +0 -2406
  424. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/account.py +0 -33
  425. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/addon_component.py +0 -58
  426. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/addon_component_name.py +0 -118
  427. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/addon_component_status.py +0 -37
  428. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ai21provider_account.py +0 -49
  429. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/alert.py +0 -34
  430. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/alert_config_resource_type.py +0 -22
  431. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/alert_severity.py +0 -18
  432. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/alert_status.py +0 -18
  433. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/anthropic_provider_account.py +0 -49
  434. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/application.py +0 -89
  435. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/application_debug_info.py +0 -34
  436. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/application_lifecycle_stage.py +0 -26
  437. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/application_type.py +0 -70
  438. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/apply_ml_entity_response_data.py +0 -11
  439. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/artifact_type.py +0 -38
  440. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_bedrock_guardrail_config.py +0 -59
  441. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_bedrock_guardrail_config_operation.py +0 -23
  442. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_bedrock_provider_account.py +0 -55
  443. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_bedrock_provider_account_auth_data.py +0 -8
  444. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_provider_account.py +0 -52
  445. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_region.py +0 -158
  446. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_sagemaker_provider_account.py +0 -55
  447. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_content_safety_category.py +0 -30
  448. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_content_safety_guardrail_config.py +0 -72
  449. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_foundry_model.py +0 -60
  450. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_foundry_provider_account.py +0 -47
  451. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_open_ai_provider_account.py +0 -54
  452. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_pii_category.py +0 -66
  453. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_pii_guardrail_config.py +0 -78
  454. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_pii_guardrail_config_domain.py +0 -22
  455. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_provider_account.py +0 -46
  456. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/base_o_auth2login_jwt_source.py +0 -22
  457. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/bitbucket_provider_account.py +0 -41
  458. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/budget_limit_unit.py +0 -38
  459. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/build_status.py +0 -26
  460. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cerebras_provider_account.py +0 -49
  461. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/chat_prompt_manifest.py +0 -92
  462. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cloudera_provider_account.py +0 -53
  463. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster.py +0 -34
  464. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster_gateway.py +0 -30
  465. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster_manifest.py +0 -100
  466. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster_manifest_cluster_type.py +0 -38
  467. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster_type.py +0 -34
  468. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cohere_provider_account.py +0 -49
  469. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/common_tools_settings.py +0 -55
  470. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/custom_guardrail_config.py +0 -67
  471. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/custom_guardrail_config_operation.py +0 -23
  472. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/custom_guardrail_config_target.py +0 -22
  473. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/custom_provider_account.py +0 -43
  474. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/databricks_provider_account.py +0 -58
  475. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deepinfra_provider_account.py +0 -49
  476. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment.py +0 -60
  477. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment_build.py +0 -36
  478. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment_status.py +0 -31
  479. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment_status_value.py +0 -66
  480. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment_transition.py +0 -38
  481. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/dockerhub_basic_auth.py +0 -36
  482. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/dockerhub_provider_account.py +0 -48
  483. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config.py +0 -48
  484. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config_operation.py +0 -23
  485. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/environment.py +0 -35
  486. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/environment_color.py +0 -25
  487. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/environment_manifest.py +0 -38
  488. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/environment_optimize_for.py +0 -18
  489. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/event.py +0 -74
  490. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/event_chart_category.py +0 -34
  491. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/event_involved_object.py +0 -24
  492. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/external_blob_storage_source.py +0 -26
  493. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/fast_ai_framework.py +0 -21
  494. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/fiddler_guard_type.py +0 -22
  495. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/fiddler_guardrail_config.py +0 -47
  496. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_launch_plan_id.py +0 -23
  497. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_launch_plan_spec.py +0 -21
  498. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_task_custom.py +0 -19
  499. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_task_id.py +0 -21
  500. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_workflow_id.py +0 -23
  501. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gateway_config.py +0 -11
  502. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gateway_configuration.py +0 -29
  503. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gateway_request_metadata_filter.py +0 -24
  504. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gateway_request_metadata_filter_operator.py +0 -62
  505. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gcp_api_key_auth.py +0 -32
  506. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gcp_provider_account.py +0 -48
  507. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gcp_region.py +0 -162
  508. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/get_authenticated_vcsurl_response.py +0 -23
  509. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/github_provider_account.py +0 -41
  510. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gitlab_provider_account.py +0 -41
  511. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gluon_framework.py +0 -21
  512. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/google_gemini_provider_account.py +0 -49
  513. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/google_vertex_provider_account.py +0 -56
  514. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/graph.py +0 -44
  515. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/graph_chart_type.py +0 -50
  516. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/groq_provider_account.py +0 -49
  517. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/guardrail_config_group.py +0 -50
  518. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/guardrail_config_integrations.py +0 -29
  519. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/guardrails_rule.py +0 -37
  520. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/guardrails_when.py +0 -35
  521. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/h2o_framework.py +0 -21
  522. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/hashicorp_provider_account.py +0 -41
  523. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/helm.py +0 -54
  524. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/http_error.py +0 -39
  525. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/i_change.py +0 -32
  526. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/i_change_operation.py +0 -26
  527. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/infer_method_name.py +0 -22
  528. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/input_output_based_cost_metric_value.py +0 -22
  529. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/is_cluster_connected_response.py +0 -23
  530. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/jfrog_provider_account.py +0 -48
  531. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/job_run.py +0 -100
  532. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/job_run_status.py +0 -54
  533. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/job_runs_sort_by.py +0 -34
  534. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/json_object_response_format.py +0 -25
  535. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/json_schema.py +0 -32
  536. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/json_schema_response_format.py +0 -28
  537. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/jwt.py +0 -27
  538. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/keras_framework.py +0 -21
  539. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/latency_based_load_balancing.py +0 -31
  540. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/library_name.py +0 -30
  541. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/light_gbm_framework.py +0 -21
  542. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/list_files_request.py +0 -23
  543. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/local_artifact_source.py +0 -27
  544. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/local_model_source.py +0 -26
  545. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/log.py +0 -45
  546. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_filter_query.py +0 -35
  547. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_filter_query_type.py +0 -30
  548. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_search_filter_type.py +0 -30
  549. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_search_operator_type.py +0 -22
  550. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_sorting_direction.py +0 -18
  551. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mcp_server_integration_transport.py +0 -22
  552. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mcp_server_o_auth2jwt_source.py +0 -22
  553. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mcp_server_provider_account.py +0 -49
  554. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mime_type.py +0 -38
  555. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mistral_ai_provider_account.py +0 -49
  556. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ml_repo.py +0 -48
  557. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ml_repo_manifest.py +0 -47
  558. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/model_provider_account.py +0 -59
  559. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/model_type.py +0 -58
  560. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/multi_part_upload.py +0 -28
  561. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/multi_part_upload_storage_provider.py +0 -22
  562. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/node_selector_capacity_type.py +0 -33
  563. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/nomic_provider_account.py +0 -49
  564. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/nvidia_miggpu_profile.py +0 -162
  565. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ollama_provider_account.py +0 -49
  566. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/onnx_framework.py +0 -21
  567. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config.py +0 -61
  568. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_category_thresholds_value.py +0 -11
  569. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_category_thresholds_value_harassment.py +0 -20
  570. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/open_router_provider_account.py +0 -49
  571. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/openai_provider_account.py +0 -54
  572. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/operation.py +0 -22
  573. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/otel_exporter_grpc_config.py +0 -45
  574. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/otel_exporter_http_config.py +0 -51
  575. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/otel_exporter_http_config_encoding.py +0 -22
  576. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/paddle_framework.py +0 -21
  577. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/pager_duty_provider_account.py +0 -41
  578. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/palm_provider_account.py +0 -49
  579. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config.py +0 -52
  580. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config_mode.py +0 -22
  581. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/pangea_guard_type.py +0 -18
  582. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/pangea_guardrail_config.py +0 -58
  583. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/pangea_guardrail_config_operation.py +0 -22
  584. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/param_param_type.py +0 -18
  585. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/patronus_glider_criteria.py +0 -34
  586. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/patronus_guardrail_config.py +0 -52
  587. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/patronus_guardrail_config_target.py +0 -22
  588. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/patronus_judge_criteria.py +0 -74
  589. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/perplexity_ai_provider_account.py +0 -49
  590. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/personal_access_token_manifest.py +0 -41
  591. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/policy_entity_types.py +0 -42
  592. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/policy_manifest_mode.py +0 -30
  593. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/port_app_protocol.py +0 -33
  594. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/port_protocol.py +0 -22
  595. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/priority_based_load_balancing.py +0 -31
  596. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/prometheus_alert_rule.py +0 -54
  597. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/prompt_foo_guard_type.py +0 -26
  598. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/prompt_foo_guardrail_config.py +0 -41
  599. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/prompt_foo_guardrail_config_operation.py +0 -22
  600. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/py_torch_framework.py +0 -21
  601. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/quay_provider_account.py +0 -48
  602. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/rate_limit_rule.py +0 -35
  603. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/rate_limit_unit.py +0 -42
  604. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/recommendation.py +0 -37
  605. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/remote_source.py +0 -30
  606. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/role_manifest.py +0 -49
  607. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/role_permissions.py +0 -28
  608. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/samba_nova_provider_account.py +0 -49
  609. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/schedule_concurrency_policy.py +0 -32
  610. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/secret.py +0 -45
  611. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/secret_group.py +0 -40
  612. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/secret_group_manifest.py +0 -37
  613. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/secret_version.py +0 -35
  614. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/self_hosted_model_model_server.py +0 -42
  615. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/self_hosted_model_provider_account.py +0 -49
  616. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/session.py +0 -40
  617. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sklearn_framework.py +0 -31
  618. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sklearn_serialization_format.py +0 -30
  619. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/slack_provider_account.py +0 -41
  620. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/smtp_credentials.py +0 -51
  621. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/snowflake_cortex_provider_account.py +0 -56
  622. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sort_direction.py +0 -18
  623. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/spa_cy_framework.py +0 -21
  624. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_attribute_filter.py +0 -24
  625. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_attribute_filter_operator.py +0 -62
  626. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_field_filter.py +0 -25
  627. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_field_filter_operator.py +0 -62
  628. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_field_filter_span_field_name.py +0 -66
  629. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_field_filter_value.py +0 -5
  630. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/spark_job_trigger_input.py +0 -37
  631. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sso_team_manifest.py +0 -36
  632. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/stats_models_framework.py +0 -21
  633. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/subject.py +0 -43
  634. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/subject_type.py +0 -38
  635. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sync_token_in_secret_store_info.py +0 -28
  636. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sync_virtual_account_token_response.py +0 -26
  637. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/team.py +0 -32
  638. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/team_manifest.py +0 -41
  639. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/tensor_flow_framework.py +0 -21
  640. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/terminate_job_response.py +0 -29
  641. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/together_ai_provider_account.py +0 -49
  642. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/token_pagination.py +0 -37
  643. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/trace_span.py +0 -96
  644. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/tracing_project.py +0 -28
  645. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/tracing_project_manifest.py +0 -31
  646. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/transformers_framework.py +0 -37
  647. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/trigger_job_run_response.py +0 -34
  648. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_apply_request_manifest.py +0 -63
  649. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_apply_response.py +0 -37
  650. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_apply_response_action.py +0 -22
  651. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_apply_response_existing_manifest.py +0 -63
  652. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_delete_request_manifest.py +0 -63
  653. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_managed_source.py +0 -23
  654. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_provider_account.py +0 -41
  655. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ttl_provider_account.py +0 -41
  656. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/upgrade_data.py +0 -35
  657. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user.py +0 -33
  658. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_metadata.py +0 -35
  659. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_metadata_tenant_role_managed_by.py +0 -26
  660. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_resource.py +0 -40
  661. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_role_with_resource.py +0 -23
  662. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_role_with_resource_resource_type.py +0 -134
  663. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/virtual_account.py +0 -41
  664. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/virtual_account_manifest.py +0 -48
  665. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/virtual_model_provider_account.py +0 -47
  666. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/webhook_provider_account.py +0 -41
  667. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/weight_based_load_balancing.py +0 -31
  668. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/workspace.py +0 -35
  669. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/workspace_manifest.py +0 -63
  670. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/xg_boost_framework.py +0 -31
  671. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/xg_boost_serialization_format.py +0 -34
  672. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/users/raw_client.py +0 -1629
  673. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/virtual_accounts/client.py +0 -737
  674. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/virtual_accounts/raw_client.py +0 -879
  675. truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/workspaces/raw_client.py +0 -624
  676. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/alerts/__init__.py +0 -0
  677. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/alerts/client.py +0 -0
  678. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/alerts/raw_client.py +0 -0
  679. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/application_versions/__init__.py +0 -0
  680. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/application_versions/client.py +0 -0
  681. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/applications/__init__.py +0 -0
  682. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/applications/client.py +0 -0
  683. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/applications/types/__init__.py +0 -0
  684. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/applications/types/applications_cancel_deployment_response.py +0 -0
  685. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifact_versions/__init__.py +0 -0
  686. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifact_versions/client.py +0 -0
  687. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifact_versions/types/__init__.py +0 -0
  688. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifact_versions/types/stage_artifact_request_manifest.py +0 -0
  689. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifacts/__init__.py +0 -0
  690. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifacts/client.py +0 -0
  691. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/client.py +0 -0
  692. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/clusters/__init__.py +0 -0
  693. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/clusters/client.py +0 -0
  694. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/clusters/types/__init__.py +0 -0
  695. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/clusters/types/clusters_delete_response.py +0 -0
  696. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/__init__.py +0 -0
  697. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/api_error.py +0 -0
  698. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/custom_pagination.py +0 -0
  699. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/datetime_utils.py +0 -0
  700. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/enum.py +0 -0
  701. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/file.py +0 -0
  702. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/force_multipart.py +0 -0
  703. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/__init__.py +0 -0
  704. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/_api.py +0 -0
  705. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/_decoders.py +0 -0
  706. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/_exceptions.py +0 -0
  707. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/_models.py +0 -0
  708. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/pagination.py +0 -0
  709. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/query_encoder.py +0 -0
  710. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/remove_none_from_dict.py +0 -0
  711. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/request_options.py +0 -0
  712. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/serialization.py +0 -0
  713. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/data_directories/__init__.py +0 -0
  714. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/data_directories/client.py +0 -0
  715. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/environments/__init__.py +0 -0
  716. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/environments/client.py +0 -0
  717. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/__init__.py +0 -0
  718. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/bad_request_error.py +0 -0
  719. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/conflict_error.py +0 -0
  720. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/expectation_failed_error.py +0 -0
  721. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/failed_dependency_error.py +0 -0
  722. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/forbidden_error.py +0 -0
  723. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/method_not_allowed_error.py +0 -0
  724. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/not_found_error.py +0 -0
  725. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/not_implemented_error.py +0 -0
  726. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/unauthorized_error.py +0 -0
  727. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/unprocessable_entity_error.py +0 -0
  728. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/events/__init__.py +0 -0
  729. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/events/client.py +0 -0
  730. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/events/raw_client.py +0 -0
  731. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/__init__.py +0 -0
  732. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ai_gateway/__init__.py +0 -0
  733. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ai_gateway/client.py +0 -0
  734. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ai_gateway/raw_client.py +0 -0
  735. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ai_gateway/types/__init__.py +0 -0
  736. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/applications/__init__.py +0 -0
  737. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/applications/client.py +0 -0
  738. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/applications/raw_client.py +0 -0
  739. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/artifact_versions/__init__.py +0 -0
  740. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/artifact_versions/client.py +0 -0
  741. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/build_logs/__init__.py +0 -0
  742. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/build_logs/client.py +0 -0
  743. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/build_logs/raw_client.py +0 -0
  744. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/client.py +0 -0
  745. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/clusters/__init__.py +0 -0
  746. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/clusters/client.py +0 -0
  747. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/clusters/raw_client.py +0 -0
  748. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/deployments/__init__.py +0 -0
  749. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/deployments/client.py +0 -0
  750. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/deployments/raw_client.py +0 -0
  751. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/docker_registries/__init__.py +0 -0
  752. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/docker_registries/client.py +0 -0
  753. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/docker_registries/raw_client.py +0 -0
  754. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/docker_registries/types/__init__.py +0 -0
  755. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/metrics/__init__.py +0 -0
  756. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/metrics/client.py +0 -0
  757. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/metrics/raw_client.py +0 -0
  758. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/metrics/types/__init__.py +0 -0
  759. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/__init__.py +0 -0
  760. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/client.py +0 -0
  761. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/raw_client.py +0 -0
  762. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/types/__init__.py +0 -0
  763. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/types/delete_ml_entity_request_manifest.py +0 -0
  764. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/raw_client.py +0 -0
  765. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/users/__init__.py +0 -0
  766. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/users/client.py +0 -0
  767. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/users/raw_client.py +0 -0
  768. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/vcs/__init__.py +0 -0
  769. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/vcs/client.py +0 -0
  770. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/vcs/raw_client.py +0 -0
  771. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/workflows/__init__.py +0 -0
  772. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/workflows/client.py +0 -0
  773. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/workflows/raw_client.py +0 -0
  774. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/workflows/types/__init__.py +0 -0
  775. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/jobs/__init__.py +0 -0
  776. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/jobs/client.py +0 -0
  777. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/jobs/types/__init__.py +0 -0
  778. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/jobs/types/trigger_job_request_input.py +0 -0
  779. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/logs/__init__.py +0 -0
  780. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/logs/client.py +0 -0
  781. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/logs/raw_client.py +0 -0
  782. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/ml_repos/__init__.py +0 -0
  783. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/ml_repos/client.py +0 -0
  784. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/model_versions/__init__.py +0 -0
  785. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/model_versions/client.py +0 -0
  786. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/models/__init__.py +0 -0
  787. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/models/client.py +0 -0
  788. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/personal_access_tokens/__init__.py +0 -0
  789. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/personal_access_tokens/client.py +0 -0
  790. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/prompt_versions/__init__.py +0 -0
  791. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/prompt_versions/client.py +0 -0
  792. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/prompts/__init__.py +0 -0
  793. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/prompts/client.py +0 -0
  794. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/py.typed +0 -0
  795. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/raw_base_client.py +0 -0
  796. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/secret_groups/__init__.py +0 -0
  797. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/secret_groups/client.py +0 -0
  798. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/secrets/__init__.py +0 -0
  799. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/secrets/client.py +0 -0
  800. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/traces/__init__.py +0 -0
  801. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/traces/types/__init__.py +0 -0
  802. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/traces/types/query_spans_request_filters_item.py +0 -0
  803. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/activate_user_response.py +0 -0
  804. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/add_on_component_source.py +0 -0
  805. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ai21integrations.py +0 -0
  806. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ai21key_auth.py +0 -0
  807. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ai21model.py +0 -0
  808. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ai_features_settings.py +0 -0
  809. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/alert_config.py +0 -0
  810. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/alert_config_resource.py +0 -0
  811. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/amqp_input_config.py +0 -0
  812. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/amqp_metric_config.py +0 -0
  813. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/amqp_output_config.py +0 -0
  814. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/anthropic_integrations.py +0 -0
  815. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/anthropic_key_auth.py +0 -0
  816. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/anthropic_model.py +0 -0
  817. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/application_metadata.py +0 -0
  818. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/application_problem.py +0 -0
  819. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/application_set.py +0 -0
  820. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/application_set_components_item.py +0 -0
  821. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/apply_ml_entity_response.py +0 -0
  822. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact.py +0 -0
  823. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact_manifest.py +0 -0
  824. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact_manifest_source.py +0 -0
  825. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact_path.py +0 -0
  826. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact_version.py +0 -0
  827. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifacts_cache_volume.py +0 -0
  828. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifacts_download.py +0 -0
  829. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifacts_download_artifacts_item.py +0 -0
  830. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/assistant_message.py +0 -0
  831. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/assistant_message_content.py +0 -0
  832. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/assistant_message_content_one_item.py +0 -0
  833. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_processor_sidecar.py +0 -0
  834. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_service.py +0 -0
  835. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_service_autoscaling.py +0 -0
  836. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_service_autoscaling_metrics.py +0 -0
  837. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_service_replicas.py +0 -0
  838. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/auto_rotate.py +0 -0
  839. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/autoshutdown.py +0 -0
  840. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_access_key_auth.py +0 -0
  841. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_access_key_based_auth.py +0 -0
  842. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_assumed_role_based_auth.py +0 -0
  843. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_bedrock_assumed_role_based_auth.py +0 -0
  844. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_bedrock_guardrail_config_auth_data.py +0 -0
  845. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_ecr.py +0 -0
  846. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_ecr_auth_data.py +0 -0
  847. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_eks_integration.py +0 -0
  848. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_eks_integration_auth_data.py +0 -0
  849. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_inferentia.py +0 -0
  850. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_integrations.py +0 -0
  851. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_parameter_store.py +0 -0
  852. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_parameter_store_auth_data.py +0 -0
  853. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_provider_account_auth_data.py +0 -0
  854. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_s3.py +0 -0
  855. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_s3auth_data.py +0 -0
  856. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_sagemaker_provider_account_auth_data.py +0 -0
  857. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_secrets_manager.py +0 -0
  858. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_secrets_manager_auth_data.py +0 -0
  859. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_sqs_access_key_based_auth.py +0 -0
  860. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_sqs_assumed_role_based_auth.py +0 -0
  861. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_aks_integration.py +0 -0
  862. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_basic_auth.py +0 -0
  863. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_blob_storage.py +0 -0
  864. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_connection_string_auth.py +0 -0
  865. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_container_registry.py +0 -0
  866. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_integrations.py +0 -0
  867. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_key_auth.py +0 -0
  868. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_o_auth.py +0 -0
  869. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_open_ai_model.py +0 -0
  870. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_repos_integration.py +0 -0
  871. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_vault.py +0 -0
  872. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_artifact_version.py +0 -0
  873. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_artifact_version_manifest.py +0 -0
  874. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_autoscaling.py +0 -0
  875. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_o_auth2login.py +0 -0
  876. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_service.py +0 -0
  877. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_service_image.py +0 -0
  878. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_service_mounts_item.py +0 -0
  879. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_workbench_input.py +0 -0
  880. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_workbench_input_mounts_item.py +0 -0
  881. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/basic_auth_creds.py +0 -0
  882. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/bedrock_model.py +0 -0
  883. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/bitbucket_integration.py +0 -0
  884. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/blob_storage_reference.py +0 -0
  885. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/blue_green.py +0 -0
  886. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/budget_alert.py +0 -0
  887. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/budget_config.py +0 -0
  888. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/budget_rule.py +0 -0
  889. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/budget_when.py +0 -0
  890. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/build.py +0 -0
  891. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/build_build_source.py +0 -0
  892. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/build_build_spec.py +0 -0
  893. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/build_info.py +0 -0
  894. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/canary.py +0 -0
  895. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/canary_step.py +0 -0
  896. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cerebras_integrations.py +0 -0
  897. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cerebras_key_auth.py +0 -0
  898. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cerebras_model.py +0 -0
  899. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/change_password_response.py +0 -0
  900. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/chat_prompt_manifest_mcp_servers_item.py +0 -0
  901. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/chat_prompt_manifest_messages_item.py +0 -0
  902. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/chat_prompt_manifest_response_format.py +0 -0
  903. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/chat_prompt_manifest_routing_config.py +0 -0
  904. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_integrations.py +0 -0
  905. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_model.py +0 -0
  906. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_provider_account_auth_data.py +0 -0
  907. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_token_auth.py +0 -0
  908. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_workload_auth_token.py +0 -0
  909. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cluster_manifest_monitoring.py +0 -0
  910. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cluster_manifest_node_label_keys.py +0 -0
  911. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cluster_manifest_workbench_config.py +0 -0
  912. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/codeserver.py +0 -0
  913. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cohere_integrations.py +0 -0
  914. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cohere_key_auth.py +0 -0
  915. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cohere_model.py +0 -0
  916. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/collaborator.py +0 -0
  917. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/config.py +0 -0
  918. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/container_task_config.py +0 -0
  919. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/container_task_config_image.py +0 -0
  920. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/container_task_config_mounts_item.py +0 -0
  921. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/core_nats_output_config.py +0 -0
  922. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cpu_utilization_metric.py +0 -0
  923. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/create_multi_part_upload_request.py +0 -0
  924. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/create_personal_access_token_response.py +0 -0
  925. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cron_metric.py +0 -0
  926. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_basic_auth.py +0 -0
  927. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_bearer_auth.py +0 -0
  928. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_blob_storage.py +0 -0
  929. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_guardrail_config_auth_data.py +0 -0
  930. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_helm_repo.py +0 -0
  931. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_integrations.py +0 -0
  932. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_jwt_auth_integration.py +0 -0
  933. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_tls_settings.py +0 -0
  934. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_username_password_artifacts_registry.py +0 -0
  935. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/data_directory.py +0 -0
  936. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/data_directory_manifest.py +0 -0
  937. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/data_directory_manifest_source.py +0 -0
  938. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_api_key_auth.py +0 -0
  939. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_integrations.py +0 -0
  940. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_model.py +0 -0
  941. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_provider_account_auth_data.py +0 -0
  942. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_service_principal_auth.py +0 -0
  943. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deactivate_user_response.py +0 -0
  944. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deepinfra_integrations.py +0 -0
  945. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deepinfra_key_auth.py +0 -0
  946. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deepinfra_model.py +0 -0
  947. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_application_response.py +0 -0
  948. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_job_run_response.py +0 -0
  949. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_personal_access_token_response.py +0 -0
  950. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_secret_group_response.py +0 -0
  951. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_team_response.py +0 -0
  952. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_user_response.py +0 -0
  953. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_virtual_account_response.py +0 -0
  954. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deployment_manifest.py +0 -0
  955. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/developer_message.py +0 -0
  956. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/developer_message_content.py +0 -0
  957. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/docker_file_build.py +0 -0
  958. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/docker_file_build_command.py +0 -0
  959. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/dockerhub_integrations.py +0 -0
  960. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/dockerhub_registry.py +0 -0
  961. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/dynamic_volume_config.py +0 -0
  962. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/email.py +0 -0
  963. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/email_notification_channel.py +0 -0
  964. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/empty_response.py +0 -0
  965. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/endpoint.py +0 -0
  966. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/enkrypt_ai_key_auth.py +0 -0
  967. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/event_chart.py +0 -0
  968. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/fiddler_key_auth.py +0 -0
  969. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/file_info.py +0 -0
  970. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_launch_plan.py +0 -0
  971. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_task.py +0 -0
  972. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_task_custom_truefoundry.py +0 -0
  973. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_task_template.py +0 -0
  974. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_workflow.py +0 -0
  975. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_workflow_template.py +0 -0
  976. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/forward_action.py +0 -0
  977. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/function.py +0 -0
  978. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/function_schema.py +0 -0
  979. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gateway_otel_config.py +0 -0
  980. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gateway_otel_config_otel_traces_exporter_config.py +0 -0
  981. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gateway_request_metadata_filter_value.py +0 -0
  982. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_gcr.py +0 -0
  983. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_gcs.py +0 -0
  984. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_gke_integration.py +0 -0
  985. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_gsm.py +0 -0
  986. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_integrations.py +0 -0
  987. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_key_file_auth.py +0 -0
  988. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_tpu.py +0 -0
  989. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gemini_model.py +0 -0
  990. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_alerts_response.py +0 -0
  991. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_application_deployment_response.py +0 -0
  992. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_application_response.py +0 -0
  993. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_artifact_response.py +0 -0
  994. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_artifact_version_response.py +0 -0
  995. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_auto_provisioning_state_response.py +0 -0
  996. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_charts_response.py +0 -0
  997. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_cluster_response.py +0 -0
  998. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_data_directory_response.py +0 -0
  999. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_environment_response.py +0 -0
  1000. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_events_response.py +0 -0
  1001. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_job_run_response.py +0 -0
  1002. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_logs_response.py +0 -0
  1003. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_ml_repo_response.py +0 -0
  1004. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_model_response.py +0 -0
  1005. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_model_version_response.py +0 -0
  1006. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_or_create_personal_access_token_response.py +0 -0
  1007. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_prompt_response.py +0 -0
  1008. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_prompt_version_response.py +0 -0
  1009. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_secret_group_response.py +0 -0
  1010. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_secret_response.py +0 -0
  1011. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_signed_ur_ls_request.py +0 -0
  1012. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_signed_ur_ls_response.py +0 -0
  1013. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_suggested_deployment_endpoint_response.py +0 -0
  1014. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_team_response.py +0 -0
  1015. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_token_for_virtual_account_response.py +0 -0
  1016. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_user_resources_response.py +0 -0
  1017. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_user_response.py +0 -0
  1018. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_user_teams_response.py +0 -0
  1019. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_virtual_account_response.py +0 -0
  1020. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_workspace_response.py +0 -0
  1021. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/git_helm_repo.py +0 -0
  1022. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/git_repository_exists_response.py +0 -0
  1023. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/git_source.py +0 -0
  1024. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/github_integration.py +0 -0
  1025. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gitlab_integration.py +0 -0
  1026. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/groq_integrations.py +0 -0
  1027. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/groq_key_auth.py +0 -0
  1028. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/groq_model.py +0 -0
  1029. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/guardrails.py +0 -0
  1030. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/guardrails_config.py +0 -0
  1031. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/hashicorp_integrations.py +0 -0
  1032. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/hashicorp_token_auth.py +0 -0
  1033. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/hashicorp_vault_integration.py +0 -0
  1034. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/header_match.py +0 -0
  1035. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/header_routing_config.py +0 -0
  1036. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/health_probe.py +0 -0
  1037. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/helm_repo.py +0 -0
  1038. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/helm_source.py +0 -0
  1039. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/http_error_code.py +0 -0
  1040. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/http_probe.py +0 -0
  1041. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/http_validation_error.py +0 -0
  1042. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/huggingface_artifact_source.py +0 -0
  1043. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image.py +0 -0
  1044. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image_command.py +0 -0
  1045. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image_content_part.py +0 -0
  1046. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image_content_part_image_url.py +0 -0
  1047. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image_content_part_image_url_url.py +0 -0
  1048. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/infra_provider_account.py +0 -0
  1049. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ingress_controller_config.py +0 -0
  1050. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/intercept.py +0 -0
  1051. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/intercept_rules_item.py +0 -0
  1052. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/intercept_rules_item_action.py +0 -0
  1053. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/internal_artifact_version.py +0 -0
  1054. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/internal_list_artifact_versions_response.py +0 -0
  1055. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/internal_list_artifact_versions_response_data_item.py +0 -0
  1056. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/internal_model_version.py +0 -0
  1057. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/invite_user_response.py +0 -0
  1058. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/j_frog_integrations.py +0 -0
  1059. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/jfrog_artifacts_registry.py +0 -0
  1060. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/jfrog_basic_auth.py +0 -0
  1061. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job.py +0 -0
  1062. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_alert.py +0 -0
  1063. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_image.py +0 -0
  1064. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_mounts_item.py +0 -0
  1065. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_trigger.py +0 -0
  1066. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_trigger_input.py +0 -0
  1067. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_trigger_input_command.py +0 -0
  1068. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/jwt_auth_config.py +0 -0
  1069. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/jwt_auth_config_claims_item.py +0 -0
  1070. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kafka_input_config.py +0 -0
  1071. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kafka_metric_config.py +0 -0
  1072. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kafka_output_config.py +0 -0
  1073. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kafka_sasl_auth.py +0 -0
  1074. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kustomize.py +0 -0
  1075. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/latency_based_load_balance_target.py +0 -0
  1076. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/latency_based_load_balancing_rule.py +0 -0
  1077. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_application_deployments_response.py +0 -0
  1078. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_applications_response.py +0 -0
  1079. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_artifact_versions_response.py +0 -0
  1080. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_artifacts_response.py +0 -0
  1081. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_cluster_addons_response.py +0 -0
  1082. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_clusters_response.py +0 -0
  1083. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_data_directories_response.py +0 -0
  1084. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_environments_response.py +0 -0
  1085. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_files_response.py +0 -0
  1086. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_job_run_response.py +0 -0
  1087. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_ml_repos_response.py +0 -0
  1088. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_model_versions_response.py +0 -0
  1089. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_models_response.py +0 -0
  1090. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_personal_access_token_response.py +0 -0
  1091. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_prompt_versions_response.py +0 -0
  1092. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_prompts_response.py +0 -0
  1093. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_secret_group_response.py +0 -0
  1094. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_secrets_response.py +0 -0
  1095. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_teams_response.py +0 -0
  1096. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_users_response.py +0 -0
  1097. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_virtual_account_response.py +0 -0
  1098. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_workspaces_response.py +0 -0
  1099. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/load_balance_target.py +0 -0
  1100. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/load_balancing_config.py +0 -0
  1101. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/load_balancing_rule.py +0 -0
  1102. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/load_balancing_when.py +0 -0
  1103. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/local_source.py +0 -0
  1104. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/logs_response.py +0 -0
  1105. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/manual.py +0 -0
  1106. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_auth.py +0 -0
  1107. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_header_auth.py +0 -0
  1108. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_header_override_auth.py +0 -0
  1109. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_integration.py +0 -0
  1110. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_integrations.py +0 -0
  1111. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_o_auth2.py +0 -0
  1112. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_passthrough.py +0 -0
  1113. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_tool_details.py +0 -0
  1114. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_with_fqn.py +0 -0
  1115. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_with_url.py +0 -0
  1116. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_tool.py +0 -0
  1117. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/metadata.py +0 -0
  1118. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/metric.py +0 -0
  1119. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mirror_action.py +0 -0
  1120. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mistral_ai_integrations.py +0 -0
  1121. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mistral_ai_key_auth.py +0 -0
  1122. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mistral_ai_model.py +0 -0
  1123. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model.py +0 -0
  1124. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_configuration.py +0 -0
  1125. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_cost_metric.py +0 -0
  1126. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_manifest.py +0 -0
  1127. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_manifest_framework.py +0 -0
  1128. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_manifest_source.py +0 -0
  1129. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_version.py +0 -0
  1130. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_version_environment.py +0 -0
  1131. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/multi_part_upload_response.py +0 -0
  1132. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nats_input_config.py +0 -0
  1133. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nats_metric_config.py +0 -0
  1134. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nats_output_config.py +0 -0
  1135. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nats_user_password_auth.py +0 -0
  1136. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/node_selector.py +0 -0
  1137. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nodepool.py +0 -0
  1138. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nodepool_selector.py +0 -0
  1139. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nomic_integrations.py +0 -0
  1140. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nomic_key_auth.py +0 -0
  1141. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nomic_model.py +0 -0
  1142. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/non_negative_float.py +0 -0
  1143. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/notebook.py +0 -0
  1144. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/notebook_config.py +0 -0
  1145. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/notification_target.py +0 -0
  1146. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/notification_target_for_alert_rule.py +0 -0
  1147. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nvidia_gpu.py +0 -0
  1148. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nvidia_miggpu.py +0 -0
  1149. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nvidia_timeslicing_gpu.py +0 -0
  1150. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/o_auth2login_provider.py +0 -0
  1151. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/oci_repo.py +0 -0
  1152. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ollama_integrations.py +0 -0
  1153. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ollama_key_auth.py +0 -0
  1154. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ollama_model.py +0 -0
  1155. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_ai_integrations.py +0 -0
  1156. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_ai_model.py +0 -0
  1157. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_router_api_key_auth.py +0 -0
  1158. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_router_integrations.py +0 -0
  1159. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_router_model.py +0 -0
  1160. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/openai_api_key_auth.py +0 -0
  1161. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/owned_by.py +0 -0
  1162. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pager_duty.py +0 -0
  1163. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pager_duty_integration.py +0 -0
  1164. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pager_duty_integration_key_auth.py +0 -0
  1165. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pager_duty_integrations.py +0 -0
  1166. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pagination.py +0 -0
  1167. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/palm_integrations.py +0 -0
  1168. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/palm_key_auth.py +0 -0
  1169. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/palm_model.py +0 -0
  1170. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/palo_alto_prisma_airs_key_auth.py +0 -0
  1171. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pangea_key_auth.py +0 -0
  1172. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/param.py +0 -0
  1173. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/parameters.py +0 -0
  1174. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/parameters_stop.py +0 -0
  1175. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_answer_relevance_criteria.py +0 -0
  1176. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_answer_relevance_evaluator.py +0 -0
  1177. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_evaluator.py +0 -0
  1178. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_glider_evaluator.py +0 -0
  1179. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_judge_evaluator.py +0 -0
  1180. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_key_auth.py +0 -0
  1181. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_phi_criteria.py +0 -0
  1182. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_phi_evaluator.py +0 -0
  1183. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_pii_criteria.py +0 -0
  1184. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_pii_evaluator.py +0 -0
  1185. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_toxicity_criteria.py +0 -0
  1186. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_toxicity_evaluator.py +0 -0
  1187. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/per_thousand_embedding_tokens_cost_metric.py +0 -0
  1188. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/per_thousand_tokens_cost_metric.py +0 -0
  1189. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/permissions.py +0 -0
  1190. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/perplexity_ai_key_auth.py +0 -0
  1191. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/perplexity_ai_model.py +0 -0
  1192. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/perplexity_integrations.py +0 -0
  1193. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pip.py +0 -0
  1194. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/poetry.py +0 -0
  1195. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_actions.py +0 -0
  1196. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_filters.py +0 -0
  1197. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_manifest.py +0 -0
  1198. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_manifest_operation.py +0 -0
  1199. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_mutation_operation.py +0 -0
  1200. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_validation_operation.py +0 -0
  1201. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/port.py +0 -0
  1202. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/port_auth.py +0 -0
  1203. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/presigned_url_object.py +0 -0
  1204. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/priority_based_load_balance_target.py +0 -0
  1205. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/priority_based_load_balancing_rule.py +0 -0
  1206. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/prompt.py +0 -0
  1207. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/prompt_version.py +0 -0
  1208. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/provider_accounts.py +0 -0
  1209. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/public_cost_metric.py +0 -0
  1210. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/py_spark_task_config.py +0 -0
  1211. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_build.py +0 -0
  1212. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_build_command.py +0 -0
  1213. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_build_python_dependencies.py +0 -0
  1214. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_task_config.py +0 -0
  1215. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_task_config_image.py +0 -0
  1216. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_task_config_mounts_item.py +0 -0
  1217. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/quay_artifacts_registry.py +0 -0
  1218. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/quay_basic_auth.py +0 -0
  1219. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/quay_integrations.py +0 -0
  1220. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/query_spans_response.py +0 -0
  1221. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/r_studio.py +0 -0
  1222. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/rate_limit_config.py +0 -0
  1223. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/rate_limit_when.py +0 -0
  1224. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/refusal_content_part.py +0 -0
  1225. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/register_users_response.py +0 -0
  1226. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/resources.py +0 -0
  1227. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/resources_devices_item.py +0 -0
  1228. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/resources_node.py +0 -0
  1229. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/retry_config.py +0 -0
  1230. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/revoke_all_personal_access_token_response.py +0 -0
  1231. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/rolling.py +0 -0
  1232. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/rps_metric.py +0 -0
  1233. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sagemaker_model.py +0 -0
  1234. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/samba_nova_integrations.py +0 -0
  1235. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/samba_nova_key_auth.py +0 -0
  1236. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/samba_nova_model.py +0 -0
  1237. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/schedule.py +0 -0
  1238. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/secret_input.py +0 -0
  1239. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/secret_mount.py +0 -0
  1240. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/secret_store_config.py +0 -0
  1241. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/self_hosted_model.py +0 -0
  1242. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/self_hosted_model_auth_data.py +0 -0
  1243. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/self_hosted_model_integrations.py +0 -0
  1244. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service.py +0 -0
  1245. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service_autoscaling.py +0 -0
  1246. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service_autoscaling_metrics.py +0 -0
  1247. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service_replicas.py +0 -0
  1248. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service_rollout_strategy.py +0 -0
  1249. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/signed_url.py +0 -0
  1250. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sklearn_model_schema.py +0 -0
  1251. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sla_cutoff.py +0 -0
  1252. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_bot.py +0 -0
  1253. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_bot_auth.py +0 -0
  1254. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_bot_integration.py +0 -0
  1255. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_integrations.py +0 -0
  1256. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_webhook.py +0 -0
  1257. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_webhook_auth.py +0 -0
  1258. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_webhook_integration.py +0 -0
  1259. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/snowflake_cortex_integrations.py +0 -0
  1260. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/snowflake_cortex_model.py +0 -0
  1261. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/snowflake_cortex_pat_token_auth.py +0 -0
  1262. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/span_attribute_filter_value.py +0 -0
  1263. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_build.py +0 -0
  1264. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_config.py +0 -0
  1265. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_driver_config.py +0 -0
  1266. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_executor_config.py +0 -0
  1267. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_executor_config_instances.py +0 -0
  1268. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_executor_dynamic_scaling.py +0 -0
  1269. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_executor_fixed_instances.py +0 -0
  1270. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_image.py +0 -0
  1271. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_image_build.py +0 -0
  1272. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_image_build_build_source.py +0 -0
  1273. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job.py +0 -0
  1274. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_entrypoint.py +0 -0
  1275. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_image.py +0 -0
  1276. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_java_entrypoint.py +0 -0
  1277. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_python_entrypoint.py +0 -0
  1278. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_python_notebook_entrypoint.py +0 -0
  1279. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_scala_entrypoint.py +0 -0
  1280. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_scala_notebook_entrypoint.py +0 -0
  1281. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sqs_input_config.py +0 -0
  1282. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sqs_output_config.py +0 -0
  1283. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sqs_queue_metric_config.py +0 -0
  1284. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sqs_queue_metric_config_auth.py +0 -0
  1285. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ssh_server.py +0 -0
  1286. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ssh_server_config.py +0 -0
  1287. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/stage_artifact_response.py +0 -0
  1288. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/static_volume_config.py +0 -0
  1289. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/string_data_mount.py +0 -0
  1290. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/system_message.py +0 -0
  1291. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/system_message_content.py +0 -0
  1292. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/task_docker_file_build.py +0 -0
  1293. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/task_py_spark_build.py +0 -0
  1294. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/task_python_build.py +0 -0
  1295. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/team_owned_by.py +0 -0
  1296. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/text_content_part.py +0 -0
  1297. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/text_content_part_text.py +0 -0
  1298. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/together_ai_integrations.py +0 -0
  1299. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/together_ai_key_auth.py +0 -0
  1300. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/together_ai_model.py +0 -0
  1301. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/tool_call.py +0 -0
  1302. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/tool_message.py +0 -0
  1303. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/tool_message_content.py +0 -0
  1304. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/tool_schema.py +0 -0
  1305. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/true_foundry_artifact_source.py +0 -0
  1306. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/true_foundry_dbssm.py +0 -0
  1307. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/true_foundry_integrations.py +0 -0
  1308. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/true_foundry_interactive_login.py +0 -0
  1309. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ttl_integrations.py +0 -0
  1310. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ttl_registry.py +0 -0
  1311. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/update_secret_input.py +0 -0
  1312. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/update_user_roles_response.py +0 -0
  1313. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/usage_code_snippet.py +0 -0
  1314. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/user_message.py +0 -0
  1315. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/user_message_content.py +0 -0
  1316. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/user_message_content_one_item.py +0 -0
  1317. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/uv.py +0 -0
  1318. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/validation_error.py +0 -0
  1319. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/validation_error_loc_item.py +0 -0
  1320. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/vertex_model.py +0 -0
  1321. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/virtual_account_owned_by.py +0 -0
  1322. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/virtual_mcp_server_integration.py +0 -0
  1323. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/virtual_mcp_server_source.py +0 -0
  1324. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/virtual_model.py +0 -0
  1325. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/volume.py +0 -0
  1326. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/volume_browser.py +0 -0
  1327. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/volume_config.py +0 -0
  1328. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/volume_mount.py +0 -0
  1329. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_basic_auth.py +0 -0
  1330. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_bearer_auth.py +0 -0
  1331. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_integration.py +0 -0
  1332. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_integration_auth_data.py +0 -0
  1333. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_integrations.py +0 -0
  1334. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/weight_based_load_balancing_rule.py +0 -0
  1335. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workbench_image.py +0 -0
  1336. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/worker_config.py +0 -0
  1337. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/worker_config_input_config.py +0 -0
  1338. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/worker_config_output_config.py +0 -0
  1339. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workflow.py +0 -0
  1340. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workflow_alert.py +0 -0
  1341. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workflow_flyte_entities_item.py +0 -0
  1342. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workflow_source.py +0 -0
  1343. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/xg_boost_model_schema.py +0 -0
  1344. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/users/__init__.py +0 -0
  1345. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/users/client.py +0 -0
  1346. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/version.py +0 -0
  1347. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/virtual_accounts/__init__.py +0 -0
  1348. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/workspaces/__init__.py +0 -0
  1349. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/workspaces/client.py +0 -0
  1350. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/workspaces/types/__init__.py +0 -0
  1351. {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/workspaces/types/workspaces_delete_response.py +0 -0
@@ -0,0 +1,303 @@
1
+ Metadata-Version: 2.1
2
+ Name: truefoundry-sdk
3
+ Version: 0.1.19
4
+ Summary:
5
+ Requires-Python: >=3.8
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Operating System :: MacOS
8
+ Classifier: Operating System :: Microsoft :: Windows
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Operating System :: POSIX
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Classifier: Programming Language :: Python :: 3.15
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Typing :: Typed
24
+ Requires-Dist: httpx (>=0.21.2)
25
+ Requires-Dist: pydantic (>=1.9.2)
26
+ Requires-Dist: pydantic-core (>=2.18.2)
27
+ Requires-Dist: typing_extensions (>=4.0.0)
28
+ Project-URL: Repository, https://github.com/truefoundry/truefoundry-python-sdk
29
+ Description-Content-Type: text/markdown
30
+
31
+ # Truefoundry Python Library
32
+
33
+ [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Ftruefoundry%2Ftruefoundry-python-sdk)
34
+ [![pypi](https://img.shields.io/pypi/v/truefoundry-sdk)](https://pypi.python.org/pypi/truefoundry-sdk)
35
+
36
+ This library provides convenient access to the TrueFoundry API.
37
+
38
+ > [!tip]
39
+ > You can ask questions about this SDK using DeepWiki
40
+ > - Python: [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/truefoundry/truefoundry-python-sdk)
41
+ > - TypeScript: [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/truefoundry/truefoundry-typescript-sdk)
42
+
43
+
44
+ ## Table of Contents
45
+
46
+ - [Installation](#installation)
47
+ - [Reference](#reference)
48
+ - [Usage](#usage)
49
+ - [Async Client](#async-client)
50
+ - [Exception Handling](#exception-handling)
51
+ - [Pagination](#pagination)
52
+ - [Advanced](#advanced)
53
+ - [Access Raw Response Data](#access-raw-response-data)
54
+ - [Retries](#retries)
55
+ - [Timeouts](#timeouts)
56
+ - [Custom Client](#custom-client)
57
+ - [Contributing](#contributing)
58
+
59
+ ## Installation
60
+
61
+ ```sh
62
+ pip install truefoundry-sdk
63
+ ```
64
+
65
+ ## Reference
66
+
67
+ A full reference for this library is available [here](https://github.com/truefoundry/truefoundry-python-sdk/blob/HEAD/./reference.md).
68
+
69
+ ## Usage
70
+
71
+ Instantiate and use the client with the following:
72
+
73
+ ```python
74
+ from truefoundry_sdk import TrueFoundry
75
+ from truefoundry_sdk.applications import (
76
+ ApplicationsListRequestDeviceTypeFilter,
77
+ ApplicationsListRequestLifecycleStage,
78
+ )
79
+
80
+ client = TrueFoundry(
81
+ api_key="YOUR_API_KEY",
82
+ base_url="https://yourhost.com/path/to/api",
83
+ )
84
+ response = client.applications.list(
85
+ limit=10,
86
+ offset=0,
87
+ application_id="applicationId",
88
+ workspace_id="workspaceId",
89
+ application_name="applicationName",
90
+ fqn="fqn",
91
+ workspace_fqn="workspaceFqn",
92
+ application_type="applicationType",
93
+ name_search_query="nameSearchQuery",
94
+ environment_id="environmentId",
95
+ cluster_id="clusterId",
96
+ application_set_id="applicationSetId",
97
+ paused=True,
98
+ device_type_filter=ApplicationsListRequestDeviceTypeFilter.CPU,
99
+ last_deployed_by_subjects="lastDeployedBySubjects",
100
+ lifecycle_stage=ApplicationsListRequestLifecycleStage.ACTIVE,
101
+ is_recommendation_present_and_visible=True,
102
+ )
103
+ for item in response:
104
+ yield item
105
+ # alternatively, you can paginate page-by-page
106
+ for page in response.iter_pages():
107
+ yield page
108
+ ```
109
+
110
+ ## Async Client
111
+
112
+ The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
113
+
114
+ ```python
115
+ import asyncio
116
+
117
+ from truefoundry_sdk import AsyncTrueFoundry
118
+ from truefoundry_sdk.applications import (
119
+ ApplicationsListRequestDeviceTypeFilter,
120
+ ApplicationsListRequestLifecycleStage,
121
+ )
122
+
123
+ client = AsyncTrueFoundry(
124
+ api_key="YOUR_API_KEY",
125
+ base_url="https://yourhost.com/path/to/api",
126
+ )
127
+
128
+
129
+ async def main() -> None:
130
+ response = await client.applications.list(
131
+ limit=10,
132
+ offset=0,
133
+ application_id="applicationId",
134
+ workspace_id="workspaceId",
135
+ application_name="applicationName",
136
+ fqn="fqn",
137
+ workspace_fqn="workspaceFqn",
138
+ application_type="applicationType",
139
+ name_search_query="nameSearchQuery",
140
+ environment_id="environmentId",
141
+ cluster_id="clusterId",
142
+ application_set_id="applicationSetId",
143
+ paused=True,
144
+ device_type_filter=ApplicationsListRequestDeviceTypeFilter.CPU,
145
+ last_deployed_by_subjects="lastDeployedBySubjects",
146
+ lifecycle_stage=ApplicationsListRequestLifecycleStage.ACTIVE,
147
+ is_recommendation_present_and_visible=True,
148
+ )
149
+ async for item in response:
150
+ yield item
151
+
152
+ # alternatively, you can paginate page-by-page
153
+ async for page in response.iter_pages():
154
+ yield page
155
+
156
+
157
+ asyncio.run(main())
158
+ ```
159
+
160
+ ## Exception Handling
161
+
162
+ When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
163
+ will be thrown.
164
+
165
+ ```python
166
+ from truefoundry_sdk.core.api_error import ApiError
167
+
168
+ try:
169
+ client.applications.list(...)
170
+ except ApiError as e:
171
+ print(e.status_code)
172
+ print(e.body)
173
+ ```
174
+
175
+ ## Pagination
176
+
177
+ Paginated requests will return a `SyncPager` or `AsyncPager`, which can be used as generators for the underlying object.
178
+
179
+ ```python
180
+ from truefoundry_sdk import TrueFoundry
181
+
182
+ client = TrueFoundry(
183
+ api_key="YOUR_API_KEY",
184
+ base_url="https://yourhost.com/path/to/api",
185
+ )
186
+ response = client.users.list(
187
+ limit=10,
188
+ offset=0,
189
+ query="query",
190
+ show_invalid_users=True,
191
+ include_virtual_accounts="includeVirtualAccounts",
192
+ )
193
+ for item in response:
194
+ yield item
195
+ # alternatively, you can paginate page-by-page
196
+ for page in response.iter_pages():
197
+ yield page
198
+ ```
199
+
200
+ ```python
201
+ # You can also iterate through pages and access the typed response per page
202
+ pager = client.users.list(...)
203
+ for page in pager.iter_pages():
204
+ print(page.response) # access the typed response for each page
205
+ for item in page:
206
+ print(item)
207
+ ```
208
+
209
+ ## Advanced
210
+
211
+ ### Access Raw Response Data
212
+
213
+ The SDK provides access to raw response data, including headers, through the `.with_raw_response` property.
214
+ The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
215
+
216
+ ```python
217
+ from truefoundry_sdk import TrueFoundry
218
+
219
+ client = TrueFoundry(
220
+ ...,
221
+ )
222
+ response = client.applications.with_raw_response.list(...)
223
+ print(response.headers) # access the response headers
224
+ print(response.status_code) # access the response status code
225
+ print(response.data) # access the underlying object
226
+ pager = client.users.list(...)
227
+ print(pager.response) # access the typed response for the first page
228
+ for item in pager:
229
+ print(item) # access the underlying object(s)
230
+ for page in pager.iter_pages():
231
+ print(page.response) # access the typed response for each page
232
+ for item in page:
233
+ print(item) # access the underlying object(s)
234
+ ```
235
+
236
+ ### Retries
237
+
238
+ The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
239
+ as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
240
+ retry limit (default: 2).
241
+
242
+ A request is deemed retryable when any of the following HTTP status codes is returned:
243
+
244
+ - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
245
+ - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
246
+ - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
247
+
248
+ Use the `max_retries` request option to configure this behavior.
249
+
250
+ ```python
251
+ client.applications.list(..., request_options={
252
+ "max_retries": 1
253
+ })
254
+ ```
255
+
256
+ ### Timeouts
257
+
258
+ The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
259
+
260
+ ```python
261
+
262
+ from truefoundry_sdk import TrueFoundry
263
+
264
+ client = TrueFoundry(
265
+ ...,
266
+ timeout=20.0,
267
+ )
268
+
269
+
270
+ # Override timeout for a specific method
271
+ client.applications.list(..., request_options={
272
+ "timeout_in_seconds": 1
273
+ })
274
+ ```
275
+
276
+ ### Custom Client
277
+
278
+ You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
279
+ and transports.
280
+
281
+ ```python
282
+ import httpx
283
+ from truefoundry_sdk import TrueFoundry
284
+
285
+ client = TrueFoundry(
286
+ ...,
287
+ httpx_client=httpx.Client(
288
+ proxy="http://my.test.proxy.example.com",
289
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
290
+ ),
291
+ )
292
+ ```
293
+
294
+ ## Contributing
295
+
296
+ While we value open-source contributions to this SDK, this library is generated programmatically.
297
+ Additions made directly to this library would have to be moved over to our generation code,
298
+ otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
299
+ a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
300
+ an issue first to discuss with us!
301
+
302
+ On the other hand, contributions to the README are always very welcome!
303
+
@@ -0,0 +1,272 @@
1
+ # Truefoundry Python Library
2
+
3
+ [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Ftruefoundry%2Ftruefoundry-python-sdk)
4
+ [![pypi](https://img.shields.io/pypi/v/truefoundry-sdk)](https://pypi.python.org/pypi/truefoundry-sdk)
5
+
6
+ This library provides convenient access to the TrueFoundry API.
7
+
8
+ > [!tip]
9
+ > You can ask questions about this SDK using DeepWiki
10
+ > - Python: [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/truefoundry/truefoundry-python-sdk)
11
+ > - TypeScript: [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/truefoundry/truefoundry-typescript-sdk)
12
+
13
+
14
+ ## Table of Contents
15
+
16
+ - [Installation](#installation)
17
+ - [Reference](#reference)
18
+ - [Usage](#usage)
19
+ - [Async Client](#async-client)
20
+ - [Exception Handling](#exception-handling)
21
+ - [Pagination](#pagination)
22
+ - [Advanced](#advanced)
23
+ - [Access Raw Response Data](#access-raw-response-data)
24
+ - [Retries](#retries)
25
+ - [Timeouts](#timeouts)
26
+ - [Custom Client](#custom-client)
27
+ - [Contributing](#contributing)
28
+
29
+ ## Installation
30
+
31
+ ```sh
32
+ pip install truefoundry-sdk
33
+ ```
34
+
35
+ ## Reference
36
+
37
+ A full reference for this library is available [here](https://github.com/truefoundry/truefoundry-python-sdk/blob/HEAD/./reference.md).
38
+
39
+ ## Usage
40
+
41
+ Instantiate and use the client with the following:
42
+
43
+ ```python
44
+ from truefoundry_sdk import TrueFoundry
45
+ from truefoundry_sdk.applications import (
46
+ ApplicationsListRequestDeviceTypeFilter,
47
+ ApplicationsListRequestLifecycleStage,
48
+ )
49
+
50
+ client = TrueFoundry(
51
+ api_key="YOUR_API_KEY",
52
+ base_url="https://yourhost.com/path/to/api",
53
+ )
54
+ response = client.applications.list(
55
+ limit=10,
56
+ offset=0,
57
+ application_id="applicationId",
58
+ workspace_id="workspaceId",
59
+ application_name="applicationName",
60
+ fqn="fqn",
61
+ workspace_fqn="workspaceFqn",
62
+ application_type="applicationType",
63
+ name_search_query="nameSearchQuery",
64
+ environment_id="environmentId",
65
+ cluster_id="clusterId",
66
+ application_set_id="applicationSetId",
67
+ paused=True,
68
+ device_type_filter=ApplicationsListRequestDeviceTypeFilter.CPU,
69
+ last_deployed_by_subjects="lastDeployedBySubjects",
70
+ lifecycle_stage=ApplicationsListRequestLifecycleStage.ACTIVE,
71
+ is_recommendation_present_and_visible=True,
72
+ )
73
+ for item in response:
74
+ yield item
75
+ # alternatively, you can paginate page-by-page
76
+ for page in response.iter_pages():
77
+ yield page
78
+ ```
79
+
80
+ ## Async Client
81
+
82
+ The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
83
+
84
+ ```python
85
+ import asyncio
86
+
87
+ from truefoundry_sdk import AsyncTrueFoundry
88
+ from truefoundry_sdk.applications import (
89
+ ApplicationsListRequestDeviceTypeFilter,
90
+ ApplicationsListRequestLifecycleStage,
91
+ )
92
+
93
+ client = AsyncTrueFoundry(
94
+ api_key="YOUR_API_KEY",
95
+ base_url="https://yourhost.com/path/to/api",
96
+ )
97
+
98
+
99
+ async def main() -> None:
100
+ response = await client.applications.list(
101
+ limit=10,
102
+ offset=0,
103
+ application_id="applicationId",
104
+ workspace_id="workspaceId",
105
+ application_name="applicationName",
106
+ fqn="fqn",
107
+ workspace_fqn="workspaceFqn",
108
+ application_type="applicationType",
109
+ name_search_query="nameSearchQuery",
110
+ environment_id="environmentId",
111
+ cluster_id="clusterId",
112
+ application_set_id="applicationSetId",
113
+ paused=True,
114
+ device_type_filter=ApplicationsListRequestDeviceTypeFilter.CPU,
115
+ last_deployed_by_subjects="lastDeployedBySubjects",
116
+ lifecycle_stage=ApplicationsListRequestLifecycleStage.ACTIVE,
117
+ is_recommendation_present_and_visible=True,
118
+ )
119
+ async for item in response:
120
+ yield item
121
+
122
+ # alternatively, you can paginate page-by-page
123
+ async for page in response.iter_pages():
124
+ yield page
125
+
126
+
127
+ asyncio.run(main())
128
+ ```
129
+
130
+ ## Exception Handling
131
+
132
+ When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
133
+ will be thrown.
134
+
135
+ ```python
136
+ from truefoundry_sdk.core.api_error import ApiError
137
+
138
+ try:
139
+ client.applications.list(...)
140
+ except ApiError as e:
141
+ print(e.status_code)
142
+ print(e.body)
143
+ ```
144
+
145
+ ## Pagination
146
+
147
+ Paginated requests will return a `SyncPager` or `AsyncPager`, which can be used as generators for the underlying object.
148
+
149
+ ```python
150
+ from truefoundry_sdk import TrueFoundry
151
+
152
+ client = TrueFoundry(
153
+ api_key="YOUR_API_KEY",
154
+ base_url="https://yourhost.com/path/to/api",
155
+ )
156
+ response = client.users.list(
157
+ limit=10,
158
+ offset=0,
159
+ query="query",
160
+ show_invalid_users=True,
161
+ include_virtual_accounts="includeVirtualAccounts",
162
+ )
163
+ for item in response:
164
+ yield item
165
+ # alternatively, you can paginate page-by-page
166
+ for page in response.iter_pages():
167
+ yield page
168
+ ```
169
+
170
+ ```python
171
+ # You can also iterate through pages and access the typed response per page
172
+ pager = client.users.list(...)
173
+ for page in pager.iter_pages():
174
+ print(page.response) # access the typed response for each page
175
+ for item in page:
176
+ print(item)
177
+ ```
178
+
179
+ ## Advanced
180
+
181
+ ### Access Raw Response Data
182
+
183
+ The SDK provides access to raw response data, including headers, through the `.with_raw_response` property.
184
+ The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
185
+
186
+ ```python
187
+ from truefoundry_sdk import TrueFoundry
188
+
189
+ client = TrueFoundry(
190
+ ...,
191
+ )
192
+ response = client.applications.with_raw_response.list(...)
193
+ print(response.headers) # access the response headers
194
+ print(response.status_code) # access the response status code
195
+ print(response.data) # access the underlying object
196
+ pager = client.users.list(...)
197
+ print(pager.response) # access the typed response for the first page
198
+ for item in pager:
199
+ print(item) # access the underlying object(s)
200
+ for page in pager.iter_pages():
201
+ print(page.response) # access the typed response for each page
202
+ for item in page:
203
+ print(item) # access the underlying object(s)
204
+ ```
205
+
206
+ ### Retries
207
+
208
+ The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
209
+ as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
210
+ retry limit (default: 2).
211
+
212
+ A request is deemed retryable when any of the following HTTP status codes is returned:
213
+
214
+ - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
215
+ - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
216
+ - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
217
+
218
+ Use the `max_retries` request option to configure this behavior.
219
+
220
+ ```python
221
+ client.applications.list(..., request_options={
222
+ "max_retries": 1
223
+ })
224
+ ```
225
+
226
+ ### Timeouts
227
+
228
+ The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
229
+
230
+ ```python
231
+
232
+ from truefoundry_sdk import TrueFoundry
233
+
234
+ client = TrueFoundry(
235
+ ...,
236
+ timeout=20.0,
237
+ )
238
+
239
+
240
+ # Override timeout for a specific method
241
+ client.applications.list(..., request_options={
242
+ "timeout_in_seconds": 1
243
+ })
244
+ ```
245
+
246
+ ### Custom Client
247
+
248
+ You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
249
+ and transports.
250
+
251
+ ```python
252
+ import httpx
253
+ from truefoundry_sdk import TrueFoundry
254
+
255
+ client = TrueFoundry(
256
+ ...,
257
+ httpx_client=httpx.Client(
258
+ proxy="http://my.test.proxy.example.com",
259
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
260
+ ),
261
+ )
262
+ ```
263
+
264
+ ## Contributing
265
+
266
+ While we value open-source contributions to this SDK, this library is generated programmatically.
267
+ Additions made directly to this library would have to be moved over to our generation code,
268
+ otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
269
+ a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
270
+ an issue first to discuss with us!
271
+
272
+ On the other hand, contributions to the README are always very welcome!
@@ -0,0 +1,92 @@
1
+ [project]
2
+ name = "truefoundry-sdk"
3
+ dynamic = ["version"]
4
+
5
+ [tool.poetry]
6
+ name = "truefoundry-sdk"
7
+ version = "0.1.19"
8
+ description = ""
9
+ readme = "README.md"
10
+ authors = []
11
+ keywords = []
12
+
13
+ classifiers = [
14
+ "Intended Audience :: Developers",
15
+ "Programming Language :: Python",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3.8",
18
+ "Programming Language :: Python :: 3.9",
19
+ "Programming Language :: Python :: 3.10",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Programming Language :: Python :: 3.13",
23
+ "Programming Language :: Python :: 3.14",
24
+ "Programming Language :: Python :: 3.15",
25
+ "Operating System :: OS Independent",
26
+ "Operating System :: POSIX",
27
+ "Operating System :: MacOS",
28
+ "Operating System :: POSIX :: Linux",
29
+ "Operating System :: Microsoft :: Windows",
30
+ "Topic :: Software Development :: Libraries :: Python Modules",
31
+ "Typing :: Typed"
32
+ ]
33
+ packages = [
34
+ { include = "truefoundry_sdk", from = "src"}
35
+ ]
36
+
37
+ [tool.poetry.urls]
38
+ Repository = 'https://github.com/truefoundry/truefoundry-python-sdk'
39
+
40
+ [tool.poetry.dependencies]
41
+ python = ">=3.8"
42
+ httpx = ">=0.21.2"
43
+ pydantic = ">= 1.9.2"
44
+ pydantic-core = ">=2.18.2"
45
+ typing_extensions = ">= 4.0.0"
46
+
47
+ [tool.poetry.group.dev.dependencies]
48
+ mypy = "==1.13.0"
49
+ pytest = "^7.4.0"
50
+ pytest-asyncio = "^0.23.5"
51
+ pytest-xdist = "^3.6.1"
52
+ python-dateutil = "^2.9.0"
53
+ types-python-dateutil = "^2.9.0.20240316"
54
+ Jinja2 = ">=3.1.6,<4.0.0"
55
+ ipython = ">=8.0.0,<10.0.0"
56
+ numpydoc = ">=1.7.0,<2.0.0"
57
+ ruff = "==0.11.5"
58
+
59
+ [tool.pytest.ini_options]
60
+ testpaths = [ "tests" ]
61
+ asyncio_mode = "auto"
62
+
63
+ [tool.mypy]
64
+ plugins = ["pydantic.mypy"]
65
+
66
+ [tool.ruff]
67
+ line-length = 120
68
+
69
+ [tool.ruff.lint]
70
+ select = [
71
+ "E", # pycodestyle errors
72
+ "F", # pyflakes
73
+ "I", # isort
74
+ ]
75
+ ignore = [
76
+ "E402", # Module level import not at top of file
77
+ "E501", # Line too long
78
+ "E711", # Comparison to `None` should be `cond is not None`
79
+ "E712", # Avoid equality comparisons to `True`; use `if ...:` checks
80
+ "E721", # Use `is` and `is not` for type comparisons, or `isinstance()` for insinstance checks
81
+ "E722", # Do not use bare `except`
82
+ "E731", # Do not assign a `lambda` expression, use a `def`
83
+ "F821", # Undefined name
84
+ "F841" # Local variable ... is assigned to but never used
85
+ ]
86
+
87
+ [tool.ruff.lint.isort]
88
+ section-order = ["future", "standard-library", "third-party", "first-party"]
89
+
90
+ [build-system]
91
+ requires = ["poetry-core"]
92
+ build-backend = "poetry.core.masonry.api"