Show / Hide Table of Contents

Class ListStatementsRequest

Inheritance
object
ListStatementsRequest
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.DataflowService.Requests
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class ListStatementsRequest : IOciRequest
Examples

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

Properties

LifecycleState

Declaration
[HttpConverter(TargetEnum.Query, "lifecycleState")]
public StatementLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
StatementLifecycleState?

The LifecycleState of the statement.

Limit

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

The maximum number of results to return in a paginated List call.

OpcRequestId

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

Unique identifier for the request. If provided, the returned request ID will include this value. Otherwise, a random request ID will be generated by the service.

Page

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

The value of the opc-next-page or opc-prev-page response header from the last List call to sent back to server for getting the next page of results.

RunId

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

The unique ID for the run

Remarks

Required

SortBy

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

The field used to sort the results. Multiple fields are not supported.

SortOrder

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

The ordering of results in ascending or descending order.

Implements

IOciRequest
In this article
Back to top