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

Overview

Response object of ListProjects

Defined Under Namespace

Classes: Project

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ProjectList

Returns a new instance of ProjectList.



7137
7138
7139
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7137

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)


7114
7115
7116
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7114

def etag
  @etag
end

#kindString

The resource type of the response. Corresponds to the JSON property kind

Returns:

  • (String)


7119
7120
7121
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7119

def kind
  @kind
end

#next_page_tokenString

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

Returns:

  • (String)


7124
7125
7126
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7124

def next_page_token
  @next_page_token
end

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

Projects to which the user has at least READ access. Corresponds to the JSON property projects



7129
7130
7131
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7129

def projects
  @projects
end

#total_itemsFixnum

The total number of projects in the page. A wrapper is used here because the field should still be in the response when the value is 0. Corresponds to the JSON property totalItems

Returns:

  • (Fixnum)


7135
7136
7137
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7135

def total_items
  @total_items
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7142
7143
7144
7145
7146
7147
7148
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7142

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