losant_rest 1.21.0 → 1.21.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/docs/_schemas.md +1180 -72
- data/docs/application.md +1 -0
- data/docs/devices.md +45 -2
- data/docs/instance.md +41 -0
- data/docs/instanceOrg.md +49 -5
- data/docs/instanceSandbox.md +179 -3
- data/docs/me.md +1 -0
- data/docs/org.md +1 -0
- data/lib/platform_rest/application.rb +2 -0
- data/lib/platform_rest/client.rb +2 -2
- data/lib/platform_rest/devices.rb +52 -2
- data/lib/platform_rest/instance.rb +50 -0
- data/lib/platform_rest/instance_org.rb +57 -5
- data/lib/platform_rest/instance_sandbox.rb +211 -3
- data/lib/platform_rest/me.rb +2 -0
- data/lib/platform_rest/org.rb +2 -0
- data/lib/platform_rest/version.rb +1 -1
- data/schemas/advancedDeviceQuery.json +103 -0
- data/schemas/apiTokenPost.json +7 -0
- data/schemas/bulkRestoreResponse.json +12 -0
- data/schemas/dataExport.json +103 -0
- data/schemas/device.json +4 -0
- data/schemas/devices.json +4 -0
- data/schemas/devicesDeleteOrRestorePost.json +2061 -0
- data/schemas/devicesExportPayloadCountPost.json +103 -0
- data/schemas/devicesExportPost.json +103 -0
- data/schemas/devicesPatch.json +103 -0
- data/schemas/devicesRemoveDataPost.json +103 -0
- data/schemas/githubLogin.json +7 -0
- data/schemas/lastValueQuery.json +103 -0
- data/schemas/multiDeviceCommand.json +103 -0
- data/schemas/samlResponse.json +7 -0
- data/schemas/timeSeriesQuery.json +103 -0
- data/schemas/userCredentials.json +7 -0
- data/schemas/userPost.json +7 -0
- metadata +4 -2
data/docs/_schemas.md
CHANGED
@@ -54,6 +54,7 @@
|
|
54
54
|
* [Authenticated Device](#authenticated-device)
|
55
55
|
* [Authenticated User](#authenticated-user)
|
56
56
|
* [Bulk Deletion Response](#bulk-deletion-response)
|
57
|
+
* [Bulk Restoration Response](#bulk-restoration-response)
|
57
58
|
* [Change Password](#change-password)
|
58
59
|
* [Composite Device State](#composite-device-state)
|
59
60
|
* [Devices Composite State](#devices-composite-state)
|
@@ -109,7 +110,7 @@
|
|
109
110
|
* [Device States](#device-states)
|
110
111
|
* [Device Tag Filter](#device-tag-filter)
|
111
112
|
* [Devices](#devices)
|
112
|
-
* [Devices Delete Post](#devices-delete-post)
|
113
|
+
* [Devices Delete Or Restore Post](#devices-delete-or-restore-post)
|
113
114
|
* [Devices Payload Count Export Post](#devices-payload-count-export-post)
|
114
115
|
* [Devices Metadata Export Post](#devices-metadata-export-post)
|
115
116
|
* [Devices Historical Import Post](#devices-historical-import-post)
|
@@ -2188,6 +2189,109 @@ Schema for advanced device queries
|
|
2188
2189
|
}
|
2189
2190
|
]
|
2190
2191
|
},
|
2192
|
+
"deletedAt": {
|
2193
|
+
"oneOf": [
|
2194
|
+
{
|
2195
|
+
"type": [
|
2196
|
+
"string",
|
2197
|
+
"number",
|
2198
|
+
"boolean",
|
2199
|
+
"null"
|
2200
|
+
]
|
2201
|
+
},
|
2202
|
+
{
|
2203
|
+
"type": "object",
|
2204
|
+
"properties": {
|
2205
|
+
"$eq": {
|
2206
|
+
"type": [
|
2207
|
+
"string",
|
2208
|
+
"number",
|
2209
|
+
"boolean",
|
2210
|
+
"null"
|
2211
|
+
]
|
2212
|
+
},
|
2213
|
+
"$ne": {
|
2214
|
+
"type": [
|
2215
|
+
"string",
|
2216
|
+
"number",
|
2217
|
+
"boolean",
|
2218
|
+
"null"
|
2219
|
+
]
|
2220
|
+
},
|
2221
|
+
"$gt": {
|
2222
|
+
"type": [
|
2223
|
+
"string",
|
2224
|
+
"number",
|
2225
|
+
"boolean",
|
2226
|
+
"null"
|
2227
|
+
]
|
2228
|
+
},
|
2229
|
+
"$lt": {
|
2230
|
+
"type": [
|
2231
|
+
"string",
|
2232
|
+
"number",
|
2233
|
+
"boolean",
|
2234
|
+
"null"
|
2235
|
+
]
|
2236
|
+
},
|
2237
|
+
"$gte": {
|
2238
|
+
"type": [
|
2239
|
+
"string",
|
2240
|
+
"number",
|
2241
|
+
"boolean",
|
2242
|
+
"null"
|
2243
|
+
]
|
2244
|
+
},
|
2245
|
+
"$lte": {
|
2246
|
+
"type": [
|
2247
|
+
"string",
|
2248
|
+
"number",
|
2249
|
+
"boolean",
|
2250
|
+
"null"
|
2251
|
+
]
|
2252
|
+
},
|
2253
|
+
"$startsWith": {
|
2254
|
+
"type": "string",
|
2255
|
+
"minLength": 1
|
2256
|
+
},
|
2257
|
+
"$endsWith": {
|
2258
|
+
"type": "string",
|
2259
|
+
"minLength": 1
|
2260
|
+
},
|
2261
|
+
"$contains": {
|
2262
|
+
"type": "string",
|
2263
|
+
"minLength": 1
|
2264
|
+
},
|
2265
|
+
"$ci": {
|
2266
|
+
"type": "boolean"
|
2267
|
+
},
|
2268
|
+
"$in": {
|
2269
|
+
"type": "array",
|
2270
|
+
"maxItems": 100,
|
2271
|
+
"items": {
|
2272
|
+
"type": [
|
2273
|
+
"string",
|
2274
|
+
"number",
|
2275
|
+
"boolean"
|
2276
|
+
]
|
2277
|
+
}
|
2278
|
+
},
|
2279
|
+
"$nin": {
|
2280
|
+
"type": "array",
|
2281
|
+
"maxItems": 100,
|
2282
|
+
"items": {
|
2283
|
+
"type": [
|
2284
|
+
"string",
|
2285
|
+
"number",
|
2286
|
+
"boolean"
|
2287
|
+
]
|
2288
|
+
}
|
2289
|
+
}
|
2290
|
+
},
|
2291
|
+
"additionalProperties": false
|
2292
|
+
}
|
2293
|
+
]
|
2294
|
+
},
|
2191
2295
|
"name": {
|
2192
2296
|
"oneOf": [
|
2193
2297
|
{
|
@@ -13212,6 +13316,7 @@ Schema for the body of an API Token creation request
|
|
13212
13316
|
"devices.attributeNames",
|
13213
13317
|
"devices.patch",
|
13214
13318
|
"devices.delete",
|
13319
|
+
"devices.restore",
|
13215
13320
|
"devices.removeData",
|
13216
13321
|
"devices.detailedSummary",
|
13217
13322
|
"devices.deviceNames",
|
@@ -13406,6 +13511,7 @@ Schema for the body of an API Token creation request
|
|
13406
13511
|
"instance.patch",
|
13407
13512
|
"instance.historicalSummaries",
|
13408
13513
|
"instance.generateReport",
|
13514
|
+
"instance.payloadCounts",
|
13409
13515
|
"instance.payloadCountsBreakdown",
|
13410
13516
|
"instance.deviceCounts",
|
13411
13517
|
"instance.notebookMinuteCounts",
|
@@ -13413,6 +13519,7 @@ Schema for the body of an API Token creation request
|
|
13413
13519
|
"instanceOrg.get",
|
13414
13520
|
"instanceOrg.patch",
|
13415
13521
|
"instanceOrg.delete",
|
13522
|
+
"instanceOrg.payloadCounts",
|
13416
13523
|
"instanceOrg.payloadCountsBreakdown",
|
13417
13524
|
"instanceOrg.deviceCounts",
|
13418
13525
|
"instanceOrg.notebookMinuteCounts",
|
@@ -13470,6 +13577,10 @@ Schema for the body of an API Token creation request
|
|
13470
13577
|
"instanceSandbox.get",
|
13471
13578
|
"instanceSandbox.delete",
|
13472
13579
|
"instanceSandbox.undelete",
|
13580
|
+
"instanceSandbox.payloadCounts",
|
13581
|
+
"instanceSandbox.payloadCountsBreakdown",
|
13582
|
+
"instanceSandbox.deviceCounts",
|
13583
|
+
"instanceSandbox.notebookMinuteCounts",
|
13473
13584
|
"instanceSandboxes.*",
|
13474
13585
|
"instanceSandboxes.get",
|
13475
13586
|
"instanceAuditLog.*",
|
@@ -25999,6 +26110,36 @@ Schema for the response to a bulk deletion
|
|
25999
26110
|
|
26000
26111
|
<br/>
|
26001
26112
|
|
26113
|
+
## Bulk Restoration Response
|
26114
|
+
|
26115
|
+
Schema for the response to a bulk restore request
|
26116
|
+
|
26117
|
+
### <a name="bulk-restoration-response-schema"></a> Schema
|
26118
|
+
|
26119
|
+
```json
|
26120
|
+
{
|
26121
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
26122
|
+
"type": "object",
|
26123
|
+
"properties": {
|
26124
|
+
"restored": {
|
26125
|
+
"type": "number"
|
26126
|
+
},
|
26127
|
+
"failed": {
|
26128
|
+
"type": "number"
|
26129
|
+
}
|
26130
|
+
}
|
26131
|
+
}
|
26132
|
+
```
|
26133
|
+
### <a name="bulk-restoration-response-example"></a> Example
|
26134
|
+
|
26135
|
+
```json
|
26136
|
+
{
|
26137
|
+
"restored": 3
|
26138
|
+
}
|
26139
|
+
```
|
26140
|
+
|
26141
|
+
<br/>
|
26142
|
+
|
26002
26143
|
## Change Password
|
26003
26144
|
|
26004
26145
|
Schema for the body of a request to change the current user's password
|
@@ -63301,7 +63442,7 @@ Schema for exporting data devices query
|
|
63301
63442
|
}
|
63302
63443
|
]
|
63303
63444
|
},
|
63304
|
-
"
|
63445
|
+
"deletedAt": {
|
63305
63446
|
"oneOf": [
|
63306
63447
|
{
|
63307
63448
|
"type": [
|
@@ -63404,7 +63545,7 @@ Schema for exporting data devices query
|
|
63404
63545
|
}
|
63405
63546
|
]
|
63406
63547
|
},
|
63407
|
-
"
|
63548
|
+
"name": {
|
63408
63549
|
"oneOf": [
|
63409
63550
|
{
|
63410
63551
|
"type": [
|
@@ -63507,112 +63648,215 @@ Schema for exporting data devices query
|
|
63507
63648
|
}
|
63508
63649
|
]
|
63509
63650
|
},
|
63510
|
-
"
|
63651
|
+
"deviceClass": {
|
63511
63652
|
"oneOf": [
|
63512
63653
|
{
|
63513
|
-
"
|
63514
|
-
|
63515
|
-
|
63516
|
-
|
63517
|
-
|
63518
|
-
{
|
63519
|
-
"type": "null"
|
63520
|
-
}
|
63654
|
+
"type": [
|
63655
|
+
"string",
|
63656
|
+
"number",
|
63657
|
+
"boolean",
|
63658
|
+
"null"
|
63521
63659
|
]
|
63522
63660
|
},
|
63523
63661
|
{
|
63524
63662
|
"type": "object",
|
63525
63663
|
"properties": {
|
63526
63664
|
"$eq": {
|
63527
|
-
"
|
63528
|
-
|
63529
|
-
|
63530
|
-
|
63531
|
-
|
63532
|
-
{
|
63533
|
-
"type": "null"
|
63534
|
-
}
|
63665
|
+
"type": [
|
63666
|
+
"string",
|
63667
|
+
"number",
|
63668
|
+
"boolean",
|
63669
|
+
"null"
|
63535
63670
|
]
|
63536
63671
|
},
|
63537
63672
|
"$ne": {
|
63538
|
-
"
|
63539
|
-
|
63540
|
-
|
63541
|
-
|
63542
|
-
|
63543
|
-
{
|
63544
|
-
"type": "null"
|
63545
|
-
}
|
63673
|
+
"type": [
|
63674
|
+
"string",
|
63675
|
+
"number",
|
63676
|
+
"boolean",
|
63677
|
+
"null"
|
63546
63678
|
]
|
63547
63679
|
},
|
63548
63680
|
"$gt": {
|
63549
|
-
"
|
63550
|
-
|
63551
|
-
|
63552
|
-
|
63553
|
-
|
63554
|
-
{
|
63555
|
-
"type": "null"
|
63556
|
-
}
|
63681
|
+
"type": [
|
63682
|
+
"string",
|
63683
|
+
"number",
|
63684
|
+
"boolean",
|
63685
|
+
"null"
|
63557
63686
|
]
|
63558
63687
|
},
|
63559
63688
|
"$lt": {
|
63560
|
-
"
|
63561
|
-
|
63562
|
-
|
63563
|
-
|
63564
|
-
|
63565
|
-
{
|
63566
|
-
"type": "null"
|
63567
|
-
}
|
63689
|
+
"type": [
|
63690
|
+
"string",
|
63691
|
+
"number",
|
63692
|
+
"boolean",
|
63693
|
+
"null"
|
63568
63694
|
]
|
63569
63695
|
},
|
63570
63696
|
"$gte": {
|
63571
|
-
"
|
63572
|
-
|
63573
|
-
|
63574
|
-
|
63575
|
-
|
63576
|
-
{
|
63577
|
-
"type": "null"
|
63578
|
-
}
|
63697
|
+
"type": [
|
63698
|
+
"string",
|
63699
|
+
"number",
|
63700
|
+
"boolean",
|
63701
|
+
"null"
|
63579
63702
|
]
|
63580
63703
|
},
|
63581
63704
|
"$lte": {
|
63582
|
-
"
|
63583
|
-
|
63584
|
-
|
63585
|
-
|
63586
|
-
|
63587
|
-
{
|
63588
|
-
"type": "null"
|
63589
|
-
}
|
63705
|
+
"type": [
|
63706
|
+
"string",
|
63707
|
+
"number",
|
63708
|
+
"boolean",
|
63709
|
+
"null"
|
63590
63710
|
]
|
63591
63711
|
},
|
63712
|
+
"$startsWith": {
|
63713
|
+
"type": "string",
|
63714
|
+
"minLength": 1
|
63715
|
+
},
|
63716
|
+
"$endsWith": {
|
63717
|
+
"type": "string",
|
63718
|
+
"minLength": 1
|
63719
|
+
},
|
63720
|
+
"$contains": {
|
63721
|
+
"type": "string",
|
63722
|
+
"minLength": 1
|
63723
|
+
},
|
63724
|
+
"$ci": {
|
63725
|
+
"type": "boolean"
|
63726
|
+
},
|
63592
63727
|
"$in": {
|
63593
63728
|
"type": "array",
|
63594
63729
|
"maxItems": 100,
|
63595
63730
|
"items": {
|
63596
|
-
"type":
|
63597
|
-
|
63731
|
+
"type": [
|
63732
|
+
"string",
|
63733
|
+
"number",
|
63734
|
+
"boolean"
|
63735
|
+
]
|
63598
63736
|
}
|
63599
63737
|
},
|
63600
63738
|
"$nin": {
|
63601
63739
|
"type": "array",
|
63602
63740
|
"maxItems": 100,
|
63603
63741
|
"items": {
|
63604
|
-
"type":
|
63605
|
-
|
63742
|
+
"type": [
|
63743
|
+
"string",
|
63744
|
+
"number",
|
63745
|
+
"boolean"
|
63746
|
+
]
|
63606
63747
|
}
|
63607
63748
|
}
|
63608
63749
|
},
|
63609
|
-
"additionalProperties": false
|
63610
|
-
"minProperties": 1,
|
63611
|
-
"maxProperties": 1
|
63750
|
+
"additionalProperties": false
|
63612
63751
|
}
|
63613
63752
|
]
|
63614
63753
|
},
|
63615
|
-
"
|
63754
|
+
"gatewayId": {
|
63755
|
+
"oneOf": [
|
63756
|
+
{
|
63757
|
+
"oneOf": [
|
63758
|
+
{
|
63759
|
+
"type": "string",
|
63760
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
63761
|
+
},
|
63762
|
+
{
|
63763
|
+
"type": "null"
|
63764
|
+
}
|
63765
|
+
]
|
63766
|
+
},
|
63767
|
+
{
|
63768
|
+
"type": "object",
|
63769
|
+
"properties": {
|
63770
|
+
"$eq": {
|
63771
|
+
"oneOf": [
|
63772
|
+
{
|
63773
|
+
"type": "string",
|
63774
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
63775
|
+
},
|
63776
|
+
{
|
63777
|
+
"type": "null"
|
63778
|
+
}
|
63779
|
+
]
|
63780
|
+
},
|
63781
|
+
"$ne": {
|
63782
|
+
"oneOf": [
|
63783
|
+
{
|
63784
|
+
"type": "string",
|
63785
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
63786
|
+
},
|
63787
|
+
{
|
63788
|
+
"type": "null"
|
63789
|
+
}
|
63790
|
+
]
|
63791
|
+
},
|
63792
|
+
"$gt": {
|
63793
|
+
"oneOf": [
|
63794
|
+
{
|
63795
|
+
"type": "string",
|
63796
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
63797
|
+
},
|
63798
|
+
{
|
63799
|
+
"type": "null"
|
63800
|
+
}
|
63801
|
+
]
|
63802
|
+
},
|
63803
|
+
"$lt": {
|
63804
|
+
"oneOf": [
|
63805
|
+
{
|
63806
|
+
"type": "string",
|
63807
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
63808
|
+
},
|
63809
|
+
{
|
63810
|
+
"type": "null"
|
63811
|
+
}
|
63812
|
+
]
|
63813
|
+
},
|
63814
|
+
"$gte": {
|
63815
|
+
"oneOf": [
|
63816
|
+
{
|
63817
|
+
"type": "string",
|
63818
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
63819
|
+
},
|
63820
|
+
{
|
63821
|
+
"type": "null"
|
63822
|
+
}
|
63823
|
+
]
|
63824
|
+
},
|
63825
|
+
"$lte": {
|
63826
|
+
"oneOf": [
|
63827
|
+
{
|
63828
|
+
"type": "string",
|
63829
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
63830
|
+
},
|
63831
|
+
{
|
63832
|
+
"type": "null"
|
63833
|
+
}
|
63834
|
+
]
|
63835
|
+
},
|
63836
|
+
"$in": {
|
63837
|
+
"type": "array",
|
63838
|
+
"maxItems": 100,
|
63839
|
+
"items": {
|
63840
|
+
"type": "string",
|
63841
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
63842
|
+
}
|
63843
|
+
},
|
63844
|
+
"$nin": {
|
63845
|
+
"type": "array",
|
63846
|
+
"maxItems": 100,
|
63847
|
+
"items": {
|
63848
|
+
"type": "string",
|
63849
|
+
"pattern": "^[A-Fa-f\\d]{24}$"
|
63850
|
+
}
|
63851
|
+
}
|
63852
|
+
},
|
63853
|
+
"additionalProperties": false,
|
63854
|
+
"minProperties": 1,
|
63855
|
+
"maxProperties": 1
|
63856
|
+
}
|
63857
|
+
]
|
63858
|
+
},
|
63859
|
+
"parentId": {
|
63616
63860
|
"oneOf": [
|
63617
63861
|
{
|
63618
63862
|
"oneOf": [
|
@@ -66127,6 +66371,10 @@ Schema for a single Device
|
|
66127
66371
|
"type": "string",
|
66128
66372
|
"format": "date-time"
|
66129
66373
|
},
|
66374
|
+
"deletedAt": {
|
66375
|
+
"type": "string",
|
66376
|
+
"format": "date-time"
|
66377
|
+
},
|
66130
66378
|
"name": {
|
66131
66379
|
"type": "string",
|
66132
66380
|
"minLength": 1,
|
@@ -69154,6 +69402,10 @@ Schema for a collection of Devices
|
|
69154
69402
|
"type": "string",
|
69155
69403
|
"format": "date-time"
|
69156
69404
|
},
|
69405
|
+
"deletedAt": {
|
69406
|
+
"type": "string",
|
69407
|
+
"format": "date-time"
|
69408
|
+
},
|
69157
69409
|
"name": {
|
69158
69410
|
"type": "string",
|
69159
69411
|
"minLength": 1,
|
@@ -69515,11 +69767,11 @@ Schema for a collection of Devices
|
|
69515
69767
|
|
69516
69768
|
<br/>
|
69517
69769
|
|
69518
|
-
## Devices Delete Post
|
69770
|
+
## Devices Delete Or Restore Post
|
69519
69771
|
|
69520
|
-
Schema for the body of a bulk device
|
69772
|
+
Schema for the body of a bulk device deletion or restoration request
|
69521
69773
|
|
69522
|
-
### <a name="devices-delete-post-schema"></a> Schema
|
69774
|
+
### <a name="devices-delete-or-restore-post-schema"></a> Schema
|
69523
69775
|
|
69524
69776
|
```json
|
69525
69777
|
{
|
@@ -69868,6 +70120,109 @@ Schema for the body of a bulk device delete request
|
|
69868
70120
|
}
|
69869
70121
|
]
|
69870
70122
|
},
|
70123
|
+
"deletedAt": {
|
70124
|
+
"oneOf": [
|
70125
|
+
{
|
70126
|
+
"type": [
|
70127
|
+
"string",
|
70128
|
+
"number",
|
70129
|
+
"boolean",
|
70130
|
+
"null"
|
70131
|
+
]
|
70132
|
+
},
|
70133
|
+
{
|
70134
|
+
"type": "object",
|
70135
|
+
"properties": {
|
70136
|
+
"$eq": {
|
70137
|
+
"type": [
|
70138
|
+
"string",
|
70139
|
+
"number",
|
70140
|
+
"boolean",
|
70141
|
+
"null"
|
70142
|
+
]
|
70143
|
+
},
|
70144
|
+
"$ne": {
|
70145
|
+
"type": [
|
70146
|
+
"string",
|
70147
|
+
"number",
|
70148
|
+
"boolean",
|
70149
|
+
"null"
|
70150
|
+
]
|
70151
|
+
},
|
70152
|
+
"$gt": {
|
70153
|
+
"type": [
|
70154
|
+
"string",
|
70155
|
+
"number",
|
70156
|
+
"boolean",
|
70157
|
+
"null"
|
70158
|
+
]
|
70159
|
+
},
|
70160
|
+
"$lt": {
|
70161
|
+
"type": [
|
70162
|
+
"string",
|
70163
|
+
"number",
|
70164
|
+
"boolean",
|
70165
|
+
"null"
|
70166
|
+
]
|
70167
|
+
},
|
70168
|
+
"$gte": {
|
70169
|
+
"type": [
|
70170
|
+
"string",
|
70171
|
+
"number",
|
70172
|
+
"boolean",
|
70173
|
+
"null"
|
70174
|
+
]
|
70175
|
+
},
|
70176
|
+
"$lte": {
|
70177
|
+
"type": [
|
70178
|
+
"string",
|
70179
|
+
"number",
|
70180
|
+
"boolean",
|
70181
|
+
"null"
|
70182
|
+
]
|
70183
|
+
},
|
70184
|
+
"$startsWith": {
|
70185
|
+
"type": "string",
|
70186
|
+
"minLength": 1
|
70187
|
+
},
|
70188
|
+
"$endsWith": {
|
70189
|
+
"type": "string",
|
70190
|
+
"minLength": 1
|
70191
|
+
},
|
70192
|
+
"$contains": {
|
70193
|
+
"type": "string",
|
70194
|
+
"minLength": 1
|
70195
|
+
},
|
70196
|
+
"$ci": {
|
70197
|
+
"type": "boolean"
|
70198
|
+
},
|
70199
|
+
"$in": {
|
70200
|
+
"type": "array",
|
70201
|
+
"maxItems": 100,
|
70202
|
+
"items": {
|
70203
|
+
"type": [
|
70204
|
+
"string",
|
70205
|
+
"number",
|
70206
|
+
"boolean"
|
70207
|
+
]
|
70208
|
+
}
|
70209
|
+
},
|
70210
|
+
"$nin": {
|
70211
|
+
"type": "array",
|
70212
|
+
"maxItems": 100,
|
70213
|
+
"items": {
|
70214
|
+
"type": [
|
70215
|
+
"string",
|
70216
|
+
"number",
|
70217
|
+
"boolean"
|
70218
|
+
]
|
70219
|
+
}
|
70220
|
+
}
|
70221
|
+
},
|
70222
|
+
"additionalProperties": false
|
70223
|
+
}
|
70224
|
+
]
|
70225
|
+
},
|
69871
70226
|
"name": {
|
69872
70227
|
"oneOf": [
|
69873
70228
|
{
|
@@ -71469,6 +71824,10 @@ Schema for the body of a bulk device delete request
|
|
71469
71824
|
"type": "string",
|
71470
71825
|
"format": "uri",
|
71471
71826
|
"maxLength": 1024
|
71827
|
+
},
|
71828
|
+
"forceJob": {
|
71829
|
+
"type": "boolean",
|
71830
|
+
"default": false
|
71472
71831
|
}
|
71473
71832
|
},
|
71474
71833
|
"additionalProperties": false,
|
@@ -71477,7 +71836,7 @@ Schema for the body of a bulk device delete request
|
|
71477
71836
|
]
|
71478
71837
|
}
|
71479
71838
|
```
|
71480
|
-
### <a name="devices-delete-post-example"></a> Example
|
71839
|
+
### <a name="devices-delete-or-restore-post-example"></a> Example
|
71481
71840
|
|
71482
71841
|
```json
|
71483
71842
|
{
|
@@ -71850,6 +72209,109 @@ Schema for the body of a device payload count export request
|
|
71850
72209
|
}
|
71851
72210
|
]
|
71852
72211
|
},
|
72212
|
+
"deletedAt": {
|
72213
|
+
"oneOf": [
|
72214
|
+
{
|
72215
|
+
"type": [
|
72216
|
+
"string",
|
72217
|
+
"number",
|
72218
|
+
"boolean",
|
72219
|
+
"null"
|
72220
|
+
]
|
72221
|
+
},
|
72222
|
+
{
|
72223
|
+
"type": "object",
|
72224
|
+
"properties": {
|
72225
|
+
"$eq": {
|
72226
|
+
"type": [
|
72227
|
+
"string",
|
72228
|
+
"number",
|
72229
|
+
"boolean",
|
72230
|
+
"null"
|
72231
|
+
]
|
72232
|
+
},
|
72233
|
+
"$ne": {
|
72234
|
+
"type": [
|
72235
|
+
"string",
|
72236
|
+
"number",
|
72237
|
+
"boolean",
|
72238
|
+
"null"
|
72239
|
+
]
|
72240
|
+
},
|
72241
|
+
"$gt": {
|
72242
|
+
"type": [
|
72243
|
+
"string",
|
72244
|
+
"number",
|
72245
|
+
"boolean",
|
72246
|
+
"null"
|
72247
|
+
]
|
72248
|
+
},
|
72249
|
+
"$lt": {
|
72250
|
+
"type": [
|
72251
|
+
"string",
|
72252
|
+
"number",
|
72253
|
+
"boolean",
|
72254
|
+
"null"
|
72255
|
+
]
|
72256
|
+
},
|
72257
|
+
"$gte": {
|
72258
|
+
"type": [
|
72259
|
+
"string",
|
72260
|
+
"number",
|
72261
|
+
"boolean",
|
72262
|
+
"null"
|
72263
|
+
]
|
72264
|
+
},
|
72265
|
+
"$lte": {
|
72266
|
+
"type": [
|
72267
|
+
"string",
|
72268
|
+
"number",
|
72269
|
+
"boolean",
|
72270
|
+
"null"
|
72271
|
+
]
|
72272
|
+
},
|
72273
|
+
"$startsWith": {
|
72274
|
+
"type": "string",
|
72275
|
+
"minLength": 1
|
72276
|
+
},
|
72277
|
+
"$endsWith": {
|
72278
|
+
"type": "string",
|
72279
|
+
"minLength": 1
|
72280
|
+
},
|
72281
|
+
"$contains": {
|
72282
|
+
"type": "string",
|
72283
|
+
"minLength": 1
|
72284
|
+
},
|
72285
|
+
"$ci": {
|
72286
|
+
"type": "boolean"
|
72287
|
+
},
|
72288
|
+
"$in": {
|
72289
|
+
"type": "array",
|
72290
|
+
"maxItems": 100,
|
72291
|
+
"items": {
|
72292
|
+
"type": [
|
72293
|
+
"string",
|
72294
|
+
"number",
|
72295
|
+
"boolean"
|
72296
|
+
]
|
72297
|
+
}
|
72298
|
+
},
|
72299
|
+
"$nin": {
|
72300
|
+
"type": "array",
|
72301
|
+
"maxItems": 100,
|
72302
|
+
"items": {
|
72303
|
+
"type": [
|
72304
|
+
"string",
|
72305
|
+
"number",
|
72306
|
+
"boolean"
|
72307
|
+
]
|
72308
|
+
}
|
72309
|
+
}
|
72310
|
+
},
|
72311
|
+
"additionalProperties": false
|
72312
|
+
}
|
72313
|
+
]
|
72314
|
+
},
|
71853
72315
|
"name": {
|
71854
72316
|
"oneOf": [
|
71855
72317
|
{
|
@@ -73830,6 +74292,109 @@ Schema for the body of a device metadata export request
|
|
73830
74292
|
}
|
73831
74293
|
]
|
73832
74294
|
},
|
74295
|
+
"deletedAt": {
|
74296
|
+
"oneOf": [
|
74297
|
+
{
|
74298
|
+
"type": [
|
74299
|
+
"string",
|
74300
|
+
"number",
|
74301
|
+
"boolean",
|
74302
|
+
"null"
|
74303
|
+
]
|
74304
|
+
},
|
74305
|
+
{
|
74306
|
+
"type": "object",
|
74307
|
+
"properties": {
|
74308
|
+
"$eq": {
|
74309
|
+
"type": [
|
74310
|
+
"string",
|
74311
|
+
"number",
|
74312
|
+
"boolean",
|
74313
|
+
"null"
|
74314
|
+
]
|
74315
|
+
},
|
74316
|
+
"$ne": {
|
74317
|
+
"type": [
|
74318
|
+
"string",
|
74319
|
+
"number",
|
74320
|
+
"boolean",
|
74321
|
+
"null"
|
74322
|
+
]
|
74323
|
+
},
|
74324
|
+
"$gt": {
|
74325
|
+
"type": [
|
74326
|
+
"string",
|
74327
|
+
"number",
|
74328
|
+
"boolean",
|
74329
|
+
"null"
|
74330
|
+
]
|
74331
|
+
},
|
74332
|
+
"$lt": {
|
74333
|
+
"type": [
|
74334
|
+
"string",
|
74335
|
+
"number",
|
74336
|
+
"boolean",
|
74337
|
+
"null"
|
74338
|
+
]
|
74339
|
+
},
|
74340
|
+
"$gte": {
|
74341
|
+
"type": [
|
74342
|
+
"string",
|
74343
|
+
"number",
|
74344
|
+
"boolean",
|
74345
|
+
"null"
|
74346
|
+
]
|
74347
|
+
},
|
74348
|
+
"$lte": {
|
74349
|
+
"type": [
|
74350
|
+
"string",
|
74351
|
+
"number",
|
74352
|
+
"boolean",
|
74353
|
+
"null"
|
74354
|
+
]
|
74355
|
+
},
|
74356
|
+
"$startsWith": {
|
74357
|
+
"type": "string",
|
74358
|
+
"minLength": 1
|
74359
|
+
},
|
74360
|
+
"$endsWith": {
|
74361
|
+
"type": "string",
|
74362
|
+
"minLength": 1
|
74363
|
+
},
|
74364
|
+
"$contains": {
|
74365
|
+
"type": "string",
|
74366
|
+
"minLength": 1
|
74367
|
+
},
|
74368
|
+
"$ci": {
|
74369
|
+
"type": "boolean"
|
74370
|
+
},
|
74371
|
+
"$in": {
|
74372
|
+
"type": "array",
|
74373
|
+
"maxItems": 100,
|
74374
|
+
"items": {
|
74375
|
+
"type": [
|
74376
|
+
"string",
|
74377
|
+
"number",
|
74378
|
+
"boolean"
|
74379
|
+
]
|
74380
|
+
}
|
74381
|
+
},
|
74382
|
+
"$nin": {
|
74383
|
+
"type": "array",
|
74384
|
+
"maxItems": 100,
|
74385
|
+
"items": {
|
74386
|
+
"type": [
|
74387
|
+
"string",
|
74388
|
+
"number",
|
74389
|
+
"boolean"
|
74390
|
+
]
|
74391
|
+
}
|
74392
|
+
}
|
74393
|
+
},
|
74394
|
+
"additionalProperties": false
|
74395
|
+
}
|
74396
|
+
]
|
74397
|
+
},
|
73833
74398
|
"name": {
|
73834
74399
|
"oneOf": [
|
73835
74400
|
{
|
@@ -76058,6 +76623,109 @@ Schema for the body of a Devices modification request
|
|
76058
76623
|
}
|
76059
76624
|
]
|
76060
76625
|
},
|
76626
|
+
"deletedAt": {
|
76627
|
+
"oneOf": [
|
76628
|
+
{
|
76629
|
+
"type": [
|
76630
|
+
"string",
|
76631
|
+
"number",
|
76632
|
+
"boolean",
|
76633
|
+
"null"
|
76634
|
+
]
|
76635
|
+
},
|
76636
|
+
{
|
76637
|
+
"type": "object",
|
76638
|
+
"properties": {
|
76639
|
+
"$eq": {
|
76640
|
+
"type": [
|
76641
|
+
"string",
|
76642
|
+
"number",
|
76643
|
+
"boolean",
|
76644
|
+
"null"
|
76645
|
+
]
|
76646
|
+
},
|
76647
|
+
"$ne": {
|
76648
|
+
"type": [
|
76649
|
+
"string",
|
76650
|
+
"number",
|
76651
|
+
"boolean",
|
76652
|
+
"null"
|
76653
|
+
]
|
76654
|
+
},
|
76655
|
+
"$gt": {
|
76656
|
+
"type": [
|
76657
|
+
"string",
|
76658
|
+
"number",
|
76659
|
+
"boolean",
|
76660
|
+
"null"
|
76661
|
+
]
|
76662
|
+
},
|
76663
|
+
"$lt": {
|
76664
|
+
"type": [
|
76665
|
+
"string",
|
76666
|
+
"number",
|
76667
|
+
"boolean",
|
76668
|
+
"null"
|
76669
|
+
]
|
76670
|
+
},
|
76671
|
+
"$gte": {
|
76672
|
+
"type": [
|
76673
|
+
"string",
|
76674
|
+
"number",
|
76675
|
+
"boolean",
|
76676
|
+
"null"
|
76677
|
+
]
|
76678
|
+
},
|
76679
|
+
"$lte": {
|
76680
|
+
"type": [
|
76681
|
+
"string",
|
76682
|
+
"number",
|
76683
|
+
"boolean",
|
76684
|
+
"null"
|
76685
|
+
]
|
76686
|
+
},
|
76687
|
+
"$startsWith": {
|
76688
|
+
"type": "string",
|
76689
|
+
"minLength": 1
|
76690
|
+
},
|
76691
|
+
"$endsWith": {
|
76692
|
+
"type": "string",
|
76693
|
+
"minLength": 1
|
76694
|
+
},
|
76695
|
+
"$contains": {
|
76696
|
+
"type": "string",
|
76697
|
+
"minLength": 1
|
76698
|
+
},
|
76699
|
+
"$ci": {
|
76700
|
+
"type": "boolean"
|
76701
|
+
},
|
76702
|
+
"$in": {
|
76703
|
+
"type": "array",
|
76704
|
+
"maxItems": 100,
|
76705
|
+
"items": {
|
76706
|
+
"type": [
|
76707
|
+
"string",
|
76708
|
+
"number",
|
76709
|
+
"boolean"
|
76710
|
+
]
|
76711
|
+
}
|
76712
|
+
},
|
76713
|
+
"$nin": {
|
76714
|
+
"type": "array",
|
76715
|
+
"maxItems": 100,
|
76716
|
+
"items": {
|
76717
|
+
"type": [
|
76718
|
+
"string",
|
76719
|
+
"number",
|
76720
|
+
"boolean"
|
76721
|
+
]
|
76722
|
+
}
|
76723
|
+
}
|
76724
|
+
},
|
76725
|
+
"additionalProperties": false
|
76726
|
+
}
|
76727
|
+
]
|
76728
|
+
},
|
76061
76729
|
"name": {
|
76062
76730
|
"oneOf": [
|
76063
76731
|
{
|
@@ -78782,6 +79450,109 @@ Schema for the body of a bulk data removal request
|
|
78782
79450
|
}
|
78783
79451
|
]
|
78784
79452
|
},
|
79453
|
+
"deletedAt": {
|
79454
|
+
"oneOf": [
|
79455
|
+
{
|
79456
|
+
"type": [
|
79457
|
+
"string",
|
79458
|
+
"number",
|
79459
|
+
"boolean",
|
79460
|
+
"null"
|
79461
|
+
]
|
79462
|
+
},
|
79463
|
+
{
|
79464
|
+
"type": "object",
|
79465
|
+
"properties": {
|
79466
|
+
"$eq": {
|
79467
|
+
"type": [
|
79468
|
+
"string",
|
79469
|
+
"number",
|
79470
|
+
"boolean",
|
79471
|
+
"null"
|
79472
|
+
]
|
79473
|
+
},
|
79474
|
+
"$ne": {
|
79475
|
+
"type": [
|
79476
|
+
"string",
|
79477
|
+
"number",
|
79478
|
+
"boolean",
|
79479
|
+
"null"
|
79480
|
+
]
|
79481
|
+
},
|
79482
|
+
"$gt": {
|
79483
|
+
"type": [
|
79484
|
+
"string",
|
79485
|
+
"number",
|
79486
|
+
"boolean",
|
79487
|
+
"null"
|
79488
|
+
]
|
79489
|
+
},
|
79490
|
+
"$lt": {
|
79491
|
+
"type": [
|
79492
|
+
"string",
|
79493
|
+
"number",
|
79494
|
+
"boolean",
|
79495
|
+
"null"
|
79496
|
+
]
|
79497
|
+
},
|
79498
|
+
"$gte": {
|
79499
|
+
"type": [
|
79500
|
+
"string",
|
79501
|
+
"number",
|
79502
|
+
"boolean",
|
79503
|
+
"null"
|
79504
|
+
]
|
79505
|
+
},
|
79506
|
+
"$lte": {
|
79507
|
+
"type": [
|
79508
|
+
"string",
|
79509
|
+
"number",
|
79510
|
+
"boolean",
|
79511
|
+
"null"
|
79512
|
+
]
|
79513
|
+
},
|
79514
|
+
"$startsWith": {
|
79515
|
+
"type": "string",
|
79516
|
+
"minLength": 1
|
79517
|
+
},
|
79518
|
+
"$endsWith": {
|
79519
|
+
"type": "string",
|
79520
|
+
"minLength": 1
|
79521
|
+
},
|
79522
|
+
"$contains": {
|
79523
|
+
"type": "string",
|
79524
|
+
"minLength": 1
|
79525
|
+
},
|
79526
|
+
"$ci": {
|
79527
|
+
"type": "boolean"
|
79528
|
+
},
|
79529
|
+
"$in": {
|
79530
|
+
"type": "array",
|
79531
|
+
"maxItems": 100,
|
79532
|
+
"items": {
|
79533
|
+
"type": [
|
79534
|
+
"string",
|
79535
|
+
"number",
|
79536
|
+
"boolean"
|
79537
|
+
]
|
79538
|
+
}
|
79539
|
+
},
|
79540
|
+
"$nin": {
|
79541
|
+
"type": "array",
|
79542
|
+
"maxItems": 100,
|
79543
|
+
"items": {
|
79544
|
+
"type": [
|
79545
|
+
"string",
|
79546
|
+
"number",
|
79547
|
+
"boolean"
|
79548
|
+
]
|
79549
|
+
}
|
79550
|
+
}
|
79551
|
+
},
|
79552
|
+
"additionalProperties": false
|
79553
|
+
}
|
79554
|
+
]
|
79555
|
+
},
|
78785
79556
|
"name": {
|
78786
79557
|
"oneOf": [
|
78787
79558
|
{
|
@@ -142235,6 +143006,7 @@ Schema for the body of a Github login request
|
|
142235
143006
|
"devices.attributeNames",
|
142236
143007
|
"devices.patch",
|
142237
143008
|
"devices.delete",
|
143009
|
+
"devices.restore",
|
142238
143010
|
"devices.removeData",
|
142239
143011
|
"devices.detailedSummary",
|
142240
143012
|
"devices.deviceNames",
|
@@ -142429,6 +143201,7 @@ Schema for the body of a Github login request
|
|
142429
143201
|
"instance.patch",
|
142430
143202
|
"instance.historicalSummaries",
|
142431
143203
|
"instance.generateReport",
|
143204
|
+
"instance.payloadCounts",
|
142432
143205
|
"instance.payloadCountsBreakdown",
|
142433
143206
|
"instance.deviceCounts",
|
142434
143207
|
"instance.notebookMinuteCounts",
|
@@ -142436,6 +143209,7 @@ Schema for the body of a Github login request
|
|
142436
143209
|
"instanceOrg.get",
|
142437
143210
|
"instanceOrg.patch",
|
142438
143211
|
"instanceOrg.delete",
|
143212
|
+
"instanceOrg.payloadCounts",
|
142439
143213
|
"instanceOrg.payloadCountsBreakdown",
|
142440
143214
|
"instanceOrg.deviceCounts",
|
142441
143215
|
"instanceOrg.notebookMinuteCounts",
|
@@ -142493,6 +143267,10 @@ Schema for the body of a Github login request
|
|
142493
143267
|
"instanceSandbox.get",
|
142494
143268
|
"instanceSandbox.delete",
|
142495
143269
|
"instanceSandbox.undelete",
|
143270
|
+
"instanceSandbox.payloadCounts",
|
143271
|
+
"instanceSandbox.payloadCountsBreakdown",
|
143272
|
+
"instanceSandbox.deviceCounts",
|
143273
|
+
"instanceSandbox.notebookMinuteCounts",
|
142496
143274
|
"instanceSandboxes.*",
|
142497
143275
|
"instanceSandboxes.get",
|
142498
143276
|
"instanceAuditLog.*",
|
@@ -154509,6 +155287,109 @@ Schema for the body of a last value query request
|
|
154509
155287
|
}
|
154510
155288
|
]
|
154511
155289
|
},
|
155290
|
+
"deletedAt": {
|
155291
|
+
"oneOf": [
|
155292
|
+
{
|
155293
|
+
"type": [
|
155294
|
+
"string",
|
155295
|
+
"number",
|
155296
|
+
"boolean",
|
155297
|
+
"null"
|
155298
|
+
]
|
155299
|
+
},
|
155300
|
+
{
|
155301
|
+
"type": "object",
|
155302
|
+
"properties": {
|
155303
|
+
"$eq": {
|
155304
|
+
"type": [
|
155305
|
+
"string",
|
155306
|
+
"number",
|
155307
|
+
"boolean",
|
155308
|
+
"null"
|
155309
|
+
]
|
155310
|
+
},
|
155311
|
+
"$ne": {
|
155312
|
+
"type": [
|
155313
|
+
"string",
|
155314
|
+
"number",
|
155315
|
+
"boolean",
|
155316
|
+
"null"
|
155317
|
+
]
|
155318
|
+
},
|
155319
|
+
"$gt": {
|
155320
|
+
"type": [
|
155321
|
+
"string",
|
155322
|
+
"number",
|
155323
|
+
"boolean",
|
155324
|
+
"null"
|
155325
|
+
]
|
155326
|
+
},
|
155327
|
+
"$lt": {
|
155328
|
+
"type": [
|
155329
|
+
"string",
|
155330
|
+
"number",
|
155331
|
+
"boolean",
|
155332
|
+
"null"
|
155333
|
+
]
|
155334
|
+
},
|
155335
|
+
"$gte": {
|
155336
|
+
"type": [
|
155337
|
+
"string",
|
155338
|
+
"number",
|
155339
|
+
"boolean",
|
155340
|
+
"null"
|
155341
|
+
]
|
155342
|
+
},
|
155343
|
+
"$lte": {
|
155344
|
+
"type": [
|
155345
|
+
"string",
|
155346
|
+
"number",
|
155347
|
+
"boolean",
|
155348
|
+
"null"
|
155349
|
+
]
|
155350
|
+
},
|
155351
|
+
"$startsWith": {
|
155352
|
+
"type": "string",
|
155353
|
+
"minLength": 1
|
155354
|
+
},
|
155355
|
+
"$endsWith": {
|
155356
|
+
"type": "string",
|
155357
|
+
"minLength": 1
|
155358
|
+
},
|
155359
|
+
"$contains": {
|
155360
|
+
"type": "string",
|
155361
|
+
"minLength": 1
|
155362
|
+
},
|
155363
|
+
"$ci": {
|
155364
|
+
"type": "boolean"
|
155365
|
+
},
|
155366
|
+
"$in": {
|
155367
|
+
"type": "array",
|
155368
|
+
"maxItems": 100,
|
155369
|
+
"items": {
|
155370
|
+
"type": [
|
155371
|
+
"string",
|
155372
|
+
"number",
|
155373
|
+
"boolean"
|
155374
|
+
]
|
155375
|
+
}
|
155376
|
+
},
|
155377
|
+
"$nin": {
|
155378
|
+
"type": "array",
|
155379
|
+
"maxItems": 100,
|
155380
|
+
"items": {
|
155381
|
+
"type": [
|
155382
|
+
"string",
|
155383
|
+
"number",
|
155384
|
+
"boolean"
|
155385
|
+
]
|
155386
|
+
}
|
155387
|
+
}
|
155388
|
+
},
|
155389
|
+
"additionalProperties": false
|
155390
|
+
}
|
155391
|
+
]
|
155392
|
+
},
|
154512
155393
|
"name": {
|
154513
155394
|
"oneOf": [
|
154514
155395
|
{
|
@@ -157281,6 +158162,109 @@ Schema for the body of a request to send a command to multiple Devices
|
|
157281
158162
|
}
|
157282
158163
|
]
|
157283
158164
|
},
|
158165
|
+
"deletedAt": {
|
158166
|
+
"oneOf": [
|
158167
|
+
{
|
158168
|
+
"type": [
|
158169
|
+
"string",
|
158170
|
+
"number",
|
158171
|
+
"boolean",
|
158172
|
+
"null"
|
158173
|
+
]
|
158174
|
+
},
|
158175
|
+
{
|
158176
|
+
"type": "object",
|
158177
|
+
"properties": {
|
158178
|
+
"$eq": {
|
158179
|
+
"type": [
|
158180
|
+
"string",
|
158181
|
+
"number",
|
158182
|
+
"boolean",
|
158183
|
+
"null"
|
158184
|
+
]
|
158185
|
+
},
|
158186
|
+
"$ne": {
|
158187
|
+
"type": [
|
158188
|
+
"string",
|
158189
|
+
"number",
|
158190
|
+
"boolean",
|
158191
|
+
"null"
|
158192
|
+
]
|
158193
|
+
},
|
158194
|
+
"$gt": {
|
158195
|
+
"type": [
|
158196
|
+
"string",
|
158197
|
+
"number",
|
158198
|
+
"boolean",
|
158199
|
+
"null"
|
158200
|
+
]
|
158201
|
+
},
|
158202
|
+
"$lt": {
|
158203
|
+
"type": [
|
158204
|
+
"string",
|
158205
|
+
"number",
|
158206
|
+
"boolean",
|
158207
|
+
"null"
|
158208
|
+
]
|
158209
|
+
},
|
158210
|
+
"$gte": {
|
158211
|
+
"type": [
|
158212
|
+
"string",
|
158213
|
+
"number",
|
158214
|
+
"boolean",
|
158215
|
+
"null"
|
158216
|
+
]
|
158217
|
+
},
|
158218
|
+
"$lte": {
|
158219
|
+
"type": [
|
158220
|
+
"string",
|
158221
|
+
"number",
|
158222
|
+
"boolean",
|
158223
|
+
"null"
|
158224
|
+
]
|
158225
|
+
},
|
158226
|
+
"$startsWith": {
|
158227
|
+
"type": "string",
|
158228
|
+
"minLength": 1
|
158229
|
+
},
|
158230
|
+
"$endsWith": {
|
158231
|
+
"type": "string",
|
158232
|
+
"minLength": 1
|
158233
|
+
},
|
158234
|
+
"$contains": {
|
158235
|
+
"type": "string",
|
158236
|
+
"minLength": 1
|
158237
|
+
},
|
158238
|
+
"$ci": {
|
158239
|
+
"type": "boolean"
|
158240
|
+
},
|
158241
|
+
"$in": {
|
158242
|
+
"type": "array",
|
158243
|
+
"maxItems": 100,
|
158244
|
+
"items": {
|
158245
|
+
"type": [
|
158246
|
+
"string",
|
158247
|
+
"number",
|
158248
|
+
"boolean"
|
158249
|
+
]
|
158250
|
+
}
|
158251
|
+
},
|
158252
|
+
"$nin": {
|
158253
|
+
"type": "array",
|
158254
|
+
"maxItems": 100,
|
158255
|
+
"items": {
|
158256
|
+
"type": [
|
158257
|
+
"string",
|
158258
|
+
"number",
|
158259
|
+
"boolean"
|
158260
|
+
]
|
158261
|
+
}
|
158262
|
+
}
|
158263
|
+
},
|
158264
|
+
"additionalProperties": false
|
158265
|
+
}
|
158266
|
+
]
|
158267
|
+
},
|
157284
158268
|
"name": {
|
157285
158269
|
"oneOf": [
|
157286
158270
|
{
|
@@ -168504,6 +169488,7 @@ SAML Response body for login
|
|
168504
169488
|
"devices.attributeNames",
|
168505
169489
|
"devices.patch",
|
168506
169490
|
"devices.delete",
|
169491
|
+
"devices.restore",
|
168507
169492
|
"devices.removeData",
|
168508
169493
|
"devices.detailedSummary",
|
168509
169494
|
"devices.deviceNames",
|
@@ -168698,6 +169683,7 @@ SAML Response body for login
|
|
168698
169683
|
"instance.patch",
|
168699
169684
|
"instance.historicalSummaries",
|
168700
169685
|
"instance.generateReport",
|
169686
|
+
"instance.payloadCounts",
|
168701
169687
|
"instance.payloadCountsBreakdown",
|
168702
169688
|
"instance.deviceCounts",
|
168703
169689
|
"instance.notebookMinuteCounts",
|
@@ -168705,6 +169691,7 @@ SAML Response body for login
|
|
168705
169691
|
"instanceOrg.get",
|
168706
169692
|
"instanceOrg.patch",
|
168707
169693
|
"instanceOrg.delete",
|
169694
|
+
"instanceOrg.payloadCounts",
|
168708
169695
|
"instanceOrg.payloadCountsBreakdown",
|
168709
169696
|
"instanceOrg.deviceCounts",
|
168710
169697
|
"instanceOrg.notebookMinuteCounts",
|
@@ -168762,6 +169749,10 @@ SAML Response body for login
|
|
168762
169749
|
"instanceSandbox.get",
|
168763
169750
|
"instanceSandbox.delete",
|
168764
169751
|
"instanceSandbox.undelete",
|
169752
|
+
"instanceSandbox.payloadCounts",
|
169753
|
+
"instanceSandbox.payloadCountsBreakdown",
|
169754
|
+
"instanceSandbox.deviceCounts",
|
169755
|
+
"instanceSandbox.notebookMinuteCounts",
|
168765
169756
|
"instanceSandboxes.*",
|
168766
169757
|
"instanceSandboxes.get",
|
168767
169758
|
"instanceAuditLog.*",
|
@@ -169837,6 +170828,109 @@ Schema for the body of a time series query request
|
|
169837
170828
|
}
|
169838
170829
|
]
|
169839
170830
|
},
|
170831
|
+
"deletedAt": {
|
170832
|
+
"oneOf": [
|
170833
|
+
{
|
170834
|
+
"type": [
|
170835
|
+
"string",
|
170836
|
+
"number",
|
170837
|
+
"boolean",
|
170838
|
+
"null"
|
170839
|
+
]
|
170840
|
+
},
|
170841
|
+
{
|
170842
|
+
"type": "object",
|
170843
|
+
"properties": {
|
170844
|
+
"$eq": {
|
170845
|
+
"type": [
|
170846
|
+
"string",
|
170847
|
+
"number",
|
170848
|
+
"boolean",
|
170849
|
+
"null"
|
170850
|
+
]
|
170851
|
+
},
|
170852
|
+
"$ne": {
|
170853
|
+
"type": [
|
170854
|
+
"string",
|
170855
|
+
"number",
|
170856
|
+
"boolean",
|
170857
|
+
"null"
|
170858
|
+
]
|
170859
|
+
},
|
170860
|
+
"$gt": {
|
170861
|
+
"type": [
|
170862
|
+
"string",
|
170863
|
+
"number",
|
170864
|
+
"boolean",
|
170865
|
+
"null"
|
170866
|
+
]
|
170867
|
+
},
|
170868
|
+
"$lt": {
|
170869
|
+
"type": [
|
170870
|
+
"string",
|
170871
|
+
"number",
|
170872
|
+
"boolean",
|
170873
|
+
"null"
|
170874
|
+
]
|
170875
|
+
},
|
170876
|
+
"$gte": {
|
170877
|
+
"type": [
|
170878
|
+
"string",
|
170879
|
+
"number",
|
170880
|
+
"boolean",
|
170881
|
+
"null"
|
170882
|
+
]
|
170883
|
+
},
|
170884
|
+
"$lte": {
|
170885
|
+
"type": [
|
170886
|
+
"string",
|
170887
|
+
"number",
|
170888
|
+
"boolean",
|
170889
|
+
"null"
|
170890
|
+
]
|
170891
|
+
},
|
170892
|
+
"$startsWith": {
|
170893
|
+
"type": "string",
|
170894
|
+
"minLength": 1
|
170895
|
+
},
|
170896
|
+
"$endsWith": {
|
170897
|
+
"type": "string",
|
170898
|
+
"minLength": 1
|
170899
|
+
},
|
170900
|
+
"$contains": {
|
170901
|
+
"type": "string",
|
170902
|
+
"minLength": 1
|
170903
|
+
},
|
170904
|
+
"$ci": {
|
170905
|
+
"type": "boolean"
|
170906
|
+
},
|
170907
|
+
"$in": {
|
170908
|
+
"type": "array",
|
170909
|
+
"maxItems": 100,
|
170910
|
+
"items": {
|
170911
|
+
"type": [
|
170912
|
+
"string",
|
170913
|
+
"number",
|
170914
|
+
"boolean"
|
170915
|
+
]
|
170916
|
+
}
|
170917
|
+
},
|
170918
|
+
"$nin": {
|
170919
|
+
"type": "array",
|
170920
|
+
"maxItems": 100,
|
170921
|
+
"items": {
|
170922
|
+
"type": [
|
170923
|
+
"string",
|
170924
|
+
"number",
|
170925
|
+
"boolean"
|
170926
|
+
]
|
170927
|
+
}
|
170928
|
+
}
|
170929
|
+
},
|
170930
|
+
"additionalProperties": false
|
170931
|
+
}
|
170932
|
+
]
|
170933
|
+
},
|
169840
170934
|
"name": {
|
169841
170935
|
"oneOf": [
|
169842
170936
|
{
|
@@ -171666,6 +172760,7 @@ Schema for the body of a User authentication request
|
|
171666
172760
|
"devices.attributeNames",
|
171667
172761
|
"devices.patch",
|
171668
172762
|
"devices.delete",
|
172763
|
+
"devices.restore",
|
171669
172764
|
"devices.removeData",
|
171670
172765
|
"devices.detailedSummary",
|
171671
172766
|
"devices.deviceNames",
|
@@ -171860,6 +172955,7 @@ Schema for the body of a User authentication request
|
|
171860
172955
|
"instance.patch",
|
171861
172956
|
"instance.historicalSummaries",
|
171862
172957
|
"instance.generateReport",
|
172958
|
+
"instance.payloadCounts",
|
171863
172959
|
"instance.payloadCountsBreakdown",
|
171864
172960
|
"instance.deviceCounts",
|
171865
172961
|
"instance.notebookMinuteCounts",
|
@@ -171867,6 +172963,7 @@ Schema for the body of a User authentication request
|
|
171867
172963
|
"instanceOrg.get",
|
171868
172964
|
"instanceOrg.patch",
|
171869
172965
|
"instanceOrg.delete",
|
172966
|
+
"instanceOrg.payloadCounts",
|
171870
172967
|
"instanceOrg.payloadCountsBreakdown",
|
171871
172968
|
"instanceOrg.deviceCounts",
|
171872
172969
|
"instanceOrg.notebookMinuteCounts",
|
@@ -171924,6 +173021,10 @@ Schema for the body of a User authentication request
|
|
171924
173021
|
"instanceSandbox.get",
|
171925
173022
|
"instanceSandbox.delete",
|
171926
173023
|
"instanceSandbox.undelete",
|
173024
|
+
"instanceSandbox.payloadCounts",
|
173025
|
+
"instanceSandbox.payloadCountsBreakdown",
|
173026
|
+
"instanceSandbox.deviceCounts",
|
173027
|
+
"instanceSandbox.notebookMinuteCounts",
|
171927
173028
|
"instanceSandboxes.*",
|
171928
173029
|
"instanceSandboxes.get",
|
171929
173030
|
"instanceAuditLog.*",
|
@@ -172258,6 +173359,7 @@ Schema for the body of a User creation request
|
|
172258
173359
|
"devices.attributeNames",
|
172259
173360
|
"devices.patch",
|
172260
173361
|
"devices.delete",
|
173362
|
+
"devices.restore",
|
172261
173363
|
"devices.removeData",
|
172262
173364
|
"devices.detailedSummary",
|
172263
173365
|
"devices.deviceNames",
|
@@ -172452,6 +173554,7 @@ Schema for the body of a User creation request
|
|
172452
173554
|
"instance.patch",
|
172453
173555
|
"instance.historicalSummaries",
|
172454
173556
|
"instance.generateReport",
|
173557
|
+
"instance.payloadCounts",
|
172455
173558
|
"instance.payloadCountsBreakdown",
|
172456
173559
|
"instance.deviceCounts",
|
172457
173560
|
"instance.notebookMinuteCounts",
|
@@ -172459,6 +173562,7 @@ Schema for the body of a User creation request
|
|
172459
173562
|
"instanceOrg.get",
|
172460
173563
|
"instanceOrg.patch",
|
172461
173564
|
"instanceOrg.delete",
|
173565
|
+
"instanceOrg.payloadCounts",
|
172462
173566
|
"instanceOrg.payloadCountsBreakdown",
|
172463
173567
|
"instanceOrg.deviceCounts",
|
172464
173568
|
"instanceOrg.notebookMinuteCounts",
|
@@ -172516,6 +173620,10 @@ Schema for the body of a User creation request
|
|
172516
173620
|
"instanceSandbox.get",
|
172517
173621
|
"instanceSandbox.delete",
|
172518
173622
|
"instanceSandbox.undelete",
|
173623
|
+
"instanceSandbox.payloadCounts",
|
173624
|
+
"instanceSandbox.payloadCountsBreakdown",
|
173625
|
+
"instanceSandbox.deviceCounts",
|
173626
|
+
"instanceSandbox.notebookMinuteCounts",
|
172519
173627
|
"instanceSandboxes.*",
|
172520
173628
|
"instanceSandboxes.get",
|
172521
173629
|
"instanceAuditLog.*",
|