Show / Hide Table of Contents

Class ListResolverEndpointsRequest

Inheritance
object
ListResolverEndpointsRequest
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.DnsService.Requests
Assembly: OCI.DotNetSDK.Dns.dll
Syntax
public class ListResolverEndpointsRequest : IOciRequest
Examples

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

Properties

LifecycleState

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

The state of a resource.

Limit

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

The maximum number of items to return in a page of the collection.

Name

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

The name of a resource.

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.

Page

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

The value of the opc-next-page response header from the previous "List" call.

ResolverId

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

The OCID of the target resolver.

Remarks

Required

Scope

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

Specifies to operate only on resources that have a matching DNS scope.

SortBy

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

The field by which to sort resolver endpoints.

SortOrder

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

The order to sort the resources.

Implements

IOciRequest
In this article
Back to top