Class: Google::Apis::BigqueryV2::ForeignViewDefinition
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ForeignViewDefinition
- 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
A view can be represented in multiple ways. Each representation has its own dialect. This message stores the metadata required for these representations.
Instance Attribute Summary collapse
-
#dialect ⇒ String
Optional.
-
#query ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ForeignViewDefinition
constructor
A new instance of ForeignViewDefinition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ForeignViewDefinition
Returns a new instance of ForeignViewDefinition.
3393 3394 3395 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3393 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dialect ⇒ String
Optional. Represents the dialect of the query.
Corresponds to the JSON property dialect
3386 3387 3388 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3386 def dialect @dialect end |
#query ⇒ String
Required. The query that defines the view.
Corresponds to the JSON property query
3391 3392 3393 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3391 def query @query end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3398 3399 3400 3401 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3398 def update!(**args) @dialect = args[:dialect] if args.key?(:dialect) @query = args[:query] if args.key?(:query) end |