fetchBuildLog method
Fetches the build log records for the specified deploy attempt.
Implementation
_i2.Stream<_i20.LogRecord> fetchBuildLog({
String? cloudProjectId,
String? cloudCapsuleId,
required String attemptId,
int? limit,
}) => caller
.callStreamingServerEndpoint<_i2.Stream<_i20.LogRecord>, _i20.LogRecord>(
'logs',
'fetchBuildLog',
{
'cloudProjectId': cloudProjectId,
'cloudCapsuleId': cloudCapsuleId,
'attemptId': attemptId,
'limit': limit,
},
{},
);