Show / Hide Table of Contents

Class StepEventStateMetadata

StepEventStateMetadata is the more detailed state information for a resource as it relates to a step(s) being performed.

Inheritance
object
StepEventStateMetadata
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 StepEventStateMetadata

Properties

View Source

Custom

Custom indicates if the resource is managed by a plugin.

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

Delete

Delete is true when the resource is pending deletion due to a replacement.

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

Id

ID is the resource's unique ID, assigned by the resource provider (or blank if none/uncreated).

Declaration
public string Id { get; }
Property Value
Type Description
string
View Source

InitErrors

InitErrors is the set of errors encountered in the process of initializing resource.

Declaration
public ImmutableArray<string>? InitErrors { get; }
Property Value
Type Description
ImmutableArray<string>?
View Source

Inputs

Inputs contains the resource's input properties (as specified by the program). Secrets have filtered out, and large assets have been replaced by hashes as applicable.

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

Outputs

Outputs contains the resource's complete output state (as returned by the resource provider).

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

Parent

Parent is an optional parent URN that this resource belongs to.

Declaration
public string Parent { get; }
Property Value
Type Description
string
View Source

Protect

Protect is true to "protect" this resource (protected resources cannot be deleted).

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

Provider

Provider is the resource's provider reference

Declaration
public string Provider { get; }
Property Value
Type Description
string
View Source

Type

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

Urn

Declaration
public string Urn { get; }
Property Value
Type Description
string
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.