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.



5686
5687
5688
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5686

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



5678
5679
5680
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5678

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)


5684
5685
5686
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5684

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5691
5692
5693
5694
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5691

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