Action constructor

Action({
  1. bool? alwaysRun,
  2. bool? blockExternalNetwork,
  3. List<String>? commands,
  4. String? containerName,
  5. Secret? credentials,
  6. bool? disableImagePrefetch,
  7. bool? disableStandardErrorCapture,
  8. bool? enableFuse,
  9. Secret? encryptedEnvironment,
  10. String? entrypoint,
  11. Map<String, String>? environment,
  12. bool? ignoreExitStatus,
  13. String? imageUri,
  14. Map<String, String>? labels,
  15. List<Mount>? mounts,
  16. String? pidNamespace,
  17. Map<String, int>? portMappings,
  18. bool? publishExposedPorts,
  19. bool? runInBackground,
  20. String? timeout,
})

Implementation

Action({
  this.alwaysRun,
  this.blockExternalNetwork,
  this.commands,
  this.containerName,
  this.credentials,
  this.disableImagePrefetch,
  this.disableStandardErrorCapture,
  this.enableFuse,
  this.encryptedEnvironment,
  this.entrypoint,
  this.environment,
  this.ignoreExitStatus,
  this.imageUri,
  this.labels,
  this.mounts,
  this.pidNamespace,
  this.portMappings,
  this.publishExposedPorts,
  this.runInBackground,
  this.timeout,
});