Show / Hide Table of Contents

Class UpdateInvokeFunctionUserDefinedStepDetails

The details for updating an Invoke Oracle Function step.

Inheritance
object
UpdateDrPlanUserDefinedStepDetails
UpdateInvokeFunctionUserDefinedStepDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DisasterrecoveryService.Models
Assembly: OCI.DotNetSDK.Disasterrecovery.dll
Syntax
public class UpdateInvokeFunctionUserDefinedStepDetails : UpdateDrPlanUserDefinedStepDetails

Properties

FunctionId

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

The OCID of function to be invoked.
Example: ocid1.fnfunc.oc1..uniqueID

Remarks

Required

RequestBody

Declaration
[JsonProperty(PropertyName = "requestBody")]
public string RequestBody { get; set; }
Property Value
Type Description
string

The request body for the function.
Example: { "FnParam1", "FnParam2" }

In this article
Back to top