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.



5303
5304
5305
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5303

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



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

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)


5301
5302
5303
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5301

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5308
5309
5310
5311
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5308

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