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.
4968 4969 4970 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4968 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
4959 4960 4961 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4959 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
4965 4966 4967 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4965 def use_synchronous_schema_refresh @use_synchronous_schema_refresh end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4973 4974 4975 4976 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4973 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 |