Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEnvironmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEnvironmentsResponse
- 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
-
#environments ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Environment>
Environments under the given parent lake.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListEnvironmentsResponse
constructor
A new instance of GoogleCloudDataplexV1ListEnvironmentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#environments ⇒ Array<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_token ⇒ String
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
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 |