ContainerOverride constructor

ContainerOverride({
  1. List<String>? command,
  2. int? cpu,
  3. List<KeyValuePair>? environment,
  4. List<EnvironmentFile>? environmentFiles,
  5. int? memory,
  6. int? memoryReservation,
  7. String? name,
  8. List<ResourceRequirement>? resourceRequirements,
})

Implementation

ContainerOverride({
  this.command,
  this.cpu,
  this.environment,
  this.environmentFiles,
  this.memory,
  this.memoryReservation,
  this.name,
  this.resourceRequirements,
});