Class: Google::Apis::FirebasedataconnectV1::Datasource
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedataconnectV1::Datasource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasedataconnect_v1/classes.rb,
lib/google/apis/firebasedataconnect_v1/representations.rb,
lib/google/apis/firebasedataconnect_v1/representations.rb
Overview
A data source that backs Firebase SQL Connect services.
Instance Attribute Summary collapse
-
#http_graphql ⇒ Google::Apis::FirebasedataconnectV1::HttpGraphql
Settings for HTTP GraphQL server webhook.
-
#postgresql ⇒ Google::Apis::FirebasedataconnectV1::PostgreSql
Settings for PostgreSQL data source.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Datasource
constructor
A new instance of Datasource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Datasource
Returns a new instance of Datasource.
262 263 264 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 262 def initialize(**args) update!(**args) end |
Instance Attribute Details
#http_graphql ⇒ Google::Apis::FirebasedataconnectV1::HttpGraphql
Settings for HTTP GraphQL server webhook.
Corresponds to the JSON property httpGraphql
255 256 257 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 255 def http_graphql @http_graphql end |
#postgresql ⇒ Google::Apis::FirebasedataconnectV1::PostgreSql
Settings for PostgreSQL data source.
Corresponds to the JSON property postgresql
260 261 262 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 260 def postgresql @postgresql end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
267 268 269 270 |
# File 'lib/google/apis/firebasedataconnect_v1/classes.rb', line 267 def update!(**args) @http_graphql = args[:http_graphql] if args.key?(:http_graphql) @postgresql = args[:postgresql] if args.key?(:postgresql) end |