Show / Hide Table of Contents

Class SearchResourcesResponse

Inheritance
object
OciResponse
SearchResourcesResponse
Implements
IOciResponse
Inherited Members
OciResponse.httpResponseMessage
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ResourcesearchService.Responses
Assembly: OCI.DotNetSDK.Resourcesearch.dll
Syntax
public class SearchResourcesResponse : OciResponse, IOciResponse

Properties

OpcNextPage

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

For pagination of a list of items. When paging through a list, if this header appears in the response, then there are additional items still to get. Include this value as the page parameter for the subsequent GET request. For information about pagination, see ListPagination.

OpcPreviousPage

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

For pagination of a list of items. When paging through a list, if this header appears in the response, then there are additional items in previous pages to get. Include this value as the page parameter for the subsequent GET request. The absence of this header indicates that you have reached the first page of the list. For more information, see ListPagination.

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.

ResourceSummaryCollection

Declaration
[HttpConverter(TargetEnum.Body)]
public ResourceSummaryCollection ResourceSummaryCollection { get; set; }
Property Value
Type Description
ResourceSummaryCollection

The returned ResourceSummaryCollection instance.

Implements

IOciResponse
In this article
Back to top