class Google::Apis::ComposerV1::ListEnvironmentsResponse
The environments in a project and location.
Attributes
environments[RW]
The list of environments returned by a ListEnvironmentsRequest. Corresponds to the JSON property `environments` @return [Array<Google::Apis::ComposerV1::Environment>]
next_page_token[RW]
The page token used to query for the next page if one exists. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/composer_v1/classes.rb, line 488 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/composer_v1/classes.rb, line 493 def update!(**args) @environments = args[:environments] if args.key?(:environments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end