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
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.
1450 1451 1452 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1450 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
1436 1437 1438 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1436 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
1441 1442 1443 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1441 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
1448 1449 1450 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1448 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1455 1456 1457 1458 1459 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1455 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 |