Show / Hide Table of Contents

Class CreateMigrationAssetDetails

Details of the new migration asset.

Inheritance
object
CreateMigrationAssetDetails
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
public class CreateMigrationAssetDetails

Properties

AvailabilityDomain

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

Availability domain

Remarks

Required

DependsOn

Declaration
[JsonProperty(PropertyName = "dependsOn")]
public List<string> DependsOn { get; set; }
Property Value
Type Description
List<string>

List of migration assets that depends on this asset.

DisplayName

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

A user-friendly name. If empty, then source asset name will be used. Does not have to be unique, and it's changeable. Avoid entering confidential information.

InventoryAssetId

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

OCID of an asset for an inventory.

Remarks

Required

MigrationId

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

OCID of the associated migration.

Remarks

Required

ReplicationCompartmentId

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

Replication compartment identifier

Remarks

Required

ReplicationScheduleId

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

Replication schedule identifier

SnapShotBucketName

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

Name of snapshot bucket

Remarks

Required

In this article
Back to top