Class: Google::Apis::ConnectorsV1::SupportedRuntimeFeatures

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SupportedRuntimeFeatures

Returns a new instance of SupportedRuntimeFeatures.



7038
7039
7040
# File 'lib/google/apis/connectors_v1/classes.rb', line 7038

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#action_apisBoolean Also known as: action_apis?

Specifies if the connector supports action apis like 'executeAction'. Corresponds to the JSON property actionApis

Returns:

  • (Boolean)


7017
7018
7019
# File 'lib/google/apis/connectors_v1/classes.rb', line 7017

def action_apis
  @action_apis
end

#async_operationsBoolean Also known as: async_operations?

Specifies if the connector supports async long running operations. Corresponds to the JSON property asyncOperations

Returns:

  • (Boolean)


7023
7024
7025
# File 'lib/google/apis/connectors_v1/classes.rb', line 7023

def async_operations
  @async_operations
end

#entity_apisBoolean Also known as: entity_apis?

Specifies if the connector supports entity apis like 'createEntity'. Corresponds to the JSON property entityApis

Returns:

  • (Boolean)


7029
7030
7031
# File 'lib/google/apis/connectors_v1/classes.rb', line 7029

def entity_apis
  @entity_apis
end

#sql_queryBoolean Also known as: sql_query?

Specifies if the connector supports 'ExecuteSqlQuery' operation. Corresponds to the JSON property sqlQuery

Returns:

  • (Boolean)


7035
7036
7037
# File 'lib/google/apis/connectors_v1/classes.rb', line 7035

def sql_query
  @sql_query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7043
7044
7045
7046
7047
7048
# File 'lib/google/apis/connectors_v1/classes.rb', line 7043

def update!(**args)
  @action_apis = args[:action_apis] if args.key?(:action_apis)
  @async_operations = args[:async_operations] if args.key?(:async_operations)
  @entity_apis = args[:entity_apis] if args.key?(:entity_apis)
  @sql_query = args[:sql_query] if args.key?(:sql_query)
end