...
Code Block |
---|
public static object CreateGateway(string projectId, string cloudRegion, string registryName, string gatewayId, string publicKeyFilePath, string algorithm){ var cloudIotcloudIoT = CreateAuthorizedClient(); var registryPath = $"projects/{projectId}/locations/{cloudRegion}" + $"/registries/{registryName}"; Console.WriteLine("Creating gateway with id: {0}", gatewayId); Device body = new Device() { Id = gatewayId, GatewayConfig = new GatewayConfig() { GatewayType = "GATEWAY", GatewayAuthMethod = "ASSOCIATION_ONLY" }, Credentials = new List<DeviceCredential>() { new DeviceCredential() { PublicKey = new PublicKeyCredential() { Key = File.ReadAllText(publicKeyFilePath), Format = (algorithm == "ES256" ? "ES256_PEM" : "RSA_X509_PEM") }, } } }; Device createdDevice = cloudIotcloudIoT.Projects.Locations.Registries .Devices.Create(body, registryPath).Execute(); Console.WriteLine("Created gateway: {0}", createdDevice.ToString()); return 0;} |
...
Configuring the gateway and getting state
With Cloud ClearBlade IoT Core, you can control a gateway by modifying its configuration, just as you would with any other device. See Configuring Devices to learn how to configure a gateway over the MQTT or HTTP bridge.
After a configuration has been applied to a gateway, the gateway can report its state to Cloud ClearBlade IoT Core. You can compare the gateway's state and its most recent configuration to make sure the gateway is doing what it's supposed to be doing.
...
You can authenticate non-gateway devices to Cloud ClearBlade IoT Core by binding them to the gateway. Binding creates an association between the devices and the gateway that Cloud ClearBlade IoT Core checks to authenticate the devices.
...
Code Block |
---|
public static object BindDeviceToGateway(string projectId, string cloudRegion, string registryName, string deviceId, string gatewayId){ CreateDevice(projectId, cloudRegion, registryName, deviceId); var cloudIotcloudIoT = CreateAuthorizedClient(); var registryPath = $"projects/{projectId}" + $"/locations/{cloudRegion}" + $"/registries/{registryName}"; BindDeviceToGatewayRequest req = new BindDeviceToGatewayRequest { DeviceId = deviceId, GatewayId = gatewayId }; var res = cloudIotcloudIoT .Projects .Locations .Registries .BindDeviceToGateway(req, registryPath) .Execute(); Console.WriteLine("Device bound: {0}", res.ToString()); return 0;} |
...
Code Block |
---|
public static object ListDevicesForGateways(string projectId, string cloudRegion, string registryName, string gatewayId){ var cloudIotcloudIoT = CreateAuthorizedClient(); var gatewayPath = $"projects/{projectId}/locations/{cloudRegion}" + $"/registries/{registryName}/devices/{gatewayId}"; var registryPath = $"projects/{projectId}/locations/{cloudRegion}" + $"/registries/{registryName}"; var req = cloudIotcloudIoT.Projects.Locations.Registries.Devices.List(registryPath); req.GatewayListOptionsAssociationsGatewayId = gatewayId; var devices = req.Execute().Devices; if (devices != null) { Console.WriteLine("Found {0} devices", devices.Count); foreach (var device in devices) { Console.WriteLine("ID: {0}", device.Id); } } else { Console.WriteLine("Gateway has no bound devices."); } return 0;} |
...
Code Block |
---|
public static object ListGateways(string projectId, string cloudRegion, string registryName){ var cloudIotcloudIoT = CreateAuthorizedClient(); var registryPath = $"projects/{projectId}/locations/{cloudRegion}/registries/{registryName}"; var req = cloudIotcloudIoT .Projects .Locations .Registries .Devices .List(registryPath); req.FieldMask = "config,gatewayConfig"; var devices = req.Execute().Devices; if (devices != null) { Console.WriteLine("Found {0} devices", devices.Count); devices.ToList().ForEach(device => { if (device.GatewayConfig != null && device.GatewayConfig.GatewayType != null && device.GatewayConfig.GatewayType.Equals("GATEWAY")) { Console.WriteLine("Id :{0}", device.Id); if (device.Config != null) { Console.WriteLine("Config: {0}", device.Config.ToString()); } } } ); } else { Console.WriteLine("Registry has no gateway devices"); } return 0;} |
...
Code Block |
---|
public static object DeleteDevice(string projectId, string cloudRegion, string registryId, string deviceId){ var cloudIotcloudIoT = CreateAuthorizedClient(); // The resource name of the location associated with the key rings. var name = $"projects/{projectId}/locations/{cloudRegion}/registries/{registryId}/devices/{deviceId}"; try { var res = cloudIotcloudIoT.Projects.Locations.Registries.Devices.Delete(name).Execute(); Console.WriteLine($"Removed device: {deviceId}"); } catch (Google.GoogleApiException e) { Console.WriteLine(e.Message); if (e.Error != null) return e.Error.Code; return -1; } return 0;} |
...
Code Block |
---|
public static object DeleteDevice(string projectId, string cloudRegion, string registryId, string deviceId){ var cloudIotcloudIoT = CreateAuthorizedClient(); // The resource name of the location associated with the key rings. var name = $"projects/{projectId}/locations/{cloudRegion}/registries/{registryId}/devices/{deviceId}"; try { var res = cloudIotcloudIoT.Projects.Locations.Registries.Devices.Delete(name).Execute(); Console.WriteLine($"Removed device: {deviceId}"); } catch (Google.GoogleApiException e) { Console.WriteLine(e.Message); if (e.Error != null) return e.Error.Code; return -1; } return 0;} |
...