daytona_api_client 0.190.0 → 0.190.1
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/lib/daytona_api_client/models/create_organization_quota.rb +4 -14
- data/lib/daytona_api_client/models/daytona_configuration.rb +1 -11
- data/lib/daytona_api_client/models/rate_limit_config.rb +4 -14
- data/lib/daytona_api_client/models/runner.rb +4 -14
- data/lib/daytona_api_client/models/runner_full.rb +1 -11
- data/lib/daytona_api_client/models/update_organization_quota.rb +5 -18
- data/lib/daytona_api_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e3cfd592c0e08758067a20459b12fcc0a3c038978fbfa848ab136792b74a538
|
|
4
|
+
data.tar.gz: bdb8f81da506f2b952d66206acbd7ae6fb0e62c79ee2fe80d2320bb302fc6077
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5acda9f086c36224495c9ad4890582a253295392ce5217631affe68d9df62adf53641d1812ea63d51a3a90ccf004a5ed182aaec50366d4defce55a17379f10c5
|
|
7
|
+
data.tar.gz: 1de2ffab6f1b7be073e88476d5ab20392ea5f6f8e9cc5800ef5ef508c82eec0586a933b01fecd259eaa1be4ebe3a963d39a35f2920b969913dfc3c7d5fef2d77
|
|
@@ -33,9 +33,6 @@ module DaytonaApiClient
|
|
|
33
33
|
|
|
34
34
|
attr_accessor :volume_quota
|
|
35
35
|
|
|
36
|
-
# Maximum number of snapshots an organization can process (building or pulling) concurrently. Excess are queued. <= 0 means unlimited.
|
|
37
|
-
attr_accessor :max_concurrent_snapshot_processing
|
|
38
|
-
|
|
39
36
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
40
37
|
def self.attribute_map
|
|
41
38
|
{
|
|
@@ -47,8 +44,7 @@ module DaytonaApiClient
|
|
|
47
44
|
:'max_disk_per_sandbox' => :'maxDiskPerSandbox',
|
|
48
45
|
:'snapshot_quota' => :'snapshotQuota',
|
|
49
46
|
:'max_snapshot_size' => :'maxSnapshotSize',
|
|
50
|
-
:'volume_quota' => :'volumeQuota'
|
|
51
|
-
:'max_concurrent_snapshot_processing' => :'maxConcurrentSnapshotProcessing'
|
|
47
|
+
:'volume_quota' => :'volumeQuota'
|
|
52
48
|
}
|
|
53
49
|
end
|
|
54
50
|
|
|
@@ -73,8 +69,7 @@ module DaytonaApiClient
|
|
|
73
69
|
:'max_disk_per_sandbox' => :'Float',
|
|
74
70
|
:'snapshot_quota' => :'Float',
|
|
75
71
|
:'max_snapshot_size' => :'Float',
|
|
76
|
-
:'volume_quota' => :'Float'
|
|
77
|
-
:'max_concurrent_snapshot_processing' => :'Float'
|
|
72
|
+
:'volume_quota' => :'Float'
|
|
78
73
|
}
|
|
79
74
|
end
|
|
80
75
|
|
|
@@ -135,10 +130,6 @@ module DaytonaApiClient
|
|
|
135
130
|
if attributes.key?(:'volume_quota')
|
|
136
131
|
self.volume_quota = attributes[:'volume_quota']
|
|
137
132
|
end
|
|
138
|
-
|
|
139
|
-
if attributes.key?(:'max_concurrent_snapshot_processing')
|
|
140
|
-
self.max_concurrent_snapshot_processing = attributes[:'max_concurrent_snapshot_processing']
|
|
141
|
-
end
|
|
142
133
|
end
|
|
143
134
|
|
|
144
135
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -169,8 +160,7 @@ module DaytonaApiClient
|
|
|
169
160
|
max_disk_per_sandbox == o.max_disk_per_sandbox &&
|
|
170
161
|
snapshot_quota == o.snapshot_quota &&
|
|
171
162
|
max_snapshot_size == o.max_snapshot_size &&
|
|
172
|
-
volume_quota == o.volume_quota
|
|
173
|
-
max_concurrent_snapshot_processing == o.max_concurrent_snapshot_processing
|
|
163
|
+
volume_quota == o.volume_quota
|
|
174
164
|
end
|
|
175
165
|
|
|
176
166
|
# @see the `==` method
|
|
@@ -182,7 +172,7 @@ module DaytonaApiClient
|
|
|
182
172
|
# Calculates hash code according to all attributes.
|
|
183
173
|
# @return [Integer] Hash code
|
|
184
174
|
def hash
|
|
185
|
-
[total_cpu_quota, total_memory_quota, total_disk_quota, max_cpu_per_sandbox, max_memory_per_sandbox, max_disk_per_sandbox, snapshot_quota, max_snapshot_size, volume_quota
|
|
175
|
+
[total_cpu_quota, total_memory_quota, total_disk_quota, max_cpu_per_sandbox, max_memory_per_sandbox, max_disk_per_sandbox, snapshot_quota, max_snapshot_size, volume_quota].hash
|
|
186
176
|
end
|
|
187
177
|
|
|
188
178
|
# Builds the object from hash
|
|
@@ -60,9 +60,6 @@ module DaytonaApiClient
|
|
|
60
60
|
# Analytics API URL
|
|
61
61
|
attr_accessor :analytics_api_url
|
|
62
62
|
|
|
63
|
-
# Stripe publishable key for client-side Stripe.js
|
|
64
|
-
attr_accessor :stripe_publishable_key
|
|
65
|
-
|
|
66
63
|
# SSH Gateway command
|
|
67
64
|
attr_accessor :ssh_gateway_command
|
|
68
65
|
|
|
@@ -90,7 +87,6 @@ module DaytonaApiClient
|
|
|
90
87
|
:'environment' => :'environment',
|
|
91
88
|
:'billing_api_url' => :'billingApiUrl',
|
|
92
89
|
:'analytics_api_url' => :'analyticsApiUrl',
|
|
93
|
-
:'stripe_publishable_key' => :'stripePublishableKey',
|
|
94
90
|
:'ssh_gateway_command' => :'sshGatewayCommand',
|
|
95
91
|
:'ssh_gateway_public_key' => :'sshGatewayPublicKey',
|
|
96
92
|
:'rate_limit' => :'rateLimit'
|
|
@@ -125,7 +121,6 @@ module DaytonaApiClient
|
|
|
125
121
|
:'environment' => :'String',
|
|
126
122
|
:'billing_api_url' => :'String',
|
|
127
123
|
:'analytics_api_url' => :'String',
|
|
128
|
-
:'stripe_publishable_key' => :'String',
|
|
129
124
|
:'ssh_gateway_command' => :'String',
|
|
130
125
|
:'ssh_gateway_public_key' => :'String',
|
|
131
126
|
:'rate_limit' => :'RateLimitConfig'
|
|
@@ -238,10 +233,6 @@ module DaytonaApiClient
|
|
|
238
233
|
self.analytics_api_url = attributes[:'analytics_api_url']
|
|
239
234
|
end
|
|
240
235
|
|
|
241
|
-
if attributes.key?(:'stripe_publishable_key')
|
|
242
|
-
self.stripe_publishable_key = attributes[:'stripe_publishable_key']
|
|
243
|
-
end
|
|
244
|
-
|
|
245
236
|
if attributes.key?(:'ssh_gateway_command')
|
|
246
237
|
self.ssh_gateway_command = attributes[:'ssh_gateway_command']
|
|
247
238
|
end
|
|
@@ -455,7 +446,6 @@ module DaytonaApiClient
|
|
|
455
446
|
environment == o.environment &&
|
|
456
447
|
billing_api_url == o.billing_api_url &&
|
|
457
448
|
analytics_api_url == o.analytics_api_url &&
|
|
458
|
-
stripe_publishable_key == o.stripe_publishable_key &&
|
|
459
449
|
ssh_gateway_command == o.ssh_gateway_command &&
|
|
460
450
|
ssh_gateway_public_key == o.ssh_gateway_public_key &&
|
|
461
451
|
rate_limit == o.rate_limit
|
|
@@ -470,7 +460,7 @@ module DaytonaApiClient
|
|
|
470
460
|
# Calculates hash code according to all attributes.
|
|
471
461
|
# @return [Integer] Hash code
|
|
472
462
|
def hash
|
|
473
|
-
[version, posthog, oidc, linked_accounts_enabled, announcements, pylon_app_id, proxy_template_url, proxy_toolbox_url, default_snapshot, dashboard_url, max_auto_archive_interval, maintanance_mode, environment, billing_api_url, analytics_api_url,
|
|
463
|
+
[version, posthog, oidc, linked_accounts_enabled, announcements, pylon_app_id, proxy_template_url, proxy_toolbox_url, default_snapshot, dashboard_url, max_auto_archive_interval, maintanance_mode, environment, billing_api_url, analytics_api_url, ssh_gateway_command, ssh_gateway_public_key, rate_limit].hash
|
|
474
464
|
end
|
|
475
465
|
|
|
476
466
|
# Builds the object from hash
|
|
@@ -27,17 +27,13 @@ module DaytonaApiClient
|
|
|
27
27
|
# Sandbox lifecycle rate limit
|
|
28
28
|
attr_accessor :sandbox_lifecycle
|
|
29
29
|
|
|
30
|
-
# Sandbox list rate limit
|
|
31
|
-
attr_accessor :sandbox_list
|
|
32
|
-
|
|
33
30
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
34
31
|
def self.attribute_map
|
|
35
32
|
{
|
|
36
33
|
:'failed_auth' => :'failedAuth',
|
|
37
34
|
:'authenticated' => :'authenticated',
|
|
38
35
|
:'sandbox_create' => :'sandboxCreate',
|
|
39
|
-
:'sandbox_lifecycle' => :'sandboxLifecycle'
|
|
40
|
-
:'sandbox_list' => :'sandboxList'
|
|
36
|
+
:'sandbox_lifecycle' => :'sandboxLifecycle'
|
|
41
37
|
}
|
|
42
38
|
end
|
|
43
39
|
|
|
@@ -57,8 +53,7 @@ module DaytonaApiClient
|
|
|
57
53
|
:'failed_auth' => :'RateLimitEntry',
|
|
58
54
|
:'authenticated' => :'RateLimitEntry',
|
|
59
55
|
:'sandbox_create' => :'RateLimitEntry',
|
|
60
|
-
:'sandbox_lifecycle' => :'RateLimitEntry'
|
|
61
|
-
:'sandbox_list' => :'RateLimitEntry'
|
|
56
|
+
:'sandbox_lifecycle' => :'RateLimitEntry'
|
|
62
57
|
}
|
|
63
58
|
end
|
|
64
59
|
|
|
@@ -99,10 +94,6 @@ module DaytonaApiClient
|
|
|
99
94
|
if attributes.key?(:'sandbox_lifecycle')
|
|
100
95
|
self.sandbox_lifecycle = attributes[:'sandbox_lifecycle']
|
|
101
96
|
end
|
|
102
|
-
|
|
103
|
-
if attributes.key?(:'sandbox_list')
|
|
104
|
-
self.sandbox_list = attributes[:'sandbox_list']
|
|
105
|
-
end
|
|
106
97
|
end
|
|
107
98
|
|
|
108
99
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -128,8 +119,7 @@ module DaytonaApiClient
|
|
|
128
119
|
failed_auth == o.failed_auth &&
|
|
129
120
|
authenticated == o.authenticated &&
|
|
130
121
|
sandbox_create == o.sandbox_create &&
|
|
131
|
-
sandbox_lifecycle == o.sandbox_lifecycle
|
|
132
|
-
sandbox_list == o.sandbox_list
|
|
122
|
+
sandbox_lifecycle == o.sandbox_lifecycle
|
|
133
123
|
end
|
|
134
124
|
|
|
135
125
|
# @see the `==` method
|
|
@@ -141,7 +131,7 @@ module DaytonaApiClient
|
|
|
141
131
|
# Calculates hash code according to all attributes.
|
|
142
132
|
# @return [Integer] Hash code
|
|
143
133
|
def hash
|
|
144
|
-
[failed_auth, authenticated, sandbox_create, sandbox_lifecycle
|
|
134
|
+
[failed_auth, authenticated, sandbox_create, sandbox_lifecycle].hash
|
|
145
135
|
end
|
|
146
136
|
|
|
147
137
|
# Builds the object from hash
|
|
@@ -108,9 +108,6 @@ module DaytonaApiClient
|
|
|
108
108
|
# The app version of the runner
|
|
109
109
|
attr_accessor :app_version
|
|
110
110
|
|
|
111
|
-
# Deprecated runner class property
|
|
112
|
-
attr_accessor :_class
|
|
113
|
-
|
|
114
111
|
class EnumAttributeValidator
|
|
115
112
|
attr_reader :datatype
|
|
116
113
|
attr_reader :allowable_values
|
|
@@ -166,8 +163,7 @@ module DaytonaApiClient
|
|
|
166
163
|
:'version' => :'version',
|
|
167
164
|
:'api_version' => :'apiVersion',
|
|
168
165
|
:'runner_class' => :'runnerClass',
|
|
169
|
-
:'app_version' => :'appVersion'
|
|
170
|
-
:'_class' => :'class'
|
|
166
|
+
:'app_version' => :'appVersion'
|
|
171
167
|
}
|
|
172
168
|
end
|
|
173
169
|
|
|
@@ -214,8 +210,7 @@ module DaytonaApiClient
|
|
|
214
210
|
:'version' => :'String',
|
|
215
211
|
:'api_version' => :'String',
|
|
216
212
|
:'runner_class' => :'RunnerClass',
|
|
217
|
-
:'app_version' => :'String'
|
|
218
|
-
:'_class' => :'String'
|
|
213
|
+
:'app_version' => :'String'
|
|
219
214
|
}
|
|
220
215
|
end
|
|
221
216
|
|
|
@@ -394,10 +389,6 @@ module DaytonaApiClient
|
|
|
394
389
|
if attributes.key?(:'app_version')
|
|
395
390
|
self.app_version = attributes[:'app_version']
|
|
396
391
|
end
|
|
397
|
-
|
|
398
|
-
if attributes.key?(:'_class')
|
|
399
|
-
self._class = attributes[:'_class']
|
|
400
|
-
end
|
|
401
392
|
end
|
|
402
393
|
|
|
403
394
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -660,8 +651,7 @@ module DaytonaApiClient
|
|
|
660
651
|
version == o.version &&
|
|
661
652
|
api_version == o.api_version &&
|
|
662
653
|
runner_class == o.runner_class &&
|
|
663
|
-
app_version == o.app_version
|
|
664
|
-
_class == o._class
|
|
654
|
+
app_version == o.app_version
|
|
665
655
|
end
|
|
666
656
|
|
|
667
657
|
# @see the `==` method
|
|
@@ -673,7 +663,7 @@ module DaytonaApiClient
|
|
|
673
663
|
# Calculates hash code according to all attributes.
|
|
674
664
|
# @return [Integer] Hash code
|
|
675
665
|
def hash
|
|
676
|
-
[id, domain, api_url, proxy_url, cpu, memory, disk, gpu, gpu_type, sandbox_class, current_cpu_usage_percentage, current_memory_usage_percentage, current_disk_usage_percentage, current_allocated_cpu, current_allocated_memory_gi_b, current_allocated_disk_gi_b, current_snapshot_count, current_started_sandboxes, availability_score, region, name, state, last_checked, unschedulable, tags, created_at, updated_at, version, api_version, runner_class, app_version
|
|
666
|
+
[id, domain, api_url, proxy_url, cpu, memory, disk, gpu, gpu_type, sandbox_class, current_cpu_usage_percentage, current_memory_usage_percentage, current_disk_usage_percentage, current_allocated_cpu, current_allocated_memory_gi_b, current_allocated_disk_gi_b, current_snapshot_count, current_started_sandboxes, availability_score, region, name, state, last_checked, unschedulable, tags, created_at, updated_at, version, api_version, runner_class, app_version].hash
|
|
677
667
|
end
|
|
678
668
|
|
|
679
669
|
# Builds the object from hash
|
|
@@ -108,9 +108,6 @@ module DaytonaApiClient
|
|
|
108
108
|
# The app version of the runner
|
|
109
109
|
attr_accessor :app_version
|
|
110
110
|
|
|
111
|
-
# Deprecated runner class property
|
|
112
|
-
attr_accessor :_class
|
|
113
|
-
|
|
114
111
|
# The API key for the runner
|
|
115
112
|
attr_accessor :api_key
|
|
116
113
|
|
|
@@ -173,7 +170,6 @@ module DaytonaApiClient
|
|
|
173
170
|
:'api_version' => :'apiVersion',
|
|
174
171
|
:'runner_class' => :'runnerClass',
|
|
175
172
|
:'app_version' => :'appVersion',
|
|
176
|
-
:'_class' => :'class',
|
|
177
173
|
:'api_key' => :'apiKey',
|
|
178
174
|
:'region_type' => :'regionType'
|
|
179
175
|
}
|
|
@@ -223,7 +219,6 @@ module DaytonaApiClient
|
|
|
223
219
|
:'api_version' => :'String',
|
|
224
220
|
:'runner_class' => :'RunnerClass',
|
|
225
221
|
:'app_version' => :'String',
|
|
226
|
-
:'_class' => :'String',
|
|
227
222
|
:'api_key' => :'String',
|
|
228
223
|
:'region_type' => :'RegionType'
|
|
229
224
|
}
|
|
@@ -405,10 +400,6 @@ module DaytonaApiClient
|
|
|
405
400
|
self.app_version = attributes[:'app_version']
|
|
406
401
|
end
|
|
407
402
|
|
|
408
|
-
if attributes.key?(:'_class')
|
|
409
|
-
self._class = attributes[:'_class']
|
|
410
|
-
end
|
|
411
|
-
|
|
412
403
|
if attributes.key?(:'api_key')
|
|
413
404
|
self.api_key = attributes[:'api_key']
|
|
414
405
|
else
|
|
@@ -696,7 +687,6 @@ module DaytonaApiClient
|
|
|
696
687
|
api_version == o.api_version &&
|
|
697
688
|
runner_class == o.runner_class &&
|
|
698
689
|
app_version == o.app_version &&
|
|
699
|
-
_class == o._class &&
|
|
700
690
|
api_key == o.api_key &&
|
|
701
691
|
region_type == o.region_type
|
|
702
692
|
end
|
|
@@ -710,7 +700,7 @@ module DaytonaApiClient
|
|
|
710
700
|
# Calculates hash code according to all attributes.
|
|
711
701
|
# @return [Integer] Hash code
|
|
712
702
|
def hash
|
|
713
|
-
[id, domain, api_url, proxy_url, cpu, memory, disk, gpu, gpu_type, sandbox_class, current_cpu_usage_percentage, current_memory_usage_percentage, current_disk_usage_percentage, current_allocated_cpu, current_allocated_memory_gi_b, current_allocated_disk_gi_b, current_snapshot_count, current_started_sandboxes, availability_score, region, name, state, last_checked, unschedulable, tags, created_at, updated_at, version, api_version, runner_class, app_version,
|
|
703
|
+
[id, domain, api_url, proxy_url, cpu, memory, disk, gpu, gpu_type, sandbox_class, current_cpu_usage_percentage, current_memory_usage_percentage, current_disk_usage_percentage, current_allocated_cpu, current_allocated_memory_gi_b, current_allocated_disk_gi_b, current_snapshot_count, current_started_sandboxes, availability_score, region, name, state, last_checked, unschedulable, tags, created_at, updated_at, version, api_version, runner_class, app_version, api_key, region_type].hash
|
|
714
704
|
end
|
|
715
705
|
|
|
716
706
|
# Builds the object from hash
|
|
@@ -42,9 +42,6 @@ module DaytonaApiClient
|
|
|
42
42
|
# Time in minutes before an unused snapshot is deactivated
|
|
43
43
|
attr_accessor :snapshot_deactivation_timeout_minutes
|
|
44
44
|
|
|
45
|
-
# Maximum number of snapshots an organization can process (building or pulling) concurrently. Excess are queued. <= 0 means unlimited.
|
|
46
|
-
attr_accessor :max_concurrent_snapshot_processing
|
|
47
|
-
|
|
48
45
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
49
46
|
def self.attribute_map
|
|
50
47
|
{
|
|
@@ -60,8 +57,7 @@ module DaytonaApiClient
|
|
|
60
57
|
:'authenticated_rate_limit_ttl_seconds' => :'authenticatedRateLimitTtlSeconds',
|
|
61
58
|
:'sandbox_create_rate_limit_ttl_seconds' => :'sandboxCreateRateLimitTtlSeconds',
|
|
62
59
|
:'sandbox_lifecycle_rate_limit_ttl_seconds' => :'sandboxLifecycleRateLimitTtlSeconds',
|
|
63
|
-
:'snapshot_deactivation_timeout_minutes' => :'snapshotDeactivationTimeoutMinutes'
|
|
64
|
-
:'max_concurrent_snapshot_processing' => :'maxConcurrentSnapshotProcessing'
|
|
60
|
+
:'snapshot_deactivation_timeout_minutes' => :'snapshotDeactivationTimeoutMinutes'
|
|
65
61
|
}
|
|
66
62
|
end
|
|
67
63
|
|
|
@@ -90,8 +86,7 @@ module DaytonaApiClient
|
|
|
90
86
|
:'authenticated_rate_limit_ttl_seconds' => :'Float',
|
|
91
87
|
:'sandbox_create_rate_limit_ttl_seconds' => :'Float',
|
|
92
88
|
:'sandbox_lifecycle_rate_limit_ttl_seconds' => :'Float',
|
|
93
|
-
:'snapshot_deactivation_timeout_minutes' => :'Float'
|
|
94
|
-
:'max_concurrent_snapshot_processing' => :'Float'
|
|
89
|
+
:'snapshot_deactivation_timeout_minutes' => :'Float'
|
|
95
90
|
}
|
|
96
91
|
end
|
|
97
92
|
|
|
@@ -110,8 +105,7 @@ module DaytonaApiClient
|
|
|
110
105
|
:'authenticated_rate_limit_ttl_seconds',
|
|
111
106
|
:'sandbox_create_rate_limit_ttl_seconds',
|
|
112
107
|
:'sandbox_lifecycle_rate_limit_ttl_seconds',
|
|
113
|
-
:'snapshot_deactivation_timeout_minutes'
|
|
114
|
-
:'max_concurrent_snapshot_processing'
|
|
108
|
+
:'snapshot_deactivation_timeout_minutes'
|
|
115
109
|
])
|
|
116
110
|
end
|
|
117
111
|
|
|
@@ -208,12 +202,6 @@ module DaytonaApiClient
|
|
|
208
202
|
else
|
|
209
203
|
self.snapshot_deactivation_timeout_minutes = nil
|
|
210
204
|
end
|
|
211
|
-
|
|
212
|
-
if attributes.key?(:'max_concurrent_snapshot_processing')
|
|
213
|
-
self.max_concurrent_snapshot_processing = attributes[:'max_concurrent_snapshot_processing']
|
|
214
|
-
else
|
|
215
|
-
self.max_concurrent_snapshot_processing = nil
|
|
216
|
-
end
|
|
217
205
|
end
|
|
218
206
|
|
|
219
207
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -248,8 +236,7 @@ module DaytonaApiClient
|
|
|
248
236
|
authenticated_rate_limit_ttl_seconds == o.authenticated_rate_limit_ttl_seconds &&
|
|
249
237
|
sandbox_create_rate_limit_ttl_seconds == o.sandbox_create_rate_limit_ttl_seconds &&
|
|
250
238
|
sandbox_lifecycle_rate_limit_ttl_seconds == o.sandbox_lifecycle_rate_limit_ttl_seconds &&
|
|
251
|
-
snapshot_deactivation_timeout_minutes == o.snapshot_deactivation_timeout_minutes
|
|
252
|
-
max_concurrent_snapshot_processing == o.max_concurrent_snapshot_processing
|
|
239
|
+
snapshot_deactivation_timeout_minutes == o.snapshot_deactivation_timeout_minutes
|
|
253
240
|
end
|
|
254
241
|
|
|
255
242
|
# @see the `==` method
|
|
@@ -261,7 +248,7 @@ module DaytonaApiClient
|
|
|
261
248
|
# Calculates hash code according to all attributes.
|
|
262
249
|
# @return [Integer] Hash code
|
|
263
250
|
def hash
|
|
264
|
-
[max_cpu_per_sandbox, max_memory_per_sandbox, max_disk_per_sandbox, snapshot_quota, max_snapshot_size, volume_quota, authenticated_rate_limit, sandbox_create_rate_limit, sandbox_lifecycle_rate_limit, authenticated_rate_limit_ttl_seconds, sandbox_create_rate_limit_ttl_seconds, sandbox_lifecycle_rate_limit_ttl_seconds, snapshot_deactivation_timeout_minutes
|
|
251
|
+
[max_cpu_per_sandbox, max_memory_per_sandbox, max_disk_per_sandbox, snapshot_quota, max_snapshot_size, volume_quota, authenticated_rate_limit, sandbox_create_rate_limit, sandbox_lifecycle_rate_limit, authenticated_rate_limit_ttl_seconds, sandbox_create_rate_limit_ttl_seconds, sandbox_lifecycle_rate_limit_ttl_seconds, snapshot_deactivation_timeout_minutes].hash
|
|
265
252
|
end
|
|
266
253
|
|
|
267
254
|
# Builds the object from hash
|