Skip to content

Commit 86d023f

Browse files
author
github-actions[bot]
committed
Release release-20241106083902
1 parent 1b2bdbf commit 86d023f

File tree

122 files changed

+11648
-772
lines changed

Some content is hidden

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

122 files changed

+11648
-772
lines changed

.github/workflows/python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.10", "3.11", "3.12"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717

1818
steps:
1919
- uses: actions/checkout@v4

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,3 @@ target/
6464

6565
#Ipython Notebook
6666
.ipynb_checkpoints
67-
68-
69-
pyproject.toml

.openapi-generator/FILES

+69-102
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
.gitlab-ci.yml
44
.travis.yml
55
README.md
6+
docs/ArduinoAction.md
7+
docs/ArduinoActionTemplate.md
68
docs/ArduinoCompressedv2.md
79
docs/ArduinoCredentialsv1.md
810
docs/ArduinoDashboardowner.md
@@ -25,6 +27,10 @@ docs/ArduinoDevicev2propertyvalueValueStatistics.md
2527
docs/ArduinoDevicev2propertyvalues.md
2628
docs/ArduinoDevicev2propertyvaluesLastEvaluatedKey.md
2729
docs/ArduinoDevicev2templatedevice.md
30+
docs/ArduinoLinkedDevice.md
31+
docs/ArduinoLinkedDeviceTemplate.md
32+
docs/ArduinoLinkedProperty.md
33+
docs/ArduinoLinkedPropertyTemplate.md
2834
docs/ArduinoLinkedvariable.md
2935
docs/ArduinoLoradevicev1.md
3036
docs/ArduinoLorafreqplansv1.md
@@ -48,6 +54,9 @@ docs/ArduinoThingresult.md
4854
docs/ArduinoThingtemplate.md
4955
docs/ArduinoTimeseriesmedia.md
5056
docs/ArduinoTimezone.md
57+
docs/ArduinoTrigger.md
58+
docs/ArduinoTriggerTemplate.md
59+
docs/ArduinoTriggerWithLinkedEntities.md
5160
docs/ArduinoVariableslinks.md
5261
docs/ArduinoWidgetv2.md
5362
docs/ArduinoWidgetv2template.md
@@ -60,14 +69,18 @@ docs/BatchQueryRequestMediaV1.md
6069
docs/BatchQueryRequestsMediaV1.md
6170
docs/BatchQuerySampledRequestMediaV1.md
6271
docs/BatchQuerySampledRequestsMediaV1.md
72+
docs/BodyExpression.md
6373
docs/CheckDevicesV2PassPayload.md
6474
docs/Clone.md
75+
docs/CreateAction.md
6576
docs/CreateDevicesV2CertsPayload.md
6677
docs/CreateDevicesV2Payload.md
6778
docs/CreateLoraDevicesV1Payload.md
6879
docs/DashboardsV2Api.md
6980
docs/Dashboardshare.md
7081
docs/Dashboardv2.md
82+
docs/DeviceStatusSource.md
83+
docs/DeviceStatusSourceWithLinkedDevices.md
7184
docs/DevicesV2Api.md
7285
docs/DevicesV2CertsApi.md
7386
docs/DevicesV2OtaApi.md
@@ -78,6 +91,8 @@ docs/Devicev2Cert.md
7891
docs/Devicev2Otabinaryurl.md
7992
docs/Devicev2Otaurlpyalod.md
8093
docs/Devicev2Pass.md
94+
docs/EmailAction.md
95+
docs/EmailDeliveryOpts.md
8196
docs/Error.md
8297
docs/HistoricDataRequest.md
8398
docs/LoraDevicesV1Api.md
@@ -90,6 +105,8 @@ docs/PropertiesValue.md
90105
docs/PropertiesValues.md
91106
docs/PropertyTypesV1Api.md
92107
docs/PropertyValue.md
108+
docs/PushAction.md
109+
docs/PushDeliveryOpts.md
93110
docs/SeriesV2Api.md
94111
docs/Sharerequest.md
95112
docs/Tag.md
@@ -102,7 +119,13 @@ docs/ThingUpdate.md
102119
docs/ThingsV2Api.md
103120
docs/ThingsV2TagsApi.md
104121
docs/TimeseriesDataPoint.md
122+
docs/TitleExpression.md
123+
docs/Trigger.md
124+
docs/TriggersV1Api.md
125+
docs/UpdateAction.md
105126
docs/UpdateSketch.md
127+
docs/UserRecipient.md
128+
docs/Variable.md
106129
docs/Widget.md
107130
docs/Widgetlink.md
108131
git_push.sh
@@ -123,11 +146,14 @@ iot_api_client/api/series_v2_api.py
123146
iot_api_client/api/templates_api.py
124147
iot_api_client/api/things_v2_api.py
125148
iot_api_client/api/things_v2_tags_api.py
149+
iot_api_client/api/triggers_v1_api.py
126150
iot_api_client/api_client.py
127151
iot_api_client/api_response.py
128152
iot_api_client/configuration.py
129153
iot_api_client/exceptions.py
130154
iot_api_client/models/__init__.py
155+
iot_api_client/models/arduino_action.py
156+
iot_api_client/models/arduino_action_template.py
131157
iot_api_client/models/arduino_compressedv2.py
132158
iot_api_client/models/arduino_credentialsv1.py
133159
iot_api_client/models/arduino_dashboardowner.py
@@ -150,6 +176,10 @@ iot_api_client/models/arduino_devicev2propertyvalue_value_statistics.py
150176
iot_api_client/models/arduino_devicev2propertyvalues.py
151177
iot_api_client/models/arduino_devicev2propertyvalues_last_evaluated_key.py
152178
iot_api_client/models/arduino_devicev2templatedevice.py
179+
iot_api_client/models/arduino_linked_device.py
180+
iot_api_client/models/arduino_linked_device_template.py
181+
iot_api_client/models/arduino_linked_property.py
182+
iot_api_client/models/arduino_linked_property_template.py
153183
iot_api_client/models/arduino_linkedvariable.py
154184
iot_api_client/models/arduino_loradevicev1.py
155185
iot_api_client/models/arduino_lorafreqplansv1.py
@@ -173,6 +203,9 @@ iot_api_client/models/arduino_thingresult.py
173203
iot_api_client/models/arduino_thingtemplate.py
174204
iot_api_client/models/arduino_timeseriesmedia.py
175205
iot_api_client/models/arduino_timezone.py
206+
iot_api_client/models/arduino_trigger.py
207+
iot_api_client/models/arduino_trigger_template.py
208+
iot_api_client/models/arduino_trigger_with_linked_entities.py
176209
iot_api_client/models/arduino_variableslinks.py
177210
iot_api_client/models/arduino_widgetv2.py
178211
iot_api_client/models/arduino_widgetv2template.py
@@ -185,25 +218,33 @@ iot_api_client/models/batch_query_request_media_v1.py
185218
iot_api_client/models/batch_query_requests_media_v1.py
186219
iot_api_client/models/batch_query_sampled_request_media_v1.py
187220
iot_api_client/models/batch_query_sampled_requests_media_v1.py
221+
iot_api_client/models/body_expression.py
188222
iot_api_client/models/check_devices_v2_pass_payload.py
189223
iot_api_client/models/clone.py
224+
iot_api_client/models/create_action.py
190225
iot_api_client/models/create_devices_v2_certs_payload.py
191226
iot_api_client/models/create_devices_v2_payload.py
192227
iot_api_client/models/create_lora_devices_v1_payload.py
193228
iot_api_client/models/dashboardshare.py
194229
iot_api_client/models/dashboardv2.py
230+
iot_api_client/models/device_status_source.py
231+
iot_api_client/models/device_status_source_with_linked_devices.py
195232
iot_api_client/models/devicev2.py
196233
iot_api_client/models/devicev2_cert.py
197234
iot_api_client/models/devicev2_otabinaryurl.py
198235
iot_api_client/models/devicev2_otaurlpyalod.py
199236
iot_api_client/models/devicev2_pass.py
237+
iot_api_client/models/email_action.py
238+
iot_api_client/models/email_delivery_opts.py
200239
iot_api_client/models/error.py
201240
iot_api_client/models/historic_data_request.py
202241
iot_api_client/models/model_property.py
203242
iot_api_client/models/override.py
204243
iot_api_client/models/properties_value.py
205244
iot_api_client/models/properties_values.py
206245
iot_api_client/models/property_value.py
246+
iot_api_client/models/push_action.py
247+
iot_api_client/models/push_delivery_opts.py
207248
iot_api_client/models/sharerequest.py
208249
iot_api_client/models/tag.py
209250
iot_api_client/models/template.py
@@ -212,7 +253,12 @@ iot_api_client/models/thing_create.py
212253
iot_api_client/models/thing_sketch.py
213254
iot_api_client/models/thing_update.py
214255
iot_api_client/models/timeseries_data_point.py
256+
iot_api_client/models/title_expression.py
257+
iot_api_client/models/trigger.py
258+
iot_api_client/models/update_action.py
215259
iot_api_client/models/update_sketch.py
260+
iot_api_client/models/user_recipient.py
261+
iot_api_client/models/variable.py
216262
iot_api_client/models/widget.py
217263
iot_api_client/models/widgetlink.py
218264
iot_api_client/py.typed
@@ -223,106 +269,27 @@ setup.cfg
223269
setup.py
224270
test-requirements.txt
225271
test/__init__.py
226-
test/test_arduino_compressedv2.py
227-
test/test_arduino_credentialsv1.py
228-
test/test_arduino_dashboardowner.py
229-
test/test_arduino_dashboardshare.py
230-
test/test_arduino_dashboardv2.py
231-
test/test_arduino_dashboardv2template.py
232-
test/test_arduino_devicev2.py
233-
test/test_arduino_devicev2_cert.py
234-
test/test_arduino_devicev2_event_properties.py
235-
test/test_arduino_devicev2_otaupload.py
236-
test/test_arduino_devicev2_pass.py
237-
test/test_arduino_devicev2_simple_properties.py
238-
test/test_arduino_devicev2_status_event.py
239-
test/test_arduino_devicev2_status_events.py
240-
test/test_arduino_devicev2_webhook.py
241-
test/test_arduino_devicev2properties.py
242-
test/test_arduino_devicev2propertyvalue.py
243-
test/test_arduino_devicev2propertyvalue_value.py
244-
test/test_arduino_devicev2propertyvalue_value_statistics.py
245-
test/test_arduino_devicev2propertyvalues.py
246-
test/test_arduino_devicev2propertyvalues_last_evaluated_key.py
247-
test/test_arduino_devicev2templatedevice.py
248-
test/test_arduino_linkedvariable.py
249-
test/test_arduino_loradevicev1.py
250-
test/test_arduino_lorafreqplansv1.py
251-
test/test_arduino_lorafreqplanv1.py
252-
test/test_arduino_property.py
253-
test/test_arduino_propertytype.py
254-
test/test_arduino_series_batch.py
255-
test/test_arduino_series_batch_sampled.py
256-
test/test_arduino_series_raw_batch.py
257-
test/test_arduino_series_raw_batch_lastvalue.py
258-
test/test_arduino_series_raw_last_value_response.py
259-
test/test_arduino_series_raw_response.py
260-
test/test_arduino_series_response.py
261-
test/test_arduino_series_sampled_response.py
262-
test/test_arduino_tags.py
263-
test/test_arduino_template.py
264-
test/test_arduino_templateproperty.py
265-
test/test_arduino_templatevariable.py
266-
test/test_arduino_thing.py
267-
test/test_arduino_thingresult.py
268-
test/test_arduino_thingtemplate.py
269-
test/test_arduino_timeseriesmedia.py
270-
test/test_arduino_timezone.py
271-
test/test_arduino_variableslinks.py
272-
test/test_arduino_widgetv2.py
273-
test/test_arduino_widgetv2template.py
274-
test/test_batch_last_value_requests_media_v1.py
275-
test/test_batch_query_raw_last_value_request_media_v1.py
276-
test/test_batch_query_raw_request_media_v1.py
277-
test/test_batch_query_raw_requests_media_v1.py
278-
test/test_batch_query_raw_response_series_media_v1.py
279-
test/test_batch_query_request_media_v1.py
280-
test/test_batch_query_requests_media_v1.py
281-
test/test_batch_query_sampled_request_media_v1.py
282-
test/test_batch_query_sampled_requests_media_v1.py
283-
test/test_check_devices_v2_pass_payload.py
284-
test/test_clone.py
285-
test/test_create_devices_v2_certs_payload.py
286-
test/test_create_devices_v2_payload.py
287-
test/test_create_lora_devices_v1_payload.py
288-
test/test_dashboards_v2_api.py
289-
test/test_dashboardshare.py
290-
test/test_dashboardv2.py
291-
test/test_devices_v2_api.py
292-
test/test_devices_v2_certs_api.py
293-
test/test_devices_v2_ota_api.py
294-
test/test_devices_v2_pass_api.py
295-
test/test_devices_v2_tags_api.py
296-
test/test_devicev2.py
297-
test/test_devicev2_cert.py
298-
test/test_devicev2_otabinaryurl.py
299-
test/test_devicev2_otaurlpyalod.py
300-
test/test_devicev2_pass.py
301-
test/test_error.py
302-
test/test_historic_data_request.py
303-
test/test_lora_devices_v1_api.py
304-
test/test_lora_freq_plan_v1_api.py
305-
test/test_model_property.py
306-
test/test_network_credentials_v1_api.py
307-
test/test_override.py
308-
test/test_properties_v2_api.py
309-
test/test_properties_value.py
310-
test/test_properties_values.py
311-
test/test_property_types_v1_api.py
312-
test/test_property_value.py
313-
test/test_series_v2_api.py
314-
test/test_sharerequest.py
315-
test/test_tag.py
316-
test/test_template.py
317-
test/test_templates_api.py
318-
test/test_thing_clone.py
319-
test/test_thing_create.py
320-
test/test_thing_sketch.py
321-
test/test_thing_update.py
322-
test/test_things_v2_api.py
323-
test/test_things_v2_tags_api.py
324-
test/test_timeseries_data_point.py
325-
test/test_update_sketch.py
326-
test/test_widget.py
327-
test/test_widgetlink.py
272+
test/test_arduino_action.py
273+
test/test_arduino_action_template.py
274+
test/test_arduino_linked_device.py
275+
test/test_arduino_linked_device_template.py
276+
test/test_arduino_linked_property.py
277+
test/test_arduino_linked_property_template.py
278+
test/test_arduino_trigger.py
279+
test/test_arduino_trigger_template.py
280+
test/test_arduino_trigger_with_linked_entities.py
281+
test/test_body_expression.py
282+
test/test_create_action.py
283+
test/test_device_status_source.py
284+
test/test_device_status_source_with_linked_devices.py
285+
test/test_email_action.py
286+
test/test_email_delivery_opts.py
287+
test/test_push_action.py
288+
test/test_push_delivery_opts.py
289+
test/test_title_expression.py
290+
test/test_trigger.py
291+
test/test_triggers_v1_api.py
292+
test/test_update_action.py
293+
test/test_user_recipient.py
294+
test/test_variable.py
328295
tox.ini

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ from iot_api_client.api import DevicesV2Api
7575

7676
# configure and instance the API client
7777
client_config = Configuration(host="https://api2.arduino.cc")
78-
client_config.access_token = YOUR_ACCESS_TOKEN
78+
client_config.access_token = YOUR_ACCESS_TOKEN or token function
7979
client = iot.ApiClient(client_config)
8080

8181
# as an example, interact with the devices API
@@ -89,7 +89,8 @@ try:
8989
api_instance = DevicesV2Api(client)
9090
api_response = api_instance.devices_v2_list()
9191
for device in api_response:
92-
print(device.name+" - id:"+device.id+" - type:"+device.type)
92+
print(device.name)
93+
print(device.type)
9394

9495
except ApiException as e:
9596
print("Exception when calling DevicesV2Api->devices_v2_list: %s\n" % e)

docs/ArduinoAction.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# ArduinoAction
2+
3+
ArduinoAction media type (default view)
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**created_by** | **str** | Id of the user who created the action | [optional]
10+
**description** | **str** | The description of the action | [optional]
11+
**email** | [**EmailAction**](EmailAction.md) | | [optional]
12+
**id** | **str** | The id of the action | [optional]
13+
**kind** | **str** | The kind of the action | [optional]
14+
**name** | **str** | The name of the action | [optional]
15+
**organization_id** | **str** | Id of the organization the trigger belongs to | [optional]
16+
**push_notification** | [**PushAction**](PushAction.md) | | [optional]
17+
**trigger_id** | **str** | Id of the trigger the action is associated to | [optional]
18+
19+
## Example
20+
21+
```python
22+
from iot_api_client.models.arduino_action import ArduinoAction
23+
24+
# TODO update the JSON string below
25+
json = "{}"
26+
# create an instance of ArduinoAction from a JSON string
27+
arduino_action_instance = ArduinoAction.from_json(json)
28+
# print the JSON string representation of the object
29+
print(ArduinoAction.to_json())
30+
31+
# convert the object into a dict
32+
arduino_action_dict = arduino_action_instance.to_dict()
33+
# create an instance of ArduinoAction from a dict
34+
arduino_action_from_dict = ArduinoAction.from_dict(arduino_action_dict)
35+
```
36+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
37+
38+

0 commit comments

Comments
 (0)