Class ServiceRollbackConfigArgs
Inherited Members
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 SourceServiceRollbackConfigArgs()
Declaration
public ServiceRollbackConfigArgs()
Properties
View SourceDelay
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> |
FailureAction
Action on update failure: pause|continue|rollback.
Declaration
public Input<string> FailureAction { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
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> |
Order
Update order either 'stop-first' or 'start-first'.
Declaration
public Input<string> Order { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |