publicAssetsaveAsset(@io.swagger.v3.oas.annotations.parameters.RequestBody(description="A JSON value representing the asset.")@RequestBodyAssetasset)throwsException{
publicAssetsaveAsset(@io.swagger.v3.oas.annotations.parameters.RequestBody(description="A JSON value representing the asset.")@RequestBodyAssetasset,
@Parameter(description="Optional value of name conflict strategy. Possible values: FAIL or UNIQUIFY. "+
"If omitted, FAIL strategy is applied. FAIL strategy implies exception will be thrown if an entity with the same name already exists. "+
"UNIQUIFY strategy appends a numerical suffix to the entity name, if a name conflict occurs.")
publicCustomersaveCustomer(@io.swagger.v3.oas.annotations.parameters.RequestBody(description="A JSON value representing the customer.")@RequestBodyCustomercustomer)throwsException{
publicCustomersaveCustomer(@io.swagger.v3.oas.annotations.parameters.RequestBody(description="A JSON value representing the customer.")@RequestBodyCustomercustomer,
@Parameter(description="Optional value of name conflict strategy. Possible values: FAIL or UNIQUIFY. "+
"If omitted, FAIL strategy is applied. FAIL strategy implies exception will be thrown if an entity with the same name already exists. "+
"UNIQUIFY strategy appends a numerical suffix to the entity name, if a name conflict occurs.")
@ -177,14 +178,19 @@ public class DeviceController extends BaseController {
@ResponseBody
publicDevicesaveDevice(@io.swagger.v3.oas.annotations.parameters.RequestBody(description="A JSON value representing the device.")@RequestBodyDevicedevice,
@Parameter(description="Optional value of the device credentials to be used during device creation. "+
"If omitted, access token will be auto-generated.")@RequestParam(name="accessToken",required=false)StringaccessToken)throwsException{
"If omitted, access token will be auto-generated.")