getDeployAttemptId method
Gets the deploy attempt id for the specified attempt number of a capsule. This number enumerate the capsule's deploy attempts as latest first, starting from 0.
Implementation
_i2.Future<String> getDeployAttemptId({
required String cloudCapsuleId,
required int attemptNumber,
}) => caller.callServerEndpoint<String>('status', 'getDeployAttemptId', {
'cloudCapsuleId': cloudCapsuleId,
'attemptNumber': attemptNumber,
});