Class OracleAssessmentObjectCollection
List of affected database objects.
Inherited Members
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class OracleAssessmentObjectCollection : AssessmentObjectCollection
Properties
BulkIncludeExcludeData
Declaration
[JsonProperty(PropertyName = "bulkIncludeExcludeData")]
public string BulkIncludeExcludeData { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Specifies the database objects to be excluded from the migration in bulk. The definition accepts input in a CSV format, newline separated for each entry. More details can be found in the documentation. |
Items
Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<OracleDatabaseObjectSummary> Items { get; set; }
Property Value
| Type | Description |
|---|---|
| List<OracleDatabaseObjectSummary> | An array of database objects. |
Remarks
Required