Skip to content

Commit cb903cc

Browse files
add creationDate and lastUpdate to every object missing it
1 parent 7b0ce85 commit cb903cc

File tree

67 files changed

+1353
-550
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1353
-550
lines changed

api/src/integrationTest/kotlin/com/cosmotech/api/home/organization/OrganizationControllerTests.kt

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ class OrganizationControllerTests : ControllerTestBase() {
5151
.with(csrf()))
5252
.andExpect(status().is2xxSuccessful)
5353
.andExpect(jsonPath("$.name").value(ORGANIZATION_NAME))
54-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
54+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
55+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
5556
.andExpect(jsonPath("$.security.default").value(ROLE_NONE))
5657
.andExpect(jsonPath("$.security.accessControlList[0].role").value(ROLE_ADMIN))
5758
.andExpect(jsonPath("$.security.accessControlList[0].id").value(PLATFORM_ADMIN_EMAIL))
@@ -69,7 +70,8 @@ class OrganizationControllerTests : ControllerTestBase() {
6970
.with(csrf()))
7071
.andExpect(status().is2xxSuccessful)
7172
.andExpect(jsonPath("$.name").value(ORGANIZATION_NAME))
72-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
73+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
74+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
7375
.andExpect(jsonPath("$.security.default").value(ROLE_NONE))
7476
.andExpect(jsonPath("$.security.accessControlList[0].role").value(ROLE_ADMIN))
7577
.andExpect(jsonPath("$.security.accessControlList[0].id").value(PLATFORM_ADMIN_EMAIL))
@@ -93,7 +95,8 @@ class OrganizationControllerTests : ControllerTestBase() {
9395
.with(csrf()))
9496
.andExpect(status().is2xxSuccessful)
9597
.andExpect(jsonPath("$.name").value(NEW_ORGANIZATION_NAME))
96-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
98+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
99+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
97100
.andExpect(jsonPath("$.security.default").value(ROLE_NONE))
98101
.andExpect(jsonPath("$.security.accessControlList[0].role").value(ROLE_ADMIN))
99102
.andExpect(jsonPath("$.security.accessControlList[0].id").value(PLATFORM_ADMIN_EMAIL))
@@ -119,13 +122,15 @@ class OrganizationControllerTests : ControllerTestBase() {
119122
.andExpect(status().is2xxSuccessful)
120123
.andExpect(jsonPath("$[0].id").value(firstOrganizationId))
121124
.andExpect(jsonPath("$[0].name").value("my_first_organization"))
122-
.andExpect(jsonPath("$[0].ownerId").value(PLATFORM_ADMIN_EMAIL))
125+
.andExpect(jsonPath("$[0].createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
126+
.andExpect(jsonPath("$[0].updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
123127
.andExpect(jsonPath("$[0].security.default").value(ROLE_NONE))
124128
.andExpect(jsonPath("$[0].security.accessControlList[0].role").value(ROLE_ADMIN))
125129
.andExpect(jsonPath("$[0].security.accessControlList[0].id").value(PLATFORM_ADMIN_EMAIL))
126130
.andExpect(jsonPath("$[1].id").value(secondOrganizationId))
127131
.andExpect(jsonPath("$[1].name").value("my_second_organization"))
128-
.andExpect(jsonPath("$[1].ownerId").value(PLATFORM_ADMIN_EMAIL))
132+
.andExpect(jsonPath("$[1].createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
133+
.andExpect(jsonPath("$[1].updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
129134
.andExpect(jsonPath("$[1].security.default").value(ROLE_NONE))
130135
.andExpect(jsonPath("$[1].security.accessControlList[0].role").value(ROLE_ADMIN))
131136
.andExpect(jsonPath("$[1].security.accessControlList[0].id").value(PLATFORM_ADMIN_EMAIL))
@@ -142,7 +147,8 @@ class OrganizationControllerTests : ControllerTestBase() {
142147
mvc.perform(get("/organizations/$organizationId"))
143148
.andExpect(status().is2xxSuccessful)
144149
.andExpect(jsonPath("$.name").value(ORGANIZATION_NAME))
145-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
150+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
151+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
146152
.andExpect(jsonPath("$.security.default").value(ROLE_NONE))
147153
.andExpect(jsonPath("$.security.accessControlList[0].role").value(ROLE_ADMIN))
148154
.andExpect(jsonPath("$.security.accessControlList[0].id").value(PLATFORM_ADMIN_EMAIL))

api/src/integrationTest/kotlin/com/cosmotech/api/home/run/RunControllerTests.kt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ class RunControllerTests : ControllerTestBase() {
188188
.andExpect(jsonPath("$[0].csmSimulationRun").value(CSM_SIMULATION_RUN))
189189
.andExpect(jsonPath("$[0].generateName").value(""))
190190
.andExpect(jsonPath("$[0].workflowName").value(WORKFLOW_NAME))
191-
.andExpect(jsonPath("$[0].ownerId").value(PLATFORM_ADMIN_EMAIL))
191+
.andExpect(jsonPath("$[0].createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
192192
.andExpect(jsonPath("$[0].workspaceId").value(workspaceId))
193193
.andExpect(jsonPath("$[0].workspaceKey").value(WORKSPACE_KEY))
194194
.andExpect(jsonPath("$[0].solutionId").value(""))
@@ -219,7 +219,7 @@ class RunControllerTests : ControllerTestBase() {
219219
.andExpect(jsonPath("$.csmSimulationRun").value(CSM_SIMULATION_RUN))
220220
.andExpect(jsonPath("$.generateName").value(""))
221221
.andExpect(jsonPath("$.workflowName").value(WORKFLOW_NAME))
222-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
222+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
223223
.andExpect(jsonPath("$.workspaceId").value(workspaceId))
224224
.andExpect(jsonPath("$.workspaceKey").value(WORKSPACE_KEY))
225225
.andExpect(jsonPath("$.solutionId").value(""))
@@ -441,16 +441,15 @@ class RunControllerTests : ControllerTestBase() {
441441
state = RunState.Successful,
442442
workflowId = WORKFLOW_ID,
443443
workflowName = WORKFLOW_NAME,
444-
ownerId = PLATFORM_ADMIN_EMAIL,
445444
csmSimulationRun = CSM_SIMULATION_RUN,
446445
generateName = "generated_name",
446+
createInfo = RunEditInfo(timestamp = 123456789, userId = "user"),
447447
organizationId = organizationId,
448448
workspaceId = workspaceId,
449449
workspaceKey = WORKSPACE_KEY,
450450
solutionId = solutionId,
451451
runTemplateId = RUNNER_RUN_TEMPLATE,
452452
computeSize = RUN_TEMPLATE_COMPUTE_SIZE,
453-
createdAt = Date.from(Instant.now()).toString(),
454453
datasetList = DATASET_LIST,
455454
parametersValues =
456455
mutableListOf(

api/src/integrationTest/kotlin/com/cosmotech/api/home/runner/RunnerControllerTests.kt

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ class RunnerControllerTests : ControllerTestBase() {
158158
.with(csrf()))
159159
.andExpect(status().is2xxSuccessful)
160160
.andExpect(jsonPath("$.name").value(RUNNER_NAME))
161-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
161+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
162+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
162163
.andExpect(jsonPath("$.ownerName").value(RUNNER_OWNER_NAME))
163164
.andExpect(jsonPath("$.description").value(description))
164165
.andExpect(jsonPath("$.parentId").value(parentId))
@@ -250,7 +251,8 @@ class RunnerControllerTests : ControllerTestBase() {
250251
.andExpect(status().is2xxSuccessful)
251252
.andExpect(jsonPath("$.id").value(runnerId))
252253
.andExpect(jsonPath("$.name").value(RUNNER_NAME))
253-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
254+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
255+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
254256
.andExpect(jsonPath("$.ownerName").value(RUNNER_OWNER_NAME))
255257
.andExpect(jsonPath("$.description").value(description))
256258
.andExpect(jsonPath("$.parentId").value(parentId))
@@ -334,7 +336,8 @@ class RunnerControllerTests : ControllerTestBase() {
334336
.andExpect(status().is2xxSuccessful)
335337
.andExpect(jsonPath("$.id").value(baseRunnerId))
336338
.andExpect(jsonPath("$.name").value(RUNNER_NAME))
337-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
339+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
340+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
338341
.andExpect(jsonPath("$.ownerName").value(RUNNER_OWNER_NAME))
339342
.andExpect(jsonPath("$.description").value(description))
340343
.andExpect(jsonPath("$.parentId").value(null))
@@ -396,15 +399,17 @@ class RunnerControllerTests : ControllerTestBase() {
396399
.andExpect(status().is2xxSuccessful)
397400
.andExpect(jsonPath("$[0].id").value(firstRunnerId))
398401
.andExpect(jsonPath("$[0].name").value(firstRunnerName))
399-
.andExpect(jsonPath("$[0].ownerId").value(PLATFORM_ADMIN_EMAIL))
402+
.andExpect(jsonPath("$[0].createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
403+
.andExpect(jsonPath("$[0].updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
400404
.andExpect(jsonPath("$[0].ownerName").value(firstOwnerName))
401405
.andExpect(jsonPath("$[0].parentId").value(null))
402406
.andExpect(jsonPath("$[0].security.default").value(ROLE_NONE))
403407
.andExpect(jsonPath("$[0].security.accessControlList[0].role").value(ROLE_ADMIN))
404408
.andExpect(jsonPath("$[0].security.accessControlList[0].id").value(PLATFORM_ADMIN_EMAIL))
405409
.andExpect(jsonPath("$[1].id").value(secondRunnerId))
406410
.andExpect(jsonPath("$[1].name").value(secondRunnerName))
407-
.andExpect(jsonPath("$[1].ownerId").value(PLATFORM_ADMIN_EMAIL))
411+
.andExpect(jsonPath("$[1].createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
412+
.andExpect(jsonPath("$[1].updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
408413
.andExpect(jsonPath("$[1].ownerName").value(secondOwnerName))
409414
.andExpect(jsonPath("$[1].parentId").value(null))
410415
.andExpect(jsonPath("$[1].security.default").value(ROLE_NONE))

api/src/integrationTest/kotlin/com/cosmotech/api/home/solution/SolutionControllerTests.kt

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ class SolutionControllerTests : ControllerTestBase() {
8989
.andExpect(jsonPath("$[0].id").value(firstSolutionId))
9090
.andExpect(jsonPath("$[0].key").value(firstSolutionKey))
9191
.andExpect(jsonPath("$[0].name").value(firstSolutionName))
92-
.andExpect(jsonPath("$[0].ownerId").value(PLATFORM_ADMIN_EMAIL))
92+
.andExpect(jsonPath("$[0].createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
93+
.andExpect(jsonPath("$[0].updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
9394
.andExpect(jsonPath("$[0].organizationId").value(organizationId))
9495
.andExpect(jsonPath("$[0].sdkVersion").value(SOLUTION_SDK_VERSION))
9596
.andExpect(jsonPath("$[0].security.default").value(ROLE_NONE))
@@ -98,7 +99,8 @@ class SolutionControllerTests : ControllerTestBase() {
9899
.andExpect(jsonPath("$[1].id").value(secondSolutionId))
99100
.andExpect(jsonPath("$[1].key").value(secondSolutionKey))
100101
.andExpect(jsonPath("$[1].name").value(secondSolutionName))
101-
.andExpect(jsonPath("$[1].ownerId").value(PLATFORM_ADMIN_EMAIL))
102+
.andExpect(jsonPath("$[1].createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
103+
.andExpect(jsonPath("$[1].updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
102104
.andExpect(jsonPath("$[1].organizationId").value(organizationId))
103105
.andExpect(jsonPath("$[1].sdkVersion").value(SOLUTION_SDK_VERSION))
104106
.andExpect(jsonPath("$[1].security.default").value(ROLE_NONE))
@@ -202,7 +204,8 @@ class SolutionControllerTests : ControllerTestBase() {
202204
.andExpect(status().is2xxSuccessful)
203205
.andExpect(jsonPath("$.name").value(SOLUTION_NAME))
204206
.andExpect(jsonPath("$.key").value(SOLUTION_KEY))
205-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
207+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
208+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
206209
.andExpect(jsonPath("$.version").value(SOLUTION_VERSION))
207210
.andExpect(jsonPath("$.description").value(description))
208211
.andExpect(jsonPath("$.alwaysPull").value(false))
@@ -340,7 +343,8 @@ class SolutionControllerTests : ControllerTestBase() {
340343
.andExpect(jsonPath("$.id").value(solutionId))
341344
.andExpect(jsonPath("$.name").value(SOLUTION_NAME))
342345
.andExpect(jsonPath("$.key").value(SOLUTION_KEY))
343-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
346+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
347+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
344348
.andExpect(jsonPath("$.version").value(SOLUTION_VERSION))
345349
.andExpect(jsonPath("$.description").value(description))
346350
.andExpect(jsonPath("$.alwaysPull").value(false))
@@ -437,7 +441,8 @@ class SolutionControllerTests : ControllerTestBase() {
437441
.andExpect(jsonPath("$.id").value(solutionId))
438442
.andExpect(jsonPath("$.name").value(SOLUTION_NAME))
439443
.andExpect(jsonPath("$.key").value(SOLUTION_KEY))
440-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
444+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
445+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
441446
.andExpect(jsonPath("$.version").value(SOLUTION_VERSION))
442447
.andExpect(jsonPath("$.description").value(description))
443448
.andExpect(jsonPath("$.alwaysPull").value(true))

api/src/integrationTest/kotlin/com/cosmotech/api/home/workspace/WorkspaceControllerTests.kt

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ class WorkspaceControllerTests : ControllerTestBase() {
106106
.andExpect(status().is2xxSuccessful)
107107
.andExpect(jsonPath("$.name").value(WORKSPACE_NAME))
108108
.andExpect(jsonPath("$.key").value(WORKSPACE_KEY))
109-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
109+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
110+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
110111
.andExpect(jsonPath("$.description").value(description))
111112
.andExpect(jsonPath("$.version").value(version))
112113
.andExpect(jsonPath("$.solution.runTemplateFilter").value(runTemplateFilter))
@@ -173,7 +174,8 @@ class WorkspaceControllerTests : ControllerTestBase() {
173174
.andExpect(status().is2xxSuccessful)
174175
.andExpect(jsonPath("$.name").value(WORKSPACE_NAME))
175176
.andExpect(jsonPath("$.key").value(WORKSPACE_KEY))
176-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
177+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
178+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
177179
.andExpect(jsonPath("$.description").value(description))
178180
.andExpect(jsonPath("$.solution.runTemplateFilter").value(runTemplateFilter))
179181
.andExpect(
@@ -224,7 +226,8 @@ class WorkspaceControllerTests : ControllerTestBase() {
224226
.andExpect(jsonPath("$[0].id").value(firstWorkspaceId))
225227
.andExpect(jsonPath("$[0].key").value(firstWorkspaceKey))
226228
.andExpect(jsonPath("$[0].name").value(firstWorkspaceName))
227-
.andExpect(jsonPath("$[0].ownerId").value(PLATFORM_ADMIN_EMAIL))
229+
.andExpect(jsonPath("$[0].createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
230+
.andExpect(jsonPath("$[0].updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
228231
.andExpect(jsonPath("$[0].organizationId").value(organizationId))
229232
.andExpect(jsonPath("$[0].solution.solutionId").value(solutionId))
230233
.andExpect(jsonPath("$[0].security.default").value(ROLE_NONE))
@@ -233,7 +236,8 @@ class WorkspaceControllerTests : ControllerTestBase() {
233236
.andExpect(jsonPath("$[1].id").value(secondWorkspaceId))
234237
.andExpect(jsonPath("$[1].key").value(secondWorkspaceKey))
235238
.andExpect(jsonPath("$[1].name").value(secondWorkspaceName))
236-
.andExpect(jsonPath("$[1].ownerId").value(PLATFORM_ADMIN_EMAIL))
239+
.andExpect(jsonPath("$[1].createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
240+
.andExpect(jsonPath("$[1].updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
237241
.andExpect(jsonPath("$[1].organizationId").value(organizationId))
238242
.andExpect(jsonPath("$[1].solution.solutionId").value(solutionId))
239243
.andExpect(jsonPath("$[1].security.default").value(ROLE_NONE))
@@ -296,7 +300,8 @@ class WorkspaceControllerTests : ControllerTestBase() {
296300
.andExpect(status().is2xxSuccessful)
297301
.andExpect(jsonPath("$.name").value(WORKSPACE_NAME))
298302
.andExpect(jsonPath("$.key").value(WORKSPACE_KEY))
299-
.andExpect(jsonPath("$.ownerId").value(PLATFORM_ADMIN_EMAIL))
303+
.andExpect(jsonPath("$.createInfo.userId").value(PLATFORM_ADMIN_EMAIL))
304+
.andExpect(jsonPath("$.updateInfo.userId").value(PLATFORM_ADMIN_EMAIL))
300305
.andExpect(jsonPath("$.version").value(version))
301306
.andExpect(jsonPath("$.description").value(description))
302307
.andExpect(jsonPath("$.solution.runTemplateFilter").value(runTemplateFilter))

dataset/src/test/kotlin/com/cosmotech/dataset/service/DatasetServiceImplTests.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ import com.cosmotech.dataset.utils.toJsonString
3030
import com.cosmotech.organization.OrganizationApiServiceInterface
3131
import com.cosmotech.organization.domain.Organization
3232
import com.cosmotech.organization.domain.OrganizationAccessControl
33+
import com.cosmotech.organization.domain.OrganizationEditInfo
3334
import com.cosmotech.organization.domain.OrganizationSecurity
3435
import io.mockk.*
3536
import io.mockk.impl.annotations.InjectMockKs
@@ -605,5 +606,10 @@ private fun mockOrganization(
605606
OrganizationSecurity(
606607
ROLE_VIEWER, mutableListOf(OrganizationAccessControl(USER_ID, ROLE_ADMIN)))
607608
): Organization {
608-
return Organization(id = "o-123456789", name = name, ownerId = "123456789", security = security)
609+
return Organization(
610+
id = "o-123456789",
611+
name = name,
612+
createInfo = OrganizationEditInfo(timestamp = 123456789, userId = "user"),
613+
updateInfo = OrganizationEditInfo(timestamp = 123456789, userId = "user"),
614+
security = security)
609615
}

doc/.openapi-generator/FILES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Models/IngestionStatusEnum.md
3434
Models/Organization.md
3535
Models/OrganizationAccessControl.md
3636
Models/OrganizationCreateRequest.md
37+
Models/OrganizationEditInfo.md
3738
Models/OrganizationRole.md
3839
Models/OrganizationSecurity.md
3940
Models/OrganizationUpdateRequest.md
@@ -43,6 +44,7 @@ Models/Run.md
4344
Models/RunContainer.md
4445
Models/RunData.md
4546
Models/RunDataQuery.md
47+
Models/RunEditInfo.md
4648
Models/RunResourceRequested.md
4749
Models/RunState.md
4850
Models/RunStatus.md
@@ -61,6 +63,7 @@ Models/RunTemplateUpdateRequest.md
6163
Models/Runner.md
6264
Models/RunnerAccessControl.md
6365
Models/RunnerCreateRequest.md
66+
Models/RunnerEditInfo.md
6467
Models/RunnerResourceSizing.md
6568
Models/RunnerRole.md
6669
Models/RunnerRunTemplateParameterValue.md
@@ -71,6 +74,7 @@ Models/SendRunDataRequest.md
7174
Models/Solution.md
7275
Models/SolutionAccessControl.md
7376
Models/SolutionCreateRequest.md
77+
Models/SolutionEditInfo.md
7478
Models/SolutionRole.md
7579
Models/SolutionSecurity.md
7680
Models/SolutionUpdateRequest.md
@@ -81,6 +85,7 @@ Models/TwincacheStatusEnum.md
8185
Models/Workspace.md
8286
Models/WorkspaceAccessControl.md
8387
Models/WorkspaceCreateRequest.md
88+
Models/WorkspaceEditInfo.md
8489
Models/WorkspaceFile.md
8590
Models/WorkspaceRole.md
8691
Models/WorkspaceSecurity.md

0 commit comments

Comments
 (0)