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.



8279
8280
8281
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8279

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



8272
8273
8274
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8272

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)


8277
8278
8279
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8277

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8284
8285
8286
8287
# File 'lib/google/apis/dataplex_v1/classes.rb', line 8284

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