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.
5447 5448 5449 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5447 def initialize(**args) update!(**args) end |
Instance Attribute Details
#host ⇒ String
Optional. The host of the GenericConnection.
Corresponds to the JSON property host
5440 5441 5442 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5440 def host @host end |
#technology_type ⇒ String
Optional. The technology type.
Corresponds to the JSON property technologyType
5445 5446 5447 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5445 def technology_type @technology_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5452 5453 5454 5455 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5452 def update!(**args) @host = args[:host] if args.key?(:host) @technology_type = args[:technology_type] if args.key?(:technology_type) end |