Class: Google::Apis::BackupdrV1::ListDataSourceReferencesResponse
- Inherits:
-
Object
- Object
- Google::Apis::BackupdrV1::ListDataSourceReferencesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/backupdr_v1/classes.rb,
lib/google/apis/backupdr_v1/representations.rb,
lib/google/apis/backupdr_v1/representations.rb
Overview
Response for the ListDataSourceReferences method.
Instance Attribute Summary collapse
-
#data_source_references ⇒ Array<Google::Apis::BackupdrV1::DataSourceReference>
The DataSourceReferences from the specified parent.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDataSourceReferencesResponse
constructor
A new instance of ListDataSourceReferencesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDataSourceReferencesResponse
Returns a new instance of ListDataSourceReferencesResponse.
4360 4361 4362 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4360 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_source_references ⇒ Array<Google::Apis::BackupdrV1::DataSourceReference>
The DataSourceReferences from the specified parent.
Corresponds to the JSON property dataSourceReferences
4347 4348 4349 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4347 def data_source_references @data_source_references end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
4353 4354 4355 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4353 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
4358 4359 4360 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4358 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4365 4366 4367 4368 4369 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4365 def update!(**args) @data_source_references = args[:data_source_references] if args.key?(:data_source_references) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |