class Google::Apis::CloudassetV1::ListAssetsResponse
ListAssets response.
Attributes
assets[RW]
Assets. Corresponds to the JSON property `assets` @return [Array<Google::Apis::CloudassetV1::Asset>]
next_page_token[RW]
Token to retrieve the next page of results. It expires 72 hours after the page token for the first page is generated. Set to empty if there are no remaining results. Corresponds to the JSON property `nextPageToken` @return [String]
read_time[RW]
Time the snapshot was taken. Corresponds to the JSON property `readTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudasset_v1/classes.rb, line 3158 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudasset_v1/classes.rb, line 3163 def update!(**args) @assets = args[:assets] if args.key?(:assets) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @read_time = args[:read_time] if args.key?(:read_time) end