/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * The combination of Package, Station and Model which represents the version of the LoRaWAN Wireless Device. */ export type LoRaWANDevice = { DevEui?: string; DeviceProfileId?: string; ServiceProfileId?: string; OtaaV11?: OtaaV11; OtaaV10x?: OtaaV10X; AbpV11?: AbpV11; AbpV10x?: AbpV10X; } & { [k: string]: unknown; }; /** * Create and manage wireless gateways, including LoRa gateways. */ export interface AwsIotwirelessWirelessdevice { /** * Wireless device type, currently only Sidewalk and LoRa */ Type: "Sidewalk" | "LoRaWAN"; /** * Wireless device name */ Name?: string; /** * Wireless device description */ Description?: string; /** * Wireless device destination name */ DestinationName: string; LoRaWAN?: LoRaWANDevice; /** * A list of key-value pairs that contain metadata for the device. Currently not supported, will not create if tags are passed. * * @maxItems 200 */ Tags?: Tag[]; /** * Wireless device arn. Returned after successful create. */ Arn?: string; /** * Wireless device Id. Returned after successful create. */ Id?: string; /** * Thing arn. Passed into update to associate Thing with Wireless device. */ ThingArn?: string; /** * Thing Arn. If there is a Thing created, this can be returned with a Get call. */ ThingName?: string; /** * The date and time when the most recent uplink was received. */ LastUplinkReceivedAt?: string; } export interface OtaaV11 { AppKey: string; NwkKey: string; JoinEui: string; } export interface OtaaV10X { AppKey: string; AppEui: string; } export interface AbpV11 { DevAddr: string; SessionKeys: SessionKeysAbpV11; } export interface SessionKeysAbpV11 { FNwkSIntKey: string; SNwkSIntKey: string; NwkSEncKey: string; AppSKey: string; } export interface AbpV10X { DevAddr: string; SessionKeys: SessionKeysAbpV10X; } export interface SessionKeysAbpV10X { NwkSKey: string; AppSKey: string; } export interface Tag { Key?: string; Value?: string; }