Class: Google::Apis::CloudassetV1::SearchAllResourcesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::SearchAllResourcesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudasset_v1/classes.rb,
generated/google/apis/cloudasset_v1/representations.rb,
generated/google/apis/cloudasset_v1/representations.rb
Overview
Search all resources response.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If there are more results than those appearing in this response, then
next_page_token
is included. -
#results ⇒ Array<Google::Apis::CloudassetV1::ResourceSearchResult>
A list of Resources that match the search query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchAllResourcesResponse
constructor
A new instance of SearchAllResourcesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchAllResourcesResponse
Returns a new instance of SearchAllResourcesResponse.
3192 3193 3194 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3192 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
3184 3185 3186 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3184 def next_page_token @next_page_token end |
#results ⇒ Array<Google::Apis::CloudassetV1::ResourceSearchResult>
A list of Resources that match the search query. It contains the resource
standard metadata information.
Corresponds to the JSON property results
3190 3191 3192 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3190 def results @results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3197 3198 3199 3200 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 3197 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @results = args[:results] if args.key?(:results) end |