Condividi tramite


UpdateStage Class

Definition

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()

Applies to