Class: Google::Apis::NotebooksV1::ListSchedulesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListSchedulesResponse

Returns a new instance of ListSchedulesResponse.

[View source]

1475
1476
1477
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1475

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

Page token that can be used to continue listing from the last result in the next list call. Corresponds to the JSON property nextPageToken

Returns:

  • (String)

1461
1462
1463
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1461

def next_page_token
  @next_page_token
end

#schedulesArray<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

#unreachableArray<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

Returns:

  • (Array<String>)

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

[View source]

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