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.



5758
5759
5760
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 5758

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)


5750
5751
5752
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 5750

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



5756
5757
5758
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 5756

def results
  @results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5763
5764
5765
5766
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 5763

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