Show / Hide Table of Contents

Class FunctionTaskDetails

The Functions task. Batch input for a function can be limited by either size or time. The first limit reached determines the boundary of the batch. For configuration instructions, see Creating a Connector.

Inheritance
object
TaskDetails
FunctionTaskDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.SchService.Models
Assembly: OCI.DotNetSDK.Sch.dll
Syntax
public class FunctionTaskDetails : TaskDetails

Properties

BatchSizeInKbs

Declaration
[JsonProperty(PropertyName = "batchSizeInKbs")]
public int? BatchSizeInKbs { get; set; }
Property Value
Type Description
int?

Size limit (kilobytes) for batch sent to invoke the function.

BatchTimeInSec

Declaration
[JsonProperty(PropertyName = "batchTimeInSec")]
public int? BatchTimeInSec { get; set; }
Property Value
Type Description
int?

Time limit (seconds) for batch sent to invoke the function.

FunctionId

Declaration
[Required(ErrorMessage = "FunctionId is required.")]
[JsonProperty(PropertyName = "functionId")]
public string FunctionId { get; set; }
Property Value
Type Description
string

The OCID of the function to be used as a task.

Remarks

Required

In this article
Back to top