Show / Hide Table of Contents

Class ServiceRollbackConfigArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServiceRollbackConfigArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Docker.Inputs
Assembly: Pulumi.Docker.dll
Syntax
public sealed class ServiceRollbackConfigArgs : ResourceArgs

Constructors

View Source

ServiceRollbackConfigArgs()

Declaration
public ServiceRollbackConfigArgs()

Properties

View Source

Delay

Delay between restart attempts (ms|s|m|h) all tasks are up when a service is created, or to check if all tasks are successfully updated on an update. Default: 7s.

Declaration
public Input<string> Delay { get; set; }
Property Value
Type Description
Input<System.String>
View Source

FailureAction

Action on update failure: pause|continue|rollback.

Declaration
public Input<string> FailureAction { get; set; }
Property Value
Type Description
Input<System.String>
View Source

MaxFailureRatio

The failure rate to tolerate during an update as float. Important: the floatneed to be wrapped in a string to avoid internal casting and precision errors.

Declaration
public Input<string> MaxFailureRatio { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Monitor

Duration after each task update to monitor for failure (ns|us|ms|s|m|h)

Declaration
public Input<string> Monitor { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Order

Update order either 'stop-first' or 'start-first'.

Declaration
public Input<string> Order { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Parallelism

The maximum number of tasks to be updated in one iteration simultaneously (0 to update all at once).

Declaration
public Input<int> Parallelism { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.