Class: Google::Apis::DatamigrationV1::DescribeDatabaseEntitiesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datamigration_v1/classes.rb,
lib/google/apis/datamigration_v1/representations.rb,
lib/google/apis/datamigration_v1/representations.rb

Overview

Response message for 'DescribeDatabaseEntities' request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DescribeDatabaseEntitiesResponse

Returns a new instance of DescribeDatabaseEntitiesResponse.



1517
1518
1519
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1517

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

Instance Attribute Details

#database_entitiesArray<Google::Apis::DatamigrationV1::DatabaseEntity>

The list of database entities for the conversion workspace. Corresponds to the JSON property databaseEntities



1509
1510
1511
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1509

def database_entities
  @database_entities
end

#next_page_tokenString

A token which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1515
1516
1517
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1515

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1522
1523
1524
1525
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1522

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