daytona_api_client 0.102.0rc1__py3-none-any.whl → 0.103.0rc1__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.

Potentially problematic release.


This version of daytona_api_client might be problematic. Click here for more details.

@@ -116,6 +116,7 @@ from daytona_api_client.models.mouse_scroll_response import MouseScrollResponse
116
116
  from daytona_api_client.models.organization import Organization
117
117
  from daytona_api_client.models.organization_invitation import OrganizationInvitation
118
118
  from daytona_api_client.models.organization_role import OrganizationRole
119
+ from daytona_api_client.models.organization_sandbox_default_limited_network_egress import OrganizationSandboxDefaultLimitedNetworkEgress
119
120
  from daytona_api_client.models.organization_suspension import OrganizationSuspension
120
121
  from daytona_api_client.models.organization_usage_overview import OrganizationUsageOverview
121
122
  from daytona_api_client.models.organization_user import OrganizationUser
@@ -155,10 +156,9 @@ from daytona_api_client.models.snapshot_state import SnapshotState
155
156
  from daytona_api_client.models.ssh_access_dto import SshAccessDto
156
157
  from daytona_api_client.models.ssh_access_validation_dto import SshAccessValidationDto
157
158
  from daytona_api_client.models.storage_access_dto import StorageAccessDto
158
- from daytona_api_client.models.update_assigned_organization_roles import UpdateAssignedOrganizationRoles
159
159
  from daytona_api_client.models.update_docker_registry import UpdateDockerRegistry
160
160
  from daytona_api_client.models.update_organization_invitation import UpdateOrganizationInvitation
161
- from daytona_api_client.models.update_organization_member_role import UpdateOrganizationMemberRole
161
+ from daytona_api_client.models.update_organization_member_access import UpdateOrganizationMemberAccess
162
162
  from daytona_api_client.models.update_organization_quota import UpdateOrganizationQuota
163
163
  from daytona_api_client.models.update_organization_role import UpdateOrganizationRole
164
164
  from daytona_api_client.models.user import User
@@ -26,12 +26,12 @@ from daytona_api_client.models.create_organization_role import CreateOrganizatio
26
26
  from daytona_api_client.models.organization import Organization
27
27
  from daytona_api_client.models.organization_invitation import OrganizationInvitation
28
28
  from daytona_api_client.models.organization_role import OrganizationRole
29
+ from daytona_api_client.models.organization_sandbox_default_limited_network_egress import OrganizationSandboxDefaultLimitedNetworkEgress
29
30
  from daytona_api_client.models.organization_suspension import OrganizationSuspension
30
31
  from daytona_api_client.models.organization_usage_overview import OrganizationUsageOverview
31
32
  from daytona_api_client.models.organization_user import OrganizationUser
32
- from daytona_api_client.models.update_assigned_organization_roles import UpdateAssignedOrganizationRoles
33
33
  from daytona_api_client.models.update_organization_invitation import UpdateOrganizationInvitation
34
- from daytona_api_client.models.update_organization_member_role import UpdateOrganizationMemberRole
34
+ from daytona_api_client.models.update_organization_member_access import UpdateOrganizationMemberAccess
35
35
  from daytona_api_client.models.update_organization_quota import UpdateOrganizationQuota
36
36
  from daytona_api_client.models.update_organization_role import UpdateOrganizationRole
37
37
 
@@ -5527,11 +5527,11 @@ class OrganizationsApi:
5527
5527
 
5528
5528
 
5529
5529
  @validate_call
5530
- def update_assigned_organization_roles(
5530
+ def update_access_for_organization_member(
5531
5531
  self,
5532
5532
  organization_id: Annotated[StrictStr, Field(description="Organization ID")],
5533
5533
  user_id: Annotated[StrictStr, Field(description="User ID")],
5534
- update_assigned_organization_roles: UpdateAssignedOrganizationRoles,
5534
+ update_organization_member_access: UpdateOrganizationMemberAccess,
5535
5535
  _request_timeout: Union[
5536
5536
  None,
5537
5537
  Annotated[StrictFloat, Field(gt=0)],
@@ -5545,15 +5545,15 @@ class OrganizationsApi:
5545
5545
  _headers: Optional[Dict[StrictStr, Any]] = None,
5546
5546
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5547
5547
  ) -> OrganizationUser:
5548
- """Update assigned roles to organization member
5548
+ """Update access for organization member
5549
5549
 
5550
5550
 
5551
5551
  :param organization_id: Organization ID (required)
5552
5552
  :type organization_id: str
5553
5553
  :param user_id: User ID (required)
5554
5554
  :type user_id: str
5555
- :param update_assigned_organization_roles: (required)
5556
- :type update_assigned_organization_roles: UpdateAssignedOrganizationRoles
5555
+ :param update_organization_member_access: (required)
5556
+ :type update_organization_member_access: UpdateOrganizationMemberAccess
5557
5557
  :param _request_timeout: timeout setting for this request. If one
5558
5558
  number provided, it will be total request
5559
5559
  timeout. It can also be a pair (tuple) of
@@ -5576,10 +5576,10 @@ class OrganizationsApi:
5576
5576
  :return: Returns the result object.
5577
5577
  """ # noqa: E501
5578
5578
 
5579
- _param = self._update_assigned_organization_roles_serialize(
5579
+ _param = self._update_access_for_organization_member_serialize(
5580
5580
  organization_id=organization_id,
5581
5581
  user_id=user_id,
5582
- update_assigned_organization_roles=update_assigned_organization_roles,
5582
+ update_organization_member_access=update_organization_member_access,
5583
5583
  _request_auth=_request_auth,
5584
5584
  _content_type=_content_type,
5585
5585
  _headers=_headers,
@@ -5601,11 +5601,11 @@ class OrganizationsApi:
5601
5601
 
5602
5602
 
5603
5603
  @validate_call
5604
- def update_assigned_organization_roles_with_http_info(
5604
+ def update_access_for_organization_member_with_http_info(
5605
5605
  self,
5606
5606
  organization_id: Annotated[StrictStr, Field(description="Organization ID")],
5607
5607
  user_id: Annotated[StrictStr, Field(description="User ID")],
5608
- update_assigned_organization_roles: UpdateAssignedOrganizationRoles,
5608
+ update_organization_member_access: UpdateOrganizationMemberAccess,
5609
5609
  _request_timeout: Union[
5610
5610
  None,
5611
5611
  Annotated[StrictFloat, Field(gt=0)],
@@ -5619,15 +5619,15 @@ class OrganizationsApi:
5619
5619
  _headers: Optional[Dict[StrictStr, Any]] = None,
5620
5620
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5621
5621
  ) -> ApiResponse[OrganizationUser]:
5622
- """Update assigned roles to organization member
5622
+ """Update access for organization member
5623
5623
 
5624
5624
 
5625
5625
  :param organization_id: Organization ID (required)
5626
5626
  :type organization_id: str
5627
5627
  :param user_id: User ID (required)
5628
5628
  :type user_id: str
5629
- :param update_assigned_organization_roles: (required)
5630
- :type update_assigned_organization_roles: UpdateAssignedOrganizationRoles
5629
+ :param update_organization_member_access: (required)
5630
+ :type update_organization_member_access: UpdateOrganizationMemberAccess
5631
5631
  :param _request_timeout: timeout setting for this request. If one
5632
5632
  number provided, it will be total request
5633
5633
  timeout. It can also be a pair (tuple) of
@@ -5650,10 +5650,10 @@ class OrganizationsApi:
5650
5650
  :return: Returns the result object.
5651
5651
  """ # noqa: E501
5652
5652
 
5653
- _param = self._update_assigned_organization_roles_serialize(
5653
+ _param = self._update_access_for_organization_member_serialize(
5654
5654
  organization_id=organization_id,
5655
5655
  user_id=user_id,
5656
- update_assigned_organization_roles=update_assigned_organization_roles,
5656
+ update_organization_member_access=update_organization_member_access,
5657
5657
  _request_auth=_request_auth,
5658
5658
  _content_type=_content_type,
5659
5659
  _headers=_headers,
@@ -5675,11 +5675,11 @@ class OrganizationsApi:
5675
5675
 
5676
5676
 
5677
5677
  @validate_call
5678
- def update_assigned_organization_roles_without_preload_content(
5678
+ def update_access_for_organization_member_without_preload_content(
5679
5679
  self,
5680
5680
  organization_id: Annotated[StrictStr, Field(description="Organization ID")],
5681
5681
  user_id: Annotated[StrictStr, Field(description="User ID")],
5682
- update_assigned_organization_roles: UpdateAssignedOrganizationRoles,
5682
+ update_organization_member_access: UpdateOrganizationMemberAccess,
5683
5683
  _request_timeout: Union[
5684
5684
  None,
5685
5685
  Annotated[StrictFloat, Field(gt=0)],
@@ -5693,15 +5693,15 @@ class OrganizationsApi:
5693
5693
  _headers: Optional[Dict[StrictStr, Any]] = None,
5694
5694
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5695
5695
  ) -> RESTResponseType:
5696
- """Update assigned roles to organization member
5696
+ """Update access for organization member
5697
5697
 
5698
5698
 
5699
5699
  :param organization_id: Organization ID (required)
5700
5700
  :type organization_id: str
5701
5701
  :param user_id: User ID (required)
5702
5702
  :type user_id: str
5703
- :param update_assigned_organization_roles: (required)
5704
- :type update_assigned_organization_roles: UpdateAssignedOrganizationRoles
5703
+ :param update_organization_member_access: (required)
5704
+ :type update_organization_member_access: UpdateOrganizationMemberAccess
5705
5705
  :param _request_timeout: timeout setting for this request. If one
5706
5706
  number provided, it will be total request
5707
5707
  timeout. It can also be a pair (tuple) of
@@ -5724,10 +5724,10 @@ class OrganizationsApi:
5724
5724
  :return: Returns the result object.
5725
5725
  """ # noqa: E501
5726
5726
 
5727
- _param = self._update_assigned_organization_roles_serialize(
5727
+ _param = self._update_access_for_organization_member_serialize(
5728
5728
  organization_id=organization_id,
5729
5729
  user_id=user_id,
5730
- update_assigned_organization_roles=update_assigned_organization_roles,
5730
+ update_organization_member_access=update_organization_member_access,
5731
5731
  _request_auth=_request_auth,
5732
5732
  _content_type=_content_type,
5733
5733
  _headers=_headers,
@@ -5744,11 +5744,11 @@ class OrganizationsApi:
5744
5744
  return response_data.response
5745
5745
 
5746
5746
 
5747
- def _update_assigned_organization_roles_serialize(
5747
+ def _update_access_for_organization_member_serialize(
5748
5748
  self,
5749
5749
  organization_id,
5750
5750
  user_id,
5751
- update_assigned_organization_roles,
5751
+ update_organization_member_access,
5752
5752
  _request_auth,
5753
5753
  _content_type,
5754
5754
  _headers,
@@ -5778,8 +5778,8 @@ class OrganizationsApi:
5778
5778
  # process the header parameters
5779
5779
  # process the form parameters
5780
5780
  # process the body parameter
5781
- if update_assigned_organization_roles is not None:
5782
- _body_params = update_assigned_organization_roles
5781
+ if update_organization_member_access is not None:
5782
+ _body_params = update_organization_member_access
5783
5783
 
5784
5784
 
5785
5785
  # set the HTTP header `Accept`
@@ -5812,7 +5812,7 @@ class OrganizationsApi:
5812
5812
 
5813
5813
  return self.api_client.param_serialize(
5814
5814
  method='POST',
5815
- resource_path='/organizations/{organizationId}/users/{userId}/assigned-roles',
5815
+ resource_path='/organizations/{organizationId}/users/{userId}/access',
5816
5816
  path_params=_path_params,
5817
5817
  query_params=_query_params,
5818
5818
  header_params=_header_params,
@@ -6720,11 +6720,10 @@ class OrganizationsApi:
6720
6720
 
6721
6721
 
6722
6722
  @validate_call
6723
- def update_role_for_organization_member(
6723
+ def update_sandbox_default_limited_network_egress(
6724
6724
  self,
6725
6725
  organization_id: Annotated[StrictStr, Field(description="Organization ID")],
6726
- user_id: Annotated[StrictStr, Field(description="User ID")],
6727
- update_organization_member_role: UpdateOrganizationMemberRole,
6726
+ organization_sandbox_default_limited_network_egress: OrganizationSandboxDefaultLimitedNetworkEgress,
6728
6727
  _request_timeout: Union[
6729
6728
  None,
6730
6729
  Annotated[StrictFloat, Field(gt=0)],
@@ -6737,16 +6736,14 @@ class OrganizationsApi:
6737
6736
  _content_type: Optional[StrictStr] = None,
6738
6737
  _headers: Optional[Dict[StrictStr, Any]] = None,
6739
6738
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6740
- ) -> OrganizationUser:
6741
- """Update role for organization member
6739
+ ) -> None:
6740
+ """Update sandbox default limited network egress
6742
6741
 
6743
6742
 
6744
6743
  :param organization_id: Organization ID (required)
6745
6744
  :type organization_id: str
6746
- :param user_id: User ID (required)
6747
- :type user_id: str
6748
- :param update_organization_member_role: (required)
6749
- :type update_organization_member_role: UpdateOrganizationMemberRole
6745
+ :param organization_sandbox_default_limited_network_egress: (required)
6746
+ :type organization_sandbox_default_limited_network_egress: OrganizationSandboxDefaultLimitedNetworkEgress
6750
6747
  :param _request_timeout: timeout setting for this request. If one
6751
6748
  number provided, it will be total request
6752
6749
  timeout. It can also be a pair (tuple) of
@@ -6769,10 +6766,9 @@ class OrganizationsApi:
6769
6766
  :return: Returns the result object.
6770
6767
  """ # noqa: E501
6771
6768
 
6772
- _param = self._update_role_for_organization_member_serialize(
6769
+ _param = self._update_sandbox_default_limited_network_egress_serialize(
6773
6770
  organization_id=organization_id,
6774
- user_id=user_id,
6775
- update_organization_member_role=update_organization_member_role,
6771
+ organization_sandbox_default_limited_network_egress=organization_sandbox_default_limited_network_egress,
6776
6772
  _request_auth=_request_auth,
6777
6773
  _content_type=_content_type,
6778
6774
  _headers=_headers,
@@ -6780,7 +6776,7 @@ class OrganizationsApi:
6780
6776
  )
6781
6777
 
6782
6778
  _response_types_map: Dict[str, Optional[str]] = {
6783
- '200': "OrganizationUser",
6779
+ '204': None,
6784
6780
  }
6785
6781
  response_data = self.api_client.call_api(
6786
6782
  *_param,
@@ -6794,11 +6790,10 @@ class OrganizationsApi:
6794
6790
 
6795
6791
 
6796
6792
  @validate_call
6797
- def update_role_for_organization_member_with_http_info(
6793
+ def update_sandbox_default_limited_network_egress_with_http_info(
6798
6794
  self,
6799
6795
  organization_id: Annotated[StrictStr, Field(description="Organization ID")],
6800
- user_id: Annotated[StrictStr, Field(description="User ID")],
6801
- update_organization_member_role: UpdateOrganizationMemberRole,
6796
+ organization_sandbox_default_limited_network_egress: OrganizationSandboxDefaultLimitedNetworkEgress,
6802
6797
  _request_timeout: Union[
6803
6798
  None,
6804
6799
  Annotated[StrictFloat, Field(gt=0)],
@@ -6811,16 +6806,14 @@ class OrganizationsApi:
6811
6806
  _content_type: Optional[StrictStr] = None,
6812
6807
  _headers: Optional[Dict[StrictStr, Any]] = None,
6813
6808
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6814
- ) -> ApiResponse[OrganizationUser]:
6815
- """Update role for organization member
6809
+ ) -> ApiResponse[None]:
6810
+ """Update sandbox default limited network egress
6816
6811
 
6817
6812
 
6818
6813
  :param organization_id: Organization ID (required)
6819
6814
  :type organization_id: str
6820
- :param user_id: User ID (required)
6821
- :type user_id: str
6822
- :param update_organization_member_role: (required)
6823
- :type update_organization_member_role: UpdateOrganizationMemberRole
6815
+ :param organization_sandbox_default_limited_network_egress: (required)
6816
+ :type organization_sandbox_default_limited_network_egress: OrganizationSandboxDefaultLimitedNetworkEgress
6824
6817
  :param _request_timeout: timeout setting for this request. If one
6825
6818
  number provided, it will be total request
6826
6819
  timeout. It can also be a pair (tuple) of
@@ -6843,10 +6836,9 @@ class OrganizationsApi:
6843
6836
  :return: Returns the result object.
6844
6837
  """ # noqa: E501
6845
6838
 
6846
- _param = self._update_role_for_organization_member_serialize(
6839
+ _param = self._update_sandbox_default_limited_network_egress_serialize(
6847
6840
  organization_id=organization_id,
6848
- user_id=user_id,
6849
- update_organization_member_role=update_organization_member_role,
6841
+ organization_sandbox_default_limited_network_egress=organization_sandbox_default_limited_network_egress,
6850
6842
  _request_auth=_request_auth,
6851
6843
  _content_type=_content_type,
6852
6844
  _headers=_headers,
@@ -6854,7 +6846,7 @@ class OrganizationsApi:
6854
6846
  )
6855
6847
 
6856
6848
  _response_types_map: Dict[str, Optional[str]] = {
6857
- '200': "OrganizationUser",
6849
+ '204': None,
6858
6850
  }
6859
6851
  response_data = self.api_client.call_api(
6860
6852
  *_param,
@@ -6868,11 +6860,10 @@ class OrganizationsApi:
6868
6860
 
6869
6861
 
6870
6862
  @validate_call
6871
- def update_role_for_organization_member_without_preload_content(
6863
+ def update_sandbox_default_limited_network_egress_without_preload_content(
6872
6864
  self,
6873
6865
  organization_id: Annotated[StrictStr, Field(description="Organization ID")],
6874
- user_id: Annotated[StrictStr, Field(description="User ID")],
6875
- update_organization_member_role: UpdateOrganizationMemberRole,
6866
+ organization_sandbox_default_limited_network_egress: OrganizationSandboxDefaultLimitedNetworkEgress,
6876
6867
  _request_timeout: Union[
6877
6868
  None,
6878
6869
  Annotated[StrictFloat, Field(gt=0)],
@@ -6886,15 +6877,13 @@ class OrganizationsApi:
6886
6877
  _headers: Optional[Dict[StrictStr, Any]] = None,
6887
6878
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6888
6879
  ) -> RESTResponseType:
6889
- """Update role for organization member
6880
+ """Update sandbox default limited network egress
6890
6881
 
6891
6882
 
6892
6883
  :param organization_id: Organization ID (required)
6893
6884
  :type organization_id: str
6894
- :param user_id: User ID (required)
6895
- :type user_id: str
6896
- :param update_organization_member_role: (required)
6897
- :type update_organization_member_role: UpdateOrganizationMemberRole
6885
+ :param organization_sandbox_default_limited_network_egress: (required)
6886
+ :type organization_sandbox_default_limited_network_egress: OrganizationSandboxDefaultLimitedNetworkEgress
6898
6887
  :param _request_timeout: timeout setting for this request. If one
6899
6888
  number provided, it will be total request
6900
6889
  timeout. It can also be a pair (tuple) of
@@ -6917,10 +6906,9 @@ class OrganizationsApi:
6917
6906
  :return: Returns the result object.
6918
6907
  """ # noqa: E501
6919
6908
 
6920
- _param = self._update_role_for_organization_member_serialize(
6909
+ _param = self._update_sandbox_default_limited_network_egress_serialize(
6921
6910
  organization_id=organization_id,
6922
- user_id=user_id,
6923
- update_organization_member_role=update_organization_member_role,
6911
+ organization_sandbox_default_limited_network_egress=organization_sandbox_default_limited_network_egress,
6924
6912
  _request_auth=_request_auth,
6925
6913
  _content_type=_content_type,
6926
6914
  _headers=_headers,
@@ -6928,7 +6916,7 @@ class OrganizationsApi:
6928
6916
  )
6929
6917
 
6930
6918
  _response_types_map: Dict[str, Optional[str]] = {
6931
- '200': "OrganizationUser",
6919
+ '204': None,
6932
6920
  }
6933
6921
  response_data = self.api_client.call_api(
6934
6922
  *_param,
@@ -6937,11 +6925,10 @@ class OrganizationsApi:
6937
6925
  return response_data.response
6938
6926
 
6939
6927
 
6940
- def _update_role_for_organization_member_serialize(
6928
+ def _update_sandbox_default_limited_network_egress_serialize(
6941
6929
  self,
6942
6930
  organization_id,
6943
- user_id,
6944
- update_organization_member_role,
6931
+ organization_sandbox_default_limited_network_egress,
6945
6932
  _request_auth,
6946
6933
  _content_type,
6947
6934
  _headers,
@@ -6965,23 +6952,14 @@ class OrganizationsApi:
6965
6952
  # process the path parameters
6966
6953
  if organization_id is not None:
6967
6954
  _path_params['organizationId'] = organization_id
6968
- if user_id is not None:
6969
- _path_params['userId'] = user_id
6970
6955
  # process the query parameters
6971
6956
  # process the header parameters
6972
6957
  # process the form parameters
6973
6958
  # process the body parameter
6974
- if update_organization_member_role is not None:
6975
- _body_params = update_organization_member_role
6959
+ if organization_sandbox_default_limited_network_egress is not None:
6960
+ _body_params = organization_sandbox_default_limited_network_egress
6976
6961
 
6977
6962
 
6978
- # set the HTTP header `Accept`
6979
- if 'Accept' not in _header_params:
6980
- _header_params['Accept'] = self.api_client.select_header_accept(
6981
- [
6982
- 'application/json'
6983
- ]
6984
- )
6985
6963
 
6986
6964
  # set the HTTP header `Content-Type`
6987
6965
  if _content_type:
@@ -7005,7 +6983,7 @@ class OrganizationsApi:
7005
6983
 
7006
6984
  return self.api_client.param_serialize(
7007
6985
  method='POST',
7008
- resource_path='/organizations/{organizationId}/users/{userId}/role',
6986
+ resource_path='/organizations/{organizationId}/sandbox-default-limited-network-egress',
7009
6987
  path_params=_path_params,
7010
6988
  query_params=_query_params,
7011
6989
  header_params=_header_params,
@@ -1005,6 +1005,7 @@ class ToolboxApi:
1005
1005
  sandbox_id: StrictStr,
1006
1006
  path: StrictStr,
1007
1007
  x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
1008
+ recursive: Optional[StrictBool] = None,
1008
1009
  _request_timeout: Union[
1009
1010
  None,
1010
1011
  Annotated[StrictFloat, Field(gt=0)],
@@ -1028,6 +1029,8 @@ class ToolboxApi:
1028
1029
  :type path: str
1029
1030
  :param x_daytona_organization_id: Use with JWT to specify the organization ID
1030
1031
  :type x_daytona_organization_id: str
1032
+ :param recursive:
1033
+ :type recursive: bool
1031
1034
  :param _request_timeout: timeout setting for this request. If one
1032
1035
  number provided, it will be total request
1033
1036
  timeout. It can also be a pair (tuple) of
@@ -1054,6 +1057,7 @@ class ToolboxApi:
1054
1057
  sandbox_id=sandbox_id,
1055
1058
  path=path,
1056
1059
  x_daytona_organization_id=x_daytona_organization_id,
1060
+ recursive=recursive,
1057
1061
  _request_auth=_request_auth,
1058
1062
  _content_type=_content_type,
1059
1063
  _headers=_headers,
@@ -1080,6 +1084,7 @@ class ToolboxApi:
1080
1084
  sandbox_id: StrictStr,
1081
1085
  path: StrictStr,
1082
1086
  x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
1087
+ recursive: Optional[StrictBool] = None,
1083
1088
  _request_timeout: Union[
1084
1089
  None,
1085
1090
  Annotated[StrictFloat, Field(gt=0)],
@@ -1103,6 +1108,8 @@ class ToolboxApi:
1103
1108
  :type path: str
1104
1109
  :param x_daytona_organization_id: Use with JWT to specify the organization ID
1105
1110
  :type x_daytona_organization_id: str
1111
+ :param recursive:
1112
+ :type recursive: bool
1106
1113
  :param _request_timeout: timeout setting for this request. If one
1107
1114
  number provided, it will be total request
1108
1115
  timeout. It can also be a pair (tuple) of
@@ -1129,6 +1136,7 @@ class ToolboxApi:
1129
1136
  sandbox_id=sandbox_id,
1130
1137
  path=path,
1131
1138
  x_daytona_organization_id=x_daytona_organization_id,
1139
+ recursive=recursive,
1132
1140
  _request_auth=_request_auth,
1133
1141
  _content_type=_content_type,
1134
1142
  _headers=_headers,
@@ -1155,6 +1163,7 @@ class ToolboxApi:
1155
1163
  sandbox_id: StrictStr,
1156
1164
  path: StrictStr,
1157
1165
  x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
1166
+ recursive: Optional[StrictBool] = None,
1158
1167
  _request_timeout: Union[
1159
1168
  None,
1160
1169
  Annotated[StrictFloat, Field(gt=0)],
@@ -1178,6 +1187,8 @@ class ToolboxApi:
1178
1187
  :type path: str
1179
1188
  :param x_daytona_organization_id: Use with JWT to specify the organization ID
1180
1189
  :type x_daytona_organization_id: str
1190
+ :param recursive:
1191
+ :type recursive: bool
1181
1192
  :param _request_timeout: timeout setting for this request. If one
1182
1193
  number provided, it will be total request
1183
1194
  timeout. It can also be a pair (tuple) of
@@ -1204,6 +1215,7 @@ class ToolboxApi:
1204
1215
  sandbox_id=sandbox_id,
1205
1216
  path=path,
1206
1217
  x_daytona_organization_id=x_daytona_organization_id,
1218
+ recursive=recursive,
1207
1219
  _request_auth=_request_auth,
1208
1220
  _content_type=_content_type,
1209
1221
  _headers=_headers,
@@ -1225,6 +1237,7 @@ class ToolboxApi:
1225
1237
  sandbox_id,
1226
1238
  path,
1227
1239
  x_daytona_organization_id,
1240
+ recursive,
1228
1241
  _request_auth,
1229
1242
  _content_type,
1230
1243
  _headers,
@@ -1249,6 +1262,10 @@ class ToolboxApi:
1249
1262
  if sandbox_id is not None:
1250
1263
  _path_params['sandboxId'] = sandbox_id
1251
1264
  # process the query parameters
1265
+ if recursive is not None:
1266
+
1267
+ _query_params.append(('recursive', recursive))
1268
+
1252
1269
  if path is not None:
1253
1270
 
1254
1271
  _query_params.append(('path', path))
@@ -85,6 +85,7 @@ from daytona_api_client.models.mouse_scroll_response import MouseScrollResponse
85
85
  from daytona_api_client.models.organization import Organization
86
86
  from daytona_api_client.models.organization_invitation import OrganizationInvitation
87
87
  from daytona_api_client.models.organization_role import OrganizationRole
88
+ from daytona_api_client.models.organization_sandbox_default_limited_network_egress import OrganizationSandboxDefaultLimitedNetworkEgress
88
89
  from daytona_api_client.models.organization_suspension import OrganizationSuspension
89
90
  from daytona_api_client.models.organization_usage_overview import OrganizationUsageOverview
90
91
  from daytona_api_client.models.organization_user import OrganizationUser
@@ -124,10 +125,9 @@ from daytona_api_client.models.snapshot_state import SnapshotState
124
125
  from daytona_api_client.models.ssh_access_dto import SshAccessDto
125
126
  from daytona_api_client.models.ssh_access_validation_dto import SshAccessValidationDto
126
127
  from daytona_api_client.models.storage_access_dto import StorageAccessDto
127
- from daytona_api_client.models.update_assigned_organization_roles import UpdateAssignedOrganizationRoles
128
128
  from daytona_api_client.models.update_docker_registry import UpdateDockerRegistry
129
129
  from daytona_api_client.models.update_organization_invitation import UpdateOrganizationInvitation
130
- from daytona_api_client.models.update_organization_member_role import UpdateOrganizationMemberRole
130
+ from daytona_api_client.models.update_organization_member_access import UpdateOrganizationMemberAccess
131
131
  from daytona_api_client.models.update_organization_quota import UpdateOrganizationQuota
132
132
  from daytona_api_client.models.update_organization_role import UpdateOrganizationRole
133
133
  from daytona_api_client.models.user import User
@@ -39,8 +39,8 @@ class CreateAuditLog(BaseModel):
39
39
  @field_validator('action')
40
40
  def action_validate_enum(cls, value):
41
41
  """Validates the enum"""
42
- if value not in set(['create', 'read', 'update', 'delete', 'login', 'set_default', 'update_role', 'update_assigned_roles', 'update_quota', 'suspend', 'unsuspend', 'accept', 'decline', 'link_account', 'unlink_account', 'leave_organization', 'regenerate_key_pair', 'update_scheduling', 'start', 'stop', 'replace_labels', 'create_backup', 'update_public_status', 'set_auto_stop_interval', 'set_auto_archive_interval', 'set_auto_delete_interval', 'archive', 'get_port_preview_url', 'set_general_status', 'activate', 'deactivate', 'update_network_settings', 'get_webhook_app_portal_access', 'send_webhook_message', 'initialize_webhooks', 'toolbox_delete_file', 'toolbox_download_file', 'toolbox_create_folder', 'toolbox_move_file', 'toolbox_set_file_permissions', 'toolbox_replace_in_files', 'toolbox_upload_file', 'toolbox_bulk_upload_files', 'toolbox_git_add_files', 'toolbox_git_create_branch', 'toolbox_git_delete_branch', 'toolbox_git_clone_repository', 'toolbox_git_commit_changes', 'toolbox_git_pull_changes', 'toolbox_git_push_changes', 'toolbox_git_checkout_branch', 'toolbox_execute_command', 'toolbox_create_session', 'toolbox_session_execute_command', 'toolbox_delete_session', 'toolbox_computer_use_start', 'toolbox_computer_use_stop', 'toolbox_computer_use_restart_process']):
43
- raise ValueError("must be one of enum values ('create', 'read', 'update', 'delete', 'login', 'set_default', 'update_role', 'update_assigned_roles', 'update_quota', 'suspend', 'unsuspend', 'accept', 'decline', 'link_account', 'unlink_account', 'leave_organization', 'regenerate_key_pair', 'update_scheduling', 'start', 'stop', 'replace_labels', 'create_backup', 'update_public_status', 'set_auto_stop_interval', 'set_auto_archive_interval', 'set_auto_delete_interval', 'archive', 'get_port_preview_url', 'set_general_status', 'activate', 'deactivate', 'update_network_settings', 'get_webhook_app_portal_access', 'send_webhook_message', 'initialize_webhooks', 'toolbox_delete_file', 'toolbox_download_file', 'toolbox_create_folder', 'toolbox_move_file', 'toolbox_set_file_permissions', 'toolbox_replace_in_files', 'toolbox_upload_file', 'toolbox_bulk_upload_files', 'toolbox_git_add_files', 'toolbox_git_create_branch', 'toolbox_git_delete_branch', 'toolbox_git_clone_repository', 'toolbox_git_commit_changes', 'toolbox_git_pull_changes', 'toolbox_git_push_changes', 'toolbox_git_checkout_branch', 'toolbox_execute_command', 'toolbox_create_session', 'toolbox_session_execute_command', 'toolbox_delete_session', 'toolbox_computer_use_start', 'toolbox_computer_use_stop', 'toolbox_computer_use_restart_process')")
42
+ if value not in set(['create', 'read', 'update', 'delete', 'login', 'set_default', 'update_access', 'update_quota', 'suspend', 'unsuspend', 'accept', 'decline', 'link_account', 'unlink_account', 'leave_organization', 'regenerate_key_pair', 'update_scheduling', 'start', 'stop', 'replace_labels', 'create_backup', 'update_public_status', 'set_auto_stop_interval', 'set_auto_archive_interval', 'set_auto_delete_interval', 'archive', 'get_port_preview_url', 'set_general_status', 'activate', 'deactivate', 'update_network_settings', 'get_webhook_app_portal_access', 'send_webhook_message', 'initialize_webhooks', 'update_sandbox_default_limited_network_egress', 'toolbox_delete_file', 'toolbox_download_file', 'toolbox_create_folder', 'toolbox_move_file', 'toolbox_set_file_permissions', 'toolbox_replace_in_files', 'toolbox_upload_file', 'toolbox_bulk_upload_files', 'toolbox_git_add_files', 'toolbox_git_create_branch', 'toolbox_git_delete_branch', 'toolbox_git_clone_repository', 'toolbox_git_commit_changes', 'toolbox_git_pull_changes', 'toolbox_git_push_changes', 'toolbox_git_checkout_branch', 'toolbox_execute_command', 'toolbox_create_session', 'toolbox_session_execute_command', 'toolbox_delete_session', 'toolbox_computer_use_start', 'toolbox_computer_use_stop', 'toolbox_computer_use_restart_process']):
43
+ raise ValueError("must be one of enum values ('create', 'read', 'update', 'delete', 'login', 'set_default', 'update_access', 'update_quota', 'suspend', 'unsuspend', 'accept', 'decline', 'link_account', 'unlink_account', 'leave_organization', 'regenerate_key_pair', 'update_scheduling', 'start', 'stop', 'replace_labels', 'create_backup', 'update_public_status', 'set_auto_stop_interval', 'set_auto_archive_interval', 'set_auto_delete_interval', 'archive', 'get_port_preview_url', 'set_general_status', 'activate', 'deactivate', 'update_network_settings', 'get_webhook_app_portal_access', 'send_webhook_message', 'initialize_webhooks', 'update_sandbox_default_limited_network_egress', 'toolbox_delete_file', 'toolbox_download_file', 'toolbox_create_folder', 'toolbox_move_file', 'toolbox_set_file_permissions', 'toolbox_replace_in_files', 'toolbox_upload_file', 'toolbox_bulk_upload_files', 'toolbox_git_add_files', 'toolbox_git_create_branch', 'toolbox_git_delete_branch', 'toolbox_git_clone_repository', 'toolbox_git_commit_changes', 'toolbox_git_pull_changes', 'toolbox_git_push_changes', 'toolbox_git_checkout_branch', 'toolbox_execute_command', 'toolbox_create_session', 'toolbox_session_execute_command', 'toolbox_delete_session', 'toolbox_computer_use_start', 'toolbox_computer_use_stop', 'toolbox_computer_use_restart_process')")
44
44
  return value
45
45
 
46
46
  @field_validator('target_type')
@@ -45,8 +45,9 @@ class Organization(BaseModel):
45
45
  max_cpu_per_sandbox: Union[StrictFloat, StrictInt] = Field(description="Max CPU per sandbox", alias="maxCpuPerSandbox")
46
46
  max_memory_per_sandbox: Union[StrictFloat, StrictInt] = Field(description="Max memory per sandbox", alias="maxMemoryPerSandbox")
47
47
  max_disk_per_sandbox: Union[StrictFloat, StrictInt] = Field(description="Max disk per sandbox", alias="maxDiskPerSandbox")
48
+ sandbox_limited_network_egress: StrictBool = Field(description="Sandbox default network block all", alias="sandboxLimitedNetworkEgress")
48
49
  additional_properties: Dict[str, Any] = {}
49
- __properties: ClassVar[List[str]] = ["id", "name", "createdBy", "personal", "createdAt", "updatedAt", "suspended", "suspendedAt", "suspensionReason", "suspendedUntil", "suspensionCleanupGracePeriodHours", "totalCpuQuota", "totalMemoryQuota", "totalDiskQuota", "maxCpuPerSandbox", "maxMemoryPerSandbox", "maxDiskPerSandbox"]
50
+ __properties: ClassVar[List[str]] = ["id", "name", "createdBy", "personal", "createdAt", "updatedAt", "suspended", "suspendedAt", "suspensionReason", "suspendedUntil", "suspensionCleanupGracePeriodHours", "totalCpuQuota", "totalMemoryQuota", "totalDiskQuota", "maxCpuPerSandbox", "maxMemoryPerSandbox", "maxDiskPerSandbox", "sandboxLimitedNetworkEgress"]
50
51
 
51
52
  model_config = ConfigDict(
52
53
  populate_by_name=True,
@@ -122,7 +123,8 @@ class Organization(BaseModel):
122
123
  "totalDiskQuota": obj.get("totalDiskQuota"),
123
124
  "maxCpuPerSandbox": obj.get("maxCpuPerSandbox"),
124
125
  "maxMemoryPerSandbox": obj.get("maxMemoryPerSandbox"),
125
- "maxDiskPerSandbox": obj.get("maxDiskPerSandbox")
126
+ "maxDiskPerSandbox": obj.get("maxDiskPerSandbox"),
127
+ "sandboxLimitedNetworkEgress": obj.get("sandboxLimitedNetworkEgress")
126
128
  })
127
129
  # store additional fields in additional_properties
128
130
  for _key in obj.keys():
@@ -0,0 +1,101 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Daytona
5
+
6
+ Daytona AI platform API Docs
7
+
8
+ The version of the OpenAPI document: 1.0
9
+ Contact: support@daytona.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool
22
+ from typing import Any, ClassVar, Dict, List
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class OrganizationSandboxDefaultLimitedNetworkEgress(BaseModel):
27
+ """
28
+ OrganizationSandboxDefaultLimitedNetworkEgress
29
+ """ # noqa: E501
30
+ sandbox_default_limited_network_egress: StrictBool = Field(description="Sandbox default limited network egress", alias="sandboxDefaultLimitedNetworkEgress")
31
+ additional_properties: Dict[str, Any] = {}
32
+ __properties: ClassVar[List[str]] = ["sandboxDefaultLimitedNetworkEgress"]
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True,
36
+ validate_assignment=True,
37
+ protected_namespaces=(),
38
+ )
39
+
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.model_dump(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of OrganizationSandboxDefaultLimitedNetworkEgress from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ * Fields in `self.additional_properties` are added to the output dict.
65
+ """
66
+ excluded_fields: Set[str] = set([
67
+ "additional_properties",
68
+ ])
69
+
70
+ _dict = self.model_dump(
71
+ by_alias=True,
72
+ exclude=excluded_fields,
73
+ exclude_none=True,
74
+ )
75
+ # puts key-value pairs in additional_properties in the top level
76
+ if self.additional_properties is not None:
77
+ for _key, _value in self.additional_properties.items():
78
+ _dict[_key] = _value
79
+
80
+ return _dict
81
+
82
+ @classmethod
83
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
84
+ """Create an instance of OrganizationSandboxDefaultLimitedNetworkEgress from a dict"""
85
+ if obj is None:
86
+ return None
87
+
88
+ if not isinstance(obj, dict):
89
+ return cls.model_validate(obj)
90
+
91
+ _obj = cls.model_validate({
92
+ "sandboxDefaultLimitedNetworkEgress": obj.get("sandboxDefaultLimitedNetworkEgress")
93
+ })
94
+ # store additional fields in additional_properties
95
+ for _key in obj.keys():
96
+ if _key not in cls.__properties:
97
+ _obj.additional_properties[_key] = obj.get(_key)
98
+
99
+ return _obj
100
+
101
+
@@ -0,0 +1,101 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Daytona
5
+
6
+ Daytona AI platform API Docs
7
+
8
+ The version of the OpenAPI document: 1.0
9
+ Contact: support@daytona.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool
22
+ from typing import Any, ClassVar, Dict, List
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class OrganizationSandboxDefaultNetworkBlockAll(BaseModel):
27
+ """
28
+ OrganizationSandboxDefaultNetworkBlockAll
29
+ """ # noqa: E501
30
+ sandbox_default_network_block_all: StrictBool = Field(description="Sandbox default network block all", alias="sandboxDefaultNetworkBlockAll")
31
+ additional_properties: Dict[str, Any] = {}
32
+ __properties: ClassVar[List[str]] = ["sandboxDefaultNetworkBlockAll"]
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True,
36
+ validate_assignment=True,
37
+ protected_namespaces=(),
38
+ )
39
+
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.model_dump(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of OrganizationSandboxDefaultNetworkBlockAll from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ * Fields in `self.additional_properties` are added to the output dict.
65
+ """
66
+ excluded_fields: Set[str] = set([
67
+ "additional_properties",
68
+ ])
69
+
70
+ _dict = self.model_dump(
71
+ by_alias=True,
72
+ exclude=excluded_fields,
73
+ exclude_none=True,
74
+ )
75
+ # puts key-value pairs in additional_properties in the top level
76
+ if self.additional_properties is not None:
77
+ for _key, _value in self.additional_properties.items():
78
+ _dict[_key] = _value
79
+
80
+ return _dict
81
+
82
+ @classmethod
83
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
84
+ """Create an instance of OrganizationSandboxDefaultNetworkBlockAll from a dict"""
85
+ if obj is None:
86
+ return None
87
+
88
+ if not isinstance(obj, dict):
89
+ return cls.model_validate(obj)
90
+
91
+ _obj = cls.model_validate({
92
+ "sandboxDefaultNetworkBlockAll": obj.get("sandboxDefaultNetworkBlockAll")
93
+ })
94
+ # store additional fields in additional_properties
95
+ for _key in obj.keys():
96
+ if _key not in cls.__properties:
97
+ _obj.additional_properties[_key] = obj.get(_key)
98
+
99
+ return _obj
100
+
101
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: daytona_api_client
3
- Version: 0.102.0rc1
3
+ Version: 0.103.0rc1
4
4
  Summary: Daytona
5
5
  Home-page:
6
6
  Author: Daytona Platforms Inc.
@@ -1,4 +1,4 @@
1
- daytona_api_client/__init__.py,sha256=Z_CzxV9a4oC0lKb4_Wzb3aEvceGXAPl4Zh6tulSqHTk,11170
1
+ daytona_api_client/__init__.py,sha256=ZQqYvkZ1gEatH0m9_Ar05jG90hCtcJIVXBc472Oflm4,11206
2
2
  daytona_api_client/api_client.py,sha256=9EKcRsveS2okE5kTbp212LVTY6LJATDZEqA8Rj77vXY,27455
3
3
  daytona_api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
4
  daytona_api_client/configuration.py,sha256=Dz7AXjEZ4BCCCUoGQZLfXUTtuH1PUuo3KrlwLO5Dlsk,18241
@@ -12,17 +12,17 @@ daytona_api_client/api/default_api.py,sha256=4-VA8V8k3HRRMrs94ANAwkyDKVAZWmNlm2g
12
12
  daytona_api_client/api/docker_registry_api.py,sha256=ids7YUbqX4s2uwv7ROhqFqNzHzdYa7nK9wOPQ5rgB8U,78838
13
13
  daytona_api_client/api/health_api.py,sha256=alnAhh9vQkpx2OmVre6dHmHTlcFldBfqsogNoUPzFsc,10533
14
14
  daytona_api_client/api/object_storage_api.py,sha256=wvOdTUjvlChxzwwzA-49iwjl46F0uFt06Axfcb_BX4Q,11605
15
- daytona_api_client/api/organizations_api.py,sha256=ImQo7nBxtzgIiRXMBdyVxrjC-u8dPLKDa3BLqirGn0Y,276660
15
+ daytona_api_client/api/organizations_api.py,sha256=ve8cb9Oa6fAeKgcysbl4MVZ6I6_0pI51vYs_3g9Yn4g,276339
16
16
  daytona_api_client/api/preview_api.py,sha256=_RrF6vmSegN0twpljDooLykhh6MbUVvkFHKOOC7IHJg,31308
17
17
  daytona_api_client/api/runners_api.py,sha256=kl74Mg19G71Kcj9dNK9xeJCaZ2upk4z-DS7Ul70n-Ww,49018
18
18
  daytona_api_client/api/sandbox_api.py,sha256=yr4s9iuEYpu2mspxJC4WfkVJMpAlEAa1NEI38IwW6R4,210810
19
19
  daytona_api_client/api/snapshots_api.py,sha256=rt0h_XOyGay-JEaqw69-JqiJEq0GbG1U-MKJtg3Ez0c,103174
20
- daytona_api_client/api/toolbox_api.py,sha256=Ib_CPZnrmzG3isQ1W8KjGFwjL4er7ydyBUzhcRnW0lM,720355
20
+ daytona_api_client/api/toolbox_api.py,sha256=V-3ZUx_wdIe1z9GyWS_8z41SnL7keRGGXaysUWw34Qk,720904
21
21
  daytona_api_client/api/users_api.py,sha256=KR4cw2mfRp06QV2b0UXXQ1Jcx59TyuS0c7yGRr2Sodk,86402
22
22
  daytona_api_client/api/volumes_api.py,sha256=N9kxZzhfaZxC_YQ-Vi1QksoTIzqp_dFADywgQup1oSk,56613
23
23
  daytona_api_client/api/webhooks_api.py,sha256=epxKIYqZfebDapzSvqUVlJct1KfVr_T3ZnAc9YyiZX8,69516
24
24
  daytona_api_client/api/workspace_api.py,sha256=mjn4jlTtMbKfuqxcr9goo-01RJX-hFjVLT1rF8K5uKI,169328
25
- daytona_api_client/models/__init__.py,sha256=aZVCM5puP19O7aIUbnNFBYyTVFyLPurQNt5m-V76_Vk,9675
25
+ daytona_api_client/models/__init__.py,sha256=of6-DRHX_XDceMp6vmwND-DZTgnhPzej3en4PimK6qk,9711
26
26
  daytona_api_client/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
27
27
  daytona_api_client/models/api_key_list.py,sha256=Q0NYG_KlqZgscz7WpkhTns6z1hYUaZH8yut8X40mQ1A,5166
28
28
  daytona_api_client/models/api_key_response.py,sha256=XWqJdKTMp1w8uoUpmeKn0tKeXeImTJElnTvLunZGX5Y,4611
@@ -37,7 +37,7 @@ daytona_api_client/models/computer_use_start_response.py,sha256=9VYe5UMBU-0EpGaw
37
37
  daytona_api_client/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
38
38
  daytona_api_client/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
39
39
  daytona_api_client/models/create_api_key.py,sha256=GFv3d-rA2Mbr9UhP-0O0DKm-gvln_JSGFJjMyoSAc8A,4351
40
- daytona_api_client/models/create_audit_log.py,sha256=r2x9_bFGSlBs7_kA6KGSUGlA5zzUTqw6UVe-gMDBtrU,7077
40
+ daytona_api_client/models/create_audit_log.py,sha256=Hkt8o4LtfbcckOZ6Nico-b_hkOvCMFTKJAZMwC1RP3M,7129
41
41
  daytona_api_client/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
42
42
  daytona_api_client/models/create_docker_registry.py,sha256=dyWgwtTu6RcbGgXyosFbwtvPJ55FjuK0duof-jK9o7Q,4337
43
43
  daytona_api_client/models/create_linked_account.py,sha256=ar_cK_7Ep9iQ6zKeYDEMhQ5m3jc5EuomXj9SpdtWtSE,3289
@@ -94,9 +94,11 @@ daytona_api_client/models/mouse_move_response.py,sha256=8dNZRVGwou0z5Hnm8qgcpH-M
94
94
  daytona_api_client/models/mouse_position.py,sha256=7SihmxntHoebKBqFus3FCThvOAc95zYtnDVsKOY29Cs,3262
95
95
  daytona_api_client/models/mouse_scroll_request.py,sha256=k8gy6A4zgfA-s1_pcJ6Ju53E-WpfU68uiT370IoxiK0,3653
96
96
  daytona_api_client/models/mouse_scroll_response.py,sha256=8jjnRrSdfynLVoJY5YpG4nKnum0FpV6JoWMsLHuQ5-w,3134
97
- daytona_api_client/models/organization.py,sha256=C9r47QH32-YeOmoE3EgtnXpiUIloq6z684LJz9md6Rk,5969
97
+ daytona_api_client/models/organization.py,sha256=cO54dUvJOMxwhKAiNHBHnDJO0Xuu8YPzTI1uOEcdvf8,6224
98
98
  daytona_api_client/models/organization_invitation.py,sha256=LXPDanRJHU6bfXD-wanIY2Ise7VakZoRLgqhYrOu_Vk,5722
99
99
  daytona_api_client/models/organization_role.py,sha256=RXGyGoi6XQI94zMzYU0h7UzI6Dm245t4hwNkKV9TCiE,4571
100
+ daytona_api_client/models/organization_sandbox_default_limited_network_egress.py,sha256=ld2A6ECqHt-YkpUI2r1JrCfljjb-vmS6ESqrCQ3d6Tg,3387
101
+ daytona_api_client/models/organization_sandbox_default_network_block_all.py,sha256=RWdyeOiaFMess1gVzQyJT7hRDE8vtj2YzR1_ptxCsw8,3337
100
102
  daytona_api_client/models/organization_suspension.py,sha256=Pd6oBCKzlvI7xAfjDamyte2eHJKOZBFgG3GXMUVOe2A,3586
101
103
  daytona_api_client/models/organization_usage_overview.py,sha256=49A5lhlQf30c2i5YdEZ17VCnFp_35zhVHBC76Eju_R0,4736
102
104
  daytona_api_client/models/organization_user.py,sha256=t4rkA-cpCRLgLqDMplg1yv2JYUu7jrRBLPL1xkcjaJI,4889
@@ -175,8 +177,8 @@ daytona_api_client/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcE
175
177
  daytona_api_client/models/work_dir_response.py,sha256=1dndjWYnDSMDeLiY8pxQDX1viESoAGF_fegSiMx3i40,3047
176
178
  daytona_api_client/models/workdir_response.py,sha256=geBhfQDR7LK0uPlmJF6Ple1eQMCzhSb4qK-9UfhqV7k,3047
177
179
  daytona_api_client/models/workspace.py,sha256=uwAStXOLrVJzbxdTfPZokrcMr4Dp4ghgH8V5fy5r0gY,11488
178
- daytona_api_client-0.102.0rc1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
179
- daytona_api_client-0.102.0rc1.dist-info/METADATA,sha256=KA-b5lxaY1jUVL14nf6ax3SR7n7mm5DvfLUt-yTebOs,622
180
- daytona_api_client-0.102.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
181
- daytona_api_client-0.102.0rc1.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
182
- daytona_api_client-0.102.0rc1.dist-info/RECORD,,
180
+ daytona_api_client-0.103.0rc1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
181
+ daytona_api_client-0.103.0rc1.dist-info/METADATA,sha256=i_Lt3kEwNPcg-muHQNaDq3_TUjI6y8Q870Xyxam6n7A,622
182
+ daytona_api_client-0.103.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
183
+ daytona_api_client-0.103.0rc1.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
184
+ daytona_api_client-0.103.0rc1.dist-info/RECORD,,