Class: Google::Apis::OracledatabaseV1::GoldengateConnectionAssignmentProperties

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

The properties of a GoldengateConnectionAssignment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoldengateConnectionAssignmentProperties

Returns a new instance of GoldengateConnectionAssignmentProperties.



4261
4262
4263
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4261

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

Instance Attribute Details

#aliasString

Output only. Credential store alias. Corresponds to the JSON property alias

Returns:

  • (String)


4235
4236
4237
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4235

def alias
  @alias
end

#goldengate_connectionString

Required. The GoldengateConnection resource to be assigned. Format: projects/ project/locations/location/goldengateConnections/goldengate_connection Corresponds to the JSON property goldengateConnection

Returns:

  • (String)


4241
4242
4243
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4241

def goldengate_connection
  @goldengate_connection
end

#goldengate_deploymentString

Required. The GoldenGateDeployment to assign the connection to. Format: projects/project/locations/location/goldengateDeployments/ goldengate_deployment Corresponds to the JSON property goldengateDeployment

Returns:

  • (String)


4248
4249
4250
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4248

def goldengate_deployment
  @goldengate_deployment
end

#ocidString

Output only. The OCID of the connection assignment being referenced. Corresponds to the JSON property ocid

Returns:

  • (String)


4254
4255
4256
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4254

def ocid
  @ocid
end

#stateString

Output only. The lifecycle state of the connection assignment. Corresponds to the JSON property state

Returns:

  • (String)


4259
4260
4261
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4259

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4266
4267
4268
4269
4270
4271
4272
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4266

def update!(**args)
  @alias = args[:alias] if args.key?(:alias)
  @goldengate_connection = args[:goldengate_connection] if args.key?(:goldengate_connection)
  @goldengate_deployment = args[:goldengate_deployment] if args.key?(:goldengate_deployment)
  @ocid = args[:ocid] if args.key?(:ocid)
  @state = args[:state] if args.key?(:state)
end