beamlit 0.0.27rc23__tar.gz → 0.0.28__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/PKG-INFO +1 -1
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/pyproject.toml +1 -1
- beamlit-0.0.28/src/beamlit/api/agents/get_agent_trace_ids.py +106 -0
- beamlit-0.0.28/src/beamlit/api/default/get_trace.py +150 -0
- beamlit-0.0.28/src/beamlit/api/default/get_trace_ids.py +233 -0
- beamlit-0.0.28/src/beamlit/api/default/get_trace_logs.py +186 -0
- beamlit-0.0.28/src/beamlit/api/functions/get_function_trace_ids.py +106 -0
- beamlit-0.0.28/src/beamlit/api/models/get_model_trace_ids.py +106 -0
- beamlit-0.0.28/src/beamlit/api/workspaces/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/authentication/authentication.py +8 -2
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/client.py +13 -2
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/common/settings.py +12 -4
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/deploy/deploy.py +2 -2
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/__init__.py +6 -0
- beamlit-0.0.28/src/beamlit/models/get_trace_ids_response_200.py +45 -0
- beamlit-0.0.28/src/beamlit/models/get_trace_logs_response_200.py +45 -0
- beamlit-0.0.28/src/beamlit/models/get_trace_response_200.py +45 -0
- beamlit-0.0.28/src/integrationtest/main.py +35 -0
- beamlit-0.0.27rc23/src/integrationtest/main.py +0 -22
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/.gitignore +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/README.md +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/beamlit.yaml +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/agents/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/agents/chat.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/agents/decorator.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/create_agent.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/create_agent_release.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/delete_agent.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/delete_agent_history.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/get_agent.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/get_agent_environment_logs.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/get_agent_history.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/get_agent_metrics.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/list_agent_history.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/list_agents.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/put_agent_history.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/agents/update_agent.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/configurations/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/configurations/get_configuration.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/environments → beamlit-0.0.28/src/beamlit/api/default}/__init__.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/functions → beamlit-0.0.28/src/beamlit/api/environments}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/environments/create_environment.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/environments/delete_environment.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/environments/get_environment.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/environments/get_environment_metrics.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/environments/list_environments.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/environments/update_environment.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/history → beamlit-0.0.28/src/beamlit/api/functions}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/functions/create_function.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/functions/create_function_release.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/functions/delete_function.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/functions/get_function.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/functions/get_function_environment_logs.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/functions/get_function_metrics.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/functions/list_functions.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/functions/update_function.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/integrations → beamlit-0.0.28/src/beamlit/api/history}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/history/get_agents_history.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/history/list_agents_history.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/invitations → beamlit-0.0.28/src/beamlit/api/integrations}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/create_integration_connection.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/delete_integration_connection.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/get_integration.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/get_integration_connection.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/get_integration_connection_model.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/get_integration_model.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/list_integration_connection_models.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/list_integration_connections.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/list_integration_models.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/integrations/update_integration_connection.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/locations → beamlit-0.0.28/src/beamlit/api/invitations}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/invitations/list_all_pending_invitations.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/metrics → beamlit-0.0.28/src/beamlit/api/locations}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/locations/list_locations.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/model_providers → beamlit-0.0.28/src/beamlit/api/metrics}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/metrics/get_metrics.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/models → beamlit-0.0.28/src/beamlit/api/model_providers}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/model_providers/create_model_provider.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/model_providers/delete_model_provider.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/model_providers/get_model_provider.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/model_providers/list_model_providers.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/model_providers/update_model_provider.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/policies → beamlit-0.0.28/src/beamlit/api/models}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/models/create_model.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/models/delete_model.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/models/get_model.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/models/get_model_environment_logs.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/models/get_model_metrics.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/models/list_models.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/models/release_model.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/models/update_model.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/privateclusters → beamlit-0.0.28/src/beamlit/api/policies}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/policies/create_policy.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/policies/delete_policy.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/policies/get_policy.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/policies/list_policies.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/policies/update_policy.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/service_accounts → beamlit-0.0.28/src/beamlit/api/privateclusters}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/privateclusters/create_private_cluster.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/privateclusters/delete_private_cluster.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/privateclusters/get_private_cluster.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/privateclusters/get_private_cluster_health.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/privateclusters/list_private_clusters.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/privateclusters/update_private_cluster.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/privateclusters/update_private_cluster_health.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/store → beamlit-0.0.28/src/beamlit/api/service_accounts}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/service_accounts/create_api_key_for_service_account.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/service_accounts/create_workspace_service_account.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/service_accounts/delete_api_key_for_service_account.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/service_accounts/delete_workspace_service_account.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/service_accounts/get_workspace_service_accounts.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/service_accounts/list_api_keys_for_service_account.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/service_accounts/update_workspace_service_account.py +0 -0
- {beamlit-0.0.27rc23/src/beamlit/api/workspaces → beamlit-0.0.28/src/beamlit/api/store}/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/store/get_store_agent.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/store/get_store_function.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/store/list_store_agents.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/store/list_store_functions.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/accept_workspace_invitation.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/create_worspace.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/decline_workspace_invitation.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/delete_workspace.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/get_workspace.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/invite_workspace_user.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/leave_workspace.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/list_workspace_users.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/list_workspaces.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/remove_workspace_user.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/update_workspace.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/api/workspaces/update_workspace_user_role.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/authentication/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/authentication/apikey.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/authentication/clientcredentials.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/authentication/credentials.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/authentication/device_mode.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/common/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/common/generate.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/common/instrumentation.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/common/logger.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/common/secrets.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/common/utils.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/deploy/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/deploy/format.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/deploy/parser.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/errors.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/decorator.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/github/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/github/github.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/github/kit/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/github/kit/pull_request.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/math/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/math/math.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/mcp/mcp.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/remote/remote.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/search/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/functions/search/search.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/acl.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/agent.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/agent_chain.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/agent_history.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/agent_history_event.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/agent_metadata.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/agent_release.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/agent_spec.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/api_key.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/configuration.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/continent.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/core_spec.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/core_spec_configurations.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/core_status.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/country.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/create_api_key_for_service_account_body.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/create_workspace_service_account_body.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/create_workspace_service_account_response_200.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/delete_workspace_service_account_response_200.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/environment.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/environment_metadata.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/environment_metrics.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/environment_spec.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/flavor.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/function.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/function_kit.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/function_metadata.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/function_release.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/function_spec.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/get_workspace_service_accounts_response_200_item.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/increase_and_rate_metric.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/integration_config.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/integration_connection.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/integration_connection_config.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/integration_connection_secret.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/integration_connection_spec.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/integration_model.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/invite_workspace_user_body.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/location_response.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/metadata.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/metadata_labels.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/metric.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/metrics.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/model.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/model_metadata.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/model_private_cluster.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/model_provider.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/model_release.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/model_spec.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/owner_fields.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/pending_invitation.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/pending_invitation_accept.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/pending_invitation_render.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/pending_invitation_render_invited_by.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/pending_invitation_render_workspace.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/pending_invitation_workspace_details.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/pod_template_spec.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/policy.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/policy_location.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/policy_spec.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/private_cluster.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/private_location.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/provider_config.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/qps.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_deployment_metrics.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_deployment_metrics_inference_per_second_per_region.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_deployment_metrics_query_per_second_per_region_per_code.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_environment_metrics.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_environment_metrics_inference_per_region.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_environment_metrics_inference_per_second_per_region.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_environment_metrics_query_per_region_per_code.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_environment_metrics_query_per_second_per_region_per_code.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_log.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/resource_metrics.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/runtime.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/runtime_readiness_probe.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/runtime_resources.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/serverless_config.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/spec_configuration.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/store_agent.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/store_agent_labels.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/store_configuration.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/store_configuration_option.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/store_function.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/store_function_kit.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/store_function_labels.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/store_function_parameter.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/time_fields.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/update_workspace_service_account_body.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/update_workspace_service_account_response_200.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/update_workspace_user_role_body.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/websocket_channel.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/workspace.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/workspace_labels.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/models/workspace_user.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/py.typed +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/run.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/serve/app.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/serve/middlewares/__init__.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/serve/middlewares/accesslog.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/serve/middlewares/processtime.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/beamlit/types.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/integrationtest/agent.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/integrationtest/beamlit.yaml +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/src/integrationtest/functions/helloworld.py +0 -0
- {beamlit-0.0.27rc23 → beamlit-0.0.28}/uv.lock +0 -0
@@ -0,0 +1,106 @@
|
|
1
|
+
from http import HTTPStatus
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
|
6
|
+
from ... import errors
|
7
|
+
from ...client import AuthenticatedClient, Client
|
8
|
+
from ...types import UNSET, Response, Unset
|
9
|
+
|
10
|
+
|
11
|
+
def _get_kwargs(
|
12
|
+
agent_name: str,
|
13
|
+
*,
|
14
|
+
environment: Union[Unset, str] = UNSET,
|
15
|
+
) -> dict[str, Any]:
|
16
|
+
params: dict[str, Any] = {}
|
17
|
+
|
18
|
+
params["environment"] = environment
|
19
|
+
|
20
|
+
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
21
|
+
|
22
|
+
_kwargs: dict[str, Any] = {
|
23
|
+
"method": "get",
|
24
|
+
"url": f"/agents/{agent_name}/traces",
|
25
|
+
"params": params,
|
26
|
+
}
|
27
|
+
|
28
|
+
return _kwargs
|
29
|
+
|
30
|
+
|
31
|
+
def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
|
32
|
+
if client.raise_on_unexpected_status:
|
33
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
34
|
+
else:
|
35
|
+
return None
|
36
|
+
|
37
|
+
|
38
|
+
def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
|
39
|
+
return Response(
|
40
|
+
status_code=HTTPStatus(response.status_code),
|
41
|
+
content=response.content,
|
42
|
+
headers=response.headers,
|
43
|
+
parsed=_parse_response(client=client, response=response),
|
44
|
+
)
|
45
|
+
|
46
|
+
|
47
|
+
def sync_detailed(
|
48
|
+
agent_name: str,
|
49
|
+
*,
|
50
|
+
client: AuthenticatedClient,
|
51
|
+
environment: Union[Unset, str] = UNSET,
|
52
|
+
) -> Response[Any]:
|
53
|
+
"""Get agent trace IDs
|
54
|
+
|
55
|
+
Args:
|
56
|
+
agent_name (str):
|
57
|
+
environment (Union[Unset, str]):
|
58
|
+
|
59
|
+
Raises:
|
60
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
61
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
62
|
+
|
63
|
+
Returns:
|
64
|
+
Response[Any]
|
65
|
+
"""
|
66
|
+
|
67
|
+
kwargs = _get_kwargs(
|
68
|
+
agent_name=agent_name,
|
69
|
+
environment=environment,
|
70
|
+
)
|
71
|
+
|
72
|
+
response = client.get_httpx_client().request(
|
73
|
+
**kwargs,
|
74
|
+
)
|
75
|
+
|
76
|
+
return _build_response(client=client, response=response)
|
77
|
+
|
78
|
+
|
79
|
+
async def asyncio_detailed(
|
80
|
+
agent_name: str,
|
81
|
+
*,
|
82
|
+
client: AuthenticatedClient,
|
83
|
+
environment: Union[Unset, str] = UNSET,
|
84
|
+
) -> Response[Any]:
|
85
|
+
"""Get agent trace IDs
|
86
|
+
|
87
|
+
Args:
|
88
|
+
agent_name (str):
|
89
|
+
environment (Union[Unset, str]):
|
90
|
+
|
91
|
+
Raises:
|
92
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
93
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
94
|
+
|
95
|
+
Returns:
|
96
|
+
Response[Any]
|
97
|
+
"""
|
98
|
+
|
99
|
+
kwargs = _get_kwargs(
|
100
|
+
agent_name=agent_name,
|
101
|
+
environment=environment,
|
102
|
+
)
|
103
|
+
|
104
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
105
|
+
|
106
|
+
return _build_response(client=client, response=response)
|
@@ -0,0 +1,150 @@
|
|
1
|
+
from http import HTTPStatus
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
|
6
|
+
from ... import errors
|
7
|
+
from ...client import AuthenticatedClient, Client
|
8
|
+
from ...models.get_trace_response_200 import GetTraceResponse200
|
9
|
+
from ...types import Response
|
10
|
+
|
11
|
+
|
12
|
+
def _get_kwargs(
|
13
|
+
trace_id: str,
|
14
|
+
) -> dict[str, Any]:
|
15
|
+
_kwargs: dict[str, Any] = {
|
16
|
+
"method": "get",
|
17
|
+
"url": f"/traces/{trace_id}",
|
18
|
+
}
|
19
|
+
|
20
|
+
return _kwargs
|
21
|
+
|
22
|
+
|
23
|
+
def _parse_response(
|
24
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
25
|
+
) -> Optional[GetTraceResponse200]:
|
26
|
+
if response.status_code == 200:
|
27
|
+
response_200 = GetTraceResponse200.from_dict(response.json())
|
28
|
+
|
29
|
+
return response_200
|
30
|
+
if client.raise_on_unexpected_status:
|
31
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
32
|
+
else:
|
33
|
+
return None
|
34
|
+
|
35
|
+
|
36
|
+
def _build_response(
|
37
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
38
|
+
) -> Response[GetTraceResponse200]:
|
39
|
+
return Response(
|
40
|
+
status_code=HTTPStatus(response.status_code),
|
41
|
+
content=response.content,
|
42
|
+
headers=response.headers,
|
43
|
+
parsed=_parse_response(client=client, response=response),
|
44
|
+
)
|
45
|
+
|
46
|
+
|
47
|
+
def sync_detailed(
|
48
|
+
trace_id: str,
|
49
|
+
*,
|
50
|
+
client: AuthenticatedClient,
|
51
|
+
) -> Response[GetTraceResponse200]:
|
52
|
+
"""Get trace by ID
|
53
|
+
|
54
|
+
Args:
|
55
|
+
trace_id (str):
|
56
|
+
|
57
|
+
Raises:
|
58
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
59
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
60
|
+
|
61
|
+
Returns:
|
62
|
+
Response[GetTraceResponse200]
|
63
|
+
"""
|
64
|
+
|
65
|
+
kwargs = _get_kwargs(
|
66
|
+
trace_id=trace_id,
|
67
|
+
)
|
68
|
+
|
69
|
+
response = client.get_httpx_client().request(
|
70
|
+
**kwargs,
|
71
|
+
)
|
72
|
+
|
73
|
+
return _build_response(client=client, response=response)
|
74
|
+
|
75
|
+
|
76
|
+
def sync(
|
77
|
+
trace_id: str,
|
78
|
+
*,
|
79
|
+
client: AuthenticatedClient,
|
80
|
+
) -> Optional[GetTraceResponse200]:
|
81
|
+
"""Get trace by ID
|
82
|
+
|
83
|
+
Args:
|
84
|
+
trace_id (str):
|
85
|
+
|
86
|
+
Raises:
|
87
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
88
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
89
|
+
|
90
|
+
Returns:
|
91
|
+
GetTraceResponse200
|
92
|
+
"""
|
93
|
+
|
94
|
+
return sync_detailed(
|
95
|
+
trace_id=trace_id,
|
96
|
+
client=client,
|
97
|
+
).parsed
|
98
|
+
|
99
|
+
|
100
|
+
async def asyncio_detailed(
|
101
|
+
trace_id: str,
|
102
|
+
*,
|
103
|
+
client: AuthenticatedClient,
|
104
|
+
) -> Response[GetTraceResponse200]:
|
105
|
+
"""Get trace by ID
|
106
|
+
|
107
|
+
Args:
|
108
|
+
trace_id (str):
|
109
|
+
|
110
|
+
Raises:
|
111
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
112
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
113
|
+
|
114
|
+
Returns:
|
115
|
+
Response[GetTraceResponse200]
|
116
|
+
"""
|
117
|
+
|
118
|
+
kwargs = _get_kwargs(
|
119
|
+
trace_id=trace_id,
|
120
|
+
)
|
121
|
+
|
122
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
123
|
+
|
124
|
+
return _build_response(client=client, response=response)
|
125
|
+
|
126
|
+
|
127
|
+
async def asyncio(
|
128
|
+
trace_id: str,
|
129
|
+
*,
|
130
|
+
client: AuthenticatedClient,
|
131
|
+
) -> Optional[GetTraceResponse200]:
|
132
|
+
"""Get trace by ID
|
133
|
+
|
134
|
+
Args:
|
135
|
+
trace_id (str):
|
136
|
+
|
137
|
+
Raises:
|
138
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
139
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
140
|
+
|
141
|
+
Returns:
|
142
|
+
GetTraceResponse200
|
143
|
+
"""
|
144
|
+
|
145
|
+
return (
|
146
|
+
await asyncio_detailed(
|
147
|
+
trace_id=trace_id,
|
148
|
+
client=client,
|
149
|
+
)
|
150
|
+
).parsed
|
@@ -0,0 +1,233 @@
|
|
1
|
+
from http import HTTPStatus
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
|
6
|
+
from ... import errors
|
7
|
+
from ...client import AuthenticatedClient, Client
|
8
|
+
from ...models.get_trace_ids_response_200 import GetTraceIdsResponse200
|
9
|
+
from ...types import UNSET, Response, Unset
|
10
|
+
|
11
|
+
|
12
|
+
def _get_kwargs(
|
13
|
+
*,
|
14
|
+
workload_id: Union[Unset, str] = UNSET,
|
15
|
+
workload_type: Union[Unset, str] = UNSET,
|
16
|
+
environment: Union[Unset, str] = UNSET,
|
17
|
+
limit: Union[Unset, str] = UNSET,
|
18
|
+
start_time: Union[Unset, str] = UNSET,
|
19
|
+
end_time: Union[Unset, str] = UNSET,
|
20
|
+
) -> dict[str, Any]:
|
21
|
+
params: dict[str, Any] = {}
|
22
|
+
|
23
|
+
params["workloadId"] = workload_id
|
24
|
+
|
25
|
+
params["workloadType"] = workload_type
|
26
|
+
|
27
|
+
params["environment"] = environment
|
28
|
+
|
29
|
+
params["limit"] = limit
|
30
|
+
|
31
|
+
params["startTime"] = start_time
|
32
|
+
|
33
|
+
params["endTime"] = end_time
|
34
|
+
|
35
|
+
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
36
|
+
|
37
|
+
_kwargs: dict[str, Any] = {
|
38
|
+
"method": "get",
|
39
|
+
"url": "/traces",
|
40
|
+
"params": params,
|
41
|
+
}
|
42
|
+
|
43
|
+
return _kwargs
|
44
|
+
|
45
|
+
|
46
|
+
def _parse_response(
|
47
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
48
|
+
) -> Optional[GetTraceIdsResponse200]:
|
49
|
+
if response.status_code == 200:
|
50
|
+
response_200 = GetTraceIdsResponse200.from_dict(response.json())
|
51
|
+
|
52
|
+
return response_200
|
53
|
+
if client.raise_on_unexpected_status:
|
54
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
55
|
+
else:
|
56
|
+
return None
|
57
|
+
|
58
|
+
|
59
|
+
def _build_response(
|
60
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
61
|
+
) -> Response[GetTraceIdsResponse200]:
|
62
|
+
return Response(
|
63
|
+
status_code=HTTPStatus(response.status_code),
|
64
|
+
content=response.content,
|
65
|
+
headers=response.headers,
|
66
|
+
parsed=_parse_response(client=client, response=response),
|
67
|
+
)
|
68
|
+
|
69
|
+
|
70
|
+
def sync_detailed(
|
71
|
+
*,
|
72
|
+
client: AuthenticatedClient,
|
73
|
+
workload_id: Union[Unset, str] = UNSET,
|
74
|
+
workload_type: Union[Unset, str] = UNSET,
|
75
|
+
environment: Union[Unset, str] = UNSET,
|
76
|
+
limit: Union[Unset, str] = UNSET,
|
77
|
+
start_time: Union[Unset, str] = UNSET,
|
78
|
+
end_time: Union[Unset, str] = UNSET,
|
79
|
+
) -> Response[GetTraceIdsResponse200]:
|
80
|
+
"""Get trace IDs
|
81
|
+
|
82
|
+
Args:
|
83
|
+
workload_id (Union[Unset, str]):
|
84
|
+
workload_type (Union[Unset, str]):
|
85
|
+
environment (Union[Unset, str]):
|
86
|
+
limit (Union[Unset, str]):
|
87
|
+
start_time (Union[Unset, str]):
|
88
|
+
end_time (Union[Unset, str]):
|
89
|
+
|
90
|
+
Raises:
|
91
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
92
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
93
|
+
|
94
|
+
Returns:
|
95
|
+
Response[GetTraceIdsResponse200]
|
96
|
+
"""
|
97
|
+
|
98
|
+
kwargs = _get_kwargs(
|
99
|
+
workload_id=workload_id,
|
100
|
+
workload_type=workload_type,
|
101
|
+
environment=environment,
|
102
|
+
limit=limit,
|
103
|
+
start_time=start_time,
|
104
|
+
end_time=end_time,
|
105
|
+
)
|
106
|
+
|
107
|
+
response = client.get_httpx_client().request(
|
108
|
+
**kwargs,
|
109
|
+
)
|
110
|
+
|
111
|
+
return _build_response(client=client, response=response)
|
112
|
+
|
113
|
+
|
114
|
+
def sync(
|
115
|
+
*,
|
116
|
+
client: AuthenticatedClient,
|
117
|
+
workload_id: Union[Unset, str] = UNSET,
|
118
|
+
workload_type: Union[Unset, str] = UNSET,
|
119
|
+
environment: Union[Unset, str] = UNSET,
|
120
|
+
limit: Union[Unset, str] = UNSET,
|
121
|
+
start_time: Union[Unset, str] = UNSET,
|
122
|
+
end_time: Union[Unset, str] = UNSET,
|
123
|
+
) -> Optional[GetTraceIdsResponse200]:
|
124
|
+
"""Get trace IDs
|
125
|
+
|
126
|
+
Args:
|
127
|
+
workload_id (Union[Unset, str]):
|
128
|
+
workload_type (Union[Unset, str]):
|
129
|
+
environment (Union[Unset, str]):
|
130
|
+
limit (Union[Unset, str]):
|
131
|
+
start_time (Union[Unset, str]):
|
132
|
+
end_time (Union[Unset, str]):
|
133
|
+
|
134
|
+
Raises:
|
135
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
136
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
137
|
+
|
138
|
+
Returns:
|
139
|
+
GetTraceIdsResponse200
|
140
|
+
"""
|
141
|
+
|
142
|
+
return sync_detailed(
|
143
|
+
client=client,
|
144
|
+
workload_id=workload_id,
|
145
|
+
workload_type=workload_type,
|
146
|
+
environment=environment,
|
147
|
+
limit=limit,
|
148
|
+
start_time=start_time,
|
149
|
+
end_time=end_time,
|
150
|
+
).parsed
|
151
|
+
|
152
|
+
|
153
|
+
async def asyncio_detailed(
|
154
|
+
*,
|
155
|
+
client: AuthenticatedClient,
|
156
|
+
workload_id: Union[Unset, str] = UNSET,
|
157
|
+
workload_type: Union[Unset, str] = UNSET,
|
158
|
+
environment: Union[Unset, str] = UNSET,
|
159
|
+
limit: Union[Unset, str] = UNSET,
|
160
|
+
start_time: Union[Unset, str] = UNSET,
|
161
|
+
end_time: Union[Unset, str] = UNSET,
|
162
|
+
) -> Response[GetTraceIdsResponse200]:
|
163
|
+
"""Get trace IDs
|
164
|
+
|
165
|
+
Args:
|
166
|
+
workload_id (Union[Unset, str]):
|
167
|
+
workload_type (Union[Unset, str]):
|
168
|
+
environment (Union[Unset, str]):
|
169
|
+
limit (Union[Unset, str]):
|
170
|
+
start_time (Union[Unset, str]):
|
171
|
+
end_time (Union[Unset, str]):
|
172
|
+
|
173
|
+
Raises:
|
174
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
175
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
176
|
+
|
177
|
+
Returns:
|
178
|
+
Response[GetTraceIdsResponse200]
|
179
|
+
"""
|
180
|
+
|
181
|
+
kwargs = _get_kwargs(
|
182
|
+
workload_id=workload_id,
|
183
|
+
workload_type=workload_type,
|
184
|
+
environment=environment,
|
185
|
+
limit=limit,
|
186
|
+
start_time=start_time,
|
187
|
+
end_time=end_time,
|
188
|
+
)
|
189
|
+
|
190
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
191
|
+
|
192
|
+
return _build_response(client=client, response=response)
|
193
|
+
|
194
|
+
|
195
|
+
async def asyncio(
|
196
|
+
*,
|
197
|
+
client: AuthenticatedClient,
|
198
|
+
workload_id: Union[Unset, str] = UNSET,
|
199
|
+
workload_type: Union[Unset, str] = UNSET,
|
200
|
+
environment: Union[Unset, str] = UNSET,
|
201
|
+
limit: Union[Unset, str] = UNSET,
|
202
|
+
start_time: Union[Unset, str] = UNSET,
|
203
|
+
end_time: Union[Unset, str] = UNSET,
|
204
|
+
) -> Optional[GetTraceIdsResponse200]:
|
205
|
+
"""Get trace IDs
|
206
|
+
|
207
|
+
Args:
|
208
|
+
workload_id (Union[Unset, str]):
|
209
|
+
workload_type (Union[Unset, str]):
|
210
|
+
environment (Union[Unset, str]):
|
211
|
+
limit (Union[Unset, str]):
|
212
|
+
start_time (Union[Unset, str]):
|
213
|
+
end_time (Union[Unset, str]):
|
214
|
+
|
215
|
+
Raises:
|
216
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
217
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
218
|
+
|
219
|
+
Returns:
|
220
|
+
GetTraceIdsResponse200
|
221
|
+
"""
|
222
|
+
|
223
|
+
return (
|
224
|
+
await asyncio_detailed(
|
225
|
+
client=client,
|
226
|
+
workload_id=workload_id,
|
227
|
+
workload_type=workload_type,
|
228
|
+
environment=environment,
|
229
|
+
limit=limit,
|
230
|
+
start_time=start_time,
|
231
|
+
end_time=end_time,
|
232
|
+
)
|
233
|
+
).parsed
|
@@ -0,0 +1,186 @@
|
|
1
|
+
from http import HTTPStatus
|
2
|
+
from typing import Any, Optional, Union
|
3
|
+
|
4
|
+
import httpx
|
5
|
+
|
6
|
+
from ... import errors
|
7
|
+
from ...client import AuthenticatedClient, Client
|
8
|
+
from ...models.get_trace_logs_response_200 import GetTraceLogsResponse200
|
9
|
+
from ...types import UNSET, Response, Unset
|
10
|
+
|
11
|
+
|
12
|
+
def _get_kwargs(
|
13
|
+
trace_id: str,
|
14
|
+
*,
|
15
|
+
span_id: Union[Unset, str] = UNSET,
|
16
|
+
limit: Union[Unset, str] = UNSET,
|
17
|
+
) -> dict[str, Any]:
|
18
|
+
params: dict[str, Any] = {}
|
19
|
+
|
20
|
+
params["spanId"] = span_id
|
21
|
+
|
22
|
+
params["limit"] = limit
|
23
|
+
|
24
|
+
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
25
|
+
|
26
|
+
_kwargs: dict[str, Any] = {
|
27
|
+
"method": "get",
|
28
|
+
"url": f"/traces/{trace_id}/logs",
|
29
|
+
"params": params,
|
30
|
+
}
|
31
|
+
|
32
|
+
return _kwargs
|
33
|
+
|
34
|
+
|
35
|
+
def _parse_response(
|
36
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
37
|
+
) -> Optional[GetTraceLogsResponse200]:
|
38
|
+
if response.status_code == 200:
|
39
|
+
response_200 = GetTraceLogsResponse200.from_dict(response.json())
|
40
|
+
|
41
|
+
return response_200
|
42
|
+
if client.raise_on_unexpected_status:
|
43
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
44
|
+
else:
|
45
|
+
return None
|
46
|
+
|
47
|
+
|
48
|
+
def _build_response(
|
49
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
50
|
+
) -> Response[GetTraceLogsResponse200]:
|
51
|
+
return Response(
|
52
|
+
status_code=HTTPStatus(response.status_code),
|
53
|
+
content=response.content,
|
54
|
+
headers=response.headers,
|
55
|
+
parsed=_parse_response(client=client, response=response),
|
56
|
+
)
|
57
|
+
|
58
|
+
|
59
|
+
def sync_detailed(
|
60
|
+
trace_id: str,
|
61
|
+
*,
|
62
|
+
client: AuthenticatedClient,
|
63
|
+
span_id: Union[Unset, str] = UNSET,
|
64
|
+
limit: Union[Unset, str] = UNSET,
|
65
|
+
) -> Response[GetTraceLogsResponse200]:
|
66
|
+
"""Get trace logs
|
67
|
+
|
68
|
+
Args:
|
69
|
+
trace_id (str):
|
70
|
+
span_id (Union[Unset, str]):
|
71
|
+
limit (Union[Unset, str]):
|
72
|
+
|
73
|
+
Raises:
|
74
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
75
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
76
|
+
|
77
|
+
Returns:
|
78
|
+
Response[GetTraceLogsResponse200]
|
79
|
+
"""
|
80
|
+
|
81
|
+
kwargs = _get_kwargs(
|
82
|
+
trace_id=trace_id,
|
83
|
+
span_id=span_id,
|
84
|
+
limit=limit,
|
85
|
+
)
|
86
|
+
|
87
|
+
response = client.get_httpx_client().request(
|
88
|
+
**kwargs,
|
89
|
+
)
|
90
|
+
|
91
|
+
return _build_response(client=client, response=response)
|
92
|
+
|
93
|
+
|
94
|
+
def sync(
|
95
|
+
trace_id: str,
|
96
|
+
*,
|
97
|
+
client: AuthenticatedClient,
|
98
|
+
span_id: Union[Unset, str] = UNSET,
|
99
|
+
limit: Union[Unset, str] = UNSET,
|
100
|
+
) -> Optional[GetTraceLogsResponse200]:
|
101
|
+
"""Get trace logs
|
102
|
+
|
103
|
+
Args:
|
104
|
+
trace_id (str):
|
105
|
+
span_id (Union[Unset, str]):
|
106
|
+
limit (Union[Unset, str]):
|
107
|
+
|
108
|
+
Raises:
|
109
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
110
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
111
|
+
|
112
|
+
Returns:
|
113
|
+
GetTraceLogsResponse200
|
114
|
+
"""
|
115
|
+
|
116
|
+
return sync_detailed(
|
117
|
+
trace_id=trace_id,
|
118
|
+
client=client,
|
119
|
+
span_id=span_id,
|
120
|
+
limit=limit,
|
121
|
+
).parsed
|
122
|
+
|
123
|
+
|
124
|
+
async def asyncio_detailed(
|
125
|
+
trace_id: str,
|
126
|
+
*,
|
127
|
+
client: AuthenticatedClient,
|
128
|
+
span_id: Union[Unset, str] = UNSET,
|
129
|
+
limit: Union[Unset, str] = UNSET,
|
130
|
+
) -> Response[GetTraceLogsResponse200]:
|
131
|
+
"""Get trace logs
|
132
|
+
|
133
|
+
Args:
|
134
|
+
trace_id (str):
|
135
|
+
span_id (Union[Unset, str]):
|
136
|
+
limit (Union[Unset, str]):
|
137
|
+
|
138
|
+
Raises:
|
139
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
140
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
141
|
+
|
142
|
+
Returns:
|
143
|
+
Response[GetTraceLogsResponse200]
|
144
|
+
"""
|
145
|
+
|
146
|
+
kwargs = _get_kwargs(
|
147
|
+
trace_id=trace_id,
|
148
|
+
span_id=span_id,
|
149
|
+
limit=limit,
|
150
|
+
)
|
151
|
+
|
152
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
153
|
+
|
154
|
+
return _build_response(client=client, response=response)
|
155
|
+
|
156
|
+
|
157
|
+
async def asyncio(
|
158
|
+
trace_id: str,
|
159
|
+
*,
|
160
|
+
client: AuthenticatedClient,
|
161
|
+
span_id: Union[Unset, str] = UNSET,
|
162
|
+
limit: Union[Unset, str] = UNSET,
|
163
|
+
) -> Optional[GetTraceLogsResponse200]:
|
164
|
+
"""Get trace logs
|
165
|
+
|
166
|
+
Args:
|
167
|
+
trace_id (str):
|
168
|
+
span_id (Union[Unset, str]):
|
169
|
+
limit (Union[Unset, str]):
|
170
|
+
|
171
|
+
Raises:
|
172
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
173
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
174
|
+
|
175
|
+
Returns:
|
176
|
+
GetTraceLogsResponse200
|
177
|
+
"""
|
178
|
+
|
179
|
+
return (
|
180
|
+
await asyncio_detailed(
|
181
|
+
trace_id=trace_id,
|
182
|
+
client=client,
|
183
|
+
span_id=span_id,
|
184
|
+
limit=limit,
|
185
|
+
)
|
186
|
+
).parsed
|