Class: Google::Apis::OracledatabaseV1::TestGoldengateConnectionAssignmentResponse

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 result of the connectivity test performed between the Goldengate deployment and the associated database / service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TestGoldengateConnectionAssignmentResponse

Returns a new instance of TestGoldengateConnectionAssignmentResponse.



9340
9341
9342
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9340

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

Instance Attribute Details

#errorGoogle::Apis::OracledatabaseV1::TestConnectionAssignmentError

Error details for TestGoldengateConnectionAssignment. Corresponds to the JSON property error



9328
9329
9330
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9328

def error
  @error
end

#errorsArray<Google::Apis::OracledatabaseV1::TestConnectionAssignmentError>

List of test connection assignment error objects. Corresponds to the JSON property errors



9333
9334
9335
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9333

def errors
  @errors
end

#result_typeString

Type of the result i.e. Success, Failure or Timeout. Corresponds to the JSON property resultType

Returns:

  • (String)


9338
9339
9340
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9338

def result_type
  @result_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9345
9346
9347
9348
9349
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9345

def update!(**args)
  @error = args[:error] if args.key?(:error)
  @errors = args[:errors] if args.key?(:errors)
  @result_type = args[:result_type] if args.key?(:result_type)
end