Class: Google::Apis::ConnectorsV1::SchemaRefreshConfig
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::SchemaRefreshConfig
- 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
Config for connection schema refresh
Instance Attribute Summary collapse
-
#use_action_display_names ⇒ Boolean
(also: #use_action_display_names?)
Whether to use displayName for actions in UI.
-
#use_synchronous_schema_refresh ⇒ Boolean
(also: #use_synchronous_schema_refresh?)
Whether to use synchronous schema refresh.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SchemaRefreshConfig
constructor
A new instance of SchemaRefreshConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SchemaRefreshConfig
Returns a new instance of SchemaRefreshConfig.
5605 5606 5607 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5605 def initialize(**args) update!(**args) end |
Instance Attribute Details
#use_action_display_names ⇒ Boolean Also known as: use_action_display_names?
Whether to use displayName for actions in UI.
Corresponds to the JSON property useActionDisplayNames
5596 5597 5598 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5596 def use_action_display_names @use_action_display_names end |
#use_synchronous_schema_refresh ⇒ Boolean Also known as: use_synchronous_schema_refresh?
Whether to use synchronous schema refresh.
Corresponds to the JSON property useSynchronousSchemaRefresh
5602 5603 5604 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5602 def use_synchronous_schema_refresh @use_synchronous_schema_refresh end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5610 5611 5612 5613 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 5610 def update!(**args) @use_action_display_names = args[:use_action_display_names] if args.key?(:use_action_display_names) @use_synchronous_schema_refresh = args[:use_synchronous_schema_refresh] if args.key?(:use_synchronous_schema_refresh) end |