bellhop-client 0.2.1

Autogenerated API client for Bellhop
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
# \DefaultApi

All URIs are relative to *http://localhost*

Method | HTTP request | Description
------------- | ------------- | -------------
[**create_asset**]DefaultApi.md#create_asset | **post** /assets | Create a new asset
[**create_asset_type**]DefaultApi.md#create_asset_type | **post** /types | Create a new asset type
[**create_lease**]DefaultApi.md#create_lease | **put** /assets/{asset_id}/lease | Create a new lease for this asset
[**create_tag**]DefaultApi.md#create_tag | **post** /assets/{asset_id}/tags | Create a new tag
[**create_tag_type**]DefaultApi.md#create_tag_type | **post** /types/{asset_type_id}/tag-types | Create a new tag type
[**delete_asset**]DefaultApi.md#delete_asset | **delete** /assets/{asset_id} | Delete an asset and all tags associated with it
[**delete_asset_type**]DefaultApi.md#delete_asset_type | **delete** /types/{asset_type_id} | Delete an asset type and all assets and tags associated with it
[**delete_lease**]DefaultApi.md#delete_lease | **delete** /assets/{asset_id}/lease | Release a lease ahead of its end time
[**delete_tag**]DefaultApi.md#delete_tag | **delete** /assets/{asset_id}/tags/{tag_type_id} | Delete a tag
[**list_asset_types**]DefaultApi.md#list_asset_types | **get** /types | List all asset types
[**list_assets**]DefaultApi.md#list_assets | **get** /assets | List all assets
[**list_sub_assets**]DefaultApi.md#list_sub_assets | **get** /types/{asset_type_id}/assets | List assets that belong to an asset type
[**list_tag_types**]DefaultApi.md#list_tag_types | **get** /types/{asset_type_id}/tag-types | List tag types that belong to an asset type
[**list_tags**]DefaultApi.md#list_tags | **get** /assets/{asset_id}/tags | List tags that belong to an asset
[**show_asset**]DefaultApi.md#show_asset | **get** /assets/{asset_id} | Show details of an asset
[**show_asset_type**]DefaultApi.md#show_asset_type | **get** /types/{asset_type_id} | Show details of an asset type
[**show_lease**]DefaultApi.md#show_lease | **get** /assets/{asset_id}/lease | Show details of an asset's lease
[**show_tag**]DefaultApi.md#show_tag | **get** /assets/{asset_id}/tags/{tag_type_id} | Show details of a tag
[**show_tag_type**]DefaultApi.md#show_tag_type | **get** /types/{asset_type_id}/tag-types/{tag_type_id} | Show details of a tag type


# **create_asset**
> ::models::Asset create_asset(ctx, create_asset)
Create a new asset

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **create_asset** | [**CreateAsset**]CreateAsset.md| Asset to create | 

### Return type

[**::models::Asset**](Asset.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **create_asset_type**
> ::models::AssetType create_asset_type(ctx, create_asset_type)
Create a new asset type

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **create_asset_type** | [**CreateAssetType**]CreateAssetType.md| Asset type to create | 

### Return type

[**::models::AssetType**](AssetType.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **create_lease**
> ::models::Lease create_lease(ctx, asset_id, create_lease)
Create a new lease for this asset

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_id** | **i32**| Identifier of the asset | 
  **create_lease** | [**CreateLease**]CreateLease.md| Lease to create | 

### Return type

[**::models::Lease**](Lease.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **create_tag**
> ::models::Tag create_tag(ctx, asset_id, create_tag)
Create a new tag

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_id** | **i32**| Identifier of the asset | 
  **create_tag** | [**CreateTag**]CreateTag.md| Tag to create | 

### Return type

[**::models::Tag**](Tag.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **create_tag_type**
> ::models::TagType create_tag_type(ctx, asset_type_id, create_tag_type)
Create a new tag type

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_type_id** | **i32**| Identifier of the asset type | 
  **create_tag_type** | [**CreateTagType**]CreateTagType.md| Tag type to create | 

### Return type

[**::models::TagType**](TagType.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **delete_asset**
> delete_asset(ctx, asset_id)
Delete an asset and all tags associated with it

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_id** | **i32**| Identifier of the asset | 

### Return type

 (empty response body)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **delete_asset_type**
> delete_asset_type(ctx, asset_type_id)
Delete an asset type and all assets and tags associated with it

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_type_id** | **i32**| Identifier of the asset type | 

### Return type

 (empty response body)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **delete_lease**
> delete_lease(ctx, asset_id)
Release a lease ahead of its end time

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_id** | **i32**| Identifier of the asset | 

### Return type

 (empty response body)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **delete_tag**
> delete_tag(ctx, asset_id, tag_type_id)
Delete a tag

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_id** | **i32**| Identifier of the asset | 
  **tag_type_id** | **i32**| Identifier of the tag type | 

### Return type

 (empty response body)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: Not defined

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **list_asset_types**
> ::models::AssetTypes list_asset_types(ctx, )
List all asset types

### Required Parameters
This endpoint does not need any parameter.

### Return type

[**::models::AssetTypes**](AssetTypes.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **list_assets**
> ::models::Assets list_assets(ctx, )
List all assets

### Required Parameters
This endpoint does not need any parameter.

### Return type

[**::models::Assets**](Assets.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **list_sub_assets**
> ::models::Assets list_sub_assets(ctx, asset_type_id)
List assets that belong to an asset type

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_type_id** | **i32**| Identifier of the asset type | 

### Return type

[**::models::Assets**](Assets.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **list_tag_types**
> ::models::TagTypes list_tag_types(ctx, asset_type_id)
List tag types that belong to an asset type

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_type_id** | **i32**| Identifier of the asset type | 

### Return type

[**::models::TagTypes**](TagTypes.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **list_tags**
> ::models::Tags list_tags(ctx, asset_id)
List tags that belong to an asset

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_id** | **i32**| Identifier of the asset | 

### Return type

[**::models::Tags**](Tags.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **show_asset**
> ::models::Asset show_asset(ctx, asset_id)
Show details of an asset

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_id** | **i32**| Identifier of the asset | 

### Return type

[**::models::Asset**](Asset.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **show_asset_type**
> ::models::AssetType show_asset_type(ctx, asset_type_id)
Show details of an asset type

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_type_id** | **i32**| Identifier of the asset type | 

### Return type

[**::models::AssetType**](AssetType.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **show_lease**
> ::models::Lease show_lease(ctx, asset_id)
Show details of an asset's lease

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_id** | **i32**| Identifier of the asset | 

### Return type

[**::models::Lease**](Lease.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **show_tag**
> ::models::Tag show_tag(ctx, asset_id, tag_type_id)
Show details of a tag

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_id** | **i32**| Identifier of the asset | 
  **tag_type_id** | **i32**| Identifier of the tag type | 

### Return type

[**::models::Tag**](Tag.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **show_tag_type**
> ::models::TagType show_tag_type(ctx, asset_type_id, tag_type_id)
Show details of a tag type

### Required Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **ctx** | **context.Context** | context containing the authentication | nil if no authentication
  **asset_type_id** | **i32**| Identifier of the asset type | 
  **tag_type_id** | **i32**| Identifier of the tag type | 

### Return type

[**::models::TagType**](TagType.md)

### Authorization

[XBellhopEmail](../README.md#XBellhopEmail)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)