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.



6487
6488
6489
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6487

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



6479
6480
6481
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6479

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)


6485
6486
6487
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6485

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6492
6493
6494
6495
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6492

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