class Google::Apis::BigqueryV2::ProjectList

Attributes

etag[RW]

A hash of the page of results Corresponds to the JSON property `etag` @return [String]

kind[RW]

The type of list. Corresponds to the JSON property `kind` @return [String]

next_page_token[RW]

A token to request the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

projects[RW]

Projects to which you have at least READ access. Corresponds to the JSON property `projects` @return [Array<Google::Apis::BigqueryV2::ProjectList::Project>]

total_items[RW]

The total number of projects in the list. Corresponds to the JSON property `totalItems` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/bigquery_v2/classes.rb, line 1842
def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @projects = args[:projects] if args.key?(:projects)
  @total_items = args[:total_items] if args.key?(:total_items)
end