Class: Google::Apis::BigqueryV2::PropertyGraphReference

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

Id path of a property graph.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PropertyGraphReference

Returns a new instance of PropertyGraphReference.



8063
8064
8065
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8063

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

Instance Attribute Details

#dataset_idString

Required. The ID of the dataset containing this property graph. Corresponds to the JSON property datasetId

Returns:

  • (String)


8050
8051
8052
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8050

def dataset_id
  @dataset_id
end

#project_idString

Required. The ID of the project containing this property graph. Corresponds to the JSON property projectId

Returns:

  • (String)


8055
8056
8057
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8055

def project_id
  @project_id
end

#property_graph_idString

Required. The ID of the property graph. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256 characters. Corresponds to the JSON property propertyGraphId

Returns:

  • (String)


8061
8062
8063
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8061

def property_graph_id
  @property_graph_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8068
8069
8070
8071
8072
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8068

def update!(**args)
  @dataset_id = args[:dataset_id] if args.key?(:dataset_id)
  @project_id = args[:project_id] if args.key?(:project_id)
  @property_graph_id = args[:property_graph_id] if args.key?(:property_graph_id)
end