Class: Google::Apis::OracledatabaseV1::ListGoldengateConnectionsResponse

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 response for GoldengateConnection.List.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListGoldengateConnectionsResponse

Returns a new instance of ListGoldengateConnectionsResponse.



8143
8144
8145
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8143

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

Instance Attribute Details

#goldengate_connectionsArray<Google::Apis::OracledatabaseV1::GoldengateConnection>

The list of GoldengateConnections. Corresponds to the JSON property goldengateConnections



8131
8132
8133
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8131

def goldengate_connections
  @goldengate_connections
end

#next_page_tokenString

A token identifying a page of results the server should return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


8136
8137
8138
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8136

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Optional. Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


8141
8142
8143
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8141

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8148
8149
8150
8151
8152
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8148

def update!(**args)
  @goldengate_connections = args[:goldengate_connections] if args.key?(:goldengate_connections)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end