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.
4392 4393 4394 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4392 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alias ⇒ String
Output only. Credential store alias.
Corresponds to the JSON property alias
4366 4367 4368 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4366 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
4372 4373 4374 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4372 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
4379 4380 4381 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4379 def goldengate_deployment @goldengate_deployment end |
#ocid ⇒ String
Output only. The OCID of the connection assignment being referenced.
Corresponds to the JSON property ocid
4385 4386 4387 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4385 def ocid @ocid end |
#state ⇒ String
Output only. The lifecycle state of the connection assignment.
Corresponds to the JSON property state
4390 4391 4392 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4390 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4397 4398 4399 4400 4401 4402 4403 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4397 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 |