listDeviceDefinitionVersions method
Lists the versions of a device definition.
May throw BadRequestException.
Parameter deviceDefinitionId
:
The ID of the device definition.
Parameter maxResults
:
The maximum number of results to be returned per request.
Parameter nextToken
:
The token for the next set of results, or ''null'' if there are no
additional results.
Implementation
Future<ListDeviceDefinitionVersionsResponse> listDeviceDefinitionVersions({
required String deviceDefinitionId,
String? maxResults,
String? nextToken,
}) async {
ArgumentError.checkNotNull(deviceDefinitionId, 'deviceDefinitionId');
final $query = <String, List<String>>{
if (maxResults != null) 'MaxResults': [maxResults],
if (nextToken != null) 'NextToken': [nextToken],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/greengrass/definition/devices/${Uri.encodeComponent(deviceDefinitionId)}/versions',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return ListDeviceDefinitionVersionsResponse.fromJson(response);
}