RolloutOptions constructor

RolloutOptions({
  1. int? maxUnavailableReplicas,
  2. int? maxUnavailablePercentage,
  3. int? maxSurgeReplicas,
  4. int? maxSurgePercentage,
  5. String previousDeployedModel = '',
  6. int revisionNumber = 0,
})

Implementation

RolloutOptions({
  this.maxUnavailableReplicas,
  this.maxUnavailablePercentage,
  this.maxSurgeReplicas,
  this.maxSurgePercentage,
  this.previousDeployedModel = '',
  this.revisionNumber = 0,
}) : super(fullyQualifiedName);