RevisionSpec constructor

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

Implementation

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