Class: Google::Apis::OracledatabaseV1::GoldengateConnectionAssignmentProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateConnectionAssignmentProperties
- 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 a GoldengateConnectionAssignment.
Instance Attribute Summary collapse
-
#alias ⇒ String
Output only.
-
#goldengate_connection ⇒ String
Required.
-
#goldengate_deployment ⇒ String
Required.
-
#ocid ⇒ String
Output only.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateConnectionAssignmentProperties
constructor
A new instance of GoldengateConnectionAssignmentProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateConnectionAssignmentProperties
Returns a new instance of GoldengateConnectionAssignmentProperties.
4339 4340 4341 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4339 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alias ⇒ String
Output only. Credential store alias.
Corresponds to the JSON property alias
4313 4314 4315 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4313 def alias @alias end |
#goldengate_connection ⇒ String
Required. The GoldengateConnection resource to be assigned. Format: projects/
project/locations/location/goldengateConnections/goldengate_connection
Corresponds to the JSON property goldengateConnection
4319 4320 4321 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4319 def goldengate_connection @goldengate_connection end |
#goldengate_deployment ⇒ String
Required. The GoldenGateDeployment to assign the connection to. Format:
projects/project/locations/location/goldengateDeployments/
goldengate_deployment
Corresponds to the JSON property goldengateDeployment
4326 4327 4328 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4326 def goldengate_deployment @goldengate_deployment end |
#ocid ⇒ String
Output only. The OCID of the connection assignment being referenced.
Corresponds to the JSON property ocid
4332 4333 4334 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4332 def ocid @ocid end |
#state ⇒ String
Output only. The lifecycle state of the connection assignment.
Corresponds to the JSON property state
4337 4338 4339 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4337 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4344 4345 4346 4347 4348 4349 4350 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4344 def update!(**args) @alias = args[:alias] if args.key?(:alias) @goldengate_connection = args[:goldengate_connection] if args.key?(:goldengate_connection) @goldengate_deployment = args[:goldengate_deployment] if args.key?(:goldengate_deployment) @ocid = args[:ocid] if args.key?(:ocid) @state = args[:state] if args.key?(:state) end |