-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
github-actions[bot]
committed
Jan 30, 2025
1 parent
67961f5
commit 09e5b6e
Showing
42 changed files
with
1,680 additions
and
479 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# ArduinoArduinoconnectionsV1 | ||
|
||
ArduinoArduinoconnectionsV1 media type (default view) | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**catm1** | [**List[ArduinoCredentialsv1]**](ArduinoCredentialsv1.md) | ArduinoCredentialsv1Collection is the media type for an array of ArduinoCredentialsv1 (default view) | [optional] | ||
**cellular** | [**List[ArduinoCredentialsv1]**](ArduinoCredentialsv1.md) | ArduinoCredentialsv1Collection is the media type for an array of ArduinoCredentialsv1 (default view) | [optional] | ||
**eth** | [**List[ArduinoCredentialsv1]**](ArduinoCredentialsv1.md) | ArduinoCredentialsv1Collection is the media type for an array of ArduinoCredentialsv1 (default view) | [optional] | ||
**gsm** | [**List[ArduinoCredentialsv1]**](ArduinoCredentialsv1.md) | ArduinoCredentialsv1Collection is the media type for an array of ArduinoCredentialsv1 (default view) | [optional] | ||
**lora** | [**List[ArduinoCredentialsv1]**](ArduinoCredentialsv1.md) | ArduinoCredentialsv1Collection is the media type for an array of ArduinoCredentialsv1 (default view) | [optional] | ||
**nb** | [**List[ArduinoCredentialsv1]**](ArduinoCredentialsv1.md) | ArduinoCredentialsv1Collection is the media type for an array of ArduinoCredentialsv1 (default view) | [optional] | ||
**wifi** | [**List[ArduinoCredentialsv1]**](ArduinoCredentialsv1.md) | ArduinoCredentialsv1Collection is the media type for an array of ArduinoCredentialsv1 (default view) | [optional] | ||
**wifiandsecret** | [**List[ArduinoCredentialsv1]**](ArduinoCredentialsv1.md) | ArduinoCredentialsv1Collection is the media type for an array of ArduinoCredentialsv1 (default view) | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from iot_api_client.models.arduino_arduinoconnections_v1 import ArduinoArduinoconnectionsV1 | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ArduinoArduinoconnectionsV1 from a JSON string | ||
arduino_arduinoconnections_v1_instance = ArduinoArduinoconnectionsV1.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ArduinoArduinoconnectionsV1.to_json()) | ||
|
||
# convert the object into a dict | ||
arduino_arduinoconnections_v1_dict = arduino_arduinoconnections_v1_instance.to_dict() | ||
# create an instance of ArduinoArduinoconnectionsV1 from a dict | ||
arduino_arduinoconnections_v1_from_dict = ArduinoArduinoconnectionsV1.from_dict(arduino_arduinoconnections_v1_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# Clone | ||
|
||
Add overrides used when performing a clone of a dashboard | ||
|
||
## Properties | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# CreateClaimedDevicesV2Payload | ||
|
||
DeviceV2 describes a device. | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **str** | The id of the device | [optional] | ||
**ble_mac** | **str** | | [optional] | ||
**connection_type** | **str** | The type of the connections selected by the user when multiple connections are available | [optional] | ||
**fqbn** | **str** | The fully qualified board name | [optional] | ||
**name** | **str** | The friendly name of the device | [optional] | ||
**serial** | **str** | The serial uuid of the device | [optional] | ||
**type** | **str** | The type of the device | | ||
**unique_hardware_id** | **str** | The unique hardware id of the device | | ||
**user_id** | **str** | The user_id associated to the device. If absent it will be inferred from the authentication header | | ||
**wifi_fw_version** | **str** | The version of the NINA/WIFI101 firmware running on the device | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from iot_api_client.models.create_claimed_devices_v2_payload import CreateClaimedDevicesV2Payload | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CreateClaimedDevicesV2Payload from a JSON string | ||
create_claimed_devices_v2_payload_instance = CreateClaimedDevicesV2Payload.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CreateClaimedDevicesV2Payload.to_json()) | ||
|
||
# convert the object into a dict | ||
create_claimed_devices_v2_payload_dict = create_claimed_devices_v2_payload_instance.to_dict() | ||
# create an instance of CreateClaimedDevicesV2Payload from a dict | ||
create_claimed_devices_v2_payload_from_dict = CreateClaimedDevicesV2Payload.from_dict(create_claimed_devices_v2_payload_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.