You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
Describe the bug
We can't create Asset since we can't set AssetType.
To Reproduce
We tried this code:
ETAssetasset = newETAsset();
asset.setName("Asset Test 1");
asset.setContent("Asset Test 1 content");
asset.setContentType("text/plain");
ETResponse<ETAsset> etAssetETResponse = client.create(asset);
And this issue is returned:
{"message":"Request contained some validation errors.","errorcode":10006,"documentation":"","validationErrors":[{"message":"You must provide a valid AssetType for the Asset.","errorcode":118075,"documentation":""}]}
We also tried with a direct HTTP call. We have the same issue if AssetType is not set, but successful with this code:
Expected behavior
There is no ETAssetType attribute in ETAsset, but it is mandatory to create an Asset.
Environment
Fuel SDK Version 1.6.0
Java/ JDK version 11
The bug has the severity
Critical: The defect affects critical functionality or critical data. It does not have a workaround.
Major: The defect affects major functionality or major data. It has a workaround but is not obvious and is difficult.
Minor: The defect affects minor functionality or non-critical data. It has an easy workaround.
Trivial: The defect does not affect functionality or data. It does not even need a workaround. It does not impact productivity or efficiency. It is merely an inconvenience.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Describe the bug
We can't create Asset since we can't set AssetType.
To Reproduce
We tried this code:
And this issue is returned:
We also tried with a direct HTTP call. We have the same issue if AssetType is not set, but successful with this code:
Expected behavior
There is no ETAssetType attribute in ETAsset, but it is mandatory to create an Asset.
Environment
The bug has the severity
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: