redeployCapsule method

Future<void> redeployCapsule(
  1. String cloudCapsuleId
)

Redeploys a capsule using its current image. Triggers a deploymentUpdated event to redeploy the infrastructure.

Implementation

_i2.Future<void> redeployCapsule(String cloudCapsuleId) =>
    caller.callServerEndpoint<void>('adminProjects', 'redeployCapsule', {
      'cloudCapsuleId': cloudCapsuleId,
    });