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.
4261 4262 4263 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4261 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alias ⇒ String
Output only. Credential store alias.
Corresponds to the JSON property alias
4235 4236 4237 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4235 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
4241 4242 4243 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4241 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
4248 4249 4250 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4248 def goldengate_deployment @goldengate_deployment end |
#ocid ⇒ String
Output only. The OCID of the connection assignment being referenced.
Corresponds to the JSON property ocid
4254 4255 4256 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4254 def ocid @ocid end |
#state ⇒ String
Output only. The lifecycle state of the connection assignment.
Corresponds to the JSON property state
4259 4260 4261 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4259 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4266 4267 4268 4269 4270 4271 4272 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4266 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 |