class Google::Apis::VaultV1::ListSavedQueriesResponse
Definition of the response for method ListSaveQuery.
Attributes
next_page_token[RW]
Page token to retrieve the next page of results in the list. If this is empty, then there are no more saved queries to list. Corresponds to the JSON property `nextPageToken` @return [String]
saved_queries[RW]
List of saved queries. Corresponds to the JSON property `savedQueries` @return [Array<Google::Apis::VaultV1::SavedQuery>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 1220 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/vault_v1/classes.rb, line 1225 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @saved_queries = args[:saved_queries] if args.key?(:saved_queries) end