RevisionSpec constructor

RevisionSpec({
  1. int? containerConcurrency,
  2. List<Container>? containers,
  3. bool? enableServiceLinks,
  4. List<LocalObjectReference>? imagePullSecrets,
  5. Map<String, String>? nodeSelector,
  6. String? runtimeClassName,
  7. String? serviceAccountName,
  8. int? timeoutSeconds,
  9. List<Volume>? volumes,
})

Implementation

RevisionSpec({
  this.containerConcurrency,
  this.containers,
  this.enableServiceLinks,
  this.imagePullSecrets,
  this.nodeSelector,
  this.runtimeClassName,
  this.serviceAccountName,
  this.timeoutSeconds,
  this.volumes,
});