Show / Hide Table of Contents

Class SearchResourcesRequest

Inheritance
object
SearchResourcesRequest
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.ResourcesearchService.Requests
Assembly: OCI.DotNetSDK.Resourcesearch.dll
Syntax
public class SearchResourcesRequest : IOciRequest
Examples

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

Properties

Limit

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

The maximum number of items to return. The value must be between 1 and 1000.

OpcRequestId

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

The unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the complete request ID.

Page

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

The page at which to start retrieving results.

SearchDetails

Declaration
[Required(ErrorMessage = "SearchDetails is required.")]
[HttpConverter(TargetEnum.Body)]
public SearchDetails SearchDetails { get; set; }
Property Value
Type Description
SearchDetails

Request parameters that describe query criteria. For more information, see {@link #searchDetails(SearchDetailsRequest) searchDetails}.

Remarks

Required

TenantId

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

The tenancy ID, which can be used to specify a different tenancy (for cross-tenancy authorization) when searching for resources in a different tenancy.

Implements

IOciRequest
In this article
Back to top