Class: Google::Apis::DatamigrationV1::DescribeDatabaseEntitiesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatamigrationV1::DescribeDatabaseEntitiesResponse
- 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
-
#database_entities ⇒ Array<Google::Apis::DatamigrationV1::DatabaseEntity>
The list of database entities for the conversion workspace.
-
#next_page_token ⇒ String
A token which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DescribeDatabaseEntitiesResponse
constructor
A new instance of DescribeDatabaseEntitiesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DescribeDatabaseEntitiesResponse
Returns a new instance of DescribeDatabaseEntitiesResponse.
1574 1575 1576 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1574 def initialize(**args) update!(**args) end |
Instance Attribute Details
#database_entities ⇒ Array<Google::Apis::DatamigrationV1::DatabaseEntity>
The list of database entities for the conversion workspace.
Corresponds to the JSON property databaseEntities
1566 1567 1568 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1566 def database_entities @database_entities end |
#next_page_token ⇒ String
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
1572 1573 1574 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1572 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1579 1580 1581 1582 |
# File 'lib/google/apis/datamigration_v1/classes.rb', line 1579 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 |