class Google::Apis::OsconfigV1alpha::ListInventoriesResponse
A response message for listing inventory data for all VMs in a specified location.
Attributes
inventories[RW]
List of inventory objects. Corresponds to the JSON property `inventories` @return [Array<Google::Apis::OsconfigV1alpha::Inventory>]
next_page_token[RW]
The pagination token to retrieve the next page of inventory objects. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/osconfig_v1alpha/classes.rb, line 875 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/osconfig_v1alpha/classes.rb, line 880 def update!(**args) @inventories = args[:inventories] if args.key?(:inventories) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end