Show / Hide Table of Contents

Class ListDataVerificationTableRowCountsRequest

Inheritance
object
ListDataVerificationTableRowCountsRequest
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 ListDataVerificationTableRowCountsRequest : IOciRequest
Examples

Click here to see an example of how to use ListDataVerificationTableRowCounts 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.

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

MinAbsDeltaPercent

Declaration
[HttpConverter(TargetEnum.Query, "minAbsDeltaPercent")]
public double MinAbsDeltaPercent { get; set; }
Property Value
Type Description
double

Minimum absolute deltaPercent threshold (magnitude) to return. The service filters results where abs(deltaPercent) >= minAbsDeltaPercent. Must be non-negative.
Note: This filter applies to the object type counts report, which uses deltaPercent. Table row count reports use variancePercent instead.

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 ListDataVerificationTableRowCountsRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListDataVerificationTableRowCountsRequest.SortByEnum?

The field to sort by. Only one sort order may be provided. Default order for variancePercent is descending.

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'.

TableName

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

A filter to return only results for a specific table.

Implements

IOciRequest
In this article
Back to top