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_tokento 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.
| 1465 1466 1467 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1465 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
| 1457 1458 1459 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1457 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
| 1463 1464 1465 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1463 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1470 1471 1472 1473 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1470 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 |