Class: Google::Apis::ConnectorsV1::SupportedRuntimeFeatures
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::SupportedRuntimeFeatures
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Supported runtime features of a connector version.
Instance Attribute Summary collapse
-
#action_apis ⇒ Boolean
(also: #action_apis?)
Specifies if the connector supports action apis like 'executeAction'.
-
#entity_apis ⇒ Boolean
(also: #entity_apis?)
Specifies if the connector supports entity apis like 'createEntity'.
-
#sql_query ⇒ Boolean
(also: #sql_query?)
Specifies if the connector supports 'ExecuteSqlQuery' operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SupportedRuntimeFeatures
constructor
A new instance of SupportedRuntimeFeatures.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SupportedRuntimeFeatures
Returns a new instance of SupportedRuntimeFeatures.
5462 5463 5464 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5462 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action_apis ⇒ Boolean Also known as: action_apis?
Specifies if the connector supports action apis like 'executeAction'.
Corresponds to the JSON property actionApis
5447 5448 5449 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5447 def action_apis @action_apis end |
#entity_apis ⇒ Boolean Also known as: entity_apis?
Specifies if the connector supports entity apis like 'createEntity'.
Corresponds to the JSON property entityApis
5453 5454 5455 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5453 def entity_apis @entity_apis end |
#sql_query ⇒ Boolean Also known as: sql_query?
Specifies if the connector supports 'ExecuteSqlQuery' operation.
Corresponds to the JSON property sqlQuery
5459 5460 5461 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5459 def sql_query @sql_query end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5467 5468 5469 5470 5471 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5467 def update!(**args) @action_apis = args[:action_apis] if args.key?(:action_apis) @entity_apis = args[:entity_apis] if args.key?(:entity_apis) @sql_query = args[:sql_query] if args.key?(:sql_query) end |