Show / Hide Table of Contents

Class ListSqlEndpointsRequest

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

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

Properties

CompartmentId

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

The OCID of the compartment in which to query resources.

DisplayName

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

The query parameter for the Spark application name.

LifecycleState

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

A filter to return only those resources whose sqlEndpointLifecycleState matches the given sqlEndpointLifecycleState.

Limit

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

The maximum number of items that can be returned.

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

The field to sort by. Only one sort order may be provided. The default order for timeCreated is descending. The default order for displayName is ascending. If no value is specified timeCreated is used by default.

SortOrder

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

The ordering of results in ascending or descending order.

SqlEndpointId

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

The unique id of the SQL Endpoint.

Implements

IOciRequest
In this article
Back to top