Class: Google::Apis::OracledatabaseV1::GoldengateGooglePubsubConnectionProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateGooglePubsubConnectionProperties
- 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 GoldengateGooglePubsubConnection.
Instance Attribute Summary collapse
-
#service_account_key_file ⇒ String
Optional.
-
#technology_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateGooglePubsubConnectionProperties
constructor
A new instance of GoldengateGooglePubsubConnectionProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateGooglePubsubConnectionProperties
Returns a new instance of GoldengateGooglePubsubConnectionProperties.
5663 5664 5665 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5663 def initialize(**args) update!(**args) end |
Instance Attribute Details
#service_account_key_file ⇒ String
Optional. The base64 encoded content of the service account key file
containing the credentials required to use Google Pub/Sub.
Corresponds to the JSON property serviceAccountKeyFile
5656 5657 5658 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5656 def service_account_key_file @service_account_key_file end |
#technology_type ⇒ String
Optional. The technology type of GooglePubsubConnection.
Corresponds to the JSON property technologyType
5661 5662 5663 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5661 def technology_type @technology_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5668 5669 5670 5671 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5668 def update!(**args) @service_account_key_file = args[:service_account_key_file] if args.key?(:service_account_key_file) @technology_type = args[:technology_type] if args.key?(:technology_type) end |