Class: Google::Apis::CloudassetV1beta1::TemporalAsset
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1beta1::TemporalAsset
- Defined in:
- generated/google/apis/cloudasset_v1beta1/classes.rb,
generated/google/apis/cloudasset_v1beta1/representations.rb,
generated/google/apis/cloudasset_v1beta1/representations.rb
Overview
Temporal asset. In addition to the asset, the temporal asset includes the status of the asset and valid from and to time of it.
Instance Attribute Summary collapse
-
#asset ⇒ Google::Apis::CloudassetV1beta1::Asset
Cloud asset.
-
#deleted ⇒ Boolean
(also: #deleted?)
If the asset is deleted or not.
-
#window ⇒ Google::Apis::CloudassetV1beta1::TimeWindow
A time window of (start_time, end_time].
Instance Method Summary collapse
-
#initialize(**args) ⇒ TemporalAsset
constructor
A new instance of TemporalAsset.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ TemporalAsset
Returns a new instance of TemporalAsset
763 764 765 |
# File 'generated/google/apis/cloudasset_v1beta1/classes.rb', line 763 def initialize(**args) update!(**args) end |
Instance Attribute Details
#asset ⇒ Google::Apis::CloudassetV1beta1::Asset
Cloud asset. This includes all Google Cloud Platform resources,
Cloud IAM policies, and other non-GCP assets.
Corresponds to the JSON property asset
750 751 752 |
# File 'generated/google/apis/cloudasset_v1beta1/classes.rb', line 750 def asset @asset end |
#deleted ⇒ Boolean Also known as: deleted?
If the asset is deleted or not.
Corresponds to the JSON property deleted
755 756 757 |
# File 'generated/google/apis/cloudasset_v1beta1/classes.rb', line 755 def deleted @deleted end |
#window ⇒ Google::Apis::CloudassetV1beta1::TimeWindow
A time window of (start_time, end_time].
Corresponds to the JSON property window
761 762 763 |
# File 'generated/google/apis/cloudasset_v1beta1/classes.rb', line 761 def window @window end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
768 769 770 771 772 |
# File 'generated/google/apis/cloudasset_v1beta1/classes.rb', line 768 def update!(**args) @asset = args[:asset] if args.key?(:asset) @deleted = args[:deleted] if args.key?(:deleted) @window = args[:window] if args.key?(:window) end |