class Google::Apis::OsconfigV1::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::OsconfigV1::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_v1/classes.rb, line 832
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_v1/classes.rb, line 837
def update!(**args)
  @inventories = args[:inventories] if args.key?(:inventories)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end