Class: Google::Apis::VmmigrationV1alpha1::ListCloneJobsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/vmmigration_v1alpha1/classes.rb,
lib/google/apis/vmmigration_v1alpha1/representations.rb,
lib/google/apis/vmmigration_v1alpha1/representations.rb

Overview

Response message for 'ListCloneJobs' request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListCloneJobsResponse

Returns a new instance of ListCloneJobsResponse.



3024
3025
3026
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3024

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

Instance Attribute Details

#clone_jobsArray<Google::Apis::VmmigrationV1alpha1::CloneJob>

Output only. The list of clone jobs response. Corresponds to the JSON property cloneJobs



3011
3012
3013
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3011

def clone_jobs
  @clone_jobs
end

#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)


3017
3018
3019
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3017

def next_page_token
  @next_page_token
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)


3022
3023
3024
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3022

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3029
3030
3031
3032
3033
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3029

def update!(**args)
  @clone_jobs = args[:clone_jobs] if args.key?(:clone_jobs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end