class Google::Apis::DataprocV1beta2::ListWorkflowTemplatesResponse
A response to a request to list workflow templates in a project.
Attributes
next_page_token[RW]
Output only. 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 ListWorkflowTemplatesRequest. Corresponds to the JSON property `nextPageToken` @return [String]
templates[RW]
Output only. WorkflowTemplates list. Corresponds to the JSON property `templates` @return [Array<Google::Apis::DataprocV1beta2::WorkflowTemplate>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataproc_v1beta2/classes.rb, line 2126 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataproc_v1beta2/classes.rb, line 2131 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @templates = args[:templates] if args.key?(:templates) end