Show / Hide Table of Contents

Class VmTargetAsset

Description of the VM target asset.

Inheritance
object
TargetAsset
VmTargetAsset
Inherited Members
TargetAsset.Id
TargetAsset.DisplayName
TargetAsset.LifecycleState
TargetAsset.LifecycleDetails
TargetAsset.MigrationPlanId
TargetAsset.CompartmentId
TargetAsset.CreatedResourceId
TargetAsset.IsExcludedFromExecution
TargetAsset.CompatibilityMessages
TargetAsset.EstimatedCost
TargetAsset.TimeCreated
TargetAsset.TimeUpdated
TargetAsset.TimeAssessed
TargetAsset.MigrationAsset
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudmigrationsService.Models
Assembly: OCI.DotNetSDK.Cloudmigrations.dll
Syntax
public class VmTargetAsset : TargetAsset

Properties

BlockVolumesPerformance

Declaration
[JsonProperty(PropertyName = "blockVolumesPerformance")]
public int? BlockVolumesPerformance { get; set; }
Property Value
Type Description
int?

Performance of the block volumes.

MsLicense

Declaration
[JsonProperty(PropertyName = "msLicense")]
public string MsLicense { get; set; }
Property Value
Type Description
string

Microsoft license for VM configuration.

PreferredShapeType

Declaration
[Required(ErrorMessage = "PreferredShapeType is required.")]
[JsonProperty(PropertyName = "preferredShapeType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VmTargetAsset.PreferredShapeTypeEnum? PreferredShapeType { get; set; }
Property Value
Type Description
VmTargetAsset.PreferredShapeTypeEnum?

Preferred VM shape type that you provide.

Remarks

Required

RecommendedSpec

Declaration
[JsonProperty(PropertyName = "recommendedSpec")]
public LaunchInstanceDetails RecommendedSpec { get; set; }
Property Value
Type Description
LaunchInstanceDetails

TestSpec

Declaration
[JsonProperty(PropertyName = "testSpec")]
public LaunchInstanceDetails TestSpec { get; set; }
Property Value
Type Description
LaunchInstanceDetails

UserSpec

Declaration
[JsonProperty(PropertyName = "userSpec")]
public LaunchInstanceDetails UserSpec { get; set; }
Property Value
Type Description
LaunchInstanceDetails
In this article
Back to top