Show / Hide Table of Contents

Class SummarizeStatementRequest

Inheritance
object
SummarizeStatementRequest
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.NosqlService.Requests
Assembly: OCI.DotNetSDK.Nosql.dll
Syntax
public class SummarizeStatementRequest : IOciRequest
Examples

Click here to see an example of how to use SummarizeStatement 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 a table's compartment.

Remarks

Required

OpcRequestId

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

The client request ID for tracing.

Statement

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

A NoSQL SQL statement.

Remarks

Required

Implements

IOciRequest
In this article
Back to top