Class: Google::Apis::OracledatabaseV1::TestGoldengateConnectionAssignmentResponse
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::TestGoldengateConnectionAssignmentResponse
- 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
-
#error ⇒ Google::Apis::OracledatabaseV1::TestConnectionAssignmentError
Error details for TestGoldengateConnectionAssignment.
-
#errors ⇒ Array<Google::Apis::OracledatabaseV1::TestConnectionAssignmentError>
List of test connection assignment error objects.
-
#result_type ⇒ String
Type of the result i.e.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TestGoldengateConnectionAssignmentResponse
constructor
A new instance of TestGoldengateConnectionAssignmentResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TestGoldengateConnectionAssignmentResponse
Returns a new instance of TestGoldengateConnectionAssignmentResponse.
9560 9561 9562 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9560 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error ⇒ Google::Apis::OracledatabaseV1::TestConnectionAssignmentError
Error details for TestGoldengateConnectionAssignment.
Corresponds to the JSON property error
9548 9549 9550 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9548 def error @error end |
#errors ⇒ Array<Google::Apis::OracledatabaseV1::TestConnectionAssignmentError>
List of test connection assignment error objects.
Corresponds to the JSON property errors
9553 9554 9555 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9553 def errors @errors end |
#result_type ⇒ String
Type of the result i.e. Success, Failure or Timeout.
Corresponds to the JSON property resultType
9558 9559 9560 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9558 def result_type @result_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9565 9566 9567 9568 9569 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9565 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 |