class Google::Apis::NotebooksV1::ListSchedulesResponse
Response for listing scheduled notebook job.
Attributes
next_page_token[RW]
Page token that can be used to continue listing from the last result in the next list call. Corresponds to the JSON property `nextPageToken` @return [String]
schedules[RW]
A list of returned instances. Corresponds to the JSON property `schedules` @return [Array<Google::Apis::NotebooksV1::Schedule>]
unreachable[RW]
Schedules that could not be reached. For example, ['projects/`project_id`/ location/`location`/schedules/monthly_digest', 'projects/`project_id`/location/ `location`/schedules/weekly_sentiment']. Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/notebooks_v1/classes.rb, line 1237 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/notebooks_v1/classes.rb, line 1242 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @schedules = args[:schedules] if args.key?(:schedules) @unreachable = args[:unreachable] if args.key?(:unreachable) end