Show / Hide Table of Contents

Class SummaryEvent

SummaryEvent is emitted at the end of an update, with a summary of the changes made.

Inheritance
object
SummaryEvent
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Pulumi.Automation.Events
Assembly: Pulumi.Automation.dll
Syntax
public class SummaryEvent

Properties

View Source

DurationSeconds

Duration is the number of seconds the update was executing.

Declaration
public int DurationSeconds { get; }
Property Value
Type Description
int
View Source

MaybeCorrupt

MaybeCorrupt is set if one or more of the resources is in an invalid state.

Declaration
public bool MaybeCorrupt { get; }
Property Value
Type Description
bool
View Source

PolicyPacks

PolicyPacks run during update. Maps PolicyPackName -> version.

Declaration
public IImmutableDictionary<string, string> PolicyPacks { get; }
Property Value
Type Description
IImmutableDictionary<string, string>
View Source

ResourceChanges

ResourceChanges contains the count for resource change by type.

Declaration
public IImmutableDictionary<OperationType, int> ResourceChanges { get; }
Property Value
Type Description
IImmutableDictionary<OperationType, int>
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.