Show / Hide Table of Contents

Class CreateTargetAssetDetails

Details of the new target asset.

Inheritance
object
CreateTargetAssetDetails
CreateVmTargetAssetDetails
Inherited Members
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
[JsonConverter(typeof(CreateTargetAssetDetailsModelConverter))]
public class CreateTargetAssetDetails

Properties

IsExcludedFromExecution

Declaration
[Required(ErrorMessage = "IsExcludedFromExecution is required.")]
[JsonProperty(PropertyName = "isExcludedFromExecution")]
public bool? IsExcludedFromExecution { get; set; }
Property Value
Type Description
bool?

A boolean indicating whether the asset should be migrated.

Remarks

Required

MigrationPlanId

Declaration
[Required(ErrorMessage = "MigrationPlanId is required.")]
[JsonProperty(PropertyName = "migrationPlanId")]
public string MigrationPlanId { get; set; }
Property Value
Type Description
string

OCID of the associated migration plan.

Remarks

Required

In this article
Back to top