Show / Hide Table of Contents

Class TemporalAsset

Temporal asset. In addition to the asset, the temporal asset includes the status of the asset and valid from and to time of it.

Inheritance
System.Object
TemporalAsset
Implements
IMessage<TemporalAsset>
IMessage
System.IEquatable<TemporalAsset>
IDeepCloneable<TemporalAsset>
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.Asset.V1Beta1
Assembly: Google.Cloud.Asset.V1Beta1.dll
Syntax
public sealed class TemporalAsset : IMessage<TemporalAsset>, IMessage, IEquatable<TemporalAsset>, IDeepCloneable<TemporalAsset>

Constructors

TemporalAsset()

Declaration
public TemporalAsset()

TemporalAsset(TemporalAsset)

Declaration
public TemporalAsset(TemporalAsset other)
Parameters
Type Name Description
TemporalAsset other

Properties

Asset

Asset.

Declaration
public Asset Asset { get; set; }
Property Value
Type Description
Asset

Deleted

If the asset is deleted or not.

Declaration
public bool Deleted { get; set; }
Property Value
Type Description
System.Boolean

Window

The time window when the asset data and state was observed.

Declaration
public TimeWindow Window { get; set; }
Property Value
Type Description
TimeWindow
Back to top