Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEntriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEntriesResponse
- 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
Instance Attribute Summary collapse
-
#entries ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Entry>
The list of entries.
-
#next_page_token ⇒ String
Pagination token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListEntriesResponse
constructor
A new instance of GoogleCloudDataplexV1ListEntriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListEntriesResponse
Returns a new instance of GoogleCloudDataplexV1ListEntriesResponse.
5328 5329 5330 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5328 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entries ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Entry>
The list of entries.
Corresponds to the JSON property entries
5321 5322 5323 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5321 def entries @entries end |
#next_page_token ⇒ String
Pagination token.
Corresponds to the JSON property nextPageToken
5326 5327 5328 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5326 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5333 5334 5335 5336 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5333 def update!(**args) @entries = args[:entries] if args.key?(:entries) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |