daytona_api_client_async 0.109.0a2__py3-none-any.whl → 0.110.1__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.
- daytona_api_client_async/api/sandbox_api.py +33 -16
- {daytona_api_client_async-0.109.0a2.dist-info → daytona_api_client_async-0.110.1.dist-info}/METADATA +1 -1
- {daytona_api_client_async-0.109.0a2.dist-info → daytona_api_client_async-0.110.1.dist-info}/RECORD +6 -6
- {daytona_api_client_async-0.109.0a2.dist-info → daytona_api_client_async-0.110.1.dist-info}/WHEEL +0 -0
- {daytona_api_client_async-0.109.0a2.dist-info → daytona_api_client_async-0.110.1.dist-info}/licenses/LICENSE +0 -0
- {daytona_api_client_async-0.109.0a2.dist-info → daytona_api_client_async-0.110.1.dist-info}/top_level.txt +0 -0
|
@@ -3182,6 +3182,7 @@ class SandboxApi:
|
|
|
3182
3182
|
page: Annotated[Optional[Union[Annotated[float, Field(strict=True, ge=1)], Annotated[int, Field(strict=True, ge=1)]]], Field(description="Page number of the results")] = None,
|
|
3183
3183
|
limit: Annotated[Optional[Union[Annotated[float, Field(le=200, strict=True, ge=1)], Annotated[int, Field(le=200, strict=True, ge=1)]]], Field(description="Number of results per page")] = None,
|
|
3184
3184
|
id: Annotated[Optional[StrictStr], Field(description="Filter by partial ID match")] = None,
|
|
3185
|
+
name: Annotated[Optional[StrictStr], Field(description="Filter by partial name match")] = None,
|
|
3185
3186
|
labels: Annotated[Optional[StrictStr], Field(description="JSON encoded labels to filter by")] = None,
|
|
3186
3187
|
include_errored_deleted: Annotated[Optional[StrictBool], Field(description="Include results with errored state and deleted desired state")] = None,
|
|
3187
3188
|
states: Annotated[Optional[List[StrictStr]], Field(description="List of states to filter by")] = None,
|
|
@@ -3221,6 +3222,8 @@ class SandboxApi:
|
|
|
3221
3222
|
:type limit: float
|
|
3222
3223
|
:param id: Filter by partial ID match
|
|
3223
3224
|
:type id: str
|
|
3225
|
+
:param name: Filter by partial name match
|
|
3226
|
+
:type name: str
|
|
3224
3227
|
:param labels: JSON encoded labels to filter by
|
|
3225
3228
|
:type labels: str
|
|
3226
3229
|
:param include_errored_deleted: Include results with errored state and deleted desired state
|
|
@@ -3278,6 +3281,7 @@ class SandboxApi:
|
|
|
3278
3281
|
page=page,
|
|
3279
3282
|
limit=limit,
|
|
3280
3283
|
id=id,
|
|
3284
|
+
name=name,
|
|
3281
3285
|
labels=labels,
|
|
3282
3286
|
include_errored_deleted=include_errored_deleted,
|
|
3283
3287
|
states=states,
|
|
@@ -3320,6 +3324,7 @@ class SandboxApi:
|
|
|
3320
3324
|
page: Annotated[Optional[Union[Annotated[float, Field(strict=True, ge=1)], Annotated[int, Field(strict=True, ge=1)]]], Field(description="Page number of the results")] = None,
|
|
3321
3325
|
limit: Annotated[Optional[Union[Annotated[float, Field(le=200, strict=True, ge=1)], Annotated[int, Field(le=200, strict=True, ge=1)]]], Field(description="Number of results per page")] = None,
|
|
3322
3326
|
id: Annotated[Optional[StrictStr], Field(description="Filter by partial ID match")] = None,
|
|
3327
|
+
name: Annotated[Optional[StrictStr], Field(description="Filter by partial name match")] = None,
|
|
3323
3328
|
labels: Annotated[Optional[StrictStr], Field(description="JSON encoded labels to filter by")] = None,
|
|
3324
3329
|
include_errored_deleted: Annotated[Optional[StrictBool], Field(description="Include results with errored state and deleted desired state")] = None,
|
|
3325
3330
|
states: Annotated[Optional[List[StrictStr]], Field(description="List of states to filter by")] = None,
|
|
@@ -3359,6 +3364,8 @@ class SandboxApi:
|
|
|
3359
3364
|
:type limit: float
|
|
3360
3365
|
:param id: Filter by partial ID match
|
|
3361
3366
|
:type id: str
|
|
3367
|
+
:param name: Filter by partial name match
|
|
3368
|
+
:type name: str
|
|
3362
3369
|
:param labels: JSON encoded labels to filter by
|
|
3363
3370
|
:type labels: str
|
|
3364
3371
|
:param include_errored_deleted: Include results with errored state and deleted desired state
|
|
@@ -3416,6 +3423,7 @@ class SandboxApi:
|
|
|
3416
3423
|
page=page,
|
|
3417
3424
|
limit=limit,
|
|
3418
3425
|
id=id,
|
|
3426
|
+
name=name,
|
|
3419
3427
|
labels=labels,
|
|
3420
3428
|
include_errored_deleted=include_errored_deleted,
|
|
3421
3429
|
states=states,
|
|
@@ -3458,6 +3466,7 @@ class SandboxApi:
|
|
|
3458
3466
|
page: Annotated[Optional[Union[Annotated[float, Field(strict=True, ge=1)], Annotated[int, Field(strict=True, ge=1)]]], Field(description="Page number of the results")] = None,
|
|
3459
3467
|
limit: Annotated[Optional[Union[Annotated[float, Field(le=200, strict=True, ge=1)], Annotated[int, Field(le=200, strict=True, ge=1)]]], Field(description="Number of results per page")] = None,
|
|
3460
3468
|
id: Annotated[Optional[StrictStr], Field(description="Filter by partial ID match")] = None,
|
|
3469
|
+
name: Annotated[Optional[StrictStr], Field(description="Filter by partial name match")] = None,
|
|
3461
3470
|
labels: Annotated[Optional[StrictStr], Field(description="JSON encoded labels to filter by")] = None,
|
|
3462
3471
|
include_errored_deleted: Annotated[Optional[StrictBool], Field(description="Include results with errored state and deleted desired state")] = None,
|
|
3463
3472
|
states: Annotated[Optional[List[StrictStr]], Field(description="List of states to filter by")] = None,
|
|
@@ -3497,6 +3506,8 @@ class SandboxApi:
|
|
|
3497
3506
|
:type limit: float
|
|
3498
3507
|
:param id: Filter by partial ID match
|
|
3499
3508
|
:type id: str
|
|
3509
|
+
:param name: Filter by partial name match
|
|
3510
|
+
:type name: str
|
|
3500
3511
|
:param labels: JSON encoded labels to filter by
|
|
3501
3512
|
:type labels: str
|
|
3502
3513
|
:param include_errored_deleted: Include results with errored state and deleted desired state
|
|
@@ -3554,6 +3565,7 @@ class SandboxApi:
|
|
|
3554
3565
|
page=page,
|
|
3555
3566
|
limit=limit,
|
|
3556
3567
|
id=id,
|
|
3568
|
+
name=name,
|
|
3557
3569
|
labels=labels,
|
|
3558
3570
|
include_errored_deleted=include_errored_deleted,
|
|
3559
3571
|
states=states,
|
|
@@ -3591,6 +3603,7 @@ class SandboxApi:
|
|
|
3591
3603
|
page,
|
|
3592
3604
|
limit,
|
|
3593
3605
|
id,
|
|
3606
|
+
name,
|
|
3594
3607
|
labels,
|
|
3595
3608
|
include_errored_deleted,
|
|
3596
3609
|
states,
|
|
@@ -3643,6 +3656,10 @@ class SandboxApi:
|
|
|
3643
3656
|
|
|
3644
3657
|
_query_params.append(('id', id))
|
|
3645
3658
|
|
|
3659
|
+
if name is not None:
|
|
3660
|
+
|
|
3661
|
+
_query_params.append(('name', name))
|
|
3662
|
+
|
|
3646
3663
|
if labels is not None:
|
|
3647
3664
|
|
|
3648
3665
|
_query_params.append(('labels', labels))
|
|
@@ -6061,7 +6078,7 @@ class SandboxApi:
|
|
|
6061
6078
|
@validate_call
|
|
6062
6079
|
async def update_sandbox_state(
|
|
6063
6080
|
self,
|
|
6064
|
-
|
|
6081
|
+
sandbox_id: Annotated[StrictStr, Field(description="ID of the sandbox")],
|
|
6065
6082
|
update_sandbox_state_dto: UpdateSandboxStateDto,
|
|
6066
6083
|
x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
|
|
6067
6084
|
_request_timeout: Union[
|
|
@@ -6080,8 +6097,8 @@ class SandboxApi:
|
|
|
6080
6097
|
"""Update sandbox state
|
|
6081
6098
|
|
|
6082
6099
|
|
|
6083
|
-
:param
|
|
6084
|
-
:type
|
|
6100
|
+
:param sandbox_id: ID of the sandbox (required)
|
|
6101
|
+
:type sandbox_id: str
|
|
6085
6102
|
:param update_sandbox_state_dto: (required)
|
|
6086
6103
|
:type update_sandbox_state_dto: UpdateSandboxStateDto
|
|
6087
6104
|
:param x_daytona_organization_id: Use with JWT to specify the organization ID
|
|
@@ -6109,7 +6126,7 @@ class SandboxApi:
|
|
|
6109
6126
|
""" # noqa: E501
|
|
6110
6127
|
|
|
6111
6128
|
_param = self._update_sandbox_state_serialize(
|
|
6112
|
-
|
|
6129
|
+
sandbox_id=sandbox_id,
|
|
6113
6130
|
update_sandbox_state_dto=update_sandbox_state_dto,
|
|
6114
6131
|
x_daytona_organization_id=x_daytona_organization_id,
|
|
6115
6132
|
_request_auth=_request_auth,
|
|
@@ -6135,7 +6152,7 @@ class SandboxApi:
|
|
|
6135
6152
|
@validate_call
|
|
6136
6153
|
async def update_sandbox_state_with_http_info(
|
|
6137
6154
|
self,
|
|
6138
|
-
|
|
6155
|
+
sandbox_id: Annotated[StrictStr, Field(description="ID of the sandbox")],
|
|
6139
6156
|
update_sandbox_state_dto: UpdateSandboxStateDto,
|
|
6140
6157
|
x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
|
|
6141
6158
|
_request_timeout: Union[
|
|
@@ -6154,8 +6171,8 @@ class SandboxApi:
|
|
|
6154
6171
|
"""Update sandbox state
|
|
6155
6172
|
|
|
6156
6173
|
|
|
6157
|
-
:param
|
|
6158
|
-
:type
|
|
6174
|
+
:param sandbox_id: ID of the sandbox (required)
|
|
6175
|
+
:type sandbox_id: str
|
|
6159
6176
|
:param update_sandbox_state_dto: (required)
|
|
6160
6177
|
:type update_sandbox_state_dto: UpdateSandboxStateDto
|
|
6161
6178
|
:param x_daytona_organization_id: Use with JWT to specify the organization ID
|
|
@@ -6183,7 +6200,7 @@ class SandboxApi:
|
|
|
6183
6200
|
""" # noqa: E501
|
|
6184
6201
|
|
|
6185
6202
|
_param = self._update_sandbox_state_serialize(
|
|
6186
|
-
|
|
6203
|
+
sandbox_id=sandbox_id,
|
|
6187
6204
|
update_sandbox_state_dto=update_sandbox_state_dto,
|
|
6188
6205
|
x_daytona_organization_id=x_daytona_organization_id,
|
|
6189
6206
|
_request_auth=_request_auth,
|
|
@@ -6209,7 +6226,7 @@ class SandboxApi:
|
|
|
6209
6226
|
@validate_call
|
|
6210
6227
|
async def update_sandbox_state_without_preload_content(
|
|
6211
6228
|
self,
|
|
6212
|
-
|
|
6229
|
+
sandbox_id: Annotated[StrictStr, Field(description="ID of the sandbox")],
|
|
6213
6230
|
update_sandbox_state_dto: UpdateSandboxStateDto,
|
|
6214
6231
|
x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
|
|
6215
6232
|
_request_timeout: Union[
|
|
@@ -6228,8 +6245,8 @@ class SandboxApi:
|
|
|
6228
6245
|
"""Update sandbox state
|
|
6229
6246
|
|
|
6230
6247
|
|
|
6231
|
-
:param
|
|
6232
|
-
:type
|
|
6248
|
+
:param sandbox_id: ID of the sandbox (required)
|
|
6249
|
+
:type sandbox_id: str
|
|
6233
6250
|
:param update_sandbox_state_dto: (required)
|
|
6234
6251
|
:type update_sandbox_state_dto: UpdateSandboxStateDto
|
|
6235
6252
|
:param x_daytona_organization_id: Use with JWT to specify the organization ID
|
|
@@ -6257,7 +6274,7 @@ class SandboxApi:
|
|
|
6257
6274
|
""" # noqa: E501
|
|
6258
6275
|
|
|
6259
6276
|
_param = self._update_sandbox_state_serialize(
|
|
6260
|
-
|
|
6277
|
+
sandbox_id=sandbox_id,
|
|
6261
6278
|
update_sandbox_state_dto=update_sandbox_state_dto,
|
|
6262
6279
|
x_daytona_organization_id=x_daytona_organization_id,
|
|
6263
6280
|
_request_auth=_request_auth,
|
|
@@ -6278,7 +6295,7 @@ class SandboxApi:
|
|
|
6278
6295
|
|
|
6279
6296
|
def _update_sandbox_state_serialize(
|
|
6280
6297
|
self,
|
|
6281
|
-
|
|
6298
|
+
sandbox_id,
|
|
6282
6299
|
update_sandbox_state_dto,
|
|
6283
6300
|
x_daytona_organization_id,
|
|
6284
6301
|
_request_auth,
|
|
@@ -6302,8 +6319,8 @@ class SandboxApi:
|
|
|
6302
6319
|
_body_params: Optional[bytes] = None
|
|
6303
6320
|
|
|
6304
6321
|
# process the path parameters
|
|
6305
|
-
if
|
|
6306
|
-
_path_params['
|
|
6322
|
+
if sandbox_id is not None:
|
|
6323
|
+
_path_params['sandboxId'] = sandbox_id
|
|
6307
6324
|
# process the query parameters
|
|
6308
6325
|
# process the header parameters
|
|
6309
6326
|
if x_daytona_organization_id is not None:
|
|
@@ -6337,7 +6354,7 @@ class SandboxApi:
|
|
|
6337
6354
|
|
|
6338
6355
|
return self.api_client.param_serialize(
|
|
6339
6356
|
method='PUT',
|
|
6340
|
-
resource_path='/sandbox/{
|
|
6357
|
+
resource_path='/sandbox/{sandboxId}/state',
|
|
6341
6358
|
path_params=_path_params,
|
|
6342
6359
|
query_params=_query_params,
|
|
6343
6360
|
header_params=_header_params,
|
{daytona_api_client_async-0.109.0a2.dist-info → daytona_api_client_async-0.110.1.dist-info}/RECORD
RENAMED
|
@@ -16,7 +16,7 @@ daytona_api_client_async/api/object_storage_api.py,sha256=QoK9uj0nHB-2TWnbDNIj0d
|
|
|
16
16
|
daytona_api_client_async/api/organizations_api.py,sha256=y3BoFTUBFzrEKZNT7XGveCwPD4S9CI6Y9zZlx7fJyGQ,277689
|
|
17
17
|
daytona_api_client_async/api/preview_api.py,sha256=tflnMN3QXSTx-tI1GZf70VY714MQTx1DX2edNFbemb8,31216
|
|
18
18
|
daytona_api_client_async/api/runners_api.py,sha256=DjL55SHmiIG1CkNrhiNGiiW9tBMrkLo1DiqAmNhpDoI,49294
|
|
19
|
-
daytona_api_client_async/api/sandbox_api.py,sha256=
|
|
19
|
+
daytona_api_client_async/api/sandbox_api.py,sha256=gZHpoXce8gW9W8uTAZzrHFOVUejikvfVU0Z5gLZtL7Y,281324
|
|
20
20
|
daytona_api_client_async/api/snapshots_api.py,sha256=VM9BdkKs9EnarrWZFH3zyT2lF9-sXLJWGepeUb_oPXE,106203
|
|
21
21
|
daytona_api_client_async/api/toolbox_api.py,sha256=fOCSs_qjpBeBBqR91-bS_xYMfbsBPwEE8hi4yZN9Z2Y,818704
|
|
22
22
|
daytona_api_client_async/api/users_api.py,sha256=5vpJFiutNo-ygzejbkOz3iPMT4mLjNyvBZdNWTaQSFw,86876
|
|
@@ -195,8 +195,8 @@ daytona_api_client_async/models/work_dir_response.py,sha256=1dndjWYnDSMDeLiY8pxQ
|
|
|
195
195
|
daytona_api_client_async/models/workdir_response.py,sha256=geBhfQDR7LK0uPlmJF6Ple1eQMCzhSb4qK-9UfhqV7k,3047
|
|
196
196
|
daytona_api_client_async/models/workspace.py,sha256=ufPg0dGuxpD-r8xsk1xE6TWe_EHc2KKirZKstnSul68,11477
|
|
197
197
|
daytona_api_client_async/models/workspace_port_preview_url.py,sha256=4PwSkVyEBwmi40NJXJCUJT63b5g5-wpD54ezDZ0QwKM,3426
|
|
198
|
-
daytona_api_client_async-0.
|
|
199
|
-
daytona_api_client_async-0.
|
|
200
|
-
daytona_api_client_async-0.
|
|
201
|
-
daytona_api_client_async-0.
|
|
202
|
-
daytona_api_client_async-0.
|
|
198
|
+
daytona_api_client_async-0.110.1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
|
|
199
|
+
daytona_api_client_async-0.110.1.dist-info/METADATA,sha256=4vPwA95WXUsMFrXMDE9wCv8oWJMLk7WJNdPpn8a0lUY,691
|
|
200
|
+
daytona_api_client_async-0.110.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
201
|
+
daytona_api_client_async-0.110.1.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
|
|
202
|
+
daytona_api_client_async-0.110.1.dist-info/RECORD,,
|
{daytona_api_client_async-0.109.0a2.dist-info → daytona_api_client_async-0.110.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|