@n8n-dev/n8n-nodes-googleapis-proximitybeacon 1.0.0

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.
Files changed (31) hide show
  1. package/README.md +134 -0
  2. package/dist/banner.svg +109 -0
  3. package/dist/credentials/GoogleapisProximitybeaconApi.credentials.d.ts +9 -0
  4. package/dist/credentials/GoogleapisProximitybeaconApi.credentials.js +49 -0
  5. package/dist/credentials/GoogleapisProximitybeaconApi.credentials.js.map +1 -0
  6. package/dist/icons/googleapis-proximitybeacon.dark.png +0 -0
  7. package/dist/icons/googleapis-proximitybeacon.png +0 -0
  8. package/dist/nodes/GoogleapisProximitybeacon/GoogleapisProximitybeacon.node.d.ts +4 -0
  9. package/dist/nodes/GoogleapisProximitybeacon/GoogleapisProximitybeacon.node.js +75 -0
  10. package/dist/nodes/GoogleapisProximitybeacon/GoogleapisProximitybeacon.node.js.map +1 -0
  11. package/dist/nodes/GoogleapisProximitybeacon/GoogleapisProximitybeacon.node.json +20 -0
  12. package/dist/nodes/GoogleapisProximitybeacon/googleapis-proximitybeacon.dark.png +0 -0
  13. package/dist/nodes/GoogleapisProximitybeacon/googleapis-proximitybeacon.png +0 -0
  14. package/dist/nodes/GoogleapisProximitybeacon/resources/beaconinfo/index.d.ts +2 -0
  15. package/dist/nodes/GoogleapisProximitybeacon/resources/beaconinfo/index.js +103 -0
  16. package/dist/nodes/GoogleapisProximitybeacon/resources/beaconinfo/index.js.map +1 -0
  17. package/dist/nodes/GoogleapisProximitybeacon/resources/beacons/index.d.ts +2 -0
  18. package/dist/nodes/GoogleapisProximitybeacon/resources/beacons/index.js +1921 -0
  19. package/dist/nodes/GoogleapisProximitybeacon/resources/beacons/index.js.map +1 -0
  20. package/dist/nodes/GoogleapisProximitybeacon/resources/index.d.ts +4 -0
  21. package/dist/nodes/GoogleapisProximitybeacon/resources/index.js +12 -0
  22. package/dist/nodes/GoogleapisProximitybeacon/resources/index.js.map +1 -0
  23. package/dist/nodes/GoogleapisProximitybeacon/resources/namespaces/index.d.ts +2 -0
  24. package/dist/nodes/GoogleapisProximitybeacon/resources/namespaces/index.js +216 -0
  25. package/dist/nodes/GoogleapisProximitybeacon/resources/namespaces/index.js.map +1 -0
  26. package/dist/nodes/GoogleapisProximitybeacon/resources/v1-beta-1/index.d.ts +2 -0
  27. package/dist/nodes/GoogleapisProximitybeacon/resources/v1-beta-1/index.js +53 -0
  28. package/dist/nodes/GoogleapisProximitybeacon/resources/v1-beta-1/index.js.map +1 -0
  29. package/dist/package.json +62 -0
  30. package/dist/tsconfig.tsbuildinfo +1 -0
  31. package/package.json +62 -0
@@ -0,0 +1,1921 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.beaconsDescription = void 0;
4
+ exports.beaconsDescription = [
5
+ {
6
+ "displayName": "Operation",
7
+ "name": "operation",
8
+ "type": "options",
9
+ "noDataExpression": true,
10
+ "displayOptions": {
11
+ "show": {
12
+ "resource": [
13
+ "Beacons"
14
+ ]
15
+ }
16
+ },
17
+ "options": [
18
+ {
19
+ "name": "Proximitybeacon Beacons List",
20
+ "value": "Proximitybeacon Beacons List",
21
+ "action": "Proximitybeacon Beacons List",
22
+ "description": "Searches the beacon registry for beacons that match the given search criteria. Only those beacons that the client has permission to list will be returned. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **viewer**, **Is owner** or **Can edit** permissions in the Google Developers Console project.",
23
+ "routing": {
24
+ "request": {
25
+ "method": "GET",
26
+ "url": "=/v1beta1/beacons"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "name": "Proximitybeacon Beacons Register",
32
+ "value": "Proximitybeacon Beacons Register",
33
+ "action": "Proximitybeacon Beacons Register",
34
+ "description": "Registers a previously unregistered beacon given its `advertisedId`. These IDs are unique within the system. An ID can be registered only once. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project.",
35
+ "routing": {
36
+ "request": {
37
+ "method": "POST",
38
+ "url": "=/v1beta1/beacons:register"
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "name": "Proximitybeacon Beacons Attachments Delete",
44
+ "value": "Proximitybeacon Beacons Attachments Delete",
45
+ "action": "Proximitybeacon Beacons Attachments Delete",
46
+ "description": "Deletes the specified attachment for the given beacon. Each attachment has a unique attachment name (`attachmentName`) which is returned when you fetch the attachment data via this API. You specify this with the delete request to control which attachment is removed. This operation cannot be undone. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project.",
47
+ "routing": {
48
+ "request": {
49
+ "method": "DELETE",
50
+ "url": "=/v1beta1/{{$parameter[\"attachmentName\"]}}"
51
+ }
52
+ }
53
+ },
54
+ {
55
+ "name": "Proximitybeacon Beacons Delete",
56
+ "value": "Proximitybeacon Beacons Delete",
57
+ "action": "Proximitybeacon Beacons Delete",
58
+ "description": "Deletes the specified beacon including all diagnostics data for the beacon as well as any attachments on the beacon (including those belonging to other projects). This operation cannot be undone. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project.",
59
+ "routing": {
60
+ "request": {
61
+ "method": "DELETE",
62
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}"
63
+ }
64
+ }
65
+ },
66
+ {
67
+ "name": "Proximitybeacon Beacons Get",
68
+ "value": "Proximitybeacon Beacons Get",
69
+ "action": "Proximitybeacon Beacons Get",
70
+ "description": "Returns detailed information about the specified beacon. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **viewer**, **Is owner** or **Can edit** permissions in the Google Developers Console project. Requests may supply an Eddystone-EID beacon name in the form: `beacons/4!beaconId` where the `beaconId` is the base16 ephemeral ID broadcast by the beacon. The returned `Beacon` object will contain the beacon's stable Eddystone-UID. Clients not authorized to resolve the beacon's ephemeral Eddystone-EID broadcast will receive an error.",
71
+ "routing": {
72
+ "request": {
73
+ "method": "GET",
74
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}"
75
+ }
76
+ }
77
+ },
78
+ {
79
+ "name": "Proximitybeacon Beacons Update",
80
+ "value": "Proximitybeacon Beacons Update",
81
+ "action": "Proximitybeacon Beacons Update",
82
+ "description": "Updates the information about the specified beacon. **Any field that you do not populate in the submitted beacon will be permanently erased**, so you should follow the \"read, modify, write\" pattern to avoid inadvertently destroying data. Changes to the beacon status via this method will be silently ignored. To update beacon status, use the separate methods on this API for activation, deactivation, and decommissioning. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project.",
83
+ "routing": {
84
+ "request": {
85
+ "method": "PUT",
86
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}"
87
+ }
88
+ }
89
+ },
90
+ {
91
+ "name": "Proximitybeacon Beacons Attachments List",
92
+ "value": "Proximitybeacon Beacons Attachments List",
93
+ "action": "Proximitybeacon Beacons Attachments List",
94
+ "description": "Returns the attachments for the specified beacon that match the specified namespaced-type pattern. To control which namespaced types are returned, you add the `namespacedType` query parameter to the request. You must either use `*/*`, to return all attachments, or the namespace must be one of the ones returned from the `namespaces` endpoint. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **viewer**, **Is owner** or **Can edit** permissions in the Google Developers Console project.",
95
+ "routing": {
96
+ "request": {
97
+ "method": "GET",
98
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}/attachments"
99
+ }
100
+ }
101
+ },
102
+ {
103
+ "name": "Proximitybeacon Beacons Attachments Create",
104
+ "value": "Proximitybeacon Beacons Attachments Create",
105
+ "action": "Proximitybeacon Beacons Attachments Create",
106
+ "description": "Associates the given data with the specified beacon. Attachment data must contain two parts: - A namespaced type. - The actual attachment data itself. The namespaced type consists of two parts, the namespace and the type. The namespace must be one of the values returned by the `namespaces` endpoint, while the type can be a string of any characters except for the forward slash (`/`) up to 100 characters in length. Attachment data can be up to 1024 bytes long. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project.",
107
+ "routing": {
108
+ "request": {
109
+ "method": "POST",
110
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}/attachments"
111
+ }
112
+ }
113
+ },
114
+ {
115
+ "name": "Proximitybeacon Beacons Attachments Batch Delete",
116
+ "value": "Proximitybeacon Beacons Attachments Batch Delete",
117
+ "action": "Proximitybeacon Beacons Attachments Batch Delete",
118
+ "description": "Deletes multiple attachments on a given beacon. This operation is permanent and cannot be undone. You can optionally specify `namespacedType` to choose which attachments should be deleted. If you do not specify `namespacedType`, all your attachments on the given beacon will be deleted. You also may explicitly specify `*/*` to delete all. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project.",
119
+ "routing": {
120
+ "request": {
121
+ "method": "POST",
122
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}/attachments:batchDelete"
123
+ }
124
+ }
125
+ },
126
+ {
127
+ "name": "Proximitybeacon Beacons Diagnostics List",
128
+ "value": "Proximitybeacon Beacons Diagnostics List",
129
+ "action": "Proximitybeacon Beacons Diagnostics List",
130
+ "description": "List the diagnostics for a single beacon. You can also list diagnostics for all the beacons owned by your Google Developers Console project by using the beacon name `beacons/-`. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **viewer**, **Is owner** or **Can edit** permissions in the Google Developers Console project.",
131
+ "routing": {
132
+ "request": {
133
+ "method": "GET",
134
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}/diagnostics"
135
+ }
136
+ }
137
+ },
138
+ {
139
+ "name": "Proximitybeacon Beacons Activate",
140
+ "value": "Proximitybeacon Beacons Activate",
141
+ "action": "Proximitybeacon Beacons Activate",
142
+ "description": "Activates a beacon. A beacon that is active will return information and attachment data when queried via `beaconinfo.getforobserved`. Calling this method on an already active beacon will do nothing (but will return a successful response code). Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project.",
143
+ "routing": {
144
+ "request": {
145
+ "method": "POST",
146
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}:activate"
147
+ }
148
+ }
149
+ },
150
+ {
151
+ "name": "Proximitybeacon Beacons Deactivate",
152
+ "value": "Proximitybeacon Beacons Deactivate",
153
+ "action": "Proximitybeacon Beacons Deactivate",
154
+ "description": "Deactivates a beacon. Once deactivated, the API will not return information nor attachment data for the beacon when queried via `beaconinfo.getforobserved`. Calling this method on an already inactive beacon will do nothing (but will return a successful response code). Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project.",
155
+ "routing": {
156
+ "request": {
157
+ "method": "POST",
158
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}:deactivate"
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "name": "Proximitybeacon Beacons Decommission",
164
+ "value": "Proximitybeacon Beacons Decommission",
165
+ "action": "Proximitybeacon Beacons Decommission",
166
+ "description": "Decommissions the specified beacon in the service. This beacon will no longer be returned from `beaconinfo.getforobserved`. This operation is permanent -- you will not be able to re-register a beacon with this ID again. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project.",
167
+ "routing": {
168
+ "request": {
169
+ "method": "POST",
170
+ "url": "=/v1beta1/{{$parameter[\"beaconName\"]}}:decommission"
171
+ }
172
+ }
173
+ }
174
+ ],
175
+ "default": ""
176
+ },
177
+ {
178
+ "displayName": "GET /v1beta1/beacons",
179
+ "name": "operation",
180
+ "type": "notice",
181
+ "typeOptions": {
182
+ "theme": "info"
183
+ },
184
+ "default": "",
185
+ "displayOptions": {
186
+ "show": {
187
+ "resource": [
188
+ "Beacons"
189
+ ],
190
+ "operation": [
191
+ "Proximitybeacon Beacons List"
192
+ ]
193
+ }
194
+ }
195
+ },
196
+ {
197
+ "displayName": "Page Size",
198
+ "name": "pageSize",
199
+ "description": "The maximum number of records to return for this request, up to a server-defined upper limit.",
200
+ "default": 0,
201
+ "type": "number",
202
+ "routing": {
203
+ "send": {
204
+ "type": "query",
205
+ "property": "pageSize",
206
+ "value": "={{ $value }}",
207
+ "propertyInDotNotation": false
208
+ }
209
+ },
210
+ "displayOptions": {
211
+ "show": {
212
+ "resource": [
213
+ "Beacons"
214
+ ],
215
+ "operation": [
216
+ "Proximitybeacon Beacons List"
217
+ ]
218
+ }
219
+ }
220
+ },
221
+ {
222
+ "displayName": "Page Token",
223
+ "name": "pageToken",
224
+ "description": "A pagination token obtained from a previous request to list beacons.",
225
+ "default": "",
226
+ "type": "string",
227
+ "routing": {
228
+ "send": {
229
+ "type": "query",
230
+ "property": "pageToken",
231
+ "value": "={{ $value }}",
232
+ "propertyInDotNotation": false
233
+ }
234
+ },
235
+ "displayOptions": {
236
+ "show": {
237
+ "resource": [
238
+ "Beacons"
239
+ ],
240
+ "operation": [
241
+ "Proximitybeacon Beacons List"
242
+ ]
243
+ }
244
+ }
245
+ },
246
+ {
247
+ "displayName": "Project ID",
248
+ "name": "projectId",
249
+ "description": "The project id to list beacons under. If not present then the project credential that made the request is used as the project. Optional.",
250
+ "default": "",
251
+ "type": "string",
252
+ "routing": {
253
+ "send": {
254
+ "type": "query",
255
+ "property": "projectId",
256
+ "value": "={{ $value }}",
257
+ "propertyInDotNotation": false
258
+ }
259
+ },
260
+ "displayOptions": {
261
+ "show": {
262
+ "resource": [
263
+ "Beacons"
264
+ ],
265
+ "operation": [
266
+ "Proximitybeacon Beacons List"
267
+ ]
268
+ }
269
+ }
270
+ },
271
+ {
272
+ "displayName": "Q",
273
+ "name": "q",
274
+ "description": "Filter query string that supports the following field filters: * **description:`\"\"`** For example: **description:\"Room 3\"** Returns beacons whose description matches tokens in the string \"Room 3\" (not necessarily that exact string). The string must be double-quoted. * **status:``** For example: **status:active** Returns beacons whose status matches the given value. Values must be one of the Beacon.Status enum values (case insensitive). Accepts multiple filters which will be combined with OR logic. * **stability:``** For example: **stability:mobile** Returns beacons whose expected stability matches the given value. Values must be one of the Beacon.Stability enum values (case insensitive). Accepts multiple filters which will be combined with OR logic. * **place\\_id:`\"\"`** For example: **place\\_id:\"ChIJVSZzVR8FdkgRXGmmm6SslKw=\"** Returns beacons explicitly registered at the given place, expressed as a Place ID obtained from [Google Places API](/places/place-id). Does not match places inside the given place. Does not consider the beacon's actual location (which may be different from its registered place). Accepts multiple filters that will be combined with OR logic. The place ID must be double-quoted. * **registration\\_time`[<|>|<=|>=]`** For example: **registration\\_time>=1433116800** Returns beacons whose registration time matches the given filter. Supports the operators: <, >, <=, and >=. Timestamp must be expressed as an integer number of seconds since midnight January 1, 1970 UTC. Accepts at most two filters that will be combined with AND logic, to support \"between\" semantics. If more than two are supplied, the latter ones are ignored. * **lat:` lng: radius:`** For example: **lat:51.1232343 lng:-1.093852 radius:1000** Returns beacons whose registered location is within the given circle. When any of these fields are given, all are required. Latitude and longitude must be decimal degrees between -90.0 and 90.0 and between -180.0 and 180.0 respectively. Radius must be an integer number of meters between 10 and 1,000,000 (1000 km). * **property:`\"=\"`** For example: **property:\"battery-type=CR2032\"** Returns beacons which have a property of the given name and value. Supports multiple filters which will be combined with OR logic. The entire name=value string must be double-quoted as one string. * **attachment\\_type:`\"\"`** For example: **attachment_type:\"my-namespace/my-type\"** Returns beacons having at least one attachment of the given namespaced type. Supports \"any within this namespace\" via the partial wildcard syntax: \"my-namespace/*\". Supports multiple filters which will be combined with OR logic. The string must be double-quoted. * **indoor\\_level:`\"\"`** For example: **indoor\\_level:\"1\"** Returns beacons which are located on the given indoor level. Accepts multiple filters that will be combined with OR logic. Multiple filters on the same field are combined with OR logic (except registration_time which is combined with AND logic). Multiple filters on different fields are combined with AND logic. Filters should be separated by spaces. As with any HTTP query string parameter, the whole filter expression must be URL-encoded. Example REST request: `GET /v1beta1/beacons?q=status:active%20lat:51.123%20lng:-1.095%20radius:1000`",
275
+ "default": "",
276
+ "type": "string",
277
+ "routing": {
278
+ "send": {
279
+ "type": "query",
280
+ "property": "q",
281
+ "value": "={{ $value }}",
282
+ "propertyInDotNotation": false
283
+ }
284
+ },
285
+ "displayOptions": {
286
+ "show": {
287
+ "resource": [
288
+ "Beacons"
289
+ ],
290
+ "operation": [
291
+ "Proximitybeacon Beacons List"
292
+ ]
293
+ }
294
+ }
295
+ },
296
+ {
297
+ "displayName": "POST /v1beta1/beacons:register",
298
+ "name": "operation",
299
+ "type": "notice",
300
+ "typeOptions": {
301
+ "theme": "info"
302
+ },
303
+ "default": "",
304
+ "displayOptions": {
305
+ "show": {
306
+ "resource": [
307
+ "Beacons"
308
+ ],
309
+ "operation": [
310
+ "Proximitybeacon Beacons Register"
311
+ ]
312
+ }
313
+ }
314
+ },
315
+ {
316
+ "displayName": "Project ID",
317
+ "name": "projectId",
318
+ "description": "The project id of the project the beacon will be registered to. If the project id is not specified then the project making the request is used. Optional.",
319
+ "default": "",
320
+ "type": "string",
321
+ "routing": {
322
+ "send": {
323
+ "type": "query",
324
+ "property": "projectId",
325
+ "value": "={{ $value }}",
326
+ "propertyInDotNotation": false
327
+ }
328
+ },
329
+ "displayOptions": {
330
+ "show": {
331
+ "resource": [
332
+ "Beacons"
333
+ ],
334
+ "operation": [
335
+ "Proximitybeacon Beacons Register"
336
+ ]
337
+ }
338
+ }
339
+ },
340
+ {
341
+ "displayName": "Advertised ID",
342
+ "name": "advertisedId",
343
+ "type": "json",
344
+ "default": "{}",
345
+ "description": "Defines a unique identifier of a beacon as broadcast by the device.",
346
+ "routing": {
347
+ "send": {
348
+ "property": "advertisedId",
349
+ "propertyInDotNotation": false,
350
+ "type": "body",
351
+ "value": "={{ JSON.parse($value) }}"
352
+ }
353
+ },
354
+ "displayOptions": {
355
+ "show": {
356
+ "resource": [
357
+ "Beacons"
358
+ ],
359
+ "operation": [
360
+ "Proximitybeacon Beacons Register"
361
+ ]
362
+ }
363
+ }
364
+ },
365
+ {
366
+ "displayName": "Beacon Name",
367
+ "name": "beaconName",
368
+ "type": "string",
369
+ "default": "",
370
+ "description": "Resource name of this beacon. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone, `1` for iBeacon, or `5` for AltBeacon. This field must be left empty when registering. After reading a beacon, clients can use the name for future operations.",
371
+ "routing": {
372
+ "send": {
373
+ "property": "beaconName",
374
+ "propertyInDotNotation": false,
375
+ "type": "body",
376
+ "value": "={{ $value }}"
377
+ }
378
+ },
379
+ "displayOptions": {
380
+ "show": {
381
+ "resource": [
382
+ "Beacons"
383
+ ],
384
+ "operation": [
385
+ "Proximitybeacon Beacons Register"
386
+ ]
387
+ }
388
+ }
389
+ },
390
+ {
391
+ "displayName": "Description",
392
+ "name": "description",
393
+ "type": "string",
394
+ "default": "",
395
+ "description": "Free text used to identify and describe the beacon. Maximum length 140 characters. Optional.",
396
+ "routing": {
397
+ "send": {
398
+ "property": "description",
399
+ "propertyInDotNotation": false,
400
+ "type": "body",
401
+ "value": "={{ $value }}"
402
+ }
403
+ },
404
+ "displayOptions": {
405
+ "show": {
406
+ "resource": [
407
+ "Beacons"
408
+ ],
409
+ "operation": [
410
+ "Proximitybeacon Beacons Register"
411
+ ]
412
+ }
413
+ }
414
+ },
415
+ {
416
+ "displayName": "Ephemeral ID Registration",
417
+ "name": "ephemeralIdRegistration",
418
+ "type": "json",
419
+ "default": "{}",
420
+ "description": "Write-only registration parameters for beacons using Eddystone-EID format. Two ways of securely registering an Eddystone-EID beacon with the service are supported: 1. Perform an ECDH key exchange via this API, including a previous call to `GET /v1beta1/eidparams`. In this case the fields `beacon_ecdh_public_key` and `service_ecdh_public_key` should be populated and `beacon_identity_key` should not be populated. This method ensures that only the two parties in the ECDH key exchange can compute the identity key, which becomes a secret between them. 2. Derive or obtain the beacon's identity key via other secure means (perhaps an ECDH key exchange between the beacon and a mobile device or any other secure method), and then submit the resulting identity key to the service. In this case `beacon_identity_key` field should be populated, and neither of `beacon_ecdh_public_key` nor `service_ecdh_public_key` fields should be. The security of this method depends on how securely the parties involved (in particular the bluetooth client) handle the identity key, and obviously on how securely the identity key was generated. See [the Eddystone specification](https://github.com/google/eddystone/tree/master/eddystone-eid) at GitHub.",
421
+ "routing": {
422
+ "send": {
423
+ "property": "ephemeralIdRegistration",
424
+ "propertyInDotNotation": false,
425
+ "type": "body",
426
+ "value": "={{ JSON.parse($value) }}"
427
+ }
428
+ },
429
+ "displayOptions": {
430
+ "show": {
431
+ "resource": [
432
+ "Beacons"
433
+ ],
434
+ "operation": [
435
+ "Proximitybeacon Beacons Register"
436
+ ]
437
+ }
438
+ }
439
+ },
440
+ {
441
+ "displayName": "Expected Stability",
442
+ "name": "expectedStability",
443
+ "type": "options",
444
+ "default": "STABILITY_UNSPECIFIED",
445
+ "description": "Expected location stability. This is set when the beacon is registered or updated, not automatically detected in any way. Optional.",
446
+ "options": [
447
+ {
448
+ "name": "STABILITY UNSPECIFIED",
449
+ "value": "STABILITY_UNSPECIFIED"
450
+ },
451
+ {
452
+ "name": "STABLE",
453
+ "value": "STABLE"
454
+ },
455
+ {
456
+ "name": "PORTABLE",
457
+ "value": "PORTABLE"
458
+ },
459
+ {
460
+ "name": "MOBILE",
461
+ "value": "MOBILE"
462
+ },
463
+ {
464
+ "name": "ROVING",
465
+ "value": "ROVING"
466
+ }
467
+ ],
468
+ "routing": {
469
+ "send": {
470
+ "property": "expectedStability",
471
+ "propertyInDotNotation": false,
472
+ "type": "body",
473
+ "value": "={{ $value }}"
474
+ }
475
+ },
476
+ "displayOptions": {
477
+ "show": {
478
+ "resource": [
479
+ "Beacons"
480
+ ],
481
+ "operation": [
482
+ "Proximitybeacon Beacons Register"
483
+ ]
484
+ }
485
+ }
486
+ },
487
+ {
488
+ "displayName": "Indoor Level",
489
+ "name": "indoorLevel",
490
+ "type": "json",
491
+ "default": "{}",
492
+ "description": "Indoor level, a human-readable string as returned by Google Maps APIs, useful to indicate which floor of a building a beacon is located on.",
493
+ "routing": {
494
+ "send": {
495
+ "property": "indoorLevel",
496
+ "propertyInDotNotation": false,
497
+ "type": "body",
498
+ "value": "={{ JSON.parse($value) }}"
499
+ }
500
+ },
501
+ "displayOptions": {
502
+ "show": {
503
+ "resource": [
504
+ "Beacons"
505
+ ],
506
+ "operation": [
507
+ "Proximitybeacon Beacons Register"
508
+ ]
509
+ }
510
+ }
511
+ },
512
+ {
513
+ "displayName": "Lat Lng",
514
+ "name": "latLng",
515
+ "type": "json",
516
+ "default": "{}",
517
+ "description": "An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges.",
518
+ "routing": {
519
+ "send": {
520
+ "property": "latLng",
521
+ "propertyInDotNotation": false,
522
+ "type": "body",
523
+ "value": "={{ JSON.parse($value) }}"
524
+ }
525
+ },
526
+ "displayOptions": {
527
+ "show": {
528
+ "resource": [
529
+ "Beacons"
530
+ ],
531
+ "operation": [
532
+ "Proximitybeacon Beacons Register"
533
+ ]
534
+ }
535
+ }
536
+ },
537
+ {
538
+ "displayName": "Place ID",
539
+ "name": "placeId",
540
+ "type": "string",
541
+ "default": "",
542
+ "description": "The [Google Places API](/places/place-id) Place ID of the place where the beacon is deployed. This is given when the beacon is registered or updated, not automatically detected in any way. Optional.",
543
+ "routing": {
544
+ "send": {
545
+ "property": "placeId",
546
+ "propertyInDotNotation": false,
547
+ "type": "body",
548
+ "value": "={{ $value }}"
549
+ }
550
+ },
551
+ "displayOptions": {
552
+ "show": {
553
+ "resource": [
554
+ "Beacons"
555
+ ],
556
+ "operation": [
557
+ "Proximitybeacon Beacons Register"
558
+ ]
559
+ }
560
+ }
561
+ },
562
+ {
563
+ "displayName": "Properties",
564
+ "name": "properties",
565
+ "type": "json",
566
+ "default": "{}",
567
+ "description": "Properties of the beacon device, for example battery type or firmware version. Optional.",
568
+ "routing": {
569
+ "send": {
570
+ "property": "properties",
571
+ "propertyInDotNotation": false,
572
+ "type": "body",
573
+ "value": "={{ JSON.parse($value) }}"
574
+ }
575
+ },
576
+ "displayOptions": {
577
+ "show": {
578
+ "resource": [
579
+ "Beacons"
580
+ ],
581
+ "operation": [
582
+ "Proximitybeacon Beacons Register"
583
+ ]
584
+ }
585
+ }
586
+ },
587
+ {
588
+ "displayName": "Provisioning Key",
589
+ "name": "provisioningKey",
590
+ "type": "string",
591
+ "default": "",
592
+ "description": "Some beacons may require a user to provide an authorization key before changing any of its configuration (e.g. broadcast frames, transmit power). This field provides a place to store and control access to that key. This field is populated in responses to `GET /v1beta1/beacons/3!beaconId` from users with write access to the given beacon. That is to say: If the user is authorized to write the beacon's confidential data in the service, the service considers them authorized to configure the beacon. Note that this key grants nothing on the service, only on the beacon itself.",
593
+ "routing": {
594
+ "send": {
595
+ "property": "provisioningKey",
596
+ "propertyInDotNotation": false,
597
+ "type": "body",
598
+ "value": "={{ $value }}"
599
+ }
600
+ },
601
+ "displayOptions": {
602
+ "show": {
603
+ "resource": [
604
+ "Beacons"
605
+ ],
606
+ "operation": [
607
+ "Proximitybeacon Beacons Register"
608
+ ]
609
+ }
610
+ }
611
+ },
612
+ {
613
+ "displayName": "Status",
614
+ "name": "status",
615
+ "type": "options",
616
+ "default": "STATUS_UNSPECIFIED",
617
+ "description": "Current status of the beacon. Required.",
618
+ "options": [
619
+ {
620
+ "name": "STATUS UNSPECIFIED",
621
+ "value": "STATUS_UNSPECIFIED"
622
+ },
623
+ {
624
+ "name": "ACTIVE",
625
+ "value": "ACTIVE"
626
+ },
627
+ {
628
+ "name": "DECOMMISSIONED",
629
+ "value": "DECOMMISSIONED"
630
+ },
631
+ {
632
+ "name": "INACTIVE",
633
+ "value": "INACTIVE"
634
+ }
635
+ ],
636
+ "routing": {
637
+ "send": {
638
+ "property": "status",
639
+ "propertyInDotNotation": false,
640
+ "type": "body",
641
+ "value": "={{ $value }}"
642
+ }
643
+ },
644
+ "displayOptions": {
645
+ "show": {
646
+ "resource": [
647
+ "Beacons"
648
+ ],
649
+ "operation": [
650
+ "Proximitybeacon Beacons Register"
651
+ ]
652
+ }
653
+ }
654
+ },
655
+ {
656
+ "displayName": "DELETE /v1beta1/{attachmentName}",
657
+ "name": "operation",
658
+ "type": "notice",
659
+ "typeOptions": {
660
+ "theme": "info"
661
+ },
662
+ "default": "",
663
+ "displayOptions": {
664
+ "show": {
665
+ "resource": [
666
+ "Beacons"
667
+ ],
668
+ "operation": [
669
+ "Proximitybeacon Beacons Attachments Delete"
670
+ ]
671
+ }
672
+ }
673
+ },
674
+ {
675
+ "displayName": "Attachment Name",
676
+ "name": "attachmentName",
677
+ "required": true,
678
+ "description": "The attachment name (`attachmentName`) of the attachment to remove. For example: `beacons/3!893737abc9/attachments/c5e937-af0-494-959-ec49d12738`. For Eddystone-EID beacons, the beacon ID portion (`3!893737abc9`) may be the beacon's current EID, or its \"stable\" Eddystone-UID. Required.",
679
+ "default": "",
680
+ "type": "string",
681
+ "displayOptions": {
682
+ "show": {
683
+ "resource": [
684
+ "Beacons"
685
+ ],
686
+ "operation": [
687
+ "Proximitybeacon Beacons Attachments Delete"
688
+ ]
689
+ }
690
+ }
691
+ },
692
+ {
693
+ "displayName": "Project ID",
694
+ "name": "projectId",
695
+ "description": "The project id of the attachment to delete. If not provided, the project that is making the request is used. Optional.",
696
+ "default": "",
697
+ "type": "string",
698
+ "routing": {
699
+ "send": {
700
+ "type": "query",
701
+ "property": "projectId",
702
+ "value": "={{ $value }}",
703
+ "propertyInDotNotation": false
704
+ }
705
+ },
706
+ "displayOptions": {
707
+ "show": {
708
+ "resource": [
709
+ "Beacons"
710
+ ],
711
+ "operation": [
712
+ "Proximitybeacon Beacons Attachments Delete"
713
+ ]
714
+ }
715
+ }
716
+ },
717
+ {
718
+ "displayName": "DELETE /v1beta1/{beaconName}",
719
+ "name": "operation",
720
+ "type": "notice",
721
+ "typeOptions": {
722
+ "theme": "info"
723
+ },
724
+ "default": "",
725
+ "displayOptions": {
726
+ "show": {
727
+ "resource": [
728
+ "Beacons"
729
+ ],
730
+ "operation": [
731
+ "Proximitybeacon Beacons Delete"
732
+ ]
733
+ }
734
+ }
735
+ },
736
+ {
737
+ "displayName": "Beacon Name",
738
+ "name": "beaconName",
739
+ "required": true,
740
+ "description": "Beacon that should be deleted. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current EID or the beacon's \"stable\" UID. Required.",
741
+ "default": "",
742
+ "type": "string",
743
+ "displayOptions": {
744
+ "show": {
745
+ "resource": [
746
+ "Beacons"
747
+ ],
748
+ "operation": [
749
+ "Proximitybeacon Beacons Delete"
750
+ ]
751
+ }
752
+ }
753
+ },
754
+ {
755
+ "displayName": "Project ID",
756
+ "name": "projectId",
757
+ "description": "The project id of the beacon to delete. If not provided, the project that is making the request is used. Optional.",
758
+ "default": "",
759
+ "type": "string",
760
+ "routing": {
761
+ "send": {
762
+ "type": "query",
763
+ "property": "projectId",
764
+ "value": "={{ $value }}",
765
+ "propertyInDotNotation": false
766
+ }
767
+ },
768
+ "displayOptions": {
769
+ "show": {
770
+ "resource": [
771
+ "Beacons"
772
+ ],
773
+ "operation": [
774
+ "Proximitybeacon Beacons Delete"
775
+ ]
776
+ }
777
+ }
778
+ },
779
+ {
780
+ "displayName": "GET /v1beta1/{beaconName}",
781
+ "name": "operation",
782
+ "type": "notice",
783
+ "typeOptions": {
784
+ "theme": "info"
785
+ },
786
+ "default": "",
787
+ "displayOptions": {
788
+ "show": {
789
+ "resource": [
790
+ "Beacons"
791
+ ],
792
+ "operation": [
793
+ "Proximitybeacon Beacons Get"
794
+ ]
795
+ }
796
+ }
797
+ },
798
+ {
799
+ "displayName": "Beacon Name",
800
+ "name": "beaconName",
801
+ "required": true,
802
+ "description": "Resource name of this beacon. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current EID or the beacon's \"stable\" UID. Required.",
803
+ "default": "",
804
+ "type": "string",
805
+ "displayOptions": {
806
+ "show": {
807
+ "resource": [
808
+ "Beacons"
809
+ ],
810
+ "operation": [
811
+ "Proximitybeacon Beacons Get"
812
+ ]
813
+ }
814
+ }
815
+ },
816
+ {
817
+ "displayName": "Project ID",
818
+ "name": "projectId",
819
+ "description": "The project id of the beacon to request. If the project id is not specified then the project making the request is used. The project id must match the project that owns the beacon. Optional.",
820
+ "default": "",
821
+ "type": "string",
822
+ "routing": {
823
+ "send": {
824
+ "type": "query",
825
+ "property": "projectId",
826
+ "value": "={{ $value }}",
827
+ "propertyInDotNotation": false
828
+ }
829
+ },
830
+ "displayOptions": {
831
+ "show": {
832
+ "resource": [
833
+ "Beacons"
834
+ ],
835
+ "operation": [
836
+ "Proximitybeacon Beacons Get"
837
+ ]
838
+ }
839
+ }
840
+ },
841
+ {
842
+ "displayName": "PUT /v1beta1/{beaconName}",
843
+ "name": "operation",
844
+ "type": "notice",
845
+ "typeOptions": {
846
+ "theme": "info"
847
+ },
848
+ "default": "",
849
+ "displayOptions": {
850
+ "show": {
851
+ "resource": [
852
+ "Beacons"
853
+ ],
854
+ "operation": [
855
+ "Proximitybeacon Beacons Update"
856
+ ]
857
+ }
858
+ }
859
+ },
860
+ {
861
+ "displayName": "Beacon Name",
862
+ "name": "beaconName",
863
+ "required": true,
864
+ "description": "Resource name of this beacon. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone, `1` for iBeacon, or `5` for AltBeacon. This field must be left empty when registering. After reading a beacon, clients can use the name for future operations.",
865
+ "default": "",
866
+ "type": "string",
867
+ "displayOptions": {
868
+ "show": {
869
+ "resource": [
870
+ "Beacons"
871
+ ],
872
+ "operation": [
873
+ "Proximitybeacon Beacons Update"
874
+ ]
875
+ }
876
+ }
877
+ },
878
+ {
879
+ "displayName": "Project ID",
880
+ "name": "projectId",
881
+ "description": "The project id of the beacon to update. If the project id is not specified then the project making the request is used. The project id must match the project that owns the beacon. Optional.",
882
+ "default": "",
883
+ "type": "string",
884
+ "routing": {
885
+ "send": {
886
+ "type": "query",
887
+ "property": "projectId",
888
+ "value": "={{ $value }}",
889
+ "propertyInDotNotation": false
890
+ }
891
+ },
892
+ "displayOptions": {
893
+ "show": {
894
+ "resource": [
895
+ "Beacons"
896
+ ],
897
+ "operation": [
898
+ "Proximitybeacon Beacons Update"
899
+ ]
900
+ }
901
+ }
902
+ },
903
+ {
904
+ "displayName": "Advertised ID",
905
+ "name": "advertisedId",
906
+ "type": "json",
907
+ "default": "{}",
908
+ "description": "Defines a unique identifier of a beacon as broadcast by the device.",
909
+ "routing": {
910
+ "send": {
911
+ "property": "advertisedId",
912
+ "propertyInDotNotation": false,
913
+ "type": "body",
914
+ "value": "={{ JSON.parse($value) }}"
915
+ }
916
+ },
917
+ "displayOptions": {
918
+ "show": {
919
+ "resource": [
920
+ "Beacons"
921
+ ],
922
+ "operation": [
923
+ "Proximitybeacon Beacons Update"
924
+ ]
925
+ }
926
+ }
927
+ },
928
+ {
929
+ "displayName": "Beacon Name",
930
+ "name": "beaconName",
931
+ "type": "string",
932
+ "default": "",
933
+ "description": "Resource name of this beacon. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone, `1` for iBeacon, or `5` for AltBeacon. This field must be left empty when registering. After reading a beacon, clients can use the name for future operations.",
934
+ "routing": {
935
+ "send": {
936
+ "property": "beaconName",
937
+ "propertyInDotNotation": false,
938
+ "type": "body",
939
+ "value": "={{ $value }}"
940
+ }
941
+ },
942
+ "displayOptions": {
943
+ "show": {
944
+ "resource": [
945
+ "Beacons"
946
+ ],
947
+ "operation": [
948
+ "Proximitybeacon Beacons Update"
949
+ ]
950
+ }
951
+ }
952
+ },
953
+ {
954
+ "displayName": "Description",
955
+ "name": "description",
956
+ "type": "string",
957
+ "default": "",
958
+ "description": "Free text used to identify and describe the beacon. Maximum length 140 characters. Optional.",
959
+ "routing": {
960
+ "send": {
961
+ "property": "description",
962
+ "propertyInDotNotation": false,
963
+ "type": "body",
964
+ "value": "={{ $value }}"
965
+ }
966
+ },
967
+ "displayOptions": {
968
+ "show": {
969
+ "resource": [
970
+ "Beacons"
971
+ ],
972
+ "operation": [
973
+ "Proximitybeacon Beacons Update"
974
+ ]
975
+ }
976
+ }
977
+ },
978
+ {
979
+ "displayName": "Ephemeral ID Registration",
980
+ "name": "ephemeralIdRegistration",
981
+ "type": "json",
982
+ "default": "{}",
983
+ "description": "Write-only registration parameters for beacons using Eddystone-EID format. Two ways of securely registering an Eddystone-EID beacon with the service are supported: 1. Perform an ECDH key exchange via this API, including a previous call to `GET /v1beta1/eidparams`. In this case the fields `beacon_ecdh_public_key` and `service_ecdh_public_key` should be populated and `beacon_identity_key` should not be populated. This method ensures that only the two parties in the ECDH key exchange can compute the identity key, which becomes a secret between them. 2. Derive or obtain the beacon's identity key via other secure means (perhaps an ECDH key exchange between the beacon and a mobile device or any other secure method), and then submit the resulting identity key to the service. In this case `beacon_identity_key` field should be populated, and neither of `beacon_ecdh_public_key` nor `service_ecdh_public_key` fields should be. The security of this method depends on how securely the parties involved (in particular the bluetooth client) handle the identity key, and obviously on how securely the identity key was generated. See [the Eddystone specification](https://github.com/google/eddystone/tree/master/eddystone-eid) at GitHub.",
984
+ "routing": {
985
+ "send": {
986
+ "property": "ephemeralIdRegistration",
987
+ "propertyInDotNotation": false,
988
+ "type": "body",
989
+ "value": "={{ JSON.parse($value) }}"
990
+ }
991
+ },
992
+ "displayOptions": {
993
+ "show": {
994
+ "resource": [
995
+ "Beacons"
996
+ ],
997
+ "operation": [
998
+ "Proximitybeacon Beacons Update"
999
+ ]
1000
+ }
1001
+ }
1002
+ },
1003
+ {
1004
+ "displayName": "Expected Stability",
1005
+ "name": "expectedStability",
1006
+ "type": "options",
1007
+ "default": "STABILITY_UNSPECIFIED",
1008
+ "description": "Expected location stability. This is set when the beacon is registered or updated, not automatically detected in any way. Optional.",
1009
+ "options": [
1010
+ {
1011
+ "name": "STABILITY UNSPECIFIED",
1012
+ "value": "STABILITY_UNSPECIFIED"
1013
+ },
1014
+ {
1015
+ "name": "STABLE",
1016
+ "value": "STABLE"
1017
+ },
1018
+ {
1019
+ "name": "PORTABLE",
1020
+ "value": "PORTABLE"
1021
+ },
1022
+ {
1023
+ "name": "MOBILE",
1024
+ "value": "MOBILE"
1025
+ },
1026
+ {
1027
+ "name": "ROVING",
1028
+ "value": "ROVING"
1029
+ }
1030
+ ],
1031
+ "routing": {
1032
+ "send": {
1033
+ "property": "expectedStability",
1034
+ "propertyInDotNotation": false,
1035
+ "type": "body",
1036
+ "value": "={{ $value }}"
1037
+ }
1038
+ },
1039
+ "displayOptions": {
1040
+ "show": {
1041
+ "resource": [
1042
+ "Beacons"
1043
+ ],
1044
+ "operation": [
1045
+ "Proximitybeacon Beacons Update"
1046
+ ]
1047
+ }
1048
+ }
1049
+ },
1050
+ {
1051
+ "displayName": "Indoor Level",
1052
+ "name": "indoorLevel",
1053
+ "type": "json",
1054
+ "default": "{}",
1055
+ "description": "Indoor level, a human-readable string as returned by Google Maps APIs, useful to indicate which floor of a building a beacon is located on.",
1056
+ "routing": {
1057
+ "send": {
1058
+ "property": "indoorLevel",
1059
+ "propertyInDotNotation": false,
1060
+ "type": "body",
1061
+ "value": "={{ JSON.parse($value) }}"
1062
+ }
1063
+ },
1064
+ "displayOptions": {
1065
+ "show": {
1066
+ "resource": [
1067
+ "Beacons"
1068
+ ],
1069
+ "operation": [
1070
+ "Proximitybeacon Beacons Update"
1071
+ ]
1072
+ }
1073
+ }
1074
+ },
1075
+ {
1076
+ "displayName": "Lat Lng",
1077
+ "name": "latLng",
1078
+ "type": "json",
1079
+ "default": "{}",
1080
+ "description": "An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges.",
1081
+ "routing": {
1082
+ "send": {
1083
+ "property": "latLng",
1084
+ "propertyInDotNotation": false,
1085
+ "type": "body",
1086
+ "value": "={{ JSON.parse($value) }}"
1087
+ }
1088
+ },
1089
+ "displayOptions": {
1090
+ "show": {
1091
+ "resource": [
1092
+ "Beacons"
1093
+ ],
1094
+ "operation": [
1095
+ "Proximitybeacon Beacons Update"
1096
+ ]
1097
+ }
1098
+ }
1099
+ },
1100
+ {
1101
+ "displayName": "Place ID",
1102
+ "name": "placeId",
1103
+ "type": "string",
1104
+ "default": "",
1105
+ "description": "The [Google Places API](/places/place-id) Place ID of the place where the beacon is deployed. This is given when the beacon is registered or updated, not automatically detected in any way. Optional.",
1106
+ "routing": {
1107
+ "send": {
1108
+ "property": "placeId",
1109
+ "propertyInDotNotation": false,
1110
+ "type": "body",
1111
+ "value": "={{ $value }}"
1112
+ }
1113
+ },
1114
+ "displayOptions": {
1115
+ "show": {
1116
+ "resource": [
1117
+ "Beacons"
1118
+ ],
1119
+ "operation": [
1120
+ "Proximitybeacon Beacons Update"
1121
+ ]
1122
+ }
1123
+ }
1124
+ },
1125
+ {
1126
+ "displayName": "Properties",
1127
+ "name": "properties",
1128
+ "type": "json",
1129
+ "default": "{}",
1130
+ "description": "Properties of the beacon device, for example battery type or firmware version. Optional.",
1131
+ "routing": {
1132
+ "send": {
1133
+ "property": "properties",
1134
+ "propertyInDotNotation": false,
1135
+ "type": "body",
1136
+ "value": "={{ JSON.parse($value) }}"
1137
+ }
1138
+ },
1139
+ "displayOptions": {
1140
+ "show": {
1141
+ "resource": [
1142
+ "Beacons"
1143
+ ],
1144
+ "operation": [
1145
+ "Proximitybeacon Beacons Update"
1146
+ ]
1147
+ }
1148
+ }
1149
+ },
1150
+ {
1151
+ "displayName": "Provisioning Key",
1152
+ "name": "provisioningKey",
1153
+ "type": "string",
1154
+ "default": "",
1155
+ "description": "Some beacons may require a user to provide an authorization key before changing any of its configuration (e.g. broadcast frames, transmit power). This field provides a place to store and control access to that key. This field is populated in responses to `GET /v1beta1/beacons/3!beaconId` from users with write access to the given beacon. That is to say: If the user is authorized to write the beacon's confidential data in the service, the service considers them authorized to configure the beacon. Note that this key grants nothing on the service, only on the beacon itself.",
1156
+ "routing": {
1157
+ "send": {
1158
+ "property": "provisioningKey",
1159
+ "propertyInDotNotation": false,
1160
+ "type": "body",
1161
+ "value": "={{ $value }}"
1162
+ }
1163
+ },
1164
+ "displayOptions": {
1165
+ "show": {
1166
+ "resource": [
1167
+ "Beacons"
1168
+ ],
1169
+ "operation": [
1170
+ "Proximitybeacon Beacons Update"
1171
+ ]
1172
+ }
1173
+ }
1174
+ },
1175
+ {
1176
+ "displayName": "Status",
1177
+ "name": "status",
1178
+ "type": "options",
1179
+ "default": "STATUS_UNSPECIFIED",
1180
+ "description": "Current status of the beacon. Required.",
1181
+ "options": [
1182
+ {
1183
+ "name": "STATUS UNSPECIFIED",
1184
+ "value": "STATUS_UNSPECIFIED"
1185
+ },
1186
+ {
1187
+ "name": "ACTIVE",
1188
+ "value": "ACTIVE"
1189
+ },
1190
+ {
1191
+ "name": "DECOMMISSIONED",
1192
+ "value": "DECOMMISSIONED"
1193
+ },
1194
+ {
1195
+ "name": "INACTIVE",
1196
+ "value": "INACTIVE"
1197
+ }
1198
+ ],
1199
+ "routing": {
1200
+ "send": {
1201
+ "property": "status",
1202
+ "propertyInDotNotation": false,
1203
+ "type": "body",
1204
+ "value": "={{ $value }}"
1205
+ }
1206
+ },
1207
+ "displayOptions": {
1208
+ "show": {
1209
+ "resource": [
1210
+ "Beacons"
1211
+ ],
1212
+ "operation": [
1213
+ "Proximitybeacon Beacons Update"
1214
+ ]
1215
+ }
1216
+ }
1217
+ },
1218
+ {
1219
+ "displayName": "GET /v1beta1/{beaconName}/attachments",
1220
+ "name": "operation",
1221
+ "type": "notice",
1222
+ "typeOptions": {
1223
+ "theme": "info"
1224
+ },
1225
+ "default": "",
1226
+ "displayOptions": {
1227
+ "show": {
1228
+ "resource": [
1229
+ "Beacons"
1230
+ ],
1231
+ "operation": [
1232
+ "Proximitybeacon Beacons Attachments List"
1233
+ ]
1234
+ }
1235
+ }
1236
+ },
1237
+ {
1238
+ "displayName": "Beacon Name",
1239
+ "name": "beaconName",
1240
+ "required": true,
1241
+ "description": "Beacon whose attachments should be fetched. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current EID or the beacon's \"stable\" UID. Required.",
1242
+ "default": "",
1243
+ "type": "string",
1244
+ "displayOptions": {
1245
+ "show": {
1246
+ "resource": [
1247
+ "Beacons"
1248
+ ],
1249
+ "operation": [
1250
+ "Proximitybeacon Beacons Attachments List"
1251
+ ]
1252
+ }
1253
+ }
1254
+ },
1255
+ {
1256
+ "displayName": "Namespaced Type",
1257
+ "name": "namespacedType",
1258
+ "description": "Specifies the namespace and type of attachment to include in response in namespace/type format. Accepts `*/*` to specify \"all types in all namespaces\".",
1259
+ "default": "",
1260
+ "type": "string",
1261
+ "routing": {
1262
+ "send": {
1263
+ "type": "query",
1264
+ "property": "namespacedType",
1265
+ "value": "={{ $value }}",
1266
+ "propertyInDotNotation": false
1267
+ }
1268
+ },
1269
+ "displayOptions": {
1270
+ "show": {
1271
+ "resource": [
1272
+ "Beacons"
1273
+ ],
1274
+ "operation": [
1275
+ "Proximitybeacon Beacons Attachments List"
1276
+ ]
1277
+ }
1278
+ }
1279
+ },
1280
+ {
1281
+ "displayName": "Project ID",
1282
+ "name": "projectId",
1283
+ "description": "The project id to list beacon attachments under. This field can be used when \"*\" is specified to mean all attachment namespaces. Projects may have multiple attachments with multiple namespaces. If \"*\" is specified and the projectId string is empty, then the project making the request is used. Optional.",
1284
+ "default": "",
1285
+ "type": "string",
1286
+ "routing": {
1287
+ "send": {
1288
+ "type": "query",
1289
+ "property": "projectId",
1290
+ "value": "={{ $value }}",
1291
+ "propertyInDotNotation": false
1292
+ }
1293
+ },
1294
+ "displayOptions": {
1295
+ "show": {
1296
+ "resource": [
1297
+ "Beacons"
1298
+ ],
1299
+ "operation": [
1300
+ "Proximitybeacon Beacons Attachments List"
1301
+ ]
1302
+ }
1303
+ }
1304
+ },
1305
+ {
1306
+ "displayName": "POST /v1beta1/{beaconName}/attachments",
1307
+ "name": "operation",
1308
+ "type": "notice",
1309
+ "typeOptions": {
1310
+ "theme": "info"
1311
+ },
1312
+ "default": "",
1313
+ "displayOptions": {
1314
+ "show": {
1315
+ "resource": [
1316
+ "Beacons"
1317
+ ],
1318
+ "operation": [
1319
+ "Proximitybeacon Beacons Attachments Create"
1320
+ ]
1321
+ }
1322
+ }
1323
+ },
1324
+ {
1325
+ "displayName": "Beacon Name",
1326
+ "name": "beaconName",
1327
+ "required": true,
1328
+ "description": "Beacon on which the attachment should be created. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current EID or the beacon's \"stable\" UID. Required.",
1329
+ "default": "",
1330
+ "type": "string",
1331
+ "displayOptions": {
1332
+ "show": {
1333
+ "resource": [
1334
+ "Beacons"
1335
+ ],
1336
+ "operation": [
1337
+ "Proximitybeacon Beacons Attachments Create"
1338
+ ]
1339
+ }
1340
+ }
1341
+ },
1342
+ {
1343
+ "displayName": "Project ID",
1344
+ "name": "projectId",
1345
+ "description": "The project id of the project the attachment will belong to. If the project id is not specified then the project making the request is used. Optional.",
1346
+ "default": "",
1347
+ "type": "string",
1348
+ "routing": {
1349
+ "send": {
1350
+ "type": "query",
1351
+ "property": "projectId",
1352
+ "value": "={{ $value }}",
1353
+ "propertyInDotNotation": false
1354
+ }
1355
+ },
1356
+ "displayOptions": {
1357
+ "show": {
1358
+ "resource": [
1359
+ "Beacons"
1360
+ ],
1361
+ "operation": [
1362
+ "Proximitybeacon Beacons Attachments Create"
1363
+ ]
1364
+ }
1365
+ }
1366
+ },
1367
+ {
1368
+ "displayName": "Attachment Name",
1369
+ "name": "attachmentName",
1370
+ "type": "string",
1371
+ "default": "",
1372
+ "description": "Resource name of this attachment. Attachment names have the format: beacons/ beacon_id/attachments/attachment_id. Leave this empty on creation.",
1373
+ "routing": {
1374
+ "send": {
1375
+ "property": "attachmentName",
1376
+ "propertyInDotNotation": false,
1377
+ "type": "body",
1378
+ "value": "={{ $value }}"
1379
+ }
1380
+ },
1381
+ "displayOptions": {
1382
+ "show": {
1383
+ "resource": [
1384
+ "Beacons"
1385
+ ],
1386
+ "operation": [
1387
+ "Proximitybeacon Beacons Attachments Create"
1388
+ ]
1389
+ }
1390
+ }
1391
+ },
1392
+ {
1393
+ "displayName": "Creation Time Ms",
1394
+ "name": "creationTimeMs",
1395
+ "type": "string",
1396
+ "default": "",
1397
+ "description": "The UTC time when this attachment was created, in milliseconds since the UNIX epoch.",
1398
+ "routing": {
1399
+ "send": {
1400
+ "property": "creationTimeMs",
1401
+ "propertyInDotNotation": false,
1402
+ "type": "body",
1403
+ "value": "={{ $value }}"
1404
+ }
1405
+ },
1406
+ "displayOptions": {
1407
+ "show": {
1408
+ "resource": [
1409
+ "Beacons"
1410
+ ],
1411
+ "operation": [
1412
+ "Proximitybeacon Beacons Attachments Create"
1413
+ ]
1414
+ }
1415
+ }
1416
+ },
1417
+ {
1418
+ "displayName": "Data",
1419
+ "name": "data",
1420
+ "type": "string",
1421
+ "default": "",
1422
+ "description": "An opaque data container for client-provided data. Must be [base64](http://tools.ietf.org/html/rfc4648#section-4) encoded in HTTP requests, and will be so encoded (with padding) in responses. Required.",
1423
+ "routing": {
1424
+ "send": {
1425
+ "property": "data",
1426
+ "propertyInDotNotation": false,
1427
+ "type": "body",
1428
+ "value": "={{ $value }}"
1429
+ }
1430
+ },
1431
+ "displayOptions": {
1432
+ "show": {
1433
+ "resource": [
1434
+ "Beacons"
1435
+ ],
1436
+ "operation": [
1437
+ "Proximitybeacon Beacons Attachments Create"
1438
+ ]
1439
+ }
1440
+ }
1441
+ },
1442
+ {
1443
+ "displayName": "Max Distance Meters",
1444
+ "name": "maxDistanceMeters",
1445
+ "type": "number",
1446
+ "default": 0,
1447
+ "description": "The distance away from the beacon at which this attachment should be delivered to a mobile app. Setting this to a value greater than zero indicates that the app should behave as if the beacon is \"seen\" when the mobile device is less than this distance away from the beacon. Different attachments on the same beacon can have different max distances. Note that even though this value is expressed with fractional meter precision, real-world behavior is likley to be much less precise than one meter, due to the nature of current Bluetooth radio technology. Optional. When not set or zero, the attachment should be delivered at the beacon's outer limit of detection. Negative values are invalid and return an error.",
1448
+ "routing": {
1449
+ "send": {
1450
+ "property": "maxDistanceMeters",
1451
+ "propertyInDotNotation": false,
1452
+ "type": "body",
1453
+ "value": "={{ $value }}"
1454
+ }
1455
+ },
1456
+ "displayOptions": {
1457
+ "show": {
1458
+ "resource": [
1459
+ "Beacons"
1460
+ ],
1461
+ "operation": [
1462
+ "Proximitybeacon Beacons Attachments Create"
1463
+ ]
1464
+ }
1465
+ }
1466
+ },
1467
+ {
1468
+ "displayName": "Namespaced Type",
1469
+ "name": "namespacedType",
1470
+ "type": "string",
1471
+ "default": "",
1472
+ "description": "Specifies what kind of attachment this is. Tells a client how to interpret the `data` field. Format is namespace/type. Namespace provides type separation between clients. Type describes the type of `data`, for use by the client when parsing the `data` field. Required.",
1473
+ "routing": {
1474
+ "send": {
1475
+ "property": "namespacedType",
1476
+ "propertyInDotNotation": false,
1477
+ "type": "body",
1478
+ "value": "={{ $value }}"
1479
+ }
1480
+ },
1481
+ "displayOptions": {
1482
+ "show": {
1483
+ "resource": [
1484
+ "Beacons"
1485
+ ],
1486
+ "operation": [
1487
+ "Proximitybeacon Beacons Attachments Create"
1488
+ ]
1489
+ }
1490
+ }
1491
+ },
1492
+ {
1493
+ "displayName": "POST /v1beta1/{beaconName}/attachments:batchDelete",
1494
+ "name": "operation",
1495
+ "type": "notice",
1496
+ "typeOptions": {
1497
+ "theme": "info"
1498
+ },
1499
+ "default": "",
1500
+ "displayOptions": {
1501
+ "show": {
1502
+ "resource": [
1503
+ "Beacons"
1504
+ ],
1505
+ "operation": [
1506
+ "Proximitybeacon Beacons Attachments Batch Delete"
1507
+ ]
1508
+ }
1509
+ }
1510
+ },
1511
+ {
1512
+ "displayName": "Beacon Name",
1513
+ "name": "beaconName",
1514
+ "required": true,
1515
+ "description": "The beacon whose attachments should be deleted. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current EID or the beacon's \"stable\" UID. Required.",
1516
+ "default": "",
1517
+ "type": "string",
1518
+ "displayOptions": {
1519
+ "show": {
1520
+ "resource": [
1521
+ "Beacons"
1522
+ ],
1523
+ "operation": [
1524
+ "Proximitybeacon Beacons Attachments Batch Delete"
1525
+ ]
1526
+ }
1527
+ }
1528
+ },
1529
+ {
1530
+ "displayName": "Namespaced Type",
1531
+ "name": "namespacedType",
1532
+ "description": "Specifies the namespace and type of attachments to delete in `namespace/type` format. Accepts `*/*` to specify \"all types in all namespaces\". Optional.",
1533
+ "default": "",
1534
+ "type": "string",
1535
+ "routing": {
1536
+ "send": {
1537
+ "type": "query",
1538
+ "property": "namespacedType",
1539
+ "value": "={{ $value }}",
1540
+ "propertyInDotNotation": false
1541
+ }
1542
+ },
1543
+ "displayOptions": {
1544
+ "show": {
1545
+ "resource": [
1546
+ "Beacons"
1547
+ ],
1548
+ "operation": [
1549
+ "Proximitybeacon Beacons Attachments Batch Delete"
1550
+ ]
1551
+ }
1552
+ }
1553
+ },
1554
+ {
1555
+ "displayName": "Project ID",
1556
+ "name": "projectId",
1557
+ "description": "The project id to delete beacon attachments under. This field can be used when \"*\" is specified to mean all attachment namespaces. Projects may have multiple attachments with multiple namespaces. If \"*\" is specified and the projectId string is empty, then the project making the request is used. Optional.",
1558
+ "default": "",
1559
+ "type": "string",
1560
+ "routing": {
1561
+ "send": {
1562
+ "type": "query",
1563
+ "property": "projectId",
1564
+ "value": "={{ $value }}",
1565
+ "propertyInDotNotation": false
1566
+ }
1567
+ },
1568
+ "displayOptions": {
1569
+ "show": {
1570
+ "resource": [
1571
+ "Beacons"
1572
+ ],
1573
+ "operation": [
1574
+ "Proximitybeacon Beacons Attachments Batch Delete"
1575
+ ]
1576
+ }
1577
+ }
1578
+ },
1579
+ {
1580
+ "displayName": "GET /v1beta1/{beaconName}/diagnostics",
1581
+ "name": "operation",
1582
+ "type": "notice",
1583
+ "typeOptions": {
1584
+ "theme": "info"
1585
+ },
1586
+ "default": "",
1587
+ "displayOptions": {
1588
+ "show": {
1589
+ "resource": [
1590
+ "Beacons"
1591
+ ],
1592
+ "operation": [
1593
+ "Proximitybeacon Beacons Diagnostics List"
1594
+ ]
1595
+ }
1596
+ }
1597
+ },
1598
+ {
1599
+ "displayName": "Beacon Name",
1600
+ "name": "beaconName",
1601
+ "required": true,
1602
+ "description": "Beacon that the diagnostics are for.",
1603
+ "default": "",
1604
+ "type": "string",
1605
+ "displayOptions": {
1606
+ "show": {
1607
+ "resource": [
1608
+ "Beacons"
1609
+ ],
1610
+ "operation": [
1611
+ "Proximitybeacon Beacons Diagnostics List"
1612
+ ]
1613
+ }
1614
+ }
1615
+ },
1616
+ {
1617
+ "displayName": "Alert Filter",
1618
+ "name": "alertFilter",
1619
+ "description": "Requests only beacons that have the given alert. For example, to find beacons that have low batteries use `alert_filter=LOW_BATTERY`.",
1620
+ "default": "ALERT_UNSPECIFIED",
1621
+ "type": "options",
1622
+ "options": [
1623
+ {
1624
+ "name": "ALERT UNSPECIFIED",
1625
+ "value": "ALERT_UNSPECIFIED"
1626
+ },
1627
+ {
1628
+ "name": "WRONG LOCATION",
1629
+ "value": "WRONG_LOCATION"
1630
+ },
1631
+ {
1632
+ "name": "LOW BATTERY",
1633
+ "value": "LOW_BATTERY"
1634
+ },
1635
+ {
1636
+ "name": "LOW ACTIVITY",
1637
+ "value": "LOW_ACTIVITY"
1638
+ }
1639
+ ],
1640
+ "routing": {
1641
+ "send": {
1642
+ "type": "query",
1643
+ "property": "alertFilter",
1644
+ "value": "={{ $value }}",
1645
+ "propertyInDotNotation": false
1646
+ }
1647
+ },
1648
+ "displayOptions": {
1649
+ "show": {
1650
+ "resource": [
1651
+ "Beacons"
1652
+ ],
1653
+ "operation": [
1654
+ "Proximitybeacon Beacons Diagnostics List"
1655
+ ]
1656
+ }
1657
+ }
1658
+ },
1659
+ {
1660
+ "displayName": "Page Size",
1661
+ "name": "pageSize",
1662
+ "description": "Specifies the maximum number of results to return. Defaults to 10. Maximum 1000. Optional.",
1663
+ "default": 0,
1664
+ "type": "number",
1665
+ "routing": {
1666
+ "send": {
1667
+ "type": "query",
1668
+ "property": "pageSize",
1669
+ "value": "={{ $value }}",
1670
+ "propertyInDotNotation": false
1671
+ }
1672
+ },
1673
+ "displayOptions": {
1674
+ "show": {
1675
+ "resource": [
1676
+ "Beacons"
1677
+ ],
1678
+ "operation": [
1679
+ "Proximitybeacon Beacons Diagnostics List"
1680
+ ]
1681
+ }
1682
+ }
1683
+ },
1684
+ {
1685
+ "displayName": "Page Token",
1686
+ "name": "pageToken",
1687
+ "description": "Requests results that occur after the `page_token`, obtained from the response to a previous request. Optional.",
1688
+ "default": "",
1689
+ "type": "string",
1690
+ "routing": {
1691
+ "send": {
1692
+ "type": "query",
1693
+ "property": "pageToken",
1694
+ "value": "={{ $value }}",
1695
+ "propertyInDotNotation": false
1696
+ }
1697
+ },
1698
+ "displayOptions": {
1699
+ "show": {
1700
+ "resource": [
1701
+ "Beacons"
1702
+ ],
1703
+ "operation": [
1704
+ "Proximitybeacon Beacons Diagnostics List"
1705
+ ]
1706
+ }
1707
+ }
1708
+ },
1709
+ {
1710
+ "displayName": "Project ID",
1711
+ "name": "projectId",
1712
+ "description": "Requests only diagnostic records for the given project id. If not set, then the project making the request will be used for looking up diagnostic records. Optional.",
1713
+ "default": "",
1714
+ "type": "string",
1715
+ "routing": {
1716
+ "send": {
1717
+ "type": "query",
1718
+ "property": "projectId",
1719
+ "value": "={{ $value }}",
1720
+ "propertyInDotNotation": false
1721
+ }
1722
+ },
1723
+ "displayOptions": {
1724
+ "show": {
1725
+ "resource": [
1726
+ "Beacons"
1727
+ ],
1728
+ "operation": [
1729
+ "Proximitybeacon Beacons Diagnostics List"
1730
+ ]
1731
+ }
1732
+ }
1733
+ },
1734
+ {
1735
+ "displayName": "POST /v1beta1/{beaconName}:activate",
1736
+ "name": "operation",
1737
+ "type": "notice",
1738
+ "typeOptions": {
1739
+ "theme": "info"
1740
+ },
1741
+ "default": "",
1742
+ "displayOptions": {
1743
+ "show": {
1744
+ "resource": [
1745
+ "Beacons"
1746
+ ],
1747
+ "operation": [
1748
+ "Proximitybeacon Beacons Activate"
1749
+ ]
1750
+ }
1751
+ }
1752
+ },
1753
+ {
1754
+ "displayName": "Beacon Name",
1755
+ "name": "beaconName",
1756
+ "required": true,
1757
+ "description": "Beacon that should be activated. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current EID or the beacon's \"stable\" UID. Required.",
1758
+ "default": "",
1759
+ "type": "string",
1760
+ "displayOptions": {
1761
+ "show": {
1762
+ "resource": [
1763
+ "Beacons"
1764
+ ],
1765
+ "operation": [
1766
+ "Proximitybeacon Beacons Activate"
1767
+ ]
1768
+ }
1769
+ }
1770
+ },
1771
+ {
1772
+ "displayName": "Project ID",
1773
+ "name": "projectId",
1774
+ "description": "The project id of the beacon to activate. If the project id is not specified then the project making the request is used. The project id must match the project that owns the beacon. Optional.",
1775
+ "default": "",
1776
+ "type": "string",
1777
+ "routing": {
1778
+ "send": {
1779
+ "type": "query",
1780
+ "property": "projectId",
1781
+ "value": "={{ $value }}",
1782
+ "propertyInDotNotation": false
1783
+ }
1784
+ },
1785
+ "displayOptions": {
1786
+ "show": {
1787
+ "resource": [
1788
+ "Beacons"
1789
+ ],
1790
+ "operation": [
1791
+ "Proximitybeacon Beacons Activate"
1792
+ ]
1793
+ }
1794
+ }
1795
+ },
1796
+ {
1797
+ "displayName": "POST /v1beta1/{beaconName}:deactivate",
1798
+ "name": "operation",
1799
+ "type": "notice",
1800
+ "typeOptions": {
1801
+ "theme": "info"
1802
+ },
1803
+ "default": "",
1804
+ "displayOptions": {
1805
+ "show": {
1806
+ "resource": [
1807
+ "Beacons"
1808
+ ],
1809
+ "operation": [
1810
+ "Proximitybeacon Beacons Deactivate"
1811
+ ]
1812
+ }
1813
+ }
1814
+ },
1815
+ {
1816
+ "displayName": "Beacon Name",
1817
+ "name": "beaconName",
1818
+ "required": true,
1819
+ "description": "Beacon that should be deactivated. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current EID or the beacon's \"stable\" UID. Required.",
1820
+ "default": "",
1821
+ "type": "string",
1822
+ "displayOptions": {
1823
+ "show": {
1824
+ "resource": [
1825
+ "Beacons"
1826
+ ],
1827
+ "operation": [
1828
+ "Proximitybeacon Beacons Deactivate"
1829
+ ]
1830
+ }
1831
+ }
1832
+ },
1833
+ {
1834
+ "displayName": "Project ID",
1835
+ "name": "projectId",
1836
+ "description": "The project id of the beacon to deactivate. If the project id is not specified then the project making the request is used. The project id must match the project that owns the beacon. Optional.",
1837
+ "default": "",
1838
+ "type": "string",
1839
+ "routing": {
1840
+ "send": {
1841
+ "type": "query",
1842
+ "property": "projectId",
1843
+ "value": "={{ $value }}",
1844
+ "propertyInDotNotation": false
1845
+ }
1846
+ },
1847
+ "displayOptions": {
1848
+ "show": {
1849
+ "resource": [
1850
+ "Beacons"
1851
+ ],
1852
+ "operation": [
1853
+ "Proximitybeacon Beacons Deactivate"
1854
+ ]
1855
+ }
1856
+ }
1857
+ },
1858
+ {
1859
+ "displayName": "POST /v1beta1/{beaconName}:decommission",
1860
+ "name": "operation",
1861
+ "type": "notice",
1862
+ "typeOptions": {
1863
+ "theme": "info"
1864
+ },
1865
+ "default": "",
1866
+ "displayOptions": {
1867
+ "show": {
1868
+ "resource": [
1869
+ "Beacons"
1870
+ ],
1871
+ "operation": [
1872
+ "Proximitybeacon Beacons Decommission"
1873
+ ]
1874
+ }
1875
+ }
1876
+ },
1877
+ {
1878
+ "displayName": "Beacon Name",
1879
+ "name": "beaconName",
1880
+ "required": true,
1881
+ "description": "Beacon that should be decommissioned. A beacon name has the format \"beacons/N!beaconId\" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current EID of the beacon's \"stable\" UID. Required.",
1882
+ "default": "",
1883
+ "type": "string",
1884
+ "displayOptions": {
1885
+ "show": {
1886
+ "resource": [
1887
+ "Beacons"
1888
+ ],
1889
+ "operation": [
1890
+ "Proximitybeacon Beacons Decommission"
1891
+ ]
1892
+ }
1893
+ }
1894
+ },
1895
+ {
1896
+ "displayName": "Project ID",
1897
+ "name": "projectId",
1898
+ "description": "The project id of the beacon to decommission. If the project id is not specified then the project making the request is used. The project id must match the project that owns the beacon. Optional.",
1899
+ "default": "",
1900
+ "type": "string",
1901
+ "routing": {
1902
+ "send": {
1903
+ "type": "query",
1904
+ "property": "projectId",
1905
+ "value": "={{ $value }}",
1906
+ "propertyInDotNotation": false
1907
+ }
1908
+ },
1909
+ "displayOptions": {
1910
+ "show": {
1911
+ "resource": [
1912
+ "Beacons"
1913
+ ],
1914
+ "operation": [
1915
+ "Proximitybeacon Beacons Decommission"
1916
+ ]
1917
+ }
1918
+ }
1919
+ },
1920
+ ];
1921
+ //# sourceMappingURL=index.js.map