Newer
Older
# GeospatialDataApi
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
Method | HTTP request | Description
------------- | ------------- | -------------
[**deleteGeoDataByName**](GeospatialDataApi.md#deleteGeoDataByName) | **DELETE** /geodata/{assetName} | Delete geospatial data
[**getAssetData**](GeospatialDataApi.md#getAssetData) | **GET** /geodata | Get geospatial data
[**getGeoDataByName**](GeospatialDataApi.md#getGeoDataByName) | **GET** /geodata/{assetName} | Get geospatial data
[**updateGeoDataByName**](GeospatialDataApi.md#updateGeoDataByName) | **POST** /geodata/{assetName} | Create/Update geospatial data
<a name="deleteGeoDataByName"></a>
# **deleteGeoDataByName**
> deleteGeoDataByName(assetName)
Delete geospatial data
Delete geospatial data for the given asset
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**assetName** | **String**| Name of geospatial asset | [default to null]
### Return type
null (empty response body)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: Not defined
<a name="getAssetData"></a>
# **getAssetData**
> GeoDataAssetList getAssetData(assetType, subType, excludePath)
Get geospatial data
Get geospatial data for all assets present in database
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**assetType** | **String**| Filter by asset type | [optional] [default to null] [enum: UE, POA, COMPUTE]
**subType** | **String**| Filter by asset sub type | [optional] [default to null] [enum: UE, POA, POA-4G, POA-5G, POA-WIFI, EDGE, FOG, CLOUD]
**excludePath** | **String**| Exclude UE paths in response (default: false) | [optional] [default to null] [enum: true, false]
### Return type
[**GeoDataAssetList**](../Models/GeoDataAssetList.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
<a name="getGeoDataByName"></a>
# **getGeoDataByName**
> GeoDataAsset getGeoDataByName(assetName, excludePath)
Get geospatial data
Get geospatial data for the given asset
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**assetName** | **String**| Name of geospatial asset | [default to null]
**excludePath** | **String**| Exclude UE paths in response (default: false) | [optional] [default to null] [enum: true, false]
### Return type
[**GeoDataAsset**](../Models/GeoDataAsset.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
<a name="updateGeoDataByName"></a>
# **updateGeoDataByName**
> updateGeoDataByName(assetName, geoData)
Create/Update geospatial data
Create/Update geospatial data for the given asset
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**assetName** | **String**| Name of geospatial asset | [default to null]
**geoData** | [**GeoDataAsset**](../Models/GeoDataAsset.md)| Geospatial data |
### Return type
null (empty response body)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: Not defined