Show / Hide Table of Contents

Class InvokeFunctionUserDefinedCustomPrecheckStep

Invoke Oracle function User Defined custom precheck step details.

Inheritance
object
DrPlanUserDefinedStep
InvokeFunctionUserDefinedCustomPrecheckStep
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 InvokeFunctionUserDefinedCustomPrecheckStep : DrPlanUserDefinedStep

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

FunctionRegion

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

The region in which the function is deployed.
Example: us-ashburn-1

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