daytona_api_client 0.126.0.pre.alpha.5 → 1.0.0
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/daytona_api_client.gemspec +2 -2
- data/lib/daytona_api_client/api/audit_api.rb +66 -18
- data/lib/daytona_api_client/api/organizations_api.rb +12 -219
- data/lib/daytona_api_client/api/preview_api.rb +5 -7
- data/lib/daytona_api_client/api/runners_api.rb +0 -55
- data/lib/daytona_api_client/api/sandbox_api.rb +222 -309
- data/lib/daytona_api_client/api/toolbox_api.rb +711 -711
- data/lib/daytona_api_client/api/workspace_api.rb +3 -3
- data/lib/daytona_api_client/models/create_organization.rb +4 -31
- data/lib/daytona_api_client/models/create_sandbox.rb +1 -11
- data/lib/daytona_api_client/models/create_user.rb +1 -10
- data/lib/daytona_api_client/models/daytona_configuration.rb +4 -41
- data/lib/daytona_api_client/models/organization.rb +85 -53
- data/lib/daytona_api_client/models/organization_usage_overview.rb +146 -18
- data/lib/daytona_api_client/models/paginated_audit_logs.rb +4 -14
- data/lib/daytona_api_client/models/port_preview_url.rb +14 -31
- data/lib/daytona_api_client/models/region.rb +4 -96
- data/lib/daytona_api_client/models/sandbox.rb +11 -38
- data/lib/daytona_api_client/models/sandbox_volume.rb +4 -14
- data/lib/daytona_api_client/models/snapshot_state.rb +4 -1
- data/lib/daytona_api_client/models/ssh_access_validation_dto.rb +24 -4
- data/lib/daytona_api_client/models/update_organization_quota.rb +41 -41
- data/lib/daytona_api_client/models/update_sandbox_state_dto.rb +4 -14
- data/lib/daytona_api_client/models/workspace.rb +38 -38
- data/lib/daytona_api_client/version.rb +1 -1
- data/lib/daytona_api_client.rb +1 -8
- data/project.json +7 -29
- metadata +1 -16
- data/.gitignore +0 -39
- data/.openapi-generator/FILES +0 -171
- data/.openapi-generator/VERSION +0 -1
- data/.openapi-generator-ignore +0 -33
- data/.rspec +0 -2
- data/.rubocop.yml +0 -148
- data/fix-gemspec.sh +0 -11
- data/lib/daytona_api_client/api/regions_api.rb +0 -83
- data/lib/daytona_api_client/models/rate_limit_config.rb +0 -249
- data/lib/daytona_api_client/models/rate_limit_entry.rb +0 -229
- data/lib/daytona_api_client/models/region_quota.rb +0 -339
- data/lib/daytona_api_client/models/region_usage_overview.rb +0 -391
- data/lib/daytona_api_client/models/update_organization_default_region.rb +0 -236
- data/lib/daytona_api_client/models/update_organization_region_quota.rb +0 -245
- data/lib/daytona_api_client/models/workspace_port_preview_url.rb +0 -263
|
@@ -21,9 +21,6 @@ module DaytonaApiClient
|
|
|
21
21
|
# The organization ID of the sandbox
|
|
22
22
|
attr_accessor :organization_id
|
|
23
23
|
|
|
24
|
-
# The name of the sandbox
|
|
25
|
-
attr_accessor :name
|
|
26
|
-
|
|
27
24
|
# The snapshot used for the sandbox
|
|
28
25
|
attr_accessor :snapshot
|
|
29
26
|
|
|
@@ -69,9 +66,6 @@ module DaytonaApiClient
|
|
|
69
66
|
# The error reason of the sandbox
|
|
70
67
|
attr_accessor :error_reason
|
|
71
68
|
|
|
72
|
-
# Whether the sandbox error is recoverable.
|
|
73
|
-
attr_accessor :recoverable
|
|
74
|
-
|
|
75
69
|
# The state of the backup
|
|
76
70
|
attr_accessor :backup_state
|
|
77
71
|
|
|
@@ -87,6 +81,9 @@ module DaytonaApiClient
|
|
|
87
81
|
# Auto-delete interval in minutes (negative value means disabled, 0 means delete immediately upon stopping)
|
|
88
82
|
attr_accessor :auto_delete_interval
|
|
89
83
|
|
|
84
|
+
# The domain name of the runner
|
|
85
|
+
attr_accessor :runner_domain
|
|
86
|
+
|
|
90
87
|
# Array of volumes attached to the sandbox
|
|
91
88
|
attr_accessor :volumes
|
|
92
89
|
|
|
@@ -105,6 +102,9 @@ module DaytonaApiClient
|
|
|
105
102
|
# The version of the daemon running in the sandbox
|
|
106
103
|
attr_accessor :daemon_version
|
|
107
104
|
|
|
105
|
+
# The name of the workspace
|
|
106
|
+
attr_accessor :name
|
|
107
|
+
|
|
108
108
|
# The image used for the workspace
|
|
109
109
|
attr_accessor :image
|
|
110
110
|
|
|
@@ -144,7 +144,6 @@ module DaytonaApiClient
|
|
|
144
144
|
{
|
|
145
145
|
:'id' => :'id',
|
|
146
146
|
:'organization_id' => :'organizationId',
|
|
147
|
-
:'name' => :'name',
|
|
148
147
|
:'snapshot' => :'snapshot',
|
|
149
148
|
:'user' => :'user',
|
|
150
149
|
:'env' => :'env',
|
|
@@ -160,18 +159,19 @@ module DaytonaApiClient
|
|
|
160
159
|
:'state' => :'state',
|
|
161
160
|
:'desired_state' => :'desiredState',
|
|
162
161
|
:'error_reason' => :'errorReason',
|
|
163
|
-
:'recoverable' => :'recoverable',
|
|
164
162
|
:'backup_state' => :'backupState',
|
|
165
163
|
:'backup_created_at' => :'backupCreatedAt',
|
|
166
164
|
:'auto_stop_interval' => :'autoStopInterval',
|
|
167
165
|
:'auto_archive_interval' => :'autoArchiveInterval',
|
|
168
166
|
:'auto_delete_interval' => :'autoDeleteInterval',
|
|
167
|
+
:'runner_domain' => :'runnerDomain',
|
|
169
168
|
:'volumes' => :'volumes',
|
|
170
169
|
:'build_info' => :'buildInfo',
|
|
171
170
|
:'created_at' => :'createdAt',
|
|
172
171
|
:'updated_at' => :'updatedAt',
|
|
173
172
|
:'_class' => :'class',
|
|
174
173
|
:'daemon_version' => :'daemonVersion',
|
|
174
|
+
:'name' => :'name',
|
|
175
175
|
:'image' => :'image',
|
|
176
176
|
:'snapshot_state' => :'snapshotState',
|
|
177
177
|
:'snapshot_created_at' => :'snapshotCreatedAt',
|
|
@@ -194,7 +194,6 @@ module DaytonaApiClient
|
|
|
194
194
|
{
|
|
195
195
|
:'id' => :'String',
|
|
196
196
|
:'organization_id' => :'String',
|
|
197
|
-
:'name' => :'String',
|
|
198
197
|
:'snapshot' => :'String',
|
|
199
198
|
:'user' => :'String',
|
|
200
199
|
:'env' => :'Hash<String, String>',
|
|
@@ -210,18 +209,19 @@ module DaytonaApiClient
|
|
|
210
209
|
:'state' => :'SandboxState',
|
|
211
210
|
:'desired_state' => :'SandboxDesiredState',
|
|
212
211
|
:'error_reason' => :'String',
|
|
213
|
-
:'recoverable' => :'Boolean',
|
|
214
212
|
:'backup_state' => :'String',
|
|
215
213
|
:'backup_created_at' => :'String',
|
|
216
214
|
:'auto_stop_interval' => :'Float',
|
|
217
215
|
:'auto_archive_interval' => :'Float',
|
|
218
216
|
:'auto_delete_interval' => :'Float',
|
|
217
|
+
:'runner_domain' => :'String',
|
|
219
218
|
:'volumes' => :'Array<SandboxVolume>',
|
|
220
219
|
:'build_info' => :'BuildInfo',
|
|
221
220
|
:'created_at' => :'String',
|
|
222
221
|
:'updated_at' => :'String',
|
|
223
222
|
:'_class' => :'String',
|
|
224
223
|
:'daemon_version' => :'String',
|
|
224
|
+
:'name' => :'String',
|
|
225
225
|
:'image' => :'String',
|
|
226
226
|
:'snapshot_state' => :'String',
|
|
227
227
|
:'snapshot_created_at' => :'String',
|
|
@@ -263,12 +263,6 @@ module DaytonaApiClient
|
|
|
263
263
|
self.organization_id = nil
|
|
264
264
|
end
|
|
265
265
|
|
|
266
|
-
if attributes.key?(:'name')
|
|
267
|
-
self.name = attributes[:'name']
|
|
268
|
-
else
|
|
269
|
-
self.name = nil
|
|
270
|
-
end
|
|
271
|
-
|
|
272
266
|
if attributes.key?(:'snapshot')
|
|
273
267
|
self.snapshot = attributes[:'snapshot']
|
|
274
268
|
end
|
|
@@ -353,10 +347,6 @@ module DaytonaApiClient
|
|
|
353
347
|
self.error_reason = attributes[:'error_reason']
|
|
354
348
|
end
|
|
355
349
|
|
|
356
|
-
if attributes.key?(:'recoverable')
|
|
357
|
-
self.recoverable = attributes[:'recoverable']
|
|
358
|
-
end
|
|
359
|
-
|
|
360
350
|
if attributes.key?(:'backup_state')
|
|
361
351
|
self.backup_state = attributes[:'backup_state']
|
|
362
352
|
end
|
|
@@ -377,6 +367,10 @@ module DaytonaApiClient
|
|
|
377
367
|
self.auto_delete_interval = attributes[:'auto_delete_interval']
|
|
378
368
|
end
|
|
379
369
|
|
|
370
|
+
if attributes.key?(:'runner_domain')
|
|
371
|
+
self.runner_domain = attributes[:'runner_domain']
|
|
372
|
+
end
|
|
373
|
+
|
|
380
374
|
if attributes.key?(:'volumes')
|
|
381
375
|
if (value = attributes[:'volumes']).is_a?(Array)
|
|
382
376
|
self.volumes = value
|
|
@@ -403,6 +397,12 @@ module DaytonaApiClient
|
|
|
403
397
|
self.daemon_version = attributes[:'daemon_version']
|
|
404
398
|
end
|
|
405
399
|
|
|
400
|
+
if attributes.key?(:'name')
|
|
401
|
+
self.name = attributes[:'name']
|
|
402
|
+
else
|
|
403
|
+
self.name = ''
|
|
404
|
+
end
|
|
405
|
+
|
|
406
406
|
if attributes.key?(:'image')
|
|
407
407
|
self.image = attributes[:'image']
|
|
408
408
|
end
|
|
@@ -433,10 +433,6 @@ module DaytonaApiClient
|
|
|
433
433
|
invalid_properties.push('invalid value for "organization_id", organization_id cannot be nil.')
|
|
434
434
|
end
|
|
435
435
|
|
|
436
|
-
if @name.nil?
|
|
437
|
-
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
438
|
-
end
|
|
439
|
-
|
|
440
436
|
if @user.nil?
|
|
441
437
|
invalid_properties.push('invalid value for "user", user cannot be nil.')
|
|
442
438
|
end
|
|
@@ -477,6 +473,10 @@ module DaytonaApiClient
|
|
|
477
473
|
invalid_properties.push('invalid value for "disk", disk cannot be nil.')
|
|
478
474
|
end
|
|
479
475
|
|
|
476
|
+
if @name.nil?
|
|
477
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
478
|
+
end
|
|
479
|
+
|
|
480
480
|
invalid_properties
|
|
481
481
|
end
|
|
482
482
|
|
|
@@ -486,7 +486,6 @@ module DaytonaApiClient
|
|
|
486
486
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
487
487
|
return false if @id.nil?
|
|
488
488
|
return false if @organization_id.nil?
|
|
489
|
-
return false if @name.nil?
|
|
490
489
|
return false if @user.nil?
|
|
491
490
|
return false if @env.nil?
|
|
492
491
|
return false if @labels.nil?
|
|
@@ -501,6 +500,7 @@ module DaytonaApiClient
|
|
|
501
500
|
return false unless backup_state_validator.valid?(@backup_state)
|
|
502
501
|
_class_validator = EnumAttributeValidator.new('String', ["small", "medium", "large"])
|
|
503
502
|
return false unless _class_validator.valid?(@_class)
|
|
503
|
+
return false if @name.nil?
|
|
504
504
|
snapshot_state_validator = EnumAttributeValidator.new('String', ["None", "Pending", "InProgress", "Completed", "Error"])
|
|
505
505
|
return false unless snapshot_state_validator.valid?(@snapshot_state)
|
|
506
506
|
true
|
|
@@ -526,16 +526,6 @@ module DaytonaApiClient
|
|
|
526
526
|
@organization_id = organization_id
|
|
527
527
|
end
|
|
528
528
|
|
|
529
|
-
# Custom attribute writer method with validation
|
|
530
|
-
# @param [Object] name Value to be assigned
|
|
531
|
-
def name=(name)
|
|
532
|
-
if name.nil?
|
|
533
|
-
fail ArgumentError, 'name cannot be nil'
|
|
534
|
-
end
|
|
535
|
-
|
|
536
|
-
@name = name
|
|
537
|
-
end
|
|
538
|
-
|
|
539
529
|
# Custom attribute writer method with validation
|
|
540
530
|
# @param [Object] user Value to be assigned
|
|
541
531
|
def user=(user)
|
|
@@ -656,6 +646,16 @@ module DaytonaApiClient
|
|
|
656
646
|
@_class = _class
|
|
657
647
|
end
|
|
658
648
|
|
|
649
|
+
# Custom attribute writer method with validation
|
|
650
|
+
# @param [Object] name Value to be assigned
|
|
651
|
+
def name=(name)
|
|
652
|
+
if name.nil?
|
|
653
|
+
fail ArgumentError, 'name cannot be nil'
|
|
654
|
+
end
|
|
655
|
+
|
|
656
|
+
@name = name
|
|
657
|
+
end
|
|
658
|
+
|
|
659
659
|
# Custom attribute writer method checking allowed values (enum).
|
|
660
660
|
# @param [Object] snapshot_state Object to be assigned
|
|
661
661
|
def snapshot_state=(snapshot_state)
|
|
@@ -673,7 +673,6 @@ module DaytonaApiClient
|
|
|
673
673
|
self.class == o.class &&
|
|
674
674
|
id == o.id &&
|
|
675
675
|
organization_id == o.organization_id &&
|
|
676
|
-
name == o.name &&
|
|
677
676
|
snapshot == o.snapshot &&
|
|
678
677
|
user == o.user &&
|
|
679
678
|
env == o.env &&
|
|
@@ -689,18 +688,19 @@ module DaytonaApiClient
|
|
|
689
688
|
state == o.state &&
|
|
690
689
|
desired_state == o.desired_state &&
|
|
691
690
|
error_reason == o.error_reason &&
|
|
692
|
-
recoverable == o.recoverable &&
|
|
693
691
|
backup_state == o.backup_state &&
|
|
694
692
|
backup_created_at == o.backup_created_at &&
|
|
695
693
|
auto_stop_interval == o.auto_stop_interval &&
|
|
696
694
|
auto_archive_interval == o.auto_archive_interval &&
|
|
697
695
|
auto_delete_interval == o.auto_delete_interval &&
|
|
696
|
+
runner_domain == o.runner_domain &&
|
|
698
697
|
volumes == o.volumes &&
|
|
699
698
|
build_info == o.build_info &&
|
|
700
699
|
created_at == o.created_at &&
|
|
701
700
|
updated_at == o.updated_at &&
|
|
702
701
|
_class == o._class &&
|
|
703
702
|
daemon_version == o.daemon_version &&
|
|
703
|
+
name == o.name &&
|
|
704
704
|
image == o.image &&
|
|
705
705
|
snapshot_state == o.snapshot_state &&
|
|
706
706
|
snapshot_created_at == o.snapshot_created_at &&
|
|
@@ -716,7 +716,7 @@ module DaytonaApiClient
|
|
|
716
716
|
# Calculates hash code according to all attributes.
|
|
717
717
|
# @return [Integer] Hash code
|
|
718
718
|
def hash
|
|
719
|
-
[id, organization_id,
|
|
719
|
+
[id, organization_id, snapshot, user, env, labels, public, network_block_all, network_allow_list, target, cpu, gpu, memory, disk, state, desired_state, error_reason, backup_state, backup_created_at, auto_stop_interval, auto_archive_interval, auto_delete_interval, runner_domain, volumes, build_info, created_at, updated_at, _class, daemon_version, name, image, snapshot_state, snapshot_created_at, info].hash
|
|
720
720
|
end
|
|
721
721
|
|
|
722
722
|
# Builds the object from hash
|
data/lib/daytona_api_client.rb
CHANGED
|
@@ -32,6 +32,7 @@ require 'daytona_api_client/models/computer_use_start_response'
|
|
|
32
32
|
require 'daytona_api_client/models/computer_use_status_response'
|
|
33
33
|
require 'daytona_api_client/models/computer_use_stop_response'
|
|
34
34
|
require 'daytona_api_client/models/create_api_key'
|
|
35
|
+
require 'daytona_api_client/models/create_audit_log'
|
|
35
36
|
require 'daytona_api_client/models/create_build_info'
|
|
36
37
|
require 'daytona_api_client/models/create_docker_registry'
|
|
37
38
|
require 'daytona_api_client/models/create_linked_account'
|
|
@@ -111,12 +112,8 @@ require 'daytona_api_client/models/pty_list_response'
|
|
|
111
112
|
require 'daytona_api_client/models/pty_resize_request'
|
|
112
113
|
require 'daytona_api_client/models/pty_session_info'
|
|
113
114
|
require 'daytona_api_client/models/range'
|
|
114
|
-
require 'daytona_api_client/models/rate_limit_config'
|
|
115
|
-
require 'daytona_api_client/models/rate_limit_entry'
|
|
116
115
|
require 'daytona_api_client/models/region'
|
|
117
|
-
require 'daytona_api_client/models/region_quota'
|
|
118
116
|
require 'daytona_api_client/models/region_screenshot_response'
|
|
119
|
-
require 'daytona_api_client/models/region_usage_overview'
|
|
120
117
|
require 'daytona_api_client/models/registry_push_access_dto'
|
|
121
118
|
require 'daytona_api_client/models/replace_request'
|
|
122
119
|
require 'daytona_api_client/models/replace_result'
|
|
@@ -143,11 +140,9 @@ require 'daytona_api_client/models/ssh_access_dto'
|
|
|
143
140
|
require 'daytona_api_client/models/ssh_access_validation_dto'
|
|
144
141
|
require 'daytona_api_client/models/storage_access_dto'
|
|
145
142
|
require 'daytona_api_client/models/update_docker_registry'
|
|
146
|
-
require 'daytona_api_client/models/update_organization_default_region'
|
|
147
143
|
require 'daytona_api_client/models/update_organization_invitation'
|
|
148
144
|
require 'daytona_api_client/models/update_organization_member_access'
|
|
149
145
|
require 'daytona_api_client/models/update_organization_quota'
|
|
150
|
-
require 'daytona_api_client/models/update_organization_region_quota'
|
|
151
146
|
require 'daytona_api_client/models/update_organization_role'
|
|
152
147
|
require 'daytona_api_client/models/update_sandbox_state_dto'
|
|
153
148
|
require 'daytona_api_client/models/user'
|
|
@@ -161,7 +156,6 @@ require 'daytona_api_client/models/webhook_initialization_status'
|
|
|
161
156
|
require 'daytona_api_client/models/windows_response'
|
|
162
157
|
require 'daytona_api_client/models/work_dir_response'
|
|
163
158
|
require 'daytona_api_client/models/workspace'
|
|
164
|
-
require 'daytona_api_client/models/workspace_port_preview_url'
|
|
165
159
|
|
|
166
160
|
# APIs
|
|
167
161
|
require 'daytona_api_client/api/api_keys_api'
|
|
@@ -172,7 +166,6 @@ require 'daytona_api_client/api/health_api'
|
|
|
172
166
|
require 'daytona_api_client/api/object_storage_api'
|
|
173
167
|
require 'daytona_api_client/api/organizations_api'
|
|
174
168
|
require 'daytona_api_client/api/preview_api'
|
|
175
|
-
require 'daytona_api_client/api/regions_api'
|
|
176
169
|
require 'daytona_api_client/api/runners_api'
|
|
177
170
|
require 'daytona_api_client/api/sandbox_api'
|
|
178
171
|
require 'daytona_api_client/api/snapshots_api'
|
data/project.json
CHANGED
|
@@ -8,52 +8,30 @@
|
|
|
8
8
|
"build": {
|
|
9
9
|
"executor": "nx:run-commands",
|
|
10
10
|
"options": {
|
|
11
|
-
"
|
|
12
|
-
"commands": ["rm -f *.gem", "bundle install", "gem build daytona_api_client.gemspec"],
|
|
13
|
-
"parallel": false
|
|
14
|
-
},
|
|
15
|
-
"dependsOn": ["set-version"]
|
|
16
|
-
},
|
|
17
|
-
"set-version": {
|
|
18
|
-
"executor": "nx:run-commands",
|
|
19
|
-
"options": {
|
|
20
|
-
"cwd": "{projectRoot}",
|
|
21
|
-
"command": "if [ -n \"$RUBYGEMS_PKG_VERSION\" ] || [ -n \"$DEFAULT_PACKAGE_VERSION\" ]; then VER=${RUBYGEMS_PKG_VERSION:-$DEFAULT_PACKAGE_VERSION}; sed -i \"s/VERSION = '[^']*'/VERSION = '$VER'/\" lib/daytona_api_client/version.rb && echo \"Changed version to $VER\"; else echo \"Using version from version.rb\"; fi"
|
|
11
|
+
"command": "cd {projectRoot} && bundle install"
|
|
22
12
|
}
|
|
23
13
|
},
|
|
24
14
|
"lint": {
|
|
25
15
|
"executor": "nx:run-commands",
|
|
26
16
|
"options": {
|
|
27
|
-
"
|
|
28
|
-
"command": "bundle exec rubocop"
|
|
17
|
+
"command": "cd {projectRoot} && bundle exec rubocop"
|
|
29
18
|
}
|
|
30
19
|
},
|
|
31
20
|
"generate:api-client": {
|
|
32
21
|
"executor": "nx:run-commands",
|
|
33
22
|
"options": {
|
|
34
|
-
"
|
|
35
|
-
"yarn run openapi-generator-cli generate -i dist/apps/api/openapi.json -g ruby --additional-properties=gemAuthor=daytonaio,gemAuthorEmail=support@daytona.io,gemDescription=\\\"Daytona API Client\\\",gemHomepage=\\\"https://github.com/daytonaio/daytona\\\",gemName=daytona_api_client -o libs/api-client-ruby",
|
|
36
|
-
"bash libs/api-client-ruby/fix-gemspec.sh",
|
|
37
|
-
"cd libs/api-client-ruby && bundle install"
|
|
38
|
-
],
|
|
39
|
-
"parallel": false
|
|
23
|
+
"command": "yarn run openapi-generator-cli generate -i dist/apps/api/openapi.json -g ruby --additional-properties=gemAuthor=daytonaio,gemAuthorEmail=support@daytona.io,gemDescription=\\\"Daytona API Client\\\",gemHomepage=\\\"https://github.com/daytonaio/daytona\\\",gemName=daytona_api_client -o libs/api-client-ruby"
|
|
40
24
|
}
|
|
41
25
|
},
|
|
42
26
|
"format": {
|
|
43
27
|
"executor": "nx:run-commands",
|
|
44
28
|
"options": {
|
|
45
|
-
"
|
|
46
|
-
|
|
29
|
+
"commands": [
|
|
30
|
+
"cd {projectRoot} && bundle exec rubocop -a --fail-level=E",
|
|
31
|
+
"cd {projectRoot} && prettier --write \"**/*.yml\""
|
|
32
|
+
],
|
|
47
33
|
"parallel": false
|
|
48
34
|
}
|
|
49
|
-
},
|
|
50
|
-
"publish": {
|
|
51
|
-
"executor": "nx:run-commands",
|
|
52
|
-
"options": {
|
|
53
|
-
"cwd": "{projectRoot}",
|
|
54
|
-
"command": "gem push daytona_api_client-*.gem --key rubygems --host https://rubygems.org"
|
|
55
|
-
},
|
|
56
|
-
"dependsOn": ["build"]
|
|
57
35
|
}
|
|
58
36
|
}
|
|
59
37
|
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: daytona_api_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- daytonaio
|
|
@@ -56,17 +56,10 @@ executables: []
|
|
|
56
56
|
extensions: []
|
|
57
57
|
extra_rdoc_files: []
|
|
58
58
|
files:
|
|
59
|
-
- ".gitignore"
|
|
60
|
-
- ".openapi-generator-ignore"
|
|
61
|
-
- ".openapi-generator/FILES"
|
|
62
|
-
- ".openapi-generator/VERSION"
|
|
63
|
-
- ".rspec"
|
|
64
|
-
- ".rubocop.yml"
|
|
65
59
|
- Gemfile
|
|
66
60
|
- Gemfile.lock
|
|
67
61
|
- Rakefile
|
|
68
62
|
- daytona_api_client.gemspec
|
|
69
|
-
- fix-gemspec.sh
|
|
70
63
|
- lib/daytona_api_client.rb
|
|
71
64
|
- lib/daytona_api_client/api/api_keys_api.rb
|
|
72
65
|
- lib/daytona_api_client/api/audit_api.rb
|
|
@@ -76,7 +69,6 @@ files:
|
|
|
76
69
|
- lib/daytona_api_client/api/object_storage_api.rb
|
|
77
70
|
- lib/daytona_api_client/api/organizations_api.rb
|
|
78
71
|
- lib/daytona_api_client/api/preview_api.rb
|
|
79
|
-
- lib/daytona_api_client/api/regions_api.rb
|
|
80
72
|
- lib/daytona_api_client/api/runners_api.rb
|
|
81
73
|
- lib/daytona_api_client/api/sandbox_api.rb
|
|
82
74
|
- lib/daytona_api_client/api/snapshots_api.rb
|
|
@@ -184,12 +176,8 @@ files:
|
|
|
184
176
|
- lib/daytona_api_client/models/pty_resize_request.rb
|
|
185
177
|
- lib/daytona_api_client/models/pty_session_info.rb
|
|
186
178
|
- lib/daytona_api_client/models/range.rb
|
|
187
|
-
- lib/daytona_api_client/models/rate_limit_config.rb
|
|
188
|
-
- lib/daytona_api_client/models/rate_limit_entry.rb
|
|
189
179
|
- lib/daytona_api_client/models/region.rb
|
|
190
|
-
- lib/daytona_api_client/models/region_quota.rb
|
|
191
180
|
- lib/daytona_api_client/models/region_screenshot_response.rb
|
|
192
|
-
- lib/daytona_api_client/models/region_usage_overview.rb
|
|
193
181
|
- lib/daytona_api_client/models/registry_push_access_dto.rb
|
|
194
182
|
- lib/daytona_api_client/models/replace_request.rb
|
|
195
183
|
- lib/daytona_api_client/models/replace_result.rb
|
|
@@ -216,11 +204,9 @@ files:
|
|
|
216
204
|
- lib/daytona_api_client/models/ssh_access_validation_dto.rb
|
|
217
205
|
- lib/daytona_api_client/models/storage_access_dto.rb
|
|
218
206
|
- lib/daytona_api_client/models/update_docker_registry.rb
|
|
219
|
-
- lib/daytona_api_client/models/update_organization_default_region.rb
|
|
220
207
|
- lib/daytona_api_client/models/update_organization_invitation.rb
|
|
221
208
|
- lib/daytona_api_client/models/update_organization_member_access.rb
|
|
222
209
|
- lib/daytona_api_client/models/update_organization_quota.rb
|
|
223
|
-
- lib/daytona_api_client/models/update_organization_region_quota.rb
|
|
224
210
|
- lib/daytona_api_client/models/update_organization_role.rb
|
|
225
211
|
- lib/daytona_api_client/models/update_sandbox_state_dto.rb
|
|
226
212
|
- lib/daytona_api_client/models/user.rb
|
|
@@ -234,7 +220,6 @@ files:
|
|
|
234
220
|
- lib/daytona_api_client/models/windows_response.rb
|
|
235
221
|
- lib/daytona_api_client/models/work_dir_response.rb
|
|
236
222
|
- lib/daytona_api_client/models/workspace.rb
|
|
237
|
-
- lib/daytona_api_client/models/workspace_port_preview_url.rb
|
|
238
223
|
- lib/daytona_api_client/version.rb
|
|
239
224
|
- project.json
|
|
240
225
|
homepage: https://github.com/daytonaio/daytona
|
data/.gitignore
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# Generated by: https://openapi-generator.tech
|
|
2
|
-
#
|
|
3
|
-
|
|
4
|
-
*.gem
|
|
5
|
-
*.rbc
|
|
6
|
-
/.config
|
|
7
|
-
/coverage/
|
|
8
|
-
/InstalledFiles
|
|
9
|
-
/pkg/
|
|
10
|
-
/spec/reports/
|
|
11
|
-
/spec/examples.txt
|
|
12
|
-
/test/tmp/
|
|
13
|
-
/test/version_tmp/
|
|
14
|
-
/tmp/
|
|
15
|
-
|
|
16
|
-
## Specific to RubyMotion:
|
|
17
|
-
.dat*
|
|
18
|
-
.repl_history
|
|
19
|
-
build/
|
|
20
|
-
|
|
21
|
-
## Documentation cache and generated files:
|
|
22
|
-
/.yardoc/
|
|
23
|
-
/_yardoc/
|
|
24
|
-
/doc/
|
|
25
|
-
/rdoc/
|
|
26
|
-
|
|
27
|
-
## Environment normalization:
|
|
28
|
-
/.bundle/
|
|
29
|
-
/vendor/bundle
|
|
30
|
-
/lib/bundler/man/
|
|
31
|
-
|
|
32
|
-
# for a library or gem, you might want to ignore these files since the code is
|
|
33
|
-
# intended to run in multiple environments; otherwise, check them in:
|
|
34
|
-
# Gemfile.lock
|
|
35
|
-
# .ruby-version
|
|
36
|
-
# .ruby-gemset
|
|
37
|
-
|
|
38
|
-
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
39
|
-
.rvmrc
|
data/.openapi-generator/FILES
DELETED
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
.gitignore
|
|
2
|
-
.rspec
|
|
3
|
-
.rubocop.yml
|
|
4
|
-
Rakefile
|
|
5
|
-
lib/daytona_api_client.rb
|
|
6
|
-
lib/daytona_api_client/api/api_keys_api.rb
|
|
7
|
-
lib/daytona_api_client/api/audit_api.rb
|
|
8
|
-
lib/daytona_api_client/api/config_api.rb
|
|
9
|
-
lib/daytona_api_client/api/docker_registry_api.rb
|
|
10
|
-
lib/daytona_api_client/api/health_api.rb
|
|
11
|
-
lib/daytona_api_client/api/object_storage_api.rb
|
|
12
|
-
lib/daytona_api_client/api/organizations_api.rb
|
|
13
|
-
lib/daytona_api_client/api/preview_api.rb
|
|
14
|
-
lib/daytona_api_client/api/regions_api.rb
|
|
15
|
-
lib/daytona_api_client/api/runners_api.rb
|
|
16
|
-
lib/daytona_api_client/api/sandbox_api.rb
|
|
17
|
-
lib/daytona_api_client/api/snapshots_api.rb
|
|
18
|
-
lib/daytona_api_client/api/toolbox_api.rb
|
|
19
|
-
lib/daytona_api_client/api/users_api.rb
|
|
20
|
-
lib/daytona_api_client/api/volumes_api.rb
|
|
21
|
-
lib/daytona_api_client/api/webhooks_api.rb
|
|
22
|
-
lib/daytona_api_client/api/workspace_api.rb
|
|
23
|
-
lib/daytona_api_client/api_client.rb
|
|
24
|
-
lib/daytona_api_client/api_error.rb
|
|
25
|
-
lib/daytona_api_client/configuration.rb
|
|
26
|
-
lib/daytona_api_client/models/account_provider.rb
|
|
27
|
-
lib/daytona_api_client/models/announcement.rb
|
|
28
|
-
lib/daytona_api_client/models/api_key_list.rb
|
|
29
|
-
lib/daytona_api_client/models/api_key_response.rb
|
|
30
|
-
lib/daytona_api_client/models/audit_log.rb
|
|
31
|
-
lib/daytona_api_client/models/build_info.rb
|
|
32
|
-
lib/daytona_api_client/models/command.rb
|
|
33
|
-
lib/daytona_api_client/models/completion_context.rb
|
|
34
|
-
lib/daytona_api_client/models/completion_item.rb
|
|
35
|
-
lib/daytona_api_client/models/completion_list.rb
|
|
36
|
-
lib/daytona_api_client/models/compressed_screenshot_response.rb
|
|
37
|
-
lib/daytona_api_client/models/computer_use_start_response.rb
|
|
38
|
-
lib/daytona_api_client/models/computer_use_status_response.rb
|
|
39
|
-
lib/daytona_api_client/models/computer_use_stop_response.rb
|
|
40
|
-
lib/daytona_api_client/models/create_api_key.rb
|
|
41
|
-
lib/daytona_api_client/models/create_build_info.rb
|
|
42
|
-
lib/daytona_api_client/models/create_docker_registry.rb
|
|
43
|
-
lib/daytona_api_client/models/create_linked_account.rb
|
|
44
|
-
lib/daytona_api_client/models/create_organization.rb
|
|
45
|
-
lib/daytona_api_client/models/create_organization_invitation.rb
|
|
46
|
-
lib/daytona_api_client/models/create_organization_quota.rb
|
|
47
|
-
lib/daytona_api_client/models/create_organization_role.rb
|
|
48
|
-
lib/daytona_api_client/models/create_runner.rb
|
|
49
|
-
lib/daytona_api_client/models/create_sandbox.rb
|
|
50
|
-
lib/daytona_api_client/models/create_session_request.rb
|
|
51
|
-
lib/daytona_api_client/models/create_snapshot.rb
|
|
52
|
-
lib/daytona_api_client/models/create_user.rb
|
|
53
|
-
lib/daytona_api_client/models/create_volume.rb
|
|
54
|
-
lib/daytona_api_client/models/create_workspace.rb
|
|
55
|
-
lib/daytona_api_client/models/daytona_configuration.rb
|
|
56
|
-
lib/daytona_api_client/models/display_info_response.rb
|
|
57
|
-
lib/daytona_api_client/models/docker_registry.rb
|
|
58
|
-
lib/daytona_api_client/models/download_files.rb
|
|
59
|
-
lib/daytona_api_client/models/execute_request.rb
|
|
60
|
-
lib/daytona_api_client/models/execute_response.rb
|
|
61
|
-
lib/daytona_api_client/models/file_info.rb
|
|
62
|
-
lib/daytona_api_client/models/file_status.rb
|
|
63
|
-
lib/daytona_api_client/models/git_add_request.rb
|
|
64
|
-
lib/daytona_api_client/models/git_branch_request.rb
|
|
65
|
-
lib/daytona_api_client/models/git_checkout_request.rb
|
|
66
|
-
lib/daytona_api_client/models/git_clone_request.rb
|
|
67
|
-
lib/daytona_api_client/models/git_commit_info.rb
|
|
68
|
-
lib/daytona_api_client/models/git_commit_request.rb
|
|
69
|
-
lib/daytona_api_client/models/git_commit_response.rb
|
|
70
|
-
lib/daytona_api_client/models/git_delete_branch_request.rb
|
|
71
|
-
lib/daytona_api_client/models/git_repo_request.rb
|
|
72
|
-
lib/daytona_api_client/models/git_status.rb
|
|
73
|
-
lib/daytona_api_client/models/health_controller_check200_response.rb
|
|
74
|
-
lib/daytona_api_client/models/health_controller_check200_response_info_value.rb
|
|
75
|
-
lib/daytona_api_client/models/health_controller_check503_response.rb
|
|
76
|
-
lib/daytona_api_client/models/keyboard_hotkey_request.rb
|
|
77
|
-
lib/daytona_api_client/models/keyboard_press_request.rb
|
|
78
|
-
lib/daytona_api_client/models/keyboard_type_request.rb
|
|
79
|
-
lib/daytona_api_client/models/list_branch_response.rb
|
|
80
|
-
lib/daytona_api_client/models/lsp_completion_params.rb
|
|
81
|
-
lib/daytona_api_client/models/lsp_document_request.rb
|
|
82
|
-
lib/daytona_api_client/models/lsp_location.rb
|
|
83
|
-
lib/daytona_api_client/models/lsp_server_request.rb
|
|
84
|
-
lib/daytona_api_client/models/lsp_symbol.rb
|
|
85
|
-
lib/daytona_api_client/models/match.rb
|
|
86
|
-
lib/daytona_api_client/models/mouse_click_request.rb
|
|
87
|
-
lib/daytona_api_client/models/mouse_click_response.rb
|
|
88
|
-
lib/daytona_api_client/models/mouse_drag_request.rb
|
|
89
|
-
lib/daytona_api_client/models/mouse_drag_response.rb
|
|
90
|
-
lib/daytona_api_client/models/mouse_move_request.rb
|
|
91
|
-
lib/daytona_api_client/models/mouse_move_response.rb
|
|
92
|
-
lib/daytona_api_client/models/mouse_position.rb
|
|
93
|
-
lib/daytona_api_client/models/mouse_scroll_request.rb
|
|
94
|
-
lib/daytona_api_client/models/mouse_scroll_response.rb
|
|
95
|
-
lib/daytona_api_client/models/oidc_config.rb
|
|
96
|
-
lib/daytona_api_client/models/organization.rb
|
|
97
|
-
lib/daytona_api_client/models/organization_invitation.rb
|
|
98
|
-
lib/daytona_api_client/models/organization_role.rb
|
|
99
|
-
lib/daytona_api_client/models/organization_sandbox_default_limited_network_egress.rb
|
|
100
|
-
lib/daytona_api_client/models/organization_suspension.rb
|
|
101
|
-
lib/daytona_api_client/models/organization_usage_overview.rb
|
|
102
|
-
lib/daytona_api_client/models/organization_user.rb
|
|
103
|
-
lib/daytona_api_client/models/paginated_audit_logs.rb
|
|
104
|
-
lib/daytona_api_client/models/paginated_sandboxes.rb
|
|
105
|
-
lib/daytona_api_client/models/paginated_snapshots.rb
|
|
106
|
-
lib/daytona_api_client/models/port_preview_url.rb
|
|
107
|
-
lib/daytona_api_client/models/position.rb
|
|
108
|
-
lib/daytona_api_client/models/posthog_config.rb
|
|
109
|
-
lib/daytona_api_client/models/process_errors_response.rb
|
|
110
|
-
lib/daytona_api_client/models/process_logs_response.rb
|
|
111
|
-
lib/daytona_api_client/models/process_restart_response.rb
|
|
112
|
-
lib/daytona_api_client/models/process_status_response.rb
|
|
113
|
-
lib/daytona_api_client/models/project_dir_response.rb
|
|
114
|
-
lib/daytona_api_client/models/pty_create_request.rb
|
|
115
|
-
lib/daytona_api_client/models/pty_create_response.rb
|
|
116
|
-
lib/daytona_api_client/models/pty_list_response.rb
|
|
117
|
-
lib/daytona_api_client/models/pty_resize_request.rb
|
|
118
|
-
lib/daytona_api_client/models/pty_session_info.rb
|
|
119
|
-
lib/daytona_api_client/models/range.rb
|
|
120
|
-
lib/daytona_api_client/models/rate_limit_config.rb
|
|
121
|
-
lib/daytona_api_client/models/rate_limit_entry.rb
|
|
122
|
-
lib/daytona_api_client/models/region.rb
|
|
123
|
-
lib/daytona_api_client/models/region_quota.rb
|
|
124
|
-
lib/daytona_api_client/models/region_screenshot_response.rb
|
|
125
|
-
lib/daytona_api_client/models/region_usage_overview.rb
|
|
126
|
-
lib/daytona_api_client/models/registry_push_access_dto.rb
|
|
127
|
-
lib/daytona_api_client/models/replace_request.rb
|
|
128
|
-
lib/daytona_api_client/models/replace_result.rb
|
|
129
|
-
lib/daytona_api_client/models/runner.rb
|
|
130
|
-
lib/daytona_api_client/models/runner_snapshot_dto.rb
|
|
131
|
-
lib/daytona_api_client/models/runner_state.rb
|
|
132
|
-
lib/daytona_api_client/models/sandbox.rb
|
|
133
|
-
lib/daytona_api_client/models/sandbox_class.rb
|
|
134
|
-
lib/daytona_api_client/models/sandbox_desired_state.rb
|
|
135
|
-
lib/daytona_api_client/models/sandbox_info.rb
|
|
136
|
-
lib/daytona_api_client/models/sandbox_labels.rb
|
|
137
|
-
lib/daytona_api_client/models/sandbox_state.rb
|
|
138
|
-
lib/daytona_api_client/models/sandbox_volume.rb
|
|
139
|
-
lib/daytona_api_client/models/screenshot_response.rb
|
|
140
|
-
lib/daytona_api_client/models/search_files_response.rb
|
|
141
|
-
lib/daytona_api_client/models/send_webhook_dto.rb
|
|
142
|
-
lib/daytona_api_client/models/session.rb
|
|
143
|
-
lib/daytona_api_client/models/session_execute_request.rb
|
|
144
|
-
lib/daytona_api_client/models/session_execute_response.rb
|
|
145
|
-
lib/daytona_api_client/models/set_snapshot_general_status_dto.rb
|
|
146
|
-
lib/daytona_api_client/models/snapshot_dto.rb
|
|
147
|
-
lib/daytona_api_client/models/snapshot_state.rb
|
|
148
|
-
lib/daytona_api_client/models/ssh_access_dto.rb
|
|
149
|
-
lib/daytona_api_client/models/ssh_access_validation_dto.rb
|
|
150
|
-
lib/daytona_api_client/models/storage_access_dto.rb
|
|
151
|
-
lib/daytona_api_client/models/update_docker_registry.rb
|
|
152
|
-
lib/daytona_api_client/models/update_organization_default_region.rb
|
|
153
|
-
lib/daytona_api_client/models/update_organization_invitation.rb
|
|
154
|
-
lib/daytona_api_client/models/update_organization_member_access.rb
|
|
155
|
-
lib/daytona_api_client/models/update_organization_quota.rb
|
|
156
|
-
lib/daytona_api_client/models/update_organization_region_quota.rb
|
|
157
|
-
lib/daytona_api_client/models/update_organization_role.rb
|
|
158
|
-
lib/daytona_api_client/models/update_sandbox_state_dto.rb
|
|
159
|
-
lib/daytona_api_client/models/user.rb
|
|
160
|
-
lib/daytona_api_client/models/user_home_dir_response.rb
|
|
161
|
-
lib/daytona_api_client/models/user_public_key.rb
|
|
162
|
-
lib/daytona_api_client/models/volume_dto.rb
|
|
163
|
-
lib/daytona_api_client/models/volume_state.rb
|
|
164
|
-
lib/daytona_api_client/models/webhook_app_portal_access.rb
|
|
165
|
-
lib/daytona_api_client/models/webhook_controller_get_status200_response.rb
|
|
166
|
-
lib/daytona_api_client/models/webhook_initialization_status.rb
|
|
167
|
-
lib/daytona_api_client/models/windows_response.rb
|
|
168
|
-
lib/daytona_api_client/models/work_dir_response.rb
|
|
169
|
-
lib/daytona_api_client/models/workspace.rb
|
|
170
|
-
lib/daytona_api_client/models/workspace_port_preview_url.rb
|
|
171
|
-
lib/daytona_api_client/version.rb
|
data/.openapi-generator/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
7.12.0
|