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.



5801
5802
5803
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5801

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



5793
5794
5795
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5793

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)


5799
5800
5801
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5799

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5806
5807
5808
5809
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5806

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