class Google::Apis::ResourceviewsV1beta2::ListResourcesResponse

The response to a list resource request.

Attributes

items[RW]

The formatted JSON that is requested by the user. Corresponds to the JSON property `items` @return [Array<Google::Apis::ResourceviewsV1beta2::ListResourceResponseItem>]

network[RW]

The URL of a Compute Engine network to which the resources in the view belong. Corresponds to the JSON property `network` @return [String]

next_page_token[RW]

A token used for pagination. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/resourceviews_v1beta2/classes.rb, line 595
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/resourceviews_v1beta2/classes.rb, line 600
def update!(**args)
  @items = args[:items] if args.key?(:items)
  @network = args[:network] if args.key?(:network)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end