Class: Google::Apis::CloudassetV1::TemporalAsset

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudasset_v1/classes.rb,
generated/google/apis/cloudasset_v1/representations.rb,
generated/google/apis/cloudasset_v1/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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TemporalAsset

Returns a new instance of TemporalAsset.



1964
1965
1966
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1964

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#assetGoogle::Apis::CloudassetV1::Asset

Cloud asset. This includes all Google Cloud Platform resources, Cloud IAM policies, and other non-GCP assets. Corresponds to the JSON property asset



1951
1952
1953
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1951

def asset
  @asset
end

#deletedBoolean Also known as: deleted?

If the asset is deleted or not. Corresponds to the JSON property deleted

Returns:

  • (Boolean)


1956
1957
1958
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1956

def deleted
  @deleted
end

#windowGoogle::Apis::CloudassetV1::TimeWindow

A time window of (start_time, end_time]. Corresponds to the JSON property window



1962
1963
1964
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1962

def window
  @window
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1969
1970
1971
1972
1973
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1969

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