Show / Hide Table of Contents

Class ListDataVerificationObjectStatusesRequest

Inheritance
object
ListDataVerificationObjectStatusesRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemigrationService.Requests
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class ListDataVerificationObjectStatusesRequest : IOciRequest
Examples

Click here to see an example of how to use ListDataVerificationObjectStatuses request.

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[HttpConverter(TargetEnum.Query, "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The ID of the compartment in which to list resources.

Remarks

Required

Filter

Declaration
[HttpConverter(TargetEnum.Query, "filter")]
public string Filter { get; set; }
Property Value
Type Description
string

Free-text filter applied by the service to relevant fields for the report.

IfMatch

Declaration
[HttpConverter(TargetEnum.Header, "if-match")]
public string IfMatch { get; set; }
Property Value
Type Description
string

For optimistic concurrency control. In the PUT or DELETE call for a resource, set the if-match parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value.

IsMatch

Declaration
[HttpConverter(TargetEnum.Query, "isMatch")]
public bool? IsMatch { get; set; }
Property Value
Type Description
bool?

Match filter for object status results.
When true, returns only rows where source and target match. When false, returns only rows with mismatches. When omitted, returns all rows, ordered by mismatch first.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return.

MigrationId

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

The OCID of the migration

Remarks

Required

Name

Declaration
[HttpConverter(TargetEnum.Query, "name")]
public string Name { get; set; }
Property Value
Type Description
string

A filter to return only resources that match the entire name given.

ObjectType

Declaration
[HttpConverter(TargetEnum.Query, "objectType")]
public string ObjectType { get; set; }
Property Value
Type Description
string

A filter to return only results for a specific object type.
The allowed values depend on the migration's databaseCombination:

  • Oracle migrations: OracleDatabaseObjectTypes
  • MySQL migrations: MySqlDatabaseObjectTypes

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

Owner

Declaration
[HttpConverter(TargetEnum.Query, "owner")]
public string Owner { get; set; }
Property Value
Type Description
string

A filter to return only results for a specific owner.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call.

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListDataVerificationObjectStatusesRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListDataVerificationObjectStatusesRequest.SortByEnum?

The field to sort by. Only one sort order may be provided. By default, non-matching object statuses are returned first, followed by matching statuses. Rows with the same match result are then sorted by owner, object type, and object name.

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public SortOrders? SortOrder { get; set; }
Property Value
Type Description
SortOrders?

The sort order to use, either 'asc' or 'desc'.

Implements

IOciRequest
In this article
Back to top