Class: Google::Apis::VmmigrationV1::ListTargetProjectsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListTargetProjectsResponse

Returns a new instance of ListTargetProjectsResponse.



3361
3362
3363
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3361

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


3349
3350
3351
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3349

def next_page_token
  @next_page_token
end

#target_projectsArray<Google::Apis::VmmigrationV1::TargetProject>

Output only. The list of target response. Corresponds to the JSON property targetProjects



3354
3355
3356
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3354

def target_projects
  @target_projects
end

#unreachableArray<String>

Output only. Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


3359
3360
3361
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3359

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3366
3367
3368
3369
3370
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3366

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