Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEnvironmentsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListEnvironmentsResponse

Returns a new instance of GoogleCloudDataplexV1ListEnvironmentsResponse.



5548
5549
5550
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5548

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

Instance Attribute Details

#environmentsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1Environment>

Environments under the given parent lake. Corresponds to the JSON property environments



5540
5541
5542
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5540

def environments
  @environments
end

#next_page_tokenString

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


5546
5547
5548
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5546

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5553
5554
5555
5556
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5553

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