Class: Google::Apis::OracledatabaseV1::GoldengateConnectionAssignment

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoldengateConnectionAssignment

Returns a new instance of GoldengateConnectionAssignment.



4344
4345
4346
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4344

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

Output only. The time when the connection assignment was created. Corresponds to the JSON property createTime

Returns:

  • (String)


4314
4315
4316
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4314

def create_time
  @create_time
end

#display_nameString

Optional. The display name for the GoldengateConnectionAssignment. Corresponds to the JSON property displayName

Returns:

  • (String)


4319
4320
4321
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4319

def display_name
  @display_name
end

#entitlement_idString

Output only. The OCID of the entitlement linked to this resource. Corresponds to the JSON property entitlementId

Returns:

  • (String)


4324
4325
4326
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4324

def entitlement_id
  @entitlement_id
end

#labelsHash<String,String>

Optional. The labels or tags associated with the GoldengateConnectionAssignment. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


4330
4331
4332
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4330

def labels
  @labels
end

#nameString

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

Returns:

  • (String)


4337
4338
4339
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4337

def name
  @name
end

#propertiesGoogle::Apis::OracledatabaseV1::GoldengateConnectionAssignmentProperties

The properties of a GoldengateConnectionAssignment. Corresponds to the JSON property properties



4342
4343
4344
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4342

def properties
  @properties
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4349
4350
4351
4352
4353
4354
4355
4356
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4349

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