Show / Hide Table of Contents

Class ListOdaPrivateEndpointAttachmentsRequest

Inheritance
object
ListOdaPrivateEndpointAttachmentsRequest
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.OdaService.Requests
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class ListOdaPrivateEndpointAttachmentsRequest : IOciRequest
Examples

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

Properties

CompartmentId

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

List the ODA Private Endpoint Attachments that belong to this compartment.

Remarks

Required

LifecycleState

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

List only the ODA Private Endpoint Attachments that are in this lifecycle state.

Limit

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

The maximum number of items to return per page.

OdaPrivateEndpointId

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

The OCID of ODA Private Endpoint.

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. This value is included in the opc-request-id response header.

Page

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

The page at which to start retrieving results.
You get this value from the opc-next-page header in a previous list request. To retireve the first page, omit this query parameter.
Example: MToxMA==

SortBy

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

Sort on this field. You can specify one sort order only. The default sort field is TIMECREATED.
The default sort order for TIMECREATED is descending, and the default sort order for DISPLAYNAME is ascending.

SortOrder

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

Sort the results in this order, use either ASC (ascending) or DESC (descending).

Implements

IOciRequest
In this article
Back to top