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.
- truefoundry_sdk-0.1.19/PKG-INFO +303 -0
- truefoundry_sdk-0.1.19/README.md +272 -0
- truefoundry_sdk-0.1.19/pyproject.toml +92 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/__init__.py +2796 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/_wrapped_clients.py +821 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/application_versions/raw_client.py +355 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/applications/raw_client.py +1312 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/applications/types/applications_list_request_device_type_filter.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/applications/types/applications_list_request_lifecycle_stage.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/artifact_versions/raw_client.py +1230 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/artifacts/raw_client.py +518 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/base_client.py +838 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/clusters/raw_client.py +855 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/client_wrapper.py +99 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/http_client.py +663 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/http_response.py +59 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/jsonable_encoder.py +108 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/core/pydantic_utilities.py +560 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/data_directories/raw_client.py +1187 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/environments/raw_client.py +487 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/ai_gateway/types/ai_gateway_get_gateway_config_request_type.py +62 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/artifact_versions/raw_client.py +262 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/docker_registries/types/docker_registries_create_repository_response.py +22 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/docker_registries/types/docker_registries_get_credentials_response.py +40 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/metrics/types/metrics_get_charts_request_filter_entity.py +46 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/ml/types/apply_ml_entity_request_manifest.py +10 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/internal/workflows/types/workflows_execute_workflow_response.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/jobs/raw_client.py +995 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/ml_repos/raw_client.py +601 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/model_versions/raw_client.py +585 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/models/raw_client.py +518 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/personal_access_tokens/raw_client.py +630 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/prompt_versions/raw_client.py +555 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/prompts/raw_client.py +508 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/secret_groups/raw_client.py +997 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/secrets/raw_client.py +505 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/__init__.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/client.py +406 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/raw_client.py +545 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/types/__init__.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/teams/types/teams_list_request_type.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/traces/client.py +281 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/traces/raw_client.py +318 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/__init__.py +2664 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/account.py +44 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/account_info.py +21 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/addon_component.py +68 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/addon_component_name.py +134 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/addon_component_status.py +37 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/agent_manifest.py +52 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/agent_skill.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/agent_source.py +8 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ai21provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/alert.py +46 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/alert_config_resource_type.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/alert_severity.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/alert_status.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/all_data_access_rule.py +32 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/all_data_access_rule_filters_item.py +8 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/anthropic_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/application.py +109 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/application_debug_info.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/application_lifecycle_stage.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/application_type.py +82 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/apply_ml_entity_response_data.py +10 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/artifact_type.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_api_key_auth.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_guardrail_config.py +63 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_guardrail_config_config.py +29 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_guardrail_config_operation.py +39 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_provider_account.py +57 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_bedrock_provider_account_auth_data.py +11 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_provider_account.py +54 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_region.py +170 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/aws_sagemaker_provider_account.py +57 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_certificate_auth.py +45 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_content_safety_category.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_content_safety_guardrail_config.py +52 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_content_safety_guardrail_config_config.py +47 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_foundry_model.py +64 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_foundry_model_auth_data.py +8 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_foundry_provider_account.py +49 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_open_ai_provider_account.py +60 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_open_ai_provider_account_auth_data.py +8 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_pii_category.py +78 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_pii_guardrail_config.py +57 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_pii_guardrail_config_config.py +53 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_pii_guardrail_config_config_domain.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/azure_provider_account.py +48 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/base_o_auth2login_jwt_source.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/bitbucket_provider_account.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/budget_limit_unit.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/build_status.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cerebras_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/chat_prompt_manifest.py +106 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/chat_prompt_manifest_cache_config.py +8 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cloudera_provider_account.py +55 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster_gateway.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster_manifest.py +102 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster_manifest_cluster_type.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cluster_type.py +46 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/code_safety_linter_guardrail_config.py +48 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/cohere_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/common_tools_settings.py +55 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_guardrail_config.py +69 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_guardrail_config_config.py +31 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_guardrail_config_operation.py +39 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_guardrail_config_target.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/custom_provider_account.py +45 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/data_access_rule.py +9 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/data_access_rule_base.py +40 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/databricks_provider_account.py +60 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deepinfra_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment.py +72 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment_build.py +54 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment_status.py +39 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment_status_value.py +78 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/deployment_transition.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/dockerhub_basic_auth.py +36 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/dockerhub_provider_account.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/enforcing_strategy.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config.py +59 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config_config.py +21 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config_operation.py +39 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/environment.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/environment_color.py +29 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/environment_manifest.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/environment_optimize_for.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/event.py +76 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/event_chart_category.py +46 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/event_involved_object.py +28 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/exact_match_cache_config.py +31 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/external_blob_storage_source.py +22 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/fast_ai_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/fiddler_guard_type.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/fiddler_guardrail_config.py +52 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/fiddler_guardrail_config_config.py +23 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_launch_plan_id.py +23 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_launch_plan_spec.py +23 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_task_custom.py +22 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_task_id.py +23 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/flyte_workflow_id.py +23 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_config.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_configuration.py +37 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_access_config.py +32 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_created_by_filter.py +35 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_metadata_filter.py +40 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_condition.py +14 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_control_plane_managed_storage.py +35 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_control_plane_managed_storage_region.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_created_by_condition.py +35 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_customer_managed_storage.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_metadata_condition.py +40 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_storage.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_data_routing_config_destination_storage_storage.py +15 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_logging_config.py +37 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_logging_rule.py +32 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_logging_when.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_metadata_config.py +37 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_metadata_rule.py +32 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_metadata_when.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_request_metadata_filter.py +26 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gateway_request_metadata_filter_operator.py +82 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gcp_api_key_auth.py +32 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gcp_provider_account.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gcp_region.py +174 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/get_authenticated_vcsurl_response.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/github_provider_account.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gitlab_provider_account.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/global_settings.py +33 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/gluon_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/google_gemini_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/google_vertex_provider_account.py +58 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/graph.py +46 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/graph_chart_type.py +62 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/groq_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/guardrail_config_group.py +52 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/guardrail_config_integrations.py +35 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/guardrails_rule.py +47 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/guardrails_when.py +22 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/h2o_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/hashicorp_provider_account.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/helm.py +54 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/hosted_a2a_agent.py +35 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/http_error.py +41 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/i_change.py +32 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/i_change_operation.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/in_not_in_operator.py +20 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/in_not_in_operator_condition.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/infer_method_name.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/input_output_based_cost_metric_value.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/is_cluster_connected_response.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/jfrog_provider_account.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/job_run.py +106 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/job_run_status.py +66 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/job_runs_sort_by.py +46 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/json_object_response_format.py +22 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/json_schema.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/json_schema_response_format.py +24 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/jwt.py +33 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/keras_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/latency_based_load_balancing.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/library_name.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/light_gbm_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/list_files_request.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/local_artifact_source.py +23 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/local_model_source.py +22 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/log.py +45 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_config.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_mode.py +9 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_mode_always.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_mode_header_controlled.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logging_mode_never.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_filter_query.py +37 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_filter_query_type.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_search_filter_type.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_search_operator_type.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/logs_sorting_direction.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mcp_server_integration_transport.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mcp_server_o_auth2jwt_source.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mcp_server_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mime_type.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/mistral_ai_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ml_repo.py +48 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ml_repo_manifest.py +49 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/model_provider_account.py +61 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/model_type.py +70 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/multi_part_upload.py +28 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/multi_part_upload_storage_provider.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/node_selector_capacity_type.py +45 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/nomic_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/nvidia_miggpu_profile.py +174 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ollama_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/onnx_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config.py +53 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_config.py +33 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_config_category_thresholds_value.py +11 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_config_category_thresholds_value_harassment.py +20 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/open_router_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/openai_provider_account.py +56 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/operation.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/otel_exporter_grpc_config.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/otel_exporter_http_config.py +57 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/otel_exporter_http_config_encoding.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/otel_exporter_span_attribute_filter.py +40 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/own_data_access_rule.py +26 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/paddle_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pager_duty_provider_account.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/palm_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config.py +52 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config_config.py +32 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config_config_mode.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pangea_guard_type.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pangea_guardrail_config.py +58 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pangea_guardrail_config_config.py +33 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/pangea_guardrail_config_operation.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/param_param_type.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_glider_criteria.py +46 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_guardrail_config.py +52 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_guardrail_config_config.py +28 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_guardrail_config_config_target.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/patronus_judge_criteria.py +86 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/perplexity_ai_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/personal_access_token_manifest.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/policy_entity_types.py +54 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/policy_manifest_mode.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/port_app_protocol.py +45 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/port_protocol.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/priority_based_load_balancing.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/private_pricing_tier.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prometheus_alert_rule.py +54 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_foo_guard_type.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_foo_guardrail_config.py +56 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_foo_guardrail_config_config.py +19 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_foo_guardrail_config_operation.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/prompt_source.py +36 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/py_torch_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/quay_provider_account.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/rate_limit_rule.py +39 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/rate_limit_unit.py +54 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/recommendation.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/remote_source.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/role_manifest.py +52 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/role_with_resource.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/role_with_resource_resource_type.py +174 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/samba_nova_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sample_agent_input.py +26 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/schedule_concurrency_policy.py +44 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret.py +53 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_detection_guardrail_config.py +56 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_detection_guardrail_config_config.py +21 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_detection_guardrail_config_operation.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_group.py +55 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_group_manifest.py +44 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/secret_version.py +41 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/self_hosted_model_model_server.py +54 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/self_hosted_model_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/semantic_cache_config.py +36 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/semantic_cache_settings.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/session.py +58 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/session_account.py +19 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/session_team.py +19 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sklearn_framework.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sklearn_serialization_format.py +42 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/slack_provider_account.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/smtp_credentials.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/snowflake_cortex_provider_account.py +58 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sort_direction.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/spa_cy_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_attribute_filter.py +26 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_attribute_filter_operator.py +82 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_field_filter.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_field_filter_operator.py +82 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_field_filter_span_field_name.py +82 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/span_field_filter_value.py +5 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/spark_job_trigger_input.py +37 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sql_sanitizer_guardrail_config.py +56 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sql_sanitizer_guardrail_config_config.py +61 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sql_sanitizer_guardrail_config_operation.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/stats_models_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sub_agent.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject.py +45 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject_clause.py +23 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject_condition_group.py +21 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject_condition_group_operator.py +34 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/subject_type.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sync_token_in_secret_store_info.py +28 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/sync_virtual_account_token_response.py +26 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/target_clause.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/target_condition_group.py +20 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/team.py +45 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/team_data_access_rule.py +26 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/team_manifest.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/team_metadata.py +22 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tensor_flow_framework.py +18 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/terminate_job_response.py +31 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/together_ai_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/token_pagination.py +37 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/trace_span.py +115 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tracing_project_control_plane_managed_storage.py +25 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tracing_project_customer_managed_storage.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tracing_project_manifest.py +58 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/tracing_project_storage_config.py +10 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/transformers_framework.py +33 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/trigger_job_run_response.py +36 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_apply_request_manifest.py +69 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_apply_response.py +37 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_apply_response_action.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_apply_response_existing_manifest.py +69 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_delete_request_manifest.py +69 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_managed_source.py +19 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/true_foundry_provider_account.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/ttl_provider_account.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/upgrade_data.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/user.py +44 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/user_metadata.py +56 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/user_metadata_tenant_role_managed_by.py +38 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/user_resource.py +44 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/virtual_account.py +61 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/virtual_account_manifest.py +50 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/virtual_model_provider_account.py +49 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/webhook_provider_account.py +43 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/weight_based_load_balancing.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/workspace.py +49 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/workspace_manifest.py +65 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xai_integrations.py +5 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xai_key_auth.py +30 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xai_model.py +48 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xai_provider_account.py +51 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xg_boost_framework.py +27 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/types/xg_boost_serialization_format.py +46 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/users/raw_client.py +1629 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/virtual_accounts/client.py +751 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/virtual_accounts/raw_client.py +891 -0
- truefoundry_sdk-0.1.19/src/truefoundry_sdk/workspaces/raw_client.py +624 -0
- truefoundry_sdk-0.1.17rc1/PKG-INFO +0 -299
- truefoundry_sdk-0.1.17rc1/README.md +0 -271
- truefoundry_sdk-0.1.17rc1/pyproject.toml +0 -89
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/__init__.py +0 -2552
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/_wrapped_clients.py +0 -821
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/application_versions/raw_client.py +0 -355
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/applications/raw_client.py +0 -1312
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/applications/types/applications_list_request_device_type_filter.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/applications/types/applications_list_request_lifecycle_stage.py +0 -26
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/artifact_versions/raw_client.py +0 -1230
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/artifacts/raw_client.py +0 -518
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/base_client.py +0 -838
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/clusters/raw_client.py +0 -855
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/client_wrapper.py +0 -95
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/http_client.py +0 -613
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/http_response.py +0 -55
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/jsonable_encoder.py +0 -100
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/core/pydantic_utilities.py +0 -260
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/data_directories/raw_client.py +0 -1187
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/environments/raw_client.py +0 -487
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/ai_gateway/types/ai_gateway_get_gateway_config_request_type.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/artifact_versions/raw_client.py +0 -262
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/docker_registries/types/docker_registries_create_repository_response.py +0 -20
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/docker_registries/types/docker_registries_get_credentials_response.py +0 -40
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/metrics/types/metrics_get_charts_request_filter_entity.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/ml/types/apply_ml_entity_request_manifest.py +0 -13
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/internal/workflows/types/workflows_execute_workflow_response.py +0 -25
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/jobs/raw_client.py +0 -995
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/ml_repos/raw_client.py +0 -601
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/model_versions/raw_client.py +0 -585
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/models/raw_client.py +0 -518
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/personal_access_tokens/raw_client.py +0 -630
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/prompt_versions/raw_client.py +0 -555
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/prompts/raw_client.py +0 -508
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/secret_groups/raw_client.py +0 -997
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/secrets/raw_client.py +0 -505
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/__init__.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/client.py +0 -406
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/raw_client.py +0 -545
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/types/__init__.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/types/apply_team_request_manifest.py +0 -8
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/teams/types/teams_list_request_type.py +0 -18
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/traces/client.py +0 -263
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/traces/raw_client.py +0 -294
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/__init__.py +0 -2406
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/account.py +0 -33
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/addon_component.py +0 -58
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/addon_component_name.py +0 -118
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/addon_component_status.py +0 -37
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ai21provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/alert.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/alert_config_resource_type.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/alert_severity.py +0 -18
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/alert_status.py +0 -18
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/anthropic_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/application.py +0 -89
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/application_debug_info.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/application_lifecycle_stage.py +0 -26
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/application_type.py +0 -70
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/apply_ml_entity_response_data.py +0 -11
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/artifact_type.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_bedrock_guardrail_config.py +0 -59
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_bedrock_guardrail_config_operation.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_bedrock_provider_account.py +0 -55
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_bedrock_provider_account_auth_data.py +0 -8
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_provider_account.py +0 -52
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_region.py +0 -158
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/aws_sagemaker_provider_account.py +0 -55
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_content_safety_category.py +0 -30
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_content_safety_guardrail_config.py +0 -72
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_foundry_model.py +0 -60
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_foundry_provider_account.py +0 -47
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_open_ai_provider_account.py +0 -54
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_pii_category.py +0 -66
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_pii_guardrail_config.py +0 -78
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_pii_guardrail_config_domain.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/azure_provider_account.py +0 -46
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/base_o_auth2login_jwt_source.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/bitbucket_provider_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/budget_limit_unit.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/build_status.py +0 -26
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cerebras_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/chat_prompt_manifest.py +0 -92
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cloudera_provider_account.py +0 -53
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster_gateway.py +0 -30
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster_manifest.py +0 -100
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster_manifest_cluster_type.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cluster_type.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/cohere_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/common_tools_settings.py +0 -55
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/custom_guardrail_config.py +0 -67
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/custom_guardrail_config_operation.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/custom_guardrail_config_target.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/custom_provider_account.py +0 -43
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/databricks_provider_account.py +0 -58
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deepinfra_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment.py +0 -60
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment_build.py +0 -36
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment_status.py +0 -31
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment_status_value.py +0 -66
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/deployment_transition.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/dockerhub_basic_auth.py +0 -36
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/dockerhub_provider_account.py +0 -48
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config.py +0 -48
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/enkrypt_ai_guardrail_config_operation.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/environment.py +0 -35
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/environment_color.py +0 -25
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/environment_manifest.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/environment_optimize_for.py +0 -18
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/event.py +0 -74
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/event_chart_category.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/event_involved_object.py +0 -24
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/external_blob_storage_source.py +0 -26
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/fast_ai_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/fiddler_guard_type.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/fiddler_guardrail_config.py +0 -47
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_launch_plan_id.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_launch_plan_spec.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_task_custom.py +0 -19
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_task_id.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/flyte_workflow_id.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gateway_config.py +0 -11
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gateway_configuration.py +0 -29
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gateway_request_metadata_filter.py +0 -24
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gateway_request_metadata_filter_operator.py +0 -62
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gcp_api_key_auth.py +0 -32
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gcp_provider_account.py +0 -48
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gcp_region.py +0 -162
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/get_authenticated_vcsurl_response.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/github_provider_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gitlab_provider_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/gluon_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/google_gemini_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/google_vertex_provider_account.py +0 -56
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/graph.py +0 -44
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/graph_chart_type.py +0 -50
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/groq_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/guardrail_config_group.py +0 -50
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/guardrail_config_integrations.py +0 -29
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/guardrails_rule.py +0 -37
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/guardrails_when.py +0 -35
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/h2o_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/hashicorp_provider_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/helm.py +0 -54
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/http_error.py +0 -39
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/i_change.py +0 -32
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/i_change_operation.py +0 -26
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/infer_method_name.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/input_output_based_cost_metric_value.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/is_cluster_connected_response.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/jfrog_provider_account.py +0 -48
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/job_run.py +0 -100
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/job_run_status.py +0 -54
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/job_runs_sort_by.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/json_object_response_format.py +0 -25
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/json_schema.py +0 -32
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/json_schema_response_format.py +0 -28
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/jwt.py +0 -27
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/keras_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/latency_based_load_balancing.py +0 -31
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/library_name.py +0 -30
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/light_gbm_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/list_files_request.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/local_artifact_source.py +0 -27
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/local_model_source.py +0 -26
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/log.py +0 -45
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_filter_query.py +0 -35
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_filter_query_type.py +0 -30
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_search_filter_type.py +0 -30
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_search_operator_type.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/logs_sorting_direction.py +0 -18
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mcp_server_integration_transport.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mcp_server_o_auth2jwt_source.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mcp_server_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mime_type.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/mistral_ai_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ml_repo.py +0 -48
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ml_repo_manifest.py +0 -47
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/model_provider_account.py +0 -59
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/model_type.py +0 -58
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/multi_part_upload.py +0 -28
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/multi_part_upload_storage_provider.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/node_selector_capacity_type.py +0 -33
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/nomic_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/nvidia_miggpu_profile.py +0 -162
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ollama_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/onnx_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config.py +0 -61
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_category_thresholds_value.py +0 -11
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/open_ai_moderations_guardrail_config_category_thresholds_value_harassment.py +0 -20
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/open_router_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/openai_provider_account.py +0 -54
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/operation.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/otel_exporter_grpc_config.py +0 -45
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/otel_exporter_http_config.py +0 -51
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/otel_exporter_http_config_encoding.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/paddle_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/pager_duty_provider_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/palm_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config.py +0 -52
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/palo_alto_prisma_airs_guardrail_config_mode.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/pangea_guard_type.py +0 -18
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/pangea_guardrail_config.py +0 -58
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/pangea_guardrail_config_operation.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/param_param_type.py +0 -18
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/patronus_glider_criteria.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/patronus_guardrail_config.py +0 -52
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/patronus_guardrail_config_target.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/patronus_judge_criteria.py +0 -74
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/perplexity_ai_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/personal_access_token_manifest.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/policy_entity_types.py +0 -42
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/policy_manifest_mode.py +0 -30
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/port_app_protocol.py +0 -33
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/port_protocol.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/priority_based_load_balancing.py +0 -31
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/prometheus_alert_rule.py +0 -54
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/prompt_foo_guard_type.py +0 -26
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/prompt_foo_guardrail_config.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/prompt_foo_guardrail_config_operation.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/py_torch_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/quay_provider_account.py +0 -48
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/rate_limit_rule.py +0 -35
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/rate_limit_unit.py +0 -42
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/recommendation.py +0 -37
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/remote_source.py +0 -30
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/role_manifest.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/role_permissions.py +0 -28
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/samba_nova_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/schedule_concurrency_policy.py +0 -32
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/secret.py +0 -45
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/secret_group.py +0 -40
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/secret_group_manifest.py +0 -37
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/secret_version.py +0 -35
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/self_hosted_model_model_server.py +0 -42
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/self_hosted_model_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/session.py +0 -40
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sklearn_framework.py +0 -31
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sklearn_serialization_format.py +0 -30
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/slack_provider_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/smtp_credentials.py +0 -51
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/snowflake_cortex_provider_account.py +0 -56
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sort_direction.py +0 -18
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/spa_cy_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_attribute_filter.py +0 -24
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_attribute_filter_operator.py +0 -62
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_field_filter.py +0 -25
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_field_filter_operator.py +0 -62
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_field_filter_span_field_name.py +0 -66
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/span_field_filter_value.py +0 -5
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/spark_job_trigger_input.py +0 -37
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sso_team_manifest.py +0 -36
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/stats_models_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/subject.py +0 -43
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/subject_type.py +0 -38
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sync_token_in_secret_store_info.py +0 -28
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/sync_virtual_account_token_response.py +0 -26
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/team.py +0 -32
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/team_manifest.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/tensor_flow_framework.py +0 -21
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/terminate_job_response.py +0 -29
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/together_ai_provider_account.py +0 -49
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/token_pagination.py +0 -37
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/trace_span.py +0 -96
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/tracing_project.py +0 -28
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/tracing_project_manifest.py +0 -31
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/transformers_framework.py +0 -37
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/trigger_job_run_response.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_apply_request_manifest.py +0 -63
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_apply_response.py +0 -37
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_apply_response_action.py +0 -22
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_apply_response_existing_manifest.py +0 -63
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_delete_request_manifest.py +0 -63
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_managed_source.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/true_foundry_provider_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/ttl_provider_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/upgrade_data.py +0 -35
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user.py +0 -33
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_metadata.py +0 -35
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_metadata_tenant_role_managed_by.py +0 -26
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_resource.py +0 -40
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_role_with_resource.py +0 -23
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/user_role_with_resource_resource_type.py +0 -134
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/virtual_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/virtual_account_manifest.py +0 -48
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/virtual_model_provider_account.py +0 -47
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/webhook_provider_account.py +0 -41
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/weight_based_load_balancing.py +0 -31
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/workspace.py +0 -35
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/workspace_manifest.py +0 -63
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/xg_boost_framework.py +0 -31
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/types/xg_boost_serialization_format.py +0 -34
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/users/raw_client.py +0 -1629
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/virtual_accounts/client.py +0 -737
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/virtual_accounts/raw_client.py +0 -879
- truefoundry_sdk-0.1.17rc1/src/truefoundry_sdk/workspaces/raw_client.py +0 -624
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/alerts/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/alerts/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/alerts/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/application_versions/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/application_versions/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/applications/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/applications/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/applications/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/applications/types/applications_cancel_deployment_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifact_versions/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifact_versions/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifact_versions/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifact_versions/types/stage_artifact_request_manifest.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifacts/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/artifacts/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/clusters/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/clusters/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/clusters/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/clusters/types/clusters_delete_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/api_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/custom_pagination.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/datetime_utils.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/enum.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/file.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/force_multipart.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/_api.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/_decoders.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/_exceptions.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/http_sse/_models.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/pagination.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/query_encoder.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/remove_none_from_dict.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/request_options.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/core/serialization.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/data_directories/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/data_directories/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/environments/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/environments/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/bad_request_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/conflict_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/expectation_failed_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/failed_dependency_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/forbidden_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/method_not_allowed_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/not_found_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/not_implemented_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/unauthorized_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/errors/unprocessable_entity_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/events/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/events/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/events/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ai_gateway/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ai_gateway/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ai_gateway/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ai_gateway/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/applications/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/applications/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/applications/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/artifact_versions/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/artifact_versions/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/build_logs/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/build_logs/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/build_logs/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/clusters/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/clusters/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/clusters/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/deployments/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/deployments/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/deployments/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/docker_registries/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/docker_registries/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/docker_registries/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/docker_registries/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/metrics/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/metrics/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/metrics/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/metrics/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/ml/types/delete_ml_entity_request_manifest.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/users/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/users/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/users/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/vcs/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/vcs/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/vcs/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/workflows/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/workflows/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/workflows/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/internal/workflows/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/jobs/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/jobs/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/jobs/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/jobs/types/trigger_job_request_input.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/logs/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/logs/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/logs/raw_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/ml_repos/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/ml_repos/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/model_versions/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/model_versions/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/models/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/models/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/personal_access_tokens/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/personal_access_tokens/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/prompt_versions/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/prompt_versions/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/prompts/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/prompts/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/py.typed +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/raw_base_client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/secret_groups/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/secret_groups/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/secrets/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/secrets/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/traces/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/traces/types/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/traces/types/query_spans_request_filters_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/activate_user_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/add_on_component_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ai21integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ai21key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ai21model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ai_features_settings.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/alert_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/alert_config_resource.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/amqp_input_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/amqp_metric_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/amqp_output_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/anthropic_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/anthropic_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/anthropic_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/application_metadata.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/application_problem.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/application_set.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/application_set_components_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/apply_ml_entity_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact_manifest.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact_manifest_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact_path.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifact_version.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifacts_cache_volume.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifacts_download.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/artifacts_download_artifacts_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/assistant_message.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/assistant_message_content.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/assistant_message_content_one_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_processor_sidecar.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_service.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_service_autoscaling.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_service_autoscaling_metrics.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/async_service_replicas.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/auto_rotate.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/autoshutdown.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_access_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_access_key_based_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_assumed_role_based_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_bedrock_assumed_role_based_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_bedrock_guardrail_config_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_ecr.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_ecr_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_eks_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_eks_integration_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_inferentia.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_parameter_store.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_parameter_store_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_provider_account_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_s3.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_s3auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_sagemaker_provider_account_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_secrets_manager.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_secrets_manager_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_sqs_access_key_based_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/aws_sqs_assumed_role_based_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_aks_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_basic_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_blob_storage.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_connection_string_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_container_registry.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_o_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_open_ai_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_repos_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/azure_vault.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_artifact_version.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_artifact_version_manifest.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_autoscaling.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_o_auth2login.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_service.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_service_image.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_service_mounts_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_workbench_input.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/base_workbench_input_mounts_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/basic_auth_creds.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/bedrock_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/bitbucket_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/blob_storage_reference.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/blue_green.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/budget_alert.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/budget_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/budget_rule.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/budget_when.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/build.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/build_build_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/build_build_spec.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/build_info.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/canary.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/canary_step.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cerebras_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cerebras_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cerebras_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/change_password_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/chat_prompt_manifest_mcp_servers_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/chat_prompt_manifest_messages_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/chat_prompt_manifest_response_format.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/chat_prompt_manifest_routing_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_provider_account_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_token_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cloudera_workload_auth_token.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cluster_manifest_monitoring.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cluster_manifest_node_label_keys.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cluster_manifest_workbench_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/codeserver.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cohere_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cohere_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cohere_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/collaborator.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/container_task_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/container_task_config_image.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/container_task_config_mounts_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/core_nats_output_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cpu_utilization_metric.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/create_multi_part_upload_request.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/create_personal_access_token_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/cron_metric.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_basic_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_bearer_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_blob_storage.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_guardrail_config_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_helm_repo.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_jwt_auth_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_tls_settings.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/custom_username_password_artifacts_registry.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/data_directory.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/data_directory_manifest.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/data_directory_manifest_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_api_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_provider_account_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/databricks_service_principal_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deactivate_user_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deepinfra_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deepinfra_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deepinfra_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_application_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_job_run_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_personal_access_token_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_secret_group_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_team_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_user_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/delete_virtual_account_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/deployment_manifest.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/developer_message.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/developer_message_content.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/docker_file_build.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/docker_file_build_command.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/dockerhub_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/dockerhub_registry.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/dynamic_volume_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/email.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/email_notification_channel.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/empty_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/endpoint.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/enkrypt_ai_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/event_chart.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/fiddler_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/file_info.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_launch_plan.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_task.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_task_custom_truefoundry.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_task_template.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_workflow.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/flyte_workflow_template.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/forward_action.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/function.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/function_schema.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gateway_otel_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gateway_otel_config_otel_traces_exporter_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gateway_request_metadata_filter_value.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_gcr.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_gcs.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_gke_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_gsm.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_key_file_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gcp_tpu.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gemini_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_alerts_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_application_deployment_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_application_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_artifact_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_artifact_version_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_auto_provisioning_state_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_charts_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_cluster_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_data_directory_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_environment_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_events_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_job_run_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_logs_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_ml_repo_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_model_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_model_version_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_or_create_personal_access_token_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_prompt_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_prompt_version_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_secret_group_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_secret_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_signed_ur_ls_request.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_signed_ur_ls_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_suggested_deployment_endpoint_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_team_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_token_for_virtual_account_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_user_resources_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_user_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_user_teams_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_virtual_account_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/get_workspace_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/git_helm_repo.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/git_repository_exists_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/git_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/github_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/gitlab_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/groq_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/groq_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/groq_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/guardrails.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/guardrails_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/hashicorp_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/hashicorp_token_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/hashicorp_vault_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/header_match.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/header_routing_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/health_probe.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/helm_repo.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/helm_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/http_error_code.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/http_probe.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/http_validation_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/huggingface_artifact_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image_command.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image_content_part.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image_content_part_image_url.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/image_content_part_image_url_url.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/infra_provider_account.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ingress_controller_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/intercept.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/intercept_rules_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/intercept_rules_item_action.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/internal_artifact_version.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/internal_list_artifact_versions_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/internal_list_artifact_versions_response_data_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/internal_model_version.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/invite_user_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/j_frog_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/jfrog_artifacts_registry.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/jfrog_basic_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_alert.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_image.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_mounts_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_trigger.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_trigger_input.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/job_trigger_input_command.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/jwt_auth_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/jwt_auth_config_claims_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kafka_input_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kafka_metric_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kafka_output_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kafka_sasl_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/kustomize.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/latency_based_load_balance_target.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/latency_based_load_balancing_rule.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_application_deployments_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_applications_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_artifact_versions_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_artifacts_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_cluster_addons_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_clusters_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_data_directories_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_environments_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_files_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_job_run_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_ml_repos_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_model_versions_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_models_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_personal_access_token_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_prompt_versions_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_prompts_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_secret_group_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_secrets_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_teams_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_users_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_virtual_account_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/list_workspaces_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/load_balance_target.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/load_balancing_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/load_balancing_rule.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/load_balancing_when.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/local_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/logs_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/manual.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_header_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_header_override_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_o_auth2.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_passthrough.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_tool_details.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_with_fqn.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_server_with_url.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mcp_tool.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/metadata.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/metric.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mirror_action.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mistral_ai_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mistral_ai_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/mistral_ai_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_configuration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_cost_metric.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_manifest.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_manifest_framework.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_manifest_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_version.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/model_version_environment.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/multi_part_upload_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nats_input_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nats_metric_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nats_output_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nats_user_password_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/node_selector.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nodepool.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nodepool_selector.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nomic_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nomic_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nomic_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/non_negative_float.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/notebook.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/notebook_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/notification_target.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/notification_target_for_alert_rule.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nvidia_gpu.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nvidia_miggpu.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/nvidia_timeslicing_gpu.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/o_auth2login_provider.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/oci_repo.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ollama_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ollama_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ollama_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_ai_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_ai_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_router_api_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_router_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/open_router_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/openai_api_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/owned_by.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pager_duty.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pager_duty_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pager_duty_integration_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pager_duty_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pagination.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/palm_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/palm_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/palm_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/palo_alto_prisma_airs_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pangea_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/param.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/parameters.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/parameters_stop.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_answer_relevance_criteria.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_answer_relevance_evaluator.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_evaluator.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_glider_evaluator.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_judge_evaluator.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_phi_criteria.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_phi_evaluator.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_pii_criteria.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_pii_evaluator.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_toxicity_criteria.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/patronus_toxicity_evaluator.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/per_thousand_embedding_tokens_cost_metric.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/per_thousand_tokens_cost_metric.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/permissions.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/perplexity_ai_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/perplexity_ai_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/perplexity_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/pip.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/poetry.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_actions.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_filters.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_manifest.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_manifest_operation.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_mutation_operation.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/policy_validation_operation.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/port.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/port_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/presigned_url_object.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/priority_based_load_balance_target.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/priority_based_load_balancing_rule.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/prompt.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/prompt_version.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/provider_accounts.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/public_cost_metric.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/py_spark_task_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_build.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_build_command.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_build_python_dependencies.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_task_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_task_config_image.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/python_task_config_mounts_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/quay_artifacts_registry.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/quay_basic_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/quay_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/query_spans_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/r_studio.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/rate_limit_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/rate_limit_when.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/refusal_content_part.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/register_users_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/resources.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/resources_devices_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/resources_node.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/retry_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/revoke_all_personal_access_token_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/rolling.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/rps_metric.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sagemaker_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/samba_nova_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/samba_nova_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/samba_nova_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/schedule.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/secret_input.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/secret_mount.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/secret_store_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/self_hosted_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/self_hosted_model_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/self_hosted_model_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service_autoscaling.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service_autoscaling_metrics.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service_replicas.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/service_rollout_strategy.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/signed_url.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sklearn_model_schema.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sla_cutoff.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_bot.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_bot_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_bot_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_webhook.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_webhook_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/slack_webhook_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/snowflake_cortex_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/snowflake_cortex_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/snowflake_cortex_pat_token_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/span_attribute_filter_value.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_build.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_driver_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_executor_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_executor_config_instances.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_executor_dynamic_scaling.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_executor_fixed_instances.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_image.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_image_build.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_image_build_build_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_entrypoint.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_image.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_java_entrypoint.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_python_entrypoint.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_python_notebook_entrypoint.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_scala_entrypoint.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/spark_job_scala_notebook_entrypoint.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sqs_input_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sqs_output_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sqs_queue_metric_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/sqs_queue_metric_config_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ssh_server.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ssh_server_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/stage_artifact_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/static_volume_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/string_data_mount.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/system_message.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/system_message_content.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/task_docker_file_build.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/task_py_spark_build.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/task_python_build.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/team_owned_by.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/text_content_part.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/text_content_part_text.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/together_ai_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/together_ai_key_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/together_ai_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/tool_call.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/tool_message.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/tool_message_content.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/tool_schema.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/true_foundry_artifact_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/true_foundry_dbssm.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/true_foundry_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/true_foundry_interactive_login.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ttl_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/ttl_registry.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/update_secret_input.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/update_user_roles_response.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/usage_code_snippet.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/user_message.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/user_message_content.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/user_message_content_one_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/uv.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/validation_error.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/validation_error_loc_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/vertex_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/virtual_account_owned_by.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/virtual_mcp_server_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/virtual_mcp_server_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/virtual_model.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/volume.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/volume_browser.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/volume_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/volume_mount.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_basic_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_bearer_auth.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_integration.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_integration_auth_data.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/webhook_integrations.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/weight_based_load_balancing_rule.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workbench_image.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/worker_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/worker_config_input_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/worker_config_output_config.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workflow.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workflow_alert.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workflow_flyte_entities_item.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/workflow_source.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/types/xg_boost_model_schema.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/users/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/users/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/version.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/virtual_accounts/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/workspaces/__init__.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/workspaces/client.py +0 -0
- {truefoundry_sdk-0.1.17rc1 → truefoundry_sdk-0.1.19}/src/truefoundry_sdk/workspaces/types/__init__.py +0 -0
- {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
|
+
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Ftruefoundry%2Ftruefoundry-python-sdk)
|
|
34
|
+
[](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: [](https://deepwiki.com/truefoundry/truefoundry-python-sdk)
|
|
41
|
+
> - TypeScript: [](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
|
+
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Ftruefoundry%2Ftruefoundry-python-sdk)
|
|
4
|
+
[](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: [](https://deepwiki.com/truefoundry/truefoundry-python-sdk)
|
|
11
|
+
> - TypeScript: [](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"
|