Class: Google::Apis::OracledatabaseV1::GoldengateGenericConnectionProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateGenericConnectionProperties
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/oracledatabase_v1/classes.rb,
lib/google/apis/oracledatabase_v1/representations.rb,
lib/google/apis/oracledatabase_v1/representations.rb
Overview
The properties of GoldengateGenericConnectionProperties.
Instance Attribute Summary collapse
-
#host ⇒ String
Optional.
-
#technology_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateGenericConnectionProperties
constructor
A new instance of GoldengateGenericConnectionProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateGenericConnectionProperties
Returns a new instance of GoldengateGenericConnectionProperties.
5578 5579 5580 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5578 def initialize(**args) update!(**args) end |
Instance Attribute Details
#host ⇒ String
Optional. The host of the GenericConnection.
Corresponds to the JSON property host
5571 5572 5573 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5571 def host @host end |
#technology_type ⇒ String
Optional. The technology type.
Corresponds to the JSON property technologyType
5576 5577 5578 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5576 def technology_type @technology_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5583 5584 5585 5586 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5583 def update!(**args) @host = args[:host] if args.key?(:host) @technology_type = args[:technology_type] if args.key?(:technology_type) end |