Skip to content

Commit aa7e74a

Browse files
committed
✨ Automatic changes -> ✨ New server autogenerated files [ci skip]
1 parent f4262c7 commit aa7e74a

12 files changed

+701
-53
lines changed

changes/20251219123721.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated client due to schema changes

client/.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ docs/FPGAWorkload.md
120120
docs/FPGAsAPI.md
121121
docs/FieldObject.md
122122
docs/GenericWorkJobCollection.md
123+
docs/GenericWorkJobControlCommandItem.md
123124
docs/GenericWorkJobItem.md
124125
docs/GenericWorkJobItemLinks.md
125126
docs/GenericWorkJobsAPI.md
@@ -275,6 +276,7 @@ model_fpga_target_id.go
275276
model_fpga_workload.go
276277
model_fpgauart_connection.go
277278
model_generic_work_job_collection.go
279+
model_generic_work_job_control_command_item.go
278280
model_generic_work_job_item.go
279281
model_generic_work_job_item_links.go
280282
model_generic_worker_collection.go

client/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ Class | Method | HTTP request | Description
194194
*FPGAsAPI* | [**UpdateFpga**](docs/FPGAsAPI.md#updatefpga) | **Put** /fpgas/{fpgaName} | Update the status of the FPGA.
195195
*GenericWorkJobsAPI* | [**CancelGenericWorkJob**](docs/GenericWorkJobsAPI.md#cancelgenericworkjob) | **Post** /generic-work-jobs/{jobName}/cancel | Cancel a generic job.
196196
*GenericWorkJobsAPI* | [**CompleteGenericWorkJob**](docs/GenericWorkJobsAPI.md#completegenericworkjob) | **Post** /generic-work-jobs/{jobName}/complete | Stop a generic job gracefully.
197+
*GenericWorkJobsAPI* | [**ControlGenericWorkJob**](docs/GenericWorkJobsAPI.md#controlgenericworkjob) | **Post** /generic-work-jobs/{jobName}/control | Send a control command for a generic job.
197198
*GenericWorkJobsAPI* | [**DeleteGenericWorkJob**](docs/GenericWorkJobsAPI.md#deletegenericworkjob) | **Delete** /generic-work-jobs/{jobName} | Delete a generic job.
198199
*GenericWorkJobsAPI* | [**GetGenericWorkJob**](docs/GenericWorkJobsAPI.md#getgenericworkjob) | **Get** /generic-work-jobs/{jobName} | Return the status of a Generic Work Job.
199200
*GenericWorkJobsAPI* | [**GetGenericWorkJobArtefactManager**](docs/GenericWorkJobsAPI.md#getgenericworkjobartefactmanager) | **Get** /generic-work-jobs/{jobName}/artefacts/{artefactName} | Get the job's artefact manager for the artefact named `artefactName`.
@@ -358,6 +359,7 @@ Class | Method | HTTP request | Description
358359
- [FPGAWorkload](docs/FPGAWorkload.md)
359360
- [FieldObject](docs/FieldObject.md)
360361
- [GenericWorkJobCollection](docs/GenericWorkJobCollection.md)
362+
- [GenericWorkJobControlCommandItem](docs/GenericWorkJobControlCommandItem.md)
361363
- [GenericWorkJobItem](docs/GenericWorkJobItem.md)
362364
- [GenericWorkJobItemLinks](docs/GenericWorkJobItemLinks.md)
363365
- [GenericWorkerCollection](docs/GenericWorkerCollection.md)

client/api_generic_work_jobs.go

Lines changed: 201 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/api_workspace.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
<!--
2+
Copyright (C) 2020-2025 Arm Limited or its affiliates and Contributors. All rights reserved.
3+
SPDX-License-Identifier: Apache-2.0
4+
-->
5+
# GenericWorkJobControlCommandItem
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**Args** | Pointer to **map[string]string** | Optional arguments supplied with a job control command. | [optional]
12+
**Name** | **string** | Name of a control command within a namespace. |
13+
**Namespace** | **string** | The logical scope of a control command. |
14+
15+
## Methods
16+
17+
### NewGenericWorkJobControlCommandItem
18+
19+
`func NewGenericWorkJobControlCommandItem(name string, namespace string, ) *GenericWorkJobControlCommandItem`
20+
21+
NewGenericWorkJobControlCommandItem instantiates a new GenericWorkJobControlCommandItem object
22+
This constructor will assign default values to properties that have it defined,
23+
and makes sure properties required by API are set, but the set of arguments
24+
will change when the set of required properties is changed
25+
26+
### NewGenericWorkJobControlCommandItemWithDefaults
27+
28+
`func NewGenericWorkJobControlCommandItemWithDefaults() *GenericWorkJobControlCommandItem`
29+
30+
NewGenericWorkJobControlCommandItemWithDefaults instantiates a new GenericWorkJobControlCommandItem object
31+
This constructor will only assign default values to properties that have it defined,
32+
but it doesn't guarantee that properties required by API are set
33+
34+
### GetArgs
35+
36+
`func (o *GenericWorkJobControlCommandItem) GetArgs() map[string]string`
37+
38+
GetArgs returns the Args field if non-nil, zero value otherwise.
39+
40+
### GetArgsOk
41+
42+
`func (o *GenericWorkJobControlCommandItem) GetArgsOk() (*map[string]string, bool)`
43+
44+
GetArgsOk returns a tuple with the Args field if it's non-nil, zero value otherwise
45+
and a boolean to check if the value has been set.
46+
47+
### SetArgs
48+
49+
`func (o *GenericWorkJobControlCommandItem) SetArgs(v map[string]string)`
50+
51+
SetArgs sets Args field to given value.
52+
53+
### HasArgs
54+
55+
`func (o *GenericWorkJobControlCommandItem) HasArgs() bool`
56+
57+
HasArgs returns a boolean if a field has been set.
58+
59+
### SetArgsNil
60+
61+
`func (o *GenericWorkJobControlCommandItem) SetArgsNil(b bool)`
62+
63+
SetArgsNil sets the value for Args to be an explicit nil
64+
65+
### UnsetArgs
66+
`func (o *GenericWorkJobControlCommandItem) UnsetArgs()`
67+
68+
UnsetArgs ensures that no value is present for Args, not even an explicit nil
69+
### GetName
70+
71+
`func (o *GenericWorkJobControlCommandItem) GetName() string`
72+
73+
GetName returns the Name field if non-nil, zero value otherwise.
74+
75+
### GetNameOk
76+
77+
`func (o *GenericWorkJobControlCommandItem) GetNameOk() (*string, bool)`
78+
79+
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
80+
and a boolean to check if the value has been set.
81+
82+
### SetName
83+
84+
`func (o *GenericWorkJobControlCommandItem) SetName(v string)`
85+
86+
SetName sets Name field to given value.
87+
88+
89+
### GetNamespace
90+
91+
`func (o *GenericWorkJobControlCommandItem) GetNamespace() string`
92+
93+
GetNamespace returns the Namespace field if non-nil, zero value otherwise.
94+
95+
### GetNamespaceOk
96+
97+
`func (o *GenericWorkJobControlCommandItem) GetNamespaceOk() (*string, bool)`
98+
99+
GetNamespaceOk returns a tuple with the Namespace field if it's non-nil, zero value otherwise
100+
and a boolean to check if the value has been set.
101+
102+
### SetNamespace
103+
104+
`func (o *GenericWorkJobControlCommandItem) SetNamespace(v string)`
105+
106+
SetNamespace sets Namespace field to given value.
107+
108+
109+
110+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
111+
112+

0 commit comments

Comments
 (0)