Class: Google::Apis::CloudassetV1::ListAssetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::ListAssetsResponse
- 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
ListAssets response.
Instance Attribute Summary collapse
-
#assets ⇒ Array<Google::Apis::CloudassetV1::Asset>
Assets.
-
#next_page_token ⇒ String
Token to retrieve the next page of results.
-
#read_time ⇒ String
Time the snapshot was taken.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAssetsResponse
constructor
A new instance of ListAssetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAssetsResponse
Returns a new instance of ListAssetsResponse.
3249 3250 3251 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3249 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assets ⇒ Array<Google::Apis::CloudassetV1::Asset>
Assets.
Corresponds to the JSON property assets
3235 3236 3237 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3235 def assets @assets end |
#next_page_token ⇒ String
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
3242 3243 3244 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3242 def next_page_token @next_page_token end |
#read_time ⇒ String
Time the snapshot was taken.
Corresponds to the JSON property readTime
3247 3248 3249 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3247 def read_time @read_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3254 3255 3256 3257 3258 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3254 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 |