Class: Google::Apis::BigqueryV2::ProjectList

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb

Defined Under Namespace

Classes: Project

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ProjectList

Returns a new instance of ProjectList.



5918
5919
5920
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5918

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#etagString

A hash of the page of results Corresponds to the JSON property etag

Returns:

  • (String)


5896
5897
5898
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5896

def etag
  @etag
end

#kindString

The type of list. Corresponds to the JSON property kind

Returns:

  • (String)


5901
5902
5903
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5901

def kind
  @kind
end

#next_page_tokenString

A token to request the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


5906
5907
5908
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5906

def next_page_token
  @next_page_token
end

#projectsArray<Google::Apis::BigqueryV2::ProjectList::Project>

Projects to which you have at least READ access. Corresponds to the JSON property projects



5911
5912
5913
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5911

def projects
  @projects
end

#total_itemsFixnum

The total number of projects in the list. Corresponds to the JSON property totalItems

Returns:

  • (Fixnum)


5916
5917
5918
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5916

def total_items
  @total_items
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5923
5924
5925
5926
5927
5928
5929
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5923

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