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.



4455
4456
4457
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4455

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

Instance Attribute Details

#aliasString

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

Returns:

  • (String)


4429
4430
4431
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4429

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)


4435
4436
4437
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4435

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)


4442
4443
4444
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4442

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)


4448
4449
4450
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4448

def ocid
  @ocid
end

#stateString

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

Returns:

  • (String)


4453
4454
4455
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4453

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4460
4461
4462
4463
4464
4465
4466
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4460

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