Class: Google::Apis::BigqueryV2::PropertyGraphReference
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::PropertyGraphReference
- 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
-
#dataset_id ⇒ String
Required.
-
#project_id ⇒ String
Required.
-
#property_graph_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PropertyGraphReference
constructor
A new instance of PropertyGraphReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PropertyGraphReference
Returns a new instance of PropertyGraphReference.
8151 8152 8153 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8151 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_id ⇒ String
Required. The ID of the dataset containing this property graph.
Corresponds to the JSON property datasetId
8138 8139 8140 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8138 def dataset_id @dataset_id end |
#project_id ⇒ String
Required. The ID of the project containing this property graph.
Corresponds to the JSON property projectId
8143 8144 8145 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8143 def project_id @project_id end |
#property_graph_id ⇒ String
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
8149 8150 8151 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8149 def property_graph_id @property_graph_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8156 8157 8158 8159 8160 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8156 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 |