daytona_api_client 0.163.0.alpha.1 → 0.163.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/lib/daytona_api_client/models/audit_log.rb +19 -1
- 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: 75cd0d38bbff2872935eedb0532c5229d6ad5ce9db33ad52d1ee7f6c39ac804d
|
|
4
|
+
data.tar.gz: 119bbd04a391831af7ad5cef7083629876a4f50f0b15bc9be4f919694feffb3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20c0386f06e506e949bb9431f0c137cfb3102121c96154d5d37b349fb913f8e0f2f320ae1c4359fce19cef7259d9dc0973c22125d965740de37bfe0c3bac213a
|
|
7
|
+
data.tar.gz: b8d50d342f8689cb6ec1301a849b8d5c4f96710a851ffdf0a208c35205f14b21d636ec79dc081f2b29ab814ef00dc93b89cccf1775ee903a7788de9fa66166a5
|
|
@@ -21,6 +21,10 @@ module DaytonaApiClient
|
|
|
21
21
|
|
|
22
22
|
attr_accessor :actor_email
|
|
23
23
|
|
|
24
|
+
attr_accessor :actor_api_key_prefix
|
|
25
|
+
|
|
26
|
+
attr_accessor :actor_api_key_suffix
|
|
27
|
+
|
|
24
28
|
attr_accessor :organization_id
|
|
25
29
|
|
|
26
30
|
attr_accessor :action
|
|
@@ -49,6 +53,8 @@ module DaytonaApiClient
|
|
|
49
53
|
:'id' => :'id',
|
|
50
54
|
:'actor_id' => :'actorId',
|
|
51
55
|
:'actor_email' => :'actorEmail',
|
|
56
|
+
:'actor_api_key_prefix' => :'actorApiKeyPrefix',
|
|
57
|
+
:'actor_api_key_suffix' => :'actorApiKeySuffix',
|
|
52
58
|
:'organization_id' => :'organizationId',
|
|
53
59
|
:'action' => :'action',
|
|
54
60
|
:'target_type' => :'targetType',
|
|
@@ -79,6 +85,8 @@ module DaytonaApiClient
|
|
|
79
85
|
:'id' => :'String',
|
|
80
86
|
:'actor_id' => :'String',
|
|
81
87
|
:'actor_email' => :'String',
|
|
88
|
+
:'actor_api_key_prefix' => :'String',
|
|
89
|
+
:'actor_api_key_suffix' => :'String',
|
|
82
90
|
:'organization_id' => :'String',
|
|
83
91
|
:'action' => :'String',
|
|
84
92
|
:'target_type' => :'String',
|
|
@@ -133,6 +141,14 @@ module DaytonaApiClient
|
|
|
133
141
|
self.actor_email = nil
|
|
134
142
|
end
|
|
135
143
|
|
|
144
|
+
if attributes.key?(:'actor_api_key_prefix')
|
|
145
|
+
self.actor_api_key_prefix = attributes[:'actor_api_key_prefix']
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
if attributes.key?(:'actor_api_key_suffix')
|
|
149
|
+
self.actor_api_key_suffix = attributes[:'actor_api_key_suffix']
|
|
150
|
+
end
|
|
151
|
+
|
|
136
152
|
if attributes.key?(:'organization_id')
|
|
137
153
|
self.organization_id = attributes[:'organization_id']
|
|
138
154
|
end
|
|
@@ -282,6 +298,8 @@ module DaytonaApiClient
|
|
|
282
298
|
id == o.id &&
|
|
283
299
|
actor_id == o.actor_id &&
|
|
284
300
|
actor_email == o.actor_email &&
|
|
301
|
+
actor_api_key_prefix == o.actor_api_key_prefix &&
|
|
302
|
+
actor_api_key_suffix == o.actor_api_key_suffix &&
|
|
285
303
|
organization_id == o.organization_id &&
|
|
286
304
|
action == o.action &&
|
|
287
305
|
target_type == o.target_type &&
|
|
@@ -304,7 +322,7 @@ module DaytonaApiClient
|
|
|
304
322
|
# Calculates hash code according to all attributes.
|
|
305
323
|
# @return [Integer] Hash code
|
|
306
324
|
def hash
|
|
307
|
-
[id, actor_id, actor_email, organization_id, action, target_type, target_id, status_code, error_message, ip_address, user_agent, source, metadata, created_at].hash
|
|
325
|
+
[id, actor_id, actor_email, actor_api_key_prefix, actor_api_key_suffix, organization_id, action, target_type, target_id, status_code, error_message, ip_address, user_agent, source, metadata, created_at].hash
|
|
308
326
|
end
|
|
309
327
|
|
|
310
328
|
# Builds the object from hash
|