getDeployAttempts method

Future<List<DeployAttempt>> getDeployAttempts({
  1. required String cloudCapsuleId,
  2. int? limit,
})

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,
  },
);