Skip to content

Commit eed4434

Browse files
author
github-actions[bot]
committed
Release release-20260603094055
1 parent ccef8cc commit eed4434

12 files changed

Lines changed: 295 additions & 2 deletions

.openapi-generator/FILES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,5 +290,4 @@ model_widget.go
290290
model_widgetlink.go
291291
model_widgetv3.go
292292
response.go
293-
test/api_dashboards_v3_test.go
294293
utils.go

api/openapi.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4245,6 +4245,15 @@ paths:
42454245
schema:
42464246
$ref: '#/components/schemas/error'
42474247
description: Forbidden
4248+
"409":
4249+
content:
4250+
application/vnd.arduino.devicev2+json:
4251+
schema:
4252+
$ref: '#/components/schemas/error'
4253+
application/vnd.goa.error+json:
4254+
schema:
4255+
$ref: '#/components/schemas/error'
4256+
description: Conflict
42484257
"412":
42494258
content:
42504259
application/vnd.arduino.devicev2+json:
@@ -7463,6 +7472,10 @@ components:
74637472
type: string
74647473
lib_version:
74657474
type: string
7475+
locked:
7476+
description: True if the device is locked and can't be claimed by another
7477+
user
7478+
type: boolean
74667479
metadata:
74677480
additionalProperties: true
74687481
description: The metadata of the device
@@ -9745,6 +9758,7 @@ components:
97459758
wifi_fw_version: wifi_fw_version
97469759
ID: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
97479760
unique_hardware_id: unique_hardware_id
9761+
locked: true
97489762
type: mkrwifi1010
97499763
properties:
97509764
ID:
@@ -9772,6 +9786,10 @@ components:
97729786
fqbn:
97739787
description: The fully qualified board name
97749788
type: string
9789+
locked:
9790+
description: True if the device is locked and can't be claimed by another
9791+
user
9792+
type: boolean
97759793
name:
97769794
description: The friendly name of the device
97779795
maxLength: 64
@@ -9877,6 +9895,7 @@ components:
98779895
name: name
98789896
wifi_fw_version: wifi_fw_version
98799897
unique_hardware_id: unique_hardware_id
9898+
locked: true
98809899
type: mkrwifi1010
98819900
properties:
98829901
ble_mac:
@@ -9900,6 +9919,10 @@ components:
99009919
fqbn:
99019920
description: The fully qualified board name
99029921
type: string
9922+
locked:
9923+
description: True if the device is locked and can't be claimed by another
9924+
user
9925+
type: boolean
99039926
name:
99049927
description: The friendly name of the device
99059928
maxLength: 64
@@ -10382,6 +10405,10 @@ components:
1038210405
fqbn:
1038310406
description: The fully qualified board name
1038410407
type: string
10408+
locked:
10409+
description: True if the device is locked and can't be claimed by another
10410+
user
10411+
type: boolean
1038510412
name:
1038610413
description: The friendly name of the device
1038710414
maxLength: 64

api_devices_v2.go

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

configuration.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/ArduinoDevicev2.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
1818
**LastActivityAt** | Pointer to **time.Time** | Last activity date | [optional]
1919
**LatestWifiFwVersion** | Pointer to **string** | The latest version of the NINA/WIFI101 firmware available for this device | [optional]
2020
**LibVersion** | Pointer to **string** | | [optional]
21+
**Locked** | Pointer to **bool** | True if the device is locked and can't be claimed by another user | [optional]
2122
**Metadata** | Pointer to **map[string]interface{}** | The metadata of the device | [optional]
2223
**Name** | **string** | The friendly name of the device |
2324
**NoSketch** | Pointer to **bool** | True if the device type can not have an associated sketch | [optional]
@@ -389,6 +390,31 @@ SetLibVersion sets LibVersion field to given value.
389390

390391
HasLibVersion returns a boolean if a field has been set.
391392

393+
### GetLocked
394+
395+
`func (o *ArduinoDevicev2) GetLocked() bool`
396+
397+
GetLocked returns the Locked field if non-nil, zero value otherwise.
398+
399+
### GetLockedOk
400+
401+
`func (o *ArduinoDevicev2) GetLockedOk() (*bool, bool)`
402+
403+
GetLockedOk returns a tuple with the Locked field if it's non-nil, zero value otherwise
404+
and a boolean to check if the value has been set.
405+
406+
### SetLocked
407+
408+
`func (o *ArduinoDevicev2) SetLocked(v bool)`
409+
410+
SetLocked sets Locked field to given value.
411+
412+
### HasLocked
413+
414+
`func (o *ArduinoDevicev2) HasLocked() bool`
415+
416+
HasLocked returns a boolean if a field has been set.
417+
392418
### GetMetadata
393419

394420
`func (o *ArduinoDevicev2) GetMetadata() map[string]interface{}`

docs/CreateClaimedDevicesV2Payload.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**BleMac** | Pointer to **string** | | [optional]
99
**ConnectionType** | Pointer to **string** | The type of the connections selected by the user when multiple connections are available | [optional]
1010
**Fqbn** | Pointer to **string** | The fully qualified board name | [optional]
11+
**Locked** | Pointer to **bool** | True if the device is locked and can't be claimed by another user | [optional]
1112
**Name** | Pointer to **string** | The friendly name of the device | [optional]
1213
**Serial** | Pointer to **string** | The serial uuid of the device | [optional]
1314
**Type** | **string** | The type of the device |
@@ -134,6 +135,31 @@ SetFqbn sets Fqbn field to given value.
134135

135136
HasFqbn returns a boolean if a field has been set.
136137

138+
### GetLocked
139+
140+
`func (o *CreateClaimedDevicesV2Payload) GetLocked() bool`
141+
142+
GetLocked returns the Locked field if non-nil, zero value otherwise.
143+
144+
### GetLockedOk
145+
146+
`func (o *CreateClaimedDevicesV2Payload) GetLockedOk() (*bool, bool)`
147+
148+
GetLockedOk returns a tuple with the Locked field if it's non-nil, zero value otherwise
149+
and a boolean to check if the value has been set.
150+
151+
### SetLocked
152+
153+
`func (o *CreateClaimedDevicesV2Payload) SetLocked(v bool)`
154+
155+
SetLocked sets Locked field to given value.
156+
157+
### HasLocked
158+
159+
`func (o *CreateClaimedDevicesV2Payload) HasLocked() bool`
160+
161+
HasLocked returns a boolean if a field has been set.
162+
137163
### GetName
138164

139165
`func (o *CreateClaimedDevicesV2Payload) GetName() string`

docs/CreateDevicesV2Payload.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
**BleMac** | Pointer to **string** | | [optional]
88
**ConnectionType** | Pointer to **string** | The type of the connections selected by the user when multiple connections are available | [optional]
99
**Fqbn** | Pointer to **string** | The fully qualified board name | [optional]
10+
**Locked** | Pointer to **bool** | True if the device is locked and can't be claimed by another user | [optional]
1011
**Name** | Pointer to **string** | The friendly name of the device | [optional]
1112
**Serial** | Pointer to **string** | The serial uuid of the device | [optional]
1213
**SoftDeleted** | Pointer to **bool** | If false, restore the thing from the soft deletion | [optional] [default to false]
@@ -109,6 +110,31 @@ SetFqbn sets Fqbn field to given value.
109110

110111
HasFqbn returns a boolean if a field has been set.
111112

113+
### GetLocked
114+
115+
`func (o *CreateDevicesV2Payload) GetLocked() bool`
116+
117+
GetLocked returns the Locked field if non-nil, zero value otherwise.
118+
119+
### GetLockedOk
120+
121+
`func (o *CreateDevicesV2Payload) GetLockedOk() (*bool, bool)`
122+
123+
GetLockedOk returns a tuple with the Locked field if it's non-nil, zero value otherwise
124+
and a boolean to check if the value has been set.
125+
126+
### SetLocked
127+
128+
`func (o *CreateDevicesV2Payload) SetLocked(v bool)`
129+
130+
SetLocked sets Locked field to given value.
131+
132+
### HasLocked
133+
134+
`func (o *CreateDevicesV2Payload) HasLocked() bool`
135+
136+
HasLocked returns a boolean if a field has been set.
137+
112138
### GetName
113139

114140
`func (o *CreateDevicesV2Payload) GetName() string`

docs/Devicev2.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
**BleMac** | Pointer to **string** | | [optional]
88
**ConnectionType** | Pointer to **string** | The type of the connections selected by the user when multiple connections are available | [optional]
99
**Fqbn** | Pointer to **string** | The fully qualified board name | [optional]
10+
**Locked** | Pointer to **bool** | True if the device is locked and can't be claimed by another user | [optional]
1011
**Name** | Pointer to **string** | The friendly name of the device | [optional]
1112
**Serial** | Pointer to **string** | The serial uuid of the device | [optional]
1213
**SoftDeleted** | Pointer to **bool** | If false, restore the thing from the soft deletion | [optional] [default to false]
@@ -109,6 +110,31 @@ SetFqbn sets Fqbn field to given value.
109110

110111
HasFqbn returns a boolean if a field has been set.
111112

113+
### GetLocked
114+
115+
`func (o *Devicev2) GetLocked() bool`
116+
117+
GetLocked returns the Locked field if non-nil, zero value otherwise.
118+
119+
### GetLockedOk
120+
121+
`func (o *Devicev2) GetLockedOk() (*bool, bool)`
122+
123+
GetLockedOk returns a tuple with the Locked field if it's non-nil, zero value otherwise
124+
and a boolean to check if the value has been set.
125+
126+
### SetLocked
127+
128+
`func (o *Devicev2) SetLocked(v bool)`
129+
130+
SetLocked sets Locked field to given value.
131+
132+
### HasLocked
133+
134+
`func (o *Devicev2) HasLocked() bool`
135+
136+
HasLocked returns a boolean if a field has been set.
137+
112138
### GetName
113139

114140
`func (o *Devicev2) GetName() string`

model_arduino_devicev2.go

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

0 commit comments

Comments
 (0)