UpdateStage Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines a stage which contains the groups to update and the steps to take (e.g., wait for a time period) before starting the next stage.
[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Fleet.Models.UpdateStageTypeConverter))]
public class UpdateStage : Microsoft.Azure.PowerShell.Cmdlets.Fleet.Models.IUpdateStage
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.Fleet.Models.UpdateStageTypeConverter))>]
type UpdateStage = class
interface IUpdateStage
interface IJsonSerializable
Public Class UpdateStage
Implements IUpdateStage
- Inheritance
-
UpdateStage
- Attributes
- Implements
Constructors
UpdateStage() |
Creates an new UpdateStage instance. |
Properties
AfterStageWaitInSecond |
The time in seconds to wait at the end of this stage before starting the next one. Defaults to 0 seconds if unspecified. |
Group |
Defines the groups to be executed in parallel in this stage. Duplicate groups are not allowed. Min size: 1. |
Name |
The name of the stage. Must be unique within the UpdateRun. |
Methods
DeserializeFromDictionary(IDictionary) |
Deserializes a IDictionary into an instance of UpdateStage. |
DeserializeFromPSObject(PSObject) |
Deserializes a PSObject into an instance of UpdateStage. |
FromJson(JsonNode) |
Deserializes a JsonNode into an instance of Microsoft.Azure.PowerShell.Cmdlets.Fleet.Models.IUpdateStage. |
FromJsonString(String) |
Creates a new instance of UpdateStage, deserializing the content from a json string. |
ToJson(JsonObject, SerializationMode) |
Serializes this instance of UpdateStage into a JsonNode. |
ToJsonString() |
Serializes this instance to a json string. |
ToString() |