Show / Hide Table of Contents

Class ListPbfListingsRequest

Inheritance
object
ListPbfListingsRequest
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.FunctionsService.Requests
Assembly: OCI.DotNetSDK.Functions.dll
Syntax
public class ListPbfListingsRequest : IOciRequest
Examples

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

Properties

LifecycleState

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

A filter to return only resources their lifecycleState matches the given lifecycleState.

Limit

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

The maximum number of items to return. 1 is the minimum, 50 is the maximum.
Default: 10

Name

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

A filter to return only resources that match the entire PBF name given.

NameContains

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

A filter to return only resources that contain the supplied filter text in the PBF name given.

NameStartsWith

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

A filter to return only resources that start with the supplied filter text in the PBF name given.

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 request ID.

Page

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

The pagination token for a list query returned by a previous operation

PbfListingId

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

unique PbfListing identifier

SortBy

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

The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for name is ascending.

SortOrder

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

Specifies sort order.

  • ASC: Ascending sort order.
  • DESC: Descending sort order.

Trigger

Declaration
[HttpConverter(TargetEnum.Query, "trigger", CollectionFormatType.Multi)]
public List<string> Trigger { get; set; }
Property Value
Type Description
List<string>

A filter to return only resources that match the service trigger sources of a PBF.

Implements

IOciRequest
In this article
Back to top