Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEntitiesResponse

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 metadata entities response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListEntitiesResponse

Returns a new instance of GoogleCloudDataplexV1ListEntitiesResponse.



5290
5291
5292
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5290

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

Instance Attribute Details

#entitiesArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1Entity>

Entities in the specified parent zone. Corresponds to the JSON property entities



5282
5283
5284
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5282

def entities
  @entities
end

#next_page_tokenString

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

Returns:

  • (String)


5288
5289
5290
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5288

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5295
5296
5297
5298
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5295

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