Show / Hide Table of Contents

Class ListExcludedObjectsRequest

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

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

Properties

JobId

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

The OCID of the job

Remarks

Required

Limit

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

The maximum number of items to return.

Object

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

Excluded object name

ObjectContains

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

Excluded object name which contains provided value.

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

Excluded object owner

OwnerContains

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

Excluded object owner which contains provided value.

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.

ReasonCategory

Declaration
[HttpConverter(TargetEnum.Query, "reasonCategory")]
public ReasonKeywords? ReasonCategory { get; set; }
Property Value
Type Description
ReasonKeywords?

Reason category for the excluded object

SortBy

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

The field to sort by. Only one sort order may be provided. Default order for reasonCategory is ascending. If no value is specified reasonCategory is default.

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

SourceRule

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

Exclude object rule that matches the excluded object, if applicable.

Type

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

Excluded object type.

Implements

IOciRequest
In this article
Back to top