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.



4213
4214
4215
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4213

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)


4183
4184
4185
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4183

def create_time
  @create_time
end

#display_nameString

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

Returns:

  • (String)


4188
4189
4190
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4188

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)


4193
4194
4195
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4193

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


4199
4200
4201
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4199

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)


4206
4207
4208
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4206

def name
  @name
end

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