Class: Google::Apis::CloudassetV1::TemporalAsset
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::TemporalAsset
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1/classes.rb,
lib/google/apis/cloudasset_v1/representations.rb,
lib/google/apis/cloudasset_v1/representations.rb
Overview
An asset in Google Cloud and its temporal metadata, including the time window when it was observed and its status during that window.
Instance Attribute Summary collapse
-
#asset ⇒ Google::Apis::CloudassetV1::Asset
An asset in Google Cloud.
-
#deleted ⇒ Boolean
(also: #deleted?)
Whether the asset has been deleted or not.
-
#prior_asset ⇒ Google::Apis::CloudassetV1::Asset
An asset in Google Cloud.
-
#prior_asset_state ⇒ String
State of prior_asset.
-
#window ⇒ Google::Apis::CloudassetV1::TimeWindow
A time window specified by its
start_time
andend_time
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TemporalAsset
constructor
A new instance of TemporalAsset.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TemporalAsset
Returns a new instance of TemporalAsset.
6084 6085 6086 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6084 def initialize(**args) update!(**args) end |
Instance Attribute Details
#asset ⇒ Google::Apis::CloudassetV1::Asset
An asset in Google Cloud. An asset can be any resource in the Google Cloud
resource hierarchy, a resource outside the Google Cloud resource
hierarchy (such as Google Kubernetes Engine clusters and objects), or a policy
(e.g. IAM policy), or a relationship (e.g. an INSTANCE_TO_INSTANCEGROUP
relationship). See Supported asset types for more information.
Corresponds to the JSON property asset
6055 6056 6057 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6055 def asset @asset end |
#deleted ⇒ Boolean Also known as: deleted?
Whether the asset has been deleted or not.
Corresponds to the JSON property deleted
6060 6061 6062 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6060 def deleted @deleted end |
#prior_asset ⇒ Google::Apis::CloudassetV1::Asset
An asset in Google Cloud. An asset can be any resource in the Google Cloud
resource hierarchy, a resource outside the Google Cloud resource
hierarchy (such as Google Kubernetes Engine clusters and objects), or a policy
(e.g. IAM policy), or a relationship (e.g. an INSTANCE_TO_INSTANCEGROUP
relationship). See Supported asset types for more information.
Corresponds to the JSON property priorAsset
6072 6073 6074 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6072 def prior_asset @prior_asset end |
#prior_asset_state ⇒ String
State of prior_asset.
Corresponds to the JSON property priorAssetState
6077 6078 6079 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6077 def prior_asset_state @prior_asset_state end |
#window ⇒ Google::Apis::CloudassetV1::TimeWindow
A time window specified by its start_time
and end_time
.
Corresponds to the JSON property window
6082 6083 6084 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6082 def window @window end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6089 6090 6091 6092 6093 6094 6095 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6089 def update!(**args) @asset = args[:asset] if args.key?(:asset) @deleted = args[:deleted] if args.key?(:deleted) @prior_asset = args[:prior_asset] if args.key?(:prior_asset) @prior_asset_state = args[:prior_asset_state] if args.key?(:prior_asset_state) @window = args[:window] if args.key?(:window) end |