Class: Google::Apis::CloudassetV1::SearchAllResourcesResponse

Inherits:
Object
  • Object
show all
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

Search all resources response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchAllResourcesResponse

Returns a new instance of SearchAllResourcesResponse.



4192
4193
4194
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4192

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


4184
4185
4186
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4184

def next_page_token
  @next_page_token
end

#resultsArray<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



4190
4191
4192
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4190

def results
  @results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4197
4198
4199
4200
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4197

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @results = args[:results] if args.key?(:results)
end