Class: Google::Apis::GkebackupV1::ListVolumeBackupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GkebackupV1::ListVolumeBackupsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkebackup_v1/classes.rb,
lib/google/apis/gkebackup_v1/representations.rb,
lib/google/apis/gkebackup_v1/representations.rb
Overview
Response message for ListVolumeBackups.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token which may be sent as page_token in a subsequent
ListVolumeBackupscall to retrieve the next page of results. -
#volume_backups ⇒ Array<Google::Apis::GkebackupV1::VolumeBackup>
The list of VolumeBackups matching the given criteria.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListVolumeBackupsResponse
constructor
A new instance of ListVolumeBackupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListVolumeBackupsResponse
Returns a new instance of ListVolumeBackupsResponse.
1085 1086 1087 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1085 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token which may be sent as page_token in a subsequent ListVolumeBackups
call to retrieve the next page of results. If this field is omitted or empty,
then there are no more results to return.
Corresponds to the JSON property nextPageToken
1078 1079 1080 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1078 def next_page_token @next_page_token end |
#volume_backups ⇒ Array<Google::Apis::GkebackupV1::VolumeBackup>
The list of VolumeBackups matching the given criteria.
Corresponds to the JSON property volumeBackups
1083 1084 1085 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1083 def volume_backups @volume_backups end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1090 1091 1092 1093 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1090 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @volume_backups = args[:volume_backups] if args.key?(:volume_backups) end |