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.
9339 9340 9341 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9339 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error ⇒ Google::Apis::OracledatabaseV1::TestConnectionAssignmentError
Error details for TestGoldengateConnectionAssignment.
Corresponds to the JSON property error
9327 9328 9329 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9327 def error @error end |
#errors ⇒ Array<Google::Apis::OracledatabaseV1::TestConnectionAssignmentError>
List of test connection assignment error objects.
Corresponds to the JSON property errors
9332 9333 9334 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9332 def errors @errors end |
#result_type ⇒ String
Type of the result i.e. Success, Failure or Timeout.
Corresponds to the JSON property resultType
9337 9338 9339 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9337 def result_type @result_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9344 9345 9346 9347 9348 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 9344 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 |