Class: Google::Apis::NotebooksV1::ListSchedulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::ListSchedulesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
Response for listing scheduled notebook job.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Page token that can be used to continue listing from the last result in the next list call.
-
#schedules ⇒ Array<Google::Apis::NotebooksV1::Schedule>
A list of returned instances.
-
#unreachable ⇒ Array<String>
Schedules that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListSchedulesResponse
constructor
A new instance of ListSchedulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListSchedulesResponse
Returns a new instance of ListSchedulesResponse.
1475 1476 1477 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1475 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Page token that can be used to continue listing from the last result in the
next list call.
Corresponds to the JSON property nextPageToken
1461 1462 1463 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1461 def next_page_token @next_page_token end |
#schedules ⇒ Array<Google::Apis::NotebooksV1::Schedule>
A list of returned instances.
Corresponds to the JSON property schedules
1466 1467 1468 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1466 def schedules @schedules end |
#unreachable ⇒ Array<String>
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
1473 1474 1475 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1473 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1480 1481 1482 1483 1484 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1480 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 |