Class: Google::Apis::VmmigrationV1::FetchInventoryResponse
- Inherits:
-
Object
- Object
- Google::Apis::VmmigrationV1::FetchInventoryResponse
- 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
-
#aws_vms ⇒ Google::Apis::VmmigrationV1::AwsVmsDetails
AWSVmsDetails describes VMs in AWS.
-
#azure_vms ⇒ Google::Apis::VmmigrationV1::AzureVmsDetails
AzureVmsDetails describes VMs in Azure.
-
#next_page_token ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
-
#vmware_vms ⇒ Google::Apis::VmmigrationV1::VmwareVmsDetails
VmwareVmsDetails describes VMs in vCenter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FetchInventoryResponse
constructor
A new instance of FetchInventoryResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FetchInventoryResponse
Returns a new instance of FetchInventoryResponse.
2140 2141 2142 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2140 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aws_vms ⇒ Google::Apis::VmmigrationV1::AwsVmsDetails
AWSVmsDetails describes VMs in AWS.
Corresponds to the JSON property awsVms
2116 2117 2118 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2116 def aws_vms @aws_vms end |
#azure_vms ⇒ Google::Apis::VmmigrationV1::AzureVmsDetails
AzureVmsDetails describes VMs in Azure.
Corresponds to the JSON property azureVms
2121 2122 2123 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2121 def azure_vms @azure_vms end |
#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
2127 2128 2129 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2127 def next_page_token @next_page_token end |
#update_time ⇒ String
Output only. The timestamp when the source was last queried (if the result is
from the cache).
Corresponds to the JSON property updateTime
2133 2134 2135 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2133 def update_time @update_time end |
#vmware_vms ⇒ Google::Apis::VmmigrationV1::VmwareVmsDetails
VmwareVmsDetails describes VMs in vCenter.
Corresponds to the JSON property vmwareVms
2138 2139 2140 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2138 def vmware_vms @vmware_vms end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2145 2146 2147 2148 2149 2150 2151 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2145 def update!(**args) @aws_vms = args[:aws_vms] if args.key?(:aws_vms) @azure_vms = args[:azure_vms] if args.key?(:azure_vms) @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 |