describeSdiSource method

Future<DescribeSdiSourceResponse> describeSdiSource({
  1. required String sdiSourceId,
})

Gets details about a SdiSource.

May throw BadGatewayException. May throw BadRequestException. May throw ForbiddenException. May throw GatewayTimeoutException. May throw InternalServerErrorException. May throw NotFoundException. May throw TooManyRequestsException.

Parameter sdiSourceId : Get details about an SdiSource.

Implementation

Future<DescribeSdiSourceResponse> describeSdiSource({
  required String sdiSourceId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/prod/sdiSources/${Uri.encodeComponent(sdiSourceId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeSdiSourceResponse.fromJson(response);
}