Class: Google::Apis::SpannerV1::ListBackupSchedulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::ListBackupSchedulesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/spanner_v1/classes.rb,
lib/google/apis/spanner_v1/representations.rb,
lib/google/apis/spanner_v1/representations.rb
Overview
The response for ListBackupSchedules.
Instance Attribute Summary collapse
-
#backup_schedules ⇒ Array<Google::Apis::SpannerV1::BackupSchedule>
The list of backup schedules for a database.
-
#next_page_token ⇒ String
next_page_tokencan be sent in a subsequent ListBackupSchedules call to fetch more of the schedules.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListBackupSchedulesResponse
constructor
A new instance of ListBackupSchedulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListBackupSchedulesResponse
Returns a new instance of ListBackupSchedulesResponse.
3703 3704 3705 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 3703 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backup_schedules ⇒ Array<Google::Apis::SpannerV1::BackupSchedule>
The list of backup schedules for a database.
Corresponds to the JSON property backupSchedules
3695 3696 3697 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 3695 def backup_schedules @backup_schedules end |
#next_page_token ⇒ String
next_page_token can be sent in a subsequent ListBackupSchedules call to
fetch more of the schedules.
Corresponds to the JSON property nextPageToken
3701 3702 3703 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 3701 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3708 3709 3710 3711 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 3708 def update!(**args) @backup_schedules = args[:backup_schedules] if args.key?(:backup_schedules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |