Class: Google::Apis::OracledatabaseV1::GoldengateConnectionAssignment
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateConnectionAssignment
- 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
Represents the metadata of a Goldengate Connection Assignment.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#display_name ⇒ String
Optional.
-
#entitlement_id ⇒ String
Output only.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Identifier.
-
#properties ⇒ Google::Apis::OracledatabaseV1::GoldengateConnectionAssignmentProperties
The properties of a GoldengateConnectionAssignment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateConnectionAssignment
constructor
A new instance of GoldengateConnectionAssignment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateConnectionAssignment
Returns a new instance of GoldengateConnectionAssignment.
4407 4408 4409 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4407 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time when the connection assignment was created.
Corresponds to the JSON property createTime
4377 4378 4379 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4377 def create_time @create_time end |
#display_name ⇒ String
Optional. The display name for the GoldengateConnectionAssignment.
Corresponds to the JSON property displayName
4382 4383 4384 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4382 def display_name @display_name end |
#entitlement_id ⇒ String
Output only. The OCID of the entitlement linked to this resource.
Corresponds to the JSON property entitlementId
4387 4388 4389 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4387 def entitlement_id @entitlement_id end |
#labels ⇒ Hash<String,String>
Optional. The labels or tags associated with the
GoldengateConnectionAssignment.
Corresponds to the JSON property labels
4393 4394 4395 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4393 def labels @labels end |
#name ⇒ String
Identifier. The name of the GoldengateConnectionAssignment resource in the
following format: projects/project/locations/region/
goldengateConnectionAssignments/goldengate_connection_assignment
Corresponds to the JSON property name
4400 4401 4402 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4400 def name @name end |
#properties ⇒ Google::Apis::OracledatabaseV1::GoldengateConnectionAssignmentProperties
The properties of a GoldengateConnectionAssignment.
Corresponds to the JSON property properties
4405 4406 4407 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4405 def properties @properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4412 4413 4414 4415 4416 4417 4418 4419 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4412 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @entitlement_id = args[:entitlement_id] if args.key?(:entitlement_id) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @properties = args[:properties] if args.key?(:properties) end |