Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEntitiesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEntitiesResponse
- 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 metadata entities response.
Instance Attribute Summary collapse
-
#entities ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Entity>
Entities in the specified parent zone.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no remaining results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListEntitiesResponse
constructor
A new instance of GoogleCloudDataplexV1ListEntitiesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListEntitiesResponse
Returns a new instance of GoogleCloudDataplexV1ListEntitiesResponse.
5808 5809 5810 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5808 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entities ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Entity>
Entities in the specified parent zone.
Corresponds to the JSON property entities
5800 5801 5802 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5800 def entities @entities end |
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no remaining
results in the list.
Corresponds to the JSON property nextPageToken
5806 5807 5808 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5806 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5813 5814 5815 5816 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5813 def update!(**args) @entities = args[:entities] if args.key?(:entities) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |