List Resources With Minimal Response
//trimblecloud-fileservice/trimblecloud.fileservice/FilesAPI/listResourcesWithMinimalResponse
listResourcesWithMinimalResponse
[JVM]
abstract fun listResourcesWithMinimalResponse(@NonNullspaceId: @NonNullUUID, @NonNullfileId: @NonNullUUID): CompletableFuture<Response<MinimalFileList>>
Lists all resources (support files) of a file in a space by file identifier with minimal response. The operation is paginated and the response contains a token that can be used to get the next page of results.
Return
- A future that resolves to the files response with minimal details.
Parameters
JVM
| spaceId | - The space id. |
| fileId | - The file id. |
Throws
| TCPServiceException | - If an error occurs due to API or network-related issues. |
| SDKClientException | - If a client-side error occurs within the SDK. |
[JVM]
abstract fun listResourcesWithMinimalResponse(@NonNullspaceId: @NonNullUUID, @NonNullfileId: @NonNullUUID, @NonNullparams: @NonNullListFileParams): CompletableFuture<Response<MinimalFileList>>
Lists all resources (support files) of a file in a space by file identifier with minimal response. The operation is paginated and the response contains a token that can be used to get the next page of results.
Return
- A future that resolves to the files response with minimal details.
Parameters
JVM
| spaceId | - The space id. |
| fileId | - The file id. |
| params | - The parameters to filter the response. |
Throws
| TCPServiceException | - If an error occurs due to API or network-related issues. |
| SDKClientException | - If a client-side error occurs within the SDK. |
[JVM]
abstract fun listResourcesWithMinimalResponse(@NonNullspaceId: @NonNullUUID, @NonNullpath: @NonNullString): CompletableFuture<Response<MinimalFileList>>
Lists all resources (support files) of a file by path with minimal response. The operation is paginated and the response contains a token that can be used to get the next page of results.
Return
- A future that resolves to the files response with minimal details.
Parameters
JVM
| spaceId | - The space id. |
| path | - The path of the file. |
Throws
| TCPServiceException | - If an error occurs due to API or network-related issues. |
| SDKClientException | - If a client-side error occurs within the SDK. |
[JVM]
abstract fun listResourcesWithMinimalResponse(@NonNullspaceId: @NonNullUUID, @NonNullpath: @NonNullString, @NonNullparams: @NonNullListFileParams): CompletableFuture<Response<MinimalFileList>>
Lists all resources (support files) of a file by path with minimal response. The operation is paginated and the response contains a token that can be used to get the next page of results.
Return
A future that resolves to the files response with minimal details.
Parameters
JVM
| spaceId | - The space id. |
| path | - The path of the file. |
| params | - The parameters to filter the response. |
Throws
| TCPServiceException | - If an error occurs due to API or network-related issues. |
| SDKClientException | - If a client-side error occurs within the SDK. |