Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEntriesResponse

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

Overview

List Entries response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListEntriesResponse

Returns a new instance of GoogleCloudDataplexV1ListEntriesResponse.



5458
5459
5460
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5458

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

Instance Attribute Details

#entriesArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1Entry>

The list of entries under the given parent location. Corresponds to the JSON property entries



5450
5451
5452
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5450

def entries
  @entries
end

#next_page_tokenString

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


5456
5457
5458
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5456

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5463
5464
5465
5466
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5463

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