class Google::Apis::VmmigrationV1alpha1::AppliedLicense
AppliedLicense
holds the license data returned by adaptation module report.
Attributes
os_license[RW]
The OS license returned from the adaptation module’s report. Corresponds to the JSON property ‘osLicense` @return [String]
type[RW]
The license type that was used in OS adaptation. Corresponds to the JSON property ‘type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/vmmigration_v1alpha1/classes.rb, line 96 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/vmmigration_v1alpha1/classes.rb, line 101 def update!(**args) @os_license = args[:os_license] if args.key?(:os_license) @type = args[:type] if args.key?(:type) end