blaxel 0.64.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- blaxel/__init__.py +8 -0
- blaxel/agents/__init__.py +5 -0
- blaxel/agents/chain.py +153 -0
- blaxel/agents/chat.py +286 -0
- blaxel/agents/decorator.py +208 -0
- blaxel/agents/thread.py +24 -0
- blaxel/agents/voice/openai.py +255 -0
- blaxel/agents/voice/utils.py +25 -0
- blaxel/api/__init__.py +1 -0
- blaxel/api/agents/__init__.py +0 -0
- blaxel/api/agents/create_agent.py +155 -0
- blaxel/api/agents/delete_agent.py +146 -0
- blaxel/api/agents/get_agent.py +146 -0
- blaxel/api/agents/get_agent_logs.py +151 -0
- blaxel/api/agents/get_agent_metrics.py +150 -0
- blaxel/api/agents/get_agent_trace_ids.py +201 -0
- blaxel/api/agents/list_agent_revisions.py +155 -0
- blaxel/api/agents/list_agents.py +127 -0
- blaxel/api/agents/update_agent.py +168 -0
- blaxel/api/configurations/__init__.py +0 -0
- blaxel/api/configurations/get_configuration.py +122 -0
- blaxel/api/default/__init__.py +0 -0
- blaxel/api/default/get_trace.py +150 -0
- blaxel/api/default/get_trace_ids.py +218 -0
- blaxel/api/default/get_trace_logs.py +186 -0
- blaxel/api/default/list_mcp_hub_definitions.py +127 -0
- blaxel/api/functions/__init__.py +0 -0
- blaxel/api/functions/create_function.py +155 -0
- blaxel/api/functions/delete_function.py +146 -0
- blaxel/api/functions/get_function.py +146 -0
- blaxel/api/functions/get_function_logs.py +151 -0
- blaxel/api/functions/get_function_metrics.py +150 -0
- blaxel/api/functions/get_function_trace_ids.py +201 -0
- blaxel/api/functions/list_function_revisions.py +158 -0
- blaxel/api/functions/list_functions.py +131 -0
- blaxel/api/functions/update_function.py +168 -0
- blaxel/api/integrations/__init__.py +0 -0
- blaxel/api/integrations/create_integration_connection.py +167 -0
- blaxel/api/integrations/delete_integration_connection.py +158 -0
- blaxel/api/integrations/get_integration.py +97 -0
- blaxel/api/integrations/get_integration_connection.py +158 -0
- blaxel/api/integrations/get_integration_connection_model.py +104 -0
- blaxel/api/integrations/get_integration_connection_model_endpoint_configurations.py +97 -0
- blaxel/api/integrations/list_integration_connection_models.py +97 -0
- blaxel/api/integrations/list_integration_connections.py +139 -0
- blaxel/api/integrations/update_integration_connection.py +180 -0
- blaxel/api/invitations/__init__.py +0 -0
- blaxel/api/invitations/list_all_pending_invitations.py +142 -0
- blaxel/api/knowledgebases/__init__.py +0 -0
- blaxel/api/knowledgebases/create_knowledgebase.py +163 -0
- blaxel/api/knowledgebases/delete_knowledgebase.py +154 -0
- blaxel/api/knowledgebases/get_knowledgebase.py +154 -0
- blaxel/api/knowledgebases/list_knowledgebase_revisions.py +158 -0
- blaxel/api/knowledgebases/list_knowledgebases.py +139 -0
- blaxel/api/knowledgebases/update_knowledgebase.py +176 -0
- blaxel/api/locations/__init__.py +0 -0
- blaxel/api/locations/list_locations.py +139 -0
- blaxel/api/metrics/__init__.py +0 -0
- blaxel/api/metrics/get_metrics.py +130 -0
- blaxel/api/models/__init__.py +0 -0
- blaxel/api/models/create_model.py +163 -0
- blaxel/api/models/delete_model.py +154 -0
- blaxel/api/models/get_model.py +154 -0
- blaxel/api/models/get_model_logs.py +155 -0
- blaxel/api/models/get_model_metrics.py +158 -0
- blaxel/api/models/get_model_trace_ids.py +201 -0
- blaxel/api/models/list_model_revisions.py +158 -0
- blaxel/api/models/list_models.py +135 -0
- blaxel/api/models/update_model.py +176 -0
- blaxel/api/policies/__init__.py +0 -0
- blaxel/api/policies/create_policy.py +167 -0
- blaxel/api/policies/delete_policy.py +154 -0
- blaxel/api/policies/get_policy.py +154 -0
- blaxel/api/policies/list_policies.py +139 -0
- blaxel/api/policies/update_policy.py +180 -0
- blaxel/api/privateclusters/__init__.py +0 -0
- blaxel/api/privateclusters/create_private_cluster.py +132 -0
- blaxel/api/privateclusters/delete_private_cluster.py +156 -0
- blaxel/api/privateclusters/get_private_cluster.py +159 -0
- blaxel/api/privateclusters/get_private_cluster_health.py +97 -0
- blaxel/api/privateclusters/list_private_clusters.py +140 -0
- blaxel/api/privateclusters/update_private_cluster.py +156 -0
- blaxel/api/privateclusters/update_private_cluster_health.py +97 -0
- blaxel/api/service_accounts/__init__.py +0 -0
- blaxel/api/service_accounts/create_api_key_for_service_account.py +177 -0
- blaxel/api/service_accounts/create_workspace_service_account.py +170 -0
- blaxel/api/service_accounts/delete_api_key_for_service_account.py +104 -0
- blaxel/api/service_accounts/delete_workspace_service_account.py +160 -0
- blaxel/api/service_accounts/get_workspace_service_accounts.py +141 -0
- blaxel/api/service_accounts/list_api_keys_for_service_account.py +163 -0
- blaxel/api/service_accounts/update_workspace_service_account.py +183 -0
- blaxel/api/store/__init__.py +0 -0
- blaxel/api/store/get_store_agent.py +146 -0
- blaxel/api/store/get_store_function.py +146 -0
- blaxel/api/store/list_store_agents.py +131 -0
- blaxel/api/store/list_store_functions.py +131 -0
- blaxel/api/workspaces/__init__.py +0 -0
- blaxel/api/workspaces/accept_workspace_invitation.py +161 -0
- blaxel/api/workspaces/create_worspace.py +163 -0
- blaxel/api/workspaces/decline_workspace_invitation.py +158 -0
- blaxel/api/workspaces/delete_workspace.py +154 -0
- blaxel/api/workspaces/get_workspace.py +154 -0
- blaxel/api/workspaces/invite_workspace_user.py +174 -0
- blaxel/api/workspaces/leave_workspace.py +161 -0
- blaxel/api/workspaces/list_workspace_users.py +139 -0
- blaxel/api/workspaces/list_workspaces.py +139 -0
- blaxel/api/workspaces/remove_workspace_user.py +101 -0
- blaxel/api/workspaces/update_workspace.py +176 -0
- blaxel/api/workspaces/update_workspace_user_role.py +187 -0
- blaxel/authentication/__init__.py +45 -0
- blaxel/authentication/apikey.py +50 -0
- blaxel/authentication/authentication.py +176 -0
- blaxel/authentication/clientcredentials.py +103 -0
- blaxel/authentication/credentials.py +295 -0
- blaxel/authentication/device_mode.py +197 -0
- blaxel/client.py +281 -0
- blaxel/common/__init__.py +17 -0
- blaxel/common/error.py +27 -0
- blaxel/common/instrumentation.py +317 -0
- blaxel/common/logger.py +60 -0
- blaxel/common/secrets.py +39 -0
- blaxel/common/settings.py +150 -0
- blaxel/common/slugify.py +18 -0
- blaxel/common/utils.py +34 -0
- blaxel/deploy/__init__.py +8 -0
- blaxel/deploy/deploy.py +316 -0
- blaxel/deploy/format.py +46 -0
- blaxel/deploy/parser.py +192 -0
- blaxel/errors.py +16 -0
- blaxel/functions/__init__.py +7 -0
- blaxel/functions/common.py +228 -0
- blaxel/functions/decorator.py +64 -0
- blaxel/functions/local/local.py +48 -0
- blaxel/functions/mcp/client.py +96 -0
- blaxel/functions/mcp/mcp.py +168 -0
- blaxel/functions/mcp/utils.py +56 -0
- blaxel/functions/remote/remote.py +183 -0
- blaxel/models/__init__.py +233 -0
- blaxel/models/acl.py +133 -0
- blaxel/models/agent.py +126 -0
- blaxel/models/agent_chain.py +88 -0
- blaxel/models/agent_spec.py +346 -0
- blaxel/models/api_key.py +142 -0
- blaxel/models/configuration.py +85 -0
- blaxel/models/continent.py +70 -0
- blaxel/models/core_event.py +97 -0
- blaxel/models/core_spec.py +249 -0
- blaxel/models/core_spec_configurations.py +77 -0
- blaxel/models/country.py +70 -0
- blaxel/models/create_api_key_for_service_account_body.py +69 -0
- blaxel/models/create_workspace_service_account_body.py +71 -0
- blaxel/models/create_workspace_service_account_response_200.py +105 -0
- blaxel/models/delete_workspace_service_account_response_200.py +96 -0
- blaxel/models/entrypoint.py +96 -0
- blaxel/models/entrypoint_env.py +45 -0
- blaxel/models/flavor.py +70 -0
- blaxel/models/form.py +120 -0
- blaxel/models/form_config.py +45 -0
- blaxel/models/form_oauthomitempty.py +45 -0
- blaxel/models/form_secrets.py +45 -0
- blaxel/models/function.py +126 -0
- blaxel/models/function_kit.py +97 -0
- blaxel/models/function_spec.py +310 -0
- blaxel/models/get_trace_ids_response_200.py +45 -0
- blaxel/models/get_trace_logs_response_200.py +45 -0
- blaxel/models/get_trace_response_200.py +45 -0
- blaxel/models/get_workspace_service_accounts_response_200_item.py +96 -0
- blaxel/models/histogram_bucket.py +79 -0
- blaxel/models/histogram_stats.py +88 -0
- blaxel/models/integration_connection.py +96 -0
- blaxel/models/integration_connection_spec.py +114 -0
- blaxel/models/integration_connection_spec_config.py +45 -0
- blaxel/models/integration_connection_spec_secret.py +45 -0
- blaxel/models/integration_model.py +162 -0
- blaxel/models/integration_repository.py +88 -0
- blaxel/models/invite_workspace_user_body.py +60 -0
- blaxel/models/knowledgebase.py +126 -0
- blaxel/models/knowledgebase_spec.py +163 -0
- blaxel/models/knowledgebase_spec_options.py +45 -0
- blaxel/models/last_n_requests_metric.py +79 -0
- blaxel/models/latency_metric.py +144 -0
- blaxel/models/location_response.py +113 -0
- blaxel/models/mcp_definition.py +188 -0
- blaxel/models/mcp_definition_entrypoint.py +45 -0
- blaxel/models/mcp_definition_form.py +45 -0
- blaxel/models/metadata.py +139 -0
- blaxel/models/metadata_labels.py +45 -0
- blaxel/models/metric.py +79 -0
- blaxel/models/metrics.py +169 -0
- blaxel/models/metrics_models.py +45 -0
- blaxel/models/metrics_request_total_per_code.py +45 -0
- blaxel/models/metrics_rps_per_code.py +45 -0
- blaxel/models/model.py +126 -0
- blaxel/models/model_private_cluster.py +79 -0
- blaxel/models/model_spec.py +249 -0
- blaxel/models/o_auth.py +72 -0
- blaxel/models/owner_fields.py +70 -0
- blaxel/models/pending_invitation.py +124 -0
- blaxel/models/pending_invitation_accept.py +85 -0
- blaxel/models/pending_invitation_render.py +147 -0
- blaxel/models/pending_invitation_render_invited_by.py +88 -0
- blaxel/models/pending_invitation_render_workspace.py +70 -0
- blaxel/models/pending_invitation_workspace_details.py +72 -0
- blaxel/models/pod_template_spec.py +45 -0
- blaxel/models/policy.py +96 -0
- blaxel/models/policy_location.py +70 -0
- blaxel/models/policy_max_tokens.py +106 -0
- blaxel/models/policy_spec.py +151 -0
- blaxel/models/private_cluster.py +183 -0
- blaxel/models/private_location.py +61 -0
- blaxel/models/repository.py +70 -0
- blaxel/models/request_duration_over_time_metric.py +97 -0
- blaxel/models/request_duration_over_time_metrics.py +80 -0
- blaxel/models/request_total_by_origin_metric.py +115 -0
- blaxel/models/request_total_by_origin_metric_request_total_by_origin.py +45 -0
- blaxel/models/request_total_by_origin_metric_request_total_by_origin_and_code.py +45 -0
- blaxel/models/request_total_metric.py +123 -0
- blaxel/models/request_total_metric_request_total_per_code.py +45 -0
- blaxel/models/request_total_metric_rps_per_code.py +45 -0
- blaxel/models/resource_log.py +79 -0
- blaxel/models/resource_metrics.py +270 -0
- blaxel/models/resource_metrics_request_total_per_code.py +45 -0
- blaxel/models/resource_metrics_rps_per_code.py +45 -0
- blaxel/models/revision_configuration.py +97 -0
- blaxel/models/revision_metadata.py +124 -0
- blaxel/models/runtime.py +196 -0
- blaxel/models/runtime_startup_probe.py +45 -0
- blaxel/models/serverless_config.py +80 -0
- blaxel/models/spec_configuration.py +70 -0
- blaxel/models/store_agent.py +178 -0
- blaxel/models/store_agent_labels.py +45 -0
- blaxel/models/store_configuration.py +151 -0
- blaxel/models/store_configuration_option.py +79 -0
- blaxel/models/store_function.py +211 -0
- blaxel/models/store_function_kit.py +97 -0
- blaxel/models/store_function_labels.py +45 -0
- blaxel/models/store_function_parameter.py +88 -0
- blaxel/models/time_fields.py +70 -0
- blaxel/models/token_rate_metric.py +88 -0
- blaxel/models/token_rate_metrics.py +120 -0
- blaxel/models/token_total_metric.py +106 -0
- blaxel/models/trace_ids_response.py +45 -0
- blaxel/models/update_workspace_service_account_body.py +69 -0
- blaxel/models/update_workspace_service_account_response_200.py +96 -0
- blaxel/models/update_workspace_user_role_body.py +60 -0
- blaxel/models/websocket_channel.py +88 -0
- blaxel/models/workspace.py +148 -0
- blaxel/models/workspace_labels.py +45 -0
- blaxel/models/workspace_user.py +115 -0
- blaxel/py.typed +1 -0
- blaxel/run.py +108 -0
- blaxel/serve/app.py +131 -0
- blaxel/serve/middlewares/__init__.py +10 -0
- blaxel/serve/middlewares/accesslog.py +32 -0
- blaxel/serve/middlewares/processtime.py +28 -0
- blaxel/types.py +46 -0
- blaxel-0.64.0.dist-info/METADATA +96 -0
- blaxel-0.64.0.dist-info/RECORD +261 -0
- blaxel-0.64.0.dist-info/WHEEL +4 -0
- blaxel-0.64.0.dist-info/entry_points.txt +2 -0
- blaxel-0.64.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,160 @@
|
|
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.delete_workspace_service_account_response_200 import (
|
9
|
+
DeleteWorkspaceServiceAccountResponse200,
|
10
|
+
)
|
11
|
+
from ...types import Response
|
12
|
+
|
13
|
+
|
14
|
+
def _get_kwargs(
|
15
|
+
client_id: str,
|
16
|
+
) -> dict[str, Any]:
|
17
|
+
_kwargs: dict[str, Any] = {
|
18
|
+
"method": "delete",
|
19
|
+
"url": f"/service_accounts/{client_id}",
|
20
|
+
}
|
21
|
+
|
22
|
+
return _kwargs
|
23
|
+
|
24
|
+
|
25
|
+
def _parse_response(
|
26
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
27
|
+
) -> Optional[DeleteWorkspaceServiceAccountResponse200]:
|
28
|
+
if response.status_code == 200:
|
29
|
+
response_200 = DeleteWorkspaceServiceAccountResponse200.from_dict(response.json())
|
30
|
+
|
31
|
+
return response_200
|
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(
|
39
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
40
|
+
) -> Response[DeleteWorkspaceServiceAccountResponse200]:
|
41
|
+
return Response(
|
42
|
+
status_code=HTTPStatus(response.status_code),
|
43
|
+
content=response.content,
|
44
|
+
headers=response.headers,
|
45
|
+
parsed=_parse_response(client=client, response=response),
|
46
|
+
)
|
47
|
+
|
48
|
+
|
49
|
+
def sync_detailed(
|
50
|
+
client_id: str,
|
51
|
+
*,
|
52
|
+
client: AuthenticatedClient,
|
53
|
+
) -> Response[DeleteWorkspaceServiceAccountResponse200]:
|
54
|
+
"""Delete workspace service account
|
55
|
+
|
56
|
+
Deletes a service account.
|
57
|
+
|
58
|
+
Args:
|
59
|
+
client_id (str):
|
60
|
+
|
61
|
+
Raises:
|
62
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
63
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
64
|
+
|
65
|
+
Returns:
|
66
|
+
Response[DeleteWorkspaceServiceAccountResponse200]
|
67
|
+
"""
|
68
|
+
|
69
|
+
kwargs = _get_kwargs(
|
70
|
+
client_id=client_id,
|
71
|
+
)
|
72
|
+
|
73
|
+
response = client.get_httpx_client().request(
|
74
|
+
**kwargs,
|
75
|
+
)
|
76
|
+
|
77
|
+
return _build_response(client=client, response=response)
|
78
|
+
|
79
|
+
|
80
|
+
def sync(
|
81
|
+
client_id: str,
|
82
|
+
*,
|
83
|
+
client: AuthenticatedClient,
|
84
|
+
) -> Optional[DeleteWorkspaceServiceAccountResponse200]:
|
85
|
+
"""Delete workspace service account
|
86
|
+
|
87
|
+
Deletes a service account.
|
88
|
+
|
89
|
+
Args:
|
90
|
+
client_id (str):
|
91
|
+
|
92
|
+
Raises:
|
93
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
94
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
95
|
+
|
96
|
+
Returns:
|
97
|
+
DeleteWorkspaceServiceAccountResponse200
|
98
|
+
"""
|
99
|
+
|
100
|
+
return sync_detailed(
|
101
|
+
client_id=client_id,
|
102
|
+
client=client,
|
103
|
+
).parsed
|
104
|
+
|
105
|
+
|
106
|
+
async def asyncio_detailed(
|
107
|
+
client_id: str,
|
108
|
+
*,
|
109
|
+
client: AuthenticatedClient,
|
110
|
+
) -> Response[DeleteWorkspaceServiceAccountResponse200]:
|
111
|
+
"""Delete workspace service account
|
112
|
+
|
113
|
+
Deletes a service account.
|
114
|
+
|
115
|
+
Args:
|
116
|
+
client_id (str):
|
117
|
+
|
118
|
+
Raises:
|
119
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
120
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
121
|
+
|
122
|
+
Returns:
|
123
|
+
Response[DeleteWorkspaceServiceAccountResponse200]
|
124
|
+
"""
|
125
|
+
|
126
|
+
kwargs = _get_kwargs(
|
127
|
+
client_id=client_id,
|
128
|
+
)
|
129
|
+
|
130
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
131
|
+
|
132
|
+
return _build_response(client=client, response=response)
|
133
|
+
|
134
|
+
|
135
|
+
async def asyncio(
|
136
|
+
client_id: str,
|
137
|
+
*,
|
138
|
+
client: AuthenticatedClient,
|
139
|
+
) -> Optional[DeleteWorkspaceServiceAccountResponse200]:
|
140
|
+
"""Delete workspace service account
|
141
|
+
|
142
|
+
Deletes a service account.
|
143
|
+
|
144
|
+
Args:
|
145
|
+
client_id (str):
|
146
|
+
|
147
|
+
Raises:
|
148
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
149
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
150
|
+
|
151
|
+
Returns:
|
152
|
+
DeleteWorkspaceServiceAccountResponse200
|
153
|
+
"""
|
154
|
+
|
155
|
+
return (
|
156
|
+
await asyncio_detailed(
|
157
|
+
client_id=client_id,
|
158
|
+
client=client,
|
159
|
+
)
|
160
|
+
).parsed
|
@@ -0,0 +1,141 @@
|
|
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_workspace_service_accounts_response_200_item import (
|
9
|
+
GetWorkspaceServiceAccountsResponse200Item,
|
10
|
+
)
|
11
|
+
from ...types import Response
|
12
|
+
|
13
|
+
|
14
|
+
def _get_kwargs() -> dict[str, Any]:
|
15
|
+
_kwargs: dict[str, Any] = {
|
16
|
+
"method": "get",
|
17
|
+
"url": "/service_accounts",
|
18
|
+
}
|
19
|
+
|
20
|
+
return _kwargs
|
21
|
+
|
22
|
+
|
23
|
+
def _parse_response(
|
24
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
25
|
+
) -> Optional[list["GetWorkspaceServiceAccountsResponse200Item"]]:
|
26
|
+
if response.status_code == 200:
|
27
|
+
response_200 = []
|
28
|
+
_response_200 = response.json()
|
29
|
+
for response_200_item_data in _response_200:
|
30
|
+
response_200_item = GetWorkspaceServiceAccountsResponse200Item.from_dict(response_200_item_data)
|
31
|
+
|
32
|
+
response_200.append(response_200_item)
|
33
|
+
|
34
|
+
return response_200
|
35
|
+
if client.raise_on_unexpected_status:
|
36
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
37
|
+
else:
|
38
|
+
return None
|
39
|
+
|
40
|
+
|
41
|
+
def _build_response(
|
42
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
43
|
+
) -> Response[list["GetWorkspaceServiceAccountsResponse200Item"]]:
|
44
|
+
return Response(
|
45
|
+
status_code=HTTPStatus(response.status_code),
|
46
|
+
content=response.content,
|
47
|
+
headers=response.headers,
|
48
|
+
parsed=_parse_response(client=client, response=response),
|
49
|
+
)
|
50
|
+
|
51
|
+
|
52
|
+
def sync_detailed(
|
53
|
+
*,
|
54
|
+
client: AuthenticatedClient,
|
55
|
+
) -> Response[list["GetWorkspaceServiceAccountsResponse200Item"]]:
|
56
|
+
"""Get workspace service accounts
|
57
|
+
|
58
|
+
Returns a list of all service accounts in the workspace.
|
59
|
+
|
60
|
+
Raises:
|
61
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
62
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
63
|
+
|
64
|
+
Returns:
|
65
|
+
Response[list['GetWorkspaceServiceAccountsResponse200Item']]
|
66
|
+
"""
|
67
|
+
|
68
|
+
kwargs = _get_kwargs()
|
69
|
+
|
70
|
+
response = client.get_httpx_client().request(
|
71
|
+
**kwargs,
|
72
|
+
)
|
73
|
+
|
74
|
+
return _build_response(client=client, response=response)
|
75
|
+
|
76
|
+
|
77
|
+
def sync(
|
78
|
+
*,
|
79
|
+
client: AuthenticatedClient,
|
80
|
+
) -> Optional[list["GetWorkspaceServiceAccountsResponse200Item"]]:
|
81
|
+
"""Get workspace service accounts
|
82
|
+
|
83
|
+
Returns a list of all service accounts in the workspace.
|
84
|
+
|
85
|
+
Raises:
|
86
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
87
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
88
|
+
|
89
|
+
Returns:
|
90
|
+
list['GetWorkspaceServiceAccountsResponse200Item']
|
91
|
+
"""
|
92
|
+
|
93
|
+
return sync_detailed(
|
94
|
+
client=client,
|
95
|
+
).parsed
|
96
|
+
|
97
|
+
|
98
|
+
async def asyncio_detailed(
|
99
|
+
*,
|
100
|
+
client: AuthenticatedClient,
|
101
|
+
) -> Response[list["GetWorkspaceServiceAccountsResponse200Item"]]:
|
102
|
+
"""Get workspace service accounts
|
103
|
+
|
104
|
+
Returns a list of all service accounts in the workspace.
|
105
|
+
|
106
|
+
Raises:
|
107
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
108
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
109
|
+
|
110
|
+
Returns:
|
111
|
+
Response[list['GetWorkspaceServiceAccountsResponse200Item']]
|
112
|
+
"""
|
113
|
+
|
114
|
+
kwargs = _get_kwargs()
|
115
|
+
|
116
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
117
|
+
|
118
|
+
return _build_response(client=client, response=response)
|
119
|
+
|
120
|
+
|
121
|
+
async def asyncio(
|
122
|
+
*,
|
123
|
+
client: AuthenticatedClient,
|
124
|
+
) -> Optional[list["GetWorkspaceServiceAccountsResponse200Item"]]:
|
125
|
+
"""Get workspace service accounts
|
126
|
+
|
127
|
+
Returns a list of all service accounts in the workspace.
|
128
|
+
|
129
|
+
Raises:
|
130
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
131
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
132
|
+
|
133
|
+
Returns:
|
134
|
+
list['GetWorkspaceServiceAccountsResponse200Item']
|
135
|
+
"""
|
136
|
+
|
137
|
+
return (
|
138
|
+
await asyncio_detailed(
|
139
|
+
client=client,
|
140
|
+
)
|
141
|
+
).parsed
|
@@ -0,0 +1,163 @@
|
|
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.api_key import ApiKey
|
9
|
+
from ...types import Response
|
10
|
+
|
11
|
+
|
12
|
+
def _get_kwargs(
|
13
|
+
client_id: str,
|
14
|
+
) -> dict[str, Any]:
|
15
|
+
_kwargs: dict[str, Any] = {
|
16
|
+
"method": "get",
|
17
|
+
"url": f"/service_accounts/{client_id}/api_keys",
|
18
|
+
}
|
19
|
+
|
20
|
+
return _kwargs
|
21
|
+
|
22
|
+
|
23
|
+
def _parse_response(
|
24
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
25
|
+
) -> Optional[list["ApiKey"]]:
|
26
|
+
if response.status_code == 200:
|
27
|
+
response_200 = []
|
28
|
+
_response_200 = response.json()
|
29
|
+
for response_200_item_data in _response_200:
|
30
|
+
response_200_item = ApiKey.from_dict(response_200_item_data)
|
31
|
+
|
32
|
+
response_200.append(response_200_item)
|
33
|
+
|
34
|
+
return response_200
|
35
|
+
if client.raise_on_unexpected_status:
|
36
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
37
|
+
else:
|
38
|
+
return None
|
39
|
+
|
40
|
+
|
41
|
+
def _build_response(
|
42
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
43
|
+
) -> Response[list["ApiKey"]]:
|
44
|
+
return Response(
|
45
|
+
status_code=HTTPStatus(response.status_code),
|
46
|
+
content=response.content,
|
47
|
+
headers=response.headers,
|
48
|
+
parsed=_parse_response(client=client, response=response),
|
49
|
+
)
|
50
|
+
|
51
|
+
|
52
|
+
def sync_detailed(
|
53
|
+
client_id: str,
|
54
|
+
*,
|
55
|
+
client: AuthenticatedClient,
|
56
|
+
) -> Response[list["ApiKey"]]:
|
57
|
+
"""List API keys for service account
|
58
|
+
|
59
|
+
Returns a list of all API keys for a service account.
|
60
|
+
|
61
|
+
Args:
|
62
|
+
client_id (str):
|
63
|
+
|
64
|
+
Raises:
|
65
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
66
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
67
|
+
|
68
|
+
Returns:
|
69
|
+
Response[list['ApiKey']]
|
70
|
+
"""
|
71
|
+
|
72
|
+
kwargs = _get_kwargs(
|
73
|
+
client_id=client_id,
|
74
|
+
)
|
75
|
+
|
76
|
+
response = client.get_httpx_client().request(
|
77
|
+
**kwargs,
|
78
|
+
)
|
79
|
+
|
80
|
+
return _build_response(client=client, response=response)
|
81
|
+
|
82
|
+
|
83
|
+
def sync(
|
84
|
+
client_id: str,
|
85
|
+
*,
|
86
|
+
client: AuthenticatedClient,
|
87
|
+
) -> Optional[list["ApiKey"]]:
|
88
|
+
"""List API keys for service account
|
89
|
+
|
90
|
+
Returns a list of all API keys for a service account.
|
91
|
+
|
92
|
+
Args:
|
93
|
+
client_id (str):
|
94
|
+
|
95
|
+
Raises:
|
96
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
97
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
98
|
+
|
99
|
+
Returns:
|
100
|
+
list['ApiKey']
|
101
|
+
"""
|
102
|
+
|
103
|
+
return sync_detailed(
|
104
|
+
client_id=client_id,
|
105
|
+
client=client,
|
106
|
+
).parsed
|
107
|
+
|
108
|
+
|
109
|
+
async def asyncio_detailed(
|
110
|
+
client_id: str,
|
111
|
+
*,
|
112
|
+
client: AuthenticatedClient,
|
113
|
+
) -> Response[list["ApiKey"]]:
|
114
|
+
"""List API keys for service account
|
115
|
+
|
116
|
+
Returns a list of all API keys for a service account.
|
117
|
+
|
118
|
+
Args:
|
119
|
+
client_id (str):
|
120
|
+
|
121
|
+
Raises:
|
122
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
123
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
124
|
+
|
125
|
+
Returns:
|
126
|
+
Response[list['ApiKey']]
|
127
|
+
"""
|
128
|
+
|
129
|
+
kwargs = _get_kwargs(
|
130
|
+
client_id=client_id,
|
131
|
+
)
|
132
|
+
|
133
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
134
|
+
|
135
|
+
return _build_response(client=client, response=response)
|
136
|
+
|
137
|
+
|
138
|
+
async def asyncio(
|
139
|
+
client_id: str,
|
140
|
+
*,
|
141
|
+
client: AuthenticatedClient,
|
142
|
+
) -> Optional[list["ApiKey"]]:
|
143
|
+
"""List API keys for service account
|
144
|
+
|
145
|
+
Returns a list of all API keys for a service account.
|
146
|
+
|
147
|
+
Args:
|
148
|
+
client_id (str):
|
149
|
+
|
150
|
+
Raises:
|
151
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
152
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
153
|
+
|
154
|
+
Returns:
|
155
|
+
list['ApiKey']
|
156
|
+
"""
|
157
|
+
|
158
|
+
return (
|
159
|
+
await asyncio_detailed(
|
160
|
+
client_id=client_id,
|
161
|
+
client=client,
|
162
|
+
)
|
163
|
+
).parsed
|
@@ -0,0 +1,183 @@
|
|
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.update_workspace_service_account_body import UpdateWorkspaceServiceAccountBody
|
9
|
+
from ...models.update_workspace_service_account_response_200 import (
|
10
|
+
UpdateWorkspaceServiceAccountResponse200,
|
11
|
+
)
|
12
|
+
from ...types import Response
|
13
|
+
|
14
|
+
|
15
|
+
def _get_kwargs(
|
16
|
+
client_id: str,
|
17
|
+
*,
|
18
|
+
body: UpdateWorkspaceServiceAccountBody,
|
19
|
+
) -> dict[str, Any]:
|
20
|
+
headers: dict[str, Any] = {}
|
21
|
+
|
22
|
+
_kwargs: dict[str, Any] = {
|
23
|
+
"method": "put",
|
24
|
+
"url": f"/service_accounts/{client_id}",
|
25
|
+
}
|
26
|
+
|
27
|
+
_body = body.to_dict()
|
28
|
+
|
29
|
+
_kwargs["json"] = _body
|
30
|
+
headers["Content-Type"] = "application/json"
|
31
|
+
|
32
|
+
_kwargs["headers"] = headers
|
33
|
+
return _kwargs
|
34
|
+
|
35
|
+
|
36
|
+
def _parse_response(
|
37
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
38
|
+
) -> Optional[UpdateWorkspaceServiceAccountResponse200]:
|
39
|
+
if response.status_code == 200:
|
40
|
+
response_200 = UpdateWorkspaceServiceAccountResponse200.from_dict(response.json())
|
41
|
+
|
42
|
+
return response_200
|
43
|
+
if client.raise_on_unexpected_status:
|
44
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
45
|
+
else:
|
46
|
+
return None
|
47
|
+
|
48
|
+
|
49
|
+
def _build_response(
|
50
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
51
|
+
) -> Response[UpdateWorkspaceServiceAccountResponse200]:
|
52
|
+
return Response(
|
53
|
+
status_code=HTTPStatus(response.status_code),
|
54
|
+
content=response.content,
|
55
|
+
headers=response.headers,
|
56
|
+
parsed=_parse_response(client=client, response=response),
|
57
|
+
)
|
58
|
+
|
59
|
+
|
60
|
+
def sync_detailed(
|
61
|
+
client_id: str,
|
62
|
+
*,
|
63
|
+
client: AuthenticatedClient,
|
64
|
+
body: UpdateWorkspaceServiceAccountBody,
|
65
|
+
) -> Response[UpdateWorkspaceServiceAccountResponse200]:
|
66
|
+
"""Update workspace service account
|
67
|
+
|
68
|
+
Updates a service account.
|
69
|
+
|
70
|
+
Args:
|
71
|
+
client_id (str):
|
72
|
+
body (UpdateWorkspaceServiceAccountBody):
|
73
|
+
|
74
|
+
Raises:
|
75
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
76
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
77
|
+
|
78
|
+
Returns:
|
79
|
+
Response[UpdateWorkspaceServiceAccountResponse200]
|
80
|
+
"""
|
81
|
+
|
82
|
+
kwargs = _get_kwargs(
|
83
|
+
client_id=client_id,
|
84
|
+
body=body,
|
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
|
+
client_id: str,
|
96
|
+
*,
|
97
|
+
client: AuthenticatedClient,
|
98
|
+
body: UpdateWorkspaceServiceAccountBody,
|
99
|
+
) -> Optional[UpdateWorkspaceServiceAccountResponse200]:
|
100
|
+
"""Update workspace service account
|
101
|
+
|
102
|
+
Updates a service account.
|
103
|
+
|
104
|
+
Args:
|
105
|
+
client_id (str):
|
106
|
+
body (UpdateWorkspaceServiceAccountBody):
|
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
|
+
UpdateWorkspaceServiceAccountResponse200
|
114
|
+
"""
|
115
|
+
|
116
|
+
return sync_detailed(
|
117
|
+
client_id=client_id,
|
118
|
+
client=client,
|
119
|
+
body=body,
|
120
|
+
).parsed
|
121
|
+
|
122
|
+
|
123
|
+
async def asyncio_detailed(
|
124
|
+
client_id: str,
|
125
|
+
*,
|
126
|
+
client: AuthenticatedClient,
|
127
|
+
body: UpdateWorkspaceServiceAccountBody,
|
128
|
+
) -> Response[UpdateWorkspaceServiceAccountResponse200]:
|
129
|
+
"""Update workspace service account
|
130
|
+
|
131
|
+
Updates a service account.
|
132
|
+
|
133
|
+
Args:
|
134
|
+
client_id (str):
|
135
|
+
body (UpdateWorkspaceServiceAccountBody):
|
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
|
+
Response[UpdateWorkspaceServiceAccountResponse200]
|
143
|
+
"""
|
144
|
+
|
145
|
+
kwargs = _get_kwargs(
|
146
|
+
client_id=client_id,
|
147
|
+
body=body,
|
148
|
+
)
|
149
|
+
|
150
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
151
|
+
|
152
|
+
return _build_response(client=client, response=response)
|
153
|
+
|
154
|
+
|
155
|
+
async def asyncio(
|
156
|
+
client_id: str,
|
157
|
+
*,
|
158
|
+
client: AuthenticatedClient,
|
159
|
+
body: UpdateWorkspaceServiceAccountBody,
|
160
|
+
) -> Optional[UpdateWorkspaceServiceAccountResponse200]:
|
161
|
+
"""Update workspace service account
|
162
|
+
|
163
|
+
Updates a service account.
|
164
|
+
|
165
|
+
Args:
|
166
|
+
client_id (str):
|
167
|
+
body (UpdateWorkspaceServiceAccountBody):
|
168
|
+
|
169
|
+
Raises:
|
170
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
171
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
172
|
+
|
173
|
+
Returns:
|
174
|
+
UpdateWorkspaceServiceAccountResponse200
|
175
|
+
"""
|
176
|
+
|
177
|
+
return (
|
178
|
+
await asyncio_detailed(
|
179
|
+
client_id=client_id,
|
180
|
+
client=client,
|
181
|
+
body=body,
|
182
|
+
)
|
183
|
+
).parsed
|
File without changes
|