Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataDomainsResponse

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 DataDomains response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataDomainsResponse

Returns a new instance of GoogleCloudDataplexV1ListDataDomainsResponse.



8324
8325
8326
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8324

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

Instance Attribute Details

#data_domainsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDomain>

DataDomains under the given parent. Corresponds to the JSON property dataDomains



8317
8318
8319
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8317

def data_domains
  @data_domains
end

#next_page_tokenString

Token to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


8322
8323
8324
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8322

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8329
8330
8331
8332
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8329

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