associateMulticastGroupWithFuotaTask method
Associate a multicast group with a FUOTA task.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Implementation
Future<void> associateMulticastGroupWithFuotaTask({
required String id,
required String multicastGroupId,
}) async {
final $payload = <String, dynamic>{
'MulticastGroupId': multicastGroupId,
};
final response = await _protocol.send(
payload: $payload,
method: 'PUT',
requestUri: '/fuota-tasks/${Uri.encodeComponent(id)}/multicast-group',
exceptionFnMap: _exceptionFns,
);
}