Class: Google::Apis::MigrationcenterV1::ReportSummaryVmwareNodeAllocation

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

Overview

Represents assets allocated to a specific VMWare Node type.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportSummaryVmwareNodeAllocation

Returns a new instance of ReportSummaryVmwareNodeAllocation.



4193
4194
4195
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4193

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

Instance Attribute Details

#allocated_asset_countFixnum

Count of assets allocated to these nodes Corresponds to the JSON property allocatedAssetCount

Returns:

  • (Fixnum)


4181
4182
4183
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4181

def allocated_asset_count
  @allocated_asset_count
end

#node_countFixnum

Count of this node type to be provisioned Corresponds to the JSON property nodeCount

Returns:

  • (Fixnum)


4186
4187
4188
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4186

def node_count
  @node_count
end

#vmware_nodeGoogle::Apis::MigrationcenterV1::ReportSummaryVmwareNode

A VMWare Engine Node Corresponds to the JSON property vmwareNode



4191
4192
4193
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4191

def vmware_node
  @vmware_node
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4198
4199
4200
4201
4202
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 4198

def update!(**args)
  @allocated_asset_count = args[:allocated_asset_count] if args.key?(:allocated_asset_count)
  @node_count = args[:node_count] if args.key?(:node_count)
  @vmware_node = args[:vmware_node] if args.key?(:vmware_node)
end