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.
4320 4321 4322 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4320 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
4307 4308 4309 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4307 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
4313 4314 4315 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4313 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
4318 4319 4320 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4318 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4325 4326 4327 4328 4329 |
# File 'lib/google/apis/backupdr_v1/classes.rb', line 4325 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 |