losant_rest 1.15.2 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,6 +10,7 @@
10
10
  "integrationType": {
11
11
  "type": "string",
12
12
  "enum": [
13
+ "azureEventHub",
13
14
  "googlePubSub",
14
15
  "meridian",
15
16
  "mqtt",
@@ -27,6 +28,32 @@
27
28
  "maxLength": 1024
28
29
  }
29
30
  },
31
+ "azureEventHubConfig": {
32
+ "type": "object",
33
+ "properties": {
34
+ "hubName": {
35
+ "type": "string",
36
+ "maxLength": 256,
37
+ "minLength": 1
38
+ },
39
+ "consumerGroup": {
40
+ "type": "string",
41
+ "maxLength": 256,
42
+ "minLength": 1
43
+ },
44
+ "connectionString": {
45
+ "type": "string",
46
+ "minLength": 1,
47
+ "maxLength": 1024
48
+ }
49
+ },
50
+ "additionalProperties": false,
51
+ "required": [
52
+ "hubName",
53
+ "consumerGroup",
54
+ "connectionString"
55
+ ]
56
+ },
30
57
  "googlePubSubConfig": {
31
58
  "type": "object",
32
59
  "properties": {
@@ -37,6 +37,7 @@
37
37
  "integrationType": {
38
38
  "type": "string",
39
39
  "enum": [
40
+ "azureEventHub",
40
41
  "googlePubSub",
41
42
  "meridian",
42
43
  "mqtt",
@@ -54,6 +55,32 @@
54
55
  "maxLength": 1024
55
56
  }
56
57
  },
58
+ "azureEventHubConfig": {
59
+ "type": "object",
60
+ "properties": {
61
+ "hubName": {
62
+ "type": "string",
63
+ "maxLength": 256,
64
+ "minLength": 1
65
+ },
66
+ "consumerGroup": {
67
+ "type": "string",
68
+ "maxLength": 256,
69
+ "minLength": 1
70
+ },
71
+ "connectionString": {
72
+ "type": "string",
73
+ "minLength": 1,
74
+ "maxLength": 1024
75
+ }
76
+ },
77
+ "additionalProperties": false,
78
+ "required": [
79
+ "hubName",
80
+ "consumerGroup",
81
+ "connectionString"
82
+ ]
83
+ },
57
84
  "googlePubSubConfig": {
58
85
  "type": "object",
59
86
  "properties": {