getDeployAttempts method
Gets deploy attempts of the specified capsule.
Gets the recent-most attempts, up till limit if specified.
Implementation
_i2.Future<List<_i5.DeployAttempt>> getDeployAttempts({
required String cloudCapsuleId,
int? limit,
}) => caller.callServerEndpoint<List<_i5.DeployAttempt>>(
'adminProjects',
'getDeployAttempts',
{
'cloudCapsuleId': cloudCapsuleId,
'limit': limit,
},
);