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.



4407
4408
4409
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4407

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)


4377
4378
4379
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4377

def create_time
  @create_time
end

#display_nameString

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

Returns:

  • (String)


4382
4383
4384
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4382

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)


4387
4388
4389
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4387

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>)


4393
4394
4395
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4393

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)


4400
4401
4402
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4400

def name
  @name
end

#propertiesGoogle::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