Class: Google::Apis::CloudassetV1p7beta1::ListAssetUpdatesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1p7beta1::ListAssetUpdatesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1p7beta1/classes.rb,
lib/google/apis/cloudasset_v1p7beta1/representations.rb,
lib/google/apis/cloudasset_v1p7beta1/representations.rb
Overview
ListAssets response.
Instance Attribute Summary collapse
-
#asset_updates ⇒ Array<Google::Apis::CloudassetV1p7beta1::Asset>
Asset updates in the time window.
-
#next_page_token ⇒ String
Token to retrieve the next page of results.
-
#update_time_window ⇒ Google::Apis::CloudassetV1p7beta1::UpdateTimeWindow
Time window configuration for asset updates requests.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAssetUpdatesResponse
constructor
A new instance of ListAssetUpdatesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAssetUpdatesResponse
Returns a new instance of ListAssetUpdatesResponse.
1890 1891 1892 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1890 def initialize(**args) update!(**args) end |
Instance Attribute Details
#asset_updates ⇒ Array<Google::Apis::CloudassetV1p7beta1::Asset>
Asset updates in the time window.
Corresponds to the JSON property assetUpdates
1877 1878 1879 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1877 def asset_updates @asset_updates end |
#next_page_token ⇒ String
Token to retrieve the next page of results. Set to empty if there are no
remaining results.
Corresponds to the JSON property nextPageToken
1883 1884 1885 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1883 def next_page_token @next_page_token end |
#update_time_window ⇒ Google::Apis::CloudassetV1p7beta1::UpdateTimeWindow
Time window configuration for asset updates requests.
Corresponds to the JSON property updateTimeWindow
1888 1889 1890 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1888 def update_time_window @update_time_window end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1895 1896 1897 1898 1899 |
# File 'lib/google/apis/cloudasset_v1p7beta1/classes.rb', line 1895 def update!(**args) @asset_updates = args[:asset_updates] if args.key?(:asset_updates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @update_time_window = args[:update_time_window] if args.key?(:update_time_window) end |