class Google::Apis::SecuritycenterV1beta1::ListAssetsResponse

Response message for listing assets.

Attributes

list_assets_results[RW]

Assets matching the list request. Corresponds to the JSON property `listAssetsResults` @return [Array<Google::Apis::SecuritycenterV1beta1::ListAssetsResult>]

next_page_token[RW]

Token to retrieve the next page of results, or empty if there are no more results. Corresponds to the JSON property `nextPageToken` @return [String]

read_time[RW]

Time used for executing the list request. Corresponds to the JSON property `readTime` @return [String]

total_size[RW]

The total number of assets matching the query. Corresponds to the JSON property `totalSize` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/securitycenter_v1beta1/classes.rb, line 1528
def update!(**args)
  @list_assets_results = args[:list_assets_results] if args.key?(:list_assets_results)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @read_time = args[:read_time] if args.key?(:read_time)
  @total_size = args[:total_size] if args.key?(:total_size)
end