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.
8230 8231 8232 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8230 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
8217 8218 8219 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8217 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
8222 8223 8224 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8222 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
8228 8229 8230 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8228 def property_graph_id @property_graph_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8235 8236 8237 8238 8239 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8235 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 |