Class: Google::Apis::VmmigrationV1::FetchInventoryResponse

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 fetchInventory.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FetchInventoryResponse

Returns a new instance of FetchInventoryResponse.



782
783
784
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 782

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)


769
770
771
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 769

def next_page_token
  @next_page_token
end

#update_timeString

Output only. The timestamp when the source was last queried (if the result is from the cache). Corresponds to the JSON property updateTime

Returns:

  • (String)


775
776
777
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 775

def update_time
  @update_time
end

#vmware_vmsGoogle::Apis::VmmigrationV1::VmwareVmsDetails

VmwareVmsDetails describes VMs in vCenter. Corresponds to the JSON property vmwareVms



780
781
782
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 780

def vmware_vms
  @vmware_vms
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



787
788
789
790
791
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 787

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