Adsk.Platform.DataManagement
0.0.9
See the version list below for details.
dotnet add package Adsk.Platform.DataManagement --version 0.0.9
NuGet\Install-Package Adsk.Platform.DataManagement -Version 0.0.9
<PackageReference Include="Adsk.Platform.DataManagement" Version="0.0.9" />
paket add Adsk.Platform.DataManagement --version 0.0.9
#r "nuget: Adsk.Platform.DataManagement, 0.0.9"
// Install Adsk.Platform.DataManagement as a Cake Addin #addin nuget:?package=Adsk.Platform.DataManagement&version=0.0.9 // Install Adsk.Platform.DataManagement as a Cake Tool #tool nuget:?package=Adsk.Platform.DataManagement&version=0.0.9
Adsk.Platform.DataManagement
The Adsk.Platform.DataManagement
toolkit provides a set of APIs to interact with the Autodesk Data Management Service.
Usage
See here for details.
Urn vs Id
The SDK uses urn
and id
interchangeably. Basically, the id
is an unique identifier for an folder
, item
, version
this id
is a string starting with prefix urn
.
Filtering
Few endpoints support filters as query parameters (see Filtering in the APS documentation).
Some of them are accessible with Intellisense, for example:
public async Task<List<FolderContent>> getFolderContentByPageAsync(string projectId, string folderId)
{
return await _dataMgtClient.Projects[projectId].Folders[folderId].Contents
.GetAsync(r =>
{
r.QueryParameters.Filtertype = ["item"];
r.QueryParameters.FilterextensionType = ["items:autodesk.bim360:File"];
});
}
But for more complex filters, you need to override the default URL:
public async Task<Models.Search?> SearchAdvancedAsync(string projectId, string folderId)
{
var filters = new List<(string, string)>
{
( "filter[extension.type]", "items:autodesk.bim360:File" ),
( "filter[type]", "item" ),
( "filter[attributes.fileName]-contains","Floor")
};
var requestInfo = _dataMgtClient.Api.Projects[projectId].Folders[folderId].Search.ToGetRequestInformation();
var searchWithFiltersURI = _dataMgtClient.Helper.CreateRequestWithFilters(requestInfo, filters);
var searchResult = await _dataMgtClient.Api.Projects[projectId].Folders[folderId].Search.WithUrl(searchWithFiltersURI).GetAsync();
return searchResult;
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Adsk.Platform.HttpClient (>= 0.0.9)
- Microsoft.Kiota.Serialization.Form (>= 1.1.6)
- Microsoft.Kiota.Serialization.Json (>= 1.2.2)
- Microsoft.Kiota.Serialization.Multipart (>= 1.1.4)
- Microsoft.Kiota.Serialization.Text (>= 1.1.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.3 | 77 | 10/17/2024 |
0.1.2 | 70 | 10/16/2024 |
0.1.1 | 73 | 10/16/2024 |
0.1.0 | 78 | 10/16/2024 |
0.0.16 | 80 | 10/14/2024 |
0.0.15 | 66 | 10/14/2024 |
0.0.14 | 75 | 10/14/2024 |
0.0.13 | 163 | 9/18/2024 |
0.0.12 | 157 | 7/30/2024 |
0.0.11 | 94 | 7/16/2024 |
0.0.10 | 86 | 7/16/2024 |
0.0.9 | 91 | 5/31/2024 |
0.0.8 | 92 | 5/22/2024 |
0.0.7 | 68 | 5/14/2024 |
0.0.6 | 116 | 5/4/2024 |
0.0.5 | 95 | 5/3/2024 |
0.0.4 | 113 | 4/30/2024 |
0.0.3 | 115 | 4/30/2024 |