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.



5846
5847
5848
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 5846

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)


5838
5839
5840
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 5838

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



5844
5845
5846
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 5844

def results
  @results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5851
5852
5853
5854
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 5851

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