Show / Hide Table of Contents

Class ListTriggersRequest

Inheritance
object
ListTriggersRequest
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 ListTriggersRequest : IOciRequest
Examples

Click here to see an example of how to use ListTriggers 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. 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 service trigger source of a PBF.

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

SortOrder

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

Specifies sort order.

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

Implements

IOciRequest
In this article
Back to top