Class: Google::Apis::OracledatabaseV1::ListDbNodesResponse

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 DbNode.List.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDbNodesResponse

Returns a new instance of ListDbNodesResponse.



2301
2302
2303
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2301

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

Instance Attribute Details

#db_nodesArray<Google::Apis::OracledatabaseV1::DbNode>

The list of DB Nodes Corresponds to the JSON property dbNodes



2294
2295
2296
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2294

def db_nodes
  @db_nodes
end

#next_page_tokenString

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

Returns:

  • (String)


2299
2300
2301
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2299

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2306
2307
2308
2309
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2306

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