class Google::Apis::BigqueryV2::ProjectList::Project
Attributes
friendly_name[RW]
A descriptive name for this project. Corresponds to the JSON property `friendlyName` @return [String]
id[RW]
An opaque ID of this project. Corresponds to the JSON property `id` @return [String]
kind[RW]
The resource type. Corresponds to the JSON property `kind` @return [String]
numeric_id[RW]
The numeric ID of this project. Corresponds to the JSON property `numericId` @return [String]
project_reference[RW]
A unique reference to this project. Corresponds to the JSON property `projectReference` @return [Google::Apis::BigqueryV2::ProjectReference]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/bigquery_v2/classes.rb, line 1879 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 1884 def update!(**args) @friendly_name = args[:friendly_name] if args.key?(:friendly_name) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @numeric_id = args[:numeric_id] if args.key?(:numeric_id) @project_reference = args[:project_reference] if args.key?(:project_reference) end