Class: Google::Apis::VmmigrationV1::ListTargetProjectsResponse
- Inherits:
-
Object
- Object
- Google::Apis::VmmigrationV1::ListTargetProjectsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmmigration_v1/classes.rb,
lib/google/apis/vmmigration_v1/representations.rb,
lib/google/apis/vmmigration_v1/representations.rb
Overview
Response message for 'ListTargetProjects' call.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Output only.
-
#target_projects ⇒ Array<Google::Apis::VmmigrationV1::TargetProject>
Output only.
-
#unreachable ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTargetProjectsResponse
constructor
A new instance of ListTargetProjectsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListTargetProjectsResponse
Returns a new instance of ListTargetProjectsResponse.
2844 2845 2846 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2844 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Output only. 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
2832 2833 2834 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2832 def next_page_token @next_page_token end |
#target_projects ⇒ Array<Google::Apis::VmmigrationV1::TargetProject>
Output only. The list of target response.
Corresponds to the JSON property targetProjects
2837 2838 2839 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2837 def target_projects @target_projects end |
#unreachable ⇒ Array<String>
Output only. Locations that could not be reached.
Corresponds to the JSON property unreachable
2842 2843 2844 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2842 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2849 2850 2851 2852 2853 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2849 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @target_projects = args[:target_projects] if args.key?(:target_projects) @unreachable = args[:unreachable] if args.key?(:unreachable) end |