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.
4213 4214 4215 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4213 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
4183 4184 4185 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4183 def create_time @create_time end |
#display_name ⇒ String
Optional. The display name for the GoldengateConnectionAssignment.
Corresponds to the JSON property displayName
4188 4189 4190 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4188 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
4193 4194 4195 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4193 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
4199 4200 4201 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4199 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
4206 4207 4208 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4206 def name @name end |
#properties ⇒ Google::Apis::OracledatabaseV1::GoldengateConnectionAssignmentProperties
The properties of a GoldengateConnectionAssignment.
Corresponds to the JSON property properties
4211 4212 4213 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4211 def properties @properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4218 4219 4220 4221 4222 4223 4224 4225 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4218 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 |