class Google::Apis::DataprocV1::ListClustersResponse

The list of all clusters in a project.

Attributes

clusters[RW]
Output-only

The clusters in the project.

Corresponds to the JSON property `clusters` @return [Array<Google::Apis::DataprocV1::Cluster>]

next_page_token[RW]
Optional

This token is included in the response if there are more results to

fetch. To fetch additional results, provide this value as the `page_token` in a subsequent ListClustersRequest. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/dataproc_v1/classes.rb, line 608
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/dataproc_v1/classes.rb, line 613
def update!(**args)
  @clusters = args[:clusters] if args.key?(:clusters)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end