class Google::Apis::CloudassetV1p1beta1::SearchAllResourcesResponse
Search all resources response.
Attributes
next_page_token[RW]
If there are more results than those appearing in this response, then ` next_page_token
` is included. To get the next set of results, call this method again using the value of `next_page_token` as `page_token`. Corresponds to the JSON property `nextPageToken` @return [String]
results[RW]
A list of resource that match the search query. Corresponds to the JSON property `results` @return [Array<Google::Apis::CloudassetV1p1beta1::StandardResourceMetadata>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudasset_v1p1beta1/classes.rb, line 1922 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_v1p1beta1/classes.rb, line 1927 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @results = args[:results] if args.key?(:results) end