import { IoTEnsembleService } from "https://deno.land/x/fathym_atomic_iot@v0.0.50/src/services/IoTEnsembleService.ts";
Methods
EnrollDevice(): Promise<EnrollDeviceResponse>
request: EnrollDeviceRequest,
entLookup: string,
attestationType: DeviceAttestationTypes,
enrollmentType: DeviceEnrollmentTypes,
IssueDeviceSASToken(): Promise<BaseResponseModel<string>>
entLookup: string,
deviceName: string,
expiryInSeconds?,
ListEnrolledDevices(): Promise<BaseResponseModel<Pageable<DeviceInfo>>>
entLookup: string,
page?,
pageSize?,
RevokeDeviceEnrollment(deviceId: string, entLookup: string): Promise<BaseResponse>
SendCloudMessage(): Promise<BaseResponse>
request: Record<string | number | symbol, unknown>,
entLookup: string,
deviceName: string,
SendDeviceMessage(): Promise<BaseResponse>
payload: Record<string | number | symbol, unknown>,
entLookup: string,
deviceName: string,
connStrType?,