Skip to content
This repository was archived by the owner on Nov 18, 2025. It is now read-only.

Commit af35459

Browse files
committed
MINOR: add processors
1 parent 647cafe commit af35459

28 files changed

+2616
-88
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,12 @@ Class | Method | HTTP request | Description
202202
*bimdata.CheckplanApi* | [**updateRuleComponent**](docs/CheckplanApi.md#updateRuleComponent) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/checkplan/{check_plan_pk}/ruleset/{ruleset_pk}/rule/{rule_pk}/rulecomponent/{id} | Update some fields of a RuleComponent
203203
*bimdata.CheckplanApi* | [**updateRuleset**](docs/CheckplanApi.md#updateRuleset) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/checkplan/{check_plan_pk}/ruleset/{id} | Update some fields of a Ruleset
204204
*bimdata.CloudApi* | [**cancelCloudUserInvitation**](docs/CloudApi.md#cancelCloudUserInvitation) | **DELETE** /cloud/{cloud_pk}/invitation/{id} | Cancel a pending invitation
205+
*bimdata.CloudApi* | [**cloudProcessorCreate**](docs/CloudApi.md#cloudProcessorCreate) | **POST** /cloud/{cloud_pk}/processor |
206+
*bimdata.CloudApi* | [**cloudProcessorDelete**](docs/CloudApi.md#cloudProcessorDelete) | **DELETE** /cloud/{cloud_pk}/processor/{id} |
207+
*bimdata.CloudApi* | [**cloudProcessorList**](docs/CloudApi.md#cloudProcessorList) | **GET** /cloud/{cloud_pk}/processor |
208+
*bimdata.CloudApi* | [**cloudProcessorPartialUpdate**](docs/CloudApi.md#cloudProcessorPartialUpdate) | **PATCH** /cloud/{cloud_pk}/processor/{id} |
209+
*bimdata.CloudApi* | [**cloudProcessorRead**](docs/CloudApi.md#cloudProcessorRead) | **GET** /cloud/{cloud_pk}/processor/{id} |
210+
*bimdata.CloudApi* | [**cloudProcessorUpdate**](docs/CloudApi.md#cloudProcessorUpdate) | **PUT** /cloud/{cloud_pk}/processor/{id} |
205211
*bimdata.CloudApi* | [**createCloud**](docs/CloudApi.md#createCloud) | **POST** /cloud | Create a cloud
206212
*bimdata.CloudApi* | [**createDemo**](docs/CloudApi.md#createDemo) | **POST** /cloud/{id}/create-demo | Create a Demo project in a cloud
207213
*bimdata.CloudApi* | [**deleteCloud**](docs/CloudApi.md#deleteCloud) | **DELETE** /cloud/{id} | Delete a cloud
@@ -228,6 +234,7 @@ Class | Method | HTTP request | Description
228234
*bimdata.IfcApi* | [**bulkRemoveElementsFromClassification**](docs/IfcApi.md#bulkRemoveElementsFromClassification) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/classification/{ifc_classification_pk}/element/bulk_destroy | Remove the classifications from all elements
229235
*bimdata.IfcApi* | [**bulkUpdateElements**](docs/IfcApi.md#bulkUpdateElements) | **PUT** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/bulk_update | Update many elements at once (all field must be defined)
230236
*bimdata.IfcApi* | [**bulkUpdateIfcProperty**](docs/IfcApi.md#bulkUpdateIfcProperty) | **PUT** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property/bulk_update | Update all fields of many properties of a model
237+
*bimdata.IfcApi* | [**cloudProjectIfcProcessorhandlerPartialUpdate**](docs/IfcApi.md#cloudProjectIfcProcessorhandlerPartialUpdate) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/processorhandler/{id} |
231238
*bimdata.IfcApi* | [**createClassificationElementRelations**](docs/IfcApi.md#createClassificationElementRelations) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/classification-element | Create association between existing classification and existing element
232239
*bimdata.IfcApi* | [**createClassificationsOfElement**](docs/IfcApi.md#createClassificationsOfElement) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{element_uuid}/classification | Create one or many classifications to an element
233240
*bimdata.IfcApi* | [**createElement**](docs/IfcApi.md#createElement) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element | Create an element in the model
@@ -252,6 +259,7 @@ Class | Method | HTTP request | Description
252259
*bimdata.IfcApi* | [**deleteSpace**](docs/IfcApi.md#deleteSpace) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/space/{id} | Delete a space
253260
*bimdata.IfcApi* | [**deleteZone**](docs/IfcApi.md#deleteZone) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{id} | Delete a zone of a model
254261
*bimdata.IfcApi* | [**deleteZoneSpace**](docs/IfcApi.md#deleteZoneSpace) | **DELETE** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{zone_pk}/space/{id} | Delete a space of a zone
262+
*bimdata.IfcApi* | [**exportIfc**](docs/IfcApi.md#exportIfc) | **POST** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id}/export | Export IFC
255263
*bimdata.IfcApi* | [**fullUpdateElement**](docs/IfcApi.md#fullUpdateElement) | **PUT** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/{uuid} | Update all fields of an element
256264
*bimdata.IfcApi* | [**fullUpdateIfc**](docs/IfcApi.md#fullUpdateIfc) | **PUT** /cloud/{cloud_pk}/project/{project_pk}/ifc/{id} | Update all fields of a model
257265
*bimdata.IfcApi* | [**fullUpdateIfcProperty**](docs/IfcApi.md#fullUpdateIfcProperty) | **PUT** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property/{id} | Update some fields of a Property
@@ -287,6 +295,8 @@ Class | Method | HTTP request | Description
287295
*bimdata.IfcApi* | [**getIfcUnit**](docs/IfcApi.md#getIfcUnit) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/unit/{id} | Retrieve a Unit of a model
288296
*bimdata.IfcApi* | [**getIfcUnits**](docs/IfcApi.md#getIfcUnits) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/unit | Retrieve all Units of a model
289297
*bimdata.IfcApi* | [**getIfcs**](docs/IfcApi.md#getIfcs) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc | Retrieve all models
298+
*bimdata.IfcApi* | [**getProcessorHandler**](docs/IfcApi.md#getProcessorHandler) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/processorhandler/{id} | Retrieve a processor handler
299+
*bimdata.IfcApi* | [**getProcessorHandlers**](docs/IfcApi.md#getProcessorHandlers) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/processorhandler | Get all processor handlers
290300
*bimdata.IfcApi* | [**getPropertySet**](docs/IfcApi.md#getPropertySet) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset/{id} | Retrieve a PropertySet of a model
291301
*bimdata.IfcApi* | [**getPropertySets**](docs/IfcApi.md#getPropertySets) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset | Retrieve all PropertySets of a model
292302
*bimdata.IfcApi* | [**getRawElements**](docs/IfcApi.md#getRawElements) | **GET** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/element/raw | Retrieve all elements in a optimized format
@@ -309,6 +319,7 @@ Class | Method | HTTP request | Description
309319
*bimdata.IfcApi* | [**updateIfcProperty**](docs/IfcApi.md#updateIfcProperty) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/property/{id} | Update some fields of a Property
310320
*bimdata.IfcApi* | [**updateIfcPropertyDefinition**](docs/IfcApi.md#updateIfcPropertyDefinition) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertydefinition/{id} | Update some fields of many PropertyDefinitions of a model
311321
*bimdata.IfcApi* | [**updateIfcUnit**](docs/IfcApi.md#updateIfcUnit) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/unit/{id} | Update some fields of a Unit of a model
322+
*bimdata.IfcApi* | [**updateProcessorHandler**](docs/IfcApi.md#updateProcessorHandler) | **PUT** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/processorhandler/{id} | Update the status of a processor handler
312323
*bimdata.IfcApi* | [**updatePropertySet**](docs/IfcApi.md#updatePropertySet) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/propertyset/{id} | Update some fields of a PropertySet
313324
*bimdata.IfcApi* | [**updateSpace**](docs/IfcApi.md#updateSpace) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/space/{id} | Update some fields of a space
314325
*bimdata.IfcApi* | [**updateZone**](docs/IfcApi.md#updateZone) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/ifc/{ifc_pk}/zone/{id} | Update some fields of a zone
@@ -335,7 +346,9 @@ Class | Method | HTTP request | Description
335346
*bimdata.ProjectApi* | [**getFolder**](docs/ProjectApi.md#getFolder) | **GET** /cloud/{cloud_pk}/project/{project_pk}/folder/{id} | Retrieve a folder
336347
*bimdata.ProjectApi* | [**getFolders**](docs/ProjectApi.md#getFolders) | **GET** /cloud/{cloud_pk}/project/{project_pk}/folder | Retrieve all folders
337348
*bimdata.ProjectApi* | [**getProject**](docs/ProjectApi.md#getProject) | **GET** /cloud/{cloud_pk}/project/{id} | Retrieve a project
349+
*bimdata.ProjectApi* | [**getProjectDMSTree**](docs/ProjectApi.md#getProjectDMSTree) | **GET** /cloud/{cloud_pk}/project/{id}/dms-tree | Retrieve the complete DMS tree
338350
*bimdata.ProjectApi* | [**getProjectInvitations**](docs/ProjectApi.md#getProjectInvitations) | **GET** /cloud/{cloud_pk}/project/{project_pk}/invitation | Retrieve all pending invitations in the project
351+
*bimdata.ProjectApi* | [**getProjectSubTree**](docs/ProjectApi.md#getProjectSubTree) | **GET** /cloud/{cloud_pk}/project/subtree | Retrieve the complete projects tree of the cloud
339352
*bimdata.ProjectApi* | [**getProjectTree**](docs/ProjectApi.md#getProjectTree) | **GET** /cloud/{cloud_pk}/project/{id}/tree | Retrieve the complete DMS tree
340353
*bimdata.ProjectApi* | [**getProjectUser**](docs/ProjectApi.md#getProjectUser) | **GET** /cloud/{cloud_pk}/project/{project_pk}/user/{id} | Retrieve a user in a project
341354
*bimdata.ProjectApi* | [**getProjectUsers**](docs/ProjectApi.md#getProjectUsers) | **GET** /cloud/{cloud_pk}/project/{project_pk}/user | Retrieve all users in a project
@@ -379,16 +392,20 @@ Class | Method | HTTP request | Description
379392
- [bimdata.IfcChecker](docs/IfcChecker.md)
380393
- [bimdata.IfcCheckerCheckplan](docs/IfcCheckerCheckplan.md)
381394
- [bimdata.IfcCheckerResults](docs/IfcCheckerResults.md)
395+
- [bimdata.IfcExport](docs/IfcExport.md)
382396
- [bimdata.IfcFiles](docs/IfcFiles.md)
383397
- [bimdata.Label](docs/Label.md)
384398
- [bimdata.LineSeriaizer](docs/LineSeriaizer.md)
385399
- [bimdata.OrthogonalCamera](docs/OrthogonalCamera.md)
386400
- [bimdata.PerspectiveCamera](docs/PerspectiveCamera.md)
387401
- [bimdata.Point](docs/Point.md)
388402
- [bimdata.Priority](docs/Priority.md)
403+
- [bimdata.Processor](docs/Processor.md)
404+
- [bimdata.ProcessorHandler](docs/ProcessorHandler.md)
389405
- [bimdata.Project](docs/Project.md)
390406
- [bimdata.ProjectInvitation](docs/ProjectInvitation.md)
391407
- [bimdata.ProjectRole](docs/ProjectRole.md)
408+
- [bimdata.ProjectWithChildren](docs/ProjectWithChildren.md)
392409
- [bimdata.Property](docs/Property.md)
393410
- [bimdata.PropertyDefinition](docs/PropertyDefinition.md)
394411
- [bimdata.PropertySet](docs/PropertySet.md)

docs/CloudApi.md

Lines changed: 290 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All URIs are relative to *https://api-beta.bimdata.io*
55
Method | HTTP request | Description
66
------------- | ------------- | -------------
77
[**cancelCloudUserInvitation**](CloudApi.md#cancelCloudUserInvitation) | **DELETE** /cloud/{cloud_pk}/invitation/{id} | Cancel a pending invitation
8+
[**cloudProcessorCreate**](CloudApi.md#cloudProcessorCreate) | **POST** /cloud/{cloud_pk}/processor |
9+
[**cloudProcessorDelete**](CloudApi.md#cloudProcessorDelete) | **DELETE** /cloud/{cloud_pk}/processor/{id} |
10+
[**cloudProcessorList**](CloudApi.md#cloudProcessorList) | **GET** /cloud/{cloud_pk}/processor |
11+
[**cloudProcessorPartialUpdate**](CloudApi.md#cloudProcessorPartialUpdate) | **PATCH** /cloud/{cloud_pk}/processor/{id} |
12+
[**cloudProcessorRead**](CloudApi.md#cloudProcessorRead) | **GET** /cloud/{cloud_pk}/processor/{id} |
13+
[**cloudProcessorUpdate**](CloudApi.md#cloudProcessorUpdate) | **PUT** /cloud/{cloud_pk}/processor/{id} |
814
[**createCloud**](CloudApi.md#createCloud) | **POST** /cloud | Create a cloud
915
[**createDemo**](CloudApi.md#createDemo) | **POST** /cloud/{id}/create-demo | Create a Demo project in a cloud
1016
[**deleteCloud**](CloudApi.md#deleteCloud) | **DELETE** /cloud/{id} | Delete a cloud
@@ -71,6 +77,290 @@ null (empty response body)
7177
- **Content-Type**: Not defined
7278
- **Accept**: Not defined
7379

80+
<a name="cloudProcessorCreate"></a>
81+
# **cloudProcessorCreate**
82+
> Processor cloudProcessorCreate(cloudPk, processor)
83+
84+
85+
86+
### Example
87+
```javascript
88+
var bimdata = require('@bimdata/bimdata-api-client');
89+
var defaultClient = bimdata.ApiClient.instance;
90+
// Configure API key authorization: Bearer
91+
var Bearer = defaultClient.authentications['Bearer'];
92+
Bearer.apiKey = 'YOUR API KEY';
93+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
94+
//Bearer.apiKeyPrefix = 'Token';
95+
96+
var apiInstance = new bimdata.CloudApi();
97+
var cloudPk = "cloudPk_example"; // String |
98+
var processor = new bimdata.Processor(); // Processor |
99+
apiInstance.cloudProcessorCreate(cloudPk, processor).then(function(data) {
100+
console.log('API called successfully. Returned data: ' + data);
101+
}, function(error) {
102+
console.error(error);
103+
});
104+
105+
```
106+
107+
### Parameters
108+
109+
Name | Type | Description | Notes
110+
------------- | ------------- | ------------- | -------------
111+
**cloudPk** | **String**| |
112+
**processor** | [**Processor**](Processor.md)| |
113+
114+
### Return type
115+
116+
[**Processor**](Processor.md)
117+
118+
### Authorization
119+
120+
[Bearer](../README.md#Bearer)
121+
122+
### HTTP request headers
123+
124+
- **Content-Type**: application/json
125+
- **Accept**: application/json
126+
127+
<a name="cloudProcessorDelete"></a>
128+
# **cloudProcessorDelete**
129+
> cloudProcessorDelete(cloudPk, id)
130+
131+
132+
133+
### Example
134+
```javascript
135+
var bimdata = require('@bimdata/bimdata-api-client');
136+
var defaultClient = bimdata.ApiClient.instance;
137+
// Configure API key authorization: Bearer
138+
var Bearer = defaultClient.authentications['Bearer'];
139+
Bearer.apiKey = 'YOUR API KEY';
140+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
141+
//Bearer.apiKeyPrefix = 'Token';
142+
143+
var apiInstance = new bimdata.CloudApi();
144+
var cloudPk = "cloudPk_example"; // String |
145+
var id = "id_example"; // String |
146+
apiInstance.cloudProcessorDelete(cloudPk, id).then(function() {
147+
console.log('API called successfully.');
148+
}, function(error) {
149+
console.error(error);
150+
});
151+
152+
```
153+
154+
### Parameters
155+
156+
Name | Type | Description | Notes
157+
------------- | ------------- | ------------- | -------------
158+
**cloudPk** | **String**| |
159+
**id** | **String**| |
160+
161+
### Return type
162+
163+
null (empty response body)
164+
165+
### Authorization
166+
167+
[Bearer](../README.md#Bearer)
168+
169+
### HTTP request headers
170+
171+
- **Content-Type**: Not defined
172+
- **Accept**: Not defined
173+
174+
<a name="cloudProcessorList"></a>
175+
# **cloudProcessorList**
176+
> [Processor] cloudProcessorList(cloudPk)
177+
178+
179+
180+
### Example
181+
```javascript
182+
var bimdata = require('@bimdata/bimdata-api-client');
183+
var defaultClient = bimdata.ApiClient.instance;
184+
// Configure API key authorization: Bearer
185+
var Bearer = defaultClient.authentications['Bearer'];
186+
Bearer.apiKey = 'YOUR API KEY';
187+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
188+
//Bearer.apiKeyPrefix = 'Token';
189+
190+
var apiInstance = new bimdata.CloudApi();
191+
var cloudPk = "cloudPk_example"; // String |
192+
apiInstance.cloudProcessorList(cloudPk).then(function(data) {
193+
console.log('API called successfully. Returned data: ' + data);
194+
}, function(error) {
195+
console.error(error);
196+
});
197+
198+
```
199+
200+
### Parameters
201+
202+
Name | Type | Description | Notes
203+
------------- | ------------- | ------------- | -------------
204+
**cloudPk** | **String**| |
205+
206+
### Return type
207+
208+
[**[Processor]**](Processor.md)
209+
210+
### Authorization
211+
212+
[Bearer](../README.md#Bearer)
213+
214+
### HTTP request headers
215+
216+
- **Content-Type**: Not defined
217+
- **Accept**: application/json
218+
219+
<a name="cloudProcessorPartialUpdate"></a>
220+
# **cloudProcessorPartialUpdate**
221+
> Processor cloudProcessorPartialUpdate(cloudPk, id, processor)
222+
223+
224+
225+
### Example
226+
```javascript
227+
var bimdata = require('@bimdata/bimdata-api-client');
228+
var defaultClient = bimdata.ApiClient.instance;
229+
// Configure API key authorization: Bearer
230+
var Bearer = defaultClient.authentications['Bearer'];
231+
Bearer.apiKey = 'YOUR API KEY';
232+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
233+
//Bearer.apiKeyPrefix = 'Token';
234+
235+
var apiInstance = new bimdata.CloudApi();
236+
var cloudPk = "cloudPk_example"; // String |
237+
var id = "id_example"; // String |
238+
var processor = new bimdata.Processor(); // Processor |
239+
apiInstance.cloudProcessorPartialUpdate(cloudPk, id, processor).then(function(data) {
240+
console.log('API called successfully. Returned data: ' + data);
241+
}, function(error) {
242+
console.error(error);
243+
});
244+
245+
```
246+
247+
### Parameters
248+
249+
Name | Type | Description | Notes
250+
------------- | ------------- | ------------- | -------------
251+
**cloudPk** | **String**| |
252+
**id** | **String**| |
253+
**processor** | [**Processor**](Processor.md)| |
254+
255+
### Return type
256+
257+
[**Processor**](Processor.md)
258+
259+
### Authorization
260+
261+
[Bearer](../README.md#Bearer)
262+
263+
### HTTP request headers
264+
265+
- **Content-Type**: application/json
266+
- **Accept**: application/json
267+
268+
<a name="cloudProcessorRead"></a>
269+
# **cloudProcessorRead**
270+
> Processor cloudProcessorRead(cloudPk, id)
271+
272+
273+
274+
### Example
275+
```javascript
276+
var bimdata = require('@bimdata/bimdata-api-client');
277+
var defaultClient = bimdata.ApiClient.instance;
278+
// Configure API key authorization: Bearer
279+
var Bearer = defaultClient.authentications['Bearer'];
280+
Bearer.apiKey = 'YOUR API KEY';
281+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
282+
//Bearer.apiKeyPrefix = 'Token';
283+
284+
var apiInstance = new bimdata.CloudApi();
285+
var cloudPk = "cloudPk_example"; // String |
286+
var id = "id_example"; // String |
287+
apiInstance.cloudProcessorRead(cloudPk, id).then(function(data) {
288+
console.log('API called successfully. Returned data: ' + data);
289+
}, function(error) {
290+
console.error(error);
291+
});
292+
293+
```
294+
295+
### Parameters
296+
297+
Name | Type | Description | Notes
298+
------------- | ------------- | ------------- | -------------
299+
**cloudPk** | **String**| |
300+
**id** | **String**| |
301+
302+
### Return type
303+
304+
[**Processor**](Processor.md)
305+
306+
### Authorization
307+
308+
[Bearer](../README.md#Bearer)
309+
310+
### HTTP request headers
311+
312+
- **Content-Type**: Not defined
313+
- **Accept**: application/json
314+
315+
<a name="cloudProcessorUpdate"></a>
316+
# **cloudProcessorUpdate**
317+
> Processor cloudProcessorUpdate(cloudPk, id, processor)
318+
319+
320+
321+
### Example
322+
```javascript
323+
var bimdata = require('@bimdata/bimdata-api-client');
324+
var defaultClient = bimdata.ApiClient.instance;
325+
// Configure API key authorization: Bearer
326+
var Bearer = defaultClient.authentications['Bearer'];
327+
Bearer.apiKey = 'YOUR API KEY';
328+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
329+
//Bearer.apiKeyPrefix = 'Token';
330+
331+
var apiInstance = new bimdata.CloudApi();
332+
var cloudPk = "cloudPk_example"; // String |
333+
var id = "id_example"; // String |
334+
var processor = new bimdata.Processor(); // Processor |
335+
apiInstance.cloudProcessorUpdate(cloudPk, id, processor).then(function(data) {
336+
console.log('API called successfully. Returned data: ' + data);
337+
}, function(error) {
338+
console.error(error);
339+
});
340+
341+
```
342+
343+
### Parameters
344+
345+
Name | Type | Description | Notes
346+
------------- | ------------- | ------------- | -------------
347+
**cloudPk** | **String**| |
348+
**id** | **String**| |
349+
**processor** | [**Processor**](Processor.md)| |
350+
351+
### Return type
352+
353+
[**Processor**](Processor.md)
354+
355+
### Authorization
356+
357+
[Bearer](../README.md#Bearer)
358+
359+
### HTTP request headers
360+
361+
- **Content-Type**: application/json
362+
- **Accept**: application/json
363+
74364
<a name="createCloud"></a>
75365
# **createCloud**
76366
> Cloud createCloud(cloud)

0 commit comments

Comments
 (0)