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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Project

Returns a new instance of Project.



3983
3984
3985
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3983

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

Instance Attribute Details

#friendly_nameString

A descriptive name for this project. Corresponds to the JSON property friendlyName

Returns:

  • (String)


3961
3962
3963
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3961

def friendly_name
  @friendly_name
end

#idString

An opaque ID of this project. Corresponds to the JSON property id

Returns:

  • (String)


3966
3967
3968
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3966

def id
  @id
end

#kindString

The resource type. Corresponds to the JSON property kind

Returns:

  • (String)


3971
3972
3973
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3971

def kind
  @kind
end

#numeric_idFixnum

The numeric ID of this project. Corresponds to the JSON property numericId

Returns:

  • (Fixnum)


3976
3977
3978
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3976

def numeric_id
  @numeric_id
end

#project_referenceGoogle::Apis::BigqueryV2::ProjectReference

A unique reference to this project. Corresponds to the JSON property projectReference



3981
3982
3983
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3981

def project_reference
  @project_reference
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3988
3989
3990
3991
3992
3993
3994
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3988

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